{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 0.3.0 Codex 4-Tile 5K-Cell Example" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "df = {}" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ ">> clustergrammer2 backend version 0.5.1\n" ] } ], "source": [ "from clustergrammer2 import net\n", "\n", "import ipywidgets as widgets\n", "import numpy as np\n", "from bqplot import pyplot as plt\n", "import bqplot\n", "\n", "from copy import deepcopy\n", "from glob import glob\n", "from scipy.spatial.distance import pdist, squareform\n", "from scipy.spatial import Voronoi\n", "\n", "import warnings\n", "warnings.filterwarnings('ignore')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Load Expression Data" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(29, 5018)" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "net.load_file('../data/codex_data/4-tile_5k-cells_expression-cat.txt')\n", "df['tile-neighbor'] = net.export_df()\n", "df['tile-neighbor'].shape" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Load Location Data" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(5146, 2)" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "net.load_file('../data/codex_data/4-tile_5k-cells_location-cat.txt')\n", "df['tile-loc'] = net.export_df()\n", "df['tile-loc'].shape" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "cat_colors = net.load_json_to_dict('../data/codex_data/cat_colors.json')" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "net.load_df(df['tile-neighbor'])\n", "net.set_cat_colors(axis='col', cat_colors=cat_colors, cat_index=1, cat_title='Cell Type')\n", "net.set_cat_colors(axis='col', cat_colors=cat_colors, cat_index=2, cat_title='Neighbor')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Expression Levels of All Cells" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "def cat_highlight(inst_value):\n", "\n", " \n", " if inst_value != 'reset_cats':\n", " \n", " inst_cat = inst_value.split(': ')[1]\n", "\n", " list_opacities = []\n", "\n", " for inst_label in region_labels:\n", " inst_opacity = 0.25\n", " if inst_label == inst_cat:\n", " inst_opacity = 1\n", " list_opacities.append(inst_opacity)\n", "\n", " else:\n", " list_opacities = [1 for x in region_labels]\n", " patch.opacities = list_opacities\n", "\n", " patch.opacities = list_opacities" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "def on_value_change(change):\n", " \n", " if change['new'] == 'null':\n", " cat_highlight('reset_cats') \n", " else: \n", " # mousing over category\n", " if 'cat-' in change['new']:\n", " inst_cat = change['new'].split(' -> ')[1]\n", " cat_highlight(inst_cat) \n", " \n", " # mousing over marker\n", " else:\n", " inst_marker = change['new'].split(' -> ')[1]\n", " ser_opacity = df['tile-neighbor'].loc[inst_marker]\n", " list_opacities = [float(x/ser_opacity.max()) for x in list(ser_opacity.get_values())]\n", " patch.opacities = list_opacities\n" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "net.load_df(df['tile-neighbor'])\n", "net.normalize(axis='row', norm_type='zscore')\n", "net.clip(-5,5)\n", "net.widget()\n", "net.widget_instance.observe(on_value_change, names='value')\n", "# tmp = net.widget()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Voronoi Plot" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [], "source": [ "vor = Voronoi(df['tile-loc'])\n", "\n", "point_list = df['tile-loc'].index.tolist()\n", "point_names = [x[0] for x in point_list]\n", "cat_names = [x[1].split(': ')[1] for x in point_list]\n", "\n", "patch_data = {}\n", "patch_data['x'] = []\n", "patch_data['y'] = []\n", "patch_data['colors'] = []\n", "region_labels = []\n", "\n", "region_point_dict = {}\n", "for point_index in range(vor.point_region.shape[0]):\n", " region_index = vor.point_region[point_index]\n", " region_point_dict[region_index] = point_index\n", "\n", "for region_index in range(len(vor.regions)):\n", " \n", " inst_region = vor.regions[region_index]\n", "\n", " if -1 not in inst_region and len(inst_region) > 0:\n", "\n", " point_index = region_point_dict[region_index]\n", " point_cat = cat_names[point_index]\n", " region_labels.append(point_cat)\n", " \n", " # save cat_colors\n", " inst_color = cat_colors[point_cat]\n", " patch_data['colors'].append(inst_color)\n", " \n", " x_list = []\n", " y_list = []\n", " for inst_vertex in inst_region:\n", " inst_pos = vor.vertices[inst_vertex]\n", " x_list.append(inst_pos[0])\n", " y_list.append(inst_pos[1])\n", " \n", " patch_data['x'].append(x_list)\n", " patch_data['y'].append(y_list) " ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "LinearScale(max=2000.0, min=0.0)" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x_dim = 1200\n", "y_dim = 1000\n", "\n", "def_tt = bqplot.Tooltip(fields=['name'], formats=[''])\n", "\n", "fig = plt.figure(animation_duration=1000)\n", "patch = plt.plot([], [], \n", " fill='inside',\n", " fill_colors=patch_data['colors'],\n", " stroke_width=1,\n", " close_path=True,\n", " labels=region_labels,\n", " tooltip=def_tt,\n", " axes_options={'x': {'visible': False}, 'y': {'visible': False}},\n", " )\n", "\n", "scatter = plt.scatter(df['tile-loc']['X.X'], \n", " df['tile-loc']['Y.Y'],\n", "# tooltip=def_tt, \n", " names=point_names,\n", " display_names=False, default_size=2)\n", "\n", "\n", "inst_width = 950\n", "fig.layout.min_height = str(inst_width/(1.15)) + 'px'\n", "fig.layout.min_width = str(inst_width) + 'px'\n", "\n", "patch.x = patch_data['x']\n", "patch.y = patch_data['y']\n", "\n", "plt.xlim(0, 2.0*x_dim)\n", "plt.ylim(0, 2.0*y_dim)\n", "\n", "# plt.show()" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6a6a7e03f6c64db1bd62323ae8e174c8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(ExampleWidget(network='{\"row_nodes\": [{\"name\": \"CD45\", \"ini\": 29, \"clust\": 6, \"rank\": 13, \"rank…" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "from ipywidgets import HBox\n", "HBox([net.widget_instance, fig])" ] }, { "cell_type": "code", "execution_count": 13, "metadata": { "scrolled": false }, "outputs": [], "source": [ "# net.widget_instance" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [], "source": [ "# fig" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [], "source": [ "# def mouseover_highlight(self, target):\n", "# # print('cat name', target['data']['name'])\n", "# list_opacities = []\n", "# for inst_label in region_labels:\n", "# inst_opacity = 0.25\n", "# if inst_label == target['data']['name']:\n", "# inst_opacity = 1\n", "# list_opacities.append(inst_opacity)\n", "\n", "# self.opacities = list_opacities" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "# def reset_highlight(self, target):\n", "# # print('CLICKING')\n", "# list_opacities = [1 for x in region_labels]\n", "# self.opacities = list_opacities" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [], "source": [ "# patch.on_hover(mouseover_highlight)\n", "# patch.on_element_click(reset_highlight)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Heatmap and Voronoi " ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "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.6.5" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "07ee0144373e4fd3b060234f823e16cf": { "model_module": "bqplot", "model_module_version": "^0.4.5", "model_name": "LinearScaleModel", "state": { "max": 2400, "min": 0, "stabilized": false } }, "3b0d63fcfa3c415cb455e2b39579b75f": { "model_module": "clustergrammer2", "model_module_version": "^0.4.0", "model_name": "ExampleModel", "state": { "_model_module_version": "^0.4.0", "_view_module_version": "^0.4.0", "layout": "IPY_MODEL_4226f45252974e728856e580950694f2", "mat_string": "ini_mat_string", "network": "{\"row_nodes\": [{\"name\": \"CD45\", \"ini\": 29, \"clust\": 19, \"rank\": 26, \"rankvar\": 20, \"group\": [19.0, 18.0, 17.0, 15.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"Ly6C\", \"ini\": 28, \"clust\": 2, \"rank\": 1, \"rankvar\": 1, \"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"TCR\", \"ini\": 27, \"clust\": 4, \"rank\": 7, \"rankvar\": 7, \"group\": [5.0, 5.0, 5.0, 5.0, 4.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"Ly6G\", \"ini\": 26, \"clust\": 10, \"rank\": 0, \"rankvar\": 0, \"group\": [11.0, 11.0, 11.0, 10.0, 7.0, 6.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD19\", \"ini\": 25, \"clust\": 20, \"rank\": 28, \"rankvar\": 27, \"group\": [20.0, 19.0, 18.0, 15.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD169\", \"ini\": 24, \"clust\": 27, \"rank\": 24, \"rankvar\": 28, \"group\": [27.0, 26.0, 25.0, 21.0, 14.0, 12.0, 8.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD106\", \"ini\": 23, \"clust\": 24, \"rank\": 16, \"rankvar\": 16, \"group\": [24.0, 23.0, 22.0, 18.0, 12.0, 10.0, 7.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD3\", \"ini\": 22, \"clust\": 3, \"rank\": 5, \"rankvar\": 6, \"group\": [4.0, 4.0, 4.0, 4.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD1632\", \"ini\": 21, \"clust\": 17, \"rank\": 27, \"rankvar\": 26, \"group\": [17.0, 16.0, 15.0, 14.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD8a\", \"ini\": 20, \"clust\": 16, \"rank\": 14, \"rankvar\": 14, \"group\": [23.0, 22.0, 21.0, 17.0, 11.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD90\", \"ini\": 19, \"clust\": 21, \"rank\": 21, \"rankvar\": 21, \"group\": [21.0, 20.0, 19.0, 16.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"F480\", \"ini\": 18, \"clust\": 25, \"rank\": 12, \"rankvar\": 10, \"group\": [25.0, 24.0, 23.0, 19.0, 12.0, 10.0, 7.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD11c\", \"ini\": 17, \"clust\": 22, \"rank\": 19, \"rankvar\": 24, \"group\": [22.0, 21.0, 20.0, 16.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"Ter119\", \"ini\": 16, \"clust\": 0, \"rank\": 9, \"rankvar\": 9, \"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD11b\", \"ini\": 15, \"clust\": 11, \"rank\": 3, \"rankvar\": 2, \"group\": [12.0, 12.0, 12.0, 11.0, 7.0, 6.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"IgD\", \"ini\": 14, \"clust\": 8, \"rank\": 18, \"rankvar\": 17, \"group\": [9.0, 9.0, 9.0, 8.0, 6.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD27\", \"ini\": 13, \"clust\": 5, \"rank\": 15, \"rankvar\": 15, \"group\": [6.0, 6.0, 6.0, 5.0, 4.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD5\", \"ini\": 12, \"clust\": 6, \"rank\": 2, \"rankvar\": 3, \"group\": [7.0, 7.0, 7.0, 6.0, 5.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD79b\", \"ini\": 11, \"clust\": 12, \"rank\": 23, \"rankvar\": 22, \"group\": [13.0, 13.0, 13.0, 12.0, 8.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD71\", \"ini\": 10, \"clust\": 1, \"rank\": 4, \"rankvar\": 4, \"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD31\", \"ini\": 9, \"clust\": 18, \"rank\": 20, \"rankvar\": 23, \"group\": [18.0, 17.0, 16.0, 14.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD4\", \"ini\": 8, \"clust\": 7, \"rank\": 11, \"rankvar\": 12, \"group\": [8.0, 8.0, 8.0, 7.0, 5.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"IgM\", \"ini\": 7, \"clust\": 13, \"rank\": 8, \"rankvar\": 8, \"group\": [14.0, 14.0, 13.0, 12.0, 8.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"B220\", \"ini\": 6, \"clust\": 9, \"rank\": 17, \"rankvar\": 19, \"group\": [10.0, 10.0, 10.0, 9.0, 6.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"ERTR7\", \"ini\": 5, \"clust\": 23, \"rank\": 10, \"rankvar\": 11, \"group\": [26.0, 25.0, 24.0, 20.0, 13.0, 11.0, 7.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD35\", \"ini\": 4, \"clust\": 14, \"rank\": 25, \"rankvar\": 18, \"group\": [15.0, 15.0, 14.0, 13.0, 9.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD2135\", \"ini\": 3, \"clust\": 15, \"rank\": 13, \"rankvar\": 13, \"group\": [16.0, 15.0, 14.0, 13.0, 9.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD44\", \"ini\": 2, \"clust\": 28, \"rank\": 22, \"rankvar\": 25, \"group\": [28.0, 27.0, 26.0, 22.0, 15.0, 12.0, 8.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"NKp46\", \"ini\": 1, \"clust\": 26, \"rank\": 6, \"rankvar\": 5, \"group\": [29.0, 28.0, 27.0, 23.0, 16.0, 13.0, 9.0, 3.0, 1.0, 1.0, 1.0]}], \"col_nodes\": [{\"name\": \"C-643_BALBc-1_X01_Y01_10_277\", \"ini\": 2826, \"clust\": 1468, \"rank\": 2223, \"rankvar\": 2115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 0, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2805, \"cat-2\": \"Density: 14\", \"cat_2_index\": 23, \"group\": [1468.0, 801.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1264_BALBc-1_X01_Y01_1006_490\", \"ini\": 2825, \"clust\": 249, \"rank\": 921, \"rankvar\": 1499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1765, \"cat-2\": \"Density: 23\", \"cat_2_index\": 350, \"group\": [248.0, 172.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1589_BALBc-1_X01_Y01_101_504\", \"ini\": 2824, \"clust\": 1648, \"rank\": 2495, \"rankvar\": 2565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2335, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1011, \"group\": [1649.0, 909.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1611_BALBc-1_X01_Y01_101_759\", \"ini\": 2823, \"clust\": 1501, \"rank\": 2442, \"rankvar\": 2546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 3, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2336, \"cat-2\": \"Density: 25\", \"cat_2_index\": 588, \"group\": [1505.0, 814.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1873_BALBc-1_X01_Y01_1013_254\", \"ini\": 2822, \"clust\": 1769, \"rank\": 1402, \"rankvar\": 2022, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 4, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 949, \"cat-2\": \"Density: 25\", \"cat_2_index\": 589, \"group\": [1770.0, 1003.0, 302.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1877_BALBc-1_X01_Y01_1013_293\", \"ini\": 2821, \"clust\": 461, \"rank\": 832, \"rankvar\": 1527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 5, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2337, \"cat-2\": \"Density: 27\", \"cat_2_index\": 856, \"group\": [461.0, 321.0, 109.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1935_BALBc-1_X01_Y01_1013_914\", \"ini\": 2820, \"clust\": 1174, \"rank\": 1065, \"rankvar\": 2364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 6, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2338, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1327, \"group\": [1173.0, 568.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2478_BALBc-1_X01_Y01_1020_25\", \"ini\": 2819, \"clust\": 342, \"rank\": 916, \"rankvar\": 1994, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 7, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1766, \"cat-2\": \"Density: 14\", \"cat_2_index\": 24, \"group\": [342.0, 239.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2866_BALBc-1_X01_Y01_1025_128\", \"ini\": 2818, \"clust\": 1709, \"rank\": 2610, \"rankvar\": 2555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 8, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2251, \"cat-2\": \"Density: 21\", \"cat_2_index\": 188, \"group\": [1709.0, 962.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2988_BALBc-1_X01_Y01_1026_609\", \"ini\": 2817, \"clust\": 542, \"rank\": 611, \"rankvar\": 908, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 9, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 950, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1012, \"group\": [543.0, 371.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3121_BALBc-1_X01_Y01_1028_10\", \"ini\": 2816, \"clust\": 618, \"rank\": 500, \"rankvar\": 676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 10, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1767, \"cat-2\": \"Density: 11\", \"cat_2_index\": 4, \"group\": [619.0, 419.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3220_BALBc-1_X01_Y01_1029_199\", \"ini\": 2815, \"clust\": 1548, \"rank\": 977, \"rankvar\": 827, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 11, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 951, \"cat-2\": \"Density: 21\", \"cat_2_index\": 189, \"group\": [1552.0, 842.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3350_BALBc-1_X01_Y01_103_877\", \"ini\": 2814, \"clust\": 1515, \"rank\": 2496, \"rankvar\": 2763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 12, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1768, \"cat-2\": \"Density: 22\", \"cat_2_index\": 248, \"group\": [1512.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3562_BALBc-1_X01_Y01_1032_941\", \"ini\": 2813, \"clust\": 619, \"rank\": 613, \"rankvar\": 1131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 13, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 648, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1598, \"group\": [620.0, 419.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3566_BALBc-1_X01_Y01_1032_996\", \"ini\": 2812, \"clust\": 2749, \"rank\": 1733, \"rankvar\": 1628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 14, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 649, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1599, \"group\": [2748.0, 1483.0, 440.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3997_BALBc-1_X01_Y01_1038_240\", \"ini\": 2811, \"clust\": 1514, \"rank\": 2106, \"rankvar\": 2122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 15, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 952, \"cat-2\": \"Density: 23\", \"cat_2_index\": 351, \"group\": [1514.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4331_BALBc-1_X01_Y01_1041_691\", \"ini\": 2810, \"clust\": 1618, \"rank\": 1890, \"rankvar\": 2060, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 16, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 953, \"cat-2\": \"Density: 27\", \"cat_2_index\": 857, \"group\": [1622.0, 892.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4357_BALBc-1_X01_Y01_1041_883\", \"ini\": 2809, \"clust\": 1507, \"rank\": 2348, \"rankvar\": 1826, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 17, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 733, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1013, \"group\": [1522.0, 821.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4446_BALBc-1_X01_Y01_1042_941\", \"ini\": 2808, \"clust\": 206, \"rank\": 776, \"rankvar\": 1029, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 18, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2500, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1328, \"group\": [210.0, 142.0, 48.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4781_BALBc-1_X01_Y01_1047_289\", \"ini\": 2807, \"clust\": 1656, \"rank\": 2570, \"rankvar\": 2797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 19, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2339, \"cat-2\": \"Density: 25\", \"cat_2_index\": 590, \"group\": [1657.0, 915.0, 266.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6348_BALBc-1_X01_Y01_1065_305\", \"ini\": 2806, \"clust\": 1337, \"rank\": 1036, \"rankvar\": 2382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 20, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2472, \"cat-2\": \"Density: 25\", \"cat_2_index\": 591, \"group\": [1337.0, 702.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6416_BALBc-1_X01_Y01_1066_194\", \"ini\": 2805, \"clust\": 1144, \"rank\": 1133, \"rankvar\": 967, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 21, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2340, \"cat-2\": \"Density: 22\", \"cat_2_index\": 249, \"group\": [1147.0, 547.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6555_BALBc-1_X01_Y01_1068_135\", \"ini\": 2804, \"clust\": 458, \"rank\": 185, \"rankvar\": 2430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 22, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2252, \"cat-2\": \"Density: 19\", \"cat_2_index\": 110, \"group\": [458.0, 319.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6697_BALBc-1_X01_Y01_1069_600\", \"ini\": 2803, \"clust\": 1567, \"rank\": 647, \"rankvar\": 709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 23, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1769, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1329, \"group\": [1568.0, 857.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6969_BALBc-1_X01_Y01_1072_106\", \"ini\": 2802, \"clust\": 2402, \"rank\": 2821, \"rankvar\": 2825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 24, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2253, \"cat-2\": \"Density: 22\", \"cat_2_index\": 250, \"group\": [2402.0, 1272.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7033_BALBc-1_X01_Y01_1072_670\", \"ini\": 2801, \"clust\": 703, \"rank\": 325, \"rankvar\": 1562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 25, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1770, \"cat-2\": \"Density: 24\", \"cat_2_index\": 466, \"group\": [708.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7127_BALBc-1_X01_Y01_1073_75\", \"ini\": 2800, \"clust\": 459, \"rank\": 412, \"rankvar\": 2612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 26, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2254, \"cat-2\": \"Density: 23\", \"cat_2_index\": 352, \"group\": [459.0, 319.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7426_BALBc-1_X01_Y01_1077_266\", \"ini\": 2799, \"clust\": 1338, \"rank\": 787, \"rankvar\": 1446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 27, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2341, \"cat-2\": \"Density: 27\", \"cat_2_index\": 858, \"group\": [1338.0, 702.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7713_BALBc-1_X01_Y01_1080_242\", \"ini\": 2798, \"clust\": 926, \"rank\": 365, \"rankvar\": 44, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 28, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2342, \"cat-2\": \"Density: 24\", \"cat_2_index\": 467, \"group\": [927.0, 481.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8117_BALBc-1_X01_Y01_1085_774\", \"ini\": 2797, \"clust\": 1523, \"rank\": 1819, \"rankvar\": 2619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 29, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 954, \"cat-2\": \"Density: 24\", \"cat_2_index\": 468, \"group\": [1523.0, 822.0, 240.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8161_BALBc-1_X01_Y01_1086_450\", \"ini\": 2796, \"clust\": 1145, \"rank\": 999, \"rankvar\": 1637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 30, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2220, \"cat-2\": \"Density: 27\", \"cat_2_index\": 859, \"group\": [1145.0, 545.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8563_BALBc-1_X01_Y01_1090_6\", \"ini\": 2795, \"clust\": 1341, \"rank\": 1139, \"rankvar\": 1271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 31, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 650, \"cat-2\": \"Density: 14\", \"cat_2_index\": 25, \"group\": [1342.0, 706.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8628_BALBc-1_X01_Y01_1091_43\", \"ini\": 2794, \"clust\": 1466, \"rank\": 1851, \"rankvar\": 2187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 32, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1591, \"cat-2\": \"Density: 19\", \"cat_2_index\": 111, \"group\": [1464.0, 798.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9642_BALBc-1_X01_Y01_1102_507\", \"ini\": 2793, \"clust\": 1402, \"rank\": 1410, \"rankvar\": 1402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 33, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2255, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1330, \"group\": [1403.0, 753.0, 222.0, 63.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9652_BALBc-1_X01_Y01_1102_662\", \"ini\": 2792, \"clust\": 1602, \"rank\": 1871, \"rankvar\": 1989, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 34, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1771, \"cat-2\": \"Density: 23\", \"cat_2_index\": 353, \"group\": [1603.0, 885.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9706_BALBc-1_X01_Y01_1103_434\", \"ini\": 2791, \"clust\": 393, \"rank\": 1110, \"rankvar\": 1856, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 35, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 955, \"cat-2\": \"Density: 27\", \"cat_2_index\": 860, \"group\": [397.0, 278.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10170_BALBc-1_X01_Y01_1108_899\", \"ini\": 2790, \"clust\": 1259, \"rank\": 2222, \"rankvar\": 2166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 36, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 956, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1171, \"group\": [1259.0, 639.0, 183.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10432_BALBc-1_X01_Y01_1111_474\", \"ini\": 2789, \"clust\": 396, \"rank\": 1070, \"rankvar\": 2396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 37, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2343, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1331, \"group\": [393.0, 275.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10617_BALBc-1_X01_Y01_1113_927\", \"ini\": 2788, \"clust\": 111, \"rank\": 705, \"rankvar\": 1136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 38, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1592, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1014, \"group\": [115.0, 71.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10619_BALBc-1_X01_Y01_1113_965\", \"ini\": 2787, \"clust\": 603, \"rank\": 106, \"rankvar\": 1102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 39, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1593, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1457, \"group\": [603.0, 412.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10837_BALBc-1_X01_Y01_1116_858\", \"ini\": 2786, \"clust\": 1526, \"rank\": 2389, \"rankvar\": 2556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 40, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 734, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1015, \"group\": [1528.0, 825.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11085_BALBc-1_X01_Y01_112_387\", \"ini\": 2785, \"clust\": 963, \"rank\": 470, \"rankvar\": 622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 41, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 651, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1600, \"group\": [963.0, 494.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11633_BALBc-1_X01_Y01_1126_451\", \"ini\": 2784, \"clust\": 748, \"rank\": 306, \"rankvar\": 387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 42, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2344, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1172, \"group\": [755.0, 473.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11797_BALBc-1_X01_Y01_1128_484\", \"ini\": 2783, \"clust\": 2474, \"rank\": 1461, \"rankvar\": 1430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 43, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2345, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1458, \"group\": [2474.0, 1322.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12372_BALBc-1_X01_Y01_1135_41\", \"ini\": 2782, \"clust\": 1610, \"rank\": 1321, \"rankvar\": 1638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 44, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1594, \"cat-2\": \"Density: 16\", \"cat_2_index\": 47, \"group\": [1609.0, 888.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12571_BALBc-1_X01_Y01_1137_963\", \"ini\": 2781, \"clust\": 2753, \"rank\": 1763, \"rankvar\": 1387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 45, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 0, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1173, \"group\": [2752.0, 1487.0, 441.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12609_BALBc-1_X01_Y01_1138_500\", \"ini\": 2780, \"clust\": 690, \"rank\": 243, \"rankvar\": 1841, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 46, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2346, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1459, \"group\": [691.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13081_BALBc-1_X01_Y01_1143_436\", \"ini\": 2779, \"clust\": 1556, \"rank\": 965, \"rankvar\": 1755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 47, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 957, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1016, \"group\": [1555.0, 845.0, 245.0, 70.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13731_BALBc-1_X01_Y01_1150_998\", \"ini\": 2778, \"clust\": 2819, \"rank\": 2489, \"rankvar\": 2272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 48, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2347, \"cat-2\": \"Density: 26\", \"cat_2_index\": 715, \"group\": [2820.0, 1532.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13749_BALBc-1_X01_Y01_1151_281\", \"ini\": 2777, \"clust\": 929, \"rank\": 155, \"rankvar\": 467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 49, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2348, \"cat-2\": \"Density: 21\", \"cat_2_index\": 190, \"group\": [931.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13948_BALBc-1_X01_Y01_1153_833\", \"ini\": 2776, \"clust\": 1527, \"rank\": 2174, \"rankvar\": 2733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 50, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1689, \"cat-2\": \"Density: 26\", \"cat_2_index\": 716, \"group\": [1526.0, 825.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14037_BALBc-1_X01_Y01_1154_869\", \"ini\": 2775, \"clust\": 1528, \"rank\": 2024, \"rankvar\": 2455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 51, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1595, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1332, \"group\": [1527.0, 825.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14325_BALBc-1_X01_Y01_1158_916\", \"ini\": 2774, \"clust\": 1418, \"rank\": 1930, \"rankvar\": 1114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 52, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 1, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1017, \"group\": [1419.0, 766.0, 227.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14446_BALBc-1_X01_Y01_116_658\", \"ini\": 2773, \"clust\": 226, \"rank\": 1101, \"rankvar\": 1985, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 53, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1772, \"cat-2\": \"Density: 27\", \"cat_2_index\": 861, \"group\": [225.0, 157.0, 55.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14698_BALBc-1_X01_Y01_1162_538\", \"ini\": 2772, \"clust\": 1221, \"rank\": 1969, \"rankvar\": 2275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 54, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1773, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1826, \"group\": [1223.0, 613.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14855_BALBc-1_X01_Y01_1164_480\", \"ini\": 2771, \"clust\": 1576, \"rank\": 1658, \"rankvar\": 452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 55, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2349, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1716, \"group\": [1580.0, 866.0, 253.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15062_BALBc-1_X01_Y01_1166_964\", \"ini\": 2770, \"clust\": 2748, \"rank\": 1380, \"rankvar\": 1267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 56, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2350, \"cat-2\": \"Density: 27\", \"cat_2_index\": 862, \"group\": [2750.0, 1485.0, 440.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15797_BALBc-1_X01_Y01_1175_906\", \"ini\": 2769, \"clust\": 1353, \"rank\": 1211, \"rankvar\": 1225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 57, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 652, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1018, \"group\": [1354.0, 715.0, 212.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16293_BALBc-1_X01_Y01_1181_53\", \"ini\": 2768, \"clust\": 1291, \"rank\": 1569, \"rankvar\": 668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 58, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1774, \"cat-2\": \"Density: 16\", \"cat_2_index\": 48, \"group\": [1292.0, 663.0, 190.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16370_BALBc-1_X01_Y01_1182_491\", \"ini\": 2767, \"clust\": 279, \"rank\": 1446, \"rankvar\": 1480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 59, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1596, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1174, \"group\": [282.0, 204.0, 74.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16563_BALBc-1_X01_Y01_1184_941\", \"ini\": 2766, \"clust\": 371, \"rank\": 960, \"rankvar\": 1034, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 60, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2351, \"cat-2\": \"Density: 27\", \"cat_2_index\": 863, \"group\": [368.0, 255.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16691_BALBc-1_X01_Y01_1186_803\", \"ini\": 2765, \"clust\": 778, \"rank\": 126, \"rankvar\": 106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 61, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 735, \"cat-2\": \"Density: 25\", \"cat_2_index\": 592, \"group\": [779.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17060_BALBc-1_X01_Y01_1190_820\", \"ini\": 2764, \"clust\": 1799, \"rank\": 2698, \"rankvar\": 2789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 62, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 958, \"cat-2\": \"Density: 26\", \"cat_2_index\": 717, \"group\": [1805.0, 1019.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17493_BALBc-1_X01_Y01_1196_594\", \"ini\": 2763, \"clust\": 1277, \"rank\": 1288, \"rankvar\": 2417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 63, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1775, \"cat-2\": \"Density: 26\", \"cat_2_index\": 718, \"group\": [1276.0, 653.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17526_BALBc-1_X01_Y01_1196_998\", \"ini\": 2762, \"clust\": 2768, \"rank\": 1770, \"rankvar\": 1465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 64, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2352, \"cat-2\": \"Density: 26\", \"cat_2_index\": 719, \"group\": [2771.0, 1501.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17577_BALBc-1_X01_Y01_1197_786\", \"ini\": 2761, \"clust\": 568, \"rank\": 329, \"rankvar\": 2207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 65, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 736, \"cat-2\": \"Density: 24\", \"cat_2_index\": 469, \"group\": [568.0, 389.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17628_BALBc-1_X01_Y01_1198_413\", \"ini\": 2760, \"clust\": 1461, \"rank\": 2186, \"rankvar\": 2608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 66, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 959, \"cat-2\": \"Density: 26\", \"cat_2_index\": 720, \"group\": [1463.0, 797.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18640_BALBc-1_X01_Y01_1209_127\", \"ini\": 2759, \"clust\": 1380, \"rank\": 954, \"rankvar\": 1253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 67, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 960, \"cat-2\": \"Density: 20\", \"cat_2_index\": 137, \"group\": [1381.0, 734.0, 216.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19476_BALBc-1_X01_Y01_1219_513\", \"ini\": 2758, \"clust\": 1219, \"rank\": 1134, \"rankvar\": 1115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 68, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1776, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1019, \"group\": [1219.0, 611.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19678_BALBc-1_X01_Y01_1221_169\", \"ini\": 2757, \"clust\": 1370, \"rank\": 2524, \"rankvar\": 2564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 69, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1690, \"cat-2\": \"Density: 22\", \"cat_2_index\": 251, \"group\": [1369.0, 729.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19861_BALBc-1_X01_Y01_1223_430\", \"ini\": 2756, \"clust\": 1535, \"rank\": 2292, \"rankvar\": 2602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 70, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1597, \"cat-2\": \"Density: 27\", \"cat_2_index\": 864, \"group\": [1535.0, 831.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19879_BALBc-1_X01_Y01_1223_598\", \"ini\": 2755, \"clust\": 1651, \"rank\": 2208, \"rankvar\": 2670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 71, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2353, \"cat-2\": \"Density: 27\", \"cat_2_index\": 865, \"group\": [1651.0, 911.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20505_BALBc-1_X01_Y01_1230_928\", \"ini\": 2754, \"clust\": 1318, \"rank\": 750, \"rankvar\": 200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 72, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 653, \"cat-2\": \"Density: 25\", \"cat_2_index\": 593, \"group\": [1318.0, 686.0, 204.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20820_BALBc-1_X01_Y01_1234_752\", \"ini\": 2753, \"clust\": 307, \"rank\": 1918, \"rankvar\": 2640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 73, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 961, \"cat-2\": \"Density: 24\", \"cat_2_index\": 470, \"group\": [305.0, 215.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20832_BALBc-1_X01_Y01_1234_952\", \"ini\": 2752, \"clust\": 1278, \"rank\": 1208, \"rankvar\": 2471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 74, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2354, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1020, \"group\": [1277.0, 653.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21409_BALBc-1_X01_Y01_1241_777\", \"ini\": 2751, \"clust\": 1486, \"rank\": 2220, \"rankvar\": 2461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 75, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1777, \"cat-2\": \"Density: 24\", \"cat_2_index\": 471, \"group\": [1485.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21558_BALBc-1_X01_Y01_1243_856\", \"ini\": 2750, \"clust\": 1140, \"rank\": 655, \"rankvar\": 1279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 76, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 654, \"cat-2\": \"Density: 25\", \"cat_2_index\": 594, \"group\": [1141.0, 542.0, 149.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21876_BALBc-1_X01_Y01_1248_400\", \"ini\": 2749, \"clust\": 1497, \"rank\": 1521, \"rankvar\": 992, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 77, \"cat-1\": \"Neighbor: CD3(+) other markers (-)\", \"cat_1_index\": 947, \"cat-2\": \"Density: 23\", \"cat_2_index\": 354, \"group\": [1501.0, 811.0, 238.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22222_BALBc-1_X01_Y01_1251_971\", \"ini\": 2748, \"clust\": 978, \"rank\": 758, \"rankvar\": 746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 78, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 737, \"cat-2\": \"Density: 27\", \"cat_2_index\": 866, \"group\": [984.0, 505.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22283_BALBc-1_X01_Y01_1252_608\", \"ini\": 2747, \"clust\": 1652, \"rank\": 2006, \"rankvar\": 2245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 79, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2355, \"cat-2\": \"Density: 23\", \"cat_2_index\": 355, \"group\": [1652.0, 911.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22370_BALBc-1_X01_Y01_1253_930\", \"ini\": 2746, \"clust\": 1552, \"rank\": 1147, \"rankvar\": 942, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 80, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 738, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1021, \"group\": [1553.0, 843.0, 244.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22471_BALBc-1_X01_Y01_1255_479\", \"ini\": 2745, \"clust\": 1472, \"rank\": 2514, \"rankvar\": 2590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 81, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 739, \"cat-2\": \"Density: 27\", \"cat_2_index\": 867, \"group\": [1470.0, 802.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22920_BALBc-1_X01_Y01_1260_756\", \"ini\": 2744, \"clust\": 460, \"rank\": 1189, \"rankvar\": 699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 82, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 962, \"cat-2\": \"Density: 23\", \"cat_2_index\": 356, \"group\": [463.0, 323.0, 110.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23720_BALBc-1_X01_Y01_1271_214\", \"ini\": 2743, \"clust\": 873, \"rank\": 26, \"rankvar\": 479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 83, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1778, \"cat-2\": \"Density: 22\", \"cat_2_index\": 252, \"group\": [877.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23748_BALBc-1_X01_Y01_1271_543\", \"ini\": 2742, \"clust\": 1620, \"rank\": 2312, \"rankvar\": 2484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 84, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2356, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1175, \"group\": [1619.0, 892.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23973_BALBc-1_X01_Y01_1274_422\", \"ini\": 2741, \"clust\": 1688, \"rank\": 2307, \"rankvar\": 2750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 85, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1779, \"cat-2\": \"Density: 22\", \"cat_2_index\": 253, \"group\": [1688.0, 945.0, 281.0, 81.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24535_BALBc-1_X01_Y01_1281_350\", \"ini\": 2740, \"clust\": 653, \"rank\": 501, \"rankvar\": 234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 86, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 963, \"cat-2\": \"Density: 20\", \"cat_2_index\": 138, \"group\": [653.0, 437.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24998_BALBc-1_X01_Y01_1287_867\", \"ini\": 2739, \"clust\": 1400, \"rank\": 2259, \"rankvar\": 2228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 87, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 655, \"cat-2\": \"Density: 23\", \"cat_2_index\": 357, \"group\": [1401.0, 751.0, 221.0, 63.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25430_BALBc-1_X01_Y01_1292_741\", \"ini\": 2738, \"clust\": 1317, \"rank\": 666, \"rankvar\": 953, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 88, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1780, \"cat-2\": \"Density: 23\", \"cat_2_index\": 358, \"group\": [1320.0, 688.0, 204.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25531_BALBc-1_X01_Y01_1293_912\", \"ini\": 2737, \"clust\": 1532, \"rank\": 2207, \"rankvar\": 2393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 89, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1781, \"cat-2\": \"Density: 26\", \"cat_2_index\": 721, \"group\": [1533.0, 829.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25534_BALBc-1_X01_Y01_1293_926\", \"ini\": 2736, \"clust\": 1666, \"rank\": 1565, \"rankvar\": 1548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 90, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1782, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1333, \"group\": [1667.0, 924.0, 270.0, 76.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25729_BALBc-1_X01_Y01_1296_850\", \"ini\": 2735, \"clust\": 769, \"rank\": 53, \"rankvar\": 783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 91, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1598, \"cat-2\": \"Density: 25\", \"cat_2_index\": 595, \"group\": [771.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25779_BALBc-1_X01_Y01_1297_522\", \"ini\": 2734, \"clust\": 322, \"rank\": 1696, \"rankvar\": 2705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 92, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1783, \"cat-2\": \"Density: 27\", \"cat_2_index\": 868, \"group\": [322.0, 225.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26533_BALBc-1_X01_Y01_1306_107\", \"ini\": 2733, \"clust\": 1560, \"rank\": 1001, \"rankvar\": 1292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 93, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 740, \"cat-2\": \"Density: 21\", \"cat_2_index\": 191, \"group\": [1561.0, 850.0, 248.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27126_BALBc-1_X01_Y01_1313_325\", \"ini\": 2732, \"clust\": 1545, \"rank\": 1099, \"rankvar\": 1493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 94, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1784, \"cat-2\": \"Density: 23\", \"cat_2_index\": 359, \"group\": [1547.0, 838.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27291_BALBc-1_X01_Y01_1315_624\", \"ini\": 2731, \"clust\": 1474, \"rank\": 2723, \"rankvar\": 2521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 95, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1785, \"cat-2\": \"Density: 24\", \"cat_2_index\": 472, \"group\": [1490.0, 804.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27496_BALBc-1_X01_Y01_1318_358\", \"ini\": 2730, \"clust\": 1459, \"rank\": 2745, \"rankvar\": 2676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 96, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2473, \"cat-2\": \"Density: 23\", \"cat_2_index\": 360, \"group\": [1459.0, 795.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27658_BALBc-1_X01_Y01_132_746\", \"ini\": 2729, \"clust\": 1245, \"rank\": 1718, \"rankvar\": 1075, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 97, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2357, \"cat-2\": \"Density: 26\", \"cat_2_index\": 722, \"group\": [1246.0, 627.0, 179.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27856_BALBc-1_X01_Y01_1322_539\", \"ini\": 2728, \"clust\": 1592, \"rank\": 1418, \"rankvar\": 1572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 98, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2256, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1022, \"group\": [1594.0, 877.0, 256.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27868_BALBc-1_X01_Y01_1322_716\", \"ini\": 2727, \"clust\": 1536, \"rank\": 2206, \"rankvar\": 2428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 99, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 741, \"cat-2\": \"Density: 25\", \"cat_2_index\": 596, \"group\": [1536.0, 831.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28466_BALBc-1_X01_Y01_1329_929\", \"ini\": 2726, \"clust\": 2787, \"rank\": 2290, \"rankvar\": 2497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 100, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1786, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1601, \"group\": [2788.0, 1510.0, 450.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28618_BALBc-1_X01_Y01_1331_1005\", \"ini\": 2725, \"clust\": 1837, \"rank\": 1685, \"rankvar\": 1655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 101, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1787, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1334, \"group\": [1838.0, 1032.0, 309.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29005_BALBc-1_X01_Y01_1336_646\", \"ini\": 2724, \"clust\": 1557, \"rank\": 1557, \"rankvar\": 1239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 102, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1788, \"cat-2\": \"Density: 20\", \"cat_2_index\": 139, \"group\": [1556.0, 846.0, 245.0, 70.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29014_BALBc-1_X01_Y01_1336_791\", \"ini\": 2723, \"clust\": 1537, \"rank\": 2407, \"rankvar\": 2603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 103, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2257, \"cat-2\": \"Density: 27\", \"cat_2_index\": 869, \"group\": [1544.0, 836.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29210_BALBc-1_X01_Y01_134_634\", \"ini\": 2722, \"clust\": 1615, \"rank\": 1844, \"rankvar\": 2463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 104, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1599, \"cat-2\": \"Density: 26\", \"cat_2_index\": 723, \"group\": [1618.0, 891.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29734_BALBc-1_X01_Y01_140_392\", \"ini\": 2721, \"clust\": 1544, \"rank\": 1043, \"rankvar\": 1597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 105, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 742, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1602, \"group\": [1548.0, 839.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30018_BALBc-1_X01_Y01_144_355\", \"ini\": 2720, \"clust\": 964, \"rank\": 229, \"rankvar\": 1805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 106, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 743, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1927, \"group\": [964.0, 494.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30053_BALBc-1_X01_Y01_144_841\", \"ini\": 2719, \"clust\": 1747, \"rank\": 2649, \"rankvar\": 2714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 107, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1789, \"cat-2\": \"Density: 22\", \"cat_2_index\": 254, \"group\": [1746.0, 987.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30398_BALBc-1_X01_Y01_149_544\", \"ini\": 2718, \"clust\": 1097, \"rank\": 115, \"rankvar\": 125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 108, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1790, \"cat-2\": \"Density: 23\", \"cat_2_index\": 361, \"group\": [1097.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30507_BALBc-1_X01_Y01_15_762\", \"ini\": 2717, \"clust\": 1516, \"rank\": 2251, \"rankvar\": 2312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 109, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 744, \"cat-2\": \"Density: 15\", \"cat_2_index\": 33, \"group\": [1513.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30743_BALBc-1_X01_Y01_152_927\", \"ini\": 2716, \"clust\": 1499, \"rank\": 1988, \"rankvar\": 1937, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 110, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1791, \"cat-2\": \"Density: 22\", \"cat_2_index\": 255, \"group\": [1498.0, 809.0, 238.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30803_BALBc-1_X01_Y01_153_644\", \"ini\": 2715, \"clust\": 1458, \"rank\": 2484, \"rankvar\": 2280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 111, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1792, \"cat-2\": \"Density: 26\", \"cat_2_index\": 724, \"group\": [1497.0, 808.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31107_BALBc-1_X01_Y01_157_727\", \"ini\": 2714, \"clust\": 540, \"rank\": 617, \"rankvar\": 164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 112, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2358, \"cat-2\": \"Density: 27\", \"cat_2_index\": 870, \"group\": [538.0, 368.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32393_BALBc-1_X01_Y01_174_205\", \"ini\": 2713, \"clust\": 981, \"rank\": 439, \"rankvar\": 532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 113, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2359, \"cat-2\": \"Density: 26\", \"cat_2_index\": 725, \"group\": [983.0, 504.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32406_BALBc-1_X01_Y01_174_446\", \"ini\": 2712, \"clust\": 1609, \"rank\": 1635, \"rankvar\": 2051, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 114, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1793, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1335, \"group\": [1611.0, 888.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32440_BALBc-1_X01_Y01_174_937\", \"ini\": 2711, \"clust\": 1476, \"rank\": 2695, \"rankvar\": 2736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 115, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2221, \"cat-2\": \"Density: 23\", \"cat_2_index\": 362, \"group\": [1474.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33321_BALBc-1_X01_Y01_185_828\", \"ini\": 2710, \"clust\": 1477, \"rank\": 2640, \"rankvar\": 2772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 116, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1691, \"cat-2\": \"Density: 23\", \"cat_2_index\": 363, \"group\": [1475.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34399_BALBc-1_X01_Y01_199_788\", \"ini\": 2709, \"clust\": 339, \"rank\": 642, \"rankvar\": 1683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 117, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2360, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1023, \"group\": [339.0, 238.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34469_BALBc-1_X01_Y01_20_606\", \"ini\": 2708, \"clust\": 1749, \"rank\": 1185, \"rankvar\": 1843, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 118, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1794, \"cat-2\": \"Density: 15\", \"cat_2_index\": 34, \"group\": [1761.0, 997.0, 300.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34670_BALBc-1_X01_Y01_202_526\", \"ini\": 2707, \"clust\": 1285, \"rank\": 1315, \"rankvar\": 1945, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 119, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 656, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1176, \"group\": [1284.0, 656.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34677_BALBc-1_X01_Y01_202_578\", \"ini\": 2706, \"clust\": 2410, \"rank\": 1791, \"rankvar\": 787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 120, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1795, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1177, \"group\": [2412.0, 1282.0, 384.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34817_BALBc-1_X01_Y01_204_297\", \"ini\": 2705, \"clust\": 1403, \"rank\": 1358, \"rankvar\": 991, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 121, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1692, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1336, \"group\": [1404.0, 754.0, 222.0, 63.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34866_BALBc-1_X01_Y01_204_930\", \"ini\": 2704, \"clust\": 2411, \"rank\": 890, \"rankvar\": 588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 122, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2361, \"cat-2\": \"Density: 23\", \"cat_2_index\": 364, \"group\": [2410.0, 1280.0, 383.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35315_BALBc-1_X01_Y01_210_142\", \"ini\": 2703, \"clust\": 288, \"rank\": 1381, \"rankvar\": 2654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 123, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1796, \"cat-2\": \"Density: 23\", \"cat_2_index\": 365, \"group\": [288.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35570_BALBc-1_X01_Y01_213_684\", \"ini\": 2702, \"clust\": 1503, \"rank\": 2780, \"rankvar\": 2689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 124, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1797, \"cat-2\": \"Density: 26\", \"cat_2_index\": 726, \"group\": [1502.0, 812.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35785_BALBc-1_X01_Y01_216_442\", \"ini\": 2701, \"clust\": 711, \"rank\": 244, \"rankvar\": 1389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 125, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1798, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1603, \"group\": [709.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36633_BALBc-1_X01_Y01_227_305\", \"ini\": 2700, \"clust\": 1334, \"rank\": 1460, \"rankvar\": 1888, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 126, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1534, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1337, \"group\": [1335.0, 701.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36710_BALBc-1_X01_Y01_228_469\", \"ini\": 2699, \"clust\": 605, \"rank\": 317, \"rankvar\": 42, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 127, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1799, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1178, \"group\": [605.0, 412.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36780_BALBc-1_X01_Y01_229_278\", \"ini\": 2698, \"clust\": 219, \"rank\": 1214, \"rankvar\": 1196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 128, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1535, \"cat-2\": \"Density: 23\", \"cat_2_index\": 366, \"group\": [219.0, 151.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37147_BALBc-1_X01_Y01_233_345\", \"ini\": 2697, \"clust\": 1336, \"rank\": 878, \"rankvar\": 1563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 129, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 964, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1338, \"group\": [1339.0, 703.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37192_BALBc-1_X01_Y01_233_984\", \"ini\": 2696, \"clust\": 1328, \"rank\": 2091, \"rankvar\": 2237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 130, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2222, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1024, \"group\": [1328.0, 695.0, 207.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37390_BALBc-1_X01_Y01_236_829\", \"ini\": 2695, \"clust\": 1261, \"rank\": 1202, \"rankvar\": 2440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 131, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1693, \"cat-2\": \"Density: 27\", \"cat_2_index\": 871, \"group\": [1264.0, 643.0, 185.0, 52.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37665_BALBc-1_X01_Y01_24_582\", \"ini\": 2694, \"clust\": 1218, \"rank\": 1758, \"rankvar\": 1815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 132, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1800, \"cat-2\": \"Density: 14\", \"cat_2_index\": 26, \"group\": [1224.0, 614.0, 175.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38087_BALBc-1_X01_Y01_245_436\", \"ini\": 2693, \"clust\": 1039, \"rank\": 476, \"rankvar\": 353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 133, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2362, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1604, \"group\": [1039.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38121_BALBc-1_X01_Y01_245_812\", \"ini\": 2692, \"clust\": 225, \"rank\": 827, \"rankvar\": 1560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 134, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2363, \"cat-2\": \"Density: 27\", \"cat_2_index\": 872, \"group\": [227.0, 158.0, 55.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38523_BALBc-1_X01_Y01_250_505\", \"ini\": 2691, \"clust\": 885, \"rank\": 73, \"rankvar\": 113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 135, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1801, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1025, \"group\": [893.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38805_BALBc-1_X01_Y01_253_960\", \"ini\": 2690, \"clust\": 41, \"rank\": 688, \"rankvar\": 1270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 136, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2474, \"cat-2\": \"Density: 26\", \"cat_2_index\": 727, \"group\": [43.0, 36.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38981_BALBc-1_X01_Y01_256_369\", \"ini\": 2689, \"clust\": 809, \"rank\": 50, \"rankvar\": 328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 137, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2364, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1460, \"group\": [808.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39031_BALBc-1_X01_Y01_256_980\", \"ini\": 2688, \"clust\": 1389, \"rank\": 2690, \"rankvar\": 2400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 138, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1802, \"cat-2\": \"Density: 26\", \"cat_2_index\": 728, \"group\": [1391.0, 742.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39262_BALBc-1_X01_Y01_26_273\", \"ini\": 2687, \"clust\": 1442, \"rank\": 2684, \"rankvar\": 2740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 139, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1803, \"cat-2\": \"Density: 17\", \"cat_2_index\": 68, \"group\": [1446.0, 785.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39659_BALBc-1_X01_Y01_264_554\", \"ini\": 2686, \"clust\": 1414, \"rank\": 2090, \"rankvar\": 1524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 140, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1694, \"cat-2\": \"Density: 27\", \"cat_2_index\": 873, \"group\": [1413.0, 762.0, 226.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39807_BALBc-1_X01_Y01_266_477\", \"ini\": 2685, \"clust\": 1443, \"rank\": 2631, \"rankvar\": 2404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 141, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1695, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1605, \"group\": [1442.0, 784.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39811_BALBc-1_X01_Y01_266_516\", \"ini\": 2684, \"clust\": 1694, \"rank\": 1707, \"rankvar\": 2454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 142, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1696, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1179, \"group\": [1697.0, 954.0, 285.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40558_BALBc-1_X01_Y01_275_814\", \"ini\": 2683, \"clust\": 1287, \"rank\": 1628, \"rankvar\": 273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 143, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2365, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1180, \"group\": [1288.0, 659.0, 189.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41204_BALBc-1_X01_Y01_283_369\", \"ini\": 2682, \"clust\": 1495, \"rank\": 2800, \"rankvar\": 2741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 144, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 965, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1181, \"group\": [1493.0, 806.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41354_BALBc-1_X01_Y01_285_575\", \"ini\": 2681, \"clust\": 1606, \"rank\": 1161, \"rankvar\": 2123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 145, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1804, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1606, \"group\": [1605.0, 887.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41940_BALBc-1_X01_Y01_292_456\", \"ini\": 2680, \"clust\": 1469, \"rank\": 2216, \"rankvar\": 1746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 146, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1697, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1928, \"group\": [1469.0, 801.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41976_BALBc-1_X01_Y01_292_937\", \"ini\": 2679, \"clust\": 1585, \"rank\": 1006, \"rankvar\": 1263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 147, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1805, \"cat-2\": \"Density: 27\", \"cat_2_index\": 874, \"group\": [1588.0, 871.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42301_BALBc-1_X01_Y01_297_556\", \"ini\": 2678, \"clust\": 1725, \"rank\": 2405, \"rankvar\": 1557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 148, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1698, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1461, \"group\": [1731.0, 976.0, 291.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42630_BALBc-1_X01_Y01_300_775\", \"ini\": 2677, \"clust\": 224, \"rank\": 1296, \"rankvar\": 1129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 149, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2366, \"cat-2\": \"Density: 25\", \"cat_2_index\": 597, \"group\": [228.0, 159.0, 55.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42740_BALBc-1_X01_Y01_302_128\", \"ini\": 2676, \"clust\": 1451, \"rank\": 1586, \"rankvar\": 1844, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 150, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1600, \"cat-2\": \"Density: 22\", \"cat_2_index\": 256, \"group\": [1454.0, 791.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43040_BALBc-1_X01_Y01_306_364\", \"ini\": 2675, \"clust\": 1364, \"rank\": 2409, \"rankvar\": 2363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 151, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 966, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1717, \"group\": [1365.0, 726.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43178_BALBc-1_X01_Y01_308_412\", \"ini\": 2674, \"clust\": 1440, \"rank\": 2722, \"rankvar\": 2574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 152, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2367, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2136, \"group\": [1439.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43217_BALBc-1_X01_Y01_308_969\", \"ini\": 2673, \"clust\": 216, \"rank\": 1037, \"rankvar\": 1026, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 153, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2475, \"cat-2\": \"Density: 27\", \"cat_2_index\": 875, \"group\": [216.0, 148.0, 52.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43287_BALBc-1_X01_Y01_309_987\", \"ini\": 2672, \"clust\": 1633, \"rank\": 2634, \"rankvar\": 2648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 154, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2476, \"cat-2\": \"Density: 27\", \"cat_2_index\": 876, \"group\": [1635.0, 900.0, 261.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43697_BALBc-1_X01_Y01_314_444\", \"ini\": 2671, \"clust\": 1492, \"rank\": 2368, \"rankvar\": 1513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 155, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 2, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2218, \"group\": [1491.0, 805.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43943_BALBc-1_X01_Y01_317_804\", \"ini\": 2670, \"clust\": 370, \"rank\": 1003, \"rankvar\": 1689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 156, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2368, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1339, \"group\": [370.0, 256.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44052_BALBc-1_X01_Y01_318_913\", \"ini\": 2669, \"clust\": 620, \"rank\": 289, \"rankvar\": 1012, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 157, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2258, \"cat-2\": \"Density: 26\", \"cat_2_index\": 729, \"group\": [623.0, 420.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44139_BALBc-1_X01_Y01_32_289\", \"ini\": 2668, \"clust\": 2547, \"rank\": 2461, \"rankvar\": 2758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 158, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1806, \"cat-2\": \"Density: 18\", \"cat_2_index\": 87, \"group\": [2547.0, 1372.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44170_BALBc-1_X01_Y01_32_755\", \"ini\": 2667, \"clust\": 2240, \"rank\": 1847, \"rankvar\": 1474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 159, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 745, \"cat-2\": \"Density: 16\", \"cat_2_index\": 49, \"group\": [2242.0, 1220.0, 366.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44230_BALBc-1_X01_Y01_320_524\", \"ini\": 2666, \"clust\": 1713, \"rank\": 2638, \"rankvar\": 2632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 160, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1699, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1462, \"group\": [1714.0, 966.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44536_BALBc-1_X01_Y01_324_441\", \"ini\": 2665, \"clust\": 1572, \"rank\": 489, \"rankvar\": 1948, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 161, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2369, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2363, \"group\": [1573.0, 860.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44775_BALBc-1_X01_Y01_327_457\", \"ini\": 2664, \"clust\": 608, \"rank\": 385, \"rankvar\": 432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 162, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2370, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2364, \"group\": [609.0, 413.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45547_BALBc-1_X01_Y01_336_358\", \"ini\": 2663, \"clust\": 40, \"rank\": 807, \"rankvar\": 1776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 163, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 657, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1607, \"group\": [44.0, 37.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45620_BALBc-1_X01_Y01_337_515\", \"ini\": 2662, \"clust\": 1237, \"rank\": 990, \"rankvar\": 1940, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 164, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 967, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2042, \"group\": [1237.0, 622.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45792_BALBc-1_X01_Y01_339_781\", \"ini\": 2661, \"clust\": 222, \"rank\": 1210, \"rankvar\": 1031, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 165, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2259, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1463, \"group\": [221.0, 153.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46150_BALBc-1_X01_Y01_343_551\", \"ini\": 2660, \"clust\": 1622, \"rank\": 1865, \"rankvar\": 2683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 166, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 968, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1182, \"group\": [1623.0, 893.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46164_BALBc-1_X01_Y01_343_747\", \"ini\": 2659, \"clust\": 291, \"rank\": 1372, \"rankvar\": 2695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 167, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1807, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1026, \"group\": [292.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46255_BALBc-1_X01_Y01_344_899\", \"ini\": 2658, \"clust\": 1502, \"rank\": 2538, \"rankvar\": 2687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 168, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1808, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1183, \"group\": [1504.0, 813.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46297_BALBc-1_X01_Y01_345_451\", \"ini\": 2657, \"clust\": 1580, \"rank\": 1322, \"rankvar\": 1332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 169, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2371, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2137, \"group\": [1581.0, 867.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46315_BALBc-1_X01_Y01_345_681\", \"ini\": 2656, \"clust\": 820, \"rank\": 135, \"rankvar\": 12, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 170, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2260, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1027, \"group\": [819.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46829_BALBc-1_X01_Y01_351_348\", \"ini\": 2655, \"clust\": 1470, \"rank\": 2268, \"rankvar\": 2367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 171, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 969, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1608, \"group\": [1473.0, 802.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46843_BALBc-1_X01_Y01_351_600\", \"ini\": 2654, \"clust\": 1441, \"rank\": 2778, \"rankvar\": 2663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 172, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1809, \"cat-2\": \"Density: 25\", \"cat_2_index\": 598, \"group\": [1440.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46930_BALBc-1_X01_Y01_352_655\", \"ini\": 2653, \"clust\": 655, \"rank\": 578, \"rankvar\": 420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 173, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1810, \"cat-2\": \"Density: 23\", \"cat_2_index\": 367, \"group\": [655.0, 438.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47025_BALBc-1_X01_Y01_353_977\", \"ini\": 2652, \"clust\": 1329, \"rank\": 1439, \"rankvar\": 2544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 174, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2223, \"cat-2\": \"Density: 26\", \"cat_2_index\": 730, \"group\": [1329.0, 696.0, 207.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47116_BALBc-1_X01_Y01_355_165\", \"ini\": 2651, \"clust\": 1574, \"rank\": 1998, \"rankvar\": 2403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 175, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1700, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1028, \"group\": [1575.0, 861.0, 252.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47124_BALBc-1_X01_Y01_355_25\", \"ini\": 2650, \"clust\": 1141, \"rank\": 430, \"rankvar\": 569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 176, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1811, \"cat-2\": \"Density: 13\", \"cat_2_index\": 11, \"group\": [1142.0, 543.0, 149.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47290_BALBc-1_X01_Y01_357_393\", \"ini\": 2649, \"clust\": 1425, \"rank\": 1018, \"rankvar\": 1981, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 177, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 658, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1929, \"group\": [1424.0, 770.0, 229.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48026_BALBc-1_X01_Y01_366_429\", \"ini\": 2648, \"clust\": 1342, \"rank\": 1087, \"rankvar\": 1957, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 178, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2372, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1930, \"group\": [1343.0, 707.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48028_BALBc-1_X01_Y01_366_461\", \"ini\": 2647, \"clust\": 930, \"rank\": 367, \"rankvar\": 149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 179, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1601, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1931, \"group\": [929.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48335_BALBc-1_X01_Y01_37_313\", \"ini\": 2646, \"clust\": 1482, \"rank\": 2750, \"rankvar\": 2796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 180, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 746, \"cat-2\": \"Density: 23\", \"cat_2_index\": 368, \"group\": [1480.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48557_BALBc-1_X01_Y01_372_492\", \"ini\": 2645, \"clust\": 1036, \"rank\": 313, \"rankvar\": 473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 181, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 970, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2138, \"group\": [1036.0, 521.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48582_BALBc-1_X01_Y01_372_692\", \"ini\": 2644, \"clust\": 1494, \"rank\": 2820, \"rankvar\": 2785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 182, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2373, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1340, \"group\": [1495.0, 806.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48853_BALBc-1_X01_Y01_376_314\", \"ini\": 2643, \"clust\": 1479, \"rank\": 2754, \"rankvar\": 2662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 971, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1184, \"group\": [1477.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49055_BALBc-1_X01_Y01_378_862\", \"ini\": 2642, \"clust\": 1744, \"rank\": 1974, \"rankvar\": 1617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 184, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2261, \"cat-2\": \"Density: 27\", \"cat_2_index\": 877, \"group\": [1748.0, 989.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49397_BALBc-1_X01_Y01_382_422\", \"ini\": 2641, \"clust\": 1292, \"rank\": 1220, \"rankvar\": 1144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 185, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 659, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2043, \"group\": [1290.0, 661.0, 190.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49496_BALBc-1_X01_Y01_383_563\", \"ini\": 2640, \"clust\": 1500, \"rank\": 1833, \"rankvar\": 2369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 186, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 972, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1464, \"group\": [1499.0, 809.0, 238.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50108_BALBc-1_X01_Y01_390_456\", \"ini\": 2639, \"clust\": 341, \"rank\": 692, \"rankvar\": 399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 187, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1602, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2044, \"group\": [344.0, 240.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50236_BALBc-1_X01_Y01_392_183\", \"ini\": 2638, \"clust\": 1445, \"rank\": 2172, \"rankvar\": 2172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 188, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1812, \"cat-2\": \"Density: 27\", \"cat_2_index\": 878, \"group\": [1444.0, 784.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50329_BALBc-1_X01_Y01_393_436\", \"ini\": 2637, \"clust\": 1330, \"rank\": 1667, \"rankvar\": 2529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 189, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 3, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2139, \"group\": [1331.0, 698.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50622_BALBc-1_X01_Y01_397_212\", \"ini\": 2636, \"clust\": 1558, \"rank\": 1219, \"rankvar\": 1861, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 190, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1701, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1029, \"group\": [1559.0, 849.0, 248.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50633_BALBc-1_X01_Y01_397_371\", \"ini\": 2635, \"clust\": 1473, \"rank\": 2118, \"rankvar\": 2186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 191, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 660, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2219, \"group\": [1471.0, 802.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50940_BALBc-1_X01_Y01_40_516\", \"ini\": 2634, \"clust\": 1710, \"rank\": 2464, \"rankvar\": 2659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 192, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2374, \"cat-2\": \"Density: 22\", \"cat_2_index\": 257, \"group\": [1710.0, 962.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50944_BALBc-1_X01_Y01_40_562\", \"ini\": 2633, \"clust\": 340, \"rank\": 162, \"rankvar\": 1719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 193, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1813, \"cat-2\": \"Density: 19\", \"cat_2_index\": 112, \"group\": [340.0, 238.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51105_BALBc-1_X01_Y01_401_748\", \"ini\": 2632, \"clust\": 305, \"rank\": 1609, \"rankvar\": 2006, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 194, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2375, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1030, \"group\": [308.0, 216.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51247_BALBc-1_X01_Y01_403_851\", \"ini\": 2631, \"clust\": 462, \"rank\": 996, \"rankvar\": 2561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 195, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2262, \"cat-2\": \"Density: 27\", \"cat_2_index\": 879, \"group\": [462.0, 322.0, 109.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51412_BALBc-1_X01_Y01_405_776\", \"ini\": 2630, \"clust\": 1230, \"rank\": 2170, \"rankvar\": 2696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 196, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2263, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1718, \"group\": [1231.0, 620.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51444_BALBc-1_X01_Y01_406_240\", \"ini\": 2629, \"clust\": 1573, \"rank\": 846, \"rankvar\": 719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 197, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2376, \"cat-2\": \"Density: 25\", \"cat_2_index\": 599, \"group\": [1574.0, 860.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51463_BALBc-1_X01_Y01_406_433\", \"ini\": 2628, \"clust\": 1480, \"rank\": 2803, \"rankvar\": 2795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 198, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 661, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1719, \"group\": [1478.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51525_BALBc-1_X01_Y01_407_279\", \"ini\": 2627, \"clust\": 1475, \"rank\": 2665, \"rankvar\": 2692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 199, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 662, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1341, \"group\": [1476.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51947_BALBc-1_X01_Y01_411_566\", \"ini\": 2626, \"clust\": 1565, \"rank\": 467, \"rankvar\": 961, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 200, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2377, \"cat-2\": \"Density: 27\", \"cat_2_index\": 880, \"group\": [1566.0, 855.0, 250.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51995_BALBc-1_X01_Y01_412_107\", \"ini\": 2625, \"clust\": 1225, \"rank\": 1178, \"rankvar\": 2276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 201, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1814, \"cat-2\": \"Density: 23\", \"cat_2_index\": 369, \"group\": [1229.0, 618.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52220_BALBc-1_X01_Y01_414_632\", \"ini\": 2624, \"clust\": 1335, \"rank\": 1525, \"rankvar\": 1798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 202, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2378, \"cat-2\": \"Density: 27\", \"cat_2_index\": 881, \"group\": [1336.0, 701.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52340_BALBc-1_X01_Y01_416_366\", \"ini\": 2623, \"clust\": 705, \"rank\": 70, \"rankvar\": 1953, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 203, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2501, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1932, \"group\": [703.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52585_BALBc-1_X01_Y01_419_56\", \"ini\": 2622, \"clust\": 1619, \"rank\": 1999, \"rankvar\": 2444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 204, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1815, \"cat-2\": \"Density: 19\", \"cat_2_index\": 113, \"group\": [1621.0, 892.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53186_BALBc-1_X01_Y01_426_497\", \"ini\": 2621, \"clust\": 1449, \"rank\": 2190, \"rankvar\": 2085, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 205, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1816, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1827, \"group\": [1448.0, 787.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53439_BALBc-1_X01_Y01_429_519\", \"ini\": 2620, \"clust\": 714, \"rank\": 403, \"rankvar\": 924, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 206, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1817, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1465, \"group\": [714.0, 458.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53460_BALBc-1_X01_Y01_429_728\", \"ini\": 2619, \"clust\": 1170, \"rank\": 541, \"rankvar\": 1439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 207, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2379, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1720, \"group\": [1170.0, 566.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54293_BALBc-1_X01_Y01_439_281\", \"ini\": 2618, \"clust\": 1426, \"rank\": 1492, \"rankvar\": 2017, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 208, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1603, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1609, \"group\": [1425.0, 771.0, 229.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54995_BALBc-1_X01_Y01_447_636\", \"ini\": 2617, \"clust\": 1232, \"rank\": 670, \"rankvar\": 2032, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 209, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2380, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1031, \"group\": [1236.0, 621.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55049_BALBc-1_X01_Y01_448_341\", \"ini\": 2616, \"clust\": 1247, \"rank\": 2509, \"rankvar\": 2500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 210, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 663, \"cat-2\": \"Density: 27\", \"cat_2_index\": 882, \"group\": [1250.0, 631.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55837_BALBc-1_X01_Y01_457_685\", \"ini\": 2615, \"clust\": 946, \"rank\": 104, \"rankvar\": 103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 211, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2381, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1933, \"group\": [947.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55843_BALBc-1_X01_Y01_457_714\", \"ini\": 2614, \"clust\": 55, \"rank\": 947, \"rankvar\": 1287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 212, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2382, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1828, \"group\": [56.0, 45.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56224_BALBc-1_X01_Y01_461_819\", \"ini\": 2613, \"clust\": 1297, \"rank\": 1343, \"rankvar\": 1611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 213, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1818, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1342, \"group\": [1300.0, 671.0, 196.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56566_BALBc-1_X01_Y01_466_376\", \"ini\": 2612, \"clust\": 960, \"rank\": 520, \"rankvar\": 1525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 214, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 664, \"cat-2\": \"Density: 27\", \"cat_2_index\": 883, \"group\": [961.0, 492.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56664_BALBc-1_X01_Y01_467_502\", \"ini\": 2611, \"clust\": 1019, \"rank\": 510, \"rankvar\": 88, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 215, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2383, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1466, \"group\": [1033.0, 519.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56683_BALBc-1_X01_Y01_467_748\", \"ini\": 2610, \"clust\": 1105, \"rank\": 266, \"rankvar\": 580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 216, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 973, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1829, \"group\": [1104.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56772_BALBc-1_X01_Y01_468_926\", \"ini\": 2609, \"clust\": 1233, \"rank\": 1054, \"rankvar\": 2285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 217, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 891, \"cat-2\": \"Density: 25\", \"cat_2_index\": 600, \"group\": [1235.0, 621.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56830_BALBc-1_X01_Y01_469_709\", \"ini\": 2608, \"clust\": 1748, \"rank\": 2283, \"rankvar\": 2598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 218, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 974, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1830, \"group\": [1747.0, 988.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57728_BALBc-1_X01_Y01_48_342\", \"ini\": 2607, \"clust\": 1222, \"rank\": 1796, \"rankvar\": 2352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 219, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2384, \"cat-2\": \"Density: 25\", \"cat_2_index\": 601, \"group\": [1221.0, 612.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57798_BALBc-1_X01_Y01_480_352\", \"ini\": 2606, \"clust\": 1138, \"rank\": 803, \"rankvar\": 1185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 220, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2385, \"cat-2\": \"Density: 27\", \"cat_2_index\": 884, \"group\": [1139.0, 541.0, 149.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57888_BALBc-1_X01_Y01_481_332\", \"ini\": 2605, \"clust\": 280, \"rank\": 1352, \"rankvar\": 2263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 221, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 975, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1032, \"group\": [280.0, 202.0, 74.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58066_BALBc-1_X01_Y01_483_751\", \"ini\": 2604, \"clust\": 1239, \"rank\": 1169, \"rankvar\": 1426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 222, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 976, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1610, \"group\": [1243.0, 624.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58300_BALBc-1_X01_Y01_486_59\", \"ini\": 2603, \"clust\": 1139, \"rank\": 839, \"rankvar\": 1356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 223, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2224, \"cat-2\": \"Density: 17\", \"cat_2_index\": 69, \"group\": [1140.0, 541.0, 149.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58405_BALBc-1_X01_Y01_487_989\", \"ini\": 2602, \"clust\": 1483, \"rank\": 2762, \"rankvar\": 2761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 224, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1819, \"cat-2\": \"Density: 22\", \"cat_2_index\": 258, \"group\": [1481.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58769_BALBc-1_X01_Y01_491_835\", \"ini\": 2601, \"clust\": 1331, \"rank\": 1694, \"rankvar\": 2345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 225, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2386, \"cat-2\": \"Density: 25\", \"cat_2_index\": 602, \"group\": [1332.0, 699.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59185_BALBc-1_X01_Y01_496_860\", \"ini\": 2600, \"clust\": 286, \"rank\": 1549, \"rankvar\": 2798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 226, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2387, \"cat-2\": \"Density: 22\", \"cat_2_index\": 259, \"group\": [286.0, 208.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59663_BALBc-1_X01_Y01_501_885\", \"ini\": 2599, \"clust\": 1518, \"rank\": 2588, \"rankvar\": 2637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 227, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2388, \"cat-2\": \"Density: 23\", \"cat_2_index\": 370, \"group\": [1516.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59817_BALBc-1_X01_Y01_504_173\", \"ini\": 2598, \"clust\": 1597, \"rank\": 1077, \"rankvar\": 919, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 228, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1820, \"cat-2\": \"Density: 26\", \"cat_2_index\": 731, \"group\": [1598.0, 880.0, 257.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60154_BALBc-1_X01_Y01_508_261\", \"ini\": 2597, \"clust\": 1690, \"rank\": 2622, \"rankvar\": 2815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 229, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1821, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1185, \"group\": [1691.0, 948.0, 284.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60544_BALBc-1_X01_Y01_512_387\", \"ini\": 2596, \"clust\": 697, \"rank\": 151, \"rankvar\": 794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 230, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2806, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1033, \"group\": [700.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61293_BALBc-1_X01_Y01_520_799\", \"ini\": 2595, \"clust\": 1268, \"rank\": 1389, \"rankvar\": 2726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 231, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 977, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1034, \"group\": [1268.0, 647.0, 187.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61360_BALBc-1_X01_Y01_521_696\", \"ini\": 2594, \"clust\": 1687, \"rank\": 2161, \"rankvar\": 2225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 232, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 978, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1721, \"group\": [1690.0, 947.0, 283.0, 81.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61696_BALBc-1_X01_Y01_525_94\", \"ini\": 2593, \"clust\": 574, \"rank\": 534, \"rankvar\": 1154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 233, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2225, \"cat-2\": \"Density: 18\", \"cat_2_index\": 88, \"group\": [573.0, 391.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62336_BALBc-1_X01_Y01_533_397\", \"ini\": 2592, \"clust\": 2404, \"rank\": 1405, \"rankvar\": 2260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 234, \"cat-1\": \"Neighbor: plasma cells\", \"cat_1_index\": 2824, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1186, \"group\": [2405.0, 1275.0, 379.0, 103.0, 21.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62423_BALBc-1_X01_Y01_534_722\", \"ini\": 2591, \"clust\": 621, \"rank\": 504, \"rankvar\": 872, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 235, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 979, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1831, \"group\": [621.0, 420.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62444_BALBc-1_X01_Y01_534_959\", \"ini\": 2590, \"clust\": 1533, \"rank\": 1730, \"rankvar\": 2414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 236, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 892, \"cat-2\": \"Density: 25\", \"cat_2_index\": 603, \"group\": [1534.0, 830.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63078_BALBc-1_X01_Y01_542_700\", \"ini\": 2589, \"clust\": 1884, \"rank\": 2666, \"rankvar\": 2787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 237, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2389, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1832, \"group\": [1887.0, 1077.0, 328.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63087_BALBc-1_X01_Y01_542_797\", \"ini\": 2588, \"clust\": 1421, \"rank\": 2605, \"rankvar\": 2652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 238, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 980, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1035, \"group\": [1421.0, 768.0, 228.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63522_BALBc-1_X01_Y01_547_973\", \"ini\": 2587, \"clust\": 48, \"rank\": 490, \"rankvar\": 513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 239, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1822, \"cat-2\": \"Density: 26\", \"cat_2_index\": 732, \"group\": [48.0, 40.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63778_BALBc-1_X01_Y01_550_157\", \"ini\": 2586, \"clust\": 1570, \"rank\": 394, \"rankvar\": 1766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 240, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1823, \"cat-2\": \"Density: 24\", \"cat_2_index\": 473, \"group\": [1570.0, 859.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63964_BALBc-1_X01_Y01_552_62\", \"ini\": 2585, \"clust\": 306, \"rank\": 2342, \"rankvar\": 2801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 241, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1824, \"cat-2\": \"Density: 15\", \"cat_2_index\": 35, \"group\": [307.0, 215.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64005_BALBc-1_X01_Y01_553_25\", \"ini\": 2584, \"clust\": 927, \"rank\": 357, \"rankvar\": 171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 242, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2226, \"cat-2\": \"Density: 10\", \"cat_2_index\": 2, \"group\": [928.0, 481.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64010_BALBc-1_X01_Y01_553_292\", \"ini\": 2583, \"clust\": 967, \"rank\": 327, \"rankvar\": 1451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 243, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1825, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1036, \"group\": [967.0, 495.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65182_BALBc-1_X01_Y01_567_223\", \"ini\": 2582, \"clust\": 1365, \"rank\": 2111, \"rankvar\": 2292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 244, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2264, \"cat-2\": \"Density: 25\", \"cat_2_index\": 604, \"group\": [1366.0, 727.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65656_BALBc-1_X01_Y01_572_784\", \"ini\": 2581, \"clust\": 1616, \"rank\": 1771, \"rankvar\": 1970, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 245, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 981, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1187, \"group\": [1616.0, 891.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66746_BALBc-1_X01_Y01_586_262\", \"ini\": 2580, \"clust\": 649, \"rank\": 173, \"rankvar\": 148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 246, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2265, \"cat-2\": \"Density: 25\", \"cat_2_index\": 605, \"group\": [649.0, 436.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66807_BALBc-1_X01_Y01_586_921\", \"ini\": 2579, \"clust\": 1265, \"rank\": 2381, \"rankvar\": 2547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 247, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 747, \"cat-2\": \"Density: 24\", \"cat_2_index\": 474, \"group\": [1265.0, 644.0, 186.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67268_BALBc-1_X01_Y01_591_693\", \"ini\": 2578, \"clust\": 2241, \"rank\": 2198, \"rankvar\": 1400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 248, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2390, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1833, \"group\": [2240.0, 1219.0, 366.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67677_BALBc-1_X01_Y01_596_954\", \"ini\": 2577, \"clust\": 1844, \"rank\": 1856, \"rankvar\": 1830, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 249, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 982, \"cat-2\": \"Density: 22\", \"cat_2_index\": 260, \"group\": [1845.0, 1038.0, 311.0, 86.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68075_BALBc-1_X01_Y01_600_937\", \"ini\": 2576, \"clust\": 1741, \"rank\": 1766, \"rankvar\": 1658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 250, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 983, \"cat-2\": \"Density: 23\", \"cat_2_index\": 371, \"group\": [1742.0, 985.0, 296.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68258_BALBc-1_X01_Y01_603_416\", \"ini\": 2575, \"clust\": 1372, \"rank\": 2642, \"rankvar\": 2715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 251, \"cat-1\": \"Neighbor: plasma cells\", \"cat_1_index\": 2825, \"cat-2\": \"Density: 26\", \"cat_2_index\": 733, \"group\": [1373.0, 730.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68390_BALBc-1_X01_Y01_605_263\", \"ini\": 2574, \"clust\": 309, \"rank\": 1031, \"rankvar\": 2452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 252, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 748, \"cat-2\": \"Density: 26\", \"cat_2_index\": 734, \"group\": [317.0, 221.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68460_BALBc-1_X01_Y01_605_972\", \"ini\": 2573, \"clust\": 1302, \"rank\": 1377, \"rankvar\": 1812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 253, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 984, \"cat-2\": \"Density: 23\", \"cat_2_index\": 372, \"group\": [1301.0, 672.0, 197.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68786_BALBc-1_X01_Y01_609_707\", \"ini\": 2572, \"clust\": 563, \"rank\": 754, \"rankvar\": 1300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 254, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2391, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1722, \"group\": [564.0, 388.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69393_BALBc-1_X01_Y01_616_802\", \"ini\": 2571, \"clust\": 1227, \"rank\": 2109, \"rankvar\": 2391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 255, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 985, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1037, \"group\": [1227.0, 616.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69452_BALBc-1_X01_Y01_617_654\", \"ini\": 2570, \"clust\": 1220, \"rank\": 1631, \"rankvar\": 1800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 256, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2392, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1467, \"group\": [1220.0, 611.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69556_BALBc-1_X01_Y01_618_844\", \"ini\": 2569, \"clust\": 1431, \"rank\": 2261, \"rankvar\": 2205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 257, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 986, \"cat-2\": \"Density: 23\", \"cat_2_index\": 373, \"group\": [1431.0, 777.0, 233.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69767_BALBc-1_X01_Y01_620_771\", \"ini\": 2568, \"clust\": 1806, \"rank\": 1398, \"rankvar\": 2036, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 258, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2393, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1468, \"group\": [1806.0, 1020.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70401_BALBc-1_X01_Y01_628_954\", \"ini\": 2567, \"clust\": 325, \"rank\": 1822, \"rankvar\": 2410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 259, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 4, \"cat-2\": \"Density: 21\", \"cat_2_index\": 192, \"group\": [324.0, 226.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70856_BALBc-1_X01_Y01_633_693\", \"ini\": 2566, \"clust\": 749, \"rank\": 163, \"rankvar\": 257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 260, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 665, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1723, \"group\": [752.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71169_BALBc-1_X01_Y01_637_858\", \"ini\": 2565, \"clust\": 231, \"rank\": 1789, \"rankvar\": 2004, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 261, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 987, \"cat-2\": \"Density: 26\", \"cat_2_index\": 735, \"group\": [233.0, 162.0, 57.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72334_BALBc-1_X01_Y01_650_922\", \"ini\": 2564, \"clust\": 236, \"rank\": 950, \"rankvar\": 1257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 262, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1702, \"cat-2\": \"Density: 25\", \"cat_2_index\": 606, \"group\": [235.0, 164.0, 58.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72558_BALBc-1_X01_Y01_653_790\", \"ini\": 2563, \"clust\": 609, \"rank\": 220, \"rankvar\": 1881, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 263, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 988, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1724, \"group\": [607.0, 413.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72805_BALBc-1_X01_Y01_656_972\", \"ini\": 2562, \"clust\": 2523, \"rank\": 1237, \"rankvar\": 1139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 264, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1703, \"cat-2\": \"Density: 23\", \"cat_2_index\": 374, \"group\": [2524.0, 1354.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73338_BALBc-1_X01_Y01_662_687\", \"ini\": 2561, \"clust\": 559, \"rank\": 989, \"rankvar\": 531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 265, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 989, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1611, \"group\": [559.0, 383.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74854_BALBc-1_X01_Y01_680_662\", \"ini\": 2560, \"clust\": 602, \"rank\": 565, \"rankvar\": 243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 266, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2394, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1834, \"group\": [616.0, 417.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75831_BALBc-1_X01_Y01_692_998\", \"ini\": 2559, \"clust\": 1979, \"rank\": 2169, \"rankvar\": 1897, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 267, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1704, \"cat-2\": \"Density: 23\", \"cat_2_index\": 375, \"group\": [1980.0, 1121.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76190_BALBc-1_X01_Y01_697_768\", \"ini\": 2558, \"clust\": 595, \"rank\": 604, \"rankvar\": 745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 268, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 749, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1469, \"group\": [596.0, 407.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76418_BALBc-1_X01_Y01_7_625\", \"ini\": 2557, \"clust\": 1241, \"rank\": 2081, \"rankvar\": 2406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 269, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2227, \"cat-2\": \"Density: 10\", \"cat_2_index\": 3, \"group\": [1240.0, 623.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77472_BALBc-1_X01_Y01_711_676\", \"ini\": 2556, \"clust\": 1175, \"rank\": 1414, \"rankvar\": 2053, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 270, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 990, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2045, \"group\": [1174.0, 568.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77475_BALBc-1_X01_Y01_711_742\", \"ini\": 2555, \"clust\": 1171, \"rank\": 361, \"rankvar\": 874, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 271, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 991, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1725, \"group\": [1171.0, 566.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77792_BALBc-1_X01_Y01_715_768\", \"ini\": 2554, \"clust\": 1243, \"rank\": 1570, \"rankvar\": 1757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 272, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1705, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1612, \"group\": [1244.0, 625.0, 179.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78451_BALBc-1_X01_Y01_722_839\", \"ini\": 2553, \"clust\": 1347, \"rank\": 1230, \"rankvar\": 1724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 273, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2395, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1613, \"group\": [1348.0, 710.0, 211.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78461_BALBc-1_X01_Y01_722_950\", \"ini\": 2552, \"clust\": 185, \"rank\": 1273, \"rankvar\": 2680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 274, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1706, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1188, \"group\": [186.0, 122.0, 40.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78468_BALBc-1_X01_Y01_723_131\", \"ini\": 2551, \"clust\": 1546, \"rank\": 879, \"rankvar\": 2210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 275, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1826, \"cat-2\": \"Density: 21\", \"cat_2_index\": 193, \"group\": [1545.0, 837.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78787_BALBc-1_X01_Y01_727_496\", \"ini\": 2550, \"clust\": 1653, \"rank\": 2791, \"rankvar\": 2799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 276, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1707, \"cat-2\": \"Density: 27\", \"cat_2_index\": 885, \"group\": [1656.0, 914.0, 265.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78978_BALBc-1_X01_Y01_729_920\", \"ini\": 2549, \"clust\": 217, \"rank\": 658, \"rankvar\": 1555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 277, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1604, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1614, \"group\": [217.0, 149.0, 52.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79106_BALBc-1_X01_Y01_730_753\", \"ini\": 2548, \"clust\": 2457, \"rank\": 998, \"rankvar\": 665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 278, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1605, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1615, \"group\": [2459.0, 1308.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79197_BALBc-1_X01_Y01_731_852\", \"ini\": 2547, \"clust\": 1310, \"rank\": 1348, \"rankvar\": 2138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 279, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 750, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1934, \"group\": [1311.0, 679.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79228_BALBc-1_X01_Y01_732_264\", \"ini\": 2546, \"clust\": 320, \"rank\": 1459, \"rankvar\": 2206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 280, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1827, \"cat-2\": \"Density: 16\", \"cat_2_index\": 50, \"group\": [318.0, 222.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79377_BALBc-1_X01_Y01_733_981\", \"ini\": 2545, \"clust\": 183, \"rank\": 1396, \"rankvar\": 2333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 281, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 992, \"cat-2\": \"Density: 27\", \"cat_2_index\": 886, \"group\": [184.0, 121.0, 40.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79939_BALBc-1_X01_Y01_740_1001\", \"ini\": 2544, \"clust\": 1603, \"rank\": 1739, \"rankvar\": 1467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 282, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 993, \"cat-2\": \"Density: 25\", \"cat_2_index\": 607, \"group\": [1604.0, 886.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80506_BALBc-1_X01_Y01_747_927\", \"ini\": 2543, \"clust\": 1530, \"rank\": 2577, \"rankvar\": 2314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 283, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1828, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1038, \"group\": [1530.0, 827.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80525_BALBc-1_X01_Y01_748_234\", \"ini\": 2542, \"clust\": 1517, \"rank\": 2241, \"rankvar\": 2532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 284, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1829, \"cat-2\": \"Density: 19\", \"cat_2_index\": 114, \"group\": [1520.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80830_BALBc-1_X01_Y01_750_807\", \"ini\": 2541, \"clust\": 1252, \"rank\": 1909, \"rankvar\": 2631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 285, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1708, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1189, \"group\": [1251.0, 632.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80965_BALBc-1_X01_Y01_752_728\", \"ini\": 2540, \"clust\": 1408, \"rank\": 1813, \"rankvar\": 1944, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 286, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 994, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1616, \"group\": [1408.0, 758.0, 224.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81569_BALBc-1_X01_Y01_76_36\", \"ini\": 2539, \"clust\": 696, \"rank\": 353, \"rankvar\": 1297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 287, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1830, \"cat-2\": \"Density: 8\", \"cat_2_index\": 0, \"group\": [713.0, 457.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82103_BALBc-1_X01_Y01_766_541\", \"ini\": 2538, \"clust\": 1422, \"rank\": 2422, \"rankvar\": 2690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 288, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1831, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1190, \"group\": [1422.0, 768.0, 228.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82283_BALBc-1_X01_Y01_768_747\", \"ini\": 2537, \"clust\": 777, \"rank\": 275, \"rankvar\": 311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 289, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1606, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1343, \"group\": [780.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82292_BALBc-1_X01_Y01_768_860\", \"ini\": 2536, \"clust\": 1279, \"rank\": 1874, \"rankvar\": 2296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 290, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 751, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1726, \"group\": [1287.0, 658.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82501_BALBc-1_X01_Y01_770_672\", \"ini\": 2535, \"clust\": 840, \"rank\": 78, \"rankvar\": 419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 291, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1832, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1617, \"group\": [841.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82814_BALBc-1_X01_Y01_774_701\", \"ini\": 2534, \"clust\": 1505, \"rank\": 2572, \"rankvar\": 2617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 292, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1833, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1039, \"group\": [1506.0, 815.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83141_BALBc-1_X01_Y01_778_865\", \"ini\": 2533, \"clust\": 289, \"rank\": 2072, \"rankvar\": 2739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 293, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 752, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1935, \"group\": [289.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83368_BALBc-1_X01_Y01_780_829\", \"ini\": 2532, \"clust\": 2750, \"rank\": 1406, \"rankvar\": 1533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 294, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2228, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1727, \"group\": [2749.0, 1484.0, 440.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83575_BALBc-1_X01_Y01_783_772\", \"ini\": 2531, \"clust\": 317, \"rank\": 1815, \"rankvar\": 2023, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 295, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1834, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1344, \"group\": [327.0, 228.0, 79.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83783_BALBc-1_X01_Y01_786_42\", \"ini\": 2530, \"clust\": 1149, \"rank\": 1048, \"rankvar\": 168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 296, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1835, \"cat-2\": \"Density: 11\", \"cat_2_index\": 5, \"group\": [1148.0, 548.0, 151.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84106_BALBc-1_X01_Y01_79_467\", \"ini\": 2529, \"clust\": 1101, \"rank\": 32, \"rankvar\": 455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 297, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2396, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1040, \"group\": [1099.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84546_BALBc-1_X01_Y01_794_913\", \"ini\": 2528, \"clust\": 1323, \"rank\": 1102, \"rankvar\": 1900, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 298, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1836, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1470, \"group\": [1323.0, 691.0, 206.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84882_BALBc-1_X01_Y01_798_898\", \"ini\": 2527, \"clust\": 1224, \"rank\": 2184, \"rankvar\": 2120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 299, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 753, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2046, \"group\": [1230.0, 619.0, 177.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84899_BALBc-1_X01_Y01_799_204\", \"ini\": 2526, \"clust\": 808, \"rank\": 176, \"rankvar\": 355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 300, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1837, \"cat-2\": \"Density: 21\", \"cat_2_index\": 194, \"group\": [810.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85632_BALBc-1_X01_Y01_806_632\", \"ini\": 2525, \"clust\": 394, \"rank\": 799, \"rankvar\": 2176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 301, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1709, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1191, \"group\": [396.0, 277.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85720_BALBc-1_X01_Y01_807_805\", \"ini\": 2524, \"clust\": 909, \"rank\": 58, \"rankvar\": 965, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 302, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2229, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1728, \"group\": [910.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85870_BALBc-1_X01_Y01_809_965\", \"ini\": 2523, \"clust\": 973, \"rank\": 549, \"rankvar\": 959, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 303, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2397, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1729, \"group\": [973.0, 499.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86589_BALBc-1_X01_Y01_818_406\", \"ini\": 2522, \"clust\": 1773, \"rank\": 1821, \"rankvar\": 2732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 304, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1710, \"cat-2\": \"Density: 25\", \"cat_2_index\": 608, \"group\": [1772.0, 1005.0, 303.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86924_BALBc-1_X01_Y01_821_936\", \"ini\": 2521, \"clust\": 1244, \"rank\": 1159, \"rankvar\": 2302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 305, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 754, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1835, \"group\": [1245.0, 626.0, 179.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87345_BALBc-1_X01_Y01_827_373\", \"ini\": 2520, \"clust\": 1745, \"rank\": 1625, \"rankvar\": 1458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 306, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1711, \"cat-2\": \"Density: 25\", \"cat_2_index\": 609, \"group\": [1744.0, 986.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87649_BALBc-1_X01_Y01_830_295\", \"ini\": 2519, \"clust\": 176, \"rank\": 259, \"rankvar\": 1586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 307, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1838, \"cat-2\": \"Density: 22\", \"cat_2_index\": 261, \"group\": [176.0, 114.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87664_BALBc-1_X01_Y01_830_425\", \"ini\": 2518, \"clust\": 1037, \"rank\": 241, \"rankvar\": 974, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 308, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2398, \"cat-2\": \"Density: 27\", \"cat_2_index\": 887, \"group\": [1037.0, 521.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88044_BALBc-1_X01_Y01_835_742\", \"ini\": 2517, \"clust\": 1452, \"rank\": 1777, \"rankvar\": 1518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 309, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1839, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1041, \"group\": [1452.0, 790.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88079_BALBc-1_X01_Y01_836_344\", \"ini\": 2516, \"clust\": 1577, \"rank\": 1156, \"rankvar\": 1301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 310, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1536, \"cat-2\": \"Density: 25\", \"cat_2_index\": 610, \"group\": [1579.0, 865.0, 253.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88188_BALBc-1_X01_Y01_837_652\", \"ini\": 2515, \"clust\": 401, \"rank\": 492, \"rankvar\": 1398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 311, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 995, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1192, \"group\": [403.0, 281.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88270_BALBc-1_X01_Y01_838_807\", \"ini\": 2514, \"clust\": 1146, \"rank\": 1259, \"rankvar\": 1425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 312, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1712, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1730, \"group\": [1146.0, 546.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88505_BALBc-1_X01_Y01_840_865\", \"ini\": 2513, \"clust\": 1444, \"rank\": 2749, \"rankvar\": 2782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 313, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 755, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1936, \"group\": [1443.0, 784.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88518_BALBc-1_X01_Y01_840_980\", \"ini\": 2512, \"clust\": 756, \"rank\": 83, \"rankvar\": 758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 314, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 996, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1471, \"group\": [758.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88712_BALBc-1_X01_Y01_843_668\", \"ini\": 2511, \"clust\": 1598, \"rank\": 1080, \"rankvar\": 1160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 315, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1840, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1042, \"group\": [1599.0, 881.0, 257.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89100_BALBc-1_X01_Y01_848_541\", \"ini\": 2510, \"clust\": 1898, \"rank\": 2599, \"rankvar\": 2625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 316, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1841, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1193, \"group\": [1900.0, 1088.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90045_BALBc-1_X01_Y01_859_822\", \"ini\": 2509, \"clust\": 2751, \"rank\": 1765, \"rankvar\": 832, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 317, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1713, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1618, \"group\": [2755.0, 1489.0, 442.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90185_BALBc-1_X01_Y01_860_626\", \"ini\": 2508, \"clust\": 1127, \"rank\": 1373, \"rankvar\": 1717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 318, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1842, \"cat-2\": \"Density: 27\", \"cat_2_index\": 888, \"group\": [1128.0, 530.0, 144.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90284_BALBc-1_X01_Y01_861_874\", \"ini\": 2507, \"clust\": 232, \"rank\": 1475, \"rankvar\": 1343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 319, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 997, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2047, \"group\": [231.0, 161.0, 57.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90366_BALBc-1_X01_Y01_863_139\", \"ini\": 2506, \"clust\": 904, \"rank\": 40, \"rankvar\": 9, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 320, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2399, \"cat-2\": \"Density: 22\", \"cat_2_index\": 262, \"group\": [905.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91015_BALBc-1_X01_Y01_870_358\", \"ini\": 2505, \"clust\": 304, \"rank\": 1378, \"rankvar\": 2541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 321, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1537, \"cat-2\": \"Density: 24\", \"cat_2_index\": 475, \"group\": [309.0, 217.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91213_BALBc-1_X01_Y01_872_895\", \"ini\": 2504, \"clust\": 713, \"rank\": 861, \"rankvar\": 602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 322, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 998, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1937, \"group\": [716.0, 459.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91215_BALBc-1_X01_Y01_872_930\", \"ini\": 2503, \"clust\": 2475, \"rank\": 1409, \"rankvar\": 1130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 323, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 999, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1472, \"group\": [2475.0, 1323.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91352_BALBc-1_X01_Y01_874_726\", \"ini\": 2502, \"clust\": 1487, \"rank\": 2387, \"rankvar\": 2436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 324, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1000, \"cat-2\": \"Density: 26\", \"cat_2_index\": 736, \"group\": [1486.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91645_BALBc-1_X01_Y01_878_559\", \"ini\": 2501, \"clust\": 2406, \"rank\": 1243, \"rankvar\": 1361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 325, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1843, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1194, \"group\": [2409.0, 1279.0, 382.0, 104.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91823_BALBc-1_X01_Y01_88_805\", \"ini\": 2500, \"clust\": 1511, \"rank\": 2297, \"rankvar\": 2126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 326, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2400, \"cat-2\": \"Density: 23\", \"cat_2_index\": 376, \"group\": [1510.0, 818.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92363_BALBc-1_X01_Y01_887_395\", \"ini\": 2499, \"clust\": 1562, \"rank\": 689, \"rankvar\": 323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 327, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1844, \"cat-2\": \"Density: 25\", \"cat_2_index\": 611, \"group\": [1565.0, 854.0, 249.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92765_BALBc-1_X01_Y01_891_617\", \"ini\": 2498, \"clust\": 1223, \"rank\": 1347, \"rankvar\": 2489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 328, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2401, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1473, \"group\": [1222.0, 612.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93018_BALBc-1_X01_Y01_894_905\", \"ini\": 2497, \"clust\": 566, \"rank\": 691, \"rankvar\": 1614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 329, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1001, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1474, \"group\": [566.0, 389.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93161_BALBc-1_X01_Y01_896_937\", \"ini\": 2496, \"clust\": 2780, \"rank\": 2532, \"rankvar\": 2234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 330, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1002, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1731, \"group\": [2783.0, 1506.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94070_BALBc-1_X01_Y01_907_486\", \"ini\": 2495, \"clust\": 2556, \"rank\": 2149, \"rankvar\": 2181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 331, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 756, \"cat-2\": \"Density: 27\", \"cat_2_index\": 889, \"group\": [2555.0, 1378.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94547_BALBc-1_X01_Y01_912_926\", \"ini\": 2494, \"clust\": 2742, \"rank\": 1518, \"rankvar\": 2066, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 332, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1845, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1619, \"group\": [2745.0, 1480.0, 437.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94695_BALBc-1_X01_Y01_914_981\", \"ini\": 2493, \"clust\": 1280, \"rank\": 1629, \"rankvar\": 1828, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 333, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1846, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1732, \"group\": [1283.0, 655.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94725_BALBc-1_X01_Y01_915_472\", \"ini\": 2492, \"clust\": 331, \"rank\": 873, \"rankvar\": 1967, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 334, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1847, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1043, \"group\": [330.0, 231.0, 82.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94799_BALBc-1_X01_Y01_916_387\", \"ini\": 2491, \"clust\": 1491, \"rank\": 2550, \"rankvar\": 2397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 335, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 666, \"cat-2\": \"Density: 25\", \"cat_2_index\": 612, \"group\": [1496.0, 807.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94985_BALBc-1_X01_Y01_918_863\", \"ini\": 2490, \"clust\": 2757, \"rank\": 1620, \"rankvar\": 1420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 336, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 667, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1345, \"group\": [2756.0, 1490.0, 443.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95149_BALBc-1_X01_Y01_92_950\", \"ini\": 2489, \"clust\": 1519, \"rank\": 2607, \"rankvar\": 2711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 337, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1848, \"cat-2\": \"Density: 18\", \"cat_2_index\": 89, \"group\": [1517.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95350_BALBc-1_X01_Y01_922_525\", \"ini\": 2488, \"clust\": 1742, \"rank\": 2097, \"rankvar\": 1933, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 338, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2502, \"cat-2\": \"Density: 27\", \"cat_2_index\": 890, \"group\": [1743.0, 985.0, 296.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95627_BALBc-1_X01_Y01_925_921\", \"ini\": 2487, \"clust\": 1398, \"rank\": 1780, \"rankvar\": 2383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 339, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 668, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1044, \"group\": [1396.0, 747.0, 219.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96058_BALBc-1_X01_Y01_930_613\", \"ini\": 2486, \"clust\": 1578, \"rank\": 1584, \"rankvar\": 2009, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 340, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2402, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1045, \"group\": [1577.0, 863.0, 253.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96292_BALBc-1_X01_Y01_933_666\", \"ini\": 2485, \"clust\": 1579, \"rank\": 1692, \"rankvar\": 2209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 341, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2403, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1346, \"group\": [1578.0, 864.0, 253.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96547_BALBc-1_X01_Y01_937_170\", \"ini\": 2484, \"clust\": 346, \"rank\": 744, \"rankvar\": 1151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 342, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1849, \"cat-2\": \"Density: 19\", \"cat_2_index\": 115, \"group\": [345.0, 241.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96665_BALBc-1_X01_Y01_938_963\", \"ini\": 2483, \"clust\": 227, \"rank\": 1032, \"rankvar\": 1551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 343, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1850, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1836, \"group\": [226.0, 157.0, 55.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96745_BALBc-1_X01_Y01_939_916\", \"ini\": 2482, \"clust\": 2754, \"rank\": 1465, \"rankvar\": 985, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 344, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 669, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1475, \"group\": [2753.0, 1487.0, 441.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96964_BALBc-1_X01_Y01_941_78\", \"ini\": 2481, \"clust\": 1510, \"rank\": 2703, \"rankvar\": 2792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 345, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1851, \"cat-2\": \"Density: 17\", \"cat_2_index\": 70, \"group\": [1521.0, 820.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98233_BALBc-1_X01_Y01_957_431\", \"ini\": 2480, \"clust\": 1512, \"rank\": 2473, \"rankvar\": 2458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 346, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1852, \"cat-2\": \"Density: 23\", \"cat_2_index\": 377, \"group\": [1511.0, 818.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98244_BALBc-1_X01_Y01_957_547\", \"ini\": 2479, \"clust\": 706, \"rank\": 72, \"rankvar\": 1568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 347, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1003, \"cat-2\": \"Density: 25\", \"cat_2_index\": 613, \"group\": [704.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98423_BALBc-1_X01_Y01_96_276\", \"ini\": 2478, \"clust\": 281, \"rank\": 1399, \"rankvar\": 2459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 348, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 757, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1347, \"group\": [281.0, 203.0, 74.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98533_BALBc-1_X01_Y01_960_606\", \"ini\": 2477, \"clust\": 596, \"rank\": 392, \"rankvar\": 523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 349, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1853, \"cat-2\": \"Density: 27\", \"cat_2_index\": 891, \"group\": [597.0, 408.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98687_BALBc-1_X01_Y01_962_516\", \"ini\": 2476, \"clust\": 1624, \"rank\": 1532, \"rankvar\": 2338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 350, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1004, \"cat-2\": \"Density: 25\", \"cat_2_index\": 614, \"group\": [1625.0, 893.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98848_BALBc-1_X01_Y01_964_670\", \"ini\": 2475, \"clust\": 1436, \"rank\": 2083, \"rankvar\": 1428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 351, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1005, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1046, \"group\": [1447.0, 786.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98850_BALBc-1_X01_Y01_964_694\", \"ini\": 2474, \"clust\": 177, \"rank\": 204, \"rankvar\": 1352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 352, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1854, \"cat-2\": \"Density: 26\", \"cat_2_index\": 737, \"group\": [177.0, 114.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99057_BALBc-1_X01_Y01_967_479\", \"ini\": 2473, \"clust\": 1529, \"rank\": 2397, \"rankvar\": 2431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 353, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1855, \"cat-2\": \"Density: 23\", \"cat_2_index\": 378, \"group\": [1532.0, 828.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99105_BALBc-1_X01_Y01_967_965\", \"ini\": 2472, \"clust\": 1538, \"rank\": 2288, \"rankvar\": 1935, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 354, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 670, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1476, \"group\": [1538.0, 833.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99401_BALBc-1_X01_Y01_970_988\", \"ini\": 2471, \"clust\": 1413, \"rank\": 2124, \"rankvar\": 2361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 355, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 671, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1477, \"group\": [1415.0, 763.0, 226.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99809_BALBc-1_X01_Y01_976_311\", \"ini\": 2470, \"clust\": 1583, \"rank\": 1366, \"rankvar\": 2262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 356, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2404, \"cat-2\": \"Density: 24\", \"cat_2_index\": 476, \"group\": [1583.0, 868.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100228_BALBc-1_X01_Y01_980_928\", \"ini\": 2469, \"clust\": 155, \"rank\": 708, \"rankvar\": 1367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 357, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 893, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1047, \"group\": [156.0, 98.0, 32.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100256_BALBc-1_X01_Y01_981_360\", \"ini\": 2468, \"clust\": 369, \"rank\": 473, \"rankvar\": 795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 358, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 672, \"cat-2\": \"Density: 25\", \"cat_2_index\": 615, \"group\": [371.0, 257.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100547_BALBc-1_X01_Y01_985_432\", \"ini\": 2467, \"clust\": 1595, \"rank\": 1453, \"rankvar\": 825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 359, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1856, \"cat-2\": \"Density: 22\", \"cat_2_index\": 263, \"group\": [1596.0, 879.0, 257.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100572_BALBc-1_X01_Y01_985_76\", \"ini\": 2466, \"clust\": 1649, \"rank\": 2493, \"rankvar\": 2284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 360, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2266, \"cat-2\": \"Density: 18\", \"cat_2_index\": 90, \"group\": [1650.0, 910.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101105_BALBc-1_X01_Y01_991_734\", \"ini\": 2465, \"clust\": 1371, \"rank\": 2291, \"rankvar\": 1906, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 361, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1857, \"cat-2\": \"Density: 25\", \"cat_2_index\": 616, \"group\": [1370.0, 729.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101341_BALBc-1_X01_Y01_994_653\", \"ini\": 2464, \"clust\": 821, \"rank\": 88, \"rankvar\": 55, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 362, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1006, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1048, \"group\": [820.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101367_BALBc-1_X01_Y01_994_943\", \"ini\": 2463, \"clust\": 1540, \"rank\": 2330, \"rankvar\": 1794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 363, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 673, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1049, \"group\": [1540.0, 834.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-727_BALBc-1_X02_Y01_100_250\", \"ini\": 2462, \"clust\": 707, \"rank\": 429, \"rankvar\": 1286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 364, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1858, \"cat-2\": \"Density: 26\", \"cat_2_index\": 738, \"group\": [706.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-920_BALBc-1_X02_Y01_1001_805\", \"ini\": 2461, \"clust\": 175, \"rank\": 819, \"rankvar\": 1003, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 365, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1714, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1478, \"group\": [178.0, 115.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1117_BALBc-1_X02_Y01_1004_49\", \"ini\": 2460, \"clust\": 1559, \"rank\": 1105, \"rankvar\": 1959, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 366, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1007, \"cat-2\": \"Density: 21\", \"cat_2_index\": 195, \"group\": [1560.0, 849.0, 248.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1309_BALBc-1_X02_Y01_1006_988\", \"ini\": 2459, \"clust\": 1660, \"rank\": 1929, \"rankvar\": 2476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 367, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1008, \"cat-2\": \"Density: 25\", \"cat_2_index\": 617, \"group\": [1659.0, 917.0, 267.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1701_BALBc-1_X02_Y01_1010_833\", \"ini\": 2458, \"clust\": 1428, \"rank\": 1675, \"rankvar\": 870, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 368, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1859, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1348, \"group\": [1426.0, 772.0, 230.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1932_BALBc-1_X02_Y01_1013_860\", \"ini\": 2457, \"clust\": 1524, \"rank\": 1404, \"rankvar\": 2218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 369, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 758, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1479, \"group\": [1524.0, 823.0, 240.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1955_BALBc-1_X02_Y01_1014_248\", \"ini\": 2456, \"clust\": 1390, \"rank\": 2636, \"rankvar\": 2191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 370, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1860, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1620, \"group\": [1389.0, 740.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2025_BALBc-1_X02_Y01_1015_159\", \"ini\": 2455, \"clust\": 2265, \"rank\": 1286, \"rankvar\": 1379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 371, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1861, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1480, \"group\": [2263.0, 1236.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2212_BALBc-1_X02_Y01_1017_633\", \"ini\": 2454, \"clust\": 248, \"rank\": 919, \"rankvar\": 1308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 372, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2405, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1050, \"group\": [250.0, 173.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2698_BALBc-1_X02_Y01_1022_99\", \"ini\": 2453, \"clust\": 377, \"rank\": 417, \"rankvar\": 1877, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 373, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1862, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1051, \"group\": [376.0, 262.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2934_BALBc-1_X02_Y01_1025_811\", \"ini\": 2452, \"clust\": 1368, \"rank\": 2142, \"rankvar\": 1797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 374, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1715, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1938, \"group\": [1372.0, 729.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2976_BALBc-1_X02_Y01_1026_488\", \"ini\": 2451, \"clust\": 2254, \"rank\": 1680, \"rankvar\": 808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 375, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1863, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1481, \"group\": [2257.0, 1233.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3352_BALBc-1_X02_Y01_103_900\", \"ini\": 2450, \"clust\": 1640, \"rank\": 1901, \"rankvar\": 2627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 376, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2477, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1621, \"group\": [1647.0, 907.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3627_BALBc-1_X02_Y01_1033_729\", \"ini\": 2449, \"clust\": 1040, \"rank\": 336, \"rankvar\": 826, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 377, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2807, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1349, \"group\": [1040.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3919_BALBc-1_X02_Y01_1037_288\", \"ini\": 2448, \"clust\": 1416, \"rank\": 2104, \"rankvar\": 1806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 378, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 674, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2048, \"group\": [1417.0, 765.0, 227.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4041_BALBc-1_X02_Y01_1038_754\", \"ini\": 2447, \"clust\": 1213, \"rank\": 1014, \"rankvar\": 1370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 379, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1009, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1350, \"group\": [1214.0, 607.0, 172.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4239_BALBc-1_X02_Y01_1040_415\", \"ini\": 2446, \"clust\": 710, \"rank\": 347, \"rankvar\": 1907, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 380, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1864, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1052, \"group\": [711.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4540_BALBc-1_X02_Y01_1044_183\", \"ini\": 2445, \"clust\": 93, \"rank\": 249, \"rankvar\": 2634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 381, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1010, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1733, \"group\": [94.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4583_BALBc-1_X02_Y01_1044_66\", \"ini\": 2444, \"clust\": 1471, \"rank\": 2335, \"rankvar\": 2626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 382, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1538, \"cat-2\": \"Density: 24\", \"cat_2_index\": 477, \"group\": [1472.0, 802.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4708_BALBc-1_X02_Y01_1046_353\", \"ini\": 2443, \"clust\": 818, \"rank\": 217, \"rankvar\": 92, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 383, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 675, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1351, \"group\": [822.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4717_BALBc-1_X02_Y01_1046_503\", \"ini\": 2442, \"clust\": 1357, \"rank\": 2038, \"rankvar\": 2136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 384, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2808, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1482, \"group\": [1358.0, 719.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4778_BALBc-1_X02_Y01_1047_250\", \"ini\": 2441, \"clust\": 1890, \"rank\": 2008, \"rankvar\": 2543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 385, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1865, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1837, \"group\": [1890.0, 1080.0, 330.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4973_BALBc-1_X02_Y01_1049_643\", \"ini\": 2440, \"clust\": 824, \"rank\": 39, \"rankvar\": 393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 386, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 759, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1483, \"group\": [825.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5021_BALBc-1_X02_Y01_105_184\", \"ini\": 2439, \"clust\": 569, \"rank\": 568, \"rankvar\": 1126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 387, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2406, \"cat-2\": \"Density: 21\", \"cat_2_index\": 196, \"group\": [569.0, 389.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5131_BALBc-1_X02_Y01_1050_723\", \"ini\": 2438, \"clust\": 1641, \"rank\": 2212, \"rankvar\": 2727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 388, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1866, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1734, \"group\": [1640.0, 904.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5233_BALBc-1_X02_Y01_1052_226\", \"ini\": 2437, \"clust\": 770, \"rank\": 27, \"rankvar\": 1303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 389, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1011, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2049, \"group\": [769.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5349_BALBc-1_X02_Y01_1053_839\", \"ini\": 2436, \"clust\": 1877, \"rank\": 1740, \"rankvar\": 1761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 390, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1867, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2050, \"group\": [1879.0, 1069.0, 324.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5616_BALBc-1_X02_Y01_1056_980\", \"ini\": 2435, \"clust\": 507, \"rank\": 634, \"rankvar\": 404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 391, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1012, \"cat-2\": \"Density: 27\", \"cat_2_index\": 892, \"group\": [508.0, 348.0, 118.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5712_BALBc-1_X02_Y01_1058_349\", \"ini\": 2434, \"clust\": 1381, \"rank\": 1638, \"rankvar\": 1567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 392, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 676, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1352, \"group\": [1382.0, 734.0, 216.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5723_BALBc-1_X02_Y01_1058_507\", \"ini\": 2433, \"clust\": 2743, \"rank\": 1346, \"rankvar\": 2579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 393, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2809, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1622, \"group\": [2743.0, 1478.0, 437.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6217_BALBc-1_X02_Y01_1063_382\", \"ini\": 2432, \"clust\": 230, \"rank\": 1688, \"rankvar\": 1865, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 394, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1013, \"cat-2\": \"Density: 27\", \"cat_2_index\": 893, \"group\": [234.0, 163.0, 57.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6529_BALBc-1_X02_Y01_1067_754\", \"ini\": 2431, \"clust\": 535, \"rank\": 402, \"rankvar\": 975, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 395, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1868, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1623, \"group\": [536.0, 367.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6591_BALBc-1_X02_Y01_1068_473\", \"ini\": 2430, \"clust\": 1307, \"rank\": 1452, \"rankvar\": 2645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 396, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1869, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1195, \"group\": [1307.0, 678.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6633_BALBc-1_X02_Y01_1068_843\", \"ini\": 2429, \"clust\": 1096, \"rank\": 76, \"rankvar\": 654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 397, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1870, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1939, \"group\": [1098.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7022_BALBc-1_X02_Y01_1072_571\", \"ini\": 2428, \"clust\": 1362, \"rank\": 2393, \"rankvar\": 2109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 398, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 760, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1838, \"group\": [1363.0, 724.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7059_BALBc-1_X02_Y01_1072_960\", \"ini\": 2427, \"clust\": 1531, \"rank\": 2285, \"rankvar\": 2221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 399, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1871, \"cat-2\": \"Density: 25\", \"cat_2_index\": 618, \"group\": [1531.0, 827.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7262_BALBc-1_X02_Y01_1075_334\", \"ini\": 2426, \"clust\": 218, \"rank\": 1120, \"rankvar\": 1359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 400, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2267, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1735, \"group\": [224.0, 156.0, 54.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7803_BALBc-1_X02_Y01_1081_510\", \"ini\": 2425, \"clust\": 1417, \"rank\": 1649, \"rankvar\": 1538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 401, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1576, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1053, \"group\": [1418.0, 765.0, 227.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8504_BALBc-1_X02_Y01_109_960\", \"ini\": 2424, \"clust\": 2752, \"rank\": 1941, \"rankvar\": 1963, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 402, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1014, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2051, \"group\": [2754.0, 1488.0, 441.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8575_BALBc-1_X02_Y01_1090_708\", \"ini\": 2423, \"clust\": 607, \"rank\": 419, \"rankvar\": 561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 403, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1872, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1736, \"group\": [610.0, 413.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8689_BALBc-1_X02_Y01_1092_353\", \"ini\": 2422, \"clust\": 1386, \"rank\": 2205, \"rankvar\": 1635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 404, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1873, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1484, \"group\": [1387.0, 738.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9108_BALBc-1_X02_Y01_1097_627\", \"ini\": 2421, \"clust\": 243, \"rank\": 988, \"rankvar\": 2124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 405, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1015, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1940, \"group\": [243.0, 170.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9139_BALBc-1_X02_Y01_1098_191\", \"ini\": 2420, \"clust\": 1339, \"rank\": 1143, \"rankvar\": 1339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 406, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1874, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1941, \"group\": [1340.0, 704.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9234_BALBc-1_X02_Y01_1099_456\", \"ini\": 2419, \"clust\": 80, \"rank\": 536, \"rankvar\": 1081, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 407, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1016, \"cat-2\": \"Density: 27\", \"cat_2_index\": 894, \"group\": [83.0, 62.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9814_BALBc-1_X02_Y01_1104_657\", \"ini\": 2418, \"clust\": 2478, \"rank\": 1536, \"rankvar\": 2282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 408, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1607, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1839, \"group\": [2476.0, 1324.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9841_BALBc-1_X02_Y01_1104_956\", \"ini\": 2417, \"clust\": 779, \"rank\": 225, \"rankvar\": 170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 409, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1875, \"cat-2\": \"Density: 25\", \"cat_2_index\": 619, \"group\": [777.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9888_BALBc-1_X02_Y01_1105_530\", \"ini\": 2416, \"clust\": 1678, \"rank\": 2402, \"rankvar\": 2681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 410, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1577, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1353, \"group\": [1678.0, 935.0, 276.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9992_BALBc-1_X02_Y01_1106_822\", \"ini\": 2415, \"clust\": 47, \"rank\": 677, \"rankvar\": 1408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 411, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1876, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1840, \"group\": [50.0, 41.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10019_BALBc-1_X02_Y01_1107_235\", \"ini\": 2414, \"clust\": 1589, \"rank\": 1665, \"rankvar\": 1987, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 412, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2478, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1942, \"group\": [1589.0, 872.0, 255.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10132_BALBc-1_X02_Y01_1108_495\", \"ini\": 2413, \"clust\": 1366, \"rank\": 2230, \"rankvar\": 2095, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 413, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2407, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1354, \"group\": [1367.0, 728.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10374_BALBc-1_X02_Y01_1110_694\", \"ini\": 2412, \"clust\": 2479, \"rank\": 1474, \"rankvar\": 1376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 414, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1539, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2140, \"group\": [2477.0, 1324.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10576_BALBc-1_X02_Y01_1113_426\", \"ini\": 2411, \"clust\": 1493, \"rank\": 2678, \"rankvar\": 2303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 415, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1017, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1355, \"group\": [1492.0, 805.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10601_BALBc-1_X02_Y01_1113_726\", \"ini\": 2410, \"clust\": 759, \"rank\": 438, \"rankvar\": 20, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 416, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 761, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1737, \"group\": [762.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10688_BALBc-1_X02_Y01_1114_902\", \"ini\": 2409, \"clust\": 2396, \"rank\": 2814, \"rankvar\": 2745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 417, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1877, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1624, \"group\": [2394.0, 1268.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10939_BALBc-1_X02_Y01_1118_266\", \"ini\": 2408, \"clust\": 1102, \"rank\": 65, \"rankvar\": 194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 418, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1878, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1943, \"group\": [1100.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10988_BALBc-1_X02_Y01_1118_830\", \"ini\": 2407, \"clust\": 1025, \"rank\": 200, \"rankvar\": 276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 419, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 762, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1738, \"group\": [1032.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11337_BALBc-1_X02_Y01_1122_571\", \"ini\": 2406, \"clust\": 391, \"rank\": 1092, \"rankvar\": 371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 420, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1018, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1841, \"group\": [391.0, 273.0, 93.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11413_BALBc-1_X02_Y01_1123_613\", \"ini\": 2405, \"clust\": 1360, \"rank\": 1772, \"rankvar\": 1320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 421, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1019, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2141, \"group\": [1360.0, 721.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11498_BALBc-1_X02_Y01_1124_538\", \"ini\": 2404, \"clust\": 2476, \"rank\": 1400, \"rankvar\": 723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 422, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2268, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1739, \"group\": [2479.0, 1326.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11656_BALBc-1_X02_Y01_1126_662\", \"ini\": 2403, \"clust\": 302, \"rank\": 591, \"rankvar\": 2344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 423, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1540, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2297, \"group\": [299.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11767_BALBc-1_X02_Y01_1128_191\", \"ini\": 2402, \"clust\": 103, \"rank\": 610, \"rankvar\": 1759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 424, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 763, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1740, \"group\": [108.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11839_BALBc-1_X02_Y01_1129_238\", \"ini\": 2401, \"clust\": 987, \"rank\": 186, \"rankvar\": 1269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 425, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2479, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1944, \"group\": [988.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12133_BALBc-1_X02_Y01_1132_128\", \"ini\": 2400, \"clust\": 947, \"rank\": 260, \"rankvar\": 411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 426, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 764, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1625, \"group\": [948.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12185_BALBc-1_X02_Y01_1132_650\", \"ini\": 2399, \"clust\": 1980, \"rank\": 2275, \"rankvar\": 1411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 427, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 765, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1842, \"group\": [1981.0, 1122.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12327_BALBc-1_X02_Y01_1134_751\", \"ini\": 2398, \"clust\": 1448, \"rank\": 2476, \"rankvar\": 1487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 428, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 766, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1945, \"group\": [1450.0, 788.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12702_BALBc-1_X02_Y01_1139_494\", \"ini\": 2397, \"clust\": 1373, \"rank\": 2736, \"rankvar\": 2528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 429, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2269, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1485, \"group\": [1374.0, 730.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12872_BALBc-1_X02_Y01_1140_895\", \"ini\": 2396, \"clust\": 1322, \"rank\": 1307, \"rankvar\": 1328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 430, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1879, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1196, \"group\": [1325.0, 692.0, 206.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13105_BALBc-1_X02_Y01_1143_686\", \"ini\": 2395, \"clust\": 1399, \"rank\": 1511, \"rankvar\": 1565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 431, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 767, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1626, \"group\": [1397.0, 747.0, 219.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13323_BALBc-1_X02_Y01_1146_697\", \"ini\": 2394, \"clust\": 2299, \"rank\": 1767, \"rankvar\": 1615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 432, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 768, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2052, \"group\": [2296.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13387_BALBc-1_X02_Y01_1147_623\", \"ini\": 2393, \"clust\": 245, \"rank\": 749, \"rankvar\": 1992, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 433, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1020, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2053, \"group\": [246.0, 171.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13636_BALBc-1_X02_Y01_115_870\", \"ini\": 2392, \"clust\": 53, \"rank\": 760, \"rankvar\": 1018, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 434, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 677, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1486, \"group\": [51.0, 42.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13712_BALBc-1_X02_Y01_1150_829\", \"ini\": 2391, \"clust\": 184, \"rank\": 1333, \"rankvar\": 1040, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 435, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 769, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1356, \"group\": [185.0, 121.0, 40.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13747_BALBc-1_X02_Y01_1151_270\", \"ini\": 2390, \"clust\": 870, \"rank\": 3, \"rankvar\": 376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 436, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2408, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2054, \"group\": [868.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13791_BALBc-1_X02_Y01_1151_786\", \"ini\": 2389, \"clust\": 2261, \"rank\": 1330, \"rankvar\": 1119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 437, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1021, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1197, \"group\": [2262.0, 1235.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13891_BALBc-1_X02_Y01_1153_161\", \"ini\": 2388, \"clust\": 240, \"rank\": 876, \"rankvar\": 756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 438, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 770, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1198, \"group\": [239.0, 167.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13893_BALBc-1_X02_Y01_1153_212\", \"ini\": 2387, \"clust\": 1343, \"rank\": 1017, \"rankvar\": 2423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 439, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1716, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1741, \"group\": [1344.0, 708.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14380_BALBc-1_X02_Y01_1159_66\", \"ini\": 2386, \"clust\": 1571, \"rank\": 761, \"rankvar\": 552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 440, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1880, \"cat-2\": \"Density: 22\", \"cat_2_index\": 264, \"group\": [1571.0, 859.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14826_BALBc-1_X02_Y01_1164_105\", \"ini\": 2385, \"clust\": 213, \"rank\": 1419, \"rankvar\": 2038, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 441, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 771, \"cat-2\": \"Density: 27\", \"cat_2_index\": 895, \"group\": [214.0, 146.0, 51.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15075_BALBc-1_X02_Y01_1167_300\", \"ini\": 2384, \"clust\": 1654, \"rank\": 2822, \"rankvar\": 2770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 442, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 772, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2298, \"group\": [1654.0, 913.0, 265.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15083_BALBc-1_X02_Y01_1167_377\", \"ini\": 2383, \"clust\": 1324, \"rank\": 1369, \"rankvar\": 2076, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 443, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1022, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1054, \"group\": [1324.0, 691.0, 206.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15194_BALBc-1_X02_Y01_1168_743\", \"ini\": 2382, \"clust\": 2561, \"rank\": 2585, \"rankvar\": 2447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 444, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 5, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1742, \"group\": [2559.0, 1381.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15334_BALBc-1_X02_Y01_117_883\", \"ini\": 2381, \"clust\": 1588, \"rank\": 1506, \"rankvar\": 1209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 445, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1881, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1487, \"group\": [1591.0, 874.0, 255.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15471_BALBc-1_X02_Y01_1171_582\", \"ini\": 2380, \"clust\": 372, \"rank\": 550, \"rankvar\": 1273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 446, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1023, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1843, \"group\": [369.0, 255.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15630_BALBc-1_X02_Y01_1173_619\", \"ini\": 2379, \"clust\": 1672, \"rank\": 1519, \"rankvar\": 254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 447, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1024, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1844, \"group\": [1671.0, 928.0, 272.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15634_BALBc-1_X02_Y01_1173_634\", \"ini\": 2378, \"clust\": 1988, \"rank\": 1845, \"rankvar\": 2056, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 448, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 773, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2055, \"group\": [1991.0, 1125.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15644_BALBc-1_X02_Y01_1173_755\", \"ini\": 2377, \"clust\": 1782, \"rank\": 2479, \"rankvar\": 2472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 449, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1025, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1488, \"group\": [1782.0, 1012.0, 307.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15706_BALBc-1_X02_Y01_1174_723\", \"ini\": 2376, \"clust\": 1667, \"rank\": 1578, \"rankvar\": 537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 450, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 774, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1627, \"group\": [1668.0, 925.0, 270.0, 76.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15832_BALBc-1_X02_Y01_1176_472\", \"ini\": 2375, \"clust\": 1161, \"rank\": 943, \"rankvar\": 2174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 451, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1026, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1357, \"group\": [1165.0, 561.0, 155.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16250_BALBc-1_X02_Y01_1180_834\", \"ini\": 2374, \"clust\": 2499, \"rank\": 2376, \"rankvar\": 2349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 452, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 775, \"cat-2\": \"Density: 27\", \"cat_2_index\": 896, \"group\": [2498.0, 1344.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16261_BALBc-1_X02_Y01_1180_946\", \"ini\": 2373, \"clust\": 2553, \"rank\": 2372, \"rankvar\": 2480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 453, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1882, \"cat-2\": \"Density: 27\", \"cat_2_index\": 897, \"group\": [2553.0, 1376.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16286_BALBc-1_X02_Y01_1181_398\", \"ini\": 2372, \"clust\": 1415, \"rank\": 2131, \"rankvar\": 1951, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 454, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1027, \"cat-2\": \"Density: 27\", \"cat_2_index\": 898, \"group\": [1414.0, 762.0, 226.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16453_BALBc-1_X02_Y01_1183_622\", \"ini\": 2371, \"clust\": 2300, \"rank\": 1787, \"rankvar\": 1410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 455, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 6, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1743, \"group\": [2297.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16460_BALBc-1_X02_Y01_1183_734\", \"ini\": 2370, \"clust\": 753, \"rank\": 447, \"rankvar\": 407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 456, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 7, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1628, \"group\": [753.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16490_BALBc-1_X02_Y01_1184_20\", \"ini\": 2369, \"clust\": 1553, \"rank\": 1097, \"rankvar\": 2142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 457, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 894, \"cat-2\": \"Density: 15\", \"cat_2_index\": 36, \"group\": [1554.0, 844.0, 244.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16779_BALBc-1_X02_Y01_1188_180\", \"ini\": 2368, \"clust\": 1432, \"rank\": 2067, \"rankvar\": 2250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 458, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 776, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2056, \"group\": [1432.0, 778.0, 233.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16869_BALBc-1_X02_Y01_1189_208\", \"ini\": 2367, \"clust\": 776, \"rank\": 134, \"rankvar\": 326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 459, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1717, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2220, \"group\": [781.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16889_BALBc-1_X02_Y01_1189_451\", \"ini\": 2366, \"clust\": 661, \"rank\": 117, \"rankvar\": 694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 460, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1028, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1489, \"group\": [660.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16901_BALBc-1_X02_Y01_1189_539\", \"ini\": 2365, \"clust\": 993, \"rank\": 880, \"rankvar\": 579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 461, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1608, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2221, \"group\": [996.0, 510.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17048_BALBc-1_X02_Y01_1190_641\", \"ini\": 2364, \"clust\": 1110, \"rank\": 294, \"rankvar\": 99, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 462, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 8, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1946, \"group\": [1112.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17117_BALBc-1_X02_Y01_1191_556\", \"ini\": 2363, \"clust\": 1910, \"rank\": 2336, \"rankvar\": 2158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 463, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1609, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1629, \"group\": [1911.0, 1097.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17132_BALBc-1_X02_Y01_1191_663\", \"ini\": 2362, \"clust\": 71, \"rank\": 867, \"rankvar\": 705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 464, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 777, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1947, \"group\": [72.0, 54.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17336_BALBc-1_X02_Y01_1194_509\", \"ini\": 2361, \"clust\": 38, \"rank\": 380, \"rankvar\": 121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 465, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1610, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1630, \"group\": [38.0, 33.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17653_BALBc-1_X02_Y01_1198_693\", \"ini\": 2360, \"clust\": 2407, \"rank\": 1040, \"rankvar\": 810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 466, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 778, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2057, \"group\": [2407.0, 1277.0, 381.0, 104.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17657_BALBc-1_X02_Y01_1198_792\", \"ini\": 2359, \"clust\": 2816, \"rank\": 1952, \"rankvar\": 1836, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 467, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1029, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1055, \"group\": [2815.0, 1529.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17668_BALBc-1_X02_Y01_1198_965\", \"ini\": 2358, \"clust\": 330, \"rank\": 539, \"rankvar\": 1534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 468, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2409, \"cat-2\": \"Density: 26\", \"cat_2_index\": 739, \"group\": [332.0, 233.0, 82.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17790_BALBc-1_X02_Y01_12_625\", \"ini\": 2357, \"clust\": 1262, \"rank\": 1632, \"rankvar\": 1252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 469, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1883, \"cat-2\": \"Density: 25\", \"cat_2_index\": 620, \"group\": [1262.0, 641.0, 185.0, 52.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17829_BALBc-1_X02_Y01_12_949\", \"ini\": 2356, \"clust\": 1423, \"rank\": 1651, \"rankvar\": 189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 470, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1718, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1358, \"group\": [1430.0, 776.0, 232.0, 66.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17833_BALBc-1_X02_Y01_120_10\", \"ini\": 2355, \"clust\": 1797, \"rank\": 2162, \"rankvar\": 2507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 471, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1611, \"cat-2\": \"Density: 15\", \"cat_2_index\": 37, \"group\": [1796.0, 1016.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17960_BALBc-1_X02_Y01_1200_621\", \"ini\": 2354, \"clust\": 762, \"rank\": 247, \"rankvar\": 847, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 472, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 9, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1845, \"group\": [763.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18016_BALBc-1_X02_Y01_1201_255\", \"ini\": 2353, \"clust\": 1298, \"rank\": 1502, \"rankvar\": 1362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 473, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1030, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1744, \"group\": [1298.0, 669.0, 195.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18096_BALBc-1_X02_Y01_1202_300\", \"ini\": 2352, \"clust\": 2812, \"rank\": 1515, \"rankvar\": 2062, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 474, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1719, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1631, \"group\": [2810.0, 1527.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18196_BALBc-1_X02_Y01_1203_578\", \"ini\": 2351, \"clust\": 2510, \"rank\": 1545, \"rankvar\": 1962, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 475, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1612, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1632, \"group\": [2510.0, 1350.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18210_BALBc-1_X02_Y01_1203_725\", \"ini\": 2350, \"clust\": 1404, \"rank\": 2084, \"rankvar\": 1010, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 476, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1031, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1633, \"group\": [1407.0, 757.0, 223.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18259_BALBc-1_X02_Y01_1204_360\", \"ini\": 2349, \"clust\": 223, \"rank\": 1125, \"rankvar\": 2003, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 477, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1720, \"cat-2\": \"Density: 26\", \"cat_2_index\": 740, \"group\": [222.0, 154.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18482_BALBc-1_X02_Y01_1206_858\", \"ini\": 2348, \"clust\": 1675, \"rank\": 2191, \"rankvar\": 1585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 478, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 779, \"cat-2\": \"Density: 24\", \"cat_2_index\": 478, \"group\": [1675.0, 932.0, 274.0, 78.0, 16.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18612_BALBc-1_X02_Y01_1208_674\", \"ini\": 2347, \"clust\": 2764, \"rank\": 2364, \"rankvar\": 1803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 479, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1032, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2058, \"group\": [2765.0, 1497.0, 446.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18710_BALBc-1_X02_Y01_1209_899\", \"ini\": 2346, \"clust\": 2555, \"rank\": 2485, \"rankvar\": 1246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 480, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 780, \"cat-2\": \"Density: 24\", \"cat_2_index\": 479, \"group\": [2557.0, 1379.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18905_BALBc-1_X02_Y01_1211_658\", \"ini\": 2345, \"clust\": 2594, \"rank\": 1467, \"rankvar\": 1155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 10, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2059, \"group\": [2598.0, 1405.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19104_BALBc-1_X02_Y01_1214_445\", \"ini\": 2344, \"clust\": 2408, \"rank\": 1275, \"rankvar\": 1336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 482, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2410, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1056, \"group\": [2408.0, 1278.0, 381.0, 104.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19264_BALBc-1_X02_Y01_1216_455\", \"ini\": 2343, \"clust\": 195, \"rank\": 426, \"rankvar\": 687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 483, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1613, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1359, \"group\": [195.0, 131.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19265_BALBc-1_X02_Y01_1216_472\", \"ini\": 2342, \"clust\": 2652, \"rank\": 2680, \"rankvar\": 2034, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 484, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1614, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1634, \"group\": [2650.0, 1439.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19271_BALBc-1_X02_Y01_1216_594\", \"ini\": 2341, \"clust\": 2706, \"rank\": 2197, \"rankvar\": 2075, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 485, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 781, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1635, \"group\": [2706.0, 1454.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19288_BALBc-1_X02_Y01_1216_855\", \"ini\": 2340, \"clust\": 2809, \"rank\": 2099, \"rankvar\": 2231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 486, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 782, \"cat-2\": \"Density: 24\", \"cat_2_index\": 480, \"group\": [2808.0, 1526.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19310_BALBc-1_X02_Y01_1217_258\", \"ini\": 2339, \"clust\": 1990, \"rank\": 2079, \"rankvar\": 1901, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 487, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1033, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1745, \"group\": [1988.0, 1125.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19351_BALBc-1_X02_Y01_1217_759\", \"ini\": 2338, \"clust\": 1983, \"rank\": 2001, \"rankvar\": 475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 488, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2503, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1360, \"group\": [1987.0, 1124.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19674_BALBc-1_X02_Y01_1221_135\", \"ini\": 2337, \"clust\": 197, \"rank\": 527, \"rankvar\": 231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 489, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2411, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1057, \"group\": [197.0, 132.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19754_BALBc-1_X02_Y01_1222_168\", \"ini\": 2336, \"clust\": 16, \"rank\": 1002, \"rankvar\": 990, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 490, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1721, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1746, \"group\": [16.0, 15.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19785_BALBc-1_X02_Y01_1222_508\", \"ini\": 2335, \"clust\": 2775, \"rank\": 2245, \"rankvar\": 1982, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 491, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1615, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1490, \"group\": [2776.0, 1503.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20247_BALBc-1_X02_Y01_1228_427\", \"ini\": 2334, \"clust\": 2699, \"rank\": 2384, \"rankvar\": 1997, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2504, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1361, \"group\": [2701.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20444_BALBc-1_X02_Y01_1230_254\", \"ini\": 2333, \"clust\": 2498, \"rank\": 1920, \"rankvar\": 2055, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 493, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1034, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1636, \"group\": [2500.0, 1344.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20674_BALBc-1_X02_Y01_1232_895\", \"ini\": 2332, \"clust\": 69, \"rank\": 930, \"rankvar\": 2545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 494, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 783, \"cat-2\": \"Density: 27\", \"cat_2_index\": 899, \"group\": [65.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20684_BALBc-1_X02_Y01_1232_950\", \"ini\": 2331, \"clust\": 1655, \"rank\": 2792, \"rankvar\": 2647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 495, \"cat-1\": \"Neighbor: CD4(-)CD8(-) cDC\", \"cat_1_index\": 1590, \"cat-2\": \"Density: 24\", \"cat_2_index\": 481, \"group\": [1655.0, 913.0, 265.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20877_BALBc-1_X02_Y01_1235_619\", \"ini\": 2330, \"clust\": 2659, \"rank\": 2623, \"rankvar\": 2182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 496, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 784, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1948, \"group\": [2660.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21358_BALBc-1_X02_Y01_1241_235\", \"ini\": 2329, \"clust\": 1821, \"rank\": 2533, \"rankvar\": 2241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 497, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1035, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1362, \"group\": [1826.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21512_BALBc-1_X02_Y01_1243_309\", \"ini\": 2328, \"clust\": 1401, \"rank\": 1986, \"rankvar\": 1809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 498, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1722, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1058, \"group\": [1402.0, 752.0, 221.0, 63.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21583_BALBc-1_X02_Y01_1244_275\", \"ini\": 2327, \"clust\": 1374, \"rank\": 2130, \"rankvar\": 2229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 499, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 11, \"cat-2\": \"Density: 27\", \"cat_2_index\": 900, \"group\": [1375.0, 731.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21689_BALBc-1_X02_Y01_1245_805\", \"ini\": 2326, \"clust\": 2762, \"rank\": 2355, \"rankvar\": 2506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 500, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2505, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1199, \"group\": [2763.0, 1496.0, 446.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22019_BALBc-1_X02_Y01_125_269\", \"ini\": 2325, \"clust\": 1555, \"rank\": 1936, \"rankvar\": 2202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 501, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1884, \"cat-2\": \"Density: 25\", \"cat_2_index\": 621, \"group\": [1557.0, 847.0, 246.0, 70.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22239_BALBc-1_X02_Y01_1252_216\", \"ini\": 2324, \"clust\": 1344, \"rank\": 1356, \"rankvar\": 2438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 502, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2270, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1363, \"group\": [1345.0, 708.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22243_BALBc-1_X02_Y01_1252_255\", \"ini\": 2323, \"clust\": 59, \"rank\": 940, \"rankvar\": 1605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 503, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 12, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1200, \"group\": [71.0, 53.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22255_BALBc-1_X02_Y01_1252_348\", \"ini\": 2322, \"clust\": 2755, \"rank\": 1471, \"rankvar\": 1993, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 504, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1723, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1059, \"group\": [2759.0, 1492.0, 444.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22266_BALBc-1_X02_Y01_1252_472\", \"ini\": 2321, \"clust\": 2572, \"rank\": 2151, \"rankvar\": 2568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 505, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2506, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1364, \"group\": [2571.0, 1391.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22548_BALBc-1_X02_Y01_1256_623\", \"ini\": 2320, \"clust\": 2722, \"rank\": 1912, \"rankvar\": 1241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 506, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 785, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2060, \"group\": [2722.0, 1462.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22671_BALBc-1_X02_Y01_1258_136\", \"ini\": 2319, \"clust\": 751, \"rank\": 326, \"rankvar\": 209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 507, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1036, \"cat-2\": \"Density: 27\", \"cat_2_index\": 901, \"group\": [749.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22748_BALBc-1_X02_Y01_1259_383\", \"ini\": 2318, \"clust\": 67, \"rank\": 1135, \"rankvar\": 1686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 508, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 678, \"cat-2\": \"Density: 27\", \"cat_2_index\": 902, \"group\": [68.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22787_BALBc-1_X02_Y01_1259_893\", \"ini\": 2317, \"clust\": 2641, \"rank\": 2147, \"rankvar\": 1039, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 509, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 786, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1060, \"group\": [2642.0, 1434.0, 424.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22931_BALBc-1_X02_Y01_1260_924\", \"ini\": 2316, \"clust\": 68, \"rank\": 1108, \"rankvar\": 1770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 510, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 787, \"cat-2\": \"Density: 27\", \"cat_2_index\": 903, \"group\": [67.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23108_BALBc-1_X02_Y01_1263_256\", \"ini\": 2315, \"clust\": 1677, \"rank\": 2643, \"rankvar\": 2812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 511, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 679, \"cat-2\": \"Density: 26\", \"cat_2_index\": 741, \"group\": [1680.0, 937.0, 277.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23139_BALBc-1_X02_Y01_1263_670\", \"ini\": 2314, \"clust\": 1888, \"rank\": 2770, \"rankvar\": 2776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 512, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1037, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1637, \"group\": [1888.0, 1078.0, 329.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23280_BALBc-1_X02_Y01_1265_648\", \"ini\": 2313, \"clust\": 2578, \"rank\": 1173, \"rankvar\": 1871, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 513, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 13, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1846, \"group\": [2584.0, 1397.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23335_BALBc-1_X02_Y01_1266_525\", \"ini\": 2312, \"clust\": 1179, \"rank\": 1809, \"rankvar\": 1324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 514, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2507, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1491, \"group\": [1179.0, 572.0, 159.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23348_BALBc-1_X02_Y01_1266_814\", \"ini\": 2311, \"clust\": 2570, \"rank\": 1826, \"rankvar\": 2117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 515, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2508, \"cat-2\": \"Density: 22\", \"cat_2_index\": 265, \"group\": [2574.0, 1391.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23436_BALBc-1_X02_Y01_1268_124\", \"ini\": 2310, \"clust\": 1376, \"rank\": 1951, \"rankvar\": 2583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 516, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2271, \"cat-2\": \"Density: 26\", \"cat_2_index\": 742, \"group\": [1377.0, 732.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23465_BALBc-1_X02_Y01_1268_478\", \"ini\": 2309, \"clust\": 2660, \"rank\": 2619, \"rankvar\": 2175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 517, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 14, \"cat-2\": \"Density: 27\", \"cat_2_index\": 904, \"group\": [2661.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23570_BALBc-1_X02_Y01_1269_960\", \"ini\": 2308, \"clust\": 781, \"rank\": 203, \"rankvar\": 1211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 518, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1061, \"group\": [784.0, 475.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23719_BALBc-1_X02_Y01_1271_19\", \"ini\": 2307, \"clust\": 701, \"rank\": 211, \"rankvar\": 1322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 519, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1885, \"cat-2\": \"Density: 9\", \"cat_2_index\": 1, \"group\": [701.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23817_BALBc-1_X02_Y01_1272_501\", \"ini\": 2306, \"clust\": 1211, \"rank\": 883, \"rankvar\": 683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 520, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2509, \"cat-2\": \"Density: 27\", \"cat_2_index\": 905, \"group\": [1210.0, 603.0, 171.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23834_BALBc-1_X02_Y01_1272_684\", \"ini\": 2305, \"clust\": 2483, \"rank\": 1336, \"rankvar\": 1789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 521, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1038, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1365, \"group\": [2485.0, 1332.0, 396.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23870_BALBc-1_X02_Y01_1273_191\", \"ini\": 2304, \"clust\": 752, \"rank\": 152, \"rankvar\": 405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 522, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1724, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1062, \"group\": [750.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23961_BALBc-1_X02_Y01_1274_276\", \"ini\": 2303, \"clust\": 1387, \"rank\": 2215, \"rankvar\": 2470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 523, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2412, \"cat-2\": \"Density: 24\", \"cat_2_index\": 482, \"group\": [1385.0, 737.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24129_BALBc-1_X02_Y01_1276_627\", \"ini\": 2302, \"clust\": 327, \"rank\": 1158, \"rankvar\": 385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 524, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 15, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1492, \"group\": [328.0, 229.0, 80.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24213_BALBc-1_X02_Y01_1277_743\", \"ini\": 2301, \"clust\": 2627, \"rank\": 1828, \"rankvar\": 1164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 525, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2510, \"cat-2\": \"Density: 26\", \"cat_2_index\": 743, \"group\": [2630.0, 1423.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24260_BALBc-1_X02_Y01_1278_371\", \"ini\": 2300, \"clust\": 2642, \"rank\": 2076, \"rankvar\": 599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 526, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 16, \"cat-2\": \"Density: 20\", \"cat_2_index\": 140, \"group\": [2643.0, 1434.0, 424.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24435_BALBc-1_X02_Y01_128_859\", \"ini\": 2299, \"clust\": 1238, \"rank\": 786, \"rankvar\": 2656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 527, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 680, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1493, \"group\": [1238.0, 622.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24454_BALBc-1_X02_Y01_1280_168\", \"ini\": 2298, \"clust\": 1617, \"rank\": 2238, \"rankvar\": 2569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 528, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1725, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1063, \"group\": [1617.0, 891.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24523_BALBc-1_X02_Y01_1281_204\", \"ini\": 2297, \"clust\": 1367, \"rank\": 2431, \"rankvar\": 2267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 529, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2511, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1064, \"group\": [1368.0, 728.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24639_BALBc-1_X02_Y01_1282_936\", \"ini\": 2296, \"clust\": 1699, \"rank\": 2400, \"rankvar\": 2154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 530, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 788, \"cat-2\": \"Density: 25\", \"cat_2_index\": 622, \"group\": [1705.0, 960.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24854_BALBc-1_X02_Y01_1285_865\", \"ini\": 2295, \"clust\": 2711, \"rank\": 2510, \"rankvar\": 2346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 531, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 789, \"cat-2\": \"Density: 20\", \"cat_2_index\": 141, \"group\": [2708.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25171_BALBc-1_X02_Y01_129_327\", \"ini\": 2294, \"clust\": 994, \"rank\": 581, \"rankvar\": 1143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 532, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1886, \"cat-2\": \"Density: 26\", \"cat_2_index\": 744, \"group\": [994.0, 510.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25272_BALBc-1_X02_Y01_1290_692\", \"ini\": 2293, \"clust\": 1922, \"rank\": 2231, \"rankvar\": 2386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 533, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 17, \"cat-2\": \"Density: 27\", \"cat_2_index\": 906, \"group\": [1922.0, 1105.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25330_BALBc-1_X02_Y01_1291_444\", \"ini\": 2292, \"clust\": 2562, \"rank\": 2478, \"rankvar\": 2266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 534, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2512, \"cat-2\": \"Density: 21\", \"cat_2_index\": 197, \"group\": [2560.0, 1381.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25437_BALBc-1_X02_Y01_1292_824\", \"ini\": 2291, \"clust\": 157, \"rank\": 1558, \"rankvar\": 1795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 535, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 18, \"cat-2\": \"Density: 21\", \"cat_2_index\": 198, \"group\": [161.0, 102.0, 33.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25507_BALBc-1_X02_Y01_1293_608\", \"ini\": 2290, \"clust\": 1949, \"rank\": 2007, \"rankvar\": 1581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 536, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 19, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1065, \"group\": [1951.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25576_BALBc-1_X02_Y01_1294_588\", \"ini\": 2289, \"clust\": 355, \"rank\": 562, \"rankvar\": 1218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 537, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 790, \"cat-2\": \"Density: 26\", \"cat_2_index\": 745, \"group\": [355.0, 249.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25582_BALBc-1_X02_Y01_1294_704\", \"ini\": 2288, \"clust\": 390, \"rank\": 1552, \"rankvar\": 2161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 538, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1039, \"cat-2\": \"Density: 25\", \"cat_2_index\": 623, \"group\": [408.0, 286.0, 97.0, 28.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25697_BALBc-1_X02_Y01_1296_329\", \"ini\": 2287, \"clust\": 2759, \"rank\": 2054, \"rankvar\": 2104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 539, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2413, \"cat-2\": \"Density: 19\", \"cat_2_index\": 116, \"group\": [2762.0, 1495.0, 445.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25710_BALBc-1_X02_Y01_1296_563\", \"ini\": 2286, \"clust\": 2717, \"rank\": 2304, \"rankvar\": 1740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 540, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2513, \"cat-2\": \"Density: 25\", \"cat_2_index\": 624, \"group\": [2721.0, 1461.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25815_BALBc-1_X02_Y01_1297_976\", \"ini\": 2285, \"clust\": 359, \"rank\": 158, \"rankvar\": 2223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 541, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1040, \"cat-2\": \"Density: 23\", \"cat_2_index\": 379, \"group\": [362.0, 251.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25841_BALBc-1_X02_Y01_1298_381\", \"ini\": 2284, \"clust\": 2781, \"rank\": 2444, \"rankvar\": 2712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 791, \"cat-2\": \"Density: 17\", \"cat_2_index\": 71, \"group\": [2781.0, 1506.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25946_BALBc-1_X02_Y01_1299_659\", \"ini\": 2283, \"clust\": 199, \"rank\": 1168, \"rankvar\": 494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 543, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 20, \"cat-2\": \"Density: 24\", \"cat_2_index\": 483, \"group\": [200.0, 134.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26179_BALBc-1_X02_Y01_1300_765\", \"ini\": 2282, \"clust\": 2132, \"rank\": 2604, \"rankvar\": 2748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 544, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2514, \"cat-2\": \"Density: 18\", \"cat_2_index\": 91, \"group\": [2132.0, 1153.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26338_BALBc-1_X02_Y01_1302_966\", \"ini\": 2281, \"clust\": 2657, \"rank\": 2795, \"rankvar\": 2633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 545, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1041, \"cat-2\": \"Density: 22\", \"cat_2_index\": 266, \"group\": [2657.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26563_BALBc-1_X02_Y01_1306_615\", \"ini\": 2280, \"clust\": 636, \"rank\": 593, \"rankvar\": 34, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 546, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 21, \"cat-2\": \"Density: 24\", \"cat_2_index\": 484, \"group\": [635.0, 428.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26947_BALBc-1_X02_Y01_1310_844\", \"ini\": 2279, \"clust\": 2674, \"rank\": 2626, \"rankvar\": 2441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 547, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 22, \"cat-2\": \"Density: 17\", \"cat_2_index\": 72, \"group\": [2681.0, 1446.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26986_BALBc-1_X02_Y01_1311_476\", \"ini\": 2278, \"clust\": 2138, \"rank\": 2314, \"rankvar\": 1274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 548, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 23, \"cat-2\": \"Density: 20\", \"cat_2_index\": 142, \"group\": [2142.0, 1159.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27217_BALBc-1_X02_Y01_1314_632\", \"ini\": 2277, \"clust\": 152, \"rank\": 1096, \"rankvar\": 372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 549, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 24, \"cat-2\": \"Density: 23\", \"cat_2_index\": 380, \"group\": [155.0, 97.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27299_BALBc-1_X02_Y01_1315_692\", \"ini\": 2276, \"clust\": 979, \"rank\": 556, \"rankvar\": 444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 550, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 25, \"cat-2\": \"Density: 22\", \"cat_2_index\": 267, \"group\": [979.0, 503.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27307_BALBc-1_X02_Y01_1315_735\", \"ini\": 2275, \"clust\": 2018, \"rank\": 1850, \"rankvar\": 1202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 26, \"cat-2\": \"Density: 19\", \"cat_2_index\": 117, \"group\": [2019.0, 1137.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27466_BALBc-1_X02_Y01_1317_879\", \"ini\": 2274, \"clust\": 257, \"rank\": 1351, \"rankvar\": 1067, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 552, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 792, \"cat-2\": \"Density: 16\", \"cat_2_index\": 51, \"group\": [263.0, 185.0, 64.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27504_BALBc-1_X02_Y01_1318_405\", \"ini\": 2273, \"clust\": 1405, \"rank\": 2132, \"rankvar\": 1636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 553, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 793, \"cat-2\": \"Density: 16\", \"cat_2_index\": 52, \"group\": [1405.0, 755.0, 223.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27595_BALBc-1_X02_Y01_1319_808\", \"ini\": 2272, \"clust\": 2184, \"rank\": 1579, \"rankvar\": 2501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 554, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 27, \"cat-2\": \"Density: 15\", \"cat_2_index\": 38, \"group\": [2182.0, 1185.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27599_BALBc-1_X02_Y01_1319_890\", \"ini\": 2271, \"clust\": 578, \"rank\": 1160, \"rankvar\": 1522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 555, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 794, \"cat-2\": \"Density: 17\", \"cat_2_index\": 73, \"group\": [595.0, 406.0, 133.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27627_BALBc-1_X02_Y01_132_376\", \"ini\": 2270, \"clust\": 308, \"rank\": 2203, \"rankvar\": 2725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 556, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1042, \"cat-2\": \"Density: 26\", \"cat_2_index\": 746, \"group\": [306.0, 215.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27677_BALBc-1_X02_Y01_132_918\", \"ini\": 2269, \"clust\": 250, \"rank\": 834, \"rankvar\": 907, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 557, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2515, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1949, \"group\": [249.0, 172.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27726_BALBc-1_X02_Y01_1320_540\", \"ini\": 2268, \"clust\": 2518, \"rank\": 1470, \"rankvar\": 1020, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 558, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2516, \"cat-2\": \"Density: 18\", \"cat_2_index\": 92, \"group\": [2518.0, 1352.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27814_BALBc-1_X02_Y01_1321_772\", \"ini\": 2267, \"clust\": 2271, \"rank\": 1548, \"rankvar\": 1462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 559, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 28, \"cat-2\": \"Density: 17\", \"cat_2_index\": 74, \"group\": [2269.0, 1239.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27851_BALBc-1_X02_Y01_1322_496\", \"ini\": 2266, \"clust\": 1961, \"rank\": 2345, \"rankvar\": 1341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 560, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2517, \"cat-2\": \"Density: 16\", \"cat_2_index\": 53, \"group\": [1959.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27996_BALBc-1_X02_Y01_1324_340\", \"ini\": 2265, \"clust\": 1345, \"rank\": 816, \"rankvar\": 1536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 561, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 795, \"cat-2\": \"Density: 13\", \"cat_2_index\": 12, \"group\": [1346.0, 709.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28090_BALBc-1_X02_Y01_1325_569\", \"ini\": 2264, \"clust\": 1905, \"rank\": 2378, \"rankvar\": 1226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 562, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 29, \"cat-2\": \"Density: 20\", \"cat_2_index\": 143, \"group\": [1905.0, 1092.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28093_BALBc-1_X02_Y01_1325_603\", \"ini\": 2263, \"clust\": 1697, \"rank\": 1776, \"rankvar\": 1554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 563, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 30, \"cat-2\": \"Density: 22\", \"cat_2_index\": 268, \"group\": [1698.0, 955.0, 286.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28114_BALBc-1_X02_Y01_1325_828\", \"ini\": 2262, \"clust\": 2650, \"rank\": 2270, \"rankvar\": 1860, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 564, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 31, \"cat-2\": \"Density: 15\", \"cat_2_index\": 39, \"group\": [2653.0, 1440.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28137_BALBc-1_X02_Y01_1325_999\", \"ini\": 2261, \"clust\": 2658, \"rank\": 2807, \"rankvar\": 2722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 565, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 796, \"cat-2\": \"Density: 17\", \"cat_2_index\": 75, \"group\": [2658.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28664_BALBc-1_X02_Y01_1331_725\", \"ini\": 2260, \"clust\": 2140, \"rank\": 2554, \"rankvar\": 949, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 566, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 32, \"cat-2\": \"Density: 16\", \"cat_2_index\": 54, \"group\": [2139.0, 1157.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28713_BALBc-1_X02_Y01_1332_436\", \"ini\": 2259, \"clust\": 2689, \"rank\": 2793, \"rankvar\": 1660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 567, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2518, \"cat-2\": \"Density: 14\", \"cat_2_index\": 27, \"group\": [2691.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28759_BALBc-1_X02_Y01_1332_937\", \"ini\": 2258, \"clust\": 2691, \"rank\": 2794, \"rankvar\": 2291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 568, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 797, \"cat-2\": \"Density: 15\", \"cat_2_index\": 40, \"group\": [2688.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28951_BALBc-1_X02_Y01_1335_663\", \"ini\": 2257, \"clust\": 2304, \"rank\": 1907, \"rankvar\": 1208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 569, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 33, \"cat-2\": \"Density: 20\", \"cat_2_index\": 144, \"group\": [2303.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29000_BALBc-1_X02_Y01_1336_597\", \"ini\": 2256, \"clust\": 1970, \"rank\": 2287, \"rankvar\": 1879, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 570, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 34, \"cat-2\": \"Density: 16\", \"cat_2_index\": 55, \"group\": [1964.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29507_BALBc-1_X02_Y01_137_977\", \"ini\": 2255, \"clust\": 65, \"rank\": 1253, \"rankvar\": 2589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 571, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1043, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1950, \"group\": [63.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29674_BALBc-1_X02_Y01_14_498\", \"ini\": 2254, \"clust\": 1664, \"rank\": 2031, \"rankvar\": 2771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 572, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2414, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1201, \"group\": [1664.0, 921.0, 268.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29998_BALBc-1_X02_Y01_143_952\", \"ini\": 2253, \"clust\": 1156, \"rank\": 2452, \"rankvar\": 2255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 573, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1044, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1951, \"group\": [1156.0, 555.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30482_BALBc-1_X02_Y01_15_575\", \"ini\": 2252, \"clust\": 23, \"rank\": 810, \"rankvar\": 937, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 574, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1887, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1202, \"group\": [23.0, 22.0, 13.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30586_BALBc-1_X02_Y01_150_909\", \"ini\": 2251, \"clust\": 1763, \"rank\": 1773, \"rankvar\": 2156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1045, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1494, \"group\": [1764.0, 999.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31216_BALBc-1_X02_Y01_159_250\", \"ini\": 2250, \"clust\": 1228, \"rank\": 1841, \"rankvar\": 1893, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 576, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1617, \"cat-2\": \"Density: 26\", \"cat_2_index\": 747, \"group\": [1225.0, 615.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31389_BALBc-1_X02_Y01_160_546\", \"ini\": 2249, \"clust\": 1550, \"rank\": 872, \"rankvar\": 645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 577, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1888, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1203, \"group\": [1549.0, 840.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31462_BALBc-1_X02_Y01_161_584\", \"ini\": 2248, \"clust\": 835, \"rank\": 142, \"rankvar\": 38, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 578, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1889, \"cat-2\": \"Density: 27\", \"cat_2_index\": 907, \"group\": [834.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31774_BALBc-1_X02_Y01_166_30\", \"ini\": 2247, \"clust\": 1608, \"rank\": 1384, \"rankvar\": 1097, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 579, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1046, \"cat-2\": \"Density: 16\", \"cat_2_index\": 56, \"group\": [1612.0, 888.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31790_BALBc-1_X02_Y01_166_464\", \"ini\": 2246, \"clust\": 1128, \"rank\": 1233, \"rankvar\": 1184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 580, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2810, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1495, \"group\": [1129.0, 531.0, 144.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32250_BALBc-1_X02_Y01_171_888\", \"ini\": 2245, \"clust\": 1288, \"rank\": 1464, \"rankvar\": 1278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 581, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 798, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1366, \"group\": [1289.0, 660.0, 189.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32282_BALBc-1_X02_Y01_172_482\", \"ini\": 2244, \"clust\": 1658, \"rank\": 2279, \"rankvar\": 2762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 582, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1890, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1496, \"group\": [1666.0, 923.0, 269.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32442_BALBc-1_X02_Y01_174_956\", \"ini\": 2243, \"clust\": 1303, \"rank\": 1227, \"rankvar\": 1232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 583, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1047, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1847, \"group\": [1302.0, 673.0, 197.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32519_BALBc-1_X02_Y01_175_843\", \"ini\": 2242, \"clust\": 2758, \"rank\": 2037, \"rankvar\": 2151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 584, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1891, \"cat-2\": \"Density: 26\", \"cat_2_index\": 748, \"group\": [2757.0, 1490.0, 443.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32762_BALBc-1_X02_Y01_179_322\", \"ini\": 2241, \"clust\": 450, \"rank\": 458, \"rankvar\": 2039, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 585, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1048, \"cat-2\": \"Density: 25\", \"cat_2_index\": 625, \"group\": [451.0, 315.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32908_BALBc-1_X02_Y01_180_240\", \"ini\": 2240, \"clust\": 1605, \"rank\": 682, \"rankvar\": 2434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 586, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1618, \"cat-2\": \"Density: 23\", \"cat_2_index\": 381, \"group\": [1607.0, 887.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33134_BALBc-1_X02_Y01_183_289\", \"ini\": 2239, \"clust\": 1332, \"rank\": 1248, \"rankvar\": 871, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 587, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1049, \"cat-2\": \"Density: 24\", \"cat_2_index\": 485, \"group\": [1333.0, 700.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33188_BALBc-1_X02_Y01_183_994\", \"ini\": 2238, \"clust\": 2502, \"rank\": 2262, \"rankvar\": 2429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 588, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1619, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1497, \"group\": [2501.0, 1345.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33296_BALBc-1_X02_Y01_185_49\", \"ini\": 2237, \"clust\": 20, \"rank\": 1242, \"rankvar\": 557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 589, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2480, \"cat-2\": \"Density: 20\", \"cat_2_index\": 145, \"group\": [25.0, 24.0, 14.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33298_BALBc-1_X02_Y01_185_504\", \"ini\": 2236, \"clust\": 968, \"rank\": 137, \"rankvar\": 1667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 590, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2415, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1638, \"group\": [968.0, 495.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33505_BALBc-1_X02_Y01_188_605\", \"ini\": 2235, \"clust\": 555, \"rank\": 699, \"rankvar\": 786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1050, \"cat-2\": \"Density: 27\", \"cat_2_index\": 908, \"group\": [557.0, 381.0, 127.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34197_BALBc-1_X02_Y01_196_898\", \"ini\": 2234, \"clust\": 1520, \"rank\": 2644, \"rankvar\": 2511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 592, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 799, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1204, \"group\": [1518.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34308_BALBc-1_X02_Y01_198_421\", \"ini\": 2233, \"clust\": 1707, \"rank\": 2691, \"rankvar\": 2577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 593, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1892, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1747, \"group\": [1706.0, 961.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34743_BALBc-1_X02_Y01_203_465\", \"ini\": 2232, \"clust\": 1465, \"rank\": 2337, \"rankvar\": 2164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 594, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1893, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1748, \"group\": [1466.0, 799.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35154_BALBc-1_X02_Y01_208_938\", \"ini\": 2231, \"clust\": 237, \"rank\": 743, \"rankvar\": 1890, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 595, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1051, \"cat-2\": \"Density: 26\", \"cat_2_index\": 749, \"group\": [236.0, 164.0, 58.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35303_BALBc-1_X02_Y01_21_920\", \"ini\": 2230, \"clust\": 56, \"rank\": 1104, \"rankvar\": 571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 596, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2416, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1749, \"group\": [57.0, 46.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35604_BALBc-1_X02_Y01_214_17\", \"ini\": 2229, \"clust\": 24, \"rank\": 1062, \"rankvar\": 915, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 597, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1620, \"cat-2\": \"Density: 15\", \"cat_2_index\": 41, \"group\": [24.0, 23.0, 13.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35670_BALBc-1_X02_Y01_214_814\", \"ini\": 2228, \"clust\": 269, \"rank\": 1262, \"rankvar\": 1282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 598, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1894, \"cat-2\": \"Density: 25\", \"cat_2_index\": 626, \"group\": [269.0, 191.0, 68.0, 21.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35942_BALBc-1_X02_Y01_218_649\", \"ini\": 2227, \"clust\": 354, \"rank\": 1157, \"rankvar\": 2618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 599, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1052, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1639, \"group\": [367.0, 254.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36172_BALBc-1_X02_Y01_221_262\", \"ini\": 2226, \"clust\": 1563, \"rank\": 844, \"rankvar\": 186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 600, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1621, \"cat-2\": \"Density: 26\", \"cat_2_index\": 750, \"group\": [1563.0, 852.0, 249.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36246_BALBc-1_X02_Y01_222_326\", \"ini\": 2225, \"clust\": 402, \"rank\": 370, \"rankvar\": 605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 601, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1622, \"cat-2\": \"Density: 24\", \"cat_2_index\": 486, \"group\": [401.0, 280.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36545_BALBc-1_X02_Y01_226_202\", \"ini\": 2224, \"clust\": 1231, \"rank\": 1926, \"rankvar\": 2582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 602, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1623, \"cat-2\": \"Density: 24\", \"cat_2_index\": 487, \"group\": [1232.0, 620.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37650_BALBc-1_X02_Y01_24_403\", \"ini\": 2223, \"clust\": 1551, \"rank\": 909, \"rankvar\": 1671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 603, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2481, \"cat-2\": \"Density: 22\", \"cat_2_index\": 269, \"group\": [1550.0, 840.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37845_BALBc-1_X02_Y01_242_283\", \"ini\": 2222, \"clust\": 328, \"rank\": 1155, \"rankvar\": 1721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 604, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2272, \"cat-2\": \"Density: 22\", \"cat_2_index\": 270, \"group\": [329.0, 230.0, 81.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37881_BALBc-1_X02_Y01_242_724\", \"ini\": 2221, \"clust\": 1272, \"rank\": 935, \"rankvar\": 2355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 605, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 617, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1205, \"group\": [1275.0, 652.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38216_BALBc-1_X02_Y01_246_892\", \"ini\": 2220, \"clust\": 1593, \"rank\": 766, \"rankvar\": 804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 606, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1895, \"cat-2\": \"Density: 26\", \"cat_2_index\": 751, \"group\": [1592.0, 875.0, 256.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38269_BALBc-1_X02_Y01_247_736\", \"ini\": 2219, \"clust\": 511, \"rank\": 742, \"rankvar\": 33, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 607, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1896, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1367, \"group\": [512.0, 351.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38745_BALBc-1_X02_Y01_253_169\", \"ini\": 2218, \"clust\": 692, \"rank\": 131, \"rankvar\": 1750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 608, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2417, \"cat-2\": \"Density: 20\", \"cat_2_index\": 146, \"group\": [696.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38753_BALBc-1_X02_Y01_253_315\", \"ini\": 2217, \"clust\": 1547, \"rank\": 1129, \"rankvar\": 2313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 609, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1624, \"cat-2\": \"Density: 24\", \"cat_2_index\": 488, \"group\": [1546.0, 837.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39430_BALBc-1_X02_Y01_261_492\", \"ini\": 2216, \"clust\": 1582, \"rank\": 1039, \"rankvar\": 2026, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 610, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2418, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1750, \"group\": [1585.0, 869.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39865_BALBc-1_X02_Y01_267_24\", \"ini\": 2215, \"clust\": 452, \"rank\": 525, \"rankvar\": 819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 611, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1053, \"cat-2\": \"Density: 15\", \"cat_2_index\": 42, \"group\": [455.0, 317.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40114_BALBc-1_X02_Y01_27_431\", \"ini\": 2214, \"clust\": 1273, \"rank\": 488, \"rankvar\": 2485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 612, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2482, \"cat-2\": \"Density: 26\", \"cat_2_index\": 752, \"group\": [1273.0, 652.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40196_BALBc-1_X02_Y01_270_639\", \"ini\": 2213, \"clust\": 398, \"rank\": 174, \"rankvar\": 1745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 613, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 618, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1206, \"group\": [400.0, 279.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40274_BALBc-1_X02_Y01_271_849\", \"ini\": 2212, \"clust\": 1484, \"rank\": 2264, \"rankvar\": 2078, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 614, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1897, \"cat-2\": \"Density: 25\", \"cat_2_index\": 627, \"group\": [1483.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40304_BALBc-1_X02_Y01_272_264\", \"ini\": 2211, \"clust\": 1229, \"rank\": 2138, \"rankvar\": 2305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 615, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1054, \"cat-2\": \"Density: 21\", \"cat_2_index\": 199, \"group\": [1226.0, 615.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40412_BALBc-1_X02_Y01_273_730\", \"ini\": 2210, \"clust\": 323, \"rank\": 1313, \"rankvar\": 2467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 616, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 800, \"cat-2\": \"Density: 27\", \"cat_2_index\": 909, \"group\": [323.0, 225.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40506_BALBc-1_X02_Y01_275_150\", \"ini\": 2209, \"clust\": 456, \"rank\": 252, \"rankvar\": 1633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 617, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1055, \"cat-2\": \"Density: 20\", \"cat_2_index\": 147, \"group\": [456.0, 318.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40534_BALBc-1_X02_Y01_275_491\", \"ini\": 2208, \"clust\": 1446, \"rank\": 2358, \"rankvar\": 2189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 618, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2419, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1368, \"group\": [1445.0, 784.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40859_BALBc-1_X02_Y01_279_657\", \"ini\": 2207, \"clust\": 1600, \"rank\": 1498, \"rankvar\": 1859, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 619, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1056, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1066, \"group\": [1600.0, 882.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41366_BALBc-1_X02_Y01_285_702\", \"ini\": 2206, \"clust\": 1746, \"rank\": 1861, \"rankvar\": 1516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 620, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1057, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1207, \"group\": [1745.0, 986.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41645_BALBc-1_X02_Y01_289_419\", \"ini\": 2205, \"clust\": 1207, \"rank\": 606, \"rankvar\": 713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 621, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1058, \"cat-2\": \"Density: 25\", \"cat_2_index\": 628, \"group\": [1207.0, 600.0, 170.0, 46.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41692_BALBc-1_X02_Y01_289_977\", \"ini\": 2204, \"clust\": 2524, \"rank\": 1175, \"rankvar\": 1918, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 622, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2483, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1498, \"group\": [2525.0, 1354.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41720_BALBc-1_X02_Y01_29_371\", \"ini\": 2203, \"clust\": 2219, \"rank\": 1190, \"rankvar\": 177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 623, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1898, \"cat-2\": \"Density: 21\", \"cat_2_index\": 200, \"group\": [2219.0, 1200.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42093_BALBc-1_X02_Y01_294_471\", \"ini\": 2202, \"clust\": 1584, \"rank\": 1434, \"rankvar\": 1816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 624, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1899, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1067, \"group\": [1584.0, 868.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42388_BALBc-1_X02_Y01_298_746\", \"ini\": 2201, \"clust\": 50, \"rank\": 1287, \"rankvar\": 813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 625, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1059, \"cat-2\": \"Density: 25\", \"cat_2_index\": 629, \"group\": [55.0, 44.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42422_BALBc-1_X02_Y01_299_309\", \"ini\": 2200, \"clust\": 819, \"rank\": 14, \"rankvar\": 238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 626, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1625, \"cat-2\": \"Density: 22\", \"cat_2_index\": 271, \"group\": [821.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42773_BALBc-1_X02_Y01_302_572\", \"ini\": 2199, \"clust\": 915, \"rank\": 21, \"rankvar\": 191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 627, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2420, \"cat-2\": \"Density: 27\", \"cat_2_index\": 910, \"group\": [917.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42875_BALBc-1_X02_Y01_303_626\", \"ini\": 2198, \"clust\": 771, \"rank\": 215, \"rankvar\": 831, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 628, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 939, \"cat-2\": \"Density: 26\", \"cat_2_index\": 753, \"group\": [770.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42918_BALBc-1_X02_Y01_304_24\", \"ini\": 2197, \"clust\": 702, \"rank\": 351, \"rankvar\": 450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 629, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2484, \"cat-2\": \"Density: 14\", \"cat_2_index\": 28, \"group\": [702.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43254_BALBc-1_X02_Y01_309_522\", \"ini\": 2196, \"clust\": 1098, \"rank\": 30, \"rankvar\": 334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 630, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1900, \"cat-2\": \"Density: 23\", \"cat_2_index\": 382, \"group\": [1095.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43735_BALBc-1_X02_Y01_314_988\", \"ini\": 2195, \"clust\": 2820, \"rank\": 2435, \"rankvar\": 2474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 631, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1060, \"cat-2\": \"Density: 26\", \"cat_2_index\": 754, \"group\": [2818.0, 1532.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44336_BALBc-1_X02_Y01_321_884\", \"ini\": 2194, \"clust\": 1586, \"rank\": 945, \"rankvar\": 2082, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 632, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1061, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1068, \"group\": [1586.0, 870.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44373_BALBc-1_X02_Y01_322_353\", \"ini\": 2193, \"clust\": 537, \"rank\": 322, \"rankvar\": 1099, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 633, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2230, \"cat-2\": \"Density: 24\", \"cat_2_index\": 489, \"group\": [542.0, 370.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44527_BALBc-1_X02_Y01_324_319\", \"ini\": 2192, \"clust\": 1240, \"rank\": 1679, \"rankvar\": 2368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 634, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1626, \"cat-2\": \"Density: 24\", \"cat_2_index\": 490, \"group\": [1242.0, 623.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44555_BALBc-1_X02_Y01_324_635\", \"ini\": 2191, \"clust\": 1147, \"rank\": 1136, \"rankvar\": 70, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 635, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 940, \"cat-2\": \"Density: 27\", \"cat_2_index\": 911, \"group\": [1151.0, 551.0, 152.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45166_BALBc-1_X02_Y01_331_409\", \"ini\": 2190, \"clust\": 1801, \"rank\": 2705, \"rankvar\": 2814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 636, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2231, \"cat-2\": \"Density: 25\", \"cat_2_index\": 630, \"group\": [1803.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45200_BALBc-1_X02_Y01_331_901\", \"ini\": 2189, \"clust\": 378, \"rank\": 342, \"rankvar\": 1835, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 637, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1901, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1208, \"group\": [377.0, 262.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45510_BALBc-1_X02_Y01_335_873\", \"ini\": 2188, \"clust\": 1320, \"rank\": 884, \"rankvar\": 701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 638, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1062, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1069, \"group\": [1321.0, 689.0, 205.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45659_BALBc-1_X02_Y01_338_160\", \"ini\": 2187, \"clust\": 363, \"rank\": 324, \"rankvar\": 1872, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 639, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 801, \"cat-2\": \"Density: 26\", \"cat_2_index\": 755, \"group\": [363.0, 252.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45693_BALBc-1_X02_Y01_338_551\", \"ini\": 2186, \"clust\": 1242, \"rank\": 1786, \"rankvar\": 2390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 640, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2421, \"cat-2\": \"Density: 26\", \"cat_2_index\": 756, \"group\": [1241.0, 623.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46414_BALBc-1_X02_Y01_346_740\", \"ini\": 2185, \"clust\": 1650, \"rank\": 2201, \"rankvar\": 2157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 641, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1063, \"cat-2\": \"Density: 22\", \"cat_2_index\": 272, \"group\": [1653.0, 912.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46504_BALBc-1_X02_Y01_348_114\", \"ini\": 2184, \"clust\": 822, \"rank\": 293, \"rankvar\": 29, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 642, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1902, \"cat-2\": \"Density: 20\", \"cat_2_index\": 148, \"group\": [823.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46508_BALBc-1_X02_Y01_348_141\", \"ini\": 2183, \"clust\": 611, \"rank\": 624, \"rankvar\": 802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 643, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1903, \"cat-2\": \"Density: 23\", \"cat_2_index\": 383, \"group\": [611.0, 414.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46935_BALBc-1_X02_Y01_352_73\", \"ini\": 2182, \"clust\": 616, \"rank\": 643, \"rankvar\": 712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 644, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1064, \"cat-2\": \"Density: 19\", \"cat_2_index\": 118, \"group\": [617.0, 418.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46949_BALBc-1_X02_Y01_352_958\", \"ini\": 2181, \"clust\": 395, \"rank\": 1697, \"rankvar\": 2738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 645, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1065, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2061, \"group\": [395.0, 276.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47181_BALBc-1_X02_Y01_355_871\", \"ini\": 2180, \"clust\": 329, \"rank\": 635, \"rankvar\": 2240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 646, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2273, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1209, \"group\": [333.0, 234.0, 82.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47567_BALBc-1_X02_Y01_360_631\", \"ini\": 2179, \"clust\": 715, \"rank\": 771, \"rankvar\": 628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 647, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1904, \"cat-2\": \"Density: 27\", \"cat_2_index\": 912, \"group\": [715.0, 458.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47808_BALBc-1_X02_Y01_363_91\", \"ini\": 2178, \"clust\": 1299, \"rank\": 1562, \"rankvar\": 1632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 648, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 681, \"cat-2\": \"Density: 20\", \"cat_2_index\": 149, \"group\": [1299.0, 670.0, 195.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47901_BALBc-1_X02_Y01_364_890\", \"ini\": 2177, \"clust\": 1661, \"rank\": 1795, \"rankvar\": 2623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 649, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1627, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1499, \"group\": [1660.0, 918.0, 267.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48689_BALBc-1_X02_Y01_374_207\", \"ini\": 2176, \"clust\": 1289, \"rank\": 1494, \"rankvar\": 2179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 650, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 802, \"cat-2\": \"Density: 22\", \"cat_2_index\": 273, \"group\": [1294.0, 665.0, 191.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48761_BALBc-1_X02_Y01_375_164\", \"ini\": 2175, \"clust\": 509, \"rank\": 602, \"rankvar\": 93, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 651, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 35, \"cat-2\": \"Density: 22\", \"cat_2_index\": 274, \"group\": [510.0, 350.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48973_BALBc-1_X02_Y01_377_883\", \"ini\": 2174, \"clust\": 658, \"rank\": 479, \"rankvar\": 223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 652, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2422, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1640, \"group\": [657.0, 439.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49252_BALBc-1_X02_Y01_380_635\", \"ini\": 2173, \"clust\": 1430, \"rank\": 2374, \"rankvar\": 2418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 653, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 803, \"cat-2\": \"Density: 27\", \"cat_2_index\": 913, \"group\": [1433.0, 779.0, 233.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49290_BALBc-1_X02_Y01_381_186\", \"ini\": 2172, \"clust\": 597, \"rank\": 461, \"rankvar\": 979, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 654, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 804, \"cat-2\": \"Density: 20\", \"cat_2_index\": 150, \"group\": [598.0, 409.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49698_BALBc-1_X02_Y01_386_108\", \"ini\": 2171, \"clust\": 625, \"rank\": 1020, \"rankvar\": 906, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 655, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 682, \"cat-2\": \"Density: 23\", \"cat_2_index\": 384, \"group\": [632.0, 425.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50061_BALBc-1_X02_Y01_39_635\", \"ini\": 2170, \"clust\": 1513, \"rank\": 1889, \"rankvar\": 2596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 656, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1905, \"cat-2\": \"Density: 22\", \"cat_2_index\": 275, \"group\": [1515.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50421_BALBc-1_X02_Y01_394_629\", \"ini\": 2169, \"clust\": 2405, \"rank\": 2511, \"rankvar\": 2655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 657, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2232, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1070, \"group\": [2406.0, 1276.0, 380.0, 103.0, 21.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50593_BALBc-1_X02_Y01_396_836\", \"ini\": 2168, \"clust\": 965, \"rank\": 219, \"rankvar\": 1736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 658, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1906, \"cat-2\": \"Density: 27\", \"cat_2_index\": 914, \"group\": [965.0, 495.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50814_BALBc-1_X02_Y01_399_570\", \"ini\": 2167, \"clust\": 662, \"rank\": 301, \"rankvar\": 51, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 659, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1907, \"cat-2\": \"Density: 27\", \"cat_2_index\": 915, \"group\": [661.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50857_BALBc-1_X02_Y01_4_1000\", \"ini\": 2166, \"clust\": 118, \"rank\": 1027, \"rankvar\": 573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 660, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1066, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1210, \"group\": [119.0, 75.0, 25.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50898_BALBc-1_X02_Y01_40_107\", \"ini\": 2165, \"clust\": 1613, \"rank\": 1898, \"rankvar\": 2531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 661, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 805, \"cat-2\": \"Density: 18\", \"cat_2_index\": 93, \"group\": [1613.0, 889.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51368_BALBc-1_X02_Y01_405_327\", \"ini\": 2164, \"clust\": 565, \"rank\": 928, \"rankvar\": 1788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 662, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1908, \"cat-2\": \"Density: 25\", \"cat_2_index\": 631, \"group\": [570.0, 390.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51852_BALBc-1_X02_Y01_410_23\", \"ini\": 2163, \"clust\": 75, \"rank\": 619, \"rankvar\": 1804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 663, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1067, \"cat-2\": \"Density: 13\", \"cat_2_index\": 13, \"group\": [78.0, 57.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51999_BALBc-1_X02_Y01_412_155\", \"ini\": 2162, \"clust\": 2525, \"rank\": 1137, \"rankvar\": 782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 664, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1541, \"cat-2\": \"Density: 26\", \"cat_2_index\": 757, \"group\": [2528.0, 1355.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52079_BALBc-1_X02_Y01_413_103\", \"ini\": 2161, \"clust\": 2789, \"rank\": 2077, \"rankvar\": 1988, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 665, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1542, \"cat-2\": \"Density: 26\", \"cat_2_index\": 758, \"group\": [2790.0, 1512.0, 450.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52251_BALBc-1_X02_Y01_415_13\", \"ini\": 2160, \"clust\": 2727, \"rank\": 2766, \"rankvar\": 2808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 666, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1068, \"cat-2\": \"Density: 13\", \"cat_2_index\": 14, \"group\": [2730.0, 1467.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52621_BALBc-1_X02_Y01_419_991\", \"ini\": 2159, \"clust\": 39, \"rank\": 738, \"rankvar\": 506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 667, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1069, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1848, \"group\": [39.0, 33.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52973_BALBc-1_X02_Y01_423_647\", \"ini\": 2158, \"clust\": 1590, \"rank\": 1700, \"rankvar\": 1854, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 668, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2233, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1211, \"group\": [1590.0, 873.0, 255.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53049_BALBc-1_X02_Y01_424_66\", \"ini\": 2157, \"clust\": 782, \"rank\": 281, \"rankvar\": 534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 669, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 683, \"cat-2\": \"Density: 21\", \"cat_2_index\": 201, \"group\": [782.0, 475.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53155_BALBc-1_X02_Y01_426_178\", \"ini\": 2156, \"clust\": 1214, \"rank\": 1118, \"rankvar\": 1392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 670, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1909, \"cat-2\": \"Density: 26\", \"cat_2_index\": 759, \"group\": [1215.0, 608.0, 172.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53404_BALBc-1_X02_Y01_429_1005\", \"ini\": 2155, \"clust\": 2142, \"rank\": 2443, \"rankvar\": 1827, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 671, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 36, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2142, \"group\": [2145.0, 1162.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53535_BALBc-1_X02_Y01_43_792\", \"ini\": 2154, \"clust\": 1630, \"rank\": 2707, \"rankvar\": 2811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 672, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1070, \"cat-2\": \"Density: 26\", \"cat_2_index\": 760, \"group\": [1630.0, 897.0, 260.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53582_BALBc-1_X02_Y01_430_391\", \"ini\": 2153, \"clust\": 1506, \"rank\": 2433, \"rankvar\": 1784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 673, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2423, \"cat-2\": \"Density: 23\", \"cat_2_index\": 385, \"group\": [1507.0, 816.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53678_BALBc-1_X02_Y01_431_589\", \"ini\": 2152, \"clust\": 657, \"rank\": 475, \"rankvar\": 726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 674, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2424, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1071, \"group\": [659.0, 439.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53767_BALBc-1_X02_Y01_432_601\", \"ini\": 2151, \"clust\": 332, \"rank\": 555, \"rankvar\": 1463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 675, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2425, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1500, \"group\": [331.0, 232.0, 82.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53917_BALBc-1_X02_Y01_434_617\", \"ini\": 2150, \"clust\": 1420, \"rank\": 2228, \"rankvar\": 1584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 676, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2234, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1212, \"group\": [1423.0, 769.0, 228.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54343_BALBc-1_X02_Y01_439_956\", \"ini\": 2149, \"clust\": 1575, \"rank\": 1678, \"rankvar\": 1459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 677, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 806, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2143, \"group\": [1576.0, 862.0, 252.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54799_BALBc-1_X02_Y01_444_988\", \"ini\": 2148, \"clust\": 2477, \"rank\": 1788, \"rankvar\": 1494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 678, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1071, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2062, \"group\": [2478.0, 1325.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54922_BALBc-1_X02_Y01_446_748\", \"ini\": 2147, \"clust\": 1614, \"rank\": 2318, \"rankvar\": 2353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 679, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1910, \"cat-2\": \"Density: 22\", \"cat_2_index\": 276, \"group\": [1614.0, 889.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55138_BALBc-1_X02_Y01_449_612\", \"ini\": 2146, \"clust\": 792, \"rank\": 60, \"rankvar\": 1857, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 680, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2426, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1369, \"group\": [794.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55205_BALBc-1_X02_Y01_45_516\", \"ini\": 2145, \"clust\": 1665, \"rank\": 973, \"rankvar\": 2155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 681, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2427, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1213, \"group\": [1665.0, 922.0, 268.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55330_BALBc-1_X02_Y01_451_348\", \"ini\": 2144, \"clust\": 1348, \"rank\": 853, \"rankvar\": 2224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 682, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1072, \"cat-2\": \"Density: 25\", \"cat_2_index\": 632, \"group\": [1349.0, 710.0, 211.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55345_BALBc-1_X02_Y01_451_533\", \"ini\": 2143, \"clust\": 1634, \"rank\": 2529, \"rankvar\": 2597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 683, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1726, \"cat-2\": \"Density: 27\", \"cat_2_index\": 916, \"group\": [1633.0, 900.0, 261.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55441_BALBc-1_X02_Y01_452_672\", \"ini\": 2142, \"clust\": 656, \"rank\": 284, \"rankvar\": 1337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 684, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2428, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1370, \"group\": [656.0, 438.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56039_BALBc-1_X02_Y01_46_538\", \"ini\": 2141, \"clust\": 311, \"rank\": 1725, \"rankvar\": 2731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 685, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2274, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1371, \"group\": [313.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56270_BALBc-1_X02_Y01_462_394\", \"ini\": 2140, \"clust\": 221, \"rank\": 1857, \"rankvar\": 2524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 686, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2429, \"cat-2\": \"Density: 25\", \"cat_2_index\": 633, \"group\": [223.0, 155.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56966_BALBc-1_X02_Y01_470_546\", \"ini\": 2139, \"clust\": 606, \"rank\": 271, \"rankvar\": 641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 687, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2275, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1501, \"group\": [606.0, 412.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57291_BALBc-1_X02_Y01_474_753\", \"ini\": 2138, \"clust\": 1111, \"rank\": 431, \"rankvar\": 165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 688, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1073, \"cat-2\": \"Density: 22\", \"cat_2_index\": 277, \"group\": [1110.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57690_BALBc-1_X02_Y01_479_652\", \"ini\": 2137, \"clust\": 1453, \"rank\": 1630, \"rankvar\": 1507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 689, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1911, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1372, \"group\": [1453.0, 790.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57946_BALBc-1_X02_Y01_482_291\", \"ini\": 2136, \"clust\": 1325, \"rank\": 1723, \"rankvar\": 1931, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 690, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1912, \"cat-2\": \"Density: 23\", \"cat_2_index\": 386, \"group\": [1330.0, 697.0, 208.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58045_BALBc-1_X02_Y01_483_527\", \"ini\": 2135, \"clust\": 1631, \"rank\": 2396, \"rankvar\": 2794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 691, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1727, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1373, \"group\": [1631.0, 898.0, 260.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58865_BALBc-1_X02_Y01_493_104\", \"ini\": 2134, \"clust\": 464, \"rank\": 1165, \"rankvar\": 936, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 692, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 684, \"cat-2\": \"Density: 24\", \"cat_2_index\": 491, \"group\": [464.0, 324.0, 111.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59155_BALBc-1_X02_Y01_496_623\", \"ini\": 2133, \"clust\": 2382, \"rank\": 2817, \"rankvar\": 2791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 693, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2276, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1502, \"group\": [2388.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59197_BALBc-1_X02_Y01_497_131\", \"ini\": 2132, \"clust\": 838, \"rank\": 116, \"rankvar\": 25, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 694, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2277, \"cat-2\": \"Density: 25\", \"cat_2_index\": 634, \"group\": [838.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59416_BALBc-1_X02_Y01_499_768\", \"ini\": 2131, \"clust\": 1384, \"rank\": 2000, \"rankvar\": 1265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 695, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1074, \"cat-2\": \"Density: 26\", \"cat_2_index\": 761, \"group\": [1392.0, 743.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59420_BALBc-1_X02_Y01_499_799\", \"ini\": 2130, \"clust\": 28, \"rank\": 369, \"rankvar\": 2132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 696, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1075, \"cat-2\": \"Density: 25\", \"cat_2_index\": 635, \"group\": [28.0, 27.0, 16.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59463_BALBc-1_X02_Y01_5_879\", \"ini\": 2129, \"clust\": 1294, \"rank\": 1535, \"rankvar\": 635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 697, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2430, \"cat-2\": \"Density: 27\", \"cat_2_index\": 917, \"group\": [1297.0, 668.0, 194.0, 55.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59517_BALBc-1_X02_Y01_50_888\", \"ini\": 2128, \"clust\": 660, \"rank\": 261, \"rankvar\": 71, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 698, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2431, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1214, \"group\": [662.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59710_BALBc-1_X02_Y01_502_573\", \"ini\": 2127, \"clust\": 647, \"rank\": 318, \"rankvar\": 386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 699, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2278, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1641, \"group\": [647.0, 435.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59712_BALBc-1_X02_Y01_502_604\", \"ini\": 2126, \"clust\": 958, \"rank\": 573, \"rankvar\": 1228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 700, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2279, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1952, \"group\": [957.0, 490.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59744_BALBc-1_X02_Y01_502_986\", \"ini\": 2125, \"clust\": 11, \"rank\": 1186, \"rankvar\": 365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 701, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1076, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2144, \"group\": [12.0, 11.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60337_BALBc-1_X02_Y01_51_580\", \"ini\": 2124, \"clust\": 612, \"rank\": 721, \"rankvar\": 696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 702, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2280, \"cat-2\": \"Density: 27\", \"cat_2_index\": 918, \"group\": [612.0, 414.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60489_BALBc-1_X02_Y01_511_561\", \"ini\": 2123, \"clust\": 1642, \"rank\": 2060, \"rankvar\": 2548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 703, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1728, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1751, \"group\": [1641.0, 904.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61166_BALBc-1_X02_Y01_52_424\", \"ini\": 2122, \"clust\": 1568, \"rank\": 651, \"rankvar\": 137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 704, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1077, \"cat-2\": \"Density: 24\", \"cat_2_index\": 492, \"group\": [1569.0, 858.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61199_BALBc-1_X02_Y01_52_776\", \"ini\": 2121, \"clust\": 1216, \"rank\": 877, \"rankvar\": 1889, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 705, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2432, \"cat-2\": \"Density: 24\", \"cat_2_index\": 493, \"group\": [1216.0, 609.0, 173.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61388_BALBc-1_X02_Y01_521_982\", \"ini\": 2120, \"clust\": 1885, \"rank\": 1613, \"rankvar\": 1620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 706, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2235, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1953, \"group\": [1885.0, 1075.0, 328.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62377_BALBc-1_X02_Y01_533_933\", \"ini\": 2119, \"clust\": 1433, \"rank\": 2163, \"rankvar\": 1503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 707, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1913, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1752, \"group\": [1436.0, 782.0, 234.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62863_BALBc-1_X02_Y01_54_847\", \"ini\": 2118, \"clust\": 451, \"rank\": 737, \"rankvar\": 1523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 708, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2485, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1072, \"group\": [452.0, 315.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62911_BALBc-1_X02_Y01_540_549\", \"ini\": 2117, \"clust\": 1508, \"rank\": 2687, \"rankvar\": 2716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 709, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2433, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1073, \"group\": [1508.0, 817.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62931_BALBc-1_X02_Y01_540_834\", \"ini\": 2116, \"clust\": 864, \"rank\": 13, \"rankvar\": 763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 710, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1914, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1503, \"group\": [864.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63142_BALBc-1_X02_Y01_543_585\", \"ini\": 2115, \"clust\": 1509, \"rank\": 2630, \"rankvar\": 2774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 711, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2281, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1215, \"group\": [1509.0, 817.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63191_BALBc-1_X02_Y01_543_972\", \"ini\": 2114, \"clust\": 1226, \"rank\": 2517, \"rankvar\": 2339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 712, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 807, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1753, \"group\": [1228.0, 617.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63252_BALBc-1_X02_Y01_544_650\", \"ini\": 2113, \"clust\": 1587, \"rank\": 601, \"rankvar\": 1924, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 713, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2282, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1216, \"group\": [1587.0, 870.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63692_BALBc-1_X02_Y01_55_1003\", \"ini\": 2112, \"clust\": 1359, \"rank\": 2490, \"rankvar\": 2498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 714, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1078, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1374, \"group\": [1362.0, 723.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63713_BALBc-1_X02_Y01_55_344\", \"ini\": 2111, \"clust\": 547, \"rank\": 595, \"rankvar\": 1127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 715, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1915, \"cat-2\": \"Density: 26\", \"cat_2_index\": 762, \"group\": [545.0, 372.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63995_BALBc-1_X02_Y01_552_987\", \"ini\": 2110, \"clust\": 166, \"rank\": 1485, \"rankvar\": 1659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 716, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1079, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1642, \"group\": [166.0, 107.0, 35.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64052_BALBc-1_X02_Y01_553_695\", \"ini\": 2109, \"clust\": 966, \"rank\": 404, \"rankvar\": 690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 717, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2434, \"cat-2\": \"Density: 26\", \"cat_2_index\": 763, \"group\": [966.0, 495.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64156_BALBc-1_X02_Y01_555_138\", \"ini\": 2108, \"clust\": 2526, \"rank\": 1009, \"rankvar\": 1412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 718, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 685, \"cat-2\": \"Density: 26\", \"cat_2_index\": 764, \"group\": [2526.0, 1355.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64283_BALBc-1_X02_Y01_556_902\", \"ini\": 2107, \"clust\": 1485, \"rank\": 2424, \"rankvar\": 2341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 719, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1916, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2145, \"group\": [1484.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64567_BALBc-1_X02_Y01_56_378\", \"ini\": 2106, \"clust\": 338, \"rank\": 665, \"rankvar\": 218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 720, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2435, \"cat-2\": \"Density: 26\", \"cat_2_index\": 765, \"group\": [341.0, 238.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64703_BALBc-1_X02_Y01_561_10\", \"ini\": 2105, \"clust\": 165, \"rank\": 1600, \"rankvar\": 1595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 721, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1729, \"cat-2\": \"Density: 15\", \"cat_2_index\": 43, \"group\": [168.0, 109.0, 36.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64934_BALBc-1_X02_Y01_564_219\", \"ini\": 2104, \"clust\": 238, \"rank\": 1071, \"rankvar\": 1199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 722, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2436, \"cat-2\": \"Density: 24\", \"cat_2_index\": 494, \"group\": [242.0, 169.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65293_BALBc-1_X02_Y01_568_803\", \"ini\": 2103, \"clust\": 632, \"rank\": 462, \"rankvar\": 814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 723, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1628, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1849, \"group\": [633.0, 426.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65644_BALBc-1_X02_Y01_572_683\", \"ini\": 2102, \"clust\": 334, \"rank\": 958, \"rankvar\": 1665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 724, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 686, \"cat-2\": \"Density: 25\", \"cat_2_index\": 636, \"group\": [334.0, 235.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66649_BALBc-1_X02_Y01_585_154\", \"ini\": 2101, \"clust\": 1023, \"rank\": 356, \"rankvar\": 80, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 725, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 687, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1217, \"group\": [1023.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67382_BALBc-1_X02_Y01_593_27\", \"ini\": 2100, \"clust\": 1454, \"rank\": 1989, \"rankvar\": 859, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 726, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2519, \"cat-2\": \"Density: 15\", \"cat_2_index\": 44, \"group\": [1455.0, 792.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67833_BALBc-1_X02_Y01_599_219\", \"ini\": 2099, \"clust\": 805, \"rank\": 159, \"rankvar\": 498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 727, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2437, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1074, \"group\": [806.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68344_BALBc-1_X02_Y01_604_682\", \"ini\": 2098, \"clust\": 465, \"rank\": 920, \"rankvar\": 1049, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 728, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1917, \"cat-2\": \"Density: 26\", \"cat_2_index\": 766, \"group\": [465.0, 325.0, 111.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68440_BALBc-1_X02_Y01_605_807\", \"ini\": 2097, \"clust\": 1722, \"rank\": 2459, \"rankvar\": 2784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 729, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 808, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1643, \"group\": [1724.0, 970.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68443_BALBc-1_X02_Y01_605_835\", \"ini\": 2096, \"clust\": 1549, \"rank\": 706, \"rankvar\": 1514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 730, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1918, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1504, \"group\": [1551.0, 841.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68542_BALBc-1_X02_Y01_607_143\", \"ini\": 2095, \"clust\": 2732, \"rank\": 2082, \"rankvar\": 2433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 731, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 688, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1218, \"group\": [2731.0, 1468.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68978_BALBc-1_X02_Y01_611_516\", \"ini\": 2094, \"clust\": 1496, \"rank\": 2799, \"rankvar\": 2773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 732, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1919, \"cat-2\": \"Density: 25\", \"cat_2_index\": 637, \"group\": [1494.0, 806.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69185_BALBc-1_X02_Y01_614_181\", \"ini\": 2093, \"clust\": 2725, \"rank\": 2236, \"rankvar\": 2493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 733, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 689, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1075, \"group\": [2725.0, 1464.0, 430.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70273_BALBc-1_X02_Y01_627_209\", \"ini\": 2092, \"clust\": 1682, \"rank\": 1540, \"rankvar\": 2068, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 734, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1730, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1219, \"group\": [1687.0, 944.0, 280.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70491_BALBc-1_X02_Y01_63_250\", \"ini\": 2091, \"clust\": 883, \"rank\": 19, \"rankvar\": 470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 735, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1920, \"cat-2\": \"Density: 24\", \"cat_2_index\": 495, \"group\": [883.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71443_BALBc-1_X02_Y01_640_235\", \"ini\": 2090, \"clust\": 1363, \"rank\": 2628, \"rankvar\": 2778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 736, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2438, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1644, \"group\": [1364.0, 725.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71479_BALBc-1_X02_Y01_640_560\", \"ini\": 2089, \"clust\": 1481, \"rank\": 2385, \"rankvar\": 2325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 737, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2439, \"cat-2\": \"Density: 25\", \"cat_2_index\": 638, \"group\": [1482.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71570_BALBc-1_X02_Y01_642_167\", \"ini\": 2088, \"clust\": 247, \"rank\": 955, \"rankvar\": 97, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 738, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1731, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1076, \"group\": [251.0, 174.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71733_BALBc-1_X02_Y01_643_984\", \"ini\": 2087, \"clust\": 1254, \"rank\": 2596, \"rankvar\": 2244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 739, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2283, \"cat-2\": \"Density: 27\", \"cat_2_index\": 919, \"group\": [1255.0, 636.0, 181.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71734_BALBc-1_X02_Y01_643_999\", \"ini\": 2086, \"clust\": 757, \"rank\": 214, \"rankvar\": 700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 740, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1629, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1220, \"group\": [756.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72068_BALBc-1_X02_Y01_648_425\", \"ini\": 2085, \"clust\": 1382, \"rank\": 1949, \"rankvar\": 2168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 741, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1921, \"cat-2\": \"Density: 22\", \"cat_2_index\": 278, \"group\": [1383.0, 735.0, 216.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72274_BALBc-1_X02_Y01_650_104\", \"ini\": 2084, \"clust\": 1208, \"rank\": 835, \"rankvar\": 1347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 742, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 690, \"cat-2\": \"Density: 27\", \"cat_2_index\": 920, \"group\": [1208.0, 601.0, 170.0, 46.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72329_BALBc-1_X02_Y01_650_882\", \"ini\": 2083, \"clust\": 1301, \"rank\": 1239, \"rankvar\": 562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 743, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1732, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1754, \"group\": [1303.0, 674.0, 197.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72440_BALBc-1_X02_Y01_652_474\", \"ini\": 2082, \"clust\": 1489, \"rank\": 2708, \"rankvar\": 2730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 744, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 809, \"cat-2\": \"Density: 26\", \"cat_2_index\": 767, \"group\": [1487.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73095_BALBc-1_X02_Y01_66_970\", \"ini\": 2081, \"clust\": 1917, \"rank\": 2073, \"rankvar\": 1817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 745, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1080, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1755, \"group\": [1918.0, 1102.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73185_BALBc-1_X02_Y01_661_141\", \"ini\": 2080, \"clust\": 2615, \"rank\": 1260, \"rankvar\": 1296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 746, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 810, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1221, \"group\": [2616.0, 1413.0, 417.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73278_BALBc-1_X02_Y01_661_947\", \"ini\": 2079, \"clust\": 1612, \"rank\": 1503, \"rankvar\": 1961, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 747, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1081, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1077, \"group\": [1615.0, 890.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73431_BALBc-1_X02_Y01_664_117\", \"ini\": 2078, \"clust\": 532, \"rank\": 518, \"rankvar\": 1064, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 748, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1630, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1222, \"group\": [535.0, 366.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73653_BALBc-1_X02_Y01_667_199\", \"ini\": 2077, \"clust\": 1391, \"rank\": 2333, \"rankvar\": 2366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 749, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1733, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1375, \"group\": [1390.0, 741.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73761_BALBc-1_X02_Y01_668_692\", \"ini\": 2076, \"clust\": 558, \"rank\": 862, \"rankvar\": 204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 750, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2486, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1223, \"group\": [563.0, 387.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74145_BALBc-1_X02_Y01_672_798\", \"ini\": 2075, \"clust\": 1621, \"rank\": 1927, \"rankvar\": 2365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 751, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1082, \"cat-2\": \"Density: 27\", \"cat_2_index\": 921, \"group\": [1620.0, 892.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74412_BALBc-1_X02_Y01_675_754\", \"ini\": 2074, \"clust\": 1692, \"rank\": 2733, \"rankvar\": 2674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 752, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1083, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1224, \"group\": [1693.0, 950.0, 284.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74523_BALBc-1_X02_Y01_677_25\", \"ini\": 2073, \"clust\": 1721, \"rank\": 2160, \"rankvar\": 1786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 753, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 811, \"cat-2\": \"Density: 16\", \"cat_2_index\": 57, \"group\": [1725.0, 971.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74897_BALBc-1_X02_Y01_681_262\", \"ini\": 2072, \"clust\": 1811, \"rank\": 2465, \"rankvar\": 2749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 754, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1578, \"cat-2\": \"Density: 25\", \"cat_2_index\": 639, \"group\": [1811.0, 1024.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75174_BALBc-1_X02_Y01_685_173\", \"ini\": 2071, \"clust\": 220, \"rank\": 1300, \"rankvar\": 1384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 755, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 812, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1078, \"group\": [220.0, 152.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75539_BALBc-1_X02_Y01_689_937\", \"ini\": 2070, \"clust\": 1504, \"rank\": 2660, \"rankvar\": 2665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 756, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1084, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1225, \"group\": [1503.0, 812.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75915_BALBc-1_X02_Y01_694_130\", \"ini\": 2069, \"clust\": 669, \"rank\": 164, \"rankvar\": 1316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 757, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1631, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1226, \"group\": [667.0, 442.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75959_BALBc-1_X02_Y01_694_670\", \"ini\": 2068, \"clust\": 508, \"rank\": 1012, \"rankvar\": 678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 758, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2440, \"cat-2\": \"Density: 25\", \"cat_2_index\": 640, \"group\": [509.0, 349.0, 118.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76516_BALBc-1_X02_Y01_70_895\", \"ini\": 2067, \"clust\": 1645, \"rank\": 1337, \"rankvar\": 2724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 759, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2441, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1376, \"group\": [1644.0, 905.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77517_BALBc-1_X02_Y01_712_265\", \"ini\": 2066, \"clust\": 1858, \"rank\": 2202, \"rankvar\": 2593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 760, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 813, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1227, \"group\": [1862.0, 1053.0, 317.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77678_BALBc-1_X02_Y01_714_293\", \"ini\": 2065, \"clust\": 1695, \"rank\": 1695, \"rankvar\": 2671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 761, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 814, \"cat-2\": \"Density: 27\", \"cat_2_index\": 922, \"group\": [1695.0, 952.0, 285.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77685_BALBc-1_X02_Y01_714_40\", \"ini\": 2064, \"clust\": 2790, \"rank\": 1238, \"rankvar\": 1684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 762, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 815, \"cat-2\": \"Density: 23\", \"cat_2_index\": 387, \"group\": [2791.0, 1513.0, 450.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77734_BALBc-1_X02_Y01_714_974\", \"ini\": 2063, \"clust\": 2747, \"rank\": 1654, \"rankvar\": 2072, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 763, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2284, \"cat-2\": \"Density: 27\", \"cat_2_index\": 923, \"group\": [2751.0, 1486.0, 440.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78145_BALBc-1_X02_Y01_72_12\", \"ini\": 2062, \"clust\": 654, \"rank\": 532, \"rankvar\": 135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 764, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1922, \"cat-2\": \"Density: 13\", \"cat_2_index\": 15, \"group\": [654.0, 437.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78540_BALBc-1_X02_Y01_724_107\", \"ini\": 2061, \"clust\": 2733, \"rank\": 2194, \"rankvar\": 2336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 765, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 816, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1377, \"group\": [2732.0, 1468.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79190_BALBc-1_X02_Y01_731_769\", \"ini\": 2060, \"clust\": 1743, \"rank\": 1497, \"rankvar\": 2086, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 766, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1085, \"cat-2\": \"Density: 27\", \"cat_2_index\": 924, \"group\": [1749.0, 990.0, 298.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79300_BALBc-1_X02_Y01_733_29\", \"ini\": 2059, \"clust\": 202, \"rank\": 1124, \"rankvar\": 362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 767, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1543, \"cat-2\": \"Density: 20\", \"cat_2_index\": 151, \"group\": [202.0, 136.0, 46.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79428_BALBc-1_X02_Y01_734_627\", \"ini\": 2058, \"clust\": 2557, \"rank\": 2349, \"rankvar\": 2587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 768, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2236, \"cat-2\": \"Density: 25\", \"cat_2_index\": 641, \"group\": [2556.0, 1378.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79624_BALBc-1_X02_Y01_737_12\", \"ini\": 2057, \"clust\": 666, \"rank\": 437, \"rankvar\": 585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 769, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 37, \"cat-2\": \"Density: 18\", \"cat_2_index\": 94, \"group\": [671.0, 444.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80316_BALBc-1_X02_Y01_745_334\", \"ini\": 2056, \"clust\": 1693, \"rank\": 2603, \"rankvar\": 2412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 770, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1923, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1079, \"group\": [1694.0, 951.0, 284.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80359_BALBc-1_X02_Y01_745_91\", \"ini\": 2055, \"clust\": 944, \"rank\": 59, \"rankvar\": 375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 771, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 817, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1756, \"group\": [945.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80734_BALBc-1_X02_Y01_75_602\", \"ini\": 2054, \"clust\": 283, \"rank\": 1673, \"rankvar\": 2020, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 772, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2285, \"cat-2\": \"Density: 26\", \"cat_2_index\": 768, \"group\": [283.0, 205.0, 75.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81293_BALBc-1_X02_Y01_756_706\", \"ini\": 2053, \"clust\": 1668, \"rank\": 1183, \"rankvar\": 1782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 773, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2237, \"cat-2\": \"Density: 24\", \"cat_2_index\": 496, \"group\": [1669.0, 926.0, 271.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81486_BALBc-1_X02_Y01_759_199\", \"ini\": 2052, \"clust\": 2788, \"rank\": 1653, \"rankvar\": 1693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 774, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1086, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1505, \"group\": [2789.0, 1511.0, 450.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81590_BALBc-1_X02_Y01_76_583\", \"ini\": 2051, \"clust\": 694, \"rank\": 228, \"rankvar\": 2148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 775, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2286, \"cat-2\": \"Density: 25\", \"cat_2_index\": 642, \"group\": [693.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81902_BALBc-1_X02_Y01_763_671\", \"ini\": 2050, \"clust\": 1439, \"rank\": 2693, \"rankvar\": 2301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 776, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 818, \"cat-2\": \"Density: 26\", \"cat_2_index\": 769, \"group\": [1441.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82140_BALBc-1_X02_Y01_767_163\", \"ini\": 2049, \"clust\": 1860, \"rank\": 1875, \"rankvar\": 2492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 777, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2287, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1954, \"group\": [1859.0, 1051.0, 317.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82308_BALBc-1_X02_Y01_768_99\", \"ini\": 2048, \"clust\": 343, \"rank\": 1140, \"rankvar\": 1189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 778, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1544, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1645, \"group\": [343.0, 239.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82369_BALBc-1_X02_Y01_769_770\", \"ini\": 2047, \"clust\": 1162, \"rank\": 371, \"rankvar\": 1395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 779, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1632, \"cat-2\": \"Density: 25\", \"cat_2_index\": 643, \"group\": [1164.0, 560.0, 155.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83169_BALBc-1_X02_Y01_779_23\", \"ini\": 2046, \"clust\": 1197, \"rank\": 882, \"rankvar\": 1519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 780, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1087, \"cat-2\": \"Density: 24\", \"cat_2_index\": 497, \"group\": [1200.0, 593.0, 167.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83364_BALBc-1_X02_Y01_780_79\", \"ini\": 2045, \"clust\": 910, \"rank\": 122, \"rankvar\": 100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 781, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1545, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1757, \"group\": [908.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84196_BALBc-1_X02_Y01_790_748\", \"ini\": 2044, \"clust\": 1629, \"rank\": 2676, \"rankvar\": 2816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 782, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2487, \"cat-2\": \"Density: 24\", \"cat_2_index\": 498, \"group\": [1632.0, 899.0, 260.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84357_BALBc-1_X02_Y01_792_686\", \"ini\": 2043, \"clust\": 1383, \"rank\": 1458, \"rankvar\": 947, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 783, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 819, \"cat-2\": \"Density: 22\", \"cat_2_index\": 279, \"group\": [1384.0, 736.0, 216.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84582_BALBc-1_X02_Y01_795_344\", \"ini\": 2042, \"clust\": 1525, \"rank\": 1686, \"rankvar\": 595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 784, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2288, \"cat-2\": \"Density: 25\", \"cat_2_index\": 644, \"group\": [1529.0, 826.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84699_BALBc-1_X02_Y01_796_71\", \"ini\": 2041, \"clust\": 2245, \"rank\": 1720, \"rankvar\": 1916, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 785, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2289, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1646, \"group\": [2244.0, 1222.0, 367.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85322_BALBc-1_X02_Y01_802_832\", \"ini\": 2040, \"clust\": 688, \"rank\": 194, \"rankvar\": 816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 786, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1924, \"cat-2\": \"Density: 27\", \"cat_2_index\": 925, \"group\": [688.0, 453.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85337_BALBc-1_X02_Y01_803_103\", \"ini\": 2039, \"clust\": 1392, \"rank\": 1320, \"rankvar\": 105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 787, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 943, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1850, \"group\": [1400.0, 750.0, 220.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85500_BALBc-1_X02_Y01_805_277\", \"ini\": 2038, \"clust\": 1542, \"rank\": 2504, \"rankvar\": 2328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 788, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2488, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1378, \"group\": [1542.0, 835.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85553_BALBc-1_X02_Y01_805_711\", \"ini\": 2037, \"clust\": 1148, \"rank\": 1132, \"rankvar\": 1321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 789, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2442, \"cat-2\": \"Density: 23\", \"cat_2_index\": 388, \"group\": [1150.0, 550.0, 151.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85954_BALBc-1_X02_Y01_810_220\", \"ini\": 2036, \"clust\": 2239, \"rank\": 2329, \"rankvar\": 1904, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 790, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2290, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1647, \"group\": [2243.0, 1221.0, 366.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86607_BALBc-1_X02_Y01_818_617\", \"ini\": 2035, \"clust\": 1498, \"rank\": 2296, \"rankvar\": 2424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 791, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 820, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1080, \"group\": [1500.0, 810.0, 238.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86719_BALBc-1_X02_Y01_82_404\", \"ini\": 2034, \"clust\": 1429, \"rank\": 1574, \"rankvar\": 381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 792, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1088, \"cat-2\": \"Density: 26\", \"cat_2_index\": 770, \"group\": [1427.0, 773.0, 230.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87009_BALBc-1_X02_Y01_822_96\", \"ini\": 2033, \"clust\": 1427, \"rank\": 1672, \"rankvar\": 669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 793, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1734, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2222, \"group\": [1428.0, 774.0, 230.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87084_BALBc-1_X02_Y01_823_81\", \"ini\": 2032, \"clust\": 172, \"rank\": 622, \"rankvar\": 2061, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 794, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1735, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1851, \"group\": [175.0, 113.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87109_BALBc-1_X02_Y01_824_179\", \"ini\": 2031, \"clust\": 1861, \"rank\": 1867, \"rankvar\": 2664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 795, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2291, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1852, \"group\": [1860.0, 1051.0, 317.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87294_BALBc-1_X02_Y01_826_54\", \"ini\": 2030, \"clust\": 1862, \"rank\": 1580, \"rankvar\": 1162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 796, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1736, \"cat-2\": \"Density: 26\", \"cat_2_index\": 771, \"group\": [1863.0, 1054.0, 318.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87491_BALBc-1_X02_Y01_828_989\", \"ini\": 2029, \"clust\": 1456, \"rank\": 1864, \"rankvar\": 612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 797, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1925, \"cat-2\": \"Density: 26\", \"cat_2_index\": 772, \"group\": [1457.0, 793.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87558_BALBc-1_X02_Y01_829_961\", \"ini\": 2028, \"clust\": 1394, \"rank\": 1229, \"rankvar\": 1382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 798, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 821, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1081, \"group\": [1393.0, 744.0, 218.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87735_BALBc-1_X02_Y01_831_448\", \"ini\": 2027, \"clust\": 1599, \"rank\": 1748, \"rankvar\": 2297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 799, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2443, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1379, \"group\": [1602.0, 884.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87925_BALBc-1_X02_Y01_834_297\", \"ini\": 2026, \"clust\": 1467, \"rank\": 2325, \"rankvar\": 1793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 800, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1926, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1380, \"group\": [1465.0, 798.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88101_BALBc-1_X02_Y01_836_594\", \"ini\": 2025, \"clust\": 233, \"rank\": 1074, \"rankvar\": 1186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 801, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1927, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1082, \"group\": [232.0, 161.0, 57.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88212_BALBc-1_X02_Y01_837_889\", \"ini\": 2024, \"clust\": 1246, \"rank\": 1666, \"rankvar\": 1495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 802, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1928, \"cat-2\": \"Density: 27\", \"cat_2_index\": 926, \"group\": [1247.0, 628.0, 179.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88228_BALBc-1_X02_Y01_838_199\", \"ini\": 2023, \"clust\": 463, \"rank\": 968, \"rankvar\": 1692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 803, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 822, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1955, \"group\": [466.0, 326.0, 112.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88242_BALBc-1_X02_Y01_838_433\", \"ini\": 2022, \"clust\": 228, \"rank\": 1900, \"rankvar\": 2007, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 804, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1737, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1228, \"group\": [229.0, 160.0, 56.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88501_BALBc-1_X02_Y01_840_810\", \"ini\": 2021, \"clust\": 239, \"rank\": 845, \"rankvar\": 1469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 805, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1929, \"cat-2\": \"Density: 23\", \"cat_2_index\": 389, \"group\": [241.0, 168.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88562_BALBc-1_X02_Y01_841_513\", \"ini\": 2020, \"clust\": 347, \"rank\": 452, \"rankvar\": 2197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 806, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1930, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1956, \"group\": [346.0, 241.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88609_BALBc-1_X02_Y01_842_154\", \"ini\": 2019, \"clust\": 1840, \"rank\": 1644, \"rankvar\": 1774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 807, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1738, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2146, \"group\": [1843.0, 1036.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88759_BALBc-1_X02_Y01_844_26\", \"ini\": 2018, \"clust\": 1561, \"rank\": 778, \"rankvar\": 1587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 808, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2444, \"cat-2\": \"Density: 20\", \"cat_2_index\": 152, \"group\": [1562.0, 851.0, 248.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88814_BALBc-1_X02_Y01_844_864\", \"ini\": 2017, \"clust\": 319, \"rank\": 1987, \"rankvar\": 1990, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 809, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1931, \"cat-2\": \"Density: 27\", \"cat_2_index\": 927, \"group\": [320.0, 223.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88845_BALBc-1_X02_Y01_845_321\", \"ini\": 2016, \"clust\": 344, \"rank\": 524, \"rankvar\": 2283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 810, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1739, \"cat-2\": \"Density: 27\", \"cat_2_index\": 928, \"group\": [348.0, 243.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89110_BALBc-1_X02_Y01_848_694\", \"ini\": 2015, \"clust\": 211, \"rank\": 993, \"rankvar\": 1864, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 811, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2238, \"cat-2\": \"Density: 22\", \"cat_2_index\": 280, \"group\": [212.0, 144.0, 50.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90038_BALBc-1_X02_Y01_859_742\", \"ini\": 2014, \"clust\": 212, \"rank\": 1231, \"rankvar\": 1501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 812, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1932, \"cat-2\": \"Density: 26\", \"cat_2_index\": 773, \"group\": [213.0, 145.0, 50.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90134_BALBc-1_X02_Y01_86_851\", \"ini\": 2013, \"clust\": 685, \"rank\": 506, \"rankvar\": 2035, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 813, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 691, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1648, \"group\": [685.0, 451.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91113_BALBc-1_X02_Y01_871_608\", \"ini\": 2012, \"clust\": 1457, \"rank\": 1916, \"rankvar\": 2125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 814, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1633, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1381, \"group\": [1458.0, 794.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91313_BALBc-1_X02_Y01_874_166\", \"ini\": 2011, \"clust\": 1841, \"rank\": 1614, \"rankvar\": 1968, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 815, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1740, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2223, \"group\": [1842.0, 1035.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91333_BALBc-1_X02_Y01_874_423\", \"ini\": 2010, \"clust\": 1437, \"rank\": 2594, \"rankvar\": 2170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 816, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1933, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1382, \"group\": [1437.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91389_BALBc-1_X02_Y01_875_273\", \"ini\": 2009, \"clust\": 1534, \"rank\": 1978, \"rankvar\": 2199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 817, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1934, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1853, \"group\": [1537.0, 832.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91790_BALBc-1_X02_Y01_88_353\", \"ini\": 2008, \"clust\": 1566, \"rank\": 925, \"rankvar\": 124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 818, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1935, \"cat-2\": \"Density: 27\", \"cat_2_index\": 929, \"group\": [1567.0, 856.0, 250.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91944_BALBc-1_X02_Y01_881_300\", \"ini\": 2007, \"clust\": 961, \"rank\": 415, \"rankvar\": 294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 819, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 823, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1383, \"group\": [962.0, 493.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92119_BALBc-1_X02_Y01_883_690\", \"ini\": 2006, \"clust\": 1200, \"rank\": 1517, \"rankvar\": 2198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 820, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2445, \"cat-2\": \"Density: 24\", \"cat_2_index\": 499, \"group\": [1206.0, 599.0, 169.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92234_BALBc-1_X02_Y01_885_483\", \"ini\": 2005, \"clust\": 272, \"rank\": 1712, \"rankvar\": 1397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 821, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1936, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2063, \"group\": [272.0, 194.0, 70.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92639_BALBc-1_X02_Y01_89_950\", \"ini\": 2004, \"clust\": 1269, \"rank\": 1331, \"rankvar\": 2586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 822, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 824, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1957, \"group\": [1269.0, 648.0, 187.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92716_BALBc-1_X02_Y01_890_939\", \"ini\": 2003, \"clust\": 754, \"rank\": 240, \"rankvar\": 32, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 823, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1089, \"cat-2\": \"Density: 25\", \"cat_2_index\": 645, \"group\": [754.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92826_BALBc-1_X02_Y01_892_493\", \"ini\": 2002, \"clust\": 1581, \"rank\": 1114, \"rankvar\": 1850, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 824, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1937, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1758, \"group\": [1582.0, 867.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92861_BALBc-1_X02_Y01_892_982\", \"ini\": 2001, \"clust\": 1183, \"rank\": 841, \"rankvar\": 491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 825, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 825, \"cat-2\": \"Density: 26\", \"cat_2_index\": 774, \"group\": [1184.0, 577.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93022_BALBc-1_X02_Y01_894_971\", \"ini\": 2000, \"clust\": 2403, \"rank\": 2773, \"rankvar\": 2450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 826, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1090, \"cat-2\": \"Density: 26\", \"cat_2_index\": 775, \"group\": [2403.0, 1273.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93068_BALBc-1_X02_Y01_895_559\", \"ini\": 1999, \"clust\": 455, \"rank\": 1263, \"rankvar\": 2273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 827, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1938, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1854, \"group\": [460.0, 320.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93323_BALBc-1_X02_Y01_898_909\", \"ini\": 1998, \"clust\": 622, \"rank\": 221, \"rankvar\": 672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 828, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1091, \"cat-2\": \"Density: 26\", \"cat_2_index\": 776, \"group\": [622.0, 420.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93904_BALBc-1_X02_Y01_905_249\", \"ini\": 1997, \"clust\": 1284, \"rank\": 1957, \"rankvar\": 2357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 829, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 826, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2147, \"group\": [1286.0, 657.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93971_BALBc-1_X02_Y01_906_130\", \"ini\": 1996, \"clust\": 1891, \"rank\": 2697, \"rankvar\": 2719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 830, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1741, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2148, \"group\": [1891.0, 1081.0, 330.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94356_BALBc-1_X02_Y01_910_484\", \"ini\": 1995, \"clust\": 229, \"rank\": 1235, \"rankvar\": 1444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 831, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2446, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1759, \"group\": [230.0, 160.0, 56.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94868_BALBc-1_X02_Y01_917_430\", \"ini\": 1994, \"clust\": 1490, \"rank\": 2582, \"rankvar\": 2554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 832, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1939, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1229, \"group\": [1488.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95225_BALBc-1_X02_Y01_920_863\", \"ini\": 1993, \"clust\": 689, \"rank\": 537, \"rankvar\": 277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 833, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1940, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1384, \"group\": [689.0, 453.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95582_BALBc-1_X02_Y01_925_541\", \"ini\": 1992, \"clust\": 1644, \"rank\": 1490, \"rankvar\": 2706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 834, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1941, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1855, \"group\": [1645.0, 905.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95746_BALBc-1_X02_Y01_927_54\", \"ini\": 1991, \"clust\": 1378, \"rank\": 1945, \"rankvar\": 2398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 835, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1742, \"cat-2\": \"Density: 21\", \"cat_2_index\": 202, \"group\": [1379.0, 733.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96191_BALBc-1_X02_Y01_932_492\", \"ini\": 1990, \"clust\": 1478, \"rank\": 2686, \"rankvar\": 2065, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 836, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1942, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1958, \"group\": [1479.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96279_BALBc-1_X02_Y01_933_566\", \"ini\": 1989, \"clust\": 561, \"rank\": 1146, \"rankvar\": 1417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 837, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1092, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1506, \"group\": [561.0, 385.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96334_BALBc-1_X02_Y01_934_380\", \"ini\": 1988, \"clust\": 1596, \"rank\": 1561, \"rankvar\": 2018, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 838, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1943, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1083, \"group\": [1597.0, 879.0, 257.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96344_BALBc-1_X02_Y01_934_613\", \"ini\": 1987, \"clust\": 1539, \"rank\": 2553, \"rankvar\": 2666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 839, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2489, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1507, \"group\": [1539.0, 833.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96459_BALBc-1_X02_Y01_935_966\", \"ini\": 1986, \"clust\": 1306, \"rank\": 1375, \"rankvar\": 1771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 840, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1093, \"cat-2\": \"Density: 26\", \"cat_2_index\": 777, \"group\": [1313.0, 681.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96674_BALBc-1_X02_Y01_939_112\", \"ini\": 1985, \"clust\": 1434, \"rank\": 2565, \"rankvar\": 2256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 841, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 944, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1760, \"group\": [1434.0, 780.0, 234.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97053_BALBc-1_X02_Y01_943_180\", \"ini\": 1984, \"clust\": 1462, \"rank\": 1781, \"rankvar\": 1975, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 842, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1944, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1959, \"group\": [1461.0, 797.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97263_BALBc-1_X02_Y01_945_522\", \"ini\": 1983, \"clust\": 1463, \"rank\": 2103, \"rankvar\": 2694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 843, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2292, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1960, \"group\": [1462.0, 797.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97534_BALBc-1_X02_Y01_949_394\", \"ini\": 1982, \"clust\": 1236, \"rank\": 1379, \"rankvar\": 1978, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 844, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1945, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1385, \"group\": [1239.0, 622.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98149_BALBc-1_X02_Y01_956_248\", \"ini\": 1981, \"clust\": 290, \"rank\": 1172, \"rankvar\": 2073, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 845, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 827, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1649, \"group\": [293.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98727_BALBc-1_X02_Y01_963_190\", \"ini\": 1980, \"clust\": 931, \"rank\": 139, \"rankvar\": 340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 846, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 828, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2064, \"group\": [930.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98778_BALBc-1_X02_Y01_963_859\", \"ini\": 1979, \"clust\": 1464, \"rank\": 2126, \"rankvar\": 2238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 847, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1094, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1230, \"group\": [1467.0, 800.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98945_BALBc-1_X02_Y01_966_166\", \"ini\": 1978, \"clust\": 1564, \"rank\": 727, \"rankvar\": 87, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 848, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1946, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1856, \"group\": [1564.0, 853.0, 249.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99117_BALBc-1_X02_Y01_968_271\", \"ini\": 1977, \"clust\": 1604, \"rank\": 709, \"rankvar\": 1442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 849, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1947, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1650, \"group\": [1608.0, 887.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99166_BALBc-1_X02_Y01_968_799\", \"ini\": 1976, \"clust\": 1438, \"rank\": 2717, \"rankvar\": 2268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 850, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1948, \"cat-2\": \"Density: 27\", \"cat_2_index\": 930, \"group\": [1438.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99323_BALBc-1_X02_Y01_97_873\", \"ini\": 1975, \"clust\": 648, \"rank\": 513, \"rankvar\": 304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 851, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2447, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1651, \"group\": [648.0, 435.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99561_BALBc-1_X02_Y01_973_197\", \"ini\": 1974, \"clust\": 501, \"rank\": 898, \"rankvar\": 904, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 852, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 829, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2065, \"group\": [500.0, 341.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99777_BALBc-1_X02_Y01_975_860\", \"ini\": 1973, \"clust\": 614, \"rank\": 630, \"rankvar\": 1254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 853, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1949, \"cat-2\": \"Density: 26\", \"cat_2_index\": 778, \"group\": [613.0, 415.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100239_BALBc-1_X02_Y01_981_12\", \"ini\": 1972, \"clust\": 1569, \"rank\": 572, \"rankvar\": 582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 854, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1950, \"cat-2\": \"Density: 13\", \"cat_2_index\": 16, \"group\": [1572.0, 859.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100387_BALBc-1_X02_Y01_983_285\", \"ini\": 1971, \"clust\": 928, \"rank\": 161, \"rankvar\": 1092, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 855, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1951, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1508, \"group\": [932.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100684_BALBc-1_X02_Y01_987_235\", \"ini\": 1970, \"clust\": 1388, \"rank\": 2281, \"rankvar\": 2600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 856, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 830, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1761, \"group\": [1386.0, 737.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100729_BALBc-1_X02_Y01_987_776\", \"ini\": 1969, \"clust\": 1136, \"rank\": 1094, \"rankvar\": 875, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 857, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1743, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1084, \"group\": [1137.0, 539.0, 147.0, 37.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101299_BALBc-1_X02_Y01_994_207\", \"ini\": 1968, \"clust\": 214, \"rank\": 1804, \"rankvar\": 2173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 858, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1095, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1961, \"group\": [215.0, 147.0, 51.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101376_BALBc-1_X02_Y01_995_115\", \"ini\": 1967, \"clust\": 292, \"rank\": 1906, \"rankvar\": 2708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 859, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1952, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1386, \"group\": [290.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101379_BALBc-1_X02_Y01_995_125\", \"ini\": 1966, \"clust\": 1488, \"rank\": 2559, \"rankvar\": 2754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 860, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1953, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1387, \"group\": [1489.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101762_BALBc-1_X02_Y01_999_749\", \"ini\": 1965, \"clust\": 1369, \"rank\": 2494, \"rankvar\": 2566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 861, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1954, \"cat-2\": \"Density: 26\", \"cat_2_index\": 779, \"group\": [1371.0, 729.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-814_BALBc-1_X01_Y02_1000_470\", \"ini\": 1964, \"clust\": 2301, \"rank\": 1715, \"rankvar\": 956, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 862, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2520, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2542, \"group\": [2301.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1027_BALBc-1_X01_Y02_1003_258\", \"ini\": 1963, \"clust\": 2603, \"rank\": 1923, \"rankvar\": 2005, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 863, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2521, \"cat-2\": \"Density: 27\", \"cat_2_index\": 931, \"group\": [2601.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1035_BALBc-1_X01_Y02_1003_353\", \"ini\": 1962, \"clust\": 515, \"rank\": 552, \"rankvar\": 308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 864, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 38, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2365, \"group\": [514.0, 353.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1100_BALBc-1_X01_Y02_1004_310\", \"ini\": 1961, \"clust\": 850, \"rank\": 205, \"rankvar\": 801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 865, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 39, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1652, \"group\": [851.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1200_BALBc-1_X01_Y02_1005_707\", \"ini\": 1960, \"clust\": 368, \"rank\": 765, \"rankvar\": 373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 866, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1096, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2503, \"group\": [372.0, 258.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1322_BALBc-1_X01_Y02_1007_204\", \"ini\": 1959, \"clust\": 2584, \"rank\": 1462, \"rankvar\": 1508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 867, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 40, \"cat-2\": \"Density: 25\", \"cat_2_index\": 646, \"group\": [2587.0, 1399.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1434_BALBc-1_X01_Y02_1008_667\", \"ini\": 1958, \"clust\": 2287, \"rank\": 2127, \"rankvar\": 1858, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 868, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 41, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2543, \"group\": [2286.0, 1245.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1462_BALBc-1_X01_Y02_1008_96\", \"ini\": 1957, \"clust\": 816, \"rank\": 98, \"rankvar\": 522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 869, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2522, \"cat-2\": \"Density: 26\", \"cat_2_index\": 780, \"group\": [816.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1655_BALBc-1_X01_Y02_1010_300\", \"ini\": 1956, \"clust\": 129, \"rank\": 1010, \"rankvar\": 1213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 870, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 42, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1762, \"group\": [131.0, 81.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1685_BALBc-1_X01_Y02_1010_638\", \"ini\": 1955, \"clust\": 642, \"rank\": 184, \"rankvar\": 916, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 871, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1992, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2544, \"group\": [641.0, 431.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1696_BALBc-1_X01_Y02_1010_759\", \"ini\": 1954, \"clust\": 962, \"rank\": 704, \"rankvar\": 435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 872, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1097, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2424, \"group\": [969.0, 496.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1730_BALBc-1_X01_Y02_1011_325\", \"ini\": 1953, \"clust\": 950, \"rank\": 863, \"rankvar\": 848, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 873, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 43, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2066, \"group\": [949.0, 483.0, 138.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1847_BALBc-1_X01_Y02_1012_897\", \"ini\": 1952, \"clust\": 773, \"rank\": 51, \"rankvar\": 256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 874, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1098, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2299, \"group\": [775.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1915_BALBc-1_X01_Y02_1013_615\", \"ini\": 1951, \"clust\": 2372, \"rank\": 2743, \"rankvar\": 2320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 875, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1993, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2651, \"group\": [2373.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2124_BALBc-1_X01_Y02_1016_391\", \"ini\": 1950, \"clust\": 2280, \"rank\": 1843, \"rankvar\": 1019, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 876, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 44, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2773, \"group\": [2280.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2204_BALBc-1_X01_Y02_1017_547\", \"ini\": 1949, \"clust\": 45, \"rank\": 971, \"rankvar\": 852, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 877, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 45, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2652, \"group\": [45.0, 38.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2235_BALBc-1_X01_Y02_1017_848\", \"ini\": 1948, \"clust\": 348, \"rank\": 768, \"rankvar\": 235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 878, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1099, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2504, \"group\": [349.0, 244.0, 84.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2283_BALBc-1_X01_Y02_1018_442\", \"ini\": 1947, \"clust\": 2062, \"rank\": 2688, \"rankvar\": 2048, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 879, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2523, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2733, \"group\": [2061.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2353_BALBc-1_X01_Y02_1019_489\", \"ini\": 1946, \"clust\": 1903, \"rank\": 2530, \"rankvar\": 2760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 880, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2524, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2734, \"group\": [1902.0, 1090.0, 333.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2355_BALBc-1_X01_Y02_1019_507\", \"ini\": 1945, \"clust\": 1906, \"rank\": 2334, \"rankvar\": 1936, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 881, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 46, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2593, \"group\": [1906.0, 1093.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2384_BALBc-1_X01_Y02_1019_836\", \"ini\": 1944, \"clust\": 1786, \"rank\": 1904, \"rankvar\": 2570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 882, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1634, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2594, \"group\": [1790.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2557_BALBc-1_X01_Y02_1021_285\", \"ini\": 1943, \"clust\": 945, \"rank\": 105, \"rankvar\": 518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 883, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 47, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1388, \"group\": [946.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2591_BALBc-1_X01_Y02_1021_733\", \"ini\": 1942, \"clust\": 448, \"rank\": 287, \"rankvar\": 367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 884, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1100, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2425, \"group\": [447.0, 313.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2671_BALBc-1_X01_Y02_1022_672\", \"ini\": 1941, \"clust\": 723, \"rank\": 206, \"rankvar\": 1224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 885, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1101, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2505, \"group\": [723.0, 463.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2730_BALBc-1_X01_Y02_1023_412\", \"ini\": 1940, \"clust\": 132, \"rank\": 696, \"rankvar\": 1701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 886, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2525, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2696, \"group\": [135.0, 83.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2766_BALBc-1_X01_Y02_1023_779\", \"ini\": 1939, \"clust\": 1770, \"rank\": 1762, \"rankvar\": 1204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 887, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1102, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2426, \"group\": [1771.0, 1004.0, 302.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2827_BALBc-1_X01_Y02_1024_575\", \"ini\": 1938, \"clust\": 2059, \"rank\": 2797, \"rankvar\": 2247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 888, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 48, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2595, \"group\": [2056.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2833_BALBc-1_X01_Y02_1024_621\", \"ini\": 1937, \"clust\": 1842, \"rank\": 1682, \"rankvar\": 1589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 889, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 49, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2596, \"group\": [1840.0, 1034.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2893_BALBc-1_X01_Y02_1025_369\", \"ini\": 1936, \"clust\": 2172, \"rank\": 1523, \"rankvar\": 1423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 890, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1635, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2506, \"group\": [2171.0, 1177.0, 347.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2964_BALBc-1_X01_Y02_1026_323\", \"ini\": 1935, \"clust\": 2235, \"rank\": 1619, \"rankvar\": 374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 891, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 50, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1857, \"group\": [2236.0, 1215.0, 363.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3081_BALBc-1_X01_Y02_1027_596\", \"ini\": 1934, \"clust\": 891, \"rank\": 28, \"rankvar\": 126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 892, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 51, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2653, \"group\": [888.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3102_BALBc-1_X01_Y02_1027_8\", \"ini\": 1933, \"clust\": 834, \"rank\": 140, \"rankvar\": 110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 893, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1636, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1763, \"group\": [836.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3134_BALBc-1_X01_Y02_1028_174\", \"ini\": 1932, \"clust\": 2585, \"rank\": 1086, \"rankvar\": 1132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 894, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1103, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1085, \"group\": [2585.0, 1398.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3301_BALBc-1_X01_Y02_103_274\", \"ini\": 1931, \"clust\": 312, \"rank\": 1163, \"rankvar\": 2641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 895, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1104, \"cat-2\": \"Density: 25\", \"cat_2_index\": 647, \"group\": [312.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3362_BALBc-1_X01_Y02_1030_122\", \"ini\": 1930, \"clust\": 2693, \"rank\": 2399, \"rankvar\": 1808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 896, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 692, \"cat-2\": \"Density: 24\", \"cat_2_index\": 500, \"group\": [2694.0, 1451.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3370_BALBc-1_X01_Y02_1030_219\", \"ini\": 1929, \"clust\": 2576, \"rank\": 1849, \"rankvar\": 2537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 897, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1105, \"cat-2\": \"Density: 27\", \"cat_2_index\": 932, \"group\": [2577.0, 1392.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3687_BALBc-1_X01_Y02_1034_469\", \"ini\": 1928, \"clust\": 2012, \"rank\": 1943, \"rankvar\": 2012, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 898, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2526, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2735, \"group\": [2012.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3758_BALBc-1_X01_Y02_1035_352\", \"ini\": 1927, \"clust\": 897, \"rank\": 24, \"rankvar\": 437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 899, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1637, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2427, \"group\": [896.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3764_BALBc-1_X01_Y02_1035_406\", \"ini\": 1926, \"clust\": 2048, \"rank\": 2390, \"rankvar\": 1955, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 900, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1638, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2597, \"group\": [2136.0, 1154.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4026_BALBc-1_X01_Y02_1038_521\", \"ini\": 1925, \"clust\": 2250, \"rank\": 1837, \"rankvar\": 564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 901, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 52, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2736, \"group\": [2250.0, 1227.0, 370.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4053_BALBc-1_X01_Y02_1038_905\", \"ini\": 1924, \"clust\": 1802, \"rank\": 2253, \"rankvar\": 2488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 902, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1744, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2149, \"group\": [1802.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4056_BALBc-1_X01_Y02_1038_930\", \"ini\": 1923, \"clust\": 797, \"rank\": 191, \"rankvar\": 702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 903, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1106, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1509, \"group\": [801.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4110_BALBc-1_X01_Y02_1039_579\", \"ini\": 1922, \"clust\": 2451, \"rank\": 1706, \"rankvar\": 566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 904, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 53, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2598, \"group\": [2452.0, 1304.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4115_BALBc-1_X01_Y02_1039_648\", \"ini\": 1921, \"clust\": 1788, \"rank\": 1567, \"rankvar\": 2392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 905, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1107, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2428, \"group\": [1787.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4300_BALBc-1_X01_Y02_1041_266\", \"ini\": 1920, \"clust\": 1702, \"rank\": 2352, \"rankvar\": 2604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 906, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 54, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1231, \"group\": [1702.0, 957.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4313_BALBc-1_X01_Y02_1041_433\", \"ini\": 1919, \"clust\": 1732, \"rank\": 2293, \"rankvar\": 2538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 907, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2527, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2697, \"group\": [1735.0, 978.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4822_BALBc-1_X01_Y02_1047_721\", \"ini\": 1918, \"clust\": 505, \"rank\": 857, \"rankvar\": 347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 908, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1108, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2507, \"group\": [506.0, 346.0, 117.0, 33.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4884_BALBc-1_X01_Y02_1048_476\", \"ini\": 1917, \"clust\": 503, \"rank\": 769, \"rankvar\": 1104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 909, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 55, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2819, \"group\": [504.0, 344.0, 116.0, 33.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4887_BALBc-1_X01_Y02_1048_504\", \"ini\": 1916, \"clust\": 1055, \"rank\": 487, \"rankvar\": 301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 910, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 56, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2820, \"group\": [1058.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4912_BALBc-1_X01_Y02_1048_876\", \"ini\": 1915, \"clust\": 76, \"rank\": 522, \"rankvar\": 1482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 911, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1109, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2224, \"group\": [76.0, 57.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5193_BALBc-1_X01_Y02_1051_618\", \"ini\": 1914, \"clust\": 1772, \"rank\": 1650, \"rankvar\": 1714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 912, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1110, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2366, \"group\": [1774.0, 1006.0, 303.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5224_BALBc-1_X01_Y02_1052_107\", \"ini\": 1913, \"clust\": 1004, \"rank\": 171, \"rankvar\": 811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 913, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 693, \"cat-2\": \"Density: 23\", \"cat_2_index\": 390, \"group\": [1002.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5304_BALBc-1_X01_Y02_1053_18\", \"ini\": 1912, \"clust\": 1248, \"rank\": 1717, \"rankvar\": 1913, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 914, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2448, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1232, \"group\": [1248.0, 629.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5328_BALBc-1_X01_Y02_1053_572\", \"ini\": 1911, \"clust\": 2446, \"rank\": 1564, \"rankvar\": 483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 915, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 57, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2599, \"group\": [2447.0, 1302.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5445_BALBc-1_X01_Y02_1055_145\", \"ini\": 1910, \"clust\": 149, \"rank\": 1737, \"rankvar\": 1517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 916, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 58, \"cat-2\": \"Density: 23\", \"cat_2_index\": 391, \"group\": [152.0, 95.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5547_BALBc-1_X01_Y02_1056_251\", \"ini\": 1909, \"clust\": 2592, \"rank\": 1442, \"rankvar\": 617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 917, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1560, \"cat-2\": \"Density: 27\", \"cat_2_index\": 933, \"group\": [2590.0, 1401.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5577_BALBc-1_X01_Y02_1056_535\", \"ini\": 1908, \"clust\": 923, \"rank\": 202, \"rankvar\": 83, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 918, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 59, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2698, \"group\": [925.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5586_BALBc-1_X01_Y02_1056_690\", \"ini\": 1907, \"clust\": 357, \"rank\": 612, \"rankvar\": 1791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 919, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1111, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2429, \"group\": [357.0, 250.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5602_BALBc-1_X01_Y02_1056_84\", \"ini\": 1906, \"clust\": 806, \"rank\": 656, \"rankvar\": 26, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 920, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 694, \"cat-2\": \"Density: 26\", \"cat_2_index\": 781, \"group\": [807.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5707_BALBc-1_X01_Y02_1058_294\", \"ini\": 1905, \"clust\": 1002, \"rank\": 629, \"rankvar\": 152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 921, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 60, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1510, \"group\": [1005.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5739_BALBc-1_X01_Y02_1058_669\", \"ini\": 1904, \"clust\": 2467, \"rank\": 1265, \"rankvar\": 732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 922, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1112, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2654, \"group\": [2467.0, 1315.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5833_BALBc-1_X01_Y02_1059_848\", \"ini\": 1903, \"clust\": 384, \"rank\": 851, \"rankvar\": 1313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 923, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1113, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2300, \"group\": [383.0, 266.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6281_BALBc-1_X01_Y02_1064_432\", \"ini\": 1902, \"clust\": 1822, \"rank\": 2696, \"rankvar\": 2553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 924, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 61, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2737, \"group\": [1822.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6293_BALBc-1_X01_Y02_1064_504\", \"ini\": 1901, \"clust\": 2278, \"rank\": 1790, \"rankvar\": 413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 925, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 62, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2811, \"group\": [2278.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6437_BALBc-1_X01_Y02_1066_473\", \"ini\": 1900, \"clust\": 2452, \"rank\": 1241, \"rankvar\": 895, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 926, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 63, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2821, \"group\": [2453.0, 1304.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6448_BALBc-1_X01_Y02_1066_590\", \"ini\": 1899, \"clust\": 872, \"rank\": 36, \"rankvar\": 517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 927, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 64, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2655, \"group\": [878.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6527_BALBc-1_X01_Y02_1067_691\", \"ini\": 1898, \"clust\": 204, \"rank\": 922, \"rankvar\": 434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 928, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1114, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2430, \"group\": [204.0, 137.0, 46.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6588_BALBc-1_X01_Y02_1068_448\", \"ini\": 1897, \"clust\": 2439, \"rank\": 1019, \"rankvar\": 721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 929, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 65, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2812, \"group\": [2440.0, 1298.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6686_BALBc-1_X01_Y02_1069_459\", \"ini\": 1896, \"clust\": 1028, \"rank\": 358, \"rankvar\": 59, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 930, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 66, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2793, \"group\": [1029.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6811_BALBc-1_X01_Y02_1070_150\", \"ini\": 1895, \"clust\": 376, \"rank\": 811, \"rankvar\": 2165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 931, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1115, \"cat-2\": \"Density: 23\", \"cat_2_index\": 392, \"group\": [380.0, 264.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7004_BALBc-1_X01_Y02_1072_408\", \"ini\": 1894, \"clust\": 2149, \"rank\": 707, \"rankvar\": 2014, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 932, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 619, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2794, \"group\": [2150.0, 1166.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7308_BALBc-1_X01_Y02_1075_797\", \"ini\": 1893, \"clust\": 817, \"rank\": 133, \"rankvar\": 180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 933, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1116, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2301, \"group\": [817.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7360_BALBc-1_X01_Y02_1076_505\", \"ini\": 1892, \"clust\": 1455, \"rank\": 2192, \"rankvar\": 939, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 934, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 67, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2795, \"group\": [1456.0, 792.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7375_BALBc-1_X01_Y02_1076_614\", \"ini\": 1891, \"clust\": 724, \"rank\": 180, \"rankvar\": 657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 935, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1117, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2656, \"group\": [724.0, 463.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7388_BALBc-1_X01_Y02_1076_772\", \"ini\": 1890, \"clust\": 1807, \"rank\": 1615, \"rankvar\": 1504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 936, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1118, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2367, \"group\": [1807.0, 1021.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7429_BALBc-1_X01_Y02_1077_283\", \"ini\": 1889, \"clust\": 514, \"rank\": 720, \"rankvar\": 36, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 937, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 68, \"cat-2\": \"Density: 26\", \"cat_2_index\": 782, \"group\": [516.0, 353.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7521_BALBc-1_X01_Y02_1078_434\", \"ini\": 1888, \"clust\": 795, \"rank\": 280, \"rankvar\": 625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 938, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 69, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2796, \"group\": [796.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7604_BALBc-1_X01_Y02_1079_662\", \"ini\": 1887, \"clust\": 1691, \"rank\": 2635, \"rankvar\": 2775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 939, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1119, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2431, \"group\": [1692.0, 949.0, 284.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7606_BALBc-1_X01_Y02_1079_678\", \"ini\": 1886, \"clust\": 2544, \"rank\": 1824, \"rankvar\": 1470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 940, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1639, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2432, \"group\": [2545.0, 1370.0, 408.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7804_BALBc-1_X01_Y02_1081_554\", \"ini\": 1885, \"clust\": 502, \"rank\": 1081, \"rankvar\": 202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 941, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 70, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2699, \"group\": [501.0, 341.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7953_BALBc-1_X01_Y02_1083_574\", \"ini\": 1884, \"clust\": 2305, \"rank\": 1803, \"rankvar\": 1071, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 942, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 71, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2508, \"group\": [2304.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8179_BALBc-1_X01_Y02_1086_62\", \"ini\": 1883, \"clust\": 785, \"rank\": 338, \"rankvar\": 250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 943, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1640, \"cat-2\": \"Density: 27\", \"cat_2_index\": 934, \"group\": [785.0, 476.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8323_BALBc-1_X01_Y02_1088_532\", \"ini\": 1882, \"clust\": 681, \"rank\": 485, \"rankvar\": 114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 944, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 72, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2774, \"group\": [684.0, 450.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8368_BALBc-1_X01_Y02_1089_10\", \"ini\": 1881, \"clust\": 942, \"rank\": 44, \"rankvar\": 360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 945, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 695, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1233, \"group\": [941.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8395_BALBc-1_X01_Y02_1089_383\", \"ini\": 1880, \"clust\": 1075, \"rank\": 381, \"rankvar\": 728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 946, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 620, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2600, \"group\": [1076.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8610_BALBc-1_X01_Y02_1091_207\", \"ini\": 1879, \"clust\": 591, \"rank\": 1030, \"rankvar\": 1060, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 947, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1120, \"cat-2\": \"Density: 22\", \"cat_2_index\": 281, \"group\": [594.0, 405.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8618_BALBc-1_X01_Y02_1091_325\", \"ini\": 1878, \"clust\": 2433, \"rank\": 718, \"rankvar\": 752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 948, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1641, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1962, \"group\": [2431.0, 1295.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8711_BALBc-1_X01_Y02_1092_593\", \"ini\": 1877, \"clust\": 2389, \"rank\": 2453, \"rankvar\": 1309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 949, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 73, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2738, \"group\": [2389.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8860_BALBc-1_X01_Y02_1094_414\", \"ini\": 1876, \"clust\": 1896, \"rank\": 2427, \"rankvar\": 2377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 950, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 74, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2775, \"group\": [1896.0, 1085.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8911_BALBc-1_X01_Y02_1095_127\", \"ini\": 1875, \"clust\": 194, \"rank\": 418, \"rankvar\": 1066, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 951, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1121, \"cat-2\": \"Density: 24\", \"cat_2_index\": 501, \"group\": [199.0, 133.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8950_BALBc-1_X01_Y02_1095_640\", \"ini\": 1874, \"clust\": 774, \"rank\": 232, \"rankvar\": 162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 952, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1122, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2700, \"group\": [773.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9039_BALBc-1_X01_Y02_1096_780\", \"ini\": 1873, \"clust\": 414, \"rank\": 963, \"rankvar\": 791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 953, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 945, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2225, \"group\": [415.0, 292.0, 101.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9116_BALBc-1_X01_Y02_1097_820\", \"ini\": 1872, \"clust\": 1834, \"rank\": 2526, \"rankvar\": 2091, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 954, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1123, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2226, \"group\": [1836.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9237_BALBc-1_X01_Y02_1099_474\", \"ini\": 1871, \"clust\": 814, \"rank\": 311, \"rankvar\": 24, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 955, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 75, \"cat-2\": \"Density: 52\", \"cat_2_index\": 2825, \"group\": [812.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9410_BALBc-1_X01_Y02_110_501\", \"ini\": 1870, \"clust\": 758, \"rank\": 108, \"rankvar\": 1406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 956, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2449, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1086, \"group\": [757.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9518_BALBc-1_X01_Y02_1100_80\", \"ini\": 1869, \"clust\": 326, \"rank\": 1636, \"rankvar\": 2599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 957, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1955, \"cat-2\": \"Density: 24\", \"cat_2_index\": 502, \"group\": [325.0, 226.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9617_BALBc-1_X01_Y02_1102_229\", \"ini\": 1868, \"clust\": 1703, \"rank\": 2425, \"rankvar\": 2374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 958, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1561, \"cat-2\": \"Density: 26\", \"cat_2_index\": 783, \"group\": [1700.0, 957.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9723_BALBc-1_X01_Y02_1103_562\", \"ini\": 1867, \"clust\": 733, \"rank\": 298, \"rankvar\": 150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 959, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 76, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2545, \"group\": [733.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9784_BALBc-1_X01_Y02_1104_292\", \"ini\": 1866, \"clust\": 1767, \"rank\": 1955, \"rankvar\": 2239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 960, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2528, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1511, \"group\": [1766.0, 1001.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9793_BALBc-1_X01_Y02_1104_427\", \"ini\": 1865, \"clust\": 997, \"rank\": 652, \"rankvar\": 348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 961, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 77, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2797, \"group\": [999.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9800_BALBc-1_X01_Y02_1104_504\", \"ini\": 1864, \"clust\": 2324, \"rank\": 1967, \"rankvar\": 760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 962, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 78, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2798, \"group\": [2322.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9883_BALBc-1_X01_Y02_1105_447\", \"ini\": 1863, \"clust\": 422, \"rank\": 970, \"rankvar\": 78, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 963, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 79, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2813, \"group\": [422.0, 298.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10036_BALBc-1_X01_Y02_1107_379\", \"ini\": 1862, \"clust\": 1904, \"rank\": 2210, \"rankvar\": 1874, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 964, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 80, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2368, \"group\": [1903.0, 1090.0, 333.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10115_BALBc-1_X01_Y02_1108_313\", \"ini\": 1861, \"clust\": 786, \"rank\": 285, \"rankvar\": 468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 965, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2529, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1389, \"group\": [786.0, 476.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10188_BALBc-1_X01_Y02_1109_186\", \"ini\": 1860, \"clust\": 1082, \"rank\": 559, \"rankvar\": 743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 966, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1124, \"cat-2\": \"Density: 20\", \"cat_2_index\": 153, \"group\": [1085.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10290_BALBc-1_X01_Y02_111_587\", \"ini\": 1859, \"clust\": 345, \"rank\": 557, \"rankvar\": 1739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 967, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1125, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1087, \"group\": [347.0, 242.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10354_BALBc-1_X01_Y02_1110_402\", \"ini\": 1858, \"clust\": 874, \"rank\": 1, \"rankvar\": 443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 968, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 81, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2546, \"group\": [871.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10516_BALBc-1_X01_Y02_1112_616\", \"ini\": 1857, \"clust\": 1131, \"rank\": 722, \"rankvar\": 2010, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 969, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1126, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2739, \"group\": [1130.0, 532.0, 145.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10520_BALBc-1_X01_Y02_1112_667\", \"ini\": 1856, \"clust\": 2535, \"rank\": 1778, \"rankvar\": 1882, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 970, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 82, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2369, \"group\": [2536.0, 1362.0, 404.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10730_BALBc-1_X01_Y02_1115_472\", \"ini\": 1855, \"clust\": 841, \"rank\": 297, \"rankvar\": 0, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 971, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 83, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2814, \"group\": [842.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10887_BALBc-1_X01_Y02_1117_527\", \"ini\": 1854, \"clust\": 499, \"rank\": 1041, \"rankvar\": 309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 972, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 84, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2601, \"group\": [498.0, 340.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10916_BALBc-1_X01_Y02_1117_796\", \"ini\": 1853, \"clust\": 1759, \"rank\": 1052, \"rankvar\": 2717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 973, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1127, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1963, \"group\": [1758.0, 995.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10974_BALBc-1_X01_Y02_1118_646\", \"ini\": 1852, \"clust\": 78, \"rank\": 542, \"rankvar\": 548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 974, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 85, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2602, \"group\": [79.0, 58.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11010_BALBc-1_X01_Y02_1119_25\", \"ini\": 1851, \"clust\": 2818, \"rank\": 2404, \"rankvar\": 2146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 975, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 696, \"cat-2\": \"Density: 27\", \"cat_2_index\": 935, \"group\": [2821.0, 1533.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11155_BALBc-1_X01_Y02_1120_361\", \"ini\": 1850, \"clust\": 857, \"rank\": 74, \"rankvar\": 1013, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 976, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 86, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1964, \"group\": [857.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11235_BALBc-1_X01_Y02_1121_237\", \"ini\": 1849, \"clust\": 190, \"rank\": 866, \"rankvar\": 187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 977, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1562, \"cat-2\": \"Density: 23\", \"cat_2_index\": 393, \"group\": [191.0, 127.0, 43.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11425_BALBc-1_X01_Y02_1123_682\", \"ini\": 1848, \"clust\": 285, \"rank\": 1073, \"rankvar\": 1705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 978, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1642, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2509, \"group\": [294.0, 210.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11501_BALBc-1_X01_Y02_1124_589\", \"ini\": 1847, \"clust\": 1827, \"rank\": 2310, \"rankvar\": 1751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 979, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1128, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2433, \"group\": [1827.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11783_BALBc-1_X01_Y02_1128_375\", \"ini\": 1846, \"clust\": 2279, \"rank\": 1853, \"rankvar\": 321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 980, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 87, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2227, \"group\": [2279.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11789_BALBc-1_X01_Y02_1128_446\", \"ini\": 1845, \"clust\": 2262, \"rank\": 1309, \"rankvar\": 327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 981, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 88, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2776, \"group\": [2260.0, 1235.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11818_BALBc-1_X01_Y02_1128_778\", \"ini\": 1844, \"clust\": 0, \"rank\": 1709, \"rankvar\": 754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 982, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1129, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2302, \"group\": [3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11861_BALBc-1_X01_Y02_1129_519\", \"ini\": 1843, \"clust\": 949, \"rank\": 641, \"rankvar\": 933, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 983, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1546, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2815, \"group\": [951.0, 484.0, 138.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11949_BALBc-1_X01_Y02_113_746\", \"ini\": 1842, \"clust\": 1739, \"rank\": 1677, \"rankvar\": 2334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 984, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1130, \"cat-2\": \"Density: 26\", \"cat_2_index\": 784, \"group\": [1740.0, 983.0, 295.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12248_BALBc-1_X01_Y02_1133_543\", \"ini\": 1841, \"clust\": 1761, \"rank\": 1782, \"rankvar\": 1016, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 985, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1547, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2547, \"group\": [1762.0, 998.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12302_BALBc-1_X01_Y02_1134_424\", \"ini\": 1840, \"clust\": 13, \"rank\": 1297, \"rankvar\": 37, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 986, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2530, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2510, \"group\": [14.0, 13.0, 8.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12338_BALBc-1_X01_Y02_1135_117\", \"ini\": 1839, \"clust\": 2795, \"rank\": 1121, \"rankvar\": 1146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 987, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1131, \"cat-2\": \"Density: 25\", \"cat_2_index\": 648, \"group\": [2795.0, 1516.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12370_BALBc-1_X01_Y02_1135_398\", \"ini\": 1838, \"clust\": 2631, \"rank\": 2252, \"rankvar\": 1591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 988, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2531, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2303, \"group\": [2631.0, 1424.0, 419.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12399_BALBc-1_X01_Y02_1135_711\", \"ini\": 1837, \"clust\": 742, \"rank\": 546, \"rankvar\": 931, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 989, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1132, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2511, \"group\": [748.0, 471.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12520_BALBc-1_X01_Y02_1137_482\", \"ini\": 1836, \"clust\": 861, \"rank\": 183, \"rankvar\": 272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 990, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 89, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2701, \"group\": [862.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13075_BALBc-1_X01_Y02_1143_338\", \"ini\": 1835, \"clust\": 2471, \"rank\": 980, \"rankvar\": 693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 991, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2532, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1234, \"group\": [2472.0, 1320.0, 392.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13103_BALBc-1_X01_Y02_1143_664\", \"ini\": 1834, \"clust\": 2536, \"rank\": 1663, \"rankvar\": 1200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 992, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 90, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2304, \"group\": [2537.0, 1362.0, 404.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13162_BALBc-1_X01_Y02_1144_457\", \"ini\": 1833, \"clust\": 801, \"rank\": 316, \"rankvar\": 54, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 993, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 91, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2799, \"group\": [802.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13164_BALBc-1_X01_Y02_1144_469\", \"ini\": 1832, \"clust\": 1013, \"rank\": 848, \"rankvar\": 19, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 994, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 92, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2702, \"group\": [1018.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13317_BALBc-1_X01_Y02_1146_638\", \"ini\": 1831, \"clust\": 1868, \"rank\": 1131, \"rankvar\": 425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 995, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 93, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2305, \"group\": [1868.0, 1059.0, 320.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13467_BALBc-1_X01_Y02_1148_565\", \"ini\": 1830, \"clust\": 907, \"rank\": 85, \"rankvar\": 62, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 996, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1133, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2434, \"group\": [906.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13517_BALBc-1_X01_Y02_1149_362\", \"ini\": 1829, \"clust\": 293, \"rank\": 1341, \"rankvar\": 2667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 997, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 94, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1653, \"group\": [291.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13825_BALBc-1_X01_Y02_1152_206\", \"ini\": 1828, \"clust\": 453, \"rank\": 346, \"rankvar\": 502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 998, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2533, \"cat-2\": \"Density: 23\", \"cat_2_index\": 394, \"group\": [453.0, 316.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14075_BALBc-1_X01_Y02_1155_606\", \"ini\": 1827, \"clust\": 383, \"rank\": 1111, \"rankvar\": 2286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 999, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1134, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2228, \"group\": [385.0, 267.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14139_BALBc-1_X01_Y02_1156_505\", \"ini\": 1826, \"clust\": 2326, \"rank\": 1924, \"rankvar\": 941, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1000, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1548, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2603, \"group\": [2324.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14194_BALBc-1_X01_Y02_1157_257\", \"ini\": 1825, \"clust\": 454, \"rank\": 433, \"rankvar\": 442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1001, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1135, \"cat-2\": \"Density: 23\", \"cat_2_index\": 395, \"group\": [454.0, 316.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14333_BALBc-1_X01_Y02_1158_98\", \"ini\": 1824, \"clust\": 21, \"rank\": 1055, \"rankvar\": 64, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1002, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1136, \"cat-2\": \"Density: 22\", \"cat_2_index\": 282, \"group\": [21.0, 20.0, 12.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14461_BALBc-1_X01_Y02_116_804\", \"ini\": 1823, \"clust\": 2643, \"rank\": 2306, \"rankvar\": 1488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1003, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1137, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1654, \"group\": [2649.0, 1438.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14529_BALBc-1_X01_Y02_1160_70\", \"ini\": 1822, \"clust\": 2736, \"rank\": 1811, \"rankvar\": 948, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1004, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1956, \"cat-2\": \"Density: 23\", \"cat_2_index\": 396, \"group\": [2737.0, 1472.0, 433.0, 113.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14765_BALBc-1_X01_Y02_1163_363\", \"ini\": 1821, \"clust\": 9, \"rank\": 1605, \"rankvar\": 886, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1005, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2534, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1390, \"group\": [9.0, 8.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14775_BALBc-1_X01_Y02_1163_470\", \"ini\": 1820, \"clust\": 1069, \"rank\": 661, \"rankvar\": 368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1006, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1957, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2548, \"group\": [1073.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14940_BALBc-1_X01_Y02_1165_431\", \"ini\": 1819, \"clust\": 880, \"rank\": 125, \"rankvar\": 528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1007, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1643, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2549, \"group\": [881.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14952_BALBc-1_X01_Y02_1165_653\", \"ini\": 1818, \"clust\": 787, \"rank\": 165, \"rankvar\": 504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1008, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1138, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2229, \"group\": [788.0, 477.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15044_BALBc-1_X01_Y02_1166_715\", \"ini\": 1817, \"clust\": 1803, \"rank\": 2171, \"rankvar\": 2802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1009, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1139, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2230, \"group\": [1800.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15252_BALBc-1_X01_Y02_1169_690\", \"ini\": 1816, \"clust\": 638, \"rank\": 422, \"rankvar\": 290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1010, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1140, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2306, \"group\": [639.0, 429.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15308_BALBc-1_X01_Y02_117_556\", \"ini\": 1815, \"clust\": 181, \"rank\": 910, \"rankvar\": 2289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1011, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 95, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1391, \"group\": [182.0, 119.0, 39.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15434_BALBc-1_X01_Y02_1171_25\", \"ini\": 1814, \"clust\": 1355, \"rank\": 1934, \"rankvar\": 279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1012, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1958, \"cat-2\": \"Density: 27\", \"cat_2_index\": 936, \"group\": [1356.0, 717.0, 213.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15469_BALBc-1_X01_Y02_1171_563\", \"ini\": 1813, \"clust\": 386, \"rank\": 982, \"rankvar\": 1947, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1013, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1745, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2231, \"group\": [386.0, 268.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15536_BALBc-1_X01_Y02_1172_623\", \"ini\": 1812, \"clust\": 296, \"rank\": 650, \"rankvar\": 2315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1014, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1141, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2067, \"group\": [304.0, 214.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15847_BALBc-1_X01_Y02_1176_597\", \"ini\": 1811, \"clust\": 1880, \"rank\": 1858, \"rankvar\": 2219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1015, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1746, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1965, \"group\": [1881.0, 1071.0, 326.0, 91.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15894_BALBc-1_X01_Y02_1177_234\", \"ini\": 1810, \"clust\": 2608, \"rank\": 2107, \"rankvar\": 2222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1016, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1142, \"cat-2\": \"Density: 22\", \"cat_2_index\": 283, \"group\": [2606.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15978_BALBc-1_X01_Y02_1178_306\", \"ini\": 1809, \"clust\": 799, \"rank\": 236, \"rankvar\": 299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1017, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1143, \"cat-2\": \"Density: 21\", \"cat_2_index\": 203, \"group\": [798.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15996_BALBc-1_X01_Y02_1178_501\", \"ini\": 1808, \"clust\": 428, \"rank\": 408, \"rankvar\": 1000, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1018, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1549, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2435, \"group\": [427.0, 303.0, 105.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16362_BALBc-1_X01_Y02_1182_417\", \"ini\": 1807, \"clust\": 1715, \"rank\": 2305, \"rankvar\": 2110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1019, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1644, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2307, \"group\": [1716.0, 967.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16367_BALBc-1_X01_Y02_1182_448\", \"ini\": 1806, \"clust\": 1716, \"rank\": 2193, \"rankvar\": 2591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1020, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1645, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2436, \"group\": [1717.0, 967.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16640_BALBc-1_X01_Y02_1185_889\", \"ini\": 1805, \"clust\": 1, \"rank\": 1193, \"rankvar\": 2375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1021, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1144, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1858, \"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16730_BALBc-1_X01_Y02_1187_385\", \"ini\": 1804, \"clust\": 12, \"rank\": 1407, \"rankvar\": 488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1022, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2535, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1764, \"group\": [13.0, 12.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17035_BALBc-1_X01_Y02_1190_493\", \"ini\": 1803, \"clust\": 2453, \"rank\": 1752, \"rankvar\": 829, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1023, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1959, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2232, \"group\": [2456.0, 1306.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17207_BALBc-1_X01_Y02_1192_761\", \"ini\": 1802, \"clust\": 976, \"rank\": 967, \"rankvar\": 634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1024, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1145, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2370, \"group\": [976.0, 501.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17322_BALBc-1_X01_Y02_1194_325\", \"ini\": 1801, \"clust\": 599, \"rank\": 639, \"rankvar\": 550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1025, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2293, \"cat-2\": \"Density: 24\", \"cat_2_index\": 503, \"group\": [602.0, 411.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17680_BALBc-1_X01_Y02_1199_122\", \"ini\": 1800, \"clust\": 1077, \"rank\": 118, \"rankvar\": 893, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1026, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1146, \"cat-2\": \"Density: 20\", \"cat_2_index\": 154, \"group\": [1078.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17793_BALBc-1_X01_Y02_12_655\", \"ini\": 1799, \"clust\": 2766, \"rank\": 2093, \"rankvar\": 1851, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1027, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 96, \"cat-2\": \"Density: 14\", \"cat_2_index\": 29, \"group\": [2767.0, 1498.0, 447.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17839_BALBc-1_X01_Y02_120_140\", \"ini\": 1798, \"clust\": 1623, \"rank\": 1724, \"rankvar\": 2432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1028, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1147, \"cat-2\": \"Density: 26\", \"cat_2_index\": 785, \"group\": [1624.0, 893.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17873_BALBc-1_X01_Y02_120_509\", \"ini\": 1797, \"clust\": 2760, \"rank\": 1877, \"rankvar\": 1481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1029, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 97, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1235, \"group\": [2760.0, 1493.0, 445.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17954_BALBc-1_X01_Y02_1200_546\", \"ini\": 1796, \"clust\": 1659, \"rank\": 2108, \"rankvar\": 2362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1030, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1550, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1655, \"group\": [1661.0, 919.0, 267.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18320_BALBc-1_X01_Y02_1204_93\", \"ini\": 1795, \"clust\": 1251, \"rank\": 1433, \"rankvar\": 1825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1031, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 98, \"cat-2\": \"Density: 22\", \"cat_2_index\": 284, \"group\": [1253.0, 634.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18357_BALBc-1_X01_Y02_1205_419\", \"ini\": 1794, \"clust\": 989, \"rank\": 826, \"rankvar\": 1421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1032, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1646, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2150, \"group\": [990.0, 507.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18530_BALBc-1_X01_Y02_1207_517\", \"ini\": 1793, \"clust\": 1757, \"rank\": 1626, \"rankvar\": 2409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1033, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1148, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1859, \"group\": [1756.0, 995.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18940_BALBc-1_X01_Y02_1212_14\", \"ini\": 1792, \"clust\": 2769, \"rank\": 2030, \"rankvar\": 720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1034, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1960, \"cat-2\": \"Density: 26\", \"cat_2_index\": 786, \"group\": [2769.0, 1500.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19125_BALBc-1_X01_Y02_1214_642\", \"ini\": 1791, \"clust\": 1899, \"rank\": 2373, \"rankvar\": 2614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1035, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1149, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2068, \"group\": [1898.0, 1087.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19244_BALBc-1_X01_Y02_1216_259\", \"ini\": 1790, \"clust\": 985, \"rank\": 212, \"rankvar\": 1172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1036, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1150, \"cat-2\": \"Density: 19\", \"cat_2_index\": 119, \"group\": [985.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19318_BALBc-1_X01_Y02_1217_339\", \"ini\": 1789, \"clust\": 623, \"rank\": 502, \"rankvar\": 67, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1037, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2294, \"cat-2\": \"Density: 25\", \"cat_2_index\": 649, \"group\": [624.0, 421.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19577_BALBc-1_X01_Y02_122_855\", \"ini\": 1788, \"clust\": 2653, \"rank\": 2641, \"rankvar\": 2016, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1038, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2295, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1236, \"group\": [2651.0, 1439.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19630_BALBc-1_X01_Y02_1220_488\", \"ini\": 1787, \"clust\": 995, \"rank\": 472, \"rankvar\": 1419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1039, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1151, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2151, \"group\": [995.0, 510.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19649_BALBc-1_X01_Y02_1220_756\", \"ini\": 1786, \"clust\": 1875, \"rank\": 1479, \"rankvar\": 897, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1040, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1647, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2308, \"group\": [1875.0, 1065.0, 323.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19712_BALBc-1_X01_Y02_1221_558\", \"ini\": 1785, \"clust\": 399, \"rank\": 246, \"rankvar\": 2478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1041, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1152, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1237, \"group\": [398.0, 279.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19804_BALBc-1_X01_Y02_1222_695\", \"ini\": 1784, \"clust\": 315, \"rank\": 1546, \"rankvar\": 2378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1042, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1153, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2371, \"group\": [315.0, 219.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19893_BALBc-1_X01_Y02_1223_804\", \"ini\": 1783, \"clust\": 379, \"rank\": 269, \"rankvar\": 1952, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1043, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1154, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2233, \"group\": [378.0, 263.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19976_BALBc-1_X01_Y02_1224_87\", \"ini\": 1782, \"clust\": 297, \"rank\": 828, \"rankvar\": 1685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1044, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1155, \"cat-2\": \"Density: 24\", \"cat_2_index\": 504, \"group\": [303.0, 213.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20108_BALBc-1_X01_Y02_1226_52\", \"ini\": 1781, \"clust\": 2472, \"rank\": 1244, \"rankvar\": 891, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1045, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1579, \"cat-2\": \"Density: 24\", \"cat_2_index\": 505, \"group\": [2473.0, 1321.0, 392.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20419_BALBc-1_X01_Y02_123_829\", \"ini\": 1780, \"clust\": 768, \"rank\": 66, \"rankvar\": 546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1046, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1156, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1512, \"group\": [772.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20540_BALBc-1_X01_Y02_1231_399\", \"ini\": 1779, \"clust\": 203, \"rank\": 911, \"rankvar\": 659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1047, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1157, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1656, \"group\": [203.0, 136.0, 46.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20591_BALBc-1_X01_Y02_1231_893\", \"ini\": 1778, \"clust\": 427, \"rank\": 759, \"rankvar\": 778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1048, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1158, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1860, \"group\": [429.0, 304.0, 105.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21204_BALBc-1_X01_Y02_124_109\", \"ini\": 1777, \"clust\": 284, \"rank\": 1801, \"rankvar\": 2466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1049, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1159, \"cat-2\": \"Density: 27\", \"cat_2_index\": 937, \"group\": [284.0, 206.0, 75.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21575_BALBc-1_X01_Y02_1244_166\", \"ini\": 1776, \"clust\": 2591, \"rank\": 1583, \"rankvar\": 2190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1050, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2536, \"cat-2\": \"Density: 22\", \"cat_2_index\": 285, \"group\": [2592.0, 1401.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21957_BALBc-1_X01_Y02_1249_556\", \"ini\": 1775, \"clust\": 1881, \"rank\": 2323, \"rankvar\": 2747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1051, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1160, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1088, \"group\": [1882.0, 1072.0, 326.0, 91.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21977_BALBc-1_X01_Y02_1249_787\", \"ini\": 1774, \"clust\": 670, \"rank\": 378, \"rankvar\": 1206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1052, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1161, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2152, \"group\": [668.0, 442.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22035_BALBc-1_X01_Y02_125_534\", \"ini\": 1773, \"clust\": 1379, \"rank\": 1741, \"rankvar\": 1317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1053, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 99, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1392, \"group\": [1380.0, 733.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22253_BALBc-1_X01_Y02_1252_344\", \"ini\": 1772, \"clust\": 8, \"rank\": 1421, \"rankvar\": 127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1054, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2296, \"cat-2\": \"Density: 23\", \"cat_2_index\": 397, \"group\": [11.0, 10.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22740_BALBc-1_X01_Y02_1259_25\", \"ini\": 1771, \"clust\": 1375, \"rank\": 2135, \"rankvar\": 1703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1055, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1961, \"cat-2\": \"Density: 26\", \"cat_2_index\": 787, \"group\": [1376.0, 731.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22891_BALBc-1_X01_Y02_1260_403\", \"ini\": 1770, \"clust\": 444, \"rank\": 654, \"rankvar\": 1138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1056, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1162, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1513, \"group\": [445.0, 312.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23039_BALBc-1_X01_Y02_1262_452\", \"ini\": 1769, \"clust\": 813, \"rank\": 103, \"rankvar\": 284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1057, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1163, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1238, \"group\": [814.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23057_BALBc-1_X01_Y02_1262_678\", \"ini\": 1768, \"clust\": 173, \"rank\": 379, \"rankvar\": 619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1058, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1164, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2069, \"group\": [173.0, 112.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23972_BALBc-1_X01_Y02_1274_408\", \"ini\": 1767, \"clust\": 902, \"rank\": 57, \"rankvar\": 410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1059, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 100, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1393, \"group\": [900.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23974_BALBc-1_X01_Y02_1274_423\", \"ini\": 1766, \"clust\": 1142, \"rank\": 1151, \"rankvar\": 553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1060, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1165, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1514, \"group\": [1143.0, 544.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24160_BALBc-1_X01_Y02_1277_153\", \"ini\": 1765, \"clust\": 27, \"rank\": 979, \"rankvar\": 769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1061, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2537, \"cat-2\": \"Density: 21\", \"cat_2_index\": 204, \"group\": [30.0, 28.0, 16.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24404_BALBc-1_X01_Y02_128_478\", \"ini\": 1764, \"clust\": 1104, \"rank\": 344, \"rankvar\": 596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1062, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2450, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1089, \"group\": [1108.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24468_BALBc-1_X01_Y02_1280_260\", \"ini\": 1763, \"clust\": 128, \"rank\": 1059, \"rankvar\": 1340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1063, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2297, \"cat-2\": \"Density: 16\", \"cat_2_index\": 58, \"group\": [132.0, 82.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24628_BALBc-1_X01_Y02_1282_802\", \"ini\": 1762, \"clust\": 1776, \"rank\": 2143, \"rankvar\": 2483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1064, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1166, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1861, \"group\": [1776.0, 1008.0, 304.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25243_BALBc-1_X01_Y02_1290_386\", \"ini\": 1761, \"clust\": 420, \"rank\": 1281, \"rankvar\": 492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1065, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1167, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1239, \"group\": [420.0, 296.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25273_BALBc-1_X01_Y02_1290_702\", \"ini\": 1760, \"clust\": 1626, \"rank\": 2765, \"rankvar\": 2751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1066, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2298, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1966, \"group\": [1629.0, 896.0, 259.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25852_BALBc-1_X01_Y02_1298_50\", \"ini\": 1759, \"clust\": 604, \"rank\": 425, \"rankvar\": 560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1067, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1580, \"cat-2\": \"Density: 24\", \"cat_2_index\": 506, \"group\": [604.0, 412.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25924_BALBc-1_X01_Y02_1299_448\", \"ini\": 1758, \"clust\": 839, \"rank\": 61, \"rankvar\": 68, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1068, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1648, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1394, \"group\": [839.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26183_BALBc-1_X01_Y02_1300_80\", \"ini\": 1757, \"clust\": 2738, \"rank\": 1983, \"rankvar\": 2134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1069, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2538, \"cat-2\": \"Density: 23\", \"cat_2_index\": 398, \"group\": [2739.0, 1474.0, 435.0, 114.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26216_BALBc-1_X01_Y02_1301_40\", \"ini\": 1756, \"clust\": 513, \"rank\": 724, \"rankvar\": 390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1070, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1962, \"cat-2\": \"Density: 25\", \"cat_2_index\": 650, \"group\": [517.0, 354.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26286_BALBc-1_X01_Y02_1302_362\", \"ini\": 1755, \"clust\": 1704, \"rank\": 1905, \"rankvar\": 2310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1071, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1168, \"cat-2\": \"Density: 25\", \"cat_2_index\": 651, \"group\": [1701.0, 957.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26422_BALBc-1_X01_Y02_1304_482\", \"ini\": 1754, \"clust\": 1009, \"rank\": 516, \"rankvar\": 431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1072, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1169, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1090, \"group\": [1012.0, 514.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26472_BALBc-1_X01_Y02_1305_154\", \"ini\": 1753, \"clust\": 29, \"rank\": 156, \"rankvar\": 2509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1073, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2539, \"cat-2\": \"Density: 17\", \"cat_2_index\": 76, \"group\": [29.0, 27.0, 16.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26543_BALBc-1_X01_Y02_1306_303\", \"ini\": 1752, \"clust\": 2628, \"rank\": 2353, \"rankvar\": 2214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1074, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1170, \"cat-2\": \"Density: 22\", \"cat_2_index\": 286, \"group\": [2628.0, 1421.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26628_BALBc-1_X01_Y02_1307_628\", \"ini\": 1751, \"clust\": 79, \"rank\": 398, \"rankvar\": 1603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1075, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1171, \"cat-2\": \"Density: 26\", \"cat_2_index\": 788, \"group\": [80.0, 59.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26791_BALBc-1_X01_Y02_1309_847\", \"ini\": 1750, \"clust\": 912, \"rank\": 114, \"rankvar\": 21, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1076, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1172, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1967, \"group\": [913.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26808_BALBc-1_X01_Y02_131_13\", \"ini\": 1749, \"clust\": 1290, \"rank\": 1825, \"rankvar\": 878, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1077, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1173, \"cat-2\": \"Density: 25\", \"cat_2_index\": 652, \"group\": [1293.0, 664.0, 190.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26858_BALBc-1_X01_Y02_131_710\", \"ini\": 1748, \"clust\": 2563, \"rank\": 2062, \"rankvar\": 2443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1078, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1174, \"cat-2\": \"Density: 25\", \"cat_2_index\": 653, \"group\": [2564.0, 1385.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26907_BALBc-1_X01_Y02_1310_424\", \"ini\": 1747, \"clust\": 633, \"rank\": 594, \"rankvar\": 913, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1079, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 831, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1657, \"group\": [634.0, 427.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27339_BALBc-1_X01_Y02_1316_272\", \"ini\": 1746, \"clust\": 2602, \"rank\": 1887, \"rankvar\": 2102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1080, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2540, \"cat-2\": \"Density: 16\", \"cat_2_index\": 59, \"group\": [2603.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27376_BALBc-1_X01_Y02_1316_760\", \"ini\": 1745, \"clust\": 1859, \"rank\": 1437, \"rankvar\": 1256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1081, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1175, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1862, \"group\": [1861.0, 1052.0, 317.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27712_BALBc-1_X01_Y02_1320_379\", \"ini\": 1744, \"clust\": 1132, \"rank\": 1179, \"rankvar\": 214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1082, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1649, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1395, \"group\": [1131.0, 533.0, 145.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27787_BALBc-1_X01_Y02_1321_46\", \"ini\": 1743, \"clust\": 2681, \"rank\": 2499, \"rankvar\": 1065, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1083, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2451, \"cat-2\": \"Density: 25\", \"cat_2_index\": 654, \"group\": [2684.0, 1447.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28104_BALBc-1_X01_Y02_1325_686\", \"ini\": 1742, \"clust\": 1705, \"rank\": 2497, \"rankvar\": 2481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1084, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1176, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1515, \"group\": [1711.0, 963.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28119_BALBc-1_X01_Y02_1325_869\", \"ini\": 1741, \"clust\": 789, \"rank\": 99, \"rankvar\": 1028, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1085, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1177, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1516, \"group\": [790.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28171_BALBc-1_X01_Y02_1326_556\", \"ini\": 1740, \"clust\": 191, \"rank\": 673, \"rankvar\": 883, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1086, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1178, \"cat-2\": \"Density: 21\", \"cat_2_index\": 205, \"group\": [192.0, 128.0, 43.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28403_BALBc-1_X01_Y02_1329_340\", \"ini\": 1739, \"clust\": 2609, \"rank\": 2032, \"rankvar\": 2294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1087, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2541, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1091, \"group\": [2607.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28439_BALBc-1_X01_Y02_1329_667\", \"ini\": 1738, \"clust\": 375, \"rank\": 1063, \"rankvar\": 2340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1088, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1179, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1517, \"group\": [390.0, 272.0, 92.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28793_BALBc-1_X01_Y02_1333_435\", \"ini\": 1737, \"clust\": 1876, \"rank\": 1294, \"rankvar\": 239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1089, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 832, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1863, \"group\": [1876.0, 1066.0, 323.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28907_BALBc-1_X01_Y02_1334_958\", \"ini\": 1736, \"clust\": 581, \"rank\": 567, \"rankvar\": 1231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1090, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1180, \"cat-2\": \"Density: 24\", \"cat_2_index\": 507, \"group\": [587.0, 400.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29029_BALBc-1_X01_Y02_1337_148\", \"ini\": 1735, \"clust\": 2540, \"rank\": 1683, \"rankvar\": 663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1091, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2542, \"cat-2\": \"Density: 17\", \"cat_2_index\": 77, \"group\": [2540.0, 1365.0, 405.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29253_BALBc-1_X01_Y02_1340_880\", \"ini\": 1734, \"clust\": 1789, \"rank\": 1448, \"rankvar\": 2217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1092, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1181, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1864, \"group\": [1788.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29328_BALBc-1_X01_Y02_135_526\", \"ini\": 1733, \"clust\": 192, \"rank\": 1057, \"rankvar\": 606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1093, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 101, \"cat-2\": \"Density: 26\", \"cat_2_index\": 789, \"group\": [193.0, 129.0, 44.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29539_BALBc-1_X01_Y02_138_561\", \"ini\": 1732, \"clust\": 156, \"rank\": 1267, \"rankvar\": 1375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1094, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 102, \"cat-2\": \"Density: 27\", \"cat_2_index\": 938, \"group\": [157.0, 99.0, 32.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29570_BALBc-1_X01_Y02_138_885\", \"ini\": 1731, \"clust\": 2416, \"rank\": 917, \"rankvar\": 817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1095, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2299, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1240, \"group\": [2418.0, 1286.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29751_BALBc-1_X01_Y02_140_575\", \"ini\": 1730, \"clust\": 2656, \"rank\": 2657, \"rankvar\": 2316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1096, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1182, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1092, \"group\": [2659.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29777_BALBc-1_X01_Y02_140_975\", \"ini\": 1729, \"clust\": 1867, \"rank\": 1596, \"rankvar\": 1135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1097, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2300, \"cat-2\": \"Density: 18\", \"cat_2_index\": 95, \"group\": [1870.0, 1060.0, 320.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29799_BALBc-1_X01_Y02_141_323\", \"ini\": 1728, \"clust\": 282, \"rank\": 1441, \"rankvar\": 224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1098, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 697, \"cat-2\": \"Density: 27\", \"cat_2_index\": 939, \"group\": [285.0, 207.0, 75.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29956_BALBc-1_X01_Y02_143_444\", \"ini\": 1727, \"clust\": 2155, \"rank\": 1064, \"rankvar\": 543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1099, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2452, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1518, \"group\": [2170.0, 1176.0, 346.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30085_BALBc-1_X01_Y02_145_273\", \"ini\": 1726, \"clust\": 1326, \"rank\": 1075, \"rankvar\": 1222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1100, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2239, \"cat-2\": \"Density: 25\", \"cat_2_index\": 655, \"group\": [1326.0, 693.0, 207.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30088_BALBc-1_X01_Y02_145_290\", \"ini\": 1725, \"clust\": 668, \"rank\": 213, \"rankvar\": 521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1101, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2453, \"cat-2\": \"Density: 24\", \"cat_2_index\": 508, \"group\": [669.0, 442.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30181_BALBc-1_X01_Y02_146_484\", \"ini\": 1724, \"clust\": 2771, \"rank\": 1881, \"rankvar\": 1529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1102, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1963, \"cat-2\": \"Density: 26\", \"cat_2_index\": 790, \"group\": [2775.0, 1502.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30212_BALBc-1_X01_Y02_146_853\", \"ini\": 1723, \"clust\": 746, \"rank\": 478, \"rankvar\": 1448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1103, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 103, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1658, \"group\": [745.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30226_BALBc-1_X01_Y02_147_121\", \"ini\": 1722, \"clust\": 510, \"rank\": 713, \"rankvar\": 391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1104, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1183, \"cat-2\": \"Density: 22\", \"cat_2_index\": 287, \"group\": [511.0, 350.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30323_BALBc-1_X01_Y02_148_511\", \"ini\": 1721, \"clust\": 2739, \"rank\": 2114, \"rankvar\": 2021, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1105, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 104, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1241, \"group\": [2740.0, 1475.0, 435.0, 114.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30392_BALBc-1_X01_Y02_149_423\", \"ini\": 1720, \"clust\": 18, \"rank\": 1123, \"rankvar\": 1583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1106, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1650, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1396, \"group\": [19.0, 18.0, 11.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30672_BALBc-1_X01_Y02_152_19\", \"ini\": 1719, \"clust\": 1607, \"rank\": 1166, \"rankvar\": 1868, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1107, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1184, \"cat-2\": \"Density: 27\", \"cat_2_index\": 940, \"group\": [1606.0, 887.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31029_BALBc-1_X01_Y02_156_815\", \"ini\": 1718, \"clust\": 1711, \"rank\": 2613, \"rankvar\": 2527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1108, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2301, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1519, \"group\": [1712.0, 964.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31048_BALBc-1_X01_Y02_156_993\", \"ini\": 1717, \"clust\": 1113, \"rank\": 703, \"rankvar\": 1243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1109, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2543, \"cat-2\": \"Density: 13\", \"cat_2_index\": 17, \"group\": [1114.0, 525.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31155_BALBc-1_X01_Y02_158_405\", \"ini\": 1716, \"clust\": 1708, \"rank\": 2808, \"rankvar\": 2822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1110, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 698, \"cat-2\": \"Density: 27\", \"cat_2_index\": 941, \"group\": [1707.0, 961.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31283_BALBc-1_X01_Y02_16_366\", \"ini\": 1715, \"clust\": 1892, \"rank\": 2415, \"rankvar\": 2405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1111, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1185, \"cat-2\": \"Density: 13\", \"cat_2_index\": 18, \"group\": [1892.0, 1082.0, 330.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31361_BALBc-1_X01_Y02_160_197\", \"ini\": 1714, \"clust\": 957, \"rank\": 499, \"rankvar\": 945, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1112, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1186, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1093, \"group\": [959.0, 490.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31477_BALBc-1_X01_Y02_161_787\", \"ini\": 1713, \"clust\": 980, \"rank\": 804, \"rankvar\": 861, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1113, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1187, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1242, \"group\": [980.0, 503.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31533_BALBc-1_X01_Y02_162_623\", \"ini\": 1712, \"clust\": 2486, \"rank\": 2136, \"rankvar\": 1910, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1114, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1188, \"cat-2\": \"Density: 24\", \"cat_2_index\": 509, \"group\": [2487.0, 1334.0, 398.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31548_BALBc-1_X01_Y02_162_836\", \"ini\": 1711, \"clust\": 1210, \"rank\": 1216, \"rankvar\": 1110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1115, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 105, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1520, \"group\": [1212.0, 605.0, 171.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31566_BALBc-1_X01_Y02_163_150\", \"ini\": 1710, \"clust\": 564, \"rank\": 762, \"rankvar\": 932, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1116, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1189, \"cat-2\": \"Density: 27\", \"cat_2_index\": 942, \"group\": [565.0, 388.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31622_BALBc-1_X01_Y02_163_893\", \"ini\": 1709, \"clust\": 1791, \"rank\": 2057, \"rankvar\": 1752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1117, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2302, \"cat-2\": \"Density: 27\", \"cat_2_index\": 943, \"group\": [1794.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31687_BALBc-1_X01_Y02_164_924\", \"ini\": 1708, \"clust\": 349, \"rank\": 1152, \"rankvar\": 1085, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1118, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2303, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1243, \"group\": [350.0, 245.0, 85.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31771_BALBc-1_X01_Y02_166_248\", \"ini\": 1707, \"clust\": 1083, \"rank\": 216, \"rankvar\": 824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1119, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1190, \"cat-2\": \"Density: 26\", \"cat_2_index\": 791, \"group\": [1083.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31778_BALBc-1_X01_Y02_166_382\", \"ini\": 1706, \"clust\": 815, \"rank\": 46, \"rankvar\": 358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1120, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 699, \"cat-2\": \"Density: 24\", \"cat_2_index\": 510, \"group\": [813.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31826_BALBc-1_X01_Y02_166_996\", \"ini\": 1705, \"clust\": 2273, \"rank\": 1921, \"rankvar\": 325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1121, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 106, \"cat-2\": \"Density: 14\", \"cat_2_index\": 30, \"group\": [2275.0, 1240.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31882_BALBc-1_X01_Y02_167_871\", \"ini\": 1704, \"clust\": 1071, \"rank\": 421, \"rankvar\": 757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1122, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 107, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1521, \"group\": [1070.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32028_BALBc-1_X01_Y02_169_976\", \"ini\": 1703, \"clust\": 388, \"rank\": 1116, \"rankvar\": 428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1123, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2304, \"cat-2\": \"Density: 21\", \"cat_2_index\": 206, \"group\": [388.0, 270.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32605_BALBc-1_X01_Y02_177_12\", \"ini\": 1702, \"clust\": 1521, \"rank\": 2768, \"rankvar\": 2779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1124, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1191, \"cat-2\": \"Density: 26\", \"cat_2_index\": 792, \"group\": [1519.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32781_BALBc-1_X01_Y02_179_504\", \"ini\": 1701, \"clust\": 2773, \"rank\": 2468, \"rankvar\": 2743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1125, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1964, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1397, \"group\": [2772.0, 1502.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32994_BALBc-1_X01_Y02_181_536\", \"ini\": 1700, \"clust\": 2654, \"rank\": 2411, \"rankvar\": 1966, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1126, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 108, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1659, \"group\": [2655.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33083_BALBc-1_X01_Y02_182_591\", \"ini\": 1699, \"clust\": 2623, \"rank\": 2141, \"rankvar\": 2628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1127, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2240, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1244, \"group\": [2623.0, 1417.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33098_BALBc-1_X01_Y02_182_806\", \"ini\": 1698, \"clust\": 1212, \"rank\": 514, \"rankvar\": 1576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1128, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1192, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1865, \"group\": [1211.0, 604.0, 171.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33178_BALBc-1_X01_Y02_183_939\", \"ini\": 1697, \"clust\": 1792, \"rank\": 2289, \"rankvar\": 2744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1129, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 109, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1094, \"group\": [1793.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33258_BALBc-1_X01_Y02_184_896\", \"ini\": 1696, \"clust\": 2392, \"rank\": 2098, \"rankvar\": 1108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1130, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 110, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1866, \"group\": [2391.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33265_BALBc-1_X01_Y02_184_97\", \"ini\": 1695, \"clust\": 1689, \"rank\": 1846, \"rankvar\": 1059, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1131, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1651, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1245, \"group\": [1689.0, 946.0, 282.0, 81.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33280_BALBc-1_X01_Y02_185_324\", \"ini\": 1694, \"clust\": 1253, \"rank\": 1198, \"rankvar\": 2046, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1132, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1193, \"cat-2\": \"Density: 26\", \"cat_2_index\": 793, \"group\": [1252.0, 633.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33754_BALBc-1_X01_Y02_190_870\", \"ini\": 1693, \"clust\": 1972, \"rank\": 2428, \"rankvar\": 1486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1133, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 111, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2070, \"group\": [1976.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33990_BALBc-1_X01_Y02_193_959\", \"ini\": 1692, \"clust\": 2422, \"rank\": 983, \"rankvar\": 292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1134, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 112, \"cat-2\": \"Density: 27\", \"cat_2_index\": 944, \"group\": [2423.0, 1290.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34020_BALBc-1_X01_Y02_194_351\", \"ini\": 1691, \"clust\": 1393, \"rank\": 1449, \"rankvar\": 1053, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1135, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 700, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1095, \"group\": [1395.0, 746.0, 218.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34038_BALBc-1_X01_Y02_194_572\", \"ini\": 1690, \"clust\": 2723, \"rank\": 2011, \"rankvar\": 1623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1136, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2544, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1522, \"group\": [2723.0, 1462.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34165_BALBc-1_X01_Y02_196_520\", \"ini\": 1689, \"clust\": 2500, \"rank\": 2308, \"rankvar\": 1885, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1137, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 895, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1867, \"group\": [2499.0, 1344.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34589_BALBc-1_X01_Y02_201_481\", \"ini\": 1688, \"clust\": 1340, \"rank\": 1046, \"rankvar\": 1478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1138, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1965, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1246, \"group\": [1341.0, 705.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34649_BALBc-1_X01_Y02_202_257\", \"ini\": 1687, \"clust\": 1274, \"rank\": 1181, \"rankvar\": 2453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1139, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1966, \"cat-2\": \"Density: 27\", \"cat_2_index\": 945, \"group\": [1274.0, 652.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34718_BALBc-1_X01_Y02_203_164\", \"ini\": 1686, \"clust\": 318, \"rank\": 2379, \"rankvar\": 2518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1140, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1194, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1096, \"group\": [321.0, 224.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34915_BALBc-1_X01_Y02_205_7\", \"ini\": 1685, \"clust\": 1234, \"rank\": 1188, \"rankvar\": 2281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1141, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1195, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1097, \"group\": [1233.0, 621.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35085_BALBc-1_X01_Y02_207_892\", \"ini\": 1684, \"clust\": 888, \"rank\": 91, \"rankvar\": 232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1142, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 113, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1765, \"group\": [892.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35133_BALBc-1_X01_Y02_208_606\", \"ini\": 1683, \"clust\": 1120, \"rank\": 544, \"rankvar\": 673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1143, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2241, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1098, \"group\": [1121.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35140_BALBc-1_X01_Y02_208_76\", \"ini\": 1682, \"clust\": 539, \"rank\": 278, \"rankvar\": 775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1144, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1652, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1247, \"group\": [540.0, 368.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35161_BALBc-1_X01_Y02_208_997\", \"ini\": 1681, \"clust\": 1912, \"rank\": 2034, \"rankvar\": 790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1145, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 114, \"cat-2\": \"Density: 20\", \"cat_2_index\": 155, \"group\": [1915.0, 1099.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35307_BALBc-1_X01_Y02_21_950\", \"ini\": 1680, \"clust\": 784, \"rank\": 223, \"rankvar\": 1596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1146, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1196, \"cat-2\": \"Density: 11\", \"cat_2_index\": 6, \"group\": [787.0, 476.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35371_BALBc-1_X01_Y02_210_919\", \"ini\": 1679, \"clust\": 1783, \"rank\": 1990, \"rankvar\": 1622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1147, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 115, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1968, \"group\": [1783.0, 1012.0, 307.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35707_BALBc-1_X01_Y02_215_359\", \"ini\": 1678, \"clust\": 360, \"rank\": 569, \"rankvar\": 1969, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1148, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 701, \"cat-2\": \"Density: 25\", \"cat_2_index\": 656, \"group\": [361.0, 251.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35849_BALBc-1_X01_Y02_217_422\", \"ini\": 1677, \"clust\": 772, \"rank\": 110, \"rankvar\": 514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1149, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 702, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1099, \"group\": [776.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35964_BALBc-1_X01_Y02_218_953\", \"ini\": 1676, \"clust\": 920, \"rank\": 224, \"rankvar\": 264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1150, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 116, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1868, \"group\": [926.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36019_BALBc-1_X01_Y02_219_856\", \"ini\": 1675, \"clust\": 552, \"rank\": 263, \"rankvar\": 909, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1151, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2305, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2437, \"group\": [550.0, 376.0, 124.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36350_BALBc-1_X01_Y02_223_52\", \"ini\": 1674, \"clust\": 530, \"rank\": 1069, \"rankvar\": 1124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1152, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1197, \"cat-2\": \"Density: 26\", \"cat_2_index\": 794, \"group\": [531.0, 363.0, 122.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36560_BALBc-1_X01_Y02_226_384\", \"ini\": 1673, \"clust\": 246, \"rank\": 1440, \"rankvar\": 2636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1153, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 703, \"cat-2\": \"Density: 26\", \"cat_2_index\": 795, \"group\": [247.0, 171.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36605_BALBc-1_X01_Y02_226_872\", \"ini\": 1672, \"clust\": 2385, \"rank\": 2477, \"rankvar\": 1174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1154, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2306, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2234, \"group\": [2387.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37140_BALBc-1_X01_Y02_233_273\", \"ini\": 1671, \"clust\": 1601, \"rank\": 974, \"rankvar\": 2311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1155, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1198, \"cat-2\": \"Density: 26\", \"cat_2_index\": 796, \"group\": [1601.0, 883.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37170_BALBc-1_X01_Y02_233_605\", \"ini\": 1670, \"clust\": 1900, \"rank\": 2608, \"rankvar\": 2549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1156, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1199, \"cat-2\": \"Density: 27\", \"cat_2_index\": 946, \"group\": [1899.0, 1087.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37201_BALBc-1_X01_Y02_234_185\", \"ini\": 1669, \"clust\": 94, \"rank\": 694, \"rankvar\": 2419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1157, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1200, \"cat-2\": \"Density: 24\", \"cat_2_index\": 511, \"group\": [95.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37456_BALBc-1_X01_Y02_237_70\", \"ini\": 1668, \"clust\": 1684, \"rank\": 2029, \"rankvar\": 2622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1158, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 117, \"cat-2\": \"Density: 25\", \"cat_2_index\": 657, \"group\": [1685.0, 942.0, 279.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37475_BALBc-1_X01_Y02_237_937\", \"ini\": 1667, \"clust\": 2440, \"rank\": 1174, \"rankvar\": 439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1159, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 118, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2153, \"group\": [2441.0, 1298.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37621_BALBc-1_X01_Y02_239_971\", \"ini\": 1666, \"clust\": 1143, \"rank\": 1252, \"rankvar\": 1121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1160, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 119, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1523, \"group\": [1144.0, 544.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37749_BALBc-1_X01_Y02_240_84\", \"ini\": 1665, \"clust\": 1377, \"rank\": 1643, \"rankvar\": 2092, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1161, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1653, \"cat-2\": \"Density: 23\", \"cat_2_index\": 399, \"group\": [1378.0, 732.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37862_BALBc-1_X01_Y02_242_444\", \"ini\": 1664, \"clust\": 2554, \"rank\": 2429, \"rankvar\": 2258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1162, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1654, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1660, \"group\": [2554.0, 1377.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37892_BALBc-1_X01_Y02_242_898\", \"ini\": 1663, \"clust\": 2157, \"rank\": 1855, \"rankvar\": 1009, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1163, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 120, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1969, \"group\": [2155.0, 1170.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37950_BALBc-1_X01_Y02_243_786\", \"ini\": 1662, \"clust\": 1915, \"rank\": 2175, \"rankvar\": 1773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1164, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 833, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2071, \"group\": [1916.0, 1100.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38019_BALBc-1_X01_Y02_244_504\", \"ini\": 1661, \"clust\": 1737, \"rank\": 2548, \"rankvar\": 2323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1165, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 896, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1398, \"group\": [1737.0, 980.0, 293.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38163_BALBc-1_X01_Y02_246_349\", \"ini\": 1660, \"clust\": 242, \"rank\": 1382, \"rankvar\": 2212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1166, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1201, \"cat-2\": \"Density: 23\", \"cat_2_index\": 400, \"group\": [245.0, 170.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38833_BALBc-1_X01_Y02_254_406\", \"ini\": 1659, \"clust\": 2649, \"rank\": 2426, \"rankvar\": 1785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1167, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 121, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1766, \"group\": [2654.0, 1441.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38864_BALBc-1_X01_Y02_254_818\", \"ini\": 1658, \"clust\": 2398, \"rank\": 2612, \"rankvar\": 1460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1168, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1202, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1970, \"group\": [2401.0, 1271.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38921_BALBc-1_X01_Y02_255_579\", \"ini\": 1657, \"clust\": 750, \"rank\": 128, \"rankvar\": 497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1169, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2545, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1399, \"group\": [751.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39097_BALBc-1_X01_Y02_257_981\", \"ini\": 1656, \"clust\": 2158, \"rank\": 1746, \"rankvar\": 789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1170, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 122, \"cat-2\": \"Density: 27\", \"cat_2_index\": 947, \"group\": [2156.0, 1170.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39159_BALBc-1_X01_Y02_258_932\", \"ini\": 1655, \"clust\": 2035, \"rank\": 2598, \"rankvar\": 1418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1171, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 123, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2309, \"group\": [2037.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39206_BALBc-1_X01_Y02_259_497\", \"ini\": 1654, \"clust\": 1870, \"rank\": 1660, \"rankvar\": 2300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1172, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 897, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1971, \"group\": [1871.0, 1061.0, 321.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39295_BALBc-1_X01_Y02_26_739\", \"ini\": 1653, \"clust\": 1627, \"rank\": 2735, \"rankvar\": 2786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1173, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1747, \"cat-2\": \"Density: 17\", \"cat_2_index\": 78, \"group\": [1627.0, 894.0, 259.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39359_BALBc-1_X01_Y02_260_604\", \"ini\": 1652, \"clust\": 1989, \"rank\": 2120, \"rankvar\": 1848, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1174, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1203, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1400, \"group\": [1990.0, 1125.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39370_BALBc-1_X01_Y02_260_753\", \"ini\": 1651, \"clust\": 1701, \"rank\": 2569, \"rankvar\": 2595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1175, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 834, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1972, \"group\": [1703.0, 958.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39467_BALBc-1_X01_Y02_261_915\", \"ini\": 1650, \"clust\": 731, \"rank\": 282, \"rankvar\": 108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1176, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 124, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2310, \"group\": [730.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39512_BALBc-1_X01_Y02_262_462\", \"ini\": 1649, \"clust\": 2782, \"rank\": 2061, \"rankvar\": 1837, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1177, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1967, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1869, \"group\": [2782.0, 1506.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39541_BALBc-1_X01_Y02_262_944\", \"ini\": 1648, \"clust\": 2417, \"rank\": 1148, \"rankvar\": 914, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1178, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 125, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2154, \"group\": [2416.0, 1285.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39556_BALBc-1_X01_Y02_263_219\", \"ini\": 1647, \"clust\": 1805, \"rank\": 1563, \"rankvar\": 2723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1179, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1204, \"cat-2\": \"Density: 24\", \"cat_2_index\": 512, \"group\": [1808.0, 1022.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39656_BALBc-1_X01_Y02_264_54\", \"ini\": 1646, \"clust\": 1635, \"rank\": 2611, \"rankvar\": 2710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1180, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2307, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1248, \"group\": [1634.0, 900.0, 261.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39742_BALBc-1_X01_Y02_265_717\", \"ini\": 1645, \"clust\": 2021, \"rank\": 2539, \"rankvar\": 2118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1181, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 835, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1524, \"group\": [2026.0, 1141.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39744_BALBc-1_X01_Y02_265_773\", \"ini\": 1644, \"clust\": 493, \"rank\": 789, \"rankvar\": 616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1182, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 836, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2072, \"group\": [493.0, 337.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39786_BALBc-1_X01_Y02_266_282\", \"ini\": 1643, \"clust\": 1181, \"rank\": 1195, \"rankvar\": 755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1205, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1100, \"group\": [1182.0, 575.0, 160.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39838_BALBc-1_X01_Y02_266_848\", \"ini\": 1642, \"clust\": 137, \"rank\": 657, \"rankvar\": 747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1184, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2308, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2311, \"group\": [136.0, 84.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39873_BALBc-1_X01_Y02_267_383\", \"ini\": 1641, \"clust\": 937, \"rank\": 245, \"rankvar\": 246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1185, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 898, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1101, \"group\": [940.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39968_BALBc-1_X01_Y02_268_561\", \"ini\": 1640, \"clust\": 2703, \"rank\": 2535, \"rankvar\": 2464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1186, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2546, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1870, \"group\": [2704.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40006_BALBc-1_X01_Y02_268_984\", \"ini\": 1639, \"clust\": 2318, \"rank\": 1982, \"rankvar\": 1641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1187, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 126, \"cat-2\": \"Density: 27\", \"cat_2_index\": 948, \"group\": [2314.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40052_BALBc-1_X01_Y02_269_644\", \"ini\": 1638, \"clust\": 2638, \"rank\": 2518, \"rankvar\": 2031, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1188, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1206, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1525, \"group\": [2640.0, 1432.0, 422.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40139_BALBc-1_X01_Y02_27_826\", \"ini\": 1637, \"clust\": 598, \"rank\": 401, \"rankvar\": 1305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1189, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1748, \"cat-2\": \"Density: 20\", \"cat_2_index\": 156, \"group\": [599.0, 410.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40204_BALBc-1_X01_Y02_270_792\", \"ini\": 1636, \"clust\": 2049, \"rank\": 2746, \"rankvar\": 1938, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1190, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 899, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2073, \"group\": [2053.0, 1149.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40333_BALBc-1_X01_Y02_272_580\", \"ini\": 1635, \"clust\": 2276, \"rank\": 1793, \"rankvar\": 1427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1191, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 127, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1249, \"group\": [2276.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40421_BALBc-1_X01_Y02_273_871\", \"ini\": 1634, \"clust\": 424, \"rank\": 824, \"rankvar\": 611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1192, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 128, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2438, \"group\": [425.0, 301.0, 104.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40533_BALBc-1_X01_Y02_275_478\", \"ini\": 1633, \"clust\": 2619, \"rank\": 2146, \"rankvar\": 1939, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1193, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 129, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1661, \"group\": [2622.0, 1416.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40559_BALBc-1_X01_Y02_275_815\", \"ini\": 1632, \"clust\": 1051, \"rank\": 239, \"rankvar\": 1169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1194, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 130, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2074, \"group\": [1049.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40761_BALBc-1_X01_Y02_278_453\", \"ini\": 1631, \"clust\": 2718, \"rank\": 2365, \"rankvar\": 2505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1195, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 131, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1526, \"group\": [2720.0, 1460.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41007_BALBc-1_X01_Y02_280_883\", \"ini\": 1630, \"clust\": 2033, \"rank\": 2544, \"rankvar\": 1593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1196, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 132, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2439, \"group\": [2031.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41013_BALBc-1_X01_Y02_280_967\", \"ini\": 1629, \"clust\": 886, \"rank\": 11, \"rankvar\": 208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1197, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 133, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1527, \"group\": [886.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41049_BALBc-1_X01_Y02_281_533\", \"ini\": 1628, \"clust\": 2587, \"rank\": 1280, \"rankvar\": 1765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1198, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 900, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1973, \"group\": [2588.0, 1400.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41198_BALBc-1_X01_Y02_283_337\", \"ini\": 1627, \"clust\": 112, \"rank\": 929, \"rankvar\": 406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1199, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1207, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1102, \"group\": [114.0, 70.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41290_BALBc-1_X01_Y02_284_545\", \"ini\": 1626, \"clust\": 2391, \"rank\": 2200, \"rankvar\": 960, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1200, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 134, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1974, \"group\": [2393.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41467_BALBc-1_X01_Y02_286_916\", \"ini\": 1625, \"clust\": 2310, \"rank\": 2125, \"rankvar\": 1489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1201, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 135, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2372, \"group\": [2309.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41763_BALBc-1_X01_Y02_29_936\", \"ini\": 1624, \"clust\": 1435, \"rank\": 2721, \"rankvar\": 2387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1202, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1749, \"cat-2\": \"Density: 12\", \"cat_2_index\": 7, \"group\": [1435.0, 781.0, 234.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41809_BALBc-1_X01_Y02_290_713\", \"ini\": 1623, \"clust\": 2442, \"rank\": 1295, \"rankvar\": 1346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1203, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 837, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1975, \"group\": [2442.0, 1299.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41901_BALBc-1_X01_Y02_291_852\", \"ini\": 1622, \"clust\": 2342, \"rank\": 2133, \"rankvar\": 1044, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1204, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 136, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2155, \"group\": [2339.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41931_BALBc-1_X01_Y02_292_367\", \"ini\": 1621, \"clust\": 1679, \"rank\": 1831, \"rankvar\": 1113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1205, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 901, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1401, \"group\": [1679.0, 936.0, 276.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41979_BALBc-1_X01_Y02_292_991\", \"ini\": 1620, \"clust\": 2302, \"rank\": 1785, \"rankvar\": 1109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1206, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 137, \"cat-2\": \"Density: 25\", \"cat_2_index\": 658, \"group\": [2299.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42051_BALBc-1_X01_Y02_293_825\", \"ini\": 1619, \"clust\": 2319, \"rank\": 2129, \"rankvar\": 1642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1207, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 138, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2312, \"group\": [2315.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42197_BALBc-1_X01_Y02_296_1001\", \"ini\": 1618, \"clust\": 437, \"rank\": 465, \"rankvar\": 615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1208, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 139, \"cat-2\": \"Density: 24\", \"cat_2_index\": 513, \"group\": [438.0, 309.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42211_BALBc-1_X01_Y02_296_251\", \"ini\": 1617, \"clust\": 1311, \"rank\": 798, \"rankvar\": 2728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1209, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1208, \"cat-2\": \"Density: 26\", \"cat_2_index\": 797, \"group\": [1309.0, 679.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42305_BALBc-1_X01_Y02_297_639\", \"ini\": 1616, \"clust\": 1733, \"rank\": 1799, \"rankvar\": 2293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1210, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1209, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2075, \"group\": [1734.0, 977.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42319_BALBc-1_X01_Y02_297_804\", \"ini\": 1615, \"clust\": 174, \"rank\": 424, \"rankvar\": 1409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1211, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 902, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2373, \"group\": [174.0, 112.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42398_BALBc-1_X01_Y02_298_87\", \"ini\": 1614, \"clust\": 2542, \"rank\": 1601, \"rankvar\": 1730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1212, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1210, \"cat-2\": \"Density: 24\", \"cat_2_index\": 514, \"group\": [2543.0, 1368.0, 407.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42612_BALBc-1_X01_Y02_300_601\", \"ini\": 1613, \"clust\": 2259, \"rank\": 1581, \"rankvar\": 707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1213, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 140, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2076, \"group\": [2258.0, 1234.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42732_BALBc-1_X01_Y02_301_949\", \"ini\": 1612, \"clust\": 2329, \"rank\": 2004, \"rankvar\": 1037, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1214, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 141, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1976, \"group\": [2326.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43120_BALBc-1_X01_Y02_307_419\", \"ini\": 1611, \"clust\": 2581, \"rank\": 1426, \"rankvar\": 2040, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1215, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 903, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1662, \"group\": [2583.0, 1396.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43132_BALBc-1_X01_Y02_307_574\", \"ini\": 1610, \"clust\": 2796, \"rank\": 1324, \"rankvar\": 1284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1216, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 142, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1767, \"group\": [2796.0, 1517.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43153_BALBc-1_X01_Y02_307_973\", \"ini\": 1609, \"clust\": 447, \"rank\": 352, \"rankvar\": 1080, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1217, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1211, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1528, \"group\": [449.0, 313.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43190_BALBc-1_X01_Y02_308_551\", \"ini\": 1608, \"clust\": 126, \"rank\": 1085, \"rankvar\": 2167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1218, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 143, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1977, \"group\": [126.0, 80.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43335_BALBc-1_X01_Y02_31_697\", \"ini\": 1607, \"clust\": 1172, \"rank\": 1232, \"rankvar\": 2534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1219, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2547, \"cat-2\": \"Density: 14\", \"cat_2_index\": 31, \"group\": [1176.0, 569.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43610_BALBc-1_X01_Y02_313_207\", \"ini\": 1606, \"clust\": 1385, \"rank\": 1893, \"rankvar\": 1926, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1220, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1212, \"cat-2\": \"Density: 26\", \"cat_2_index\": 798, \"group\": [1388.0, 739.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43667_BALBc-1_X01_Y02_313_928\", \"ini\": 1605, \"clust\": 1864, \"rank\": 1958, \"rankvar\": 2609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1221, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 144, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2440, \"group\": [1867.0, 1058.0, 319.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43786_BALBc-1_X01_Y02_315_720\", \"ini\": 1604, \"clust\": 862, \"rank\": 148, \"rankvar\": 472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1222, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1213, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2374, \"group\": [863.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43787_BALBc-1_X01_Y02_315_732\", \"ini\": 1603, \"clust\": 2315, \"rank\": 2367, \"rankvar\": 1790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1223, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1994, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2441, \"group\": [2318.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43806_BALBc-1_X01_Y02_315_911\", \"ini\": 1602, \"clust\": 1954, \"rank\": 2346, \"rankvar\": 692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1224, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 145, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2657, \"group\": [1953.0, 1115.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43842_BALBc-1_X01_Y02_316_523\", \"ini\": 1601, \"clust\": 2698, \"rank\": 2704, \"rankvar\": 2253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1225, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 146, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2156, \"group\": [2702.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43849_BALBc-1_X01_Y02_316_620\", \"ini\": 1600, \"clust\": 2707, \"rank\": 2456, \"rankvar\": 2204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1226, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 147, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2157, \"group\": [2707.0, 1454.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43973_BALBc-1_X01_Y02_317_998\", \"ini\": 1599, \"clust\": 2373, \"rank\": 2545, \"rankvar\": 1657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1227, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 148, \"cat-2\": \"Density: 24\", \"cat_2_index\": 515, \"group\": [2371.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44048_BALBc-1_X01_Y02_318_852\", \"ini\": 1598, \"clust\": 147, \"rank\": 1228, \"rankvar\": 999, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1228, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 149, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2550, \"group\": [148.0, 92.0, 30.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44158_BALBc-1_X01_Y02_32_575\", \"ini\": 1597, \"clust\": 1361, \"rank\": 2455, \"rankvar\": 2200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1229, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 838, \"cat-2\": \"Density: 17\", \"cat_2_index\": 79, \"group\": [1361.0, 722.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44319_BALBc-1_X01_Y02_321_675\", \"ini\": 1596, \"clust\": 2171, \"rank\": 1647, \"rankvar\": 1268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1230, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1214, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1978, \"group\": [2173.0, 1179.0, 347.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44330_BALBc-1_X01_Y02_321_819\", \"ini\": 1595, \"clust\": 1920, \"rank\": 2467, \"rankvar\": 1946, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1231, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 904, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2442, \"group\": [1920.0, 1104.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44535_BALBc-1_X01_Y02_324_399\", \"ini\": 1594, \"clust\": 1150, \"rank\": 684, \"rankvar\": 563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1232, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 905, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1402, \"group\": [1149.0, 549.0, 151.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44544_BALBc-1_X01_Y02_324_471\", \"ini\": 1593, \"clust\": 2700, \"rank\": 2715, \"rankvar\": 2642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1233, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 150, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2158, \"group\": [2700.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44837_BALBc-1_X01_Y02_328_284\", \"ini\": 1592, \"clust\": 1263, \"rank\": 1285, \"rankvar\": 1182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1234, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 906, \"cat-2\": \"Density: 26\", \"cat_2_index\": 799, \"group\": [1263.0, 642.0, 185.0, 52.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44938_BALBc-1_X01_Y02_329_485\", \"ini\": 1591, \"clust\": 982, \"rank\": 397, \"rankvar\": 643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1235, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 151, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2235, \"group\": [981.0, 504.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44940_BALBc-1_X01_Y02_329_520\", \"ini\": 1590, \"clust\": 2514, \"rank\": 1291, \"rankvar\": 1866, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1236, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 152, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2236, \"group\": [2517.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45002_BALBc-1_X01_Y02_33_176\", \"ini\": 1589, \"clust\": 956, \"rank\": 653, \"rankvar\": 1435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1237, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1968, \"cat-2\": \"Density: 19\", \"cat_2_index\": 120, \"group\": [960.0, 491.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45143_BALBc-1_X01_Y02_331_141\", \"ini\": 1588, \"clust\": 1643, \"rank\": 2035, \"rankvar\": 2734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1238, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2454, \"cat-2\": \"Density: 24\", \"cat_2_index\": 516, \"group\": [1646.0, 906.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45181_BALBc-1_X01_Y02_331_563\", \"ini\": 1587, \"clust\": 1946, \"rank\": 2066, \"rankvar\": 1472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1239, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 153, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2077, \"group\": [1947.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45205_BALBc-1_X01_Y02_331_950\", \"ini\": 1586, \"clust\": 432, \"rank\": 1091, \"rankvar\": 1690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1240, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1215, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2237, \"group\": [433.0, 307.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45467_BALBc-1_X01_Y02_335_449\", \"ini\": 1585, \"clust\": 2521, \"rank\": 1180, \"rankvar\": 1574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1241, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 154, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1768, \"group\": [2521.0, 1353.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45505_BALBc-1_X01_Y02_335_812\", \"ini\": 1584, \"clust\": 2153, \"rank\": 1112, \"rankvar\": 412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1242, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 907, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2604, \"group\": [2151.0, 1167.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45513_BALBc-1_X01_Y02_335_880\", \"ini\": 1583, \"clust\": 720, \"rank\": 517, \"rankvar\": 49, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1243, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 155, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2703, \"group\": [720.0, 461.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45549_BALBc-1_X01_Y02_336_399\", \"ini\": 1582, \"clust\": 193, \"rank\": 792, \"rankvar\": 104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1244, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 156, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1403, \"group\": [194.0, 130.0, 44.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45699_BALBc-1_X01_Y02_338_596\", \"ini\": 1581, \"clust\": 145, \"rank\": 1457, \"rankvar\": 1577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1245, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 157, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2375, \"group\": [146.0, 91.0, 30.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45736_BALBc-1_X01_Y02_338_994\", \"ini\": 1580, \"clust\": 2210, \"rank\": 1542, \"rankvar\": 551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1246, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1216, \"cat-2\": \"Density: 26\", \"cat_2_index\": 800, \"group\": [2210.0, 1191.0, 350.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45772_BALBc-1_X01_Y02_339_514\", \"ini\": 1579, \"clust\": 5, \"rank\": 1499, \"rankvar\": 1315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1247, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 158, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2313, \"group\": [8.0, 7.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45887_BALBc-1_X01_Y02_340_11\", \"ini\": 1578, \"clust\": 693, \"rank\": 363, \"rankvar\": 525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1248, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2309, \"cat-2\": \"Density: 27\", \"cat_2_index\": 949, \"group\": [695.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46022_BALBc-1_X01_Y02_341_760\", \"ini\": 1577, \"clust\": 1683, \"rank\": 1933, \"rankvar\": 1295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1249, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 908, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2740, \"group\": [1686.0, 943.0, 279.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46029_BALBc-1_X01_Y02_341_855\", \"ini\": 1576, \"clust\": 2058, \"rank\": 2667, \"rankvar\": 1742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1250, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 159, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2512, \"group\": [2058.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46196_BALBc-1_X01_Y02_344_268\", \"ini\": 1575, \"clust\": 1309, \"rank\": 1004, \"rankvar\": 1915, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1251, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1217, \"cat-2\": \"Density: 25\", \"cat_2_index\": 659, \"group\": [1312.0, 680.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46287_BALBc-1_X01_Y02_345_339\", \"ini\": 1574, \"clust\": 98, \"rank\": 723, \"rankvar\": 1171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1252, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 909, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1250, \"group\": [103.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46316_BALBc-1_X01_Y02_345_683\", \"ini\": 1573, \"clust\": 2004, \"rank\": 2015, \"rankvar\": 1350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1253, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1218, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2238, \"group\": [2003.0, 1135.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46325_BALBc-1_X01_Y02_345_783\", \"ini\": 1572, \"clust\": 2529, \"rank\": 1477, \"rankvar\": 674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1254, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 910, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2551, \"group\": [2534.0, 1360.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46464_BALBc-1_X01_Y02_347_433\", \"ini\": 1571, \"clust\": 1846, \"rank\": 1797, \"rankvar\": 1371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1255, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 160, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2078, \"group\": [1847.0, 1040.0, 313.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46599_BALBc-1_X01_Y02_349_408\", \"ini\": 1570, \"clust\": 538, \"rank\": 587, \"rankvar\": 1036, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1256, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2548, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1529, \"group\": [541.0, 369.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46604_BALBc-1_X01_Y02_349_467\", \"ini\": 1569, \"clust\": 2065, \"rank\": 2790, \"rankvar\": 2274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1257, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 161, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2159, \"group\": [2066.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46653_BALBc-1_X01_Y02_349_905\", \"ini\": 1568, \"clust\": 1997, \"rank\": 2322, \"rankvar\": 1960, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1258, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1563, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2741, \"group\": [2000.0, 1132.0, 339.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46659_BALBc-1_X01_Y02_349_959\", \"ini\": 1567, \"clust\": 2243, \"rank\": 1701, \"rankvar\": 1086, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1259, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1219, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1979, \"group\": [2247.0, 1224.0, 368.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46698_BALBc-1_X01_Y02_35_602\", \"ini\": 1566, \"clust\": 2511, \"rank\": 1420, \"rankvar\": 1716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1260, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 162, \"cat-2\": \"Density: 18\", \"cat_2_index\": 96, \"group\": [2511.0, 1350.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46751_BALBc-1_X01_Y02_350_379\", \"ini\": 1565, \"clust\": 2679, \"rank\": 2486, \"rankvar\": 1958, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1261, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 911, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1251, \"group\": [2678.0, 1445.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46910_BALBc-1_X01_Y02_352_503\", \"ini\": 1564, \"clust\": 541, \"rank\": 89, \"rankvar\": 921, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1262, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 163, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2443, \"group\": [539.0, 368.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46947_BALBc-1_X01_Y02_352_937\", \"ini\": 1563, \"clust\": 417, \"rank\": 1258, \"rankvar\": 426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1263, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 164, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2376, \"group\": [417.0, 294.0, 102.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47001_BALBc-1_X01_Y02_353_565\", \"ini\": 1562, \"clust\": 2034, \"rank\": 2266, \"rankvar\": 1291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1264, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 165, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2444, \"group\": [2032.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47004_BALBc-1_X01_Y02_353_639\", \"ini\": 1561, \"clust\": 2054, \"rank\": 2752, \"rankvar\": 2426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1265, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 166, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2377, \"group\": [2060.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47226_BALBc-1_X01_Y02_356_521\", \"ini\": 1560, \"clust\": 2133, \"rank\": 2702, \"rankvar\": 2699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1266, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 167, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2239, \"group\": [2133.0, 1153.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47251_BALBc-1_X01_Y02_356_828\", \"ini\": 1559, \"clust\": 521, \"rank\": 817, \"rankvar\": 1261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1267, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 168, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2445, \"group\": [520.0, 357.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47374_BALBc-1_X01_Y02_358_677\", \"ini\": 1558, \"clust\": 803, \"rank\": 93, \"rankvar\": 653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1268, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 169, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2314, \"group\": [804.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47389_BALBc-1_X01_Y02_358_844\", \"ini\": 1557, \"clust\": 469, \"rank\": 926, \"rankvar\": 271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1269, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 170, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2605, \"group\": [467.0, 327.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47513_BALBc-1_X01_Y02_36_798\", \"ini\": 1556, \"clust\": 1628, \"rank\": 2646, \"rankvar\": 2588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1270, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1750, \"cat-2\": \"Density: 19\", \"cat_2_index\": 121, \"group\": [1628.0, 895.0, 259.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47658_BALBc-1_X01_Y02_361_808\", \"ini\": 1555, \"clust\": 486, \"rank\": 795, \"rankvar\": 930, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1271, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1995, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2552, \"group\": [486.0, 333.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47694_BALBc-1_X01_Y02_362_294\", \"ini\": 1554, \"clust\": 663, \"rank\": 195, \"rankvar\": 740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1272, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2549, \"cat-2\": \"Density: 23\", \"cat_2_index\": 401, \"group\": [665.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47867_BALBc-1_X01_Y02_364_621\", \"ini\": 1553, \"clust\": 476, \"rank\": 434, \"rankvar\": 1022, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1273, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 171, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2315, \"group\": [475.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47897_BALBc-1_X01_Y02_364_854\", \"ini\": 1552, \"clust\": 853, \"rank\": 18, \"rankvar\": 940, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1274, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 172, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2800, \"group\": [856.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47915_BALBc-1_X01_Y02_365_14\", \"ini\": 1551, \"clust\": 755, \"rank\": 309, \"rankvar\": 1531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1275, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2550, \"cat-2\": \"Density: 24\", \"cat_2_index\": 517, \"group\": [759.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48021_BALBc-1_X01_Y02_366_342\", \"ini\": 1550, \"clust\": 2694, \"rank\": 2609, \"rankvar\": 2442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1276, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2551, \"cat-2\": \"Density: 27\", \"cat_2_index\": 950, \"group\": [2695.0, 1451.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48025_BALBc-1_X01_Y02_366_428\", \"ini\": 1549, \"clust\": 209, \"rank\": 579, \"rankvar\": 818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1277, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2552, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1871, \"group\": [208.0, 140.0, 47.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48215_BALBc-1_X01_Y02_368_757\", \"ini\": 1548, \"clust\": 2007, \"rank\": 1818, \"rankvar\": 2163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1278, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1996, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2606, \"group\": [2007.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48507_BALBc-1_X01_Y02_371_768\", \"ini\": 1547, \"clust\": 2377, \"rank\": 2508, \"rankvar\": 981, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1279, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1997, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2742, \"group\": [2379.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48580_BALBc-1_X01_Y02_372_677\", \"ini\": 1546, \"clust\": 2087, \"rank\": 2513, \"rankvar\": 2372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1280, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 173, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2378, \"group\": [2086.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48668_BALBc-1_X01_Y02_373_878\", \"ini\": 1545, \"clust\": 2323, \"rank\": 2439, \"rankvar\": 2121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1281, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1564, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2553, \"group\": [2329.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48752_BALBc-1_X01_Y02_374_953\", \"ini\": 1544, \"clust\": 1026, \"rank\": 310, \"rankvar\": 5, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1282, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 174, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1980, \"group\": [1025.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48829_BALBc-1_X01_Y02_375_937\", \"ini\": 1543, \"clust\": 1854, \"rank\": 2064, \"rankvar\": 2299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1283, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1565, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2316, \"group\": [1855.0, 1047.0, 316.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48836_BALBc-1_X01_Y02_375_988\", \"ini\": 1542, \"clust\": 2303, \"rank\": 1854, \"rankvar\": 1276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1284, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1220, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1103, \"group\": [2300.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48875_BALBc-1_X01_Y02_376_577\", \"ini\": 1541, \"clust\": 2185, \"rank\": 1196, \"rankvar\": 1385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1285, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 175, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1872, \"group\": [2183.0, 1185.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49022_BALBc-1_X01_Y02_378_546\", \"ini\": 1540, \"clust\": 1871, \"rank\": 1573, \"rankvar\": 490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1286, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2553, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2446, \"group\": [1872.0, 1062.0, 321.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49038_BALBc-1_X01_Y02_378_703\", \"ini\": 1539, \"clust\": 1029, \"rank\": 314, \"rankvar\": 313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1287, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1998, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2447, \"group\": [1027.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49110_BALBc-1_X01_Y02_379_604\", \"ini\": 1538, \"clust\": 1968, \"rank\": 2188, \"rankvar\": 1280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1288, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 176, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2513, \"group\": [1967.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49158_BALBc-1_X01_Y02_38_459\", \"ini\": 1537, \"clust\": 1358, \"rank\": 2578, \"rankvar\": 2704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1289, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2310, \"cat-2\": \"Density: 21\", \"cat_2_index\": 207, \"group\": [1359.0, 720.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49214_BALBc-1_X01_Y02_380_267\", \"ini\": 1536, \"clust\": 109, \"rank\": 1084, \"rankvar\": 456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1290, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1221, \"cat-2\": \"Density: 24\", \"cat_2_index\": 518, \"group\": [109.0, 67.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49503_BALBc-1_X01_Y02_383_640\", \"ini\": 1535, \"clust\": 2122, \"rank\": 2472, \"rankvar\": 2606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1291, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 177, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2448, \"group\": [2131.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49514_BALBc-1_X01_Y02_383_738\", \"ini\": 1534, \"clust\": 2154, \"rank\": 900, \"rankvar\": 493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1292, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1999, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2607, \"group\": [2152.0, 1167.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49654_BALBc-1_X01_Y02_385_588\", \"ini\": 1533, \"clust\": 2042, \"rank\": 1954, \"rankvar\": 1456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1293, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 178, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2240, \"group\": [2042.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49736_BALBc-1_X01_Y02_386_473\", \"ini\": 1532, \"clust\": 2119, \"rank\": 2506, \"rankvar\": 2525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1294, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 179, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2241, \"group\": [2120.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49747_BALBc-1_X01_Y02_386_572\", \"ini\": 1531, \"clust\": 1048, \"rank\": 360, \"rankvar\": 1088, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1295, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2554, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2379, \"group\": [1053.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49822_BALBc-1_X01_Y02_387_448\", \"ini\": 1530, \"clust\": 1103, \"rank\": 671, \"rankvar\": 141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1296, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 839, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1981, \"group\": [1109.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50058_BALBc-1_X01_Y02_39_628\", \"ini\": 1529, \"clust\": 64, \"rank\": 1422, \"rankvar\": 1998, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1297, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1222, \"cat-2\": \"Density: 16\", \"cat_2_index\": 60, \"group\": [69.0, 51.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50084_BALBc-1_X01_Y02_39_93\", \"ini\": 1528, \"clust\": 403, \"rank\": 683, \"rankvar\": 1763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1298, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1969, \"cat-2\": \"Density: 17\", \"cat_2_index\": 80, \"group\": [402.0, 280.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50363_BALBc-1_X01_Y02_393_824\", \"ini\": 1527, \"clust\": 858, \"rank\": 80, \"rankvar\": 988, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1299, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2000, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2514, \"group\": [858.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50468_BALBc-1_X01_Y02_395_251\", \"ini\": 1526, \"clust\": 833, \"rank\": 154, \"rankvar\": 27, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1300, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1223, \"cat-2\": \"Density: 27\", \"cat_2_index\": 951, \"group\": [837.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50654_BALBc-1_X01_Y02_397_653\", \"ini\": 1525, \"clust\": 2260, \"rank\": 1676, \"rankvar\": 864, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1301, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 180, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2449, \"group\": [2259.0, 1234.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50678_BALBc-1_X01_Y02_397_965\", \"ini\": 1524, \"clust\": 1901, \"rank\": 2068, \"rankvar\": 496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1302, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 181, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1873, \"group\": [1910.0, 1096.0, 335.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50749_BALBc-1_X01_Y02_398_842\", \"ini\": 1523, \"clust\": 2060, \"rank\": 2692, \"rankvar\": 1775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1303, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 182, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2450, \"group\": [2057.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50801_BALBc-1_X01_Y02_399_479\", \"ini\": 1522, \"clust\": 2227, \"rank\": 1482, \"rankvar\": 996, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1304, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 183, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2160, \"group\": [2226.0, 1205.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50842_BALBc-1_X01_Y02_399_873\", \"ini\": 1521, \"clust\": 1090, \"rank\": 169, \"rankvar\": 361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1305, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 184, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2554, \"group\": [1090.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50850_BALBc-1_X01_Y02_399_955\", \"ini\": 1520, \"clust\": 416, \"rank\": 676, \"rankvar\": 1450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1306, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 185, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2161, \"group\": [419.0, 295.0, 102.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51102_BALBc-1_X01_Y02_401_718\", \"ini\": 1519, \"clust\": 2295, \"rank\": 1745, \"rankvar\": 1107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1307, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2001, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2555, \"group\": [2293.0, 1250.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51108_BALBc-1_X01_Y02_401_770\", \"ini\": 1518, \"clust\": 894, \"rank\": 196, \"rankvar\": 252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1308, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2002, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2743, \"group\": [911.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51160_BALBc-1_X01_Y02_402_614\", \"ini\": 1517, \"clust\": 1998, \"rank\": 2383, \"rankvar\": 2435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1309, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 186, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2317, \"group\": [1998.0, 1131.0, 339.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51170_BALBc-1_X01_Y02_402_685\", \"ini\": 1516, \"clust\": 526, \"rank\": 250, \"rankvar\": 849, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1310, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 187, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2451, \"group\": [525.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51249_BALBc-1_X01_Y02_403_900\", \"ini\": 1515, \"clust\": 441, \"rank\": 521, \"rankvar\": 318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1311, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1566, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2556, \"group\": [444.0, 311.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51335_BALBc-1_X01_Y02_404_940\", \"ini\": 1514, \"clust\": 2383, \"rank\": 2360, \"rankvar\": 1447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1312, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1567, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2242, \"group\": [2382.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51490_BALBc-1_X01_Y02_406_791\", \"ini\": 1513, \"clust\": 2043, \"rank\": 1981, \"rankvar\": 1666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1313, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2003, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2608, \"group\": [2043.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51601_BALBc-1_X01_Y02_408_107\", \"ini\": 1512, \"clust\": 188, \"rank\": 842, \"rankvar\": 2131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1314, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2311, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1104, \"group\": [188.0, 124.0, 41.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51695_BALBc-1_X01_Y02_409_238\", \"ini\": 1511, \"clust\": 1674, \"rank\": 1991, \"rankvar\": 1662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1315, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1224, \"cat-2\": \"Density: 26\", \"cat_2_index\": 801, \"group\": [1677.0, 934.0, 275.0, 79.0, 16.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51890_BALBc-1_X01_Y02_410_582\", \"ini\": 1510, \"clust\": 2221, \"rank\": 1544, \"rankvar\": 111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1316, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 188, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1982, \"group\": [2229.0, 1208.0, 358.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51921_BALBc-1_X01_Y02_411_121\", \"ini\": 1509, \"clust\": 613, \"rank\": 372, \"rankvar\": 1262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1317, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 840, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1404, \"group\": [615.0, 416.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51976_BALBc-1_X01_Y02_411_847\", \"ini\": 1508, \"clust\": 2005, \"rank\": 2112, \"rankvar\": 1612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1318, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 189, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2609, \"group\": [2004.0, 1135.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52269_BALBc-1_X01_Y02_415_277\", \"ini\": 1507, \"clust\": 1167, \"rank\": 959, \"rankvar\": 1294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1319, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 621, \"cat-2\": \"Density: 27\", \"cat_2_index\": 952, \"group\": [1168.0, 564.0, 156.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52299_BALBc-1_X01_Y02_415_694\", \"ini\": 1506, \"clust\": 2272, \"rank\": 1390, \"rankvar\": 1329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1320, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 190, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2658, \"group\": [2270.0, 1239.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52362_BALBc-1_X01_Y02_416_643\", \"ini\": 1505, \"clust\": 1963, \"rank\": 2505, \"rankvar\": 2114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1321, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 191, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2452, \"group\": [1969.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52446_BALBc-1_X01_Y02_417_9\", \"ini\": 1504, \"clust\": 554, \"rank\": 702, \"rankvar\": 1219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1322, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2242, \"cat-2\": \"Density: 27\", \"cat_2_index\": 953, \"group\": [558.0, 382.0, 127.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52574_BALBc-1_X01_Y02_419_463\", \"ini\": 1503, \"clust\": 1087, \"rank\": 150, \"rankvar\": 620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1323, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 841, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2243, \"group\": [1088.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52615_BALBc-1_X01_Y02_419_921\", \"ini\": 1502, \"clust\": 2233, \"rank\": 1338, \"rankvar\": 666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1324, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1568, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2453, \"group\": [2234.0, 1213.0, 362.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52720_BALBc-1_X01_Y02_420_41\", \"ini\": 1501, \"clust\": 959, \"rank\": 391, \"rankvar\": 1537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1325, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2312, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1405, \"group\": [958.0, 490.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52738_BALBc-1_X01_Y02_420_619\", \"ini\": 1500, \"clust\": 430, \"rank\": 886, \"rankvar\": 1158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1326, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 192, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2380, \"group\": [431.0, 306.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52831_BALBc-1_X01_Y02_421_884\", \"ini\": 1499, \"clust\": 1121, \"rank\": 784, \"rankvar\": 205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1327, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 193, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2557, \"group\": [1122.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52841_BALBc-1_X01_Y02_421_966\", \"ini\": 1498, \"clust\": 136, \"rank\": 600, \"rankvar\": 465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1328, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 194, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1769, \"group\": [138.0, 84.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52887_BALBc-1_X01_Y02_422_566\", \"ini\": 1497, \"clust\": 488, \"rank\": 868, \"rankvar\": 648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1329, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2555, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2162, \"group\": [488.0, 333.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52914_BALBc-1_X01_Y02_422_826\", \"ini\": 1496, \"clust\": 2091, \"rank\": 2448, \"rankvar\": 2042, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1330, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 195, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2454, \"group\": [2090.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52954_BALBc-1_X01_Y02_423_373\", \"ini\": 1495, \"clust\": 2675, \"rank\": 2659, \"rankvar\": 2101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1331, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2556, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1530, \"group\": [2677.0, 1444.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52986_BALBc-1_X01_Y02_423_804\", \"ini\": 1494, \"clust\": 200, \"rank\": 871, \"rankvar\": 987, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1332, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 912, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2659, \"group\": [201.0, 135.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53029_BALBc-1_X01_Y02_424_444\", \"ini\": 1493, \"clust\": 2320, \"rank\": 1852, \"rankvar\": 1544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1333, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 842, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2079, \"group\": [2321.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53035_BALBc-1_X01_Y02_424_524\", \"ini\": 1492, \"clust\": 2448, \"rank\": 1487, \"rankvar\": 1167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1334, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2557, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2381, \"group\": [2451.0, 1303.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53103_BALBc-1_X01_Y02_425_394\", \"ini\": 1491, \"clust\": 57, \"rank\": 701, \"rankvar\": 938, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1335, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2558, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1663, \"group\": [58.0, 47.0, 21.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53160_BALBc-1_X01_Y02_426_216\", \"ini\": 1490, \"clust\": 828, \"rank\": 87, \"rankvar\": 447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1336, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1225, \"cat-2\": \"Density: 27\", \"cat_2_index\": 954, \"group\": [827.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53185_BALBc-1_X01_Y02_426_493\", \"ini\": 1489, \"clust\": 2085, \"rank\": 2410, \"rankvar\": 2288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1337, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2004, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2382, \"group\": [2083.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53235_BALBc-1_X01_Y02_426_993\", \"ini\": 1488, \"clust\": 1832, \"rank\": 2816, \"rankvar\": 2781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1338, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1226, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1105, \"group\": [1832.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53488_BALBc-1_X01_Y02_43_189\", \"ini\": 1487, \"clust\": 1447, \"rank\": 2408, \"rankvar\": 2308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1339, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2490, \"cat-2\": \"Density: 20\", \"cat_2_index\": 157, \"group\": [1451.0, 789.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53513_BALBc-1_X01_Y02_43_535\", \"ini\": 1486, \"clust\": 2761, \"rank\": 2276, \"rankvar\": 1436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1340, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 843, \"cat-2\": \"Density: 24\", \"cat_2_index\": 519, \"group\": [2761.0, 1494.0, 445.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53632_BALBc-1_X01_Y02_430_943\", \"ini\": 1485, \"clust\": 1114, \"rank\": 700, \"rankvar\": 1539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1341, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 196, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2244, \"group\": [1115.0, 525.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53680_BALBc-1_X01_Y02_431_592\", \"ini\": 1484, \"clust\": 2097, \"rank\": 2672, \"rankvar\": 2709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1342, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2005, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2245, \"group\": [2097.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53775_BALBc-1_X01_Y02_432_719\", \"ini\": 1483, \"clust\": 1940, \"rank\": 2115, \"rankvar\": 1038, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1343, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2006, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2660, \"group\": [1943.0, 1112.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54002_BALBc-1_X01_Y02_435_644\", \"ini\": 1482, \"clust\": 490, \"rank\": 1141, \"rankvar\": 86, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1344, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 197, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2610, \"group\": [491.0, 335.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54089_BALBc-1_X01_Y02_436_868\", \"ini\": 1481, \"clust\": 1918, \"rank\": 2088, \"rankvar\": 1345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1345, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 198, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2661, \"group\": [1919.0, 1103.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54172_BALBc-1_X01_Y02_437_824\", \"ini\": 1480, \"clust\": 1157, \"rank\": 1779, \"rankvar\": 2113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1346, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2007, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2455, \"group\": [1157.0, 555.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54244_BALBc-1_X01_Y02_438_683\", \"ini\": 1479, \"clust\": 2009, \"rank\": 2046, \"rankvar\": 1964, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1347, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2008, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2558, \"group\": [2010.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54404_BALBc-1_X01_Y02_44_835\", \"ini\": 1478, \"clust\": 1887, \"rank\": 1932, \"rankvar\": 2348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1348, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1227, \"cat-2\": \"Density: 21\", \"cat_2_index\": 208, \"group\": [1901.0, 1089.0, 332.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54437_BALBc-1_X01_Y02_440_316\", \"ini\": 1477, \"clust\": 1095, \"rank\": 209, \"rankvar\": 458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1349, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2559, \"cat-2\": \"Density: 25\", \"cat_2_index\": 660, \"group\": [1102.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54530_BALBc-1_X01_Y02_441_532\", \"ini\": 1476, \"clust\": 2719, \"rank\": 1995, \"rankvar\": 2264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1350, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2009, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2383, \"group\": [2718.0, 1460.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54679_BALBc-1_X01_Y02_443_444\", \"ini\": 1475, \"clust\": 497, \"rank\": 751, \"rankvar\": 1032, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1351, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 199, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1874, \"group\": [503.0, 343.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54837_BALBc-1_X01_Y02_445_603\", \"ini\": 1474, \"clust\": 2039, \"rank\": 2260, \"rankvar\": 2326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1352, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 200, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2456, \"group\": [2040.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54860_BALBc-1_X01_Y02_445_91\", \"ini\": 1473, \"clust\": 571, \"rank\": 686, \"rankvar\": 1314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1353, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2313, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1252, \"group\": [575.0, 392.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54974_BALBc-1_X01_Y02_447_354\", \"ini\": 1472, \"clust\": 589, \"rank\": 120, \"rankvar\": 1811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1354, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2560, \"cat-2\": \"Density: 26\", \"cat_2_index\": 802, \"group\": [588.0, 401.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55065_BALBc-1_X01_Y02_448_466\", \"ini\": 1471, \"clust\": 846, \"rank\": 101, \"rankvar\": 46, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1355, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2010, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2163, \"group\": [846.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55103_BALBc-1_X01_Y02_448_891\", \"ini\": 1470, \"clust\": 520, \"rank\": 636, \"rankvar\": 1147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1356, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2011, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2559, \"group\": [522.0, 358.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55107_BALBc-1_X01_Y02_448_964\", \"ini\": 1469, \"clust\": 2266, \"rank\": 1365, \"rankvar\": 471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1357, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 201, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1983, \"group\": [2264.0, 1236.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55165_BALBc-1_X01_Y02_449_995\", \"ini\": 1468, \"clust\": 1819, \"rank\": 2632, \"rankvar\": 2819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1358, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1228, \"cat-2\": \"Density: 25\", \"cat_2_index\": 661, \"group\": [1820.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55457_BALBc-1_X01_Y02_452_827\", \"ini\": 1467, \"clust\": 2124, \"rank\": 2709, \"rankvar\": 2672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1359, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2012, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2662, \"group\": [2122.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55626_BALBc-1_X01_Y02_454_938\", \"ini\": 1466, \"clust\": 2306, \"rank\": 1940, \"rankvar\": 922, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1360, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 202, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2318, \"group\": [2308.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55632_BALBc-1_X01_Y02_455_133\", \"ini\": 1465, \"clust\": 1349, \"rank\": 1705, \"rankvar\": 2025, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1361, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1229, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1253, \"group\": [1350.0, 711.0, 211.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55682_BALBc-1_X01_Y02_455_662\", \"ini\": 1464, \"clust\": 487, \"rank\": 675, \"rankvar\": 766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1362, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2013, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2457, \"group\": [487.0, 333.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55975_BALBc-1_X01_Y02_459_725\", \"ini\": 1463, \"clust\": 2051, \"rank\": 2656, \"rankvar\": 2354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1363, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 913, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2611, \"group\": [2051.0, 1148.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55987_BALBc-1_X01_Y02_459_856\", \"ini\": 1462, \"clust\": 2156, \"rank\": 1556, \"rankvar\": 844, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1364, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2014, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2384, \"group\": [2157.0, 1171.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56102_BALBc-1_X01_Y02_460_412\", \"ini\": 1461, \"clust\": 1723, \"rank\": 2751, \"rankvar\": 2807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1365, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2811, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1875, \"group\": [1722.0, 970.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56118_BALBc-1_X01_Y02_460_632\", \"ini\": 1460, \"clust\": 2531, \"rank\": 1468, \"rankvar\": 581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1366, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 203, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2515, \"group\": [2529.0, 1356.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56299_BALBc-1_X01_Y02_462_698\", \"ini\": 1459, \"clust\": 489, \"rank\": 836, \"rankvar\": 730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1367, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2015, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2516, \"group\": [489.0, 333.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56546_BALBc-1_X01_Y02_466_18\", \"ini\": 1458, \"clust\": 1201, \"rank\": 633, \"rankvar\": 1095, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1368, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1551, \"cat-2\": \"Density: 27\", \"cat_2_index\": 955, \"group\": [1201.0, 594.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56758_BALBc-1_X01_Y02_468_767\", \"ini\": 1457, \"clust\": 2052, \"rank\": 2801, \"rankvar\": 2703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1369, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 914, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2744, \"group\": [2049.0, 1148.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56777_BALBc-1_X01_Y02_469_107\", \"ini\": 1456, \"clust\": 287, \"rank\": 1896, \"rankvar\": 2780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1370, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 844, \"cat-2\": \"Density: 26\", \"cat_2_index\": 803, \"group\": [287.0, 208.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56993_BALBc-1_X01_Y02_470_811\", \"ini\": 1455, \"clust\": 485, \"rank\": 981, \"rankvar\": 586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1371, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2016, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2663, \"group\": [490.0, 334.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57236_BALBc-1_X01_Y02_474_156\", \"ini\": 1454, \"clust\": 2734, \"rank\": 1432, \"rankvar\": 2049, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1372, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 845, \"cat-2\": \"Density: 23\", \"cat_2_index\": 402, \"group\": [2735.0, 1470.0, 432.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57266_BALBc-1_X01_Y02_474_476\", \"ini\": 1453, \"clust\": 2070, \"rank\": 2590, \"rankvar\": 2152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1373, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2017, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2246, \"group\": [2072.0, 1151.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57317_BALBc-1_X01_Y02_475_174\", \"ini\": 1452, \"clust\": 1637, \"rank\": 1491, \"rankvar\": 1415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1374, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1230, \"cat-2\": \"Density: 26\", \"cat_2_index\": 804, \"group\": [1639.0, 903.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57390_BALBc-1_X01_Y02_475_992\", \"ini\": 1451, \"clust\": 2350, \"rank\": 2587, \"rankvar\": 1477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1375, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1231, \"cat-2\": \"Density: 26\", \"cat_2_index\": 805, \"group\": [2344.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57421_BALBc-1_X01_Y02_476_442\", \"ini\": 1450, \"clust\": 2461, \"rank\": 1109, \"rankvar\": 1338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1376, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 204, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2247, \"group\": [2462.0, 1310.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57434_BALBc-1_X01_Y02_476_544\", \"ini\": 1449, \"clust\": 2128, \"rank\": 2450, \"rankvar\": 2697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1377, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2018, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2319, \"group\": [2126.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57441_BALBc-1_X01_Y02_476_598\", \"ini\": 1448, \"clust\": 682, \"rank\": 526, \"rankvar\": 780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1378, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 205, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2385, \"group\": [682.0, 450.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57487_BALBc-1_X01_Y02_477_186\", \"ini\": 1447, \"clust\": 2744, \"rank\": 913, \"rankvar\": 2093, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1379, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1232, \"cat-2\": \"Density: 24\", \"cat_2_index\": 520, \"group\": [2744.0, 1479.0, 437.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57490_BALBc-1_X01_Y02_477_220\", \"ini\": 1446, \"clust\": 96, \"rank\": 574, \"rankvar\": 1923, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1380, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1233, \"cat-2\": \"Density: 23\", \"cat_2_index\": 403, \"group\": [96.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57549_BALBc-1_X01_Y02_477_962\", \"ini\": 1445, \"clust\": 738, \"rank\": 632, \"rankvar\": 695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1381, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 206, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1984, \"group\": [740.0, 467.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57571_BALBc-1_X01_Y02_478_269\", \"ini\": 1444, \"clust\": 404, \"rank\": 442, \"rankvar\": 724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1382, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1234, \"cat-2\": \"Density: 24\", \"cat_2_index\": 521, \"group\": [404.0, 282.0, 96.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57683_BALBc-1_X01_Y02_479_571\", \"ini\": 1443, \"clust\": 2071, \"rank\": 2563, \"rankvar\": 2319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1383, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2019, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2560, \"group\": [2070.0, 1151.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57835_BALBc-1_X01_Y02_480_722\", \"ini\": 1442, \"clust\": 969, \"rank\": 813, \"rankvar\": 102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1384, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 207, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2517, \"group\": [972.0, 498.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57878_BALBc-1_X01_Y02_481_244\", \"ini\": 1441, \"clust\": 1165, \"rank\": 780, \"rankvar\": 1980, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1385, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1235, \"cat-2\": \"Density: 22\", \"cat_2_index\": 288, \"group\": [1166.0, 562.0, 156.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58001_BALBc-1_X01_Y02_482_917\", \"ini\": 1440, \"clust\": 2023, \"rank\": 2101, \"rankvar\": 1227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1386, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2020, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2801, \"group\": [2021.0, 1139.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58043_BALBc-1_X01_Y02_483_520\", \"ini\": 1439, \"clust\": 264, \"rank\": 1044, \"rankvar\": 962, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1387, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2021, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2080, \"group\": [264.0, 186.0, 65.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58156_BALBc-1_X01_Y02_484_753\", \"ini\": 1438, \"clust\": 2437, \"rank\": 891, \"rankvar\": 986, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1388, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2022, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2704, \"group\": [2438.0, 1298.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58206_BALBc-1_X01_Y02_485_407\", \"ini\": 1437, \"clust\": 1092, \"rank\": 143, \"rankvar\": 119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1389, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2023, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1531, \"group\": [1093.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58226_BALBc-1_X01_Y02_485_621\", \"ini\": 1436, \"clust\": 1125, \"rank\": 1177, \"rankvar\": 1540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1390, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 208, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2081, \"group\": [1125.0, 527.0, 141.0, 35.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58228_BALBc-1_X01_Y02_485_649\", \"ini\": 1435, \"clust\": 2088, \"rank\": 2540, \"rankvar\": 2337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1391, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1236, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2248, \"group\": [2087.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58327_BALBc-1_X01_Y02_486_99\", \"ini\": 1434, \"clust\": 1319, \"rank\": 822, \"rankvar\": 777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1392, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1655, \"cat-2\": \"Density: 27\", \"cat_2_index\": 956, \"group\": [1319.0, 687.0, 204.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58359_BALBc-1_X01_Y02_487_496\", \"ini\": 1433, \"clust\": 2129, \"rank\": 2177, \"rankvar\": 2184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1393, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2024, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2082, \"group\": [2127.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58404_BALBc-1_X01_Y02_487_980\", \"ini\": 1432, \"clust\": 867, \"rank\": 31, \"rankvar\": 963, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1394, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 209, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1664, \"group\": [866.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58545_BALBc-1_X01_Y02_489_773\", \"ini\": 1431, \"clust\": 1941, \"rank\": 2071, \"rankvar\": 667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1395, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2025, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2518, \"group\": [1941.0, 1112.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58554_BALBc-1_X01_Y02_489_847\", \"ini\": 1430, \"clust\": 2073, \"rank\": 2454, \"rankvar\": 1694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1396, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2026, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2705, \"group\": [2073.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58565_BALBc-1_X01_Y02_489_942\", \"ini\": 1429, \"clust\": 1729, \"rank\": 2244, \"rankvar\": 1004, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1397, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 210, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2519, \"group\": [1729.0, 974.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58586_BALBc-1_X01_Y02_49_255\", \"ini\": 1428, \"clust\": 1646, \"rank\": 1305, \"rankvar\": 2644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1398, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1237, \"cat-2\": \"Density: 18\", \"cat_2_index\": 97, \"group\": [1642.0, 905.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58666_BALBc-1_X01_Y02_490_220\", \"ini\": 1427, \"clust\": 1419, \"rank\": 1814, \"rankvar\": 952, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1399, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 211, \"cat-2\": \"Density: 23\", \"cat_2_index\": 404, \"group\": [1420.0, 767.0, 227.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58836_BALBc-1_X01_Y02_492_696\", \"ini\": 1426, \"clust\": 2022, \"rank\": 2045, \"rankvar\": 797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1400, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2027, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2612, \"group\": [2023.0, 1139.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58842_BALBc-1_X01_Y02_492_801\", \"ini\": 1425, \"clust\": 470, \"rank\": 997, \"rankvar\": 1318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1401, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2028, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2458, \"group\": [468.0, 327.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59277_BALBc-1_X01_Y02_497_952\", \"ini\": 1424, \"clust\": 2515, \"rank\": 1743, \"rankvar\": 815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1402, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2029, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1985, \"group\": [2515.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59332_BALBc-1_X01_Y02_498_722\", \"ini\": 1423, \"clust\": 474, \"rank\": 540, \"rankvar\": 584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1403, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2030, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2520, \"group\": [478.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59402_BALBc-1_X01_Y02_499_631\", \"ini\": 1422, \"clust\": 2462, \"rank\": 1500, \"rankvar\": 1077, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1404, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2031, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2249, \"group\": [2460.0, 1309.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59433_BALBc-1_X01_Y02_499_987\", \"ini\": 1421, \"clust\": 2082, \"rank\": 2606, \"rankvar\": 2360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1405, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2032, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1254, \"group\": [2081.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59455_BALBc-1_X01_Y02_5_514\", \"ini\": 1420, \"clust\": 2497, \"rank\": 2248, \"rankvar\": 2183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1406, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 846, \"cat-2\": \"Density: 13\", \"cat_2_index\": 19, \"group\": [2507.0, 1347.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59697_BALBc-1_X01_Y02_502_382\", \"ini\": 1419, \"clust\": 1005, \"rank\": 384, \"rankvar\": 545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1407, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2561, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1255, \"group\": [1003.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59815_BALBc-1_X01_Y02_504_15\", \"ini\": 1418, \"clust\": 73, \"rank\": 605, \"rankvar\": 379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1408, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1970, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1106, \"group\": [74.0, 55.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60055_BALBc-1_X01_Y02_507_1005\", \"ini\": 1417, \"clust\": 2110, \"rank\": 2682, \"rankvar\": 2514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1409, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 212, \"cat-2\": \"Density: 26\", \"cat_2_index\": 806, \"group\": [2109.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60088_BALBc-1_X01_Y02_507_454\", \"ini\": 1416, \"clust\": 2190, \"rank\": 2003, \"rankvar\": 2479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1410, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 213, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1876, \"group\": [2186.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60268_BALBc-1_X01_Y02_509_70\", \"ini\": 1415, \"clust\": 687, \"rank\": 354, \"rankvar\": 529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1411, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1656, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1107, \"group\": [690.0, 454.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60435_BALBc-1_X01_Y02_510_900\", \"ini\": 1414, \"clust\": 2056, \"rank\": 2655, \"rankvar\": 2439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1412, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2033, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2664, \"group\": [2054.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60513_BALBc-1_X01_Y02_511_842\", \"ini\": 1413, \"clust\": 2428, \"rank\": 1051, \"rankvar\": 858, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1413, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 214, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2613, \"group\": [2429.0, 1294.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60591_BALBc-1_X01_Y02_512_878\", \"ini\": 1412, \"clust\": 1049, \"rank\": 339, \"rankvar\": 1289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1414, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2034, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2561, \"group\": [1052.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60694_BALBc-1_X01_Y02_514_485\", \"ini\": 1411, \"clust\": 1182, \"rank\": 1507, \"rankvar\": 1074, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1415, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2035, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2459, \"group\": [1183.0, 576.0, 160.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60776_BALBc-1_X01_Y02_515_521\", \"ini\": 1410, \"clust\": 2194, \"rank\": 1832, \"rankvar\": 2552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1416, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 215, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2083, \"group\": [2191.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60841_BALBc-1_X01_Y02_516_211\", \"ini\": 1409, \"clust\": 610, \"rank\": 480, \"rankvar\": 544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1417, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2562, \"cat-2\": \"Density: 23\", \"cat_2_index\": 405, \"group\": [608.0, 413.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60860_BALBc-1_X01_Y02_516_505\", \"ini\": 1408, \"clust\": 2344, \"rank\": 2445, \"rankvar\": 1748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1418, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 216, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2084, \"group\": [2355.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60875_BALBc-1_X01_Y02_516_818\", \"ini\": 1407, \"clust\": 2186, \"rank\": 1388, \"rankvar\": 1165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1419, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2036, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2745, \"group\": [2184.0, 1186.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60902_BALBc-1_X01_Y02_517_236\", \"ini\": 1406, \"clust\": 1276, \"rank\": 1607, \"rankvar\": 2371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1420, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 217, \"cat-2\": \"Density: 21\", \"cat_2_index\": 209, \"group\": [1278.0, 653.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61018_BALBc-1_X01_Y02_518_607\", \"ini\": 1405, \"clust\": 2072, \"rank\": 2542, \"rankvar\": 2495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1421, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2037, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2164, \"group\": [2071.0, 1151.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61271_BALBc-1_X01_Y02_520_570\", \"ini\": 1404, \"clust\": 435, \"rank\": 355, \"rankvar\": 1754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1422, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2038, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2460, \"group\": [435.0, 308.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61339_BALBc-1_X01_Y02_521_434\", \"ini\": 1403, \"clust\": 2252, \"rank\": 1106, \"rankvar\": 613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1423, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2039, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1986, \"group\": [2253.0, 1230.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61380_BALBc-1_X01_Y02_521_947\", \"ini\": 1402, \"clust\": 2055, \"rank\": 2633, \"rankvar\": 1535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1424, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1238, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2320, \"group\": [2059.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61674_BALBc-1_X01_Y02_525_652\", \"ini\": 1401, \"clust\": 2093, \"rank\": 2438, \"rankvar\": 2385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1425, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1239, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2321, \"group\": [2092.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61704_BALBc-1_X01_Y02_525_994\", \"ini\": 1400, \"clust\": 2378, \"rank\": 2552, \"rankvar\": 1756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1426, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2040, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1256, \"group\": [2377.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61719_BALBc-1_X01_Y02_526_269\", \"ini\": 1399, \"clust\": 2803, \"rank\": 2102, \"rankvar\": 2513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1427, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2563, \"cat-2\": \"Density: 20\", \"cat_2_index\": 158, \"group\": [2804.0, 1522.0, 453.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61758_BALBc-1_X01_Y02_526_905\", \"ini\": 1398, \"clust\": 804, \"rank\": 576, \"rankvar\": 96, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1428, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 218, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2461, \"group\": [805.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61791_BALBc-1_X01_Y02_527_347\", \"ini\": 1397, \"clust\": 1176, \"rank\": 1317, \"rankvar\": 58, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1429, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2564, \"cat-2\": \"Density: 25\", \"cat_2_index\": 662, \"group\": [1177.0, 570.0, 158.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61831_BALBc-1_X01_Y02_527_730\", \"ini\": 1396, \"clust\": 1046, \"rank\": 132, \"rankvar\": 1195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1430, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2041, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2562, \"group\": [1045.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61836_BALBc-1_X01_Y02_527_777\", \"ini\": 1395, \"clust\": 2223, \"rank\": 1710, \"rankvar\": 1902, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1431, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2042, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2386, \"group\": [2222.0, 1203.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61953_BALBc-1_X01_Y02_529_35\", \"ini\": 1394, \"clust\": 397, \"rank\": 994, \"rankvar\": 1475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1432, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1657, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1108, \"group\": [394.0, 275.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61991_BALBc-1_X01_Y02_529_837\", \"ini\": 1393, \"clust\": 998, \"rank\": 674, \"rankvar\": 556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1433, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 219, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2563, \"group\": [997.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62023_BALBc-1_X01_Y02_53_321\", \"ini\": 1392, \"clust\": 684, \"rank\": 538, \"rankvar\": 1723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1434, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1240, \"cat-2\": \"Density: 21\", \"cat_2_index\": 210, \"group\": [687.0, 452.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62344_BALBc-1_X01_Y02_533_462\", \"ini\": 1391, \"clust\": 478, \"rank\": 428, \"rankvar\": 901, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1435, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2043, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2322, \"group\": [483.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62399_BALBc-1_X01_Y02_534_418\", \"ini\": 1390, \"clust\": 1059, \"rank\": 637, \"rankvar\": 364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1436, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2044, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1987, \"group\": [1059.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62425_BALBc-1_X01_Y02_534_752\", \"ini\": 1389, \"clust\": 1852, \"rank\": 2267, \"rankvar\": 1506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1437, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2045, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2462, \"group\": [1849.0, 1042.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62434_BALBc-1_X01_Y02_534_821\", \"ini\": 1388, \"clust\": 2189, \"rank\": 1863, \"rankvar\": 1743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1438, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2046, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2706, \"group\": [2188.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62442_BALBc-1_X01_Y02_534_888\", \"ini\": 1387, \"clust\": 2420, \"rank\": 901, \"rankvar\": 193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1439, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 220, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2463, \"group\": [2420.0, 1288.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62492_BALBc-1_X01_Y02_535_508\", \"ini\": 1386, \"clust\": 2225, \"rank\": 1363, \"rankvar\": 1078, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1440, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2047, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2165, \"group\": [2224.0, 1204.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62565_BALBc-1_X01_Y02_536_544\", \"ini\": 1385, \"clust\": 1999, \"rank\": 2366, \"rankvar\": 2116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1441, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2048, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2387, \"group\": [1999.0, 1131.0, 339.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62586_BALBc-1_X01_Y02_536_855\", \"ini\": 1384, \"clust\": 1977, \"rank\": 2759, \"rankvar\": 2469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1442, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 221, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2614, \"group\": [1972.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62671_BALBc-1_X01_Y02_537_981\", \"ini\": 1383, \"clust\": 2202, \"rank\": 1304, \"rankvar\": 2106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1443, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1241, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1770, \"group\": [2205.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62763_BALBc-1_X01_Y02_539_389\", \"ini\": 1382, \"clust\": 2418, \"rank\": 1176, \"rankvar\": 380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1444, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2049, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1257, \"group\": [2417.0, 1285.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62777_BALBc-1_X01_Y02_539_557\", \"ini\": 1381, \"clust\": 2030, \"rank\": 2675, \"rankvar\": 2226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1445, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2050, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2250, \"group\": [2029.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62788_BALBc-1_X01_Y02_539_712\", \"ini\": 1380, \"clust\": 2109, \"rank\": 2802, \"rankvar\": 2769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1446, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1242, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2388, \"group\": [2113.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62960_BALBc-1_X01_Y02_541_26\", \"ini\": 1379, \"clust\": 198, \"rank\": 395, \"rankvar\": 846, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1447, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1971, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1109, \"group\": [198.0, 132.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62991_BALBc-1_X01_Y02_541_75\", \"ini\": 1378, \"clust\": 207, \"rank\": 1024, \"rankvar\": 735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1448, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 847, \"cat-2\": \"Density: 26\", \"cat_2_index\": 807, \"group\": [206.0, 139.0, 47.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63595_BALBc-1_X01_Y02_548_853\", \"ini\": 1377, \"clust\": 2166, \"rank\": 1538, \"rankvar\": 1438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1449, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2051, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2615, \"group\": [2167.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63686_BALBc-1_X01_Y02_549_947\", \"ini\": 1376, \"clust\": 2374, \"rank\": 2519, \"rankvar\": 1675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1450, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1243, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2323, \"group\": [2372.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63912_BALBc-1_X01_Y02_551_904\", \"ini\": 1375, \"clust\": 2152, \"rank\": 1207, \"rankvar\": 1122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1451, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 222, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2521, \"group\": [2153.0, 1168.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63952_BALBc-1_X01_Y02_552_377\", \"ini\": 1374, \"clust\": 2419, \"rank\": 1067, \"rankvar\": 221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1452, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 223, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1110, \"group\": [2422.0, 1289.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64119_BALBc-1_X01_Y02_554_637\", \"ini\": 1373, \"clust\": 2533, \"rank\": 1454, \"rankvar\": 1708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1453, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2052, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2564, \"group\": [2532.0, 1358.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64205_BALBc-1_X01_Y02_555_738\", \"ini\": 1372, \"clust\": 434, \"rank\": 788, \"rankvar\": 1846, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1454, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 224, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2389, \"group\": [437.0, 308.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64551_BALBc-1_X01_Y02_56_237\", \"ini\": 1371, \"clust\": 1409, \"rank\": 1591, \"rankvar\": 1920, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1455, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1244, \"cat-2\": \"Density: 20\", \"cat_2_index\": 159, \"group\": [1409.0, 758.0, 224.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64699_BALBc-1_X01_Y02_560_94\", \"ini\": 1370, \"clust\": 1638, \"rank\": 2516, \"rankvar\": 2700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1456, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2455, \"cat-2\": \"Density: 27\", \"cat_2_index\": 957, \"group\": [1637.0, 902.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64829_BALBc-1_X01_Y02_562_691\", \"ini\": 1369, \"clust\": 438, \"rank\": 272, \"rankvar\": 1546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1457, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1245, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2616, \"group\": [439.0, 309.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64850_BALBc-1_X01_Y02_562_963\", \"ini\": 1368, \"clust\": 2204, \"rank\": 1162, \"rankvar\": 1847, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1458, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1246, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2251, \"group\": [2200.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64896_BALBc-1_X01_Y02_563_569\", \"ini\": 1367, \"clust\": 1053, \"rank\": 547, \"rankvar\": 583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1459, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2053, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2464, \"group\": [1054.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64897_BALBc-1_X01_Y02_563_602\", \"ini\": 1366, \"clust\": 2387, \"rank\": 2763, \"rankvar\": 1891, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1460, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2054, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2465, \"group\": [2384.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64941_BALBc-1_X01_Y02_564_31\", \"ini\": 1365, \"clust\": 1129, \"rank\": 1269, \"rankvar\": 118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1461, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1972, \"cat-2\": \"Density: 24\", \"cat_2_index\": 522, \"group\": [1133.0, 535.0, 145.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64994_BALBc-1_X01_Y02_564_874\", \"ini\": 1364, \"clust\": 44, \"rank\": 775, \"rankvar\": 805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1462, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2055, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2466, \"group\": [47.0, 39.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65052_BALBc-1_X01_Y02_565_665\", \"ini\": 1363, \"clust\": 2120, \"rank\": 2423, \"rankvar\": 2309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1463, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 225, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2565, \"group\": [2118.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65064_BALBc-1_X01_Y02_565_759\", \"ini\": 1362, \"clust\": 2089, \"rank\": 2669, \"rankvar\": 2465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1464, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2565, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2522, \"group\": [2088.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65075_BALBc-1_X01_Y02_565_925\", \"ini\": 1361, \"clust\": 683, \"rank\": 399, \"rankvar\": 774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1465, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 622, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2707, \"group\": [683.0, 450.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65095_BALBc-1_X01_Y02_566_271\", \"ini\": 1360, \"clust\": 1926, \"rank\": 2771, \"rankvar\": 2805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1466, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2566, \"cat-2\": \"Density: 21\", \"cat_2_index\": 211, \"group\": [1926.0, 1107.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65299_BALBc-1_X01_Y02_568_889\", \"ini\": 1359, \"clust\": 2363, \"rank\": 1838, \"rankvar\": 1205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1467, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 226, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2566, \"group\": [2363.0, 1262.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65326_BALBc-1_X01_Y02_569_433\", \"ini\": 1358, \"clust\": 2161, \"rank\": 1098, \"rankvar\": 682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1468, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2056, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2085, \"group\": [2158.0, 1172.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65481_BALBc-1_X01_Y02_570_500\", \"ini\": 1357, \"clust\": 2195, \"rank\": 1736, \"rankvar\": 2188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1469, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2057, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2324, \"group\": [2189.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65533_BALBc-1_X01_Y02_571_197\", \"ini\": 1356, \"clust\": 1395, \"rank\": 1714, \"rankvar\": 1117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1470, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2491, \"cat-2\": \"Density: 23\", \"cat_2_index\": 406, \"group\": [1394.0, 745.0, 218.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65552_BALBc-1_X01_Y02_571_380\", \"ini\": 1355, \"clust\": 2003, \"rank\": 1884, \"rankvar\": 969, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1471, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2058, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1877, \"group\": [2005.0, 1135.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65700_BALBc-1_X01_Y02_573_349\", \"ini\": 1354, \"clust\": 1066, \"rank\": 335, \"rankvar\": 593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1472, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2567, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1406, \"group\": [1068.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65716_BALBc-1_X01_Y02_573_564\", \"ini\": 1353, \"clust\": 1956, \"rank\": 2652, \"rankvar\": 2287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1473, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2059, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2390, \"group\": [1957.0, 1116.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65744_BALBc-1_X01_Y02_573_899\", \"ini\": 1352, \"clust\": 2146, \"rank\": 1447, \"rankvar\": 30, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1474, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 623, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2746, \"group\": [2154.0, 1169.0, 344.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65912_BALBc-1_X01_Y02_575_992\", \"ini\": 1351, \"clust\": 2020, \"rank\": 2044, \"rankvar\": 822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1475, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 227, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1111, \"group\": [2039.0, 1144.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65965_BALBc-1_X01_Y02_576_941\", \"ini\": 1350, \"clust\": 2351, \"rank\": 2549, \"rankvar\": 1863, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1476, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 624, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2617, \"group\": [2345.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66161_BALBc-1_X01_Y02_579_641\", \"ini\": 1349, \"clust\": 2364, \"rank\": 1903, \"rankvar\": 1355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1477, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 228, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2467, \"group\": [2364.0, 1262.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66381_BALBc-1_X01_Y02_581_736\", \"ini\": 1348, \"clust\": 2040, \"rank\": 2213, \"rankvar\": 1934, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1478, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 229, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2391, \"group\": [2041.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66539_BALBc-1_X01_Y02_583_714\", \"ini\": 1347, \"clust\": 2104, \"rank\": 2775, \"rankvar\": 2669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1479, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 230, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2567, \"group\": [2102.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66625_BALBc-1_X01_Y02_584_872\", \"ini\": 1346, \"clust\": 1073, \"rank\": 273, \"rankvar\": 1123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1480, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2060, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2523, \"group\": [1074.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66780_BALBc-1_X01_Y02_586_608\", \"ini\": 1345, \"clust\": 916, \"rank\": 188, \"rankvar\": 2, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 231, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2568, \"group\": [915.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66849_BALBc-1_X01_Y02_587_46\", \"ini\": 1344, \"clust\": 361, \"rank\": 348, \"rankvar\": 2269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1482, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 232, \"cat-2\": \"Density: 24\", \"cat_2_index\": 523, \"group\": [359.0, 251.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67001_BALBc-1_X01_Y02_589_528\", \"ini\": 1343, \"clust\": 1000, \"rank\": 481, \"rankvar\": 538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1483, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2061, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2166, \"group\": [1000.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67087_BALBc-1_X01_Y02_59_592\", \"ini\": 1342, \"clust\": 1295, \"rank\": 1593, \"rankvar\": 394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1484, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1247, \"cat-2\": \"Density: 20\", \"cat_2_index\": 160, \"group\": [1295.0, 666.0, 192.0, 54.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67176_BALBc-1_X01_Y02_590_64\", \"ini\": 1341, \"clust\": 646, \"rank\": 623, \"rankvar\": 281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1485, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1973, \"cat-2\": \"Density: 23\", \"cat_2_index\": 407, \"group\": [666.0, 441.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67186_BALBc-1_X01_Y02_590_689\", \"ini\": 1340, \"clust\": 1889, \"rank\": 2825, \"rankvar\": 2783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1486, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 233, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2468, \"group\": [1889.0, 1079.0, 329.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67202_BALBc-1_X01_Y02_590_825\", \"ini\": 1339, \"clust\": 735, \"rank\": 319, \"rankvar\": 396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1487, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2062, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2618, \"group\": [735.0, 466.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67369_BALBc-1_X01_Y02_593_1000\", \"ini\": 1338, \"clust\": 866, \"rank\": 138, \"rankvar\": 255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1488, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1248, \"cat-2\": \"Density: 24\", \"cat_2_index\": 524, \"group\": [879.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67476_BALBc-1_X01_Y02_594_578\", \"ini\": 1337, \"clust\": 1011, \"rank\": 571, \"rankvar\": 489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1489, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 234, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2569, \"group\": [1009.0, 514.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67538_BALBc-1_X01_Y02_595_430\", \"ini\": 1336, \"clust\": 2090, \"rank\": 2679, \"rankvar\": 2584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1490, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2063, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2167, \"group\": [2089.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67823_BALBc-1_X01_Y02_598_978\", \"ini\": 1335, \"clust\": 899, \"rank\": 37, \"rankvar\": 610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1491, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1249, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1532, \"group\": [898.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68029_BALBc-1_X01_Y02_600_513\", \"ini\": 1334, \"clust\": 2057, \"rank\": 2767, \"rankvar\": 2381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2568, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2392, \"group\": [2055.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68242_BALBc-1_X01_Y02_603_235\", \"ini\": 1333, \"clust\": 1987, \"rank\": 2263, \"rankvar\": 1965, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1493, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 235, \"cat-2\": \"Density: 20\", \"cat_2_index\": 161, \"group\": [1992.0, 1126.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68295_BALBc-1_X01_Y02_603_794\", \"ini\": 1332, \"clust\": 49, \"rank\": 864, \"rankvar\": 779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1494, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2064, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2665, \"group\": [49.0, 40.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68341_BALBc-1_X01_Y02_604_634\", \"ini\": 1331, \"clust\": 466, \"rank\": 1093, \"rankvar\": 594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1495, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2065, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2325, \"group\": [471.0, 329.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68346_BALBc-1_X01_Y02_604_71\", \"ini\": 1330, \"clust\": 1981, \"rank\": 2501, \"rankvar\": 1928, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1496, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1250, \"cat-2\": \"Density: 25\", \"cat_2_index\": 663, \"group\": [1982.0, 1123.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68427_BALBc-1_X01_Y02_605_663\", \"ini\": 1329, \"clust\": 153, \"rank\": 1817, \"rankvar\": 2193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1497, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2066, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2393, \"group\": [153.0, 96.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68484_BALBc-1_X01_Y02_606_336\", \"ini\": 1328, \"clust\": 2101, \"rank\": 2579, \"rankvar\": 2251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1498, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2569, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1258, \"group\": [2100.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68508_BALBc-1_X01_Y02_606_611\", \"ini\": 1327, \"clust\": 2270, \"rank\": 1512, \"rankvar\": 1429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1499, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2067, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2747, \"group\": [2271.0, 1239.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68608_BALBc-1_X01_Y02_607_745\", \"ini\": 1326, \"clust\": 2046, \"rank\": 2446, \"rankvar\": 1561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1500, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 236, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2524, \"group\": [2045.0, 1146.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68626_BALBc-1_X01_Y02_607_953\", \"ini\": 1325, \"clust\": 1985, \"rank\": 2309, \"rankvar\": 1582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1501, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 625, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2326, \"group\": [1984.0, 1124.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68666_BALBc-1_X01_Y02_608_396\", \"ini\": 1324, \"clust\": 2345, \"rank\": 2274, \"rankvar\": 1381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1502, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2570, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2086, \"group\": [2342.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68709_BALBc-1_X01_Y02_608_893\", \"ini\": 1323, \"clust\": 2330, \"rank\": 2059, \"rankvar\": 1153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1503, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2571, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2708, \"group\": [2327.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68790_BALBc-1_X01_Y02_609_760\", \"ini\": 1322, \"clust\": 1003, \"rank\": 198, \"rankvar\": 1311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1504, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 237, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2394, \"group\": [1004.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68847_BALBc-1_X01_Y02_61_732\", \"ini\": 1321, \"clust\": 15, \"rank\": 1560, \"rankvar\": 2265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1505, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2572, \"cat-2\": \"Density: 20\", \"cat_2_index\": 162, \"group\": [18.0, 17.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68852_BALBc-1_X01_Y02_61_768\", \"ini\": 1320, \"clust\": 409, \"rank\": 455, \"rankvar\": 1777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1506, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2243, \"cat-2\": \"Density: 22\", \"cat_2_index\": 289, \"group\": [409.0, 287.0, 98.0, 29.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68930_BALBc-1_X01_Y02_610_841\", \"ini\": 1319, \"clust\": 2365, \"rank\": 2299, \"rankvar\": 1588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1507, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2573, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2525, \"group\": [2365.0, 1262.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69043_BALBc-1_X01_Y02_612_22\", \"ini\": 1318, \"clust\": 1543, \"rank\": 2449, \"rankvar\": 1942, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1508, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1974, \"cat-2\": \"Density: 24\", \"cat_2_index\": 525, \"group\": [1543.0, 835.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69048_BALBc-1_X01_Y02_612_265\", \"ini\": 1317, \"clust\": 205, \"rank\": 847, \"rankvar\": 997, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1509, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2574, \"cat-2\": \"Density: 22\", \"cat_2_index\": 290, \"group\": [205.0, 138.0, 46.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69070_BALBc-1_X01_Y02_612_557\", \"ini\": 1316, \"clust\": 2084, \"rank\": 2434, \"rankvar\": 2211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1510, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2068, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2469, \"group\": [2085.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69187_BALBc-1_X01_Y02_614_192\", \"ini\": 1315, \"clust\": 1137, \"rank\": 895, \"rankvar\": 1091, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1511, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2314, \"cat-2\": \"Density: 19\", \"cat_2_index\": 122, \"group\": [1138.0, 540.0, 148.0, 37.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69384_BALBc-1_X01_Y02_616_696\", \"ini\": 1314, \"clust\": 2111, \"rank\": 2760, \"rankvar\": 2575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1512, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2069, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2470, \"group\": [2107.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69441_BALBc-1_X01_Y02_617_581\", \"ini\": 1313, \"clust\": 2527, \"rank\": 1438, \"rankvar\": 1520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1513, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2070, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2666, \"group\": [2527.0, 1355.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69814_BALBc-1_X01_Y02_621_448\", \"ini\": 1312, \"clust\": 2121, \"rank\": 2164, \"rankvar\": 2342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1514, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2071, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2252, \"group\": [2119.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69943_BALBc-1_X01_Y02_622_815\", \"ini\": 1311, \"clust\": 664, \"rank\": 201, \"rankvar\": 1017, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1515, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2072, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2570, \"group\": [663.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70167_BALBc-1_X01_Y02_625_622\", \"ini\": 1310, \"clust\": 2037, \"rank\": 2441, \"rankvar\": 1677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1516, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2073, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2667, \"group\": [2034.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70245_BALBc-1_X01_Y02_626_657\", \"ini\": 1309, \"clust\": 419, \"rank\": 1103, \"rankvar\": 762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1517, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2074, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2571, \"group\": [424.0, 300.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70250_BALBc-1_X01_Y02_626_738\", \"ini\": 1308, \"clust\": 2114, \"rank\": 2731, \"rankvar\": 2693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1518, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2075, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2619, \"group\": [2110.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70390_BALBc-1_X01_Y02_628_794\", \"ini\": 1307, \"clust\": 115, \"rank\": 620, \"rankvar\": 944, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1519, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 915, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2620, \"group\": [118.0, 74.0, 24.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70677_BALBc-1_X01_Y02_631_569\", \"ini\": 1306, \"clust\": 887, \"rank\": 22, \"rankvar\": 236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1520, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 238, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2621, \"group\": [887.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70732_BALBc-1_X01_Y02_632_214\", \"ini\": 1305, \"clust\": 1350, \"rank\": 1361, \"rankvar\": 2658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1521, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2575, \"cat-2\": \"Density: 22\", \"cat_2_index\": 291, \"group\": [1351.0, 712.0, 211.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70788_BALBc-1_X01_Y02_632_885\", \"ini\": 1304, \"clust\": 635, \"rank\": 383, \"rankvar\": 587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1522, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2576, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2526, \"group\": [637.0, 428.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70792_BALBc-1_X01_Y02_632_917\", \"ini\": 1303, \"clust\": 2316, \"rank\": 2043, \"rankvar\": 1299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1523, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 626, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2622, \"group\": [2317.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71010_BALBc-1_X01_Y02_635_775\", \"ini\": 1302, \"clust\": 2053, \"rank\": 2796, \"rankvar\": 2639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1524, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2076, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2471, \"group\": [2050.0, 1148.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71015_BALBc-1_X01_Y02_635_841\", \"ini\": 1301, \"clust\": 2767, \"rank\": 1939, \"rankvar\": 1304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1525, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 916, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2327, \"group\": [2768.0, 1499.0, 447.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71192_BALBc-1_X01_Y02_638_152\", \"ini\": 1300, \"clust\": 125, \"rank\": 964, \"rankvar\": 820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1526, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1251, \"cat-2\": \"Density: 23\", \"cat_2_index\": 408, \"group\": [128.0, 80.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71313_BALBc-1_X01_Y02_639_527\", \"ini\": 1299, \"clust\": 1847, \"rank\": 2137, \"rankvar\": 1783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1527, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2077, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2395, \"group\": [1848.0, 1041.0, 313.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71373_BALBc-1_X01_Y02_64_410\", \"ini\": 1298, \"clust\": 1406, \"rank\": 1859, \"rankvar\": 1050, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1528, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1252, \"cat-2\": \"Density: 21\", \"cat_2_index\": 212, \"group\": [1406.0, 756.0, 223.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71596_BALBc-1_X01_Y02_642_538\", \"ini\": 1297, \"clust\": 2435, \"rank\": 1226, \"rankvar\": 1432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1529, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2078, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2328, \"group\": [2436.0, 1297.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71667_BALBc-1_X01_Y02_643_341\", \"ini\": 1296, \"clust\": 2203, \"rank\": 1194, \"rankvar\": 1310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1530, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2079, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1771, \"group\": [2204.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71767_BALBc-1_X01_Y02_644_390\", \"ini\": 1295, \"clust\": 2036, \"rank\": 2265, \"rankvar\": 954, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1531, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2080, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1988, \"group\": [2036.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71919_BALBc-1_X01_Y02_646_330\", \"ini\": 1294, \"clust\": 2274, \"rank\": 1879, \"rankvar\": 1258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1532, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2081, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1407, \"group\": [2273.0, 1240.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72032_BALBc-1_X01_Y02_647_871\", \"ini\": 1293, \"clust\": 2399, \"rank\": 2706, \"rankvar\": 1553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1533, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2577, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2623, \"group\": [2400.0, 1270.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72139_BALBc-1_X01_Y02_649_280\", \"ini\": 1292, \"clust\": 2704, \"rank\": 2673, \"rankvar\": 2519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1534, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2578, \"cat-2\": \"Density: 26\", \"cat_2_index\": 808, \"group\": [2705.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72165_BALBc-1_X01_Y02_649_642\", \"ini\": 1291, \"clust\": 2100, \"rank\": 2747, \"rankvar\": 2753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1535, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2082, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2777, \"group\": [2115.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72176_BALBc-1_X01_Y02_649_80\", \"ini\": 1290, \"clust\": 810, \"rank\": 68, \"rankvar\": 684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1536, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1253, \"cat-2\": \"Density: 22\", \"cat_2_index\": 292, \"group\": [809.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72245_BALBc-1_X01_Y02_65_662\", \"ini\": 1289, \"clust\": 1163, \"rank\": 1276, \"rankvar\": 2408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1537, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1254, \"cat-2\": \"Density: 21\", \"cat_2_index\": 213, \"group\": [1162.0, 559.0, 155.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72484_BALBc-1_X01_Y02_652_944\", \"ini\": 1288, \"clust\": 2175, \"rank\": 1980, \"rankvar\": 1919, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1538, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 239, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2253, \"group\": [2174.0, 1180.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72716_BALBc-1_X01_Y02_656_182\", \"ini\": 1287, \"clust\": 2695, \"rank\": 2772, \"rankvar\": 2540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1539, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2579, \"cat-2\": \"Density: 24\", \"cat_2_index\": 526, \"group\": [2696.0, 1452.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72777_BALBc-1_X01_Y02_656_712\", \"ini\": 1286, \"clust\": 2079, \"rank\": 2716, \"rankvar\": 2270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1540, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2083, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2624, \"group\": [2077.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72835_BALBc-1_X01_Y02_657_361\", \"ini\": 1285, \"clust\": 802, \"rank\": 302, \"rankvar\": 22, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1541, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2580, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2254, \"group\": [803.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72877_BALBc-1_X01_Y02_657_890\", \"ini\": 1284, \"clust\": 1047, \"rank\": 153, \"rankvar\": 717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 917, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2625, \"group\": [1046.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72970_BALBc-1_X01_Y02_659_402\", \"ini\": 1283, \"clust\": 855, \"rank\": 6, \"rankvar\": 970, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1543, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2084, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2168, \"group\": [853.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72984_BALBc-1_X01_Y02_659_578\", \"ini\": 1282, \"clust\": 2103, \"rank\": 2581, \"rankvar\": 2321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1544, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2085, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2668, \"group\": [2114.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73026_BALBc-1_X01_Y02_659_964\", \"ini\": 1281, \"clust\": 2375, \"rank\": 2561, \"rankvar\": 2491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1545, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2581, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1772, \"group\": [2374.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73130_BALBc-1_X01_Y02_660_371\", \"ini\": 1280, \"clust\": 970, \"rank\": 814, \"rankvar\": 388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1546, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 240, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2169, \"group\": [970.0, 497.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73323_BALBc-1_X01_Y02_662_515\", \"ini\": 1279, \"clust\": 991, \"rank\": 645, \"rankvar\": 1181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1547, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2086, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2087, \"group\": [992.0, 509.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73330_BALBc-1_X01_Y02_662_600\", \"ini\": 1278, \"clust\": 483, \"rank\": 948, \"rankvar\": 213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1548, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2087, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2709, \"group\": [484.0, 332.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73406_BALBc-1_X01_Y02_663_676\", \"ini\": 1277, \"clust\": 2014, \"rank\": 2195, \"rankvar\": 2127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1549, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2088, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2669, \"group\": [2017.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73682_BALBc-1_X01_Y02_667_559\", \"ini\": 1276, \"clust\": 1050, \"rank\": 337, \"rankvar\": 1590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1550, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2089, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2626, \"group\": [1051.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73864_BALBc-1_X01_Y02_669_904\", \"ini\": 1275, \"clust\": 2025, \"rank\": 2527, \"rankvar\": 1764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 241, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2396, \"group\": [2024.0, 1140.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74137_BALBc-1_X01_Y02_672_747\", \"ini\": 1274, \"clust\": 868, \"rank\": 67, \"rankvar\": 269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1552, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2090, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2572, \"group\": [867.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74157_BALBc-1_X01_Y02_672_938\", \"ini\": 1273, \"clust\": 898, \"rank\": 45, \"rankvar\": 535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1553, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1255, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2170, \"group\": [897.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74183_BALBc-1_X01_Y02_673_288\", \"ini\": 1272, \"clust\": 523, \"rank\": 423, \"rankvar\": 1607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1554, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2091, \"cat-2\": \"Density: 27\", \"cat_2_index\": 958, \"group\": [523.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74202_BALBc-1_X01_Y02_673_537\", \"ini\": 1271, \"clust\": 1134, \"rank\": 987, \"rankvar\": 879, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1555, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2092, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2255, \"group\": [1134.0, 536.0, 146.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74319_BALBc-1_X01_Y02_674_785\", \"ini\": 1270, \"clust\": 1354, \"rank\": 946, \"rankvar\": 927, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1556, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 918, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2527, \"group\": [1355.0, 716.0, 212.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74367_BALBc-1_X01_Y02_675_381\", \"ini\": 1269, \"clust\": 2356, \"rank\": 2639, \"rankvar\": 2100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1557, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 242, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2256, \"group\": [2351.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74379_BALBc-1_X01_Y02_675_428\", \"ini\": 1268, \"clust\": 2106, \"rank\": 2629, \"rankvar\": 2254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1558, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2093, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2171, \"group\": [2106.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74438_BALBc-1_X01_Y02_676_159\", \"ini\": 1267, \"clust\": 1260, \"rank\": 2503, \"rankvar\": 2562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1559, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2456, \"cat-2\": \"Density: 21\", \"cat_2_index\": 214, \"group\": [1260.0, 639.0, 183.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74507_BALBc-1_X01_Y02_676_988\", \"ini\": 1266, \"clust\": 2267, \"rank\": 1808, \"rankvar\": 1344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1560, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1256, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1112, \"group\": [2267.0, 1238.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74529_BALBc-1_X01_Y02_677_328\", \"ini\": 1265, \"clust\": 2236, \"rank\": 1577, \"rankvar\": 378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1561, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2094, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1773, \"group\": [2237.0, 1216.0, 363.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74573_BALBc-1_X01_Y02_677_811\", \"ini\": 1264, \"clust\": 1848, \"rank\": 2152, \"rankvar\": 2413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1562, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1257, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2670, \"group\": [1854.0, 1046.0, 315.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74598_BALBc-1_X01_Y02_678_172\", \"ini\": 1263, \"clust\": 2731, \"rank\": 2350, \"rankvar\": 2557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1563, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2582, \"cat-2\": \"Density: 24\", \"cat_2_index\": 527, \"group\": [2733.0, 1468.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74641_BALBc-1_X01_Y02_678_615\", \"ini\": 1262, \"clust\": 2130, \"rank\": 2615, \"rankvar\": 2646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1564, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2095, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2778, \"group\": [2128.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74779_BALBc-1_X01_Y02_68_443\", \"ini\": 1261, \"clust\": 1074, \"rank\": 575, \"rankvar\": 1096, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1565, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 704, \"cat-2\": \"Density: 26\", \"cat_2_index\": 809, \"group\": [1075.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74924_BALBc-1_X01_Y02_681_731\", \"ini\": 1260, \"clust\": 2352, \"rank\": 2483, \"rankvar\": 1422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1566, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2096, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2397, \"group\": [2347.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75385_BALBc-1_X01_Y02_687_918\", \"ini\": 1259, \"clust\": 717, \"rank\": 512, \"rankvar\": 459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1567, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1258, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2472, \"group\": [719.0, 460.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75452_BALBc-1_X01_Y02_688_793\", \"ini\": 1258, \"clust\": 1079, \"rank\": 189, \"rankvar\": 957, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1568, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1259, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2573, \"group\": [1082.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75503_BALBc-1_X01_Y02_689_468\", \"ini\": 1257, \"clust\": 2107, \"rank\": 2739, \"rankvar\": 2462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1569, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2097, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2329, \"group\": [2104.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75575_BALBc-1_X01_Y02_69_548\", \"ini\": 1256, \"clust\": 2774, \"rank\": 2320, \"rankvar\": 2094, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1570, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 243, \"cat-2\": \"Density: 26\", \"cat_2_index\": 810, \"group\": [2773.0, 1502.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75777_BALBc-1_X01_Y02_692_441\", \"ini\": 1255, \"clust\": 878, \"rank\": 2, \"rankvar\": 478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1571, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 244, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1989, \"group\": [875.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75798_BALBc-1_X01_Y02_692_654\", \"ini\": 1254, \"clust\": 2041, \"rank\": 1757, \"rankvar\": 1168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1572, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2098, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2748, \"group\": [2044.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75805_BALBc-1_X01_Y02_692_719\", \"ini\": 1253, \"clust\": 812, \"rank\": 230, \"rankvar\": 84, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1573, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2099, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2749, \"group\": [815.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76045_BALBc-1_X01_Y02_695_763\", \"ini\": 1252, \"clust\": 2361, \"rank\": 2315, \"rankvar\": 1511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1574, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1260, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2671, \"group\": [2361.0, 1261.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76047_BALBc-1_X01_Y02_695_820\", \"ini\": 1251, \"clust\": 1843, \"rank\": 1747, \"rankvar\": 1925, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1261, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2627, \"group\": [1841.0, 1034.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76155_BALBc-1_X01_Y02_697_37\", \"ini\": 1250, \"clust\": 562, \"rank\": 1274, \"rankvar\": 854, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1576, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2492, \"cat-2\": \"Density: 20\", \"cat_2_index\": 163, \"group\": [562.0, 386.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76157_BALBc-1_X01_Y02_697_390\", \"ini\": 1249, \"clust\": 875, \"rank\": 4, \"rankvar\": 526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1577, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 245, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2257, \"group\": [872.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76261_BALBc-1_X01_Y02_698_588\", \"ini\": 1248, \"clust\": 1808, \"rank\": 2788, \"rankvar\": 2817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1578, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2100, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2750, \"group\": [1809.0, 1023.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76284_BALBc-1_X01_Y02_698_894\", \"ini\": 1247, \"clust\": 996, \"rank\": 414, \"rankvar\": 888, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1579, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 919, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2710, \"group\": [1006.0, 512.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76311_BALBc-1_X01_Y02_699_282\", \"ini\": 1246, \"clust\": 1680, \"rank\": 2074, \"rankvar\": 1610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1580, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2583, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1259, \"group\": [1681.0, 938.0, 278.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76337_BALBc-1_X01_Y02_699_564\", \"ini\": 1245, \"clust\": 1853, \"rank\": 2714, \"rankvar\": 2180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1581, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2101, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2628, \"group\": [1850.0, 1042.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76344_BALBc-1_X01_Y02_699_679\", \"ini\": 1244, \"clust\": 1126, \"rank\": 1164, \"rankvar\": 1056, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1582, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2102, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2629, \"group\": [1126.0, 528.0, 142.0, 35.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76479_BALBc-1_X01_Y02_70_471\", \"ini\": 1243, \"clust\": 1800, \"rank\": 2319, \"rankvar\": 2629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1583, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2457, \"cat-2\": \"Density: 26\", \"cat_2_index\": 811, \"group\": [1804.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76545_BALBc-1_X01_Y02_700_356\", \"ini\": 1242, \"clust\": 1030, \"rank\": 323, \"rankvar\": 462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1584, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 246, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2088, \"group\": [1028.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76565_BALBc-1_X01_Y02_700_603\", \"ini\": 1241, \"clust\": 2077, \"rank\": 2776, \"rankvar\": 2767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1585, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 247, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2751, \"group\": [2080.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76633_BALBc-1_X01_Y02_701_469\", \"ini\": 1240, \"clust\": 651, \"rank\": 264, \"rankvar\": 448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1586, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 248, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2258, \"group\": [651.0, 437.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77012_BALBc-1_X01_Y02_706_499\", \"ini\": 1239, \"clust\": 2251, \"rank\": 1764, \"rankvar\": 524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1587, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2103, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2330, \"group\": [2251.0, 1228.0, 370.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77022_BALBc-1_X01_Y02_706_622\", \"ini\": 1238, \"clust\": 2409, \"rank\": 1145, \"rankvar\": 1353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1588, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2104, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2711, \"group\": [2413.0, 1283.0, 385.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77055_BALBc-1_X01_Y02_706_998\", \"ini\": 1237, \"clust\": 2415, \"rank\": 1271, \"rankvar\": 670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1589, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1262, \"cat-2\": \"Density: 22\", \"cat_2_index\": 293, \"group\": [2419.0, 1287.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77190_BALBc-1_X01_Y02_708_738\", \"ini\": 1236, \"clust\": 468, \"rank\": 752, \"rankvar\": 500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1590, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1263, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2574, \"group\": [469.0, 327.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77401_BALBc-1_X01_Y02_710_828\", \"ini\": 1235, \"clust\": 1012, \"rank\": 444, \"rankvar\": 43, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1264, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2630, \"group\": [1010.0, 514.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77491_BALBc-1_X01_Y02_711_906\", \"ini\": 1234, \"clust\": 2376, \"rank\": 2332, \"rankvar\": 1898, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1592, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 249, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2672, \"group\": [2375.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77533_BALBc-1_X01_Y02_712_413\", \"ini\": 1233, \"clust\": 2366, \"rank\": 2065, \"rankvar\": 880, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1593, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2105, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2331, \"group\": [2366.0, 1262.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77644_BALBc-1_X01_Y02_713_803\", \"ini\": 1232, \"clust\": 1830, \"rank\": 2668, \"rankvar\": 2177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1594, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1265, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2631, \"group\": [1829.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77833_BALBc-1_X01_Y02_716_257\", \"ini\": 1231, \"clust\": 258, \"rank\": 849, \"rankvar\": 759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1595, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2584, \"cat-2\": \"Density: 24\", \"cat_2_index\": 528, \"group\": [257.0, 180.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77991_BALBc-1_X01_Y02_718_159\", \"ini\": 1230, \"clust\": 1256, \"rank\": 2063, \"rankvar\": 1984, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1596, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2585, \"cat-2\": \"Density: 22\", \"cat_2_index\": 294, \"group\": [1261.0, 640.0, 184.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78053_BALBc-1_X01_Y02_718_850\", \"ini\": 1229, \"clust\": 1151, \"rank\": 2016, \"rankvar\": 2090, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1597, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1266, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2473, \"group\": [1152.0, 552.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78060_BALBc-1_X01_Y02_718_925\", \"ini\": 1228, \"clust\": 1093, \"rank\": 227, \"rankvar\": 338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1598, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1267, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2575, \"group\": [1094.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78089_BALBc-1_X01_Y02_719_369\", \"ini\": 1227, \"clust\": 1923, \"rank\": 2324, \"rankvar\": 2002, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1599, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 250, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2172, \"group\": [1923.0, 1105.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78113_BALBc-1_X01_Y02_719_632\", \"ini\": 1226, \"clust\": 2080, \"rank\": 2774, \"rankvar\": 2615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1600, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 251, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2752, \"group\": [2078.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78309_BALBc-1_X01_Y02_721_333\", \"ini\": 1225, \"clust\": 718, \"rank\": 147, \"rankvar\": 85, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1601, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 252, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1990, \"group\": [717.0, 460.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78374_BALBc-1_X01_Y02_721_954\", \"ini\": 1224, \"clust\": 1204, \"rank\": 962, \"rankvar\": 1824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1602, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1268, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2089, \"group\": [1203.0, 596.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78457_BALBc-1_X01_Y02_722_887\", \"ini\": 1223, \"clust\": 2242, \"rank\": 2094, \"rankvar\": 482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1603, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 253, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2816, \"group\": [2241.0, 1219.0, 366.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78466_BALBc-1_X01_Y02_723_123\", \"ini\": 1222, \"clust\": 2814, \"rank\": 1509, \"rankvar\": 1368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1604, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 920, \"cat-2\": \"Density: 21\", \"cat_2_index\": 215, \"group\": [2813.0, 1528.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78589_BALBc-1_X01_Y02_724_723\", \"ini\": 1221, \"clust\": 2545, \"rank\": 1840, \"rankvar\": 1661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1605, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2106, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2474, \"group\": [2546.0, 1371.0, 408.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78729_BALBc-1_X01_Y02_726_667\", \"ini\": 1220, \"clust\": 1060, \"rank\": 251, \"rankvar\": 1163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1606, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 254, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2753, \"group\": [1060.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78765_BALBc-1_X01_Y02_727_233\", \"ini\": 1219, \"clust\": 2688, \"rank\": 2812, \"rankvar\": 2451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1607, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2586, \"cat-2\": \"Density: 25\", \"cat_2_index\": 664, \"group\": [2692.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78858_BALBc-1_X01_Y02_728_317\", \"ini\": 1218, \"clust\": 1938, \"rank\": 1938, \"rankvar\": 1234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1608, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 255, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2090, \"group\": [1939.0, 1111.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78883_BALBc-1_X01_Y02_728_677\", \"ini\": 1217, \"clust\": 500, \"rank\": 975, \"rankvar\": 143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1609, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2107, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2632, \"group\": [499.0, 340.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78937_BALBc-1_X01_Y02_729_454\", \"ini\": 1216, \"clust\": 2346, \"rank\": 2196, \"rankvar\": 1187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1610, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2108, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2259, \"group\": [2343.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78946_BALBc-1_X01_Y02_729_586\", \"ini\": 1215, \"clust\": 2112, \"rank\": 2783, \"rankvar\": 2563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1611, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2109, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2673, \"group\": [2108.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79000_BALBc-1_X01_Y02_73_364\", \"ini\": 1214, \"clust\": 1270, \"rank\": 1206, \"rankvar\": 1626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1612, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1269, \"cat-2\": \"Density: 21\", \"cat_2_index\": 216, \"group\": [1271.0, 650.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79124_BALBc-1_X01_Y02_730_931\", \"ini\": 1213, \"clust\": 1828, \"rank\": 2481, \"rankvar\": 1609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1613, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1270, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2332, \"group\": [1828.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79128_BALBc-1_X01_Y02_730_977\", \"ini\": 1212, \"clust\": 1855, \"rank\": 2664, \"rankvar\": 2679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1614, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1271, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1533, \"group\": [1856.0, 1048.0, 316.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79171_BALBc-1_X01_Y02_731_534\", \"ini\": 1211, \"clust\": 2277, \"rank\": 1888, \"rankvar\": 1455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1615, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2110, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2633, \"group\": [2277.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79269_BALBc-1_X01_Y02_732_742\", \"ini\": 1210, \"clust\": 2484, \"rank\": 1478, \"rankvar\": 542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1616, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1272, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2634, \"group\": [2483.0, 1330.0, 396.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79364_BALBc-1_X01_Y02_733_888\", \"ini\": 1209, \"clust\": 918, \"rank\": 95, \"rankvar\": 28, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1617, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1273, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2635, \"group\": [918.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79543_BALBc-1_X01_Y02_735_827\", \"ini\": 1208, \"clust\": 895, \"rank\": 42, \"rankvar\": 344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1618, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 256, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2528, \"group\": [894.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79586_BALBc-1_X01_Y02_736_403\", \"ini\": 1207, \"clust\": 1054, \"rank\": 668, \"rankvar\": 433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1619, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2111, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2398, \"group\": [1055.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79601_BALBc-1_X01_Y02_736_604\", \"ini\": 1206, \"clust\": 1094, \"rank\": 124, \"rankvar\": 623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1620, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 257, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2636, \"group\": [1103.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79632_BALBc-1_X01_Y02_737_250\", \"ini\": 1205, \"clust\": 1099, \"rank\": 52, \"rankvar\": 166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1621, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 258, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1113, \"group\": [1096.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79634_BALBc-1_X01_Y02_737_3\", \"ini\": 1204, \"clust\": 1460, \"rank\": 2313, \"rankvar\": 1599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1622, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2812, \"cat-2\": \"Density: 25\", \"cat_2_index\": 665, \"group\": [1460.0, 796.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79643_BALBc-1_X01_Y02_737_366\", \"ini\": 1203, \"clust\": 2094, \"rank\": 2562, \"rankvar\": 2686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1623, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 259, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2260, \"group\": [2093.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79664_BALBc-1_X01_Y02_737_57\", \"ini\": 1202, \"clust\": 127, \"rank\": 934, \"rankvar\": 481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1624, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2493, \"cat-2\": \"Density: 22\", \"cat_2_index\": 295, \"group\": [127.0, 80.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79820_BALBc-1_X01_Y02_739_546\", \"ini\": 1201, \"clust\": 2086, \"rank\": 2386, \"rankvar\": 2359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1625, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2112, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2754, \"group\": [2084.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79964_BALBc-1_X01_Y02_740_484\", \"ini\": 1200, \"clust\": 2105, \"rank\": 2804, \"rankvar\": 2698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1626, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 260, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1991, \"group\": [2103.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80233_BALBc-1_X01_Y02_744_315\", \"ini\": 1199, \"clust\": 2208, \"rank\": 1566, \"rankvar\": 1363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1627, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1274, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1992, \"group\": [2208.0, 1190.0, 349.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80367_BALBc-1_X01_Y02_746_112\", \"ini\": 1198, \"clust\": 66, \"rank\": 1100, \"rankvar\": 2059, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1628, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2315, \"cat-2\": \"Density: 20\", \"cat_2_index\": 164, \"group\": [64.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80487_BALBc-1_X01_Y02_747_644\", \"ini\": 1197, \"clust\": 479, \"rank\": 374, \"rankvar\": 753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1629, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2113, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2779, \"group\": [479.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80586_BALBc-1_X01_Y02_748_800\", \"ini\": 1196, \"clust\": 1815, \"rank\": 2566, \"rankvar\": 1194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1630, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1275, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2637, \"group\": [1816.0, 1027.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80591_BALBc-1_X01_Y02_748_849\", \"ini\": 1195, \"clust\": 2394, \"rank\": 2412, \"rankvar\": 873, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1631, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 261, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2712, \"group\": [2397.0, 1269.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80621_BALBc-1_X01_Y02_749_281\", \"ini\": 1194, \"clust\": 2596, \"rank\": 1606, \"rankvar\": 430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1632, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 262, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1534, \"group\": [2595.0, 1403.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80660_BALBc-1_X01_Y02_749_710\", \"ini\": 1193, \"clust\": 2173, \"rank\": 1392, \"rankvar\": 1082, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1633, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 263, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2713, \"group\": [2172.0, 1178.0, 347.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80840_BALBc-1_X01_Y02_750_977\", \"ini\": 1192, \"clust\": 429, \"rank\": 554, \"rankvar\": 1006, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1634, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1276, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1665, \"group\": [428.0, 303.0, 105.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80920_BALBc-1_X01_Y02_752_157\", \"ini\": 1191, \"clust\": 556, \"rank\": 794, \"rankvar\": 286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1635, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 264, \"cat-2\": \"Density: 21\", \"cat_2_index\": 217, \"group\": [555.0, 380.0, 127.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80933_BALBc-1_X01_Y02_752_347\", \"ini\": 1190, \"clust\": 389, \"rank\": 1144, \"rankvar\": 2096, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1636, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1277, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2173, \"group\": [389.0, 271.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80959_BALBc-1_X01_Y02_752_681\", \"ini\": 1189, \"clust\": 2321, \"rank\": 1979, \"rankvar\": 1349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1637, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 265, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2576, \"group\": [2319.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81055_BALBc-1_X01_Y02_753_730\", \"ini\": 1188, \"clust\": 2031, \"rank\": 2593, \"rankvar\": 2243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1638, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 266, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2674, \"group\": [2030.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81183_BALBc-1_X01_Y02_755_360\", \"ini\": 1187, \"clust\": 2209, \"rank\": 1469, \"rankvar\": 650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1639, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1278, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2174, \"group\": [2209.0, 1190.0, 349.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81243_BALBc-1_X01_Y02_756_213\", \"ini\": 1186, \"clust\": 2613, \"rank\": 1598, \"rankvar\": 946, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1640, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2587, \"cat-2\": \"Density: 24\", \"cat_2_index\": 529, \"group\": [2614.0, 1411.0, 417.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81269_BALBc-1_X01_Y02_756_466\", \"ini\": 1185, \"clust\": 2092, \"rank\": 2528, \"rankvar\": 2536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1641, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 267, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2091, \"group\": [2091.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81277_BALBc-1_X01_Y02_756_573\", \"ini\": 1184, \"clust\": 837, \"rank\": 208, \"rankvar\": 94, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1642, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 268, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2802, \"group\": [840.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81309_BALBc-1_X01_Y02_756_874\", \"ini\": 1183, \"clust\": 3, \"rank\": 1554, \"rankvar\": 850, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1643, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1279, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2638, \"group\": [4.0, 4.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81353_BALBc-1_X01_Y02_757_444\", \"ini\": 1182, \"clust\": 2131, \"rank\": 2347, \"rankvar\": 1842, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1644, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2114, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2175, \"group\": [2129.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81355_BALBc-1_X01_Y02_757_476\", \"ini\": 1181, \"clust\": 725, \"rank\": 711, \"rankvar\": 50, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1645, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2115, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2092, \"group\": [742.0, 469.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81446_BALBc-1_X01_Y02_758_596\", \"ini\": 1180, \"clust\": 2116, \"rank\": 2140, \"rankvar\": 1908, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1646, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 269, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2780, \"group\": [2116.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81458_BALBc-1_X01_Y02_758_756\", \"ini\": 1179, \"clust\": 790, \"rank\": 84, \"rankvar\": 982, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1647, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1280, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2714, \"group\": [791.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81459_BALBc-1_X01_Y02_758_783\", \"ini\": 1178, \"clust\": 2424, \"rank\": 1370, \"rankvar\": 823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1648, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1281, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2675, \"group\": [2425.0, 1292.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81463_BALBc-1_X01_Y02_758_825\", \"ini\": 1177, \"clust\": 1886, \"rank\": 2165, \"rankvar\": 1845, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1649, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 270, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2676, \"group\": [1886.0, 1076.0, 328.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81725_BALBc-1_X01_Y02_761_43\", \"ini\": 1176, \"clust\": 2824, \"rank\": 1891, \"rankvar\": 1468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1650, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2316, \"cat-2\": \"Density: 20\", \"cat_2_index\": 165, \"group\": [2822.0, 1534.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81746_BALBc-1_X01_Y02_761_621\", \"ini\": 1175, \"clust\": 2380, \"rank\": 2658, \"rankvar\": 1949, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1651, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2116, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2715, \"group\": [2380.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81892_BALBc-1_X01_Y02_763_542\", \"ini\": 1174, \"clust\": 2118, \"rank\": 2209, \"rankvar\": 2482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1652, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 271, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2716, \"group\": [2121.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82092_BALBc-1_X01_Y02_766_413\", \"ini\": 1173, \"clust\": 2191, \"rank\": 1704, \"rankvar\": 1972, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1653, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2117, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2176, \"group\": [2187.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82120_BALBc-1_X01_Y02_766_839\", \"ini\": 1172, \"clust\": 549, \"rank\": 732, \"rankvar\": 1528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1654, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 272, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2781, \"group\": [554.0, 379.0, 126.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82269_BALBc-1_X01_Y02_768_578\", \"ini\": 1171, \"clust\": 2317, \"rank\": 2078, \"rankvar\": 1737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1655, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 273, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2677, \"group\": [2316.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82462_BALBc-1_X01_Y02_770_223\", \"ini\": 1170, \"clust\": 2579, \"rank\": 1640, \"rankvar\": 1973, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1656, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 274, \"cat-2\": \"Density: 25\", \"cat_2_index\": 666, \"group\": [2579.0, 1393.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82468_BALBc-1_X01_Y02_770_255\", \"ini\": 1169, \"clust\": 259, \"rank\": 969, \"rankvar\": 263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1657, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 275, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1408, \"group\": [258.0, 181.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82542_BALBc-1_X01_Y02_771_302\", \"ini\": 1168, \"clust\": 449, \"rank\": 396, \"rankvar\": 324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1658, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1282, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1774, \"group\": [448.0, 313.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82661_BALBc-1_X01_Y02_772_660\", \"ini\": 1167, \"clust\": 2150, \"rank\": 957, \"rankvar\": 270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1659, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2118, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2782, \"group\": [2148.0, 1165.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82801_BALBc-1_X01_Y02_774_517\", \"ini\": 1166, \"clust\": 2224, \"rank\": 1463, \"rankvar\": 1476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1660, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2119, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2333, \"group\": [2223.0, 1203.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82803_BALBc-1_X01_Y02_774_554\", \"ini\": 1165, \"clust\": 512, \"rank\": 719, \"rankvar\": 307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1661, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 276, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2678, \"group\": [513.0, 352.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82911_BALBc-1_X01_Y02_776_103\", \"ini\": 1164, \"clust\": 2770, \"rank\": 1976, \"rankvar\": 1216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1662, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1283, \"cat-2\": \"Density: 20\", \"cat_2_index\": 166, \"group\": [2770.0, 1500.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83429_BALBc-1_X01_Y02_781_749\", \"ini\": 1163, \"clust\": 2308, \"rank\": 1915, \"rankvar\": 1712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1663, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 277, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2679, \"group\": [2305.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83606_BALBc-1_X01_Y02_784_170\", \"ini\": 1162, \"clust\": 691, \"rank\": 170, \"rankvar\": 1780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1664, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 278, \"cat-2\": \"Density: 24\", \"cat_2_index\": 530, \"group\": [692.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83627_BALBc-1_X01_Y02_784_444\", \"ini\": 1161, \"clust\": 1052, \"rank\": 508, \"rankvar\": 978, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1665, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 279, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2177, \"group\": [1050.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83644_BALBc-1_X01_Y02_784_688\", \"ini\": 1160, \"clust\": 2163, \"rank\": 1592, \"rankvar\": 1220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1666, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 280, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2755, \"group\": [2168.0, 1174.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83649_BALBc-1_X01_Y02_784_705\", \"ini\": 1159, \"clust\": 1928, \"rank\": 2648, \"rankvar\": 2653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1667, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 281, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2577, \"group\": [1930.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83656_BALBc-1_X01_Y02_784_772\", \"ini\": 1158, \"clust\": 276, \"rank\": 1301, \"rankvar\": 240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1668, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 282, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2756, \"group\": [279.0, 201.0, 73.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83744_BALBc-1_X01_Y02_785_846\", \"ini\": 1157, \"clust\": 1188, \"rank\": 1412, \"rankvar\": 1592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1669, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1284, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2803, \"group\": [1193.0, 586.0, 164.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83780_BALBc-1_X01_Y02_786_374\", \"ini\": 1156, \"clust\": 1790, \"rank\": 2377, \"rankvar\": 2657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1670, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1285, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2178, \"group\": [1795.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84081_BALBc-1_X01_Y02_789_906\", \"ini\": 1155, \"clust\": 2369, \"rank\": 2356, \"rankvar\": 1732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1671, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1286, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2717, \"group\": [2376.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84286_BALBc-1_X01_Y02_791_823\", \"ini\": 1154, \"clust\": 1193, \"rank\": 896, \"rankvar\": 188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1672, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 283, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2783, \"group\": [1194.0, 587.0, 165.0, 44.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84428_BALBc-1_X01_Y02_793_482\", \"ini\": 1153, \"clust\": 2349, \"rank\": 2573, \"rankvar\": 1413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1673, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2120, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2578, \"group\": [2346.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84437_BALBc-1_X01_Y02_793_558\", \"ini\": 1152, \"clust\": 2038, \"rank\": 2537, \"rankvar\": 1986, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1674, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 284, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2639, \"group\": [2035.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84444_BALBc-1_X01_Y02_793_629\", \"ini\": 1151, \"clust\": 2075, \"rank\": 2591, \"rankvar\": 2678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1675, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2121, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2718, \"group\": [2075.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84524_BALBc-1_X01_Y02_794_639\", \"ini\": 1150, \"clust\": 480, \"rank\": 304, \"rankvar\": 1125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1676, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2122, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2719, \"group\": [480.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84668_BALBc-1_X01_Y02_796_252\", \"ini\": 1149, \"clust\": 2678, \"rank\": 2041, \"rankvar\": 761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1677, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 285, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1114, \"group\": [2680.0, 1445.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84693_BALBc-1_X01_Y02_796_606\", \"ini\": 1148, \"clust\": 2211, \"rank\": 1590, \"rankvar\": 154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1678, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2123, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2822, \"group\": [2211.0, 1192.0, 350.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84771_BALBc-1_X01_Y02_797_576\", \"ini\": 1147, \"clust\": 481, \"rank\": 279, \"rankvar\": 857, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1679, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 286, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2804, \"group\": [481.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84890_BALBc-1_X01_Y02_799_133\", \"ini\": 1146, \"clust\": 97, \"rank\": 745, \"rankvar\": 1670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1680, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1287, \"cat-2\": \"Density: 22\", \"cat_2_index\": 296, \"group\": [97.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85210_BALBc-1_X01_Y02_801_416\", \"ini\": 1145, \"clust\": 491, \"rank\": 944, \"rankvar\": 195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1681, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2124, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2334, \"group\": [492.0, 336.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85318_BALBc-1_X01_Y02_802_791\", \"ini\": 1144, \"clust\": 2147, \"rank\": 1247, \"rankvar\": 547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1682, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 287, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2720, \"group\": [2146.0, 1163.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85392_BALBc-1_X01_Y02_803_774\", \"ini\": 1143, \"clust\": 2393, \"rank\": 2343, \"rankvar\": 1207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1683, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 288, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2757, \"group\": [2392.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85429_BALBc-1_X01_Y02_804_316\", \"ini\": 1142, \"clust\": 2485, \"rank\": 1812, \"rankvar\": 1298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1684, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1288, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1535, \"group\": [2484.0, 1331.0, 396.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85448_BALBc-1_X01_Y02_804_541\", \"ini\": 1141, \"clust\": 2480, \"rank\": 1959, \"rankvar\": 392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1685, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 289, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2640, \"group\": [2481.0, 1328.0, 395.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85463_BALBc-1_X01_Y02_804_714\", \"ini\": 1140, \"clust\": 472, \"rank\": 509, \"rankvar\": 268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1686, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 290, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2721, \"group\": [472.0, 330.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85557_BALBc-1_X01_Y02_805_753\", \"ini\": 1139, \"clust\": 2167, \"rank\": 1547, \"rankvar\": 1027, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1687, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 291, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2758, \"group\": [2166.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85602_BALBc-1_X01_Y02_806_33\", \"ini\": 1138, \"clust\": 1061, \"rank\": 669, \"rankvar\": 75, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1688, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2458, \"cat-2\": \"Density: 25\", \"cat_2_index\": 667, \"group\": [1065.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85669_BALBc-1_X01_Y02_807_182\", \"ini\": 1137, \"clust\": 2701, \"rank\": 2694, \"rankvar\": 2494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1689, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2588, \"cat-2\": \"Density: 27\", \"cat_2_index\": 959, \"group\": [2698.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85834_BALBc-1_X01_Y02_809_436\", \"ini\": 1136, \"clust\": 1908, \"rank\": 2185, \"rankvar\": 2147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1690, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2125, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2261, \"group\": [1907.0, 1094.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85868_BALBc-1_X01_Y02_809_912\", \"ini\": 1135, \"clust\": 1751, \"rank\": 359, \"rankvar\": 2203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1691, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1289, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2805, \"group\": [1750.0, 991.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85898_BALBc-1_X01_Y02_81_389\", \"ini\": 1134, \"clust\": 1327, \"rank\": 976, \"rankvar\": 1971, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1692, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1290, \"cat-2\": \"Density: 21\", \"cat_2_index\": 218, \"group\": [1327.0, 694.0, 207.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85923_BALBc-1_X01_Y02_81_743\", \"ini\": 1133, \"clust\": 1738, \"rank\": 2729, \"rankvar\": 2759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1693, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2589, \"cat-2\": \"Density: 25\", \"cat_2_index\": 668, \"group\": [1738.0, 981.0, 293.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85974_BALBc-1_X01_Y02_810_459\", \"ini\": 1132, \"clust\": 2196, \"rank\": 1627, \"rankvar\": 2332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1694, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 292, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2262, \"group\": [2190.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85979_BALBc-1_X01_Y02_810_520\", \"ini\": 1131, \"clust\": 2032, \"rank\": 2214, \"rankvar\": 1604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1695, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2126, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2475, \"group\": [2033.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86074_BALBc-1_X01_Y02_811_664\", \"ini\": 1130, \"clust\": 2370, \"rank\": 2351, \"rankvar\": 1230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1696, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 293, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2759, \"group\": [2369.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86098_BALBc-1_X01_Y02_811_975\", \"ini\": 1129, \"clust\": 2430, \"rank\": 837, \"rankvar\": 608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1697, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1291, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1666, \"group\": [2435.0, 1296.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86157_BALBc-1_X01_Y02_812_892\", \"ini\": 1128, \"clust\": 14, \"rank\": 1117, \"rankvar\": 306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1698, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1292, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2806, \"group\": [15.0, 14.0, 8.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86213_BALBc-1_X01_Y02_813_595\", \"ini\": 1127, \"clust\": 2076, \"rank\": 2618, \"rankvar\": 2559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1699, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 294, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2680, \"group\": [2076.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86243_BALBc-1_X01_Y02_813_835\", \"ini\": 1126, \"clust\": 2444, \"rank\": 1645, \"rankvar\": 828, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1700, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 295, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2722, \"group\": [2445.0, 1301.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86335_BALBc-1_X01_Y02_814_809\", \"ini\": 1125, \"clust\": 637, \"rank\": 254, \"rankvar\": 342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1701, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 296, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2723, \"group\": [636.0, 428.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86391_BALBc-1_X01_Y02_815_690\", \"ini\": 1124, \"clust\": 847, \"rank\": 333, \"rankvar\": 66, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1702, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 297, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2784, \"group\": [847.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86425_BALBc-1_X01_Y02_816_222\", \"ini\": 1123, \"clust\": 2481, \"rank\": 1968, \"rankvar\": 1479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1703, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 298, \"cat-2\": \"Density: 27\", \"cat_2_index\": 960, \"group\": [2482.0, 1329.0, 395.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86647_BALBc-1_X01_Y02_819_250\", \"ini\": 1122, \"clust\": 2651, \"rank\": 2055, \"rankvar\": 341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1704, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 299, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1115, \"group\": [2652.0, 1439.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86676_BALBc-1_X01_Y02_819_581\", \"ini\": 1121, \"clust\": 2115, \"rank\": 2758, \"rankvar\": 2638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1705, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 300, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2681, \"group\": [2111.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86754_BALBc-1_X01_Y02_82_796\", \"ini\": 1120, \"clust\": 2684, \"rank\": 2586, \"rankvar\": 2235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1706, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1293, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1116, \"group\": [2687.0, 1448.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86790_BALBc-1_X01_Y02_820_302\", \"ini\": 1119, \"clust\": 161, \"rank\": 1394, \"rankvar\": 840, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1707, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 301, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1775, \"group\": [162.0, 103.0, 34.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86794_BALBc-1_X01_Y02_820_348\", \"ini\": 1118, \"clust\": 1764, \"rank\": 2080, \"rankvar\": 2742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1708, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1294, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2093, \"group\": [1765.0, 1000.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86829_BALBc-1_X01_Y02_820_75\", \"ini\": 1117, \"clust\": 674, \"rank\": 494, \"rankvar\": 1333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1709, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1295, \"cat-2\": \"Density: 22\", \"cat_2_index\": 297, \"group\": [675.0, 447.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86839_BALBc-1_X01_Y02_820_855\", \"ini\": 1116, \"clust\": 2431, \"rank\": 852, \"rankvar\": 402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1710, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1296, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2785, \"group\": [2434.0, 1295.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86899_BALBc-1_X01_Y02_821_630\", \"ini\": 1115, \"clust\": 495, \"rank\": 1585, \"rankvar\": 1079, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1711, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 302, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2724, \"group\": [496.0, 338.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87034_BALBc-1_X01_Y02_823_34\", \"ini\": 1114, \"clust\": 2528, \"rank\": 1691, \"rankvar\": 977, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1712, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2459, \"cat-2\": \"Density: 25\", \"cat_2_index\": 669, \"group\": [2535.0, 1361.0, 403.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87221_BALBc-1_X01_Y02_825_543\", \"ini\": 1113, \"clust\": 2512, \"rank\": 1403, \"rankvar\": 1681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1713, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 303, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2579, \"group\": [2513.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87372_BALBc-1_X01_Y02_827_730\", \"ini\": 1112, \"clust\": 2359, \"rank\": 1792, \"rankvar\": 227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1714, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 304, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2682, \"group\": [2358.0, 1259.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87470_BALBc-1_X01_Y02_828_775\", \"ini\": 1111, \"clust\": 2002, \"rank\": 2019, \"rankvar\": 1373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1715, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2127, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2760, \"group\": [2006.0, 1135.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87639_BALBc-1_X01_Y02_830_197\", \"ini\": 1110, \"clust\": 2593, \"rank\": 1192, \"rankvar\": 1991, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1716, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1297, \"cat-2\": \"Density: 24\", \"cat_2_index\": 531, \"group\": [2591.0, 1401.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87741_BALBc-1_X01_Y02_831_562\", \"ini\": 1109, \"clust\": 2388, \"rank\": 2654, \"rankvar\": 1758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1717, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 305, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2641, \"group\": [2385.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87745_BALBc-1_X01_Y02_831_662\", \"ini\": 1108, \"clust\": 2205, \"rank\": 1444, \"rankvar\": 2071, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1718, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1298, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2725, \"group\": [2201.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87997_BALBc-1_X01_Y02_835_259\", \"ini\": 1107, \"clust\": 2148, \"rank\": 1303, \"rankvar\": 727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1719, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 306, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1409, \"group\": [2147.0, 1164.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88002_BALBc-1_X01_Y02_835_327\", \"ini\": 1106, \"clust\": 679, \"rank\": 305, \"rankvar\": 230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1720, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2590, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1993, \"group\": [679.0, 449.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88095_BALBc-1_X01_Y02_836_515\", \"ini\": 1105, \"clust\": 2095, \"rank\": 2507, \"rankvar\": 2350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1721, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2128, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2580, \"group\": [2099.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88266_BALBc-1_X01_Y02_838_738\", \"ini\": 1104, \"clust\": 999, \"rank\": 772, \"rankvar\": 731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1722, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 307, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2761, \"group\": [998.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88354_BALBc-1_X01_Y02_839_825\", \"ini\": 1103, \"clust\": 1724, \"rank\": 2738, \"rankvar\": 2809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1723, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 308, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2823, \"group\": [1723.0, 970.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88357_BALBc-1_X01_Y02_839_852\", \"ini\": 1102, \"clust\": 2291, \"rank\": 1830, \"rankvar\": 784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1724, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1299, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2817, \"group\": [2357.0, 1258.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88496_BALBc-1_X01_Y02_840_696\", \"ini\": 1101, \"clust\": 2432, \"rank\": 892, \"rankvar\": 314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1725, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1300, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2762, \"group\": [2433.0, 1295.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88510_BALBc-1_X01_Y02_840_903\", \"ini\": 1100, \"clust\": 1755, \"rank\": 2048, \"rankvar\": 2045, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1726, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1301, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2807, \"group\": [1753.0, 994.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88541_BALBc-1_X01_Y02_841_302\", \"ini\": 1099, \"clust\": 2183, \"rank\": 1727, \"rankvar\": 1062, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1727, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2591, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1994, \"group\": [2206.0, 1188.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88548_BALBc-1_X01_Y02_841_352\", \"ini\": 1098, \"clust\": 2019, \"rank\": 1868, \"rankvar\": 1698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1728, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2129, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2335, \"group\": [2020.0, 1138.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88675_BALBc-1_X01_Y02_843_224\", \"ini\": 1097, \"clust\": 22, \"rank\": 748, \"rankvar\": 107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1729, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1302, \"cat-2\": \"Density: 26\", \"cat_2_index\": 812, \"group\": [22.0, 21.0, 12.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88693_BALBc-1_X01_Y02_843_446\", \"ini\": 1096, \"clust\": 2078, \"rank\": 2689, \"rankvar\": 2490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1730, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2130, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2399, \"group\": [2079.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88704_BALBc-1_X01_Y02_843_602\", \"ini\": 1095, \"clust\": 2125, \"rank\": 2700, \"rankvar\": 2651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1731, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2131, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2763, \"group\": [2123.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88810_BALBc-1_X01_Y02_844_808\", \"ini\": 1094, \"clust\": 676, \"rank\": 625, \"rankvar\": 862, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1732, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 309, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2764, \"group\": [677.0, 448.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88868_BALBc-1_X01_Y02_845_558\", \"ini\": 1093, \"clust\": 890, \"rank\": 7, \"rankvar\": 591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1733, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 310, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2683, \"group\": [890.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88930_BALBc-1_X01_Y02_846_528\", \"ini\": 1092, \"clust\": 277, \"rank\": 1646, \"rankvar\": 889, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1734, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 311, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2400, \"group\": [277.0, 199.0, 72.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89014_BALBc-1_X01_Y02_847_497\", \"ini\": 1091, \"clust\": 1913, \"rank\": 1886, \"rankvar\": 662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1735, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2132, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2476, \"group\": [1913.0, 1099.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89025_BALBc-1_X01_Y02_847_613\", \"ini\": 1090, \"clust\": 496, \"rank\": 1170, \"rankvar\": 876, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1736, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2133, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2808, \"group\": [497.0, 339.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89310_BALBc-1_X01_Y02_850_368\", \"ini\": 1089, \"clust\": 494, \"rank\": 1007, \"rankvar\": 771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1737, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2134, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2336, \"group\": [494.0, 337.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89480_BALBc-1_X01_Y02_852_712\", \"ini\": 1088, \"clust\": 924, \"rank\": 166, \"rankvar\": 45, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1738, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1303, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2684, \"group\": [923.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89535_BALBc-1_X01_Y02_853_431\", \"ini\": 1087, \"clust\": 2176, \"rank\": 1693, \"rankvar\": 1223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1739, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2135, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2401, \"group\": [2175.0, 1180.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89554_BALBc-1_X01_Y02_853_632\", \"ini\": 1086, \"clust\": 482, \"rank\": 197, \"rankvar\": 253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1740, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 312, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2685, \"group\": [482.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89574_BALBc-1_X01_Y02_853_890\", \"ini\": 1085, \"clust\": 954, \"rank\": 644, \"rankvar\": 383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1741, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1304, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2786, \"group\": [955.0, 488.0, 139.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89619_BALBc-1_X01_Y02_854_42\", \"ini\": 1084, \"clust\": 675, \"rank\": 413, \"rankvar\": 1767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1742, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1975, \"cat-2\": \"Density: 25\", \"cat_2_index\": 670, \"group\": [676.0, 447.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89667_BALBc-1_X01_Y02_854_933\", \"ini\": 1083, \"clust\": 2425, \"rank\": 1354, \"rankvar\": 767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1743, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1305, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2642, \"group\": [2426.0, 1292.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89670_BALBc-1_X01_Y02_854_970\", \"ini\": 1082, \"clust\": 921, \"rank\": 25, \"rankvar\": 460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1744, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1306, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1776, \"group\": [921.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89808_BALBc-1_X01_Y02_856_577\", \"ini\": 1081, \"clust\": 477, \"rank\": 570, \"rankvar\": 799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1745, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2136, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2787, \"group\": [476.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89834_BALBc-1_X01_Y02_856_743\", \"ini\": 1080, \"clust\": 2327, \"rank\": 1917, \"rankvar\": 1388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1746, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2137, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2686, \"group\": [2325.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89916_BALBc-1_X01_Y02_857_916\", \"ini\": 1079, \"clust\": 935, \"rank\": 168, \"rankvar\": 454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1747, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1307, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2765, \"group\": [936.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90046_BALBc-1_X01_Y02_859_832\", \"ini\": 1078, \"clust\": 1085, \"rank\": 382, \"rankvar\": 565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1748, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 313, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2788, \"group\": [1086.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90073_BALBc-1_X01_Y02_86_249\", \"ini\": 1077, \"clust\": 1636, \"rank\": 2009, \"rankvar\": 1917, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1749, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1308, \"cat-2\": \"Density: 24\", \"cat_2_index\": 532, \"group\": [1648.0, 908.0, 263.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90207_BALBc-1_X01_Y02_860_848\", \"ini\": 1076, \"clust\": 1795, \"rank\": 1860, \"rankvar\": 2351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1750, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1309, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2726, \"group\": [1799.0, 1017.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90347_BALBc-1_X01_Y02_862_790\", \"ini\": 1075, \"clust\": 2386, \"rank\": 2567, \"rankvar\": 1613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1751, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2138, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2687, \"group\": [2386.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90484_BALBc-1_X01_Y02_864_649\", \"ini\": 1074, \"clust\": 2083, \"rank\": 2725, \"rankvar\": 2650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1752, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 314, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2824, \"group\": [2082.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90517_BALBc-1_X01_Y02_865_117\", \"ini\": 1073, \"clust\": 120, \"rank\": 1107, \"rankvar\": 198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1753, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1310, \"cat-2\": \"Density: 25\", \"cat_2_index\": 671, \"group\": [121.0, 77.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90526_BALBc-1_X01_Y02_865_275\", \"ini\": 1072, \"clust\": 516, \"rank\": 446, \"rankvar\": 11, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1754, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2592, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1536, \"group\": [515.0, 353.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90627_BALBc-1_X01_Y02_866_672\", \"ini\": 1071, \"clust\": 1809, \"rank\": 2617, \"rankvar\": 2605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1755, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1311, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2766, \"group\": [1810.0, 1023.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90717_BALBc-1_X01_Y02_867_77\", \"ini\": 1070, \"clust\": 140, \"rank\": 1522, \"rankvar\": 199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1756, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1312, \"cat-2\": \"Density: 23\", \"cat_2_index\": 409, \"group\": [140.0, 86.0, 27.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90877_BALBc-1_X01_Y02_869_470\", \"ini\": 1069, \"clust\": 747, \"rank\": 626, \"rankvar\": 424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1757, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 315, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2477, \"group\": [746.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91022_BALBc-1_X01_Y02_870_430\", \"ini\": 1068, \"clust\": 1122, \"rank\": 821, \"rankvar\": 184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1758, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 316, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2263, \"group\": [1123.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91052_BALBc-1_X01_Y02_870_812\", \"ini\": 1067, \"clust\": 1033, \"rank\": 498, \"rankvar\": 144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1759, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 317, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2809, \"group\": [1034.0, 520.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91129_BALBc-1_X01_Y02_871_893\", \"ini\": 1066, \"clust\": 1824, \"rank\": 2560, \"rankvar\": 2343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1760, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1313, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2789, \"group\": [1824.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91141_BALBc-1_X01_Y02_872_170\", \"ini\": 1065, \"clust\": 254, \"rank\": 1289, \"rankvar\": 626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1761, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1314, \"cat-2\": \"Density: 24\", \"cat_2_index\": 533, \"group\": [256.0, 179.0, 62.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91166_BALBc-1_X01_Y02_872_397\", \"ini\": 1064, \"clust\": 527, \"rank\": 145, \"rankvar\": 1674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1762, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2139, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2337, \"group\": [526.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91495_BALBc-1_X01_Y02_876_48\", \"ini\": 1063, \"clust\": 1123, \"rank\": 695, \"rankvar\": 389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1763, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2593, \"cat-2\": \"Density: 24\", \"cat_2_index\": 534, \"group\": [1124.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91511_BALBc-1_X01_Y02_876_712\", \"ini\": 1062, \"clust\": 471, \"rank\": 899, \"rankvar\": 1, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1764, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1315, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2581, \"group\": [474.0, 330.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91600_BALBc-1_X01_Y02_877_848\", \"ini\": 1061, \"clust\": 442, \"rank\": 364, \"rankvar\": 706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1765, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1316, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2688, \"group\": [442.0, 310.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91734_BALBc-1_X01_Y02_879_562\", \"ini\": 1060, \"clust\": 2509, \"rank\": 1671, \"rankvar\": 652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1766, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2140, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2478, \"group\": [2512.0, 1350.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91760_BALBc-1_X01_Y02_879_747\", \"ini\": 1059, \"clust\": 1817, \"rank\": 2625, \"rankvar\": 2610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1767, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2141, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2767, \"group\": [1818.0, 1028.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91896_BALBc-1_X01_Y02_880_618\", \"ini\": 1058, \"clust\": 2288, \"rank\": 2392, \"rankvar\": 1543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1768, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2142, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2768, \"group\": [2287.0, 1245.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91987_BALBc-1_X01_Y02_881_761\", \"ini\": 1057, \"clust\": 2449, \"rank\": 1364, \"rankvar\": 911, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1769, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2143, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2727, \"group\": [2449.0, 1303.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92091_BALBc-1_X01_Y02_883_354\", \"ini\": 1056, \"clust\": 2162, \"rank\": 1184, \"rankvar\": 1236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1770, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 318, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2264, \"group\": [2159.0, 1172.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92101_BALBc-1_X01_Y02_883_525\", \"ini\": 1055, \"clust\": 644, \"rank\": 545, \"rankvar\": 554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1771, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 319, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2479, \"group\": [644.0, 432.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92192_BALBc-1_X01_Y02_884_787\", \"ini\": 1054, \"clust\": 1130, \"rank\": 889, \"rankvar\": 768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1772, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2144, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2790, \"group\": [1132.0, 534.0, 145.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92232_BALBc-1_X01_Y02_885_452\", \"ini\": 1053, \"clust\": 524, \"rank\": 457, \"rankvar\": 637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1773, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 320, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2402, \"group\": [524.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92319_BALBc-1_X01_Y02_886_720\", \"ini\": 1052, \"clust\": 726, \"rank\": 507, \"rankvar\": 115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1774, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 321, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2728, \"group\": [726.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92390_BALBc-1_X01_Y02_887_673\", \"ini\": 1051, \"clust\": 492, \"rank\": 781, \"rankvar\": 600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1775, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1317, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2729, \"group\": [495.0, 337.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92396_BALBc-1_X01_Y02_887_730\", \"ini\": 1050, \"clust\": 2347, \"rank\": 2534, \"rankvar\": 1651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1776, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 322, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2582, \"group\": [2354.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92444_BALBc-1_X01_Y02_888_377\", \"ini\": 1049, \"clust\": 364, \"rank\": 801, \"rankvar\": 1652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1777, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 323, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2403, \"group\": [364.0, 252.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92446_BALBc-1_X01_Y02_888_392\", \"ini\": 1048, \"clust\": 2307, \"rank\": 2039, \"rankvar\": 1645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1778, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 324, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2265, \"group\": [2307.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92557_BALBc-1_X01_Y02_889_842\", \"ini\": 1047, \"clust\": 1835, \"rank\": 2500, \"rankvar\": 2029, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1779, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1318, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2810, \"group\": [1834.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92644_BALBc-1_X01_Y02_890_129\", \"ini\": 1046, \"clust\": 2616, \"rank\": 1539, \"rankvar\": 1744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1780, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2594, \"cat-2\": \"Density: 27\", \"cat_2_index\": 961, \"group\": [2617.0, 1414.0, 417.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92729_BALBc-1_X01_Y02_891_16\", \"ini\": 1045, \"clust\": 1293, \"rank\": 1699, \"rankvar\": 934, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1781, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2595, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1117, \"group\": [1291.0, 662.0, 190.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92737_BALBc-1_X01_Y02_891_219\", \"ini\": 1044, \"clust\": 135, \"rank\": 779, \"rankvar\": 245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1782, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1319, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1260, \"group\": [139.0, 85.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92747_BALBc-1_X01_Y02_891_339\", \"ini\": 1043, \"clust\": 1907, \"rank\": 1972, \"rankvar\": 1090, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1783, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2596, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2266, \"group\": [1909.0, 1095.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92963_BALBc-1_X01_Y02_894_270\", \"ini\": 1042, \"clust\": 1902, \"rank\": 2462, \"rankvar\": 2613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1784, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2597, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1410, \"group\": [1904.0, 1091.0, 333.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92994_BALBc-1_X01_Y02_894_579\", \"ini\": 1041, \"clust\": 1818, \"rank\": 2110, \"rankvar\": 2259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1785, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2145, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2643, \"group\": [1819.0, 1028.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93017_BALBc-1_X01_Y02_894_895\", \"ini\": 1040, \"clust\": 1756, \"rank\": 1716, \"rankvar\": 2054, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1786, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1320, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2644, \"group\": [1754.0, 994.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93023_BALBc-1_X01_Y02_894_972\", \"ini\": 1039, \"clust\": 1760, \"rank\": 918, \"rankvar\": 1713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1787, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1321, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1261, \"group\": [1759.0, 995.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93058_BALBc-1_X01_Y02_895_417\", \"ini\": 1038, \"clust\": 1154, \"rank\": 1350, \"rankvar\": 1360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1788, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 325, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2179, \"group\": [1154.0, 554.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93151_BALBc-1_X01_Y02_896_819\", \"ini\": 1037, \"clust\": 385, \"rank\": 747, \"rankvar\": 1580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1789, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1322, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2791, \"group\": [384.0, 266.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93204_BALBc-1_X01_Y02_897_498\", \"ini\": 1036, \"clust\": 2362, \"rank\": 2018, \"rankvar\": 890, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1790, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 326, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2480, \"group\": [2362.0, 1261.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93411_BALBc-1_X01_Y02_9_314\", \"ini\": 1035, \"clust\": 708, \"rank\": 231, \"rankvar\": 1710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1791, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1323, \"cat-2\": \"Density: 12\", \"cat_2_index\": 8, \"group\": [707.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93436_BALBc-1_X01_Y02_9_681\", \"ini\": 1034, \"clust\": 2229, \"rank\": 2116, \"rankvar\": 1822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1792, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 327, \"cat-2\": \"Density: 12\", \"cat_2_index\": 9, \"group\": [2230.0, 1209.0, 359.0, 98.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93586_BALBc-1_X01_Y02_900_660\", \"ini\": 1033, \"clust\": 2134, \"rank\": 2394, \"rankvar\": 1930, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1793, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 328, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2645, \"group\": [2134.0, 1153.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93735_BALBc-1_X01_Y02_902_696\", \"ini\": 1032, \"clust\": 278, \"rank\": 1480, \"rankvar\": 1404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1794, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 329, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2646, \"group\": [278.0, 200.0, 72.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93759_BALBc-1_X01_Y02_903_167\", \"ini\": 1031, \"clust\": 1027, \"rank\": 167, \"rankvar\": 48, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1795, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2813, \"cat-2\": \"Density: 25\", \"cat_2_index\": 672, \"group\": [1026.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93900_BALBc-1_X01_Y02_905_185\", \"ini\": 1030, \"clust\": 2482, \"rank\": 1604, \"rankvar\": 1251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1796, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2598, \"cat-2\": \"Density: 27\", \"cat_2_index\": 962, \"group\": [2486.0, 1333.0, 397.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93911_BALBc-1_X01_Y02_905_312\", \"ini\": 1029, \"clust\": 586, \"rank\": 590, \"rankvar\": 1046, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1797, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2599, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1878, \"group\": [583.0, 399.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94069_BALBc-1_X01_Y02_907_471\", \"ini\": 1028, \"clust\": 2074, \"rank\": 2406, \"rankvar\": 1547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1798, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 330, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2481, \"group\": [2074.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94075_BALBc-1_X01_Y02_907_532\", \"ini\": 1027, \"clust\": 1080, \"rank\": 172, \"rankvar\": 216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1799, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 331, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2180, \"group\": [1080.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94153_BALBc-1_X01_Y02_908_623\", \"ini\": 1026, \"clust\": 421, \"rank\": 1316, \"rankvar\": 983, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1800, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1976, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2583, \"group\": [421.0, 297.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94234_BALBc-1_X01_Y02_909_73\", \"ini\": 1025, \"clust\": 1541, \"rank\": 2388, \"rankvar\": 2107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1801, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2600, \"cat-2\": \"Density: 25\", \"cat_2_index\": 673, \"group\": [1541.0, 834.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94463_BALBc-1_X01_Y02_911_790\", \"ini\": 1024, \"clust\": 2332, \"rank\": 2176, \"rankvar\": 1600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1802, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1324, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2730, \"group\": [2335.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94538_BALBc-1_X01_Y02_912_752\", \"ini\": 1023, \"clust\": 1986, \"rank\": 2256, \"rankvar\": 1566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1803, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2317, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2769, \"group\": [1985.0, 1124.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94605_BALBc-1_X01_Y02_913_728\", \"ini\": 1022, \"clust\": 988, \"rank\": 603, \"rankvar\": 845, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1804, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2318, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2584, \"group\": [989.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94692_BALBc-1_X01_Y02_914_972\", \"ini\": 1021, \"clust\": 1671, \"rank\": 1472, \"rankvar\": 633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1805, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1325, \"cat-2\": \"Density: 27\", \"cat_2_index\": 963, \"group\": [1673.0, 930.0, 272.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94737_BALBc-1_X01_Y02_915_653\", \"ini\": 1020, \"clust\": 2367, \"rank\": 2187, \"rankvar\": 1653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1806, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 332, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2647, \"group\": [2367.0, 1263.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94800_BALBc-1_X01_Y02_916_392\", \"ini\": 1019, \"clust\": 652, \"rank\": 712, \"rankvar\": 139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1807, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 333, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2404, \"group\": [652.0, 437.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94865_BALBc-1_X01_Y02_917_414\", \"ini\": 1018, \"clust\": 1158, \"rank\": 829, \"rankvar\": 851, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1808, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 334, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2267, \"group\": [1161.0, 558.0, 154.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94917_BALBc-1_X01_Y02_918_144\", \"ini\": 1017, \"clust\": 2216, \"rank\": 1488, \"rankvar\": 52, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1809, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2601, \"cat-2\": \"Density: 23\", \"cat_2_index\": 410, \"group\": [2217.0, 1198.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94976_BALBc-1_X01_Y02_918_685\", \"ini\": 1016, \"clust\": 2379, \"rank\": 2512, \"rankvar\": 1084, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1810, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 335, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2585, \"group\": [2378.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95031_BALBc-1_X01_Y02_919_496\", \"ini\": 1015, \"clust\": 1155, \"rank\": 1251, \"rankvar\": 1281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1811, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 336, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2181, \"group\": [1155.0, 554.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95151_BALBc-1_X01_Y02_920_106\", \"ini\": 1014, \"clust\": 760, \"rank\": 267, \"rankvar\": 278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1812, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2602, \"cat-2\": \"Density: 25\", \"cat_2_index\": 674, \"group\": [760.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95247_BALBc-1_X01_Y02_921_339\", \"ini\": 1013, \"clust\": 1058, \"rank\": 730, \"rankvar\": 359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1813, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 337, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2268, \"group\": [1061.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95323_BALBc-1_X01_Y02_922_248\", \"ini\": 1012, \"clust\": 2599, \"rank\": 1756, \"rankvar\": 1334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1814, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2603, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1411, \"group\": [2612.0, 1409.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95511_BALBc-1_X01_Y02_924_552\", \"ini\": 1011, \"clust\": 1823, \"rank\": 2737, \"rankvar\": 2729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1815, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 338, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2405, \"group\": [1823.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95603_BALBc-1_X01_Y02_925_713\", \"ini\": 1010, \"clust\": 1916, \"rank\": 2181, \"rankvar\": 923, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1816, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2319, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2770, \"group\": [1917.0, 1101.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95670_BALBc-1_X01_Y02_926_592\", \"ini\": 1009, \"clust\": 1784, \"rank\": 1428, \"rankvar\": 2502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1817, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1977, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2586, \"group\": [1785.0, 1014.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95679_BALBc-1_X01_Y02_926_670\", \"ini\": 1008, \"clust\": 475, \"rank\": 687, \"rankvar\": 830, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1818, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 339, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2689, \"group\": [477.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95702_BALBc-1_X01_Y02_926_934\", \"ini\": 1007, \"clust\": 1706, \"rank\": 2818, \"rankvar\": 2818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1819, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1326, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2529, \"group\": [1708.0, 961.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95782_BALBc-1_X01_Y02_927_871\", \"ini\": 1006, \"clust\": 843, \"rank\": 81, \"rankvar\": 178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1820, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1327, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2818, \"group\": [843.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95802_BALBc-1_X01_Y02_928_19\", \"ini\": 1005, \"clust\": 572, \"rank\": 366, \"rankvar\": 207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1821, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2604, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1262, \"group\": [571.0, 391.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95821_BALBc-1_X01_Y02_928_362\", \"ini\": 1004, \"clust\": 528, \"rank\": 1045, \"rankvar\": 206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1822, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 340, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2482, \"group\": [528.0, 360.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95912_BALBc-1_X01_Y02_929_417\", \"ini\": 1003, \"clust\": 740, \"rank\": 242, \"rankvar\": 317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1823, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 341, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2483, \"group\": [737.0, 467.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95959_BALBc-1_X01_Y02_93_212\", \"ini\": 1002, \"clust\": 536, \"rank\": 192, \"rankvar\": 1217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1824, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2244, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1263, \"group\": [537.0, 367.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96011_BALBc-1_X01_Y02_93_891\", \"ini\": 1001, \"clust\": 1924, \"rank\": 2637, \"rankvar\": 2486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1825, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2320, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1264, \"group\": [1924.0, 1106.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96026_BALBc-1_X01_Y02_930_183\", \"ini\": 1000, \"clust\": 1766, \"rank\": 2784, \"rankvar\": 2823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1826, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2605, \"cat-2\": \"Density: 25\", \"cat_2_index\": 675, \"group\": [1768.0, 1001.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96035_BALBc-1_X01_Y02_930_310\", \"ini\": 999, \"clust\": 2537, \"rank\": 1516, \"rankvar\": 649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1827, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2321, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2094, \"group\": [2538.0, 1363.0, 404.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96049_BALBc-1_X01_Y02_930_522\", \"ini\": 998, \"clust\": 2180, \"rank\": 1674, \"rankvar\": 894, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1828, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 342, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2182, \"group\": [2180.0, 1184.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96059_BALBc-1_X01_Y02_930_618\", \"ini\": 997, \"clust\": 2341, \"rank\": 2128, \"rankvar\": 737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1829, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 343, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2587, \"group\": [2341.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96129_BALBc-1_X01_Y02_931_639\", \"ini\": 996, \"clust\": 643, \"rank\": 558, \"rankvar\": 345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1830, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 344, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2588, \"group\": [642.0, 431.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96358_BALBc-1_X01_Y02_934_786\", \"ini\": 995, \"clust\": 408, \"rank\": 793, \"rankvar\": 1672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1831, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1328, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2690, \"group\": [411.0, 288.0, 99.0, 29.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96494_BALBc-1_X01_Y02_936_390\", \"ini\": 994, \"clust\": 2447, \"rank\": 1750, \"rankvar\": 964, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1832, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 345, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2484, \"group\": [2448.0, 1302.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96556_BALBc-1_X01_Y02_937_334\", \"ini\": 993, \"clust\": 1042, \"rank\": 435, \"rankvar\": 155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1833, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 346, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2485, \"group\": [1043.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96785_BALBc-1_X01_Y02_94_443\", \"ini\": 992, \"clust\": 186, \"rank\": 1290, \"rankvar\": 1673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1834, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2460, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1118, \"group\": [187.0, 123.0, 40.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96861_BALBc-1_X01_Y02_940_441\", \"ini\": 991, \"clust\": 2469, \"rank\": 1657, \"rankvar\": 261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1835, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 347, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2406, \"group\": [2470.0, 1318.0, 390.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97094_BALBc-1_X01_Y02_943_554\", \"ini\": 990, \"clust\": 2181, \"rank\": 1282, \"rankvar\": 836, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1836, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 348, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2183, \"group\": [2181.0, 1184.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97328_BALBc-1_X01_Y02_946_392\", \"ini\": 989, \"clust\": 2151, \"rank\": 806, \"rankvar\": 572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1837, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 349, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2530, \"group\": [2149.0, 1165.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97429_BALBc-1_X01_Y02_947_898\", \"ini\": 988, \"clust\": 1010, \"rank\": 283, \"rankvar\": 1098, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1838, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1329, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2691, \"group\": [1011.0, 514.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97487_BALBc-1_X01_Y02_948_863\", \"ini\": 987, \"clust\": 1778, \"rank\": 1897, \"rankvar\": 427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1839, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1658, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2771, \"group\": [1781.0, 1011.0, 306.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97559_BALBc-1_X01_Y02_949_682\", \"ini\": 986, \"clust\": 446, \"rank\": 726, \"rankvar\": 788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1840, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 350, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2692, \"group\": [450.0, 314.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97703_BALBc-1_X01_Y02_950_608\", \"ini\": 985, \"clust\": 842, \"rank\": 160, \"rankvar\": 72, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1841, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2146, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2648, \"group\": [845.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97845_BALBc-1_X01_Y02_952_483\", \"ini\": 984, \"clust\": 1152, \"rank\": 2087, \"rankvar\": 1148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1842, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 351, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2531, \"group\": [1153.0, 553.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97851_BALBc-1_X01_Y02_952_581\", \"ini\": 983, \"clust\": 1825, \"rank\": 2742, \"rankvar\": 2718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1843, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 352, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2532, \"group\": [1825.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97911_BALBc-1_X01_Y02_953_421\", \"ini\": 982, \"clust\": 951, \"rank\": 672, \"rankvar\": 716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1844, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 353, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2649, \"group\": [950.0, 483.0, 138.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98041_BALBc-1_X01_Y02_955_11\", \"ini\": 981, \"clust\": 1762, \"rank\": 2021, \"rankvar\": 2119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1845, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1330, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1265, \"group\": [1763.0, 998.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98050_BALBc-1_X01_Y02_955_156\", \"ini\": 980, \"clust\": 63, \"rank\": 1413, \"rankvar\": 336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1846, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2606, \"cat-2\": \"Density: 27\", \"cat_2_index\": 964, \"group\": [70.0, 52.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98324_BALBc-1_X01_Y02_958_818\", \"ini\": 979, \"clust\": 1081, \"rank\": 255, \"rankvar\": 330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1847, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1331, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2589, \"group\": [1081.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98534_BALBc-1_X01_Y02_960_63\", \"ini\": 978, \"clust\": 775, \"rank\": 141, \"rankvar\": 510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1848, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2607, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1412, \"group\": [774.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98596_BALBc-1_X01_Y02_961_438\", \"ini\": 977, \"clust\": 2360, \"rank\": 1690, \"rankvar\": 319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1849, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2608, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2693, \"group\": [2359.0, 1259.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98752_BALBc-1_X01_Y02_963_631\", \"ini\": 976, \"clust\": 2123, \"rank\": 2278, \"rankvar\": 2379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1850, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2147, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2486, \"group\": [2130.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98837_BALBc-1_X01_Y02_964_510\", \"ini\": 975, \"clust\": 2400, \"rank\": 2744, \"rankvar\": 2083, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1851, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 354, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2407, \"group\": [2398.0, 1270.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98921_BALBc-1_X01_Y02_965_673\", \"ini\": 974, \"clust\": 2283, \"rank\": 1965, \"rankvar\": 1668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1852, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 355, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2694, \"group\": [2285.0, 1244.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98956_BALBc-1_X01_Y02_966_344\", \"ini\": 973, \"clust\": 2438, \"rank\": 1126, \"rankvar\": 578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1853, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 356, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2487, \"group\": [2439.0, 1298.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99211_BALBc-1_X01_Y02_969_41\", \"ini\": 972, \"clust\": 1164, \"rank\": 1000, \"rankvar\": 1440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1854, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1332, \"cat-2\": \"Density: 26\", \"cat_2_index\": 813, \"group\": [1163.0, 559.0, 155.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99244_BALBc-1_X01_Y02_969_891\", \"ini\": 971, \"clust\": 1781, \"rank\": 2515, \"rankvar\": 2103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1855, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1333, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2488, \"group\": [1784.0, 1013.0, 307.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99284_BALBc-1_X01_Y02_97_366\", \"ini\": 970, \"clust\": 1024, \"rank\": 388, \"rankvar\": 23, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1856, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1334, \"cat-2\": \"Density: 24\", \"cat_2_index\": 535, \"group\": [1024.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99306_BALBc-1_X01_Y02_97_619\", \"ini\": 969, \"clust\": 2470, \"rank\": 1594, \"rankvar\": 1950, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1857, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1335, \"cat-2\": \"Density: 24\", \"cat_2_index\": 536, \"group\": [2471.0, 1319.0, 391.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99355_BALBc-1_X01_Y02_970_403\", \"ini\": 968, \"clust\": 1124, \"rank\": 1256, \"rankvar\": 169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1858, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 357, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2695, \"group\": [1127.0, 529.0, 143.0, 35.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99386_BALBc-1_X01_Y02_970_788\", \"ini\": 967, \"clust\": 1831, \"rank\": 2311, \"rankvar\": 2185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1859, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1336, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2533, \"group\": [1830.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99599_BALBc-1_X01_Y02_973_494\", \"ini\": 966, \"clust\": 869, \"rank\": 43, \"rankvar\": 247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1860, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 358, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2489, \"group\": [870.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99666_BALBc-1_X01_Y02_974_301\", \"ini\": 965, \"clust\": 2661, \"rank\": 2183, \"rankvar\": 1173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1861, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2148, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1995, \"group\": [2666.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99919_BALBc-1_X01_Y02_977_839\", \"ini\": 964, \"clust\": 1836, \"rank\": 2781, \"rankvar\": 2624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1862, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2814, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2338, \"group\": [1835.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99966_BALBc-1_X01_Y02_978_469\", \"ini\": 963, \"clust\": 1072, \"rank\": 405, \"rankvar\": 834, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1863, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2609, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2792, \"group\": [1071.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99984_BALBc-1_X01_Y02_978_659\", \"ini\": 962, \"clust\": 1909, \"rank\": 2189, \"rankvar\": 1054, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1864, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2149, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2490, \"group\": [1908.0, 1094.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99988_BALBc-1_X01_Y02_978_700\", \"ini\": 961, \"clust\": 439, \"rank\": 234, \"rankvar\": 2370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1865, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 359, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2731, \"group\": [440.0, 309.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100113_BALBc-1_X01_Y02_98_33\", \"ini\": 960, \"clust\": 1625, \"rank\": 2053, \"rankvar\": 2512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1866, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1337, \"cat-2\": \"Density: 20\", \"cat_2_index\": 167, \"group\": [1626.0, 893.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100128_BALBc-1_X01_Y02_98_529\", \"ini\": 959, \"clust\": 2426, \"rank\": 985, \"rankvar\": 95, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1867, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2322, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1667, \"group\": [2427.0, 1293.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100158_BALBc-1_X01_Y02_98_936\", \"ini\": 958, \"clust\": 1894, \"rank\": 2475, \"rankvar\": 2620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1868, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1751, \"cat-2\": \"Density: 26\", \"cat_2_index\": 814, \"group\": [1894.0, 1084.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100196_BALBc-1_X01_Y02_980_535\", \"ini\": 957, \"clust\": 640, \"rank\": 628, \"rankvar\": 1820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1869, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 360, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2491, \"group\": [646.0, 434.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100343_BALBc-1_X01_Y02_982_719\", \"ini\": 956, \"clust\": 2253, \"rank\": 1527, \"rankvar\": 1248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1870, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1338, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2534, \"group\": [2254.0, 1231.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100409_BALBc-1_X01_Y02_983_525\", \"ini\": 955, \"clust\": 2443, \"rank\": 714, \"rankvar\": 1679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1871, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 361, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2535, \"group\": [2443.0, 1299.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100453_BALBc-1_X01_Y02_984_217\", \"ini\": 954, \"clust\": 2595, \"rank\": 1759, \"rankvar\": 1639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1872, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2610, \"cat-2\": \"Density: 25\", \"cat_2_index\": 676, \"group\": [2597.0, 1404.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100476_BALBc-1_X01_Y02_984_546\", \"ini\": 953, \"clust\": 2401, \"rank\": 2789, \"rankvar\": 2227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1873, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 362, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2536, \"group\": [2399.0, 1270.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100533_BALBc-1_X01_Y02_985_319\", \"ini\": 952, \"clust\": 1717, \"rank\": 2049, \"rankvar\": 1829, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1874, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 363, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1777, \"group\": [1718.0, 968.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100537_BALBc-1_X01_Y02_985_370\", \"ini\": 951, \"clust\": 529, \"rank\": 790, \"rankvar\": 1014, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1875, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 364, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2537, \"group\": [529.0, 361.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100546_BALBc-1_X01_Y02_985_427\", \"ini\": 950, \"clust\": 1727, \"rank\": 2182, \"rankvar\": 346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1876, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2611, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2732, \"group\": [1726.0, 972.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100828_BALBc-1_X01_Y02_989_180\", \"ini\": 949, \"clust\": 1067, \"rank\": 407, \"rankvar\": 589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1877, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2612, \"cat-2\": \"Density: 26\", \"cat_2_index\": 815, \"group\": [1066.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101159_BALBc-1_X01_Y02_992_512\", \"ini\": 948, \"clust\": 641, \"rank\": 583, \"rankvar\": 288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1878, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 365, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2650, \"group\": [643.0, 431.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101202_BALBc-1_X01_Y02_992_939\", \"ini\": 947, \"clust\": 1198, \"rank\": 589, \"rankvar\": 1237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1879, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1339, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1668, \"group\": [1198.0, 591.0, 167.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101248_BALBc-1_X01_Y02_993_593\", \"ini\": 946, \"clust\": 730, \"rank\": 307, \"rankvar\": 283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1880, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2150, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2590, \"group\": [732.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101494_BALBc-1_X01_Y02_996_395\", \"ini\": 945, \"clust\": 33, \"rank\": 923, \"rankvar\": 415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1881, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2613, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2772, \"group\": [33.0, 31.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101598_BALBc-1_X01_Y02_997_656\", \"ini\": 944, \"clust\": 1810, \"rank\": 2331, \"rankvar\": 1927, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1882, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2151, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2591, \"group\": [1813.0, 1025.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101724_BALBc-1_X01_Y02_999_337\", \"ini\": 943, \"clust\": 1089, \"rank\": 445, \"rankvar\": 8, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1883, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 366, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2269, \"group\": [1092.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-742_BALBc-1_X02_Y02_100_496\", \"ini\": 942, \"clust\": 1878, \"rank\": 961, \"rankvar\": 1878, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1884, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1340, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1879, \"group\": [1877.0, 1067.0, 324.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-763_BALBc-1_X02_Y02_100_736\", \"ini\": 941, \"clust\": 2539, \"rank\": 1670, \"rankvar\": 1914, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1885, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1341, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1880, \"group\": [2542.0, 1367.0, 406.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-824_BALBc-1_X02_Y02_1000_584\", \"ini\": 940, \"clust\": 506, \"rank\": 679, \"rankvar\": 865, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1886, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1581, \"cat-2\": \"Density: 26\", \"cat_2_index\": 816, \"group\": [507.0, 347.0, 117.0, 33.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1111_BALBc-1_X02_Y02_1004_421\", \"ini\": 939, \"clust\": 51, \"rank\": 1016, \"rankvar\": 303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1887, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 921, \"cat-2\": \"Density: 23\", \"cat_2_index\": 411, \"group\": [54.0, 43.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1386_BALBc-1_X02_Y02_1007_914\", \"ini\": 938, \"clust\": 992, \"rank\": 939, \"rankvar\": 1407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1888, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2152, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1266, \"group\": [993.0, 509.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1461_BALBc-1_X02_Y02_1008_949\", \"ini\": 937, \"clust\": 2237, \"rank\": 1360, \"rankvar\": 31, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1889, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2153, \"cat-2\": \"Density: 22\", \"cat_2_index\": 298, \"group\": [2238.0, 1217.0, 364.0, 100.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1779_BALBc-1_X02_Y02_1011_766\", \"ini\": 936, \"clust\": 2244, \"rank\": 1738, \"rankvar\": 1306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1890, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2614, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1669, \"group\": [2246.0, 1223.0, 367.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1887_BALBc-1_X02_Y02_1013_366\", \"ini\": 935, \"clust\": 600, \"rank\": 529, \"rankvar\": 142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1891, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 367, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1267, \"group\": [600.0, 411.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2061_BALBc-1_X02_Y02_1015_519\", \"ini\": 934, \"clust\": 2793, \"rank\": 1634, \"rankvar\": 2139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1892, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2615, \"cat-2\": \"Density: 23\", \"cat_2_index\": 412, \"group\": [2792.0, 1514.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2081_BALBc-1_X02_Y02_1015_789\", \"ini\": 933, \"clust\": 579, \"rank\": 854, \"rankvar\": 1249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1893, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1119, \"group\": [579.0, 396.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2117_BALBc-1_X02_Y02_1016_330\", \"ini\": 932, \"clust\": 85, \"rank\": 1119, \"rankvar\": 274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1894, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1978, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1120, \"group\": [86.0, 63.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2209_BALBc-1_X02_Y02_1017_624\", \"ini\": 931, \"clust\": 2720, \"rank\": 1899, \"rankvar\": 1364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1895, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2617, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1413, \"group\": [2719.0, 1460.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2250_BALBc-1_X02_Y02_1017_995\", \"ini\": 930, \"clust\": 2066, \"rank\": 2809, \"rankvar\": 2295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1896, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2154, \"cat-2\": \"Density: 16\", \"cat_2_index\": 61, \"group\": [2064.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2321_BALBc-1_X02_Y02_1018_895\", \"ini\": 929, \"clust\": 2605, \"rank\": 1476, \"rankvar\": 2011, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1897, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2155, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1121, \"group\": [2604.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2469_BALBc-1_X02_Y02_1020_120\", \"ini\": 928, \"clust\": 268, \"rank\": 1293, \"rankvar\": 343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1898, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1342, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1537, \"group\": [271.0, 193.0, 69.0, 21.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2761_BALBc-1_X02_Y02_1023_729\", \"ini\": 927, \"clust\": 827, \"rank\": 218, \"rankvar\": 395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1899, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1343, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1996, \"group\": [829.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2871_BALBc-1_X02_Y02_1025_203\", \"ini\": 926, \"clust\": 381, \"rank\": 1221, \"rankvar\": 1715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1900, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 848, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1268, \"group\": [381.0, 265.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2901_BALBc-1_X02_Y02_1025_465\", \"ini\": 925, \"clust\": 2696, \"rank\": 2280, \"rankvar\": 575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1901, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2618, \"cat-2\": \"Density: 24\", \"cat_2_index\": 537, \"group\": [2697.0, 1452.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3027_BALBc-1_X02_Y02_1027_146\", \"ini\": 924, \"clust\": 1407, \"rank\": 1484, \"rankvar\": 1051, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1902, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1344, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1670, \"group\": [1410.0, 759.0, 224.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3163_BALBc-1_X02_Y02_1028_557\", \"ini\": 923, \"clust\": 2611, \"rank\": 2371, \"rankvar\": 2278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1903, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1582, \"cat-2\": \"Density: 25\", \"cat_2_index\": 677, \"group\": [2608.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3345_BALBc-1_X02_Y02_103_855\", \"ini\": 922, \"clust\": 1874, \"rank\": 1543, \"rankvar\": 1061, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1904, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1345, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1269, \"group\": [1880.0, 1070.0, 325.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3406_BALBc-1_X02_Y02_1030_786\", \"ini\": 921, \"clust\": 1768, \"rank\": 2614, \"rankvar\": 2820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1905, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2619, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1414, \"group\": [1767.0, 1001.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3462_BALBc-1_X02_Y02_1031_450\", \"ini\": 920, \"clust\": 764, \"rank\": 33, \"rankvar\": 603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1906, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 368, \"cat-2\": \"Density: 24\", \"cat_2_index\": 538, \"group\": [765.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3716_BALBc-1_X02_Y02_1034_825\", \"ini\": 919, \"clust\": 2255, \"rank\": 1223, \"rankvar\": 1255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1907, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2620, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1415, \"group\": [2255.0, 1232.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3723_BALBc-1_X02_Y02_1034_946\", \"ini\": 918, \"clust\": 919, \"rank\": 63, \"rankvar\": 237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1908, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 369, \"cat-2\": \"Density: 21\", \"cat_2_index\": 219, \"group\": [919.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3800_BALBc-1_X02_Y02_1035_754\", \"ini\": 917, \"clust\": 2214, \"rank\": 1524, \"rankvar\": 398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1909, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2621, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1538, \"group\": [2215.0, 1196.0, 354.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3958_BALBc-1_X02_Y02_1037_680\", \"ini\": 916, \"clust\": 908, \"rank\": 94, \"rankvar\": 101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1910, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1346, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1881, \"group\": [907.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3996_BALBc-1_X02_Y02_1038_233\", \"ini\": 915, \"clust\": 123, \"rank\": 566, \"rankvar\": 993, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1911, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1347, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1416, \"group\": [123.0, 78.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4123_BALBc-1_X02_Y02_1039_704\", \"ini\": 914, \"clust\": 2646, \"rank\": 2375, \"rankvar\": 1648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1912, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1348, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1997, \"group\": [2648.0, 1437.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4307_BALBc-1_X02_Y02_1041_402\", \"ini\": 913, \"clust\": 170, \"rank\": 406, \"rankvar\": 129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1913, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 922, \"cat-2\": \"Density: 25\", \"cat_2_index\": 678, \"group\": [169.0, 110.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4349_BALBc-1_X02_Y02_1041_855\", \"ini\": 912, \"clust\": 2600, \"rank\": 2036, \"rankvar\": 1855, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1914, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2787, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1270, \"group\": [2599.0, 1406.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4398_BALBc-1_X02_Y02_1042_440\", \"ini\": 911, \"clust\": 2724, \"rank\": 1836, \"rankvar\": 1490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1915, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 923, \"cat-2\": \"Density: 27\", \"cat_2_index\": 965, \"group\": [2727.0, 1466.0, 430.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4443_BALBc-1_X02_Y02_1042_919\", \"ini\": 910, \"clust\": 1959, \"rank\": 2699, \"rankvar\": 2044, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1916, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 370, \"cat-2\": \"Density: 23\", \"cat_2_index\": 413, \"group\": [1978.0, 1119.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4730_BALBc-1_X02_Y02_1046_644\", \"ini\": 909, \"clust\": 741, \"rank\": 443, \"rankvar\": 803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1917, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2622, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1671, \"group\": [738.0, 467.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5035_BALBc-1_X02_Y02_105_291\", \"ini\": 908, \"clust\": 141, \"rank\": 1935, \"rankvar\": 1711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1918, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2623, \"cat-2\": \"Density: 21\", \"cat_2_index\": 220, \"group\": [141.0, 87.0, 27.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5098_BALBc-1_X02_Y02_1050_351\", \"ini\": 907, \"clust\": 863, \"rank\": 16, \"rankvar\": 843, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1919, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 371, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1271, \"group\": [880.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5288_BALBc-1_X02_Y02_1052_892\", \"ini\": 906, \"clust\": 1169, \"rank\": 860, \"rankvar\": 1043, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1920, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 372, \"cat-2\": \"Density: 25\", \"cat_2_index\": 679, \"group\": [1172.0, 567.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5378_BALBc-1_X02_Y02_1054_302\", \"ini\": 905, \"clust\": 321, \"rank\": 1910, \"rankvar\": 2169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1921, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1979, \"cat-2\": \"Density: 26\", \"cat_2_index\": 817, \"group\": [319.0, 222.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5521_BALBc-1_X02_Y02_1055_965\", \"ini\": 904, \"clust\": 2026, \"rank\": 2150, \"rankvar\": 505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1922, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2624, \"cat-2\": \"Density: 20\", \"cat_2_index\": 168, \"group\": [2025.0, 1140.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5598_BALBc-1_X02_Y02_1056_814\", \"ini\": 903, \"clust\": 582, \"rank\": 334, \"rankvar\": 1979, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1923, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 373, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1417, \"group\": [581.0, 398.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5789_BALBc-1_X02_Y02_1059_368\", \"ini\": 902, \"clust\": 1712, \"rank\": 2421, \"rankvar\": 2252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1924, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1659, \"cat-2\": \"Density: 27\", \"cat_2_index\": 966, \"group\": [1713.0, 965.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5813_BALBc-1_X02_Y02_1059_633\", \"ini\": 901, \"clust\": 1943, \"rank\": 1835, \"rankvar\": 905, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1925, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 374, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1998, \"group\": [1946.0, 1113.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5959_BALBc-1_X02_Y02_1060_547\", \"ini\": 900, \"clust\": 1736, \"rank\": 1784, \"rankvar\": 1526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1926, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2625, \"cat-2\": \"Density: 24\", \"cat_2_index\": 539, \"group\": [1739.0, 982.0, 294.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5972_BALBc-1_X02_Y02_1060_686\", \"ini\": 899, \"clust\": 892, \"rank\": 20, \"rankvar\": 211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1927, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 375, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1882, \"group\": [889.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6003_BALBc-1_X02_Y02_1061_164\", \"ini\": 898, \"clust\": 365, \"rank\": 1066, \"rankvar\": 2232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1928, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1349, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1672, \"group\": [365.0, 253.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6056_BALBc-1_X02_Y02_1061_611\", \"ini\": 897, \"clust\": 418, \"rank\": 904, \"rankvar\": 436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1929, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1583, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1673, \"group\": [418.0, 294.0, 102.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6125_BALBc-1_X02_Y02_1062_291\", \"ini\": 896, \"clust\": 104, \"rank\": 777, \"rankvar\": 680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1930, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2788, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1272, \"group\": [104.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6156_BALBc-1_X02_Y02_1062_576\", \"ini\": 895, \"clust\": 1771, \"rank\": 1885, \"rankvar\": 1502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1931, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1584, \"cat-2\": \"Density: 27\", \"cat_2_index\": 967, \"group\": [1775.0, 1007.0, 303.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6277_BALBc-1_X02_Y02_1064_324\", \"ini\": 894, \"clust\": 848, \"rank\": 54, \"rankvar\": 408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1932, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 376, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1122, \"group\": [849.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6307_BALBc-1_X02_Y02_1064_651\", \"ini\": 893, \"clust\": 2348, \"rank\": 2239, \"rankvar\": 1083, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1933, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 377, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1883, \"group\": [2353.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6501_BALBc-1_X02_Y02_1067_391\", \"ini\": 892, \"clust\": 722, \"rank\": 515, \"rankvar\": 423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1934, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1660, \"cat-2\": \"Density: 27\", \"cat_2_index\": 968, \"group\": [725.0, 464.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6716_BALBc-1_X02_Y02_1069_716\", \"ini\": 891, \"clust\": 2247, \"rank\": 1761, \"rankvar\": 291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1935, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2626, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2095, \"group\": [2248.0, 1225.0, 369.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6732_BALBc-1_X02_Y02_1069_881\", \"ini\": 890, \"clust\": 2136, \"rank\": 2414, \"rankvar\": 1564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1936, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2789, \"cat-2\": \"Density: 25\", \"cat_2_index\": 680, \"group\": [2137.0, 1155.0, 341.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6777_BALBc-1_X02_Y02_107_560\", \"ini\": 889, \"clust\": 1740, \"rank\": 2254, \"rankvar\": 2515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1937, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1569, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2096, \"group\": [1741.0, 984.0, 295.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6883_BALBc-1_X02_Y02_1070_927\", \"ini\": 888, \"clust\": 1153, \"rank\": 1800, \"rankvar\": 2024, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1938, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2627, \"cat-2\": \"Density: 22\", \"cat_2_index\": 299, \"group\": [1158.0, 556.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6955_BALBc-1_X02_Y02_1071_815\", \"ini\": 887, \"clust\": 2145, \"rank\": 1611, \"rankvar\": 1369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1939, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2790, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1539, \"group\": [2212.0, 1193.0, 351.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7044_BALBc-1_X02_Y02_1072_750\", \"ini\": 886, \"clust\": 2231, \"rank\": 1622, \"rankvar\": 366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1940, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2628, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1884, \"group\": [2232.0, 1211.0, 360.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7048_BALBc-1_X02_Y02_1072_786\", \"ini\": 885, \"clust\": 590, \"rank\": 505, \"rankvar\": 902, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1941, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2629, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1674, \"group\": [589.0, 401.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7330_BALBc-1_X02_Y02_1076_192\", \"ini\": 884, \"clust\": 37, \"rank\": 831, \"rankvar\": 226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1942, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1350, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1418, \"group\": [40.0, 34.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7866_BALBc-1_X02_Y02_1082_334\", \"ini\": 883, \"clust\": 32, \"rank\": 1011, \"rankvar\": 520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1943, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1661, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1273, \"group\": [37.0, 32.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8112_BALBc-1_X02_Y02_1085_691\", \"ini\": 882, \"clust\": 2217, \"rank\": 1385, \"rankvar\": 157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1944, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 378, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1885, \"group\": [2218.0, 1199.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8233_BALBc-1_X02_Y02_1087_411\", \"ini\": 881, \"clust\": 162, \"rank\": 1171, \"rankvar\": 181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1945, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1662, \"cat-2\": \"Density: 27\", \"cat_2_index\": 969, \"group\": [163.0, 104.0, 34.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8249_BALBc-1_X02_Y02_1087_626\", \"ini\": 880, \"clust\": 1091, \"rank\": 210, \"rankvar\": 258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1946, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 379, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1886, \"group\": [1091.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8448_BALBc-1_X02_Y02_109_151\", \"ini\": 879, \"clust\": 99, \"rank\": 580, \"rankvar\": 1052, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1947, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2630, \"cat-2\": \"Density: 23\", \"cat_2_index\": 414, \"group\": [102.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8463_BALBc-1_X02_Y02_109_451\", \"ini\": 878, \"clust\": 2541, \"rank\": 1222, \"rankvar\": 1214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1948, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2631, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1675, \"group\": [2541.0, 1366.0, 405.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8476_BALBc-1_X02_Y02_109_610\", \"ini\": 877, \"clust\": 201, \"rank\": 1359, \"rankvar\": 1883, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1949, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1351, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2097, \"group\": [211.0, 143.0, 49.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8551_BALBc-1_X02_Y02_1090_469\", \"ini\": 876, \"clust\": 373, \"rank\": 1023, \"rankvar\": 592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1950, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2632, \"cat-2\": \"Density: 24\", \"cat_2_index\": 540, \"group\": [374.0, 260.0, 89.0, 25.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8576_BALBc-1_X02_Y02_1090_711\", \"ini\": 875, \"clust\": 914, \"rank\": 248, \"rankvar\": 10, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1951, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2156, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2098, \"group\": [920.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8913_BALBc-1_X02_Y02_1095_144\", \"ini\": 874, \"clust\": 1250, \"rank\": 2357, \"rankvar\": 2601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1952, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1663, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1274, \"group\": [1254.0, 635.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8990_BALBc-1_X02_Y02_1096_180\", \"ini\": 873, \"clust\": 854, \"rank\": 5, \"rankvar\": 710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1953, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 380, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1540, \"group\": [855.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9078_BALBc-1_X02_Y02_1097_291\", \"ini\": 872, \"clust\": 30, \"rank\": 1340, \"rankvar\": 1401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1954, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2791, \"cat-2\": \"Density: 27\", \"cat_2_index\": 970, \"group\": [31.0, 29.0, 17.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9244_BALBc-1_X02_Y02_1099_550\", \"ini\": 871, \"clust\": 2522, \"rank\": 1278, \"rankvar\": 1386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1955, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 627, \"cat-2\": \"Density: 27\", \"cat_2_index\": 971, \"group\": [2522.0, 1353.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9402_BALBc-1_X02_Y02_110_392\", \"ini\": 870, \"clust\": 2607, \"rank\": 2440, \"rankvar\": 2611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1956, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2633, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1676, \"group\": [2611.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9494_BALBc-1_X02_Y02_1100_508\", \"ini\": 869, \"clust\": 2728, \"rank\": 2391, \"rankvar\": 2777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1957, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2634, \"cat-2\": \"Density: 26\", \"cat_2_index\": 818, \"group\": [2728.0, 1467.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9511_BALBc-1_X02_Y02_1100_671\", \"ini\": 868, \"clust\": 587, \"rank\": 797, \"rankvar\": 501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1958, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 381, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2099, \"group\": [584.0, 399.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9687_BALBc-1_X02_Y02_1103_195\", \"ini\": 867, \"clust\": 2292, \"rank\": 1848, \"rankvar\": 449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1959, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 382, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1677, \"group\": [2291.0, 1248.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9726_BALBc-1_X02_Y02_1103_600\", \"ini\": 866, \"clust\": 2141, \"rank\": 2460, \"rankvar\": 474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1960, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 383, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1678, \"group\": [2140.0, 1157.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9731_BALBc-1_X02_Y02_1103_641\", \"ini\": 865, \"clust\": 274, \"rank\": 1659, \"rankvar\": 1150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1961, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 384, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1999, \"group\": [275.0, 197.0, 71.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10109_BALBc-1_X02_Y02_1108_209\", \"ini\": 864, \"clust\": 917, \"rank\": 56, \"rankvar\": 77, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1962, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1352, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1419, \"group\": [916.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10196_BALBc-1_X02_Y02_1109_33\", \"ini\": 863, \"clust\": 1611, \"rank\": 1424, \"rankvar\": 1643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1963, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1980, \"cat-2\": \"Density: 22\", \"cat_2_index\": 300, \"group\": [1610.0, 888.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10201_BALBc-1_X02_Y02_1109_425\", \"ini\": 862, \"clust\": 89, \"rank\": 697, \"rankvar\": 1505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1964, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 924, \"cat-2\": \"Density: 26\", \"cat_2_index\": 819, \"group\": [90.0, 64.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10450_BALBc-1_X02_Y02_1111_750\", \"ini\": 861, \"clust\": 2187, \"rank\": 1456, \"rankvar\": 1390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1965, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2157, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1679, \"group\": [2185.0, 1186.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10495_BALBc-1_X02_Y02_1112_333\", \"ini\": 860, \"clust\": 831, \"rank\": 237, \"rankvar\": 65, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1966, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1664, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1420, \"group\": [831.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10548_BALBc-1_X02_Y02_1112_995\", \"ini\": 859, \"clust\": 253, \"rank\": 1283, \"rankvar\": 833, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1967, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2635, \"cat-2\": \"Density: 17\", \"cat_2_index\": 81, \"group\": [268.0, 190.0, 67.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10672_BALBc-1_X02_Y02_1114_725\", \"ini\": 858, \"clust\": 984, \"rank\": 800, \"rankvar\": 233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1968, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2158, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1887, \"group\": [987.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10918_BALBc-1_X02_Y02_1117_812\", \"ini\": 857, \"clust\": 522, \"rank\": 660, \"rankvar\": 1704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1969, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2792, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1680, \"group\": [521.0, 357.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10970_BALBc-1_X02_Y02_1118_562\", \"ini\": 856, \"clust\": 2625, \"rank\": 2233, \"rankvar\": 2079, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1970, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2636, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1541, \"group\": [2625.0, 1418.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11111_BALBc-1_X02_Y02_112_780\", \"ini\": 855, \"clust\": 1195, \"rank\": 1013, \"rankvar\": 1087, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1971, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1353, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1421, \"group\": [1196.0, 589.0, 166.0, 44.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11132_BALBc-1_X02_Y02_1120_160\", \"ini\": 854, \"clust\": 1078, \"rank\": 503, \"rankvar\": 82, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1972, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2323, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1275, \"group\": [1079.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11248_BALBc-1_X02_Y02_1121_389\", \"ini\": 853, \"clust\": 367, \"rank\": 1053, \"rankvar\": 765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1973, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1665, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1123, \"group\": [373.0, 259.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11332_BALBc-1_X02_Y02_1122_490\", \"ini\": 852, \"clust\": 1939, \"rank\": 1984, \"rankvar\": 1433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1974, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2793, \"cat-2\": \"Density: 24\", \"cat_2_index\": 541, \"group\": [1940.0, 1111.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11531_BALBc-1_X02_Y02_1125_113\", \"ini\": 851, \"clust\": 81, \"rank\": 870, \"rankvar\": 536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1975, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1981, \"cat-2\": \"Density: 26\", \"cat_2_index\": 820, \"group\": [81.0, 60.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11546_BALBc-1_X02_Y02_1125_315\", \"ini\": 850, \"clust\": 2745, \"rank\": 2005, \"rankvar\": 1512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1976, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2637, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1124, \"group\": [2746.0, 1481.0, 438.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11566_BALBc-1_X02_Y02_1125_577\", \"ini\": 849, \"clust\": 719, \"rank\": 262, \"rankvar\": 147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1977, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 385, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1888, \"group\": [718.0, 460.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11573_BALBc-1_X02_Y02_1125_626\", \"ini\": 848, \"clust\": 35, \"rank\": 659, \"rankvar\": 558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1978, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 386, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1778, \"group\": [35.0, 31.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11614_BALBc-1_X02_Y02_1126_250\", \"ini\": 847, \"clust\": 615, \"rank\": 825, \"rankvar\": 242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1979, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1354, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1542, \"group\": [614.0, 415.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11867_BALBc-1_X02_Y02_1129_599\", \"ini\": 846, \"clust\": 498, \"rank\": 1212, \"rankvar\": 183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1980, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 387, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1889, \"group\": [502.0, 342.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11912_BALBc-1_X02_Y02_113_34\", \"ini\": 845, \"clust\": 1346, \"rank\": 1142, \"rankvar\": 2585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1981, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1355, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1543, \"group\": [1347.0, 709.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12036_BALBc-1_X02_Y02_1130_842\", \"ini\": 844, \"clust\": 2421, \"rank\": 966, \"rankvar\": 160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1982, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2794, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1544, \"group\": [2421.0, 1288.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12076_BALBc-1_X02_Y02_1131_409\", \"ini\": 843, \"clust\": 356, \"rank\": 856, \"rankvar\": 1024, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1983, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 388, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1125, \"group\": [356.0, 249.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12101_BALBc-1_X02_Y02_1131_782\", \"ini\": 842, \"clust\": 2333, \"rank\": 2249, \"rankvar\": 2050, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1984, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2245, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1545, \"group\": [2330.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12136_BALBc-1_X02_Y02_1132_190\", \"ini\": 841, \"clust\": 517, \"rank\": 1090, \"rankvar\": 79, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1985, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1356, \"cat-2\": \"Density: 27\", \"cat_2_index\": 972, \"group\": [518.0, 355.0, 120.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12165_BALBc-1_X02_Y02_1132_447\", \"ini\": 840, \"clust\": 712, \"rank\": 235, \"rankvar\": 1030, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1986, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2795, \"cat-2\": \"Density: 22\", \"cat_2_index\": 301, \"group\": [710.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12320_BALBc-1_X02_Y02_1134_679\", \"ini\": 839, \"clust\": 2293, \"rank\": 1639, \"rankvar\": 686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1987, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2159, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2339, \"group\": [2292.0, 1249.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12365_BALBc-1_X02_Y02_1135_365\", \"ini\": 838, \"clust\": 169, \"rank\": 818, \"rankvar\": 81, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1988, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1666, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1126, \"group\": [171.0, 110.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12416_BALBc-1_X02_Y02_1135_962\", \"ini\": 837, \"clust\": 2013, \"rank\": 2089, \"rankvar\": 2087, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1989, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2638, \"cat-2\": \"Density: 21\", \"cat_2_index\": 221, \"group\": [2013.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12735_BALBc-1_X02_Y02_1139_866\", \"ini\": 836, \"clust\": 2248, \"rank\": 2056, \"rankvar\": 574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1990, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2796, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1890, \"group\": [2249.0, 1226.0, 369.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12751_BALBc-1_X02_Y02_114_194\", \"ini\": 835, \"clust\": 130, \"rank\": 551, \"rankvar\": 1100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1991, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2639, \"cat-2\": \"Density: 22\", \"cat_2_index\": 302, \"group\": [129.0, 81.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12784_BALBc-1_X02_Y02_114_729\", \"ini\": 834, \"clust\": 2565, \"rank\": 1996, \"rankvar\": 2457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1992, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1357, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2000, \"group\": [2566.0, 1386.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12833_BALBc-1_X02_Y02_1140_332\", \"ini\": 833, \"clust\": 138, \"rank\": 432, \"rankvar\": 185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1993, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2797, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1276, \"group\": [137.0, 84.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12954_BALBc-1_X02_Y02_1141_896\", \"ini\": 832, \"clust\": 2601, \"rank\": 2156, \"rankvar\": 2171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1994, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2640, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1681, \"group\": [2600.0, 1406.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12956_BALBc-1_X02_Y02_1141_931\", \"ini\": 831, \"clust\": 825, \"rank\": 92, \"rankvar\": 109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1995, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2641, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1422, \"group\": [826.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13018_BALBc-1_X02_Y02_1142_616\", \"ini\": 830, \"clust\": 593, \"rank\": 885, \"rankvar\": 1212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1996, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 389, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1779, \"group\": [591.0, 403.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13318_BALBc-1_X02_Y02_1146_668\", \"ini\": 829, \"clust\": 2159, \"rank\": 1082, \"rankvar\": 1687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1997, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2160, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2184, \"group\": [2169.0, 1175.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13570_BALBc-1_X02_Y02_1149_984\", \"ini\": 828, \"clust\": 2263, \"rank\": 1387, \"rankvar\": 331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1998, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 390, \"cat-2\": \"Density: 22\", \"cat_2_index\": 303, \"group\": [2261.0, 1235.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13572_BALBc-1_X02_Y02_115_109\", \"ini\": 827, \"clust\": 704, \"rank\": 107, \"rankvar\": 869, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1999, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 705, \"cat-2\": \"Density: 27\", \"cat_2_index\": 973, \"group\": [705.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13710_BALBc-1_X02_Y02_1150_801\", \"ini\": 826, \"clust\": 677, \"rank\": 233, \"rankvar\": 1471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2000, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2642, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1780, \"group\": [678.0, 448.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13772_BALBc-1_X02_Y02_1151_585\", \"ini\": 825, \"clust\": 2590, \"rank\": 1713, \"rankvar\": 1238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2001, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2643, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2001, \"group\": [2593.0, 1401.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13938_BALBc-1_X02_Y02_1153_645\", \"ini\": 824, \"clust\": 352, \"rank\": 1115, \"rankvar\": 1140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2002, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 391, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1891, \"group\": [353.0, 247.0, 87.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14156_BALBc-1_X02_Y02_1156_744\", \"ini\": 823, \"clust\": 1833, \"rank\": 2805, \"rankvar\": 2422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2003, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2644, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2340, \"group\": [1833.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14485_BALBc-1_X02_Y02_1160_173\", \"ini\": 822, \"clust\": 940, \"rank\": 111, \"rankvar\": 275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2004, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2324, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1127, \"group\": [944.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14492_BALBc-1_X02_Y02_1160_253\", \"ini\": 821, \"clust\": 1314, \"rank\": 1624, \"rankvar\": 656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2005, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1358, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1128, \"group\": [1316.0, 684.0, 202.0, 57.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14502_BALBc-1_X02_Y02_1160_402\", \"ini\": 820, \"clust\": 2740, \"rank\": 995, \"rankvar\": 632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2006, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2798, \"cat-2\": \"Density: 27\", \"cat_2_index\": 974, \"group\": [2741.0, 1476.0, 436.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14546_BALBc-1_X02_Y02_1160_824\", \"ini\": 819, \"clust\": 739, \"rank\": 616, \"rankvar\": 350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2007, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 392, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1781, \"group\": [739.0, 467.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14684_BALBc-1_X02_Y02_1162_447\", \"ini\": 818, \"clust\": 2516, \"rank\": 1732, \"rankvar\": 1646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2008, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2799, \"cat-2\": \"Density: 23\", \"cat_2_index\": 415, \"group\": [2516.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14743_BALBc-1_X02_Y02_1163_128\", \"ini\": 817, \"clust\": 699, \"rank\": 82, \"rankvar\": 1105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2009, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1982, \"cat-2\": \"Density: 26\", \"cat_2_index\": 821, \"group\": [697.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14867_BALBc-1_X02_Y02_1164_624\", \"ini\": 816, \"clust\": 1995, \"rank\": 2344, \"rankvar\": 2356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2010, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2645, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1782, \"group\": [1993.0, 1127.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14896_BALBc-1_X02_Y02_1164_922\", \"ini\": 815, \"clust\": 2164, \"rank\": 1641, \"rankvar\": 1191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2011, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 393, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1783, \"group\": [2161.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14971_BALBc-1_X02_Y02_1165_840\", \"ini\": 814, \"clust\": 1100, \"rank\": 182, \"rankvar\": 16, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2012, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 394, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1892, \"group\": [1101.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15063_BALBc-1_X02_Y02_1166_969\", \"ini\": 813, \"clust\": 2027, \"rank\": 2178, \"rankvar\": 1275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2013, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 395, \"cat-2\": \"Density: 24\", \"cat_2_index\": 542, \"group\": [2027.0, 1142.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15135_BALBc-1_X02_Y02_1167_999\", \"ini\": 812, \"clust\": 2113, \"rank\": 2787, \"rankvar\": 2533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2014, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2161, \"cat-2\": \"Density: 20\", \"cat_2_index\": 169, \"group\": [2112.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15303_BALBc-1_X02_Y02_117_410\", \"ini\": 811, \"clust\": 901, \"rank\": 41, \"rankvar\": 382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2015, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2646, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1682, \"group\": [902.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15305_BALBc-1_X02_Y02_117_463\", \"ini\": 810, \"clust\": 2143, \"rank\": 2782, \"rankvar\": 2688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2016, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 849, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1893, \"group\": [2143.0, 1160.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15393_BALBc-1_X02_Y02_1170_650\", \"ini\": 809, \"clust\": 2016, \"rank\": 2173, \"rankvar\": 2143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2017, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 396, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2002, \"group\": [2014.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15414_BALBc-1_X02_Y02_1170_876\", \"ini\": 808, \"clust\": 2335, \"rank\": 2168, \"rankvar\": 1178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2018, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 397, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1784, \"group\": [2334.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15423_BALBc-1_X02_Y02_1170_954\", \"ini\": 807, \"clust\": 798, \"rank\": 129, \"rankvar\": 729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2019, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 398, \"cat-2\": \"Density: 26\", \"cat_2_index\": 822, \"group\": [800.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15568_BALBc-1_X02_Y02_1172_980\", \"ini\": 806, \"clust\": 734, \"rank\": 226, \"rankvar\": 630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2020, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 399, \"cat-2\": \"Density: 22\", \"cat_2_index\": 304, \"group\": [734.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15595_BALBc-1_X02_Y02_1173_333\", \"ini\": 805, \"clust\": 139, \"rank\": 1621, \"rankvar\": 296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2021, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2800, \"cat-2\": \"Density: 26\", \"cat_2_index\": 823, \"group\": [142.0, 88.0, 28.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15880_BALBc-1_X02_Y02_1176_923\", \"ini\": 804, \"clust\": 2010, \"rank\": 1876, \"rankvar\": 1378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2022, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 400, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2003, \"group\": [2011.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15939_BALBc-1_X02_Y02_1177_805\", \"ini\": 803, \"clust\": 1942, \"rank\": 2058, \"rankvar\": 508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2023, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 401, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1894, \"group\": [1942.0, 1112.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15968_BALBc-1_X02_Y02_1178_208\", \"ini\": 802, \"clust\": 933, \"rank\": 257, \"rankvar\": 781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2024, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1359, \"cat-2\": \"Density: 26\", \"cat_2_index\": 824, \"group\": [933.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15986_BALBc-1_X02_Y02_1178_415\", \"ini\": 801, \"clust\": 90, \"rank\": 681, \"rankvar\": 335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2025, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2647, \"cat-2\": \"Density: 24\", \"cat_2_index\": 543, \"group\": [91.0, 64.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16048_BALBc-1_X02_Y02_1178_942\", \"ini\": 800, \"clust\": 1965, \"rank\": 2382, \"rankvar\": 1779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2026, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 402, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1683, \"group\": [1963.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16314_BALBc-1_X02_Y02_1181_752\", \"ini\": 799, \"clust\": 1971, \"rank\": 2498, \"rankvar\": 1823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2027, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2648, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2100, \"group\": [1965.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16545_BALBc-1_X02_Y02_1184_787\", \"ini\": 798, \"clust\": 859, \"rank\": 112, \"rankvar\": 172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2028, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2649, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1785, \"group\": [860.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16556_BALBc-1_X02_Y02_1184_889\", \"ini\": 797, \"clust\": 851, \"rank\": 75, \"rankvar\": 1025, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2029, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 403, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2101, \"group\": [852.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16843_BALBc-1_X02_Y02_1188_851\", \"ini\": 796, \"clust\": 2169, \"rank\": 1731, \"rankvar\": 1277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2030, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 404, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2102, \"group\": [2163.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16917_BALBc-1_X02_Y02_1189_710\", \"ini\": 795, \"clust\": 2017, \"rank\": 2105, \"rankvar\": 1416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2031, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2162, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1684, \"group\": [2015.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17166_BALBc-1_X02_Y02_1192_172\", \"ini\": 794, \"clust\": 709, \"rank\": 484, \"rankvar\": 1192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2032, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 850, \"cat-2\": \"Density: 27\", \"cat_2_index\": 975, \"group\": [712.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17200_BALBc-1_X02_Y02_1192_66\", \"ini\": 793, \"clust\": 1554, \"rank\": 1806, \"rankvar\": 453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2033, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 851, \"cat-2\": \"Density: 22\", \"cat_2_index\": 305, \"group\": [1558.0, 848.0, 247.0, 70.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17277_BALBc-1_X02_Y02_1193_669\", \"ini\": 792, \"clust\": 974, \"rank\": 932, \"rankvar\": 15, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2034, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2163, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2004, \"group\": [974.0, 499.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17324_BALBc-1_X02_Y02_1194_343\", \"ini\": 791, \"clust\": 938, \"rank\": 29, \"rankvar\": 1111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2035, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2801, \"cat-2\": \"Density: 24\", \"cat_2_index\": 544, \"group\": [938.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17418_BALBc-1_X02_Y02_1195_565\", \"ini\": 790, \"clust\": 2218, \"rank\": 1068, \"rankvar\": 866, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2036, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2650, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1277, \"group\": [2221.0, 1202.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17557_BALBc-1_X02_Y02_1197_533\", \"ini\": 789, \"clust\": 443, \"rank\": 109, \"rankvar\": 1625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2037, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2651, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1423, \"group\": [443.0, 310.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17661_BALBc-1_X02_Y02_1198_827\", \"ini\": 788, \"clust\": 1698, \"rank\": 1953, \"rankvar\": 2685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2038, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 405, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2103, \"group\": [1699.0, 956.0, 286.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17686_BALBc-1_X02_Y02_1199_215\", \"ini\": 787, \"clust\": 2822, \"rank\": 1911, \"rankvar\": 1922, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2039, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2248, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1278, \"group\": [2825.0, 1536.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17736_BALBc-1_X02_Y02_1199_815\", \"ini\": 786, \"clust\": 2098, \"rank\": 2650, \"rankvar\": 2522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2040, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 406, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2104, \"group\": [2095.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17809_BALBc-1_X02_Y02_12_793\", \"ini\": 785, \"clust\": 2715, \"rank\": 2218, \"rankvar\": 1810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2041, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1360, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1786, \"group\": [2716.0, 1458.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18091_BALBc-1_X02_Y02_1202_280\", \"ini\": 784, \"clust\": 1271, \"rank\": 1127, \"rankvar\": 1760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2042, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2249, \"cat-2\": \"Density: 24\", \"cat_2_index\": 545, \"group\": [1272.0, 651.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18146_BALBc-1_X02_Y02_1202_911\", \"ini\": 783, \"clust\": 2357, \"rank\": 2627, \"rankvar\": 1921, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2043, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 407, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2492, \"group\": [2352.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18155_BALBc-1_X02_Y02_1202_975\", \"ini\": 782, \"clust\": 473, \"rank\": 362, \"rankvar\": 604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2044, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 408, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1129, \"group\": [473.0, 330.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18172_BALBc-1_X02_Y02_1203_305\", \"ini\": 781, \"clust\": 171, \"rank\": 588, \"rankvar\": 463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2045, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2652, \"cat-2\": \"Density: 25\", \"cat_2_index\": 681, \"group\": [170.0, 110.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18233_BALBc-1_X02_Y02_1204_137\", \"ini\": 780, \"clust\": 1591, \"rank\": 1505, \"rankvar\": 1492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2046, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 706, \"cat-2\": \"Density: 23\", \"cat_2_index\": 416, \"group\": [1595.0, 878.0, 256.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18261_BALBc-1_X02_Y02_1204_367\", \"ini\": 779, \"clust\": 1117, \"rank\": 678, \"rankvar\": 495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2047, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2802, \"cat-2\": \"Density: 26\", \"cat_2_index\": 825, \"group\": [1120.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18290_BALBc-1_X02_Y02_1204_637\", \"ini\": 778, \"clust\": 2200, \"rank\": 1397, \"rankvar\": 1197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2048, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2164, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1895, \"group\": [2198.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18505_BALBc-1_X02_Y02_1207_236\", \"ini\": 777, \"clust\": 807, \"rank\": 69, \"rankvar\": 770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2049, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2250, \"cat-2\": \"Density: 25\", \"cat_2_index\": 682, \"group\": [811.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18616_BALBc-1_X02_Y02_1208_730\", \"ini\": 776, \"clust\": 2201, \"rank\": 1335, \"rankvar\": 499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2050, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 409, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2341, \"group\": [2199.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18834_BALBc-1_X02_Y02_1210_68\", \"ini\": 775, \"clust\": 1333, \"rank\": 1138, \"rankvar\": 681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2051, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 852, \"cat-2\": \"Density: 22\", \"cat_2_index\": 306, \"group\": [1334.0, 700.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18835_BALBc-1_X02_Y02_1210_690\", \"ini\": 774, \"clust\": 1041, \"rank\": 469, \"rankvar\": 533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2052, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 410, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1685, \"group\": [1044.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18895_BALBc-1_X02_Y02_1211_550\", \"ini\": 773, \"clust\": 2493, \"rank\": 1610, \"rankvar\": 2162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2053, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1361, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1279, \"group\": [2494.0, 1341.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18963_BALBc-1_X02_Y02_1212_417\", \"ini\": 772, \"clust\": 113, \"rank\": 491, \"rankvar\": 679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2054, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2653, \"cat-2\": \"Density: 23\", \"cat_2_index\": 417, \"group\": [112.0, 69.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19058_BALBc-1_X02_Y02_1213_786\", \"ini\": 771, \"clust\": 844, \"rank\": 49, \"rankvar\": 337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2055, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 411, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2185, \"group\": [844.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19143_BALBc-1_X02_Y02_1214_853\", \"ini\": 770, \"clust\": 2168, \"rank\": 1513, \"rankvar\": 1120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2056, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 412, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2186, \"group\": [2165.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19158_BALBc-1_X02_Y02_1214_998\", \"ini\": 769, \"clust\": 2339, \"rank\": 2235, \"rankvar\": 1180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2057, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 413, \"cat-2\": \"Density: 22\", \"cat_2_index\": 307, \"group\": [2336.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19934_BALBc-1_X02_Y02_1224_37\", \"ini\": 768, \"clust\": 426, \"rank\": 933, \"rankvar\": 120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2058, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 853, \"cat-2\": \"Density: 23\", \"cat_2_index\": 418, \"group\": [430.0, 305.0, 105.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19942_BALBc-1_X02_Y02_1224_457\", \"ini\": 767, \"clust\": 698, \"rank\": 48, \"rankvar\": 929, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2059, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2654, \"cat-2\": \"Density: 24\", \"cat_2_index\": 546, \"group\": [699.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19965_BALBc-1_X02_Y02_1224_717\", \"ini\": 766, \"clust\": 2099, \"rank\": 2711, \"rankvar\": 2539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2060, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 414, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2105, \"group\": [2096.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20040_BALBc-1_X02_Y02_1225_677\", \"ini\": 765, \"clust\": 2117, \"rank\": 2243, \"rankvar\": 2037, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2061, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 415, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2187, \"group\": [2117.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20113_BALBc-1_X02_Y02_1226_605\", \"ini\": 764, \"clust\": 2427, \"rank\": 1255, \"rankvar\": 210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2062, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2165, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2005, \"group\": [2428.0, 1293.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20117_BALBc-1_X02_Y02_1226_636\", \"ini\": 763, \"clust\": 576, \"rank\": 791, \"rankvar\": 607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2063, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 416, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2342, \"group\": [577.0, 394.0, 131.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20128_BALBc-1_X02_Y02_1226_776\", \"ini\": 762, \"clust\": 2000, \"rank\": 1794, \"rankvar\": 1260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2064, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2166, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2270, \"group\": [2001.0, 1133.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20281_BALBc-1_X02_Y02_1228_895\", \"ini\": 761, \"clust\": 2513, \"rank\": 1376, \"rankvar\": 1541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2065, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 417, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2271, \"group\": [2514.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20297_BALBc-1_X02_Y02_1229_260\", \"ini\": 760, \"clust\": 796, \"rank\": 420, \"rankvar\": 384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2066, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 418, \"cat-2\": \"Density: 24\", \"cat_2_index\": 547, \"group\": [797.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20538_BALBc-1_X02_Y02_1231_364\", \"ini\": 759, \"clust\": 2741, \"rank\": 1391, \"rankvar\": 1899, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2067, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 925, \"cat-2\": \"Density: 23\", \"cat_2_index\": 419, \"group\": [2742.0, 1477.0, 436.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20631_BALBc-1_X02_Y02_1232_383\", \"ini\": 758, \"clust\": 1034, \"rank\": 496, \"rankvar\": 74, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2068, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 419, \"cat-2\": \"Density: 22\", \"cat_2_index\": 308, \"group\": [1035.0, 520.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20752_BALBc-1_X02_Y02_1233_882\", \"ini\": 757, \"clust\": 2232, \"rank\": 1550, \"rankvar\": 282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2069, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 420, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2343, \"group\": [2233.0, 1212.0, 361.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20757_BALBc-1_X02_Y02_1233_942\", \"ini\": 756, \"clust\": 133, \"rank\": 823, \"rankvar\": 414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2070, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 421, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2006, \"group\": [133.0, 83.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20801_BALBc-1_X02_Y02_1234_579\", \"ini\": 755, \"clust\": 934, \"rank\": 276, \"rankvar\": 400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2071, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1362, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1686, \"group\": [934.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20824_BALBc-1_X02_Y02_1234_805\", \"ini\": 754, \"clust\": 2296, \"rank\": 1823, \"rankvar\": 688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2072, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2167, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2408, \"group\": [2294.0, 1250.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20990_BALBc-1_X02_Y02_1236_981\", \"ini\": 753, \"clust\": 876, \"rank\": 9, \"rankvar\": 457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2073, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2655, \"cat-2\": \"Density: 27\", \"cat_2_index\": 976, \"group\": [873.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21052_BALBc-1_X02_Y02_1238_118\", \"ini\": 752, \"clust\": 700, \"rank\": 121, \"rankvar\": 285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2074, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 707, \"cat-2\": \"Density: 24\", \"cat_2_index\": 548, \"group\": [698.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21101_BALBc-1_X02_Y02_1238_698\", \"ini\": 751, \"clust\": 990, \"rank\": 815, \"rankvar\": 725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2075, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 422, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2106, \"group\": [991.0, 508.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21177_BALBc-1_X02_Y02_1239_735\", \"ini\": 750, \"clust\": 744, \"rank\": 130, \"rankvar\": 1259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2076, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 423, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2188, \"group\": [743.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21417_BALBc-1_X02_Y02_1241_859\", \"ini\": 749, \"clust\": 905, \"rank\": 100, \"rankvar\": 13, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2077, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2168, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2189, \"group\": [903.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21484_BALBc-1_X02_Y02_1242_93\", \"ini\": 748, \"clust\": 2810, \"rank\": 1553, \"rankvar\": 1941, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2078, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 854, \"cat-2\": \"Density: 23\", \"cat_2_index\": 420, \"group\": [2809.0, 1526.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21581_BALBc-1_X02_Y02_1244_226\", \"ini\": 747, \"clust\": 163, \"rank\": 1514, \"rankvar\": 487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2079, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 855, \"cat-2\": \"Density: 27\", \"cat_2_index\": 977, \"group\": [164.0, 105.0, 34.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21628_BALBc-1_X02_Y02_1244_966\", \"ini\": 746, \"clust\": 2354, \"rank\": 2558, \"rankvar\": 1813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2080, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2656, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1424, \"group\": [2349.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21630_BALBc-1_X02_Y02_1244_997\", \"ini\": 745, \"clust\": 2312, \"rank\": 2026, \"rankvar\": 821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2081, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2657, \"cat-2\": \"Density: 22\", \"cat_2_index\": 309, \"group\": [2313.0, 1253.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21647_BALBc-1_X02_Y02_1245_199\", \"ini\": 744, \"clust\": 680, \"rank\": 599, \"rankvar\": 229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2082, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 708, \"cat-2\": \"Density: 27\", \"cat_2_index\": 978, \"group\": [680.0, 449.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21656_BALBc-1_X02_Y02_1245_280\", \"ini\": 743, \"clust\": 178, \"rank\": 662, \"rankvar\": 1057, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2083, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 926, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1280, \"group\": [181.0, 118.0, 38.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21832_BALBc-1_X02_Y02_1247_883\", \"ini\": 742, \"clust\": 134, \"rank\": 685, \"rankvar\": 1094, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2084, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 424, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2190, \"group\": [134.0, 83.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22423_BALBc-1_X02_Y02_1254_748\", \"ini\": 741, \"clust\": 1966, \"rank\": 2417, \"rankvar\": 1358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2085, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 425, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2344, \"group\": [1961.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22543_BALBc-1_X02_Y02_1256_600\", \"ini\": 740, \"clust\": 2494, \"rank\": 1751, \"rankvar\": 1424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2086, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 426, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2107, \"group\": [2495.0, 1341.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22609_BALBc-1_X02_Y02_1257_427\", \"ini\": 739, \"clust\": 350, \"rank\": 1325, \"rankvar\": 868, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2087, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1363, \"cat-2\": \"Density: 21\", \"cat_2_index\": 222, \"group\": [351.0, 246.0, 86.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22632_BALBc-1_X02_Y02_1257_646\", \"ini\": 738, \"clust\": 154, \"rank\": 1655, \"rankvar\": 1391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2088, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 427, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2108, \"group\": [154.0, 96.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22899_BALBc-1_X02_Y02_1260_506\", \"ini\": 737, \"clust\": 952, \"rank\": 739, \"rankvar\": 357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2089, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1364, \"cat-2\": \"Density: 25\", \"cat_2_index\": 683, \"group\": [953.0, 486.0, 139.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22914_BALBc-1_X02_Y02_1260_721\", \"ini\": 736, \"clust\": 1953, \"rank\": 2052, \"rankvar\": 2033, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2090, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 428, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2007, \"group\": [1955.0, 1115.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22990_BALBc-1_X02_Y02_1261_872\", \"ini\": 735, \"clust\": 1944, \"rank\": 1892, \"rankvar\": 609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2091, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 429, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1896, \"group\": [1944.0, 1113.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23225_BALBc-1_X02_Y02_1264_989\", \"ini\": 734, \"clust\": 2338, \"rank\": 2491, \"rankvar\": 1215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2092, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2169, \"cat-2\": \"Density: 20\", \"cat_2_index\": 170, \"group\": [2338.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23259_BALBc-1_X02_Y02_1265_403\", \"ini\": 733, \"clust\": 849, \"rank\": 207, \"rankvar\": 112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2093, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 430, \"cat-2\": \"Density: 19\", \"cat_2_index\": 123, \"group\": [850.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23400_BALBc-1_X02_Y02_1267_557\", \"ini\": 732, \"clust\": 6, \"rank\": 1308, \"rankvar\": 2407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2094, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1365, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1130, \"group\": [6.0, 6.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23411_BALBc-1_X02_Y02_1267_797\", \"ini\": 731, \"clust\": 431, \"rank\": 914, \"rankvar\": 1832, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2095, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2170, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1897, \"group\": [432.0, 306.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23420_BALBc-1_X02_Y02_1267_912\", \"ini\": 730, \"clust\": 2384, \"rank\": 2502, \"rankvar\": 1569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2096, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 431, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1425, \"group\": [2383.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23445_BALBc-1_X02_Y02_1268_264\", \"ini\": 729, \"clust\": 215, \"rank\": 1250, \"rankvar\": 409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2097, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 709, \"cat-2\": \"Density: 23\", \"cat_2_index\": 421, \"group\": [218.0, 150.0, 52.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23486_BALBc-1_X02_Y02_1268_775\", \"ini\": 728, \"clust\": 2532, \"rank\": 1353, \"rankvar\": 329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2098, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2171, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2191, \"group\": [2530.0, 1356.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23578_BALBc-1_X02_Y02_127_136\", \"ini\": 727, \"clust\": 2730, \"rank\": 2674, \"rankvar\": 2755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2099, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 432, \"cat-2\": \"Density: 22\", \"cat_2_index\": 310, \"group\": [2734.0, 1469.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23693_BALBc-1_X02_Y02_1270_691\", \"ini\": 726, \"clust\": 2068, \"rank\": 2710, \"rankvar\": 2144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2100, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 433, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1787, \"group\": [2068.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23786_BALBc-1_X02_Y02_1272_150\", \"ini\": 725, \"clust\": 903, \"rank\": 47, \"rankvar\": 98, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2101, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 710, \"cat-2\": \"Density: 20\", \"cat_2_index\": 171, \"group\": [901.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23903_BALBc-1_X02_Y02_1273_584\", \"ini\": 724, \"clust\": 425, \"rank\": 1234, \"rankvar\": 971, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2102, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 434, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1546, \"group\": [426.0, 302.0, 104.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23932_BALBc-1_X02_Y02_1273_933\", \"ini\": 723, \"clust\": 975, \"rank\": 938, \"rankvar\": 469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2103, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 435, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1281, \"group\": [978.0, 502.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24090_BALBc-1_X02_Y02_1275_977\", \"ini\": 722, \"clust\": 2001, \"rank\": 1698, \"rankvar\": 704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2104, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2172, \"cat-2\": \"Density: 20\", \"cat_2_index\": 172, \"group\": [2002.0, 1134.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24259_BALBc-1_X02_Y02_1278_364\", \"ini\": 721, \"clust\": 1315, \"rank\": 1928, \"rankvar\": 1250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2105, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1667, \"cat-2\": \"Density: 18\", \"cat_2_index\": 98, \"group\": [1314.0, 682.0, 201.0, 57.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24308_BALBc-1_X02_Y02_1278_906\", \"ini\": 720, \"clust\": 2178, \"rank\": 2139, \"rankvar\": 2526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2106, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 436, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1282, \"group\": [2177.0, 1182.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24363_BALBc-1_X02_Y02_1279_658\", \"ini\": 719, \"clust\": 2197, \"rank\": 1416, \"rankvar\": 1510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2107, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 437, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2109, \"group\": [2197.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24400_BALBc-1_X02_Y02_128_401\", \"ini\": 718, \"clust\": 7, \"rank\": 1311, \"rankvar\": 2388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2108, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2658, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1547, \"group\": [7.0, 6.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24702_BALBc-1_X02_Y02_1283_757\", \"ini\": 717, \"clust\": 889, \"rank\": 35, \"rankvar\": 640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2109, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 438, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1687, \"group\": [891.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24791_BALBc-1_X02_Y02_1284_937\", \"ini\": 716, \"clust\": 1967, \"rank\": 2271, \"rankvar\": 881, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2110, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2173, \"cat-2\": \"Density: 25\", \"cat_2_index\": 684, \"group\": [1962.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24871_BALBc-1_X02_Y02_1286_196\", \"ini\": 715, \"clust\": 545, \"rank\": 808, \"rankvar\": 772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2111, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 711, \"cat-2\": \"Density: 23\", \"cat_2_index\": 422, \"group\": [548.0, 374.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24910_BALBc-1_X02_Y02_1286_61\", \"ini\": 714, \"clust\": 179, \"rank\": 640, \"rankvar\": 212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2112, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 856, \"cat-2\": \"Density: 22\", \"cat_2_index\": 311, \"group\": [179.0, 116.0, 38.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24930_BALBc-1_X02_Y02_1286_94\", \"ini\": 713, \"clust\": 411, \"rank\": 1495, \"rankvar\": 1041, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2113, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 857, \"cat-2\": \"Density: 21\", \"cat_2_index\": 223, \"group\": [414.0, 291.0, 100.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24997_BALBc-1_X02_Y02_1287_830\", \"ini\": 712, \"clust\": 2289, \"rank\": 2211, \"rankvar\": 1509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2114, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2174, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1548, \"group\": [2289.0, 1246.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25247_BALBc-1_X02_Y02_1290_427\", \"ini\": 711, \"clust\": 544, \"rank\": 783, \"rankvar\": 1731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2115, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1366, \"cat-2\": \"Density: 18\", \"cat_2_index\": 99, \"group\": [549.0, 375.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25317_BALBc-1_X02_Y02_1291_314\", \"ini\": 710, \"clust\": 114, \"rank\": 649, \"rankvar\": 1170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2116, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 712, \"cat-2\": \"Density: 20\", \"cat_2_index\": 173, \"group\": [113.0, 69.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25428_BALBc-1_X02_Y02_1292_703\", \"ini\": 709, \"clust\": 1194, \"rank\": 663, \"rankvar\": 289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2117, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 439, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1688, \"group\": [1195.0, 588.0, 165.0, 44.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25511_BALBc-1_X02_Y02_1293_680\", \"ini\": 708, \"clust\": 1043, \"rank\": 222, \"rankvar\": 461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2118, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 440, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1689, \"group\": [1041.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25661_BALBc-1_X02_Y02_1295_739\", \"ini\": 707, \"clust\": 671, \"rank\": 560, \"rankvar\": 785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2119, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 441, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1898, \"group\": [674.0, 446.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25688_BALBc-1_X02_Y02_1296_24\", \"ini\": 706, \"clust\": 210, \"rank\": 763, \"rankvar\": 1326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2120, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1367, \"cat-2\": \"Density: 22\", \"cat_2_index\": 312, \"group\": [209.0, 141.0, 47.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25752_BALBc-1_X02_Y02_1297_227\", \"ini\": 705, \"clust\": 1267, \"rank\": 1368, \"rankvar\": 1161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2121, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2494, \"cat-2\": \"Density: 23\", \"cat_2_index\": 423, \"group\": [1270.0, 649.0, 187.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26022_BALBc-1_X02_Y02_13_668\", \"ini\": 704, \"clust\": 119, \"rank\": 1005, \"rankvar\": 539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2122, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1368, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1283, \"group\": [120.0, 76.0, 25.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26077_BALBc-1_X02_Y02_130_473\", \"ini\": 703, \"clust\": 1203, \"rank\": 992, \"rankvar\": 2277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2123, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 858, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1549, \"group\": [1205.0, 598.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26124_BALBc-1_X02_Y02_1300_173\", \"ini\": 702, \"clust\": 627, \"rank\": 468, \"rankvar\": 197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2124, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 442, \"cat-2\": \"Density: 19\", \"cat_2_index\": 124, \"group\": [626.0, 423.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26182_BALBc-1_X02_Y02_1300_787\", \"ini\": 701, \"clust\": 2458, \"rank\": 1061, \"rankvar\": 215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2125, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2175, \"cat-2\": \"Density: 27\", \"cat_2_index\": 979, \"group\": [2457.0, 1307.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26230_BALBc-1_X02_Y02_1301_568\", \"ini\": 700, \"clust\": 2663, \"rank\": 2755, \"rankvar\": 2499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2126, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2659, \"cat-2\": \"Density: 26\", \"cat_2_index\": 826, \"group\": [2664.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26312_BALBc-1_X02_Y02_1302_626\", \"ini\": 699, \"clust\": 1669, \"rank\": 1582, \"rankvar\": 1063, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2127, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 443, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1131, \"group\": [1670.0, 927.0, 271.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26315_BALBc-1_X02_Y02_1302_700\", \"ini\": 698, \"clust\": 150, \"rank\": 2047, \"rankvar\": 1802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2128, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 444, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1550, \"group\": [150.0, 94.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26391_BALBc-1_X02_Y02_1303_927\", \"ini\": 697, \"clust\": 871, \"rank\": 17, \"rankvar\": 203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2129, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2176, \"cat-2\": \"Density: 23\", \"cat_2_index\": 424, \"group\": [869.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26449_BALBc-1_X02_Y02_1304_811\", \"ini\": 696, \"clust\": 856, \"rank\": 12, \"rankvar\": 751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2130, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2177, \"cat-2\": \"Density: 26\", \"cat_2_index\": 827, \"group\": [854.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26566_BALBc-1_X02_Y02_1306_658\", \"ini\": 695, \"clust\": 1017, \"rank\": 667, \"rankvar\": 151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2131, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 445, \"cat-2\": \"Density: 26\", \"cat_2_index\": 828, \"group\": [1015.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26693_BALBc-1_X02_Y02_1308_47\", \"ini\": 694, \"clust\": 61, \"rank\": 1329, \"rankvar\": 1983, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2132, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 859, \"cat-2\": \"Density: 20\", \"cat_2_index\": 174, \"group\": [60.0, 49.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26715_BALBc-1_X02_Y02_1308_750\", \"ini\": 693, \"clust\": 1958, \"rank\": 2541, \"rankvar\": 2304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2133, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 446, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1426, \"group\": [1979.0, 1120.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26846_BALBc-1_X02_Y02_131_495\", \"ini\": 692, \"clust\": 1021, \"rank\": 268, \"rankvar\": 57, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2134, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 447, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1427, \"group\": [1020.0, 517.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27069_BALBc-1_X02_Y02_1312_571\", \"ini\": 691, \"clust\": 793, \"rank\": 136, \"rankvar\": 1431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2135, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2660, \"cat-2\": \"Density: 23\", \"cat_2_index\": 425, \"group\": [792.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27073_BALBc-1_X02_Y02_1312_596\", \"ini\": 690, \"clust\": 1031, \"rank\": 377, \"rankvar\": 60, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2136, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 448, \"cat-2\": \"Density: 24\", \"cat_2_index\": 549, \"group\": [1030.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27093_BALBc-1_X02_Y02_1312_855\", \"ini\": 689, \"clust\": 2182, \"rank\": 1371, \"rankvar\": 973, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2137, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 449, \"cat-2\": \"Density: 27\", \"cat_2_index\": 980, \"group\": [2207.0, 1189.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27175_BALBc-1_X02_Y02_1313_889\", \"ini\": 688, \"clust\": 1700, \"rank\": 2221, \"rankvar\": 568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2138, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 450, \"cat-2\": \"Density: 21\", \"cat_2_index\": 224, \"group\": [1704.0, 959.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27201_BALBc-1_X02_Y02_1314_469\", \"ini\": 687, \"clust\": 121, \"rank\": 1167, \"rankvar\": 300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2139, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2661, \"cat-2\": \"Density: 16\", \"cat_2_index\": 62, \"group\": [122.0, 77.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27203_BALBc-1_X02_Y02_1314_500\", \"ini\": 686, \"clust\": 34, \"rank\": 773, \"rankvar\": 1007, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2140, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2662, \"cat-2\": \"Density: 19\", \"cat_2_index\": 125, \"group\": [34.0, 31.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27300_BALBc-1_X02_Y02_1315_692\", \"ini\": 685, \"clust\": 936, \"rank\": 179, \"rankvar\": 618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2141, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 451, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1132, \"group\": [937.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27591_BALBc-1_X02_Y02_1319_767\", \"ini\": 684, \"clust\": 584, \"rank\": 607, \"rankvar\": 1403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2142, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 452, \"cat-2\": \"Density: 26\", \"cat_2_index\": 829, \"group\": [586.0, 399.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27698_BALBc-1_X02_Y02_1320_253\", \"ini\": 683, \"clust\": 1020, \"rank\": 320, \"rankvar\": 35, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2143, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2495, \"cat-2\": \"Density: 19\", \"cat_2_index\": 126, \"group\": [1022.0, 517.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27744_BALBc-1_X02_Y02_1320_827\", \"ini\": 682, \"clust\": 2309, \"rank\": 1842, \"rankvar\": 1515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2144, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 453, \"cat-2\": \"Density: 21\", \"cat_2_index\": 225, \"group\": [2306.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27802_BALBc-1_X02_Y02_1321_633\", \"ini\": 681, \"clust\": 2256, \"rank\": 1633, \"rankvar\": 1530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2145, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 454, \"cat-2\": \"Density: 24\", \"cat_2_index\": 550, \"group\": [2256.0, 1232.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27977_BALBc-1_X02_Y02_1324_135\", \"ini\": 680, \"clust\": 2630, \"rank\": 2301, \"rankvar\": 835, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2146, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1369, \"cat-2\": \"Density: 15\", \"cat_2_index\": 45, \"group\": [2637.0, 1429.0, 421.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28001_BALBc-1_X02_Y02_1324_408\", \"ini\": 679, \"clust\": 110, \"rank\": 903, \"rankvar\": 1076, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2147, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1668, \"cat-2\": \"Density: 13\", \"cat_2_index\": 20, \"group\": [110.0, 67.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28058_BALBc-1_X02_Y02_1325_209\", \"ini\": 678, \"clust\": 189, \"rank\": 1270, \"rankvar\": 980, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2148, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1983, \"cat-2\": \"Density: 18\", \"cat_2_index\": 100, \"group\": [189.0, 125.0, 41.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28143_BALBc-1_X02_Y02_1326_180\", \"ini\": 677, \"clust\": 303, \"rank\": 291, \"rankvar\": 2098, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2149, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 455, \"cat-2\": \"Density: 15\", \"cat_2_index\": 46, \"group\": [300.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28240_BALBc-1_X02_Y02_1327_430\", \"ini\": 676, \"clust\": 2721, \"rank\": 1992, \"rankvar\": 1021, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2150, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1984, \"cat-2\": \"Density: 12\", \"cat_2_index\": 10, \"group\": [2724.0, 1463.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28326_BALBc-1_X02_Y02_1328_311\", \"ini\": 675, \"clust\": 60, \"rank\": 1504, \"rankvar\": 1351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2151, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1370, \"cat-2\": \"Density: 13\", \"cat_2_index\": 21, \"group\": [62.0, 49.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28355_BALBc-1_X02_Y02_1328_671\", \"ini\": 674, \"clust\": 2282, \"rank\": 2370, \"rankvar\": 1722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2152, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2178, \"cat-2\": \"Density: 21\", \"cat_2_index\": 226, \"group\": [2404.0, 1274.0, 378.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28450_BALBc-1_X02_Y02_1329_795\", \"ini\": 673, \"clust\": 2281, \"rank\": 1970, \"rankvar\": 877, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2153, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 456, \"cat-2\": \"Density: 21\", \"cat_2_index\": 227, \"group\": [2281.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28468_BALBc-1_X02_Y02_1329_935\", \"ini\": 672, \"clust\": 2108, \"rank\": 2779, \"rankvar\": 2503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2154, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2179, \"cat-2\": \"Density: 17\", \"cat_2_index\": 82, \"group\": [2105.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28590_BALBc-1_X02_Y02_1330_719\", \"ini\": 671, \"clust\": 2081, \"rank\": 2451, \"rankvar\": 1700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2155, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2180, \"cat-2\": \"Density: 25\", \"cat_2_index\": 685, \"group\": [2094.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28625_BALBc-1_X02_Y02_1331_165\", \"ini\": 670, \"clust\": 180, \"rank\": 978, \"rankvar\": 18, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2156, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 628, \"cat-2\": \"Density: 14\", \"cat_2_index\": 32, \"group\": [180.0, 117.0, 38.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28658_BALBc-1_X02_Y02_1331_656\", \"ini\": 669, \"clust\": 732, \"rank\": 411, \"rankvar\": 541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2157, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2181, \"cat-2\": \"Density: 23\", \"cat_2_index\": 426, \"group\": [731.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28726_BALBc-1_X02_Y02_1332_561\", \"ini\": 668, \"clust\": 2709, \"rank\": 2661, \"rankvar\": 2324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2158, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2663, \"cat-2\": \"Density: 19\", \"cat_2_index\": 127, \"group\": [2711.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28748_BALBc-1_X02_Y02_1332_775\", \"ini\": 667, \"clust\": 2517, \"rank\": 1345, \"rankvar\": 736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2159, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 457, \"cat-2\": \"Density: 20\", \"cat_2_index\": 175, \"group\": [2520.0, 1352.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28827_BALBc-1_X02_Y02_1333_879\", \"ini\": 666, \"clust\": 2198, \"rank\": 1217, \"rankvar\": 1357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2160, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2182, \"cat-2\": \"Density: 18\", \"cat_2_index\": 101, \"group\": [2195.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28880_BALBc-1_X02_Y02_1334_638\", \"ini\": 665, \"clust\": 116, \"rank\": 736, \"rankvar\": 138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2161, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 458, \"cat-2\": \"Density: 20\", \"cat_2_index\": 176, \"group\": [116.0, 72.0, 24.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29002_BALBc-1_X02_Y02_1336_613\", \"ini\": 664, \"clust\": 142, \"rank\": 1652, \"rankvar\": 884, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2162, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 459, \"cat-2\": \"Density: 19\", \"cat_2_index\": 128, \"group\": [145.0, 90.0, 29.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29036_BALBc-1_X02_Y02_1337_280\", \"ini\": 663, \"clust\": 382, \"rank\": 1617, \"rankvar\": 2395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2163, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1371, \"cat-2\": \"Density: 13\", \"cat_2_index\": 22, \"group\": [382.0, 265.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29306_BALBc-1_X02_Y02_135_188\", \"ini\": 662, \"clust\": 1410, \"rank\": 1684, \"rankvar\": 1735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2164, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1372, \"cat-2\": \"Density: 23\", \"cat_2_index\": 427, \"group\": [1411.0, 760.0, 225.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29325_BALBc-1_X02_Y02_135_44\", \"ini\": 661, \"clust\": 1065, \"rank\": 466, \"rankvar\": 966, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2165, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1373, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1690, \"group\": [1069.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29381_BALBc-1_X02_Y02_136_322\", \"ini\": 660, \"clust\": 1934, \"rank\": 2811, \"rankvar\": 2682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2166, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2664, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1428, \"group\": [1934.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29406_BALBc-1_X02_Y02_136_579\", \"ini\": 659, \"clust\": 1774, \"rank\": 2145, \"rankvar\": 2192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2167, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 460, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2110, \"group\": [1773.0, 1005.0, 303.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29538_BALBc-1_X02_Y02_138_553\", \"ini\": 658, \"clust\": 423, \"rank\": 1015, \"rankvar\": 63, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2168, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 461, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2272, \"group\": [423.0, 299.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29589_BALBc-1_X02_Y02_139_229\", \"ini\": 657, \"clust\": 2729, \"rank\": 2574, \"rankvar\": 2810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2169, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1374, \"cat-2\": \"Density: 22\", \"cat_2_index\": 313, \"group\": [2729.0, 1467.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29755_BALBc-1_X02_Y02_140_609\", \"ini\": 656, \"clust\": 948, \"rank\": 1213, \"rankvar\": 711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2170, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1375, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2008, \"group\": [952.0, 485.0, 138.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29945_BALBc-1_X02_Y02_143_270\", \"ini\": 655, \"clust\": 2808, \"rank\": 1618, \"rankvar\": 2550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2171, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1552, \"cat-2\": \"Density: 23\", \"cat_2_index\": 428, \"group\": [2817.0, 1531.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29975_BALBc-1_X02_Y02_143_638\", \"ini\": 654, \"clust\": 2466, \"rank\": 1240, \"rankvar\": 1312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2172, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1376, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2192, \"group\": [2469.0, 1317.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29979_BALBc-1_X02_Y02_143_672\", \"ini\": 653, \"clust\": 1205, \"rank\": 1344, \"rankvar\": 2233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2173, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1377, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2009, \"group\": [1204.0, 597.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30142_BALBc-1_X02_Y02_145_833\", \"ini\": 652, \"clust\": 1798, \"rank\": 2413, \"rankvar\": 2581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2174, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1378, \"cat-2\": \"Density: 26\", \"cat_2_index\": 830, \"group\": [1797.0, 1016.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30179_BALBc-1_X02_Y02_146_479\", \"ini\": 651, \"clust\": 2708, \"rank\": 2295, \"rankvar\": 1680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2175, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 860, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1429, \"group\": [2712.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30188_BALBc-1_X02_Y02_146_532\", \"ini\": 650, \"clust\": 585, \"rank\": 454, \"rankvar\": 675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2176, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1379, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1788, \"group\": [585.0, 399.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30434_BALBc-1_X02_Y02_149_94\", \"ini\": 649, \"clust\": 2503, \"rank\": 2522, \"rankvar\": 2713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2177, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 713, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1284, \"group\": [2502.0, 1345.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30646_BALBc-1_X02_Y02_151_872\", \"ini\": 648, \"clust\": 1032, \"rank\": 178, \"rankvar\": 293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2178, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1380, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1285, \"group\": [1031.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30861_BALBc-1_X02_Y02_154_562\", \"ini\": 647, \"clust\": 2228, \"rank\": 1266, \"rankvar\": 646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2179, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1381, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2010, \"group\": [2227.0, 1206.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30899_BALBc-1_X02_Y02_155_136\", \"ini\": 646, \"clust\": 2635, \"rank\": 2556, \"rankvar\": 1128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2180, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 462, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1133, \"group\": [2633.0, 1426.0, 420.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30927_BALBc-1_X02_Y02_155_518\", \"ini\": 645, \"clust\": 2222, \"rank\": 1602, \"rankvar\": 418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2181, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1382, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1551, \"group\": [2228.0, 1207.0, 357.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31105_BALBc-1_X02_Y02_157_714\", \"ini\": 644, \"clust\": 1856, \"rank\": 2234, \"rankvar\": 1649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2182, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1383, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1899, \"group\": [1857.0, 1049.0, 316.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31639_BALBc-1_X02_Y02_164_25\", \"ini\": 643, \"clust\": 2811, \"rank\": 1501, \"rankvar\": 1875, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1384, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1286, \"group\": [2812.0, 1527.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31675_BALBc-1_X02_Y02_164_786\", \"ini\": 642, \"clust\": 2713, \"rank\": 1775, \"rankvar\": 1235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2184, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1385, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1287, \"group\": [2714.0, 1457.0, 428.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31758_BALBc-1_X02_Y02_165_987\", \"ini\": 641, \"clust\": 1777, \"rank\": 1963, \"rankvar\": 2460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2185, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1386, \"cat-2\": \"Density: 18\", \"cat_2_index\": 102, \"group\": [1777.0, 1008.0, 304.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31767_BALBc-1_X02_Y02_166_176\", \"ini\": 640, \"clust\": 624, \"rank\": 693, \"rankvar\": 356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2186, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1387, \"cat-2\": \"Density: 22\", \"cat_2_index\": 314, \"group\": [625.0, 422.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31803_BALBc-1_X02_Y02_166_611\", \"ini\": 639, \"clust\": 1673, \"rank\": 1445, \"rankvar\": 856, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2187, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 463, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1789, \"group\": [1672.0, 929.0, 272.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31929_BALBc-1_X02_Y02_168_588\", \"ini\": 638, \"clust\": 2441, \"rank\": 1430, \"rankvar\": 734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2188, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1388, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1691, \"group\": [2444.0, 1300.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31935_BALBc-1_X02_Y02_168_629\", \"ini\": 637, \"clust\": 1796, \"rank\": 2436, \"rankvar\": 2401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2189, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1389, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1790, \"group\": [1798.0, 1016.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32146_BALBc-1_X02_Y02_170_52\", \"ini\": 636, \"clust\": 313, \"rank\": 1529, \"rankvar\": 2445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2190, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 714, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1430, \"group\": [310.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32156_BALBc-1_X02_Y02_170_685\", \"ini\": 635, \"clust\": 727, \"rank\": 321, \"rankvar\": 56, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2191, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1390, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1791, \"group\": [727.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32358_BALBc-1_X02_Y02_173_739\", \"ini\": 634, \"clust\": 1787, \"rank\": 1944, \"rankvar\": 2735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2192, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1391, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1552, \"group\": [1789.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32397_BALBc-1_X02_Y02_174_285\", \"ini\": 633, \"clust\": 2785, \"rank\": 1829, \"rankvar\": 2691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2193, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 715, \"cat-2\": \"Density: 21\", \"cat_2_index\": 228, \"group\": [2786.0, 1508.0, 449.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32509_BALBc-1_X02_Y02_175_663\", \"ini\": 632, \"clust\": 387, \"rank\": 716, \"rankvar\": 2572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2194, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1392, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1792, \"group\": [387.0, 269.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32671_BALBc-1_X02_Y02_177_97\", \"ini\": 631, \"clust\": 1779, \"rank\": 2683, \"rankvar\": 2571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2195, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 716, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1431, \"group\": [1779.0, 1010.0, 306.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32767_BALBc-1_X02_Y02_179_372\", \"ini\": 630, \"clust\": 583, \"rank\": 915, \"rankvar\": 1366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2196, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2665, \"cat-2\": \"Density: 23\", \"cat_2_index\": 429, \"group\": [582.0, 398.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32865_BALBc-1_X02_Y02_18_566\", \"ini\": 629, \"clust\": 1863, \"rank\": 1425, \"rankvar\": 1244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2197, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1393, \"cat-2\": \"Density: 24\", \"cat_2_index\": 551, \"group\": [1864.0, 1055.0, 318.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32892_BALBc-1_X02_Y02_18_931\", \"ini\": 628, \"clust\": 255, \"rank\": 908, \"rankvar\": 773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2198, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1394, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1288, \"group\": [254.0, 177.0, 62.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33131_BALBc-1_X02_Y02_183_257\", \"ini\": 627, \"clust\": 234, \"rank\": 991, \"rankvar\": 1466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2199, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1395, \"cat-2\": \"Density: 20\", \"cat_2_index\": 177, \"group\": [238.0, 166.0, 58.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33364_BALBc-1_X02_Y02_186_477\", \"ini\": 626, \"clust\": 415, \"rank\": 972, \"rankvar\": 7, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2200, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 861, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1432, \"group\": [416.0, 293.0, 101.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33643_BALBc-1_X02_Y02_19_416\", \"ini\": 625, \"clust\": 1731, \"rank\": 1971, \"rankvar\": 2415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2201, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 862, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2111, \"group\": [1736.0, 979.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33747_BALBc-1_X02_Y02_190_764\", \"ini\": 624, \"clust\": 2714, \"rank\": 2014, \"rankvar\": 1093, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2202, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1396, \"cat-2\": \"Density: 27\", \"cat_2_index\": 981, \"group\": [2715.0, 1457.0, 428.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33886_BALBc-1_X02_Y02_192_590\", \"ini\": 623, \"clust\": 260, \"rank\": 592, \"rankvar\": 1483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2203, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2666, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2112, \"group\": [259.0, 182.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34093_BALBc-1_X02_Y02_195_549\", \"ini\": 622, \"clust\": 2765, \"rank\": 2380, \"rankvar\": 2215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2204, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1397, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1289, \"group\": [2766.0, 1497.0, 446.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34272_BALBc-1_X02_Y02_197_884\", \"ini\": 621, \"clust\": 2644, \"rank\": 2734, \"rankvar\": 2594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2205, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 629, \"cat-2\": \"Density: 27\", \"cat_2_index\": 982, \"group\": [2644.0, 1435.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34519_BALBc-1_X02_Y02_200_308\", \"ini\": 620, \"clust\": 124, \"rank\": 897, \"rankvar\": 590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2206, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2667, \"cat-2\": \"Density: 25\", \"cat_2_index\": 686, \"group\": [124.0, 78.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34660_BALBc-1_X02_Y02_202_393\", \"ini\": 619, \"clust\": 2622, \"rank\": 1483, \"rankvar\": 863, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2207, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2668, \"cat-2\": \"Density: 25\", \"cat_2_index\": 687, \"group\": [2627.0, 1420.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34801_BALBc-1_X02_Y02_203_987\", \"ini\": 618, \"clust\": 2552, \"rank\": 2369, \"rankvar\": 1974, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2208, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1398, \"cat-2\": \"Density: 17\", \"cat_2_index\": 83, \"group\": [2558.0, 1380.0, 411.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34909_BALBc-1_X02_Y02_205_632\", \"ini\": 617, \"clust\": 2617, \"rank\": 2536, \"rankvar\": 2821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2209, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1399, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2011, \"group\": [2618.0, 1415.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34936_BALBc-1_X02_Y02_205_931\", \"ini\": 616, \"clust\": 1813, \"rank\": 2730, \"rankvar\": 2768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2210, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1400, \"cat-2\": \"Density: 26\", \"cat_2_index\": 831, \"group\": [1814.0, 1026.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35064_BALBc-1_X02_Y02_207_701\", \"ini\": 615, \"clust\": 2454, \"rank\": 1572, \"rankvar\": 1015, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2211, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1401, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1692, \"group\": [2454.0, 1305.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35117_BALBc-1_X02_Y02_208_445\", \"ini\": 614, \"clust\": 1045, \"rank\": 646, \"rankvar\": 182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2212, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2669, \"cat-2\": \"Density: 26\", \"cat_2_index\": 832, \"group\": [1047.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35215_BALBc-1_X02_Y02_209_729\", \"ini\": 613, \"clust\": 17, \"rank\": 1218, \"rankvar\": 776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2213, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1752, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1134, \"group\": [17.0, 16.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35344_BALBc-1_X02_Y02_210_512\", \"ini\": 612, \"clust\": 261, \"rank\": 941, \"rankvar\": 2019, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2214, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2670, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1135, \"group\": [260.0, 182.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35379_BALBc-1_X02_Y02_211_205\", \"ini\": 611, \"clust\": 74, \"rank\": 859, \"rankvar\": 249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2215, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1402, \"cat-2\": \"Density: 22\", \"cat_2_index\": 315, \"group\": [75.0, 56.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35409_BALBc-1_X02_Y02_211_663\", \"ini\": 610, \"clust\": 294, \"rank\": 1302, \"rankvar\": 1792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2216, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1403, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1553, \"group\": [295.0, 211.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35439_BALBc-1_X02_Y02_212_134\", \"ini\": 609, \"clust\": 208, \"rank\": 680, \"rankvar\": 1616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2217, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1404, \"cat-2\": \"Density: 27\", \"cat_2_index\": 983, \"group\": [207.0, 139.0, 47.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35525_BALBc-1_X02_Y02_213_248\", \"ini\": 608, \"clust\": 58, \"rank\": 1205, \"rankvar\": 885, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2218, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1405, \"cat-2\": \"Density: 22\", \"cat_2_index\": 316, \"group\": [59.0, 48.0, 21.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35690_BALBc-1_X02_Y02_215_161\", \"ini\": 607, \"clust\": 2726, \"rank\": 1312, \"rankvar\": 2150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2219, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1406, \"cat-2\": \"Density: 19\", \"cat_2_index\": 129, \"group\": [2726.0, 1465.0, 430.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36203_BALBc-1_X02_Y02_221_61\", \"ini\": 606, \"clust\": 548, \"rank\": 436, \"rankvar\": 1778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2220, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 717, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1433, \"group\": [546.0, 372.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36421_BALBc-1_X02_Y02_224_50\", \"ini\": 605, \"clust\": 374, \"rank\": 1417, \"rankvar\": 2130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2221, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2325, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1434, \"group\": [375.0, 261.0, 90.0, 25.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36428_BALBc-1_X02_Y02_224_564\", \"ini\": 604, \"clust\": 2464, \"rank\": 1021, \"rankvar\": 744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2222, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2671, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1435, \"group\": [2465.0, 1313.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36602_BALBc-1_X02_Y02_226_849\", \"ini\": 603, \"clust\": 2682, \"rank\": 2482, \"rankvar\": 2508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2223, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1407, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1136, \"group\": [2682.0, 1447.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36662_BALBc-1_X02_Y02_227_672\", \"ini\": 602, \"clust\": 2564, \"rank\": 1870, \"rankvar\": 1449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2224, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1753, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1436, \"group\": [2565.0, 1385.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37114_BALBc-1_X02_Y02_232_789\", \"ini\": 601, \"clust\": 1948, \"rank\": 2027, \"rankvar\": 1870, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2225, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1408, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1137, \"group\": [1952.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37225_BALBc-1_X02_Y02_234_543\", \"ini\": 600, \"clust\": 2573, \"rank\": 2240, \"rankvar\": 2322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2226, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 464, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1138, \"group\": [2572.0, 1391.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37303_BALBc-1_X02_Y02_235_622\", \"ini\": 599, \"clust\": 1184, \"rank\": 1058, \"rankvar\": 485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2227, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2672, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1437, \"group\": [1185.0, 578.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37334_BALBc-1_X02_Y02_236_115\", \"ini\": 598, \"clust\": 1750, \"rank\": 986, \"rankvar\": 1728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2228, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1409, \"cat-2\": \"Density: 27\", \"cat_2_index\": 984, \"group\": [1752.0, 993.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37540_BALBc-1_X02_Y02_238_897\", \"ini\": 597, \"clust\": 2645, \"rank\": 2748, \"rankvar\": 2661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2229, \"cat-1\": \"Neighbor: CD3(+) other markers (-)\", \"cat_1_index\": 948, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1793, \"group\": [2645.0, 1435.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37573_BALBc-1_X02_Y02_239_298\", \"ini\": 596, \"clust\": 1115, \"rank\": 597, \"rankvar\": 1058, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2230, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 718, \"cat-2\": \"Density: 24\", \"cat_2_index\": 552, \"group\": [1116.0, 525.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37791_BALBc-1_X02_Y02_241_389\", \"ini\": 595, \"clust\": 2543, \"rank\": 1079, \"rankvar\": 749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2231, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2673, \"cat-2\": \"Density: 22\", \"cat_2_index\": 317, \"group\": [2544.0, 1369.0, 407.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37827_BALBc-1_X02_Y02_242_102\", \"ini\": 594, \"clust\": 546, \"rank\": 127, \"rankvar\": 1247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2232, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1410, \"cat-2\": \"Density: 27\", \"cat_2_index\": 985, \"group\": [547.0, 373.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37931_BALBc-1_X02_Y02_243_508\", \"ini\": 593, \"clust\": 1022, \"rank\": 441, \"rankvar\": 4, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2233, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1411, \"cat-2\": \"Density: 26\", \"cat_2_index\": 833, \"group\": [1021.0, 517.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38145_BALBc-1_X02_Y02_246_163\", \"ini\": 592, \"clust\": 1676, \"rank\": 2134, \"rankvar\": 671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2234, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1412, \"cat-2\": \"Density: 20\", \"cat_2_index\": 178, \"group\": [1676.0, 933.0, 274.0, 78.0, 16.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38443_BALBc-1_X02_Y02_25_159\", \"ini\": 591, \"clust\": 187, \"rank\": 1551, \"rankvar\": 339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2235, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2674, \"cat-2\": \"Density: 20\", \"cat_2_index\": 179, \"group\": [190.0, 126.0, 42.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38529_BALBc-1_X02_Y02_250_569\", \"ini\": 590, \"clust\": 1206, \"rank\": 952, \"rankvar\": 697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2236, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2675, \"cat-2\": \"Density: 26\", \"cat_2_index\": 834, \"group\": [1209.0, 602.0, 170.0, 46.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38579_BALBc-1_X02_Y02_251_215\", \"ini\": 589, \"clust\": 2821, \"rank\": 2616, \"rankvar\": 2558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2237, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1585, \"cat-2\": \"Density: 23\", \"cat_2_index\": 430, \"group\": [2819.0, 1532.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38688_BALBc-1_X02_Y02_252_435\", \"ini\": 588, \"clust\": 2574, \"rank\": 2326, \"rankvar\": 2766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2238, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2676, \"cat-2\": \"Density: 22\", \"cat_2_index\": 318, \"group\": [2575.0, 1392.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38696_BALBc-1_X02_Y02_252_541\", \"ini\": 587, \"clust\": 2763, \"rank\": 1722, \"rankvar\": 1023, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2239, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 927, \"cat-2\": \"Density: 26\", \"cat_2_index\": 835, \"group\": [2764.0, 1496.0, 446.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38727_BALBc-1_X02_Y02_252_932\", \"ini\": 586, \"clust\": 1186, \"rank\": 1038, \"rankvar\": 764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2240, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1413, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1554, \"group\": [1186.0, 579.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38830_BALBc-1_X02_Y02_254_340\", \"ini\": 585, \"clust\": 445, \"rank\": 486, \"rankvar\": 614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2241, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2677, \"cat-2\": \"Density: 26\", \"cat_2_index\": 836, \"group\": [446.0, 312.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38872_BALBc-1_X02_Y02_254_893\", \"ini\": 584, \"clust\": 2683, \"rank\": 2466, \"rankvar\": 2135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2242, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1414, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1555, \"group\": [2683.0, 1447.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38912_BALBc-1_X02_Y02_255_475\", \"ini\": 583, \"clust\": 2586, \"rank\": 1436, \"rankvar\": 994, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2243, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1415, \"cat-2\": \"Density: 25\", \"cat_2_index\": 688, \"group\": [2586.0, 1398.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39046_BALBc-1_X02_Y02_257_270\", \"ini\": 582, \"clust\": 86, \"rank\": 820, \"rankvar\": 1042, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2244, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 719, \"cat-2\": \"Density: 21\", \"cat_2_index\": 229, \"group\": [87.0, 63.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39285_BALBc-1_X02_Y02_26_589\", \"ini\": 581, \"clust\": 743, \"rank\": 648, \"rankvar\": 703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2245, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1416, \"cat-2\": \"Density: 27\", \"cat_2_index\": 986, \"group\": [747.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39521_BALBc-1_X02_Y02_262_59\", \"ini\": 580, \"clust\": 2632, \"rank\": 2085, \"rankvar\": 2030, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2246, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1417, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1556, \"group\": [2632.0, 1425.0, 419.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39680_BALBc-1_X02_Y02_264_831\", \"ini\": 579, \"clust\": 2772, \"rank\": 2327, \"rankvar\": 1896, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2247, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1418, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1139, \"group\": [2774.0, 1502.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39683_BALBc-1_X02_Y02_264_853\", \"ini\": 578, \"clust\": 159, \"rank\": 1088, \"rankvar\": 1559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2248, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1419, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1557, \"group\": [158.0, 100.0, 33.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39823_BALBc-1_X02_Y02_266_650\", \"ini\": 577, \"clust\": 2647, \"rank\": 2575, \"rankvar\": 2133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2249, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2678, \"cat-2\": \"Density: 27\", \"cat_2_index\": 987, \"group\": [2646.0, 1436.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40170_BALBc-1_X02_Y02_270_307\", \"ini\": 576, \"clust\": 2495, \"rank\": 1755, \"rankvar\": 951, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2250, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 465, \"cat-2\": \"Density: 22\", \"cat_2_index\": 319, \"group\": [2496.0, 1342.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40172_BALBc-1_X02_Y02_270_325\", \"ini\": 575, \"clust\": 2735, \"rank\": 1531, \"rankvar\": 1647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2251, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2679, \"cat-2\": \"Density: 22\", \"cat_2_index\": 320, \"group\": [2736.0, 1471.0, 432.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40222_BALBc-1_X02_Y02_270_961\", \"ini\": 574, \"clust\": 1670, \"rank\": 1702, \"rankvar\": 1608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2252, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2326, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1140, \"group\": [1674.0, 931.0, 273.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40524_BALBc-1_X02_Y02_275_413\", \"ini\": 573, \"clust\": 617, \"rank\": 631, \"rankvar\": 842, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2253, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2680, \"cat-2\": \"Density: 19\", \"cat_2_index\": 130, \"group\": [618.0, 418.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40563_BALBc-1_X02_Y02_275_847\", \"ini\": 572, \"clust\": 301, \"rank\": 331, \"rankvar\": 2306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2254, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 466, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1290, \"group\": [301.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40879_BALBc-1_X02_Y02_28_120\", \"ini\": 571, \"clust\": 70, \"rank\": 638, \"rankvar\": 2047, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2255, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2681, \"cat-2\": \"Density: 21\", \"cat_2_index\": 230, \"group\": [66.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41079_BALBc-1_X02_Y02_281_863\", \"ini\": 570, \"clust\": 2463, \"rank\": 1408, \"rankvar\": 1650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2256, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1420, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1438, \"group\": [2461.0, 1309.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41088_BALBc-1_X02_Y02_281_933\", \"ini\": 569, \"clust\": 1869, \"rank\": 1154, \"rankvar\": 1188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2257, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2327, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2012, \"group\": [1869.0, 1059.0, 320.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41109_BALBc-1_X02_Y02_282_19\", \"ini\": 568, \"clust\": 83, \"rank\": 931, \"rankvar\": 1331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2258, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1421, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1291, \"group\": [84.0, 63.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41853_BALBc-1_X02_Y02_291_291\", \"ini\": 567, \"clust\": 2491, \"rank\": 1807, \"rankvar\": 748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2259, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1669, \"cat-2\": \"Density: 21\", \"cat_2_index\": 231, \"group\": [2491.0, 1338.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41921_BALBc-1_X02_Y02_292_234\", \"ini\": 566, \"clust\": 1159, \"rank\": 753, \"rankvar\": 222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2260, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2682, \"cat-2\": \"Density: 26\", \"cat_2_index\": 837, \"group\": [1159.0, 557.0, 154.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41969_BALBc-1_X02_Y02_292_826\", \"ini\": 565, \"clust\": 2215, \"rank\": 1648, \"rankvar\": 1457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2261, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1422, \"cat-2\": \"Density: 27\", \"cat_2_index\": 988, \"group\": [2216.0, 1197.0, 354.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42255_BALBc-1_X02_Y02_296_91\", \"ini\": 564, \"clust\": 91, \"rank\": 393, \"rankvar\": 2081, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2262, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1423, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1439, \"group\": [92.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42361_BALBc-1_X02_Y02_298_51\", \"ini\": 563, \"clust\": 2530, \"rank\": 1429, \"rankvar\": 647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2263, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1553, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1440, \"group\": [2531.0, 1357.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42376_BALBc-1_X02_Y02_298_688\", \"ini\": 562, \"clust\": 2139, \"rank\": 2247, \"rankvar\": 1833, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2264, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1754, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1292, \"group\": [2141.0, 1158.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42549_BALBc-1_X02_Y02_30_717\", \"ini\": 561, \"clust\": 1804, \"rank\": 2520, \"rankvar\": 2803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2265, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1424, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1558, \"group\": [1801.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42623_BALBc-1_X02_Y02_300_742\", \"ini\": 560, \"clust\": 2626, \"rank\": 2361, \"rankvar\": 2145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2266, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1755, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1293, \"group\": [2626.0, 1419.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42724_BALBc-1_X02_Y02_301_912\", \"ini\": 559, \"clust\": 400, \"rank\": 328, \"rankvar\": 1726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2267, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1425, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2013, \"group\": [399.0, 279.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43016_BALBc-1_X02_Y02_305_789\", \"ini\": 558, \"clust\": 1793, \"rank\": 2564, \"rankvar\": 2721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2268, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2683, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1141, \"group\": [1791.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43073_BALBc-1_X02_Y02_306_759\", \"ini\": 557, \"clust\": 131, \"rank\": 596, \"rankvar\": 1405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2269, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2684, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1142, \"group\": [130.0, 81.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43104_BALBc-1_X02_Y02_307_25\", \"ini\": 556, \"clust\": 650, \"rank\": 690, \"rankvar\": 17, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2270, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2461, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1559, \"group\": [650.0, 436.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43260_BALBc-1_X02_Y02_309_581\", \"ini\": 555, \"clust\": 2685, \"rank\": 2555, \"rankvar\": 2380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2271, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2685, \"cat-2\": \"Density: 23\", \"cat_2_index\": 431, \"group\": [2685.0, 1448.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43563_BALBc-1_X02_Y02_312_481\", \"ini\": 554, \"clust\": 2791, \"rank\": 1200, \"rankvar\": 1549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2272, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2686, \"cat-2\": \"Density: 23\", \"cat_2_index\": 432, \"group\": [2803.0, 1521.0, 452.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43574_BALBc-1_X02_Y02_312_648\", \"ini\": 553, \"clust\": 2648, \"rank\": 2701, \"rankvar\": 2551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2273, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2687, \"cat-2\": \"Density: 25\", \"cat_2_index\": 689, \"group\": [2647.0, 1436.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43750_BALBc-1_X02_Y02_315_261\", \"ini\": 552, \"clust\": 2746, \"rank\": 1642, \"rankvar\": 363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2274, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1670, \"cat-2\": \"Density: 25\", \"cat_2_index\": 690, \"group\": [2747.0, 1482.0, 439.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43996_BALBc-1_X02_Y02_318_328\", \"ini\": 551, \"clust\": 2487, \"rank\": 1937, \"rankvar\": 807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2275, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2688, \"cat-2\": \"Density: 25\", \"cat_2_index\": 691, \"group\": [2488.0, 1335.0, 398.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44586_BALBc-1_X02_Y02_324_940\", \"ini\": 550, \"clust\": 553, \"rank\": 238, \"rankvar\": 1176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2276, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2328, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1794, \"group\": [551.0, 376.0, 124.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44663_BALBc-1_X02_Y02_326_112\", \"ini\": 549, \"clust\": 62, \"rank\": 1326, \"rankvar\": 1977, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2277, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1426, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1294, \"group\": [61.0, 49.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44734_BALBc-1_X02_Y02_326_893\", \"ini\": 548, \"clust\": 911, \"rank\": 55, \"rankvar\": 351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2278, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1427, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2193, \"group\": [909.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44795_BALBc-1_X02_Y02_327_686\", \"ini\": 547, \"clust\": 1753, \"rank\": 1749, \"rankvar\": 1727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2279, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2689, \"cat-2\": \"Density: 26\", \"cat_2_index\": 838, \"group\": [1760.0, 996.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44797_BALBc-1_X02_Y02_327_702\", \"ini\": 546, \"clust\": 1209, \"rank\": 1318, \"rankvar\": 241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2280, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2690, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1295, \"group\": [1213.0, 606.0, 171.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44833_BALBc-1_X02_Y02_328_182\", \"ini\": 545, \"clust\": 1714, \"rank\": 2785, \"rankvar\": 2793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2281, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1586, \"cat-2\": \"Density: 25\", \"cat_2_index\": 692, \"group\": [1715.0, 966.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44890_BALBc-1_X02_Y02_328_742\", \"ini\": 544, \"clust\": 1180, \"rank\": 1827, \"rankvar\": 1443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2282, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1428, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1693, \"group\": [1180.0, 573.0, 159.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45097_BALBc-1_X02_Y02_330_51\", \"ini\": 543, \"clust\": 1632, \"rank\": 1768, \"rankvar\": 1644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2283, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2462, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1143, \"group\": [1636.0, 901.0, 261.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45134_BALBc-1_X02_Y02_330_922\", \"ini\": 542, \"clust\": 77, \"rank\": 956, \"rankvar\": 841, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2284, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1429, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2273, \"group\": [77.0, 57.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45153_BALBc-1_X02_Y02_331_217\", \"ini\": 541, \"clust\": 533, \"rank\": 463, \"rankvar\": 416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2285, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1587, \"cat-2\": \"Density: 22\", \"cat_2_index\": 321, \"group\": [533.0, 365.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45435_BALBc-1_X02_Y02_334_951\", \"ini\": 540, \"clust\": 1662, \"rank\": 1728, \"rankvar\": 2764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2286, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2329, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1795, \"group\": [1662.0, 920.0, 268.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45581_BALBc-1_X02_Y02_336_819\", \"ini\": 539, \"clust\": 2395, \"rank\": 2492, \"rankvar\": 1943, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2287, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 467, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1560, \"group\": [2396.0, 1268.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45601_BALBc-1_X02_Y02_337_15\", \"ini\": 538, \"clust\": 1872, \"rank\": 1401, \"rankvar\": 950, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2288, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1554, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1796, \"group\": [1873.0, 1063.0, 322.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45622_BALBc-1_X02_Y02_337_558\", \"ini\": 537, \"clust\": 262, \"rank\": 312, \"rankvar\": 1035, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2289, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2691, \"cat-2\": \"Density: 22\", \"cat_2_index\": 322, \"group\": [261.0, 183.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45630_BALBc-1_X02_Y02_337_608\", \"ini\": 536, \"clust\": 2492, \"rank\": 1798, \"rankvar\": 1753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2290, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1430, \"cat-2\": \"Density: 25\", \"cat_2_index\": 693, \"group\": [2492.0, 1339.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45716_BALBc-1_X02_Y02_338_787\", \"ini\": 535, \"clust\": 1785, \"rank\": 2219, \"rankvar\": 2684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2291, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1431, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1694, \"group\": [1786.0, 1014.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45734_BALBc-1_X02_Y02_338_973\", \"ini\": 534, \"clust\": 1424, \"rank\": 774, \"rankvar\": 2140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2292, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2330, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1296, \"group\": [1429.0, 775.0, 231.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46044_BALBc-1_X02_Y02_342_196\", \"ini\": 533, \"clust\": 1286, \"rank\": 894, \"rankvar\": 2347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2293, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1756, \"cat-2\": \"Density: 23\", \"cat_2_index\": 433, \"group\": [1285.0, 656.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46376_BALBc-1_X02_Y02_346_38\", \"ini\": 532, \"clust\": 865, \"rank\": 15, \"rankvar\": 642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2294, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1671, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1695, \"group\": [865.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46496_BALBc-1_X02_Y02_347_862\", \"ini\": 531, \"clust\": 1814, \"rank\": 2824, \"rankvar\": 2800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2295, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1432, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2113, \"group\": [1815.0, 1026.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46558_BALBc-1_X02_Y02_348_812\", \"ini\": 530, \"clust\": 592, \"rank\": 949, \"rankvar\": 146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2296, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 468, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1797, \"group\": [593.0, 404.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46798_BALBc-1_X02_Y02_350_899\", \"ini\": 529, \"clust\": 1063, \"rank\": 350, \"rankvar\": 800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2297, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1433, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2194, \"group\": [1062.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46832_BALBc-1_X02_Y02_351_395\", \"ini\": 528, \"clust\": 1038, \"rank\": 376, \"rankvar\": 1179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2298, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2692, \"cat-2\": \"Density: 18\", \"cat_2_index\": 103, \"group\": [1048.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47131_BALBc-1_X02_Y02_355_343\", \"ini\": 527, \"clust\": 1313, \"rank\": 1883, \"rankvar\": 298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2299, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1672, \"cat-2\": \"Density: 18\", \"cat_2_index\": 104, \"group\": [1317.0, 685.0, 203.0, 58.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47280_BALBc-1_X02_Y02_357_240\", \"ini\": 526, \"clust\": 2614, \"rank\": 1568, \"rankvar\": 265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2300, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 469, \"cat-2\": \"Density: 23\", \"cat_2_index\": 434, \"group\": [2615.0, 1412.0, 417.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47378_BALBc-1_X02_Y02_358_713\", \"ini\": 525, \"clust\": 672, \"rank\": 627, \"rankvar\": 316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2301, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1434, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2014, \"group\": [672.0, 445.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47461_BALBc-1_X02_Y02_359_961\", \"ini\": 524, \"clust\": 2489, \"rank\": 1595, \"rankvar\": 1807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2302, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1985, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1798, \"group\": [2489.0, 1336.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47870_BALBc-1_X02_Y02_364_646\", \"ini\": 523, \"clust\": 2577, \"rank\": 1496, \"rankvar\": 2576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2303, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 470, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1441, \"group\": [2578.0, 1392.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47876_BALBc-1_X02_Y02_364_679\", \"ini\": 522, \"clust\": 4, \"rank\": 1339, \"rankvar\": 403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2304, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2693, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1900, \"group\": [5.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47961_BALBc-1_X02_Y02_365_605\", \"ini\": 521, \"clust\": 2629, \"rank\": 2025, \"rankvar\": 1734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2305, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2694, \"cat-2\": \"Density: 26\", \"cat_2_index\": 839, \"group\": [2629.0, 1422.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48010_BALBc-1_X02_Y02_366_148\", \"ini\": 520, \"clust\": 1765, \"rank\": 2712, \"rankvar\": 2813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2306, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1435, \"cat-2\": \"Density: 25\", \"cat_2_index\": 694, \"group\": [1769.0, 1002.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48086_BALBc-1_X02_Y02_367_266\", \"ini\": 519, \"clust\": 1308, \"rank\": 2158, \"rankvar\": 2271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2307, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1673, \"cat-2\": \"Density: 21\", \"cat_2_index\": 232, \"group\": [1308.0, 678.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48310_BALBc-1_X02_Y02_369_971\", \"ini\": 518, \"clust\": 1663, \"rank\": 1734, \"rankvar\": 2178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2308, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2331, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1297, \"group\": [1663.0, 920.0, 268.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48337_BALBc-1_X02_Y02_37_334\", \"ini\": 517, \"clust\": 1865, \"rank\": 2117, \"rankvar\": 1631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2309, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2695, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1298, \"group\": [1865.0, 1056.0, 319.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48352_BALBc-1_X02_Y02_37_533\", \"ini\": 516, \"clust\": 2737, \"rank\": 1662, \"rankvar\": 925, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2310, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1436, \"cat-2\": \"Density: 27\", \"cat_2_index\": 989, \"group\": [2738.0, 1473.0, 434.0, 113.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48474_BALBc-1_X02_Y02_371_45\", \"ini\": 515, \"clust\": 1178, \"rank\": 1869, \"rankvar\": 1283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2311, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1674, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1799, \"group\": [1181.0, 574.0, 159.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48542_BALBc-1_X02_Y02_372_378\", \"ini\": 514, \"clust\": 1199, \"rank\": 984, \"rankvar\": 2001, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2312, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2696, \"cat-2\": \"Density: 16\", \"cat_2_index\": 63, \"group\": [1199.0, 592.0, 167.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48653_BALBc-1_X02_Y02_373_710\", \"ini\": 513, \"clust\": 2238, \"rank\": 1537, \"rankvar\": 570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2313, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1437, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2114, \"group\": [2239.0, 1218.0, 365.0, 100.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48742_BALBc-1_X02_Y02_374_766\", \"ini\": 512, \"clust\": 2258, \"rank\": 1481, \"rankvar\": 722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2314, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1438, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2274, \"group\": [2266.0, 1237.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48757_BALBc-1_X02_Y02_375_1002\", \"ini\": 511, \"clust\": 410, \"rank\": 614, \"rankvar\": 1550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2315, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1439, \"cat-2\": \"Density: 23\", \"cat_2_index\": 435, \"group\": [410.0, 287.0, 98.0, 29.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48766_BALBc-1_X02_Y02_375_206\", \"ini\": 510, \"clust\": 1257, \"rank\": 2070, \"rankvar\": 2394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2316, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1757, \"cat-2\": \"Density: 25\", \"cat_2_index\": 695, \"group\": [1257.0, 638.0, 183.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49046_BALBc-1_X02_Y02_378_827\", \"ini\": 509, \"clust\": 2566, \"rank\": 1656, \"rankvar\": 1818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2317, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1440, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2115, \"group\": [2567.0, 1387.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49131_BALBc-1_X02_Y02_379_932\", \"ini\": 508, \"clust\": 1857, \"rank\": 1914, \"rankvar\": 1112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2318, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1441, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2015, \"group\": [1858.0, 1050.0, 316.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49273_BALBc-1_X02_Y02_380_907\", \"ini\": 507, \"clust\": 1133, \"rank\": 1306, \"rankvar\": 1619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2319, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1442, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2275, \"group\": [1136.0, 538.0, 146.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49542_BALBc-1_X02_Y02_384_270\", \"ini\": 506, \"clust\": 2496, \"rank\": 2269, \"rankvar\": 2358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2320, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 720, \"cat-2\": \"Density: 21\", \"cat_2_index\": 233, \"group\": [2497.0, 1343.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49696_BALBc-1_X02_Y02_386_104\", \"ini\": 505, \"clust\": 1893, \"rank\": 2418, \"rankvar\": 2108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2321, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 721, \"cat-2\": \"Density: 26\", \"cat_2_index\": 840, \"group\": [1893.0, 1083.0, 330.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49859_BALBc-1_X02_Y02_387_719\", \"ini\": 504, \"clust\": 2336, \"rank\": 2179, \"rankvar\": 1233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2322, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1443, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2276, \"group\": [2332.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49926_BALBc-1_X02_Y02_388_683\", \"ini\": 503, \"clust\": 2588, \"rank\": 1367, \"rankvar\": 1579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2323, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 471, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2116, \"group\": [2589.0, 1400.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49970_BALBc-1_X02_Y02_389_234\", \"ini\": 502, \"clust\": 1008, \"rank\": 782, \"rankvar\": 332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2324, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 722, \"cat-2\": \"Density: 24\", \"cat_2_index\": 553, \"group\": [1019.0, 516.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50081_BALBc-1_X02_Y02_39_906\", \"ini\": 501, \"clust\": 893, \"rank\": 119, \"rankvar\": 598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2325, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1444, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1561, \"group\": [912.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50288_BALBc-1_X02_Y02_392_752\", \"ini\": 500, \"clust\": 721, \"rank\": 715, \"rankvar\": 69, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2326, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1445, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2409, \"group\": [721.0, 461.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50373_BALBc-1_X02_Y02_393_952\", \"ini\": 499, \"clust\": 811, \"rank\": 332, \"rankvar\": 39, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2327, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 472, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1901, \"group\": [818.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50545_BALBc-1_X02_Y02_396_299\", \"ini\": 498, \"clust\": 1160, \"rank\": 717, \"rankvar\": 855, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2328, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1675, \"cat-2\": \"Density: 21\", \"cat_2_index\": 234, \"group\": [1160.0, 557.0, 154.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50577_BALBc-1_X02_Y02_396_66\", \"ini\": 497, \"clust\": 362, \"rank\": 440, \"rankvar\": 2399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2329, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2463, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1562, \"group\": [360.0, 251.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50639_BALBc-1_X02_Y02_397_506\", \"ini\": 496, \"clust\": 2710, \"rank\": 2671, \"rankvar\": 2384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2330, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2697, \"cat-2\": \"Density: 20\", \"cat_2_index\": 180, \"group\": [2710.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50667_BALBc-1_X02_Y02_397_837\", \"ini\": 495, \"clust\": 2455, \"rank\": 1805, \"rankvar\": 1330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2331, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1446, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2117, \"group\": [2455.0, 1305.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50671_BALBc-1_X02_Y02_397_871\", \"ini\": 494, \"clust\": 117, \"rank\": 740, \"rankvar\": 796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2332, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1447, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2016, \"group\": [117.0, 73.0, 24.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50773_BALBc-1_X02_Y02_399_185\", \"ini\": 493, \"clust\": 695, \"rank\": 409, \"rankvar\": 1801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2333, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1758, \"cat-2\": \"Density: 26\", \"cat_2_index\": 841, \"group\": [694.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50866_BALBc-1_X02_Y02_4_371\", \"ini\": 492, \"clust\": 1719, \"rank\": 2741, \"rankvar\": 2421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2334, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1676, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1563, \"group\": [1720.0, 969.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51013_BALBc-1_X02_Y02_400_654\", \"ini\": 491, \"clust\": 2676, \"rank\": 2764, \"rankvar\": 2668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2335, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 473, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2118, \"group\": [2675.0, 1444.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51178_BALBc-1_X02_Y02_402_800\", \"ini\": 490, \"clust\": 2702, \"rank\": 2670, \"rankvar\": 2290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2336, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 474, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2538, \"group\": [2699.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51223_BALBc-1_X02_Y02_403_448\", \"ini\": 489, \"clust\": 2507, \"rank\": 1681, \"rankvar\": 1372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2337, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 630, \"cat-2\": \"Density: 18\", \"cat_2_index\": 105, \"group\": [2508.0, 1348.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51252_BALBc-1_X02_Y02_403_925\", \"ini\": 488, \"clust\": 1035, \"rank\": 533, \"rankvar\": 312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2338, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 475, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2345, \"group\": [1038.0, 521.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51314_BALBc-1_X02_Y02_404_700\", \"ini\": 487, \"clust\": 2249, \"rank\": 1729, \"rankvar\": 1156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2339, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1570, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2017, \"group\": [2252.0, 1229.0, 371.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51733_BALBc-1_X02_Y02_409_627\", \"ini\": 486, \"clust\": 2582, \"rank\": 1443, \"rankvar\": 1264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2340, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 476, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1800, \"group\": [2581.0, 1395.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51815_BALBc-1_X02_Y02_41_743\", \"ini\": 485, \"clust\": 1135, \"rank\": 375, \"rankvar\": 1175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2341, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1448, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1801, \"group\": [1135.0, 537.0, 146.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51858_BALBc-1_X02_Y02_410_359\", \"ini\": 484, \"clust\": 2508, \"rank\": 1272, \"rankvar\": 995, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2342, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 631, \"cat-2\": \"Density: 16\", \"cat_2_index\": 64, \"group\": [2509.0, 1349.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51875_BALBc-1_X02_Y02_410_48\", \"ini\": 483, \"clust\": 1255, \"rank\": 2013, \"rankvar\": 1141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2343, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1677, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1564, \"group\": [1256.0, 637.0, 182.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51967_BALBc-1_X02_Y02_411_743\", \"ini\": 482, \"clust\": 273, \"rank\": 1411, \"rankvar\": 918, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2344, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1571, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2346, \"group\": [273.0, 195.0, 70.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52455_BALBc-1_X02_Y02_417_999\", \"ini\": 481, \"clust\": 2434, \"rank\": 833, \"rankvar\": 926, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2345, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1449, \"cat-2\": \"Density: 22\", \"cat_2_index\": 323, \"group\": [2432.0, 1295.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52537_BALBc-1_X02_Y02_418_969\", \"ini\": 480, \"clust\": 1873, \"rank\": 1669, \"rankvar\": 912, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2346, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1450, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1565, \"group\": [1874.0, 1064.0, 322.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52561_BALBc-1_X02_Y02_419_278\", \"ini\": 479, \"clust\": 2792, \"rank\": 2069, \"rankvar\": 2112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2347, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 723, \"cat-2\": \"Density: 21\", \"cat_2_index\": 235, \"group\": [2794.0, 1515.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52608_BALBc-1_X02_Y02_419_84\", \"ini\": 478, \"clust\": 519, \"rank\": 805, \"rankvar\": 792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2348, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1451, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1802, \"group\": [530.0, 362.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52692_BALBc-1_X02_Y02_420_10\", \"ini\": 477, \"clust\": 164, \"rank\": 1415, \"rankvar\": 217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2349, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1452, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1696, \"group\": [165.0, 106.0, 34.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52698_BALBc-1_X02_Y02_420_121\", \"ini\": 476, \"clust\": 1300, \"rank\": 1575, \"rankvar\": 2149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2350, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 724, \"cat-2\": \"Density: 27\", \"cat_2_index\": 990, \"group\": [1304.0, 675.0, 198.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52763_BALBc-1_X02_Y02_420_947\", \"ini\": 475, \"clust\": 673, \"rank\": 400, \"rankvar\": 451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2351, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 477, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1902, \"group\": [673.0, 445.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52982_BALBc-1_X02_Y02_423_748\", \"ini\": 474, \"clust\": 1914, \"rank\": 1964, \"rankvar\": 1159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2352, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 478, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2347, \"group\": [1914.0, 1099.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53042_BALBc-1_X02_Y02_424_598\", \"ini\": 473, \"clust\": 2567, \"rank\": 1760, \"rankvar\": 2195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2353, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2698, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1299, \"group\": [2570.0, 1390.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53143_BALBc-1_X02_Y02_425_911\", \"ini\": 472, \"clust\": 2268, \"rank\": 1559, \"rankvar\": 1245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2354, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1453, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2493, \"group\": [2268.0, 1238.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53612_BALBc-1_X02_Y02_430_780\", \"ini\": 471, \"clust\": 2672, \"rank\": 2718, \"rankvar\": 2153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2355, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 479, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2277, \"group\": [2671.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53651_BALBc-1_X02_Y02_431_210\", \"ini\": 470, \"clust\": 2505, \"rank\": 1810, \"rankvar\": 1323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2356, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 725, \"cat-2\": \"Density: 27\", \"cat_2_index\": 991, \"group\": [2504.0, 1346.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53748_BALBc-1_X02_Y02_432_458\", \"ini\": 469, \"clust\": 2778, \"rank\": 2321, \"rankvar\": 2487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2357, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2699, \"cat-2\": \"Density: 18\", \"cat_2_index\": 106, \"group\": [2778.0, 1504.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53769_BALBc-1_X02_Y02_432_657\", \"ini\": 468, \"clust\": 1718, \"rank\": 2458, \"rankvar\": 2327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2358, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 480, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2018, \"group\": [1719.0, 968.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53818_BALBc-1_X02_Y02_433_32\", \"ini\": 467, \"clust\": 716, \"rank\": 734, \"rankvar\": 503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2359, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 863, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1903, \"group\": [722.0, 462.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53861_BALBc-1_X02_Y02_433_832\", \"ini\": 466, \"clust\": 2637, \"rank\": 1608, \"rankvar\": 140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2360, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2700, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2494, \"group\": [2641.0, 1433.0, 423.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53918_BALBc-1_X02_Y02_434_639\", \"ini\": 465, \"clust\": 2465, \"rank\": 1215, \"rankvar\": 1055, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2361, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 481, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1803, \"group\": [2466.0, 1314.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53990_BALBc-1_X02_Y02_435_547\", \"ini\": 464, \"clust\": 2686, \"rank\": 2601, \"rankvar\": 2649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2362, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2701, \"cat-2\": \"Density: 24\", \"cat_2_index\": 554, \"group\": [2686.0, 1448.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54076_BALBc-1_X02_Y02_436_716\", \"ini\": 463, \"clust\": 2337, \"rank\": 2121, \"rankvar\": 1103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2363, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1572, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2348, \"group\": [2333.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54081_BALBc-1_X02_Y02_436_770\", \"ini\": 462, \"clust\": 266, \"rank\": 1246, \"rankvar\": 1288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2364, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 482, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2410, \"group\": [266.0, 188.0, 66.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54253_BALBc-1_X02_Y02_438_736\", \"ini\": 461, \"clust\": 467, \"rank\": 1149, \"rankvar\": 315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2365, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 483, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2349, \"group\": [470.0, 328.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54323_BALBc-1_X02_Y02_439_680\", \"ini\": 460, \"clust\": 2488, \"rank\": 1576, \"rankvar\": 201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2366, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 484, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2278, \"group\": [2493.0, 1340.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54356_BALBc-1_X02_Y02_44_193\", \"ini\": 459, \"clust\": 2538, \"rank\": 1742, \"rankvar\": 1157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2367, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2702, \"cat-2\": \"Density: 21\", \"cat_2_index\": 236, \"group\": [2539.0, 1364.0, 404.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54458_BALBc-1_X02_Y02_440_577\", \"ini\": 458, \"clust\": 2798, \"rank\": 1873, \"rankvar\": 1932, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2368, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2703, \"cat-2\": \"Density: 24\", \"cat_2_index\": 555, \"group\": [2797.0, 1518.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54556_BALBc-1_X02_Y02_441_892\", \"ini\": 457, \"clust\": 2069, \"rank\": 2810, \"rankvar\": 2057, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2369, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1454, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2350, \"group\": [2069.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54798_BALBc-1_X02_Y02_444_961\", \"ini\": 456, \"clust\": 256, \"rank\": 1236, \"rankvar\": 370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2370, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1455, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1442, \"group\": [255.0, 178.0, 62.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54819_BALBc-1_X02_Y02_445_21\", \"ini\": 455, \"clust\": 2246, \"rank\": 1985, \"rankvar\": 1695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2371, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 485, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1904, \"group\": [2245.0, 1222.0, 367.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54862_BALBc-1_X02_Y02_445_938\", \"ini\": 454, \"clust\": 2468, \"rank\": 1264, \"rankvar\": 175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2372, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 632, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2019, \"group\": [2468.0, 1316.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55022_BALBc-1_X02_Y02_448_177\", \"ini\": 453, \"clust\": 766, \"rank\": 96, \"rankvar\": 540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2373, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1456, \"cat-2\": \"Density: 27\", \"cat_2_index\": 992, \"group\": [767.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55154_BALBc-1_X02_Y02_449_850\", \"ini\": 452, \"clust\": 2102, \"rank\": 2488, \"rankvar\": 1903, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2374, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2704, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2279, \"group\": [2101.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55263_BALBc-1_X02_Y02_450_401\", \"ini\": 451, \"clust\": 1185, \"rank\": 1257, \"rankvar\": 576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2375, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1457, \"cat-2\": \"Density: 18\", \"cat_2_index\": 107, \"group\": [1188.0, 581.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55369_BALBc-1_X02_Y02_451_799\", \"ini\": 450, \"clust\": 639, \"rank\": 577, \"rankvar\": 354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2376, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 486, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2280, \"group\": [640.0, 430.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55395_BALBc-1_X02_Y02_452_153\", \"ini\": 449, \"clust\": 31, \"rank\": 1355, \"rankvar\": 349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2377, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 726, \"cat-2\": \"Density: 25\", \"cat_2_index\": 696, \"group\": [32.0, 30.0, 18.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55452_BALBc-1_X02_Y02_452_751\", \"ini\": 448, \"clust\": 900, \"rank\": 23, \"rankvar\": 302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2378, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 487, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2281, \"group\": [899.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55453_BALBc-1_X02_Y02_452_762\", \"ini\": 447, \"clust\": 2284, \"rank\": 2010, \"rankvar\": 480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2379, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 488, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2411, \"group\": [2283.0, 1243.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55520_BALBc-1_X02_Y02_453_611\", \"ini\": 446, \"clust\": 392, \"rank\": 1076, \"rankvar\": 1954, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2380, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 489, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1300, \"group\": [392.0, 274.0, 93.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55535_BALBc-1_X02_Y02_453_779\", \"ini\": 445, \"clust\": 2520, \"rank\": 1450, \"rankvar\": 1302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2381, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 490, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2351, \"group\": [2523.0, 1353.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55769_BALBc-1_X02_Y02_456_717\", \"ini\": 444, \"clust\": 580, \"rank\": 858, \"rankvar\": 295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2382, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 491, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2539, \"group\": [580.0, 397.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55815_BALBc-1_X02_Y02_457_41\", \"ini\": 443, \"clust\": 1168, \"rank\": 912, \"rankvar\": 2196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2383, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1986, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1697, \"group\": [1169.0, 565.0, 156.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55836_BALBc-1_X02_Y02_457_651\", \"ini\": 442, \"clust\": 594, \"rank\": 729, \"rankvar\": 1606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2384, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 492, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1905, \"group\": [592.0, 403.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55853_BALBc-1_X02_Y02_457_820\", \"ini\": 441, \"clust\": 1001, \"rank\": 621, \"rankvar\": 259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2385, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 493, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2540, \"group\": [1001.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55927_BALBc-1_X02_Y02_458_893\", \"ini\": 440, \"clust\": 433, \"rank\": 725, \"rankvar\": 2376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2386, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 633, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2412, \"group\": [434.0, 307.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56318_BALBc-1_X02_Y02_462_867\", \"ini\": 439, \"clust\": 1730, \"rank\": 2580, \"rankvar\": 1496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2387, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 634, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2495, \"group\": [1730.0, 975.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56467_BALBc-1_X02_Y02_465_167\", \"ini\": 438, \"clust\": 630, \"rank\": 471, \"rankvar\": 509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2388, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 494, \"cat-2\": \"Density: 26\", \"cat_2_index\": 842, \"group\": [629.0, 424.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56525_BALBc-1_X02_Y02_465_852\", \"ini\": 437, \"clust\": 1973, \"rank\": 2647, \"rankvar\": 2249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2389, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 495, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2413, \"group\": [1975.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56552_BALBc-1_X02_Y02_466_269\", \"ini\": 436, \"clust\": 2144, \"rank\": 2740, \"rankvar\": 2567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2390, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1458, \"cat-2\": \"Density: 23\", \"cat_2_index\": 436, \"group\": [2144.0, 1161.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56674_BALBc-1_X02_Y02_467_624\", \"ini\": 435, \"clust\": 2549, \"rank\": 2457, \"rankvar\": 2520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2391, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 496, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1804, \"group\": [2552.0, 1375.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56705_BALBc-1_X02_Y02_467_999\", \"ini\": 434, \"clust\": 1911, \"rank\": 2398, \"rankvar\": 1838, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2392, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1459, \"cat-2\": \"Density: 21\", \"cat_2_index\": 237, \"group\": [1912.0, 1098.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56787_BALBc-1_X02_Y02_469_24\", \"ini\": 433, \"clust\": 380, \"rank\": 785, \"rankvar\": 903, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2393, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1460, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2119, \"group\": [379.0, 263.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56914_BALBc-1_X02_Y02_47_868\", \"ini\": 432, \"clust\": 1775, \"rank\": 1802, \"rankvar\": 2063, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2394, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1461, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1805, \"group\": [1778.0, 1009.0, 305.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57003_BALBc-1_X02_Y02_470_953\", \"ini\": 431, \"clust\": 143, \"rank\": 1589, \"rankvar\": 464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2395, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 635, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1443, \"group\": [143.0, 89.0, 29.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57113_BALBc-1_X02_Y02_472_681\", \"ini\": 430, \"clust\": 2285, \"rank\": 2277, \"rankvar\": 1145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2396, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 497, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2352, \"group\": [2284.0, 1243.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57374_BALBc-1_X02_Y02_475_756\", \"ini\": 429, \"clust\": 922, \"rank\": 64, \"rankvar\": 397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2397, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 498, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2414, \"group\": [922.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57405_BALBc-1_X02_Y02_476_220\", \"ini\": 428, \"clust\": 148, \"rank\": 1268, \"rankvar\": 466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2398, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2705, \"cat-2\": \"Density: 26\", \"cat_2_index\": 843, \"group\": [149.0, 93.0, 30.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57527_BALBc-1_X02_Y02_477_735\", \"ini\": 427, \"clust\": 2371, \"rank\": 2317, \"rankvar\": 440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2399, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 499, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2496, \"group\": [2370.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57580_BALBc-1_X02_Y02_478_330\", \"ini\": 426, \"clust\": 2583, \"rank\": 1533, \"rankvar\": 1669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2400, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1462, \"cat-2\": \"Density: 18\", \"cat_2_index\": 108, \"group\": [2582.0, 1395.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57688_BALBc-1_X02_Y02_479_626\", \"ini\": 425, \"clust\": 2226, \"rank\": 1689, \"rankvar\": 1656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2401, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 500, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1566, \"group\": [2225.0, 1204.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57711_BALBc-1_X02_Y02_48_105\", \"ini\": 424, \"clust\": 1639, \"rank\": 2092, \"rankvar\": 2573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2402, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2464, \"cat-2\": \"Density: 22\", \"cat_2_index\": 324, \"group\": [1638.0, 902.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57920_BALBc-1_X02_Y02_481_785\", \"ini\": 423, \"clust\": 144, \"rank\": 1783, \"rankvar\": 1558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2403, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 501, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2282, \"group\": [144.0, 89.0, 29.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58105_BALBc-1_X02_Y02_484_252\", \"ini\": 422, \"clust\": 72, \"rank\": 511, \"rankvar\": 530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2404, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1463, \"cat-2\": \"Density: 23\", \"cat_2_index\": 437, \"group\": [73.0, 54.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58124_BALBc-1_X02_Y02_484_432\", \"ini\": 421, \"clust\": 2624, \"rank\": 1599, \"rankvar\": 2475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2405, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1464, \"cat-2\": \"Density: 20\", \"cat_2_index\": 181, \"group\": [2624.0, 1417.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58170_BALBc-1_X02_Y02_484_987\", \"ini\": 420, \"clust\": 2343, \"rank\": 2153, \"rankvar\": 898, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2406, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 502, \"cat-2\": \"Density: 24\", \"cat_2_index\": 556, \"group\": [2340.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58222_BALBc-1_X02_Y02_485_578\", \"ini\": 419, \"clust\": 2664, \"rank\": 2713, \"rankvar\": 2261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2407, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2706, \"cat-2\": \"Density: 27\", \"cat_2_index\": 993, \"group\": [2662.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58242_BALBc-1_X02_Y02_485_832\", \"ini\": 418, \"clust\": 2028, \"rank\": 2303, \"rankvar\": 1008, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2408, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 503, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2415, \"group\": [2028.0, 1142.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58476_BALBc-1_X02_Y02_488_845\", \"ini\": 417, \"clust\": 1112, \"rank\": 386, \"rankvar\": 145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2409, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 504, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2353, \"group\": [1111.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58566_BALBc-1_X02_Y02_489_956\", \"ini\": 416, \"clust\": 2390, \"rank\": 2258, \"rankvar\": 1532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2410, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 636, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1567, \"group\": [2390.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58719_BALBc-1_X02_Y02_491_17\", \"ini\": 415, \"clust\": 10, \"rank\": 1319, \"rankvar\": 677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2411, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1465, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2283, \"group\": [10.0, 9.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58720_BALBc-1_X02_Y02_491_183\", \"ini\": 414, \"clust\": 333, \"rank\": 887, \"rankvar\": 1521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2412, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 505, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1444, \"group\": [336.0, 236.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58765_BALBc-1_X02_Y02_491_801\", \"ini\": 413, \"clust\": 2334, \"rank\": 1946, \"rankvar\": 1473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2413, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 506, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2497, \"group\": [2331.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58869_BALBc-1_X02_Y02_493_117\", \"ini\": 412, \"clust\": 405, \"rank\": 728, \"rankvar\": 47, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2414, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1466, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1568, \"group\": [405.0, 283.0, 96.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58906_BALBc-1_X02_Y02_493_620\", \"ini\": 411, \"clust\": 1929, \"rank\": 2732, \"rankvar\": 2788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2415, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 507, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1698, \"group\": [1928.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58994_BALBc-1_X02_Y02_494_645\", \"ini\": 410, \"clust\": 1974, \"rank\": 2651, \"rankvar\": 2607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2416, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 508, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1806, \"group\": [1970.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59111_BALBc-1_X02_Y02_496_195\", \"ini\": 409, \"clust\": 794, \"rank\": 71, \"rankvar\": 1733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2417, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 727, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1144, \"group\": [793.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59190_BALBc-1_X02_Y02_496_937\", \"ini\": 408, \"clust\": 36, \"rank\": 756, \"rankvar\": 798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2418, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 637, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2020, \"group\": [36.0, 31.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59361_BALBc-1_X02_Y02_499_164\", \"ini\": 407, \"clust\": 168, \"rank\": 850, \"rankvar\": 228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2419, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 728, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1569, \"group\": [172.0, 111.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59627_BALBc-1_X02_Y02_501_380\", \"ini\": 406, \"clust\": 151, \"rank\": 1872, \"rankvar\": 1880, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2420, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1467, \"cat-2\": \"Density: 20\", \"cat_2_index\": 182, \"group\": [151.0, 94.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59630_BALBc-1_X02_Y02_501_406\", \"ini\": 405, \"clust\": 1068, \"rank\": 295, \"rankvar\": 624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2421, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 509, \"cat-2\": \"Density: 21\", \"cat_2_index\": 238, \"group\": [1067.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59720_BALBc-1_X02_Y02_502_671\", \"ini\": 404, \"clust\": 146, \"rank\": 1033, \"rankvar\": 1137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2422, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 510, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1807, \"group\": [147.0, 91.0, 30.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59726_BALBc-1_X02_Y02_502_707\", \"ini\": 403, \"clust\": 2429, \"rank\": 1047, \"rankvar\": 192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2423, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 511, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2592, \"group\": [2430.0, 1294.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59879_BALBc-1_X02_Y02_504_867\", \"ini\": 402, \"clust\": 1957, \"rank\": 2597, \"rankvar\": 1570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2424, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 638, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2120, \"group\": [1958.0, 1117.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59993_BALBc-1_X02_Y02_506_250\", \"ini\": 401, \"clust\": 2560, \"rank\": 2246, \"rankvar\": 1831, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2425, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1468, \"cat-2\": \"Density: 25\", \"cat_2_index\": 697, \"group\": [2561.0, 1382.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60209_BALBc-1_X02_Y02_508_95\", \"ini\": 400, \"clust\": 300, \"rank\": 459, \"rankvar\": 1348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2426, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 928, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1808, \"group\": [302.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60246_BALBc-1_X02_Y02_509_500\", \"ini\": 399, \"clust\": 2786, \"rank\": 1908, \"rankvar\": 2074, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2427, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2707, \"cat-2\": \"Density: 22\", \"cat_2_index\": 325, \"group\": [2787.0, 1509.0, 449.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60484_BALBc-1_X02_Y02_511_481\", \"ini\": 398, \"clust\": 2212, \"rank\": 1612, \"rankvar\": 943, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2428, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1469, \"cat-2\": \"Density: 19\", \"cat_2_index\": 131, \"group\": [2213.0, 1194.0, 352.0, 96.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60509_BALBc-1_X02_Y02_511_799\", \"ini\": 397, \"clust\": 2264, \"rank\": 1395, \"rankvar\": 117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2429, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 512, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2498, \"group\": [2265.0, 1236.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60571_BALBc-1_X02_Y02_512_687\", \"ini\": 396, \"clust\": 2294, \"rank\": 1894, \"rankvar\": 1266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2430, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 513, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2121, \"group\": [2295.0, 1250.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60617_BALBc-1_X02_Y02_513_306\", \"ini\": 395, \"clust\": 2783, \"rank\": 2033, \"rankvar\": 1454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2431, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1470, \"cat-2\": \"Density: 22\", \"cat_2_index\": 326, \"group\": [2784.0, 1507.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60829_BALBc-1_X02_Y02_515_980\", \"ini\": 394, \"clust\": 1064, \"rank\": 330, \"rankvar\": 739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2432, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 639, \"cat-2\": \"Density: 24\", \"cat_2_index\": 557, \"group\": [1063.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60871_BALBc-1_X02_Y02_516_759\", \"ini\": 393, \"clust\": 2666, \"rank\": 2589, \"rankvar\": 1696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2433, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 514, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2541, \"group\": [2667.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61279_BALBc-1_X02_Y02_520_66\", \"ini\": 392, \"clust\": 167, \"rank\": 1342, \"rankvar\": 882, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2434, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1987, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1906, \"group\": [167.0, 108.0, 35.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61334_BALBc-1_X02_Y02_521_353\", \"ini\": 391, \"clust\": 932, \"rank\": 586, \"rankvar\": 519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2435, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2803, \"cat-2\": \"Density: 21\", \"cat_2_index\": 239, \"group\": [935.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61348_BALBc-1_X02_Y02_521_546\", \"ini\": 390, \"clust\": 1935, \"rank\": 2726, \"rankvar\": 2279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2436, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2708, \"cat-2\": \"Density: 24\", \"cat_2_index\": 558, \"group\": [1935.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61372_BALBc-1_X02_Y02_521_896\", \"ini\": 389, \"clust\": 2358, \"rank\": 1993, \"rankvar\": 441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2437, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 640, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2416, \"group\": [2360.0, 1260.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61534_BALBc-1_X02_Y02_523_860\", \"ini\": 388, \"clust\": 1930, \"rank\": 2769, \"rankvar\": 2746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2438, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 515, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2354, \"group\": [1929.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61617_BALBc-1_X02_Y02_525_120\", \"ini\": 387, \"clust\": 626, \"rank\": 387, \"rankvar\": 322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2439, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 929, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1907, \"group\": [628.0, 423.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61773_BALBc-1_X02_Y02_527_152\", \"ini\": 386, \"clust\": 1173, \"rank\": 1049, \"rankvar\": 1621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2440, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 729, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1570, \"group\": [1175.0, 568.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61824_BALBc-1_X02_Y02_527_636\", \"ini\": 385, \"clust\": 2322, \"rank\": 2051, \"rankvar\": 1177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2441, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2709, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1445, \"group\": [2320.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61842_BALBc-1_X02_Y02_527_845\", \"ini\": 384, \"clust\": 2705, \"rank\": 2531, \"rankvar\": 2067, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2442, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 516, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2499, \"group\": [2713.0, 1456.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61916_BALBc-1_X02_Y02_528_823\", \"ini\": 383, \"clust\": 971, \"rank\": 1034, \"rankvar\": 260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2443, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 517, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2355, \"group\": [971.0, 497.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61962_BALBc-1_X02_Y02_529_428\", \"ini\": 382, \"clust\": 1196, \"rank\": 1029, \"rankvar\": 333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2444, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 518, \"cat-2\": \"Density: 23\", \"cat_2_index\": 438, \"group\": [1197.0, 590.0, 166.0, 44.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61994_BALBc-1_X02_Y02_529_877\", \"ini\": 381, \"clust\": 2460, \"rank\": 1393, \"rankvar\": 638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2445, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 519, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2284, \"group\": [2463.0, 1311.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62001_BALBc-1_X02_Y02_529_999\", \"ini\": 380, \"clust\": 1978, \"rank\": 2777, \"rankvar\": 2504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2446, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 520, \"cat-2\": \"Density: 19\", \"cat_2_index\": 132, \"group\": [1973.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62024_BALBc-1_X02_Y02_53_346\", \"ini\": 379, \"clust\": 298, \"rank\": 1042, \"rankvar\": 2737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2447, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1588, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1301, \"group\": [297.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62088_BALBc-1_X02_Y02_530_268\", \"ini\": 378, \"clust\": 87, \"rank\": 812, \"rankvar\": 438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2448, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1471, \"cat-2\": \"Density: 23\", \"cat_2_index\": 439, \"group\": [88.0, 64.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62119_BALBc-1_X02_Y02_530_680\", \"ini\": 377, \"clust\": 2353, \"rank\": 2480, \"rankvar\": 1682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2449, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 521, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1908, \"group\": [2348.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62139_BALBc-1_X02_Y02_530_910\", \"ini\": 376, \"clust\": 1936, \"rank\": 1721, \"rankvar\": 1485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2450, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 522, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2356, \"group\": [1937.0, 1110.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62142_BALBc-1_X02_Y02_530_925\", \"ini\": 375, \"clust\": 2257, \"rank\": 1510, \"rankvar\": 1393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2451, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 641, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2357, \"group\": [2282.0, 1242.0, 374.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62170_BALBc-1_X02_Y02_531_40\", \"ini\": 374, \"clust\": 884, \"rank\": 10, \"rankvar\": 377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2452, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2246, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1809, \"group\": [884.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62352_BALBc-1_X02_Y02_533_593\", \"ini\": 373, \"clust\": 2777, \"rank\": 1948, \"rankvar\": 2089, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2453, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2710, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1145, \"group\": [2780.0, 1505.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62487_BALBc-1_X02_Y02_535_456\", \"ini\": 372, \"clust\": 1879, \"rank\": 1095, \"rankvar\": 644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2454, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2711, \"cat-2\": \"Density: 22\", \"cat_2_index\": 327, \"group\": [1878.0, 1068.0, 324.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62584_BALBc-1_X02_Y02_536_793\", \"ini\": 371, \"clust\": 1062, \"rank\": 731, \"rankvar\": 225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2455, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 523, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2285, \"group\": [1064.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62698_BALBc-1_X02_Y02_538_395\", \"ini\": 370, \"clust\": 2575, \"rank\": 2338, \"rankvar\": 2635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2456, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2804, \"cat-2\": \"Density: 23\", \"cat_2_index\": 440, \"group\": [2576.0, 1392.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62842_BALBc-1_X02_Y02_54_556\", \"ini\": 369, \"clust\": 1866, \"rank\": 2022, \"rankvar\": 2052, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2457, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1573, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1146, \"group\": [1866.0, 1057.0, 319.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62982_BALBc-1_X02_Y02_541_688\", \"ini\": 368, \"clust\": 2794, \"rank\": 1520, \"rankvar\": 1002, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2458, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 524, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2021, \"group\": [2793.0, 1514.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63073_BALBc-1_X02_Y02_542_677\", \"ini\": 367, \"clust\": 353, \"rank\": 1314, \"rankvar\": 714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2459, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 525, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1810, \"group\": [354.0, 248.0, 87.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63152_BALBc-1_X02_Y02_543_663\", \"ini\": 366, \"clust\": 860, \"rank\": 286, \"rankvar\": 61, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2460, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2712, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1302, \"group\": [861.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63263_BALBc-1_X02_Y02_544_724\", \"ini\": 365, \"clust\": 2490, \"rank\": 1687, \"rankvar\": 1571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2461, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1472, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2195, \"group\": [2490.0, 1337.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63356_BALBc-1_X02_Y02_545_764\", \"ini\": 364, \"clust\": 2459, \"rank\": 1150, \"rankvar\": 476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2462, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 526, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2417, \"group\": [2458.0, 1307.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63594_BALBc-1_X02_Y02_548_836\", \"ini\": 363, \"clust\": 2668, \"rank\": 2757, \"rankvar\": 2411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2463, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 527, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2500, \"group\": [2669.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63611_BALBc-1_X02_Y02_548_990\", \"ini\": 362, \"clust\": 745, \"rank\": 193, \"rankvar\": 968, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2464, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 642, \"cat-2\": \"Density: 21\", \"cat_2_index\": 240, \"group\": [744.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63621_BALBc-1_X02_Y02_549_222\", \"ini\": 361, \"clust\": 1249, \"rank\": 1913, \"rankvar\": 2097, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2465, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2713, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1571, \"group\": [1249.0, 630.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63732_BALBc-1_X02_Y02_55_601\", \"ini\": 360, \"clust\": 2328, \"rank\": 1820, \"rankvar\": 1210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2466, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 946, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1303, \"group\": [2328.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63834_BALBc-1_X02_Y02_550_878\", \"ini\": 359, \"clust\": 2639, \"rank\": 2316, \"rankvar\": 685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2467, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 528, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2286, \"group\": [2638.0, 1430.0, 422.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64028_BALBc-1_X02_Y02_553_519\", \"ini\": 358, \"clust\": 1925, \"rank\": 2354, \"rankvar\": 2129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2468, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 864, \"cat-2\": \"Density: 22\", \"cat_2_index\": 328, \"group\": [1925.0, 1106.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64073_BALBc-1_X02_Y02_553_924\", \"ini\": 357, \"clust\": 1086, \"rank\": 258, \"rankvar\": 567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2469, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 643, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2196, \"group\": [1087.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64372_BALBc-1_X02_Y02_558_116\", \"ini\": 356, \"clust\": 1685, \"rank\": 1950, \"rankvar\": 1821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2470, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 930, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1811, \"group\": [1683.0, 940.0, 279.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64456_BALBc-1_X02_Y02_558_995\", \"ini\": 355, \"clust\": 2690, \"rank\": 2786, \"rankvar\": 1905, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2471, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 529, \"cat-2\": \"Density: 22\", \"cat_2_index\": 329, \"group\": [2690.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64463_BALBc-1_X02_Y02_559_16\", \"ini\": 354, \"clust\": 667, \"rank\": 451, \"rankvar\": 1834, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2472, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2247, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1699, \"group\": [670.0, 443.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64505_BALBc-1_X02_Y02_559_58\", \"ini\": 353, \"clust\": 560, \"rank\": 902, \"rankvar\": 297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2473, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 931, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1909, \"group\": [560.0, 384.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64571_BALBc-1_X02_Y02_56_412\", \"ini\": 352, \"clust\": 1794, \"rank\": 2294, \"rankvar\": 2701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2474, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2714, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2122, \"group\": [1792.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64626_BALBc-1_X02_Y02_560_186\", \"ini\": 351, \"clust\": 601, \"rank\": 292, \"rankvar\": 244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2475, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 730, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1700, \"group\": [601.0, 411.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64676_BALBc-1_X02_Y02_560_746\", \"ini\": 350, \"clust\": 2044, \"rank\": 2180, \"rankvar\": 935, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2476, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1473, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2123, \"group\": [2048.0, 1147.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64706_BALBc-1_X02_Y02_561_129\", \"ini\": 349, \"clust\": 108, \"rank\": 907, \"rankvar\": 1190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2477, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1474, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1910, \"group\": [111.0, 68.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64758_BALBc-1_X02_Y02_561_689\", \"ini\": 348, \"clust\": 2801, \"rank\": 1292, \"rankvar\": 1133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2478, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 530, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1812, \"group\": [2800.0, 1519.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64883_BALBc-1_X02_Y02_563_442\", \"ini\": 347, \"clust\": 2797, \"rank\": 1744, \"rankvar\": 1335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2479, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1574, \"cat-2\": \"Density: 26\", \"cat_2_index\": 844, \"group\": [2799.0, 1518.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64889_BALBc-1_X02_Y02_563_483\", \"ini\": 346, \"clust\": 2571, \"rank\": 2328, \"rankvar\": 2535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2480, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2715, \"cat-2\": \"Density: 23\", \"cat_2_index\": 441, \"group\": [2573.0, 1391.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64905_BALBc-1_X02_Y02_563_774\", \"ini\": 345, \"clust\": 271, \"rank\": 1128, \"rankvar\": 1149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 531, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2358, \"group\": [274.0, 196.0, 70.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65149_BALBc-1_X02_Y02_566_81\", \"ini\": 344, \"clust\": 1919, \"rank\": 2155, \"rankvar\": 1106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2482, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 865, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1911, \"group\": [1936.0, 1109.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65186_BALBc-1_X02_Y02_567_271\", \"ini\": 343, \"clust\": 412, \"rank\": 1078, \"rankvar\": 559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2483, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1988, \"cat-2\": \"Density: 25\", \"cat_2_index\": 698, \"group\": [412.0, 289.0, 100.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65292_BALBc-1_X02_Y02_568_797\", \"ini\": 342, \"clust\": 2311, \"rank\": 2096, \"rankvar\": 910, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2484, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 532, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2359, \"group\": [2310.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65906_BALBc-1_X02_Y02_575_921\", \"ini\": 341, \"clust\": 1921, \"rank\": 2286, \"rankvar\": 2000, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2485, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2716, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2197, \"group\": [1921.0, 1104.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66097_BALBc-1_X02_Y02_578_646\", \"ini\": 340, \"clust\": 2680, \"rank\": 2363, \"rankvar\": 1542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2486, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2717, \"cat-2\": \"Density: 27\", \"cat_2_index\": 994, \"group\": [2679.0, 1445.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66183_BALBc-1_X02_Y02_579_966\", \"ini\": 339, \"clust\": 2667, \"rank\": 2653, \"rankvar\": 1142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2487, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 644, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1147, \"group\": [2668.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66339_BALBc-1_X02_Y02_581_317\", \"ini\": 338, \"clust\": 82, \"rank\": 809, \"rankvar\": 839, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2488, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1989, \"cat-2\": \"Density: 23\", \"cat_2_index\": 442, \"group\": [82.0, 61.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66357_BALBc-1_X02_Y02_581_49\", \"ini\": 337, \"clust\": 84, \"rank\": 875, \"rankvar\": 1702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2489, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1678, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2022, \"group\": [85.0, 63.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66415_BALBc-1_X02_Y02_582_178\", \"ini\": 336, \"clust\": 1647, \"rank\": 1431, \"rankvar\": 2756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2490, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2496, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1572, \"group\": [1643.0, 905.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66616_BALBc-1_X02_Y02_584_773\", \"ini\": 335, \"clust\": 2177, \"rank\": 1528, \"rankvar\": 1618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2491, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 533, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2198, \"group\": [2179.0, 1183.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66755_BALBc-1_X02_Y02_586_349\", \"ini\": 334, \"clust\": 1696, \"rank\": 2340, \"rankvar\": 2806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2718, \"cat-2\": \"Density: 23\", \"cat_2_index\": 443, \"group\": [1696.0, 953.0, 285.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66774_BALBc-1_X02_Y02_586_530\", \"ini\": 333, \"clust\": 2620, \"rank\": 2523, \"rankvar\": 2757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2493, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2719, \"cat-2\": \"Density: 22\", \"cat_2_index\": 330, \"group\": [2620.0, 1416.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66875_BALBc-1_X02_Y02_587_790\", \"ini\": 332, \"clust\": 2589, \"rank\": 1323, \"rankvar\": 1781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2494, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 534, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2199, \"group\": [2594.0, 1402.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66943_BALBc-1_X02_Y02_588_705\", \"ini\": 331, \"clust\": 2286, \"rank\": 2595, \"rankvar\": 2137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2495, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1475, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1912, \"group\": [2288.0, 1245.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67033_BALBc-1_X02_Y02_589_854\", \"ini\": 330, \"clust\": 788, \"rank\": 296, \"rankvar\": 320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2496, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 535, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2418, \"group\": [789.0, 478.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67050_BALBc-1_X02_Y02_59_136\", \"ini\": 329, \"clust\": 241, \"rank\": 710, \"rankvar\": 917, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2497, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2720, \"cat-2\": \"Density: 22\", \"cat_2_index\": 331, \"group\": [240.0, 167.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67117_BALBc-1_X02_Y02_59_886\", \"ini\": 328, \"clust\": 1754, \"rank\": 1931, \"rankvar\": 2389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2498, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1476, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1304, \"group\": [1755.0, 994.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67206_BALBc-1_X02_Y02_590_941\", \"ini\": 327, \"clust\": 1018, \"rank\": 427, \"rankvar\": 267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2499, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2721, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1913, \"group\": [1016.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67342_BALBc-1_X02_Y02_592_741\", \"ini\": 326, \"clust\": 1826, \"rank\": 2432, \"rankvar\": 2230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2500, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1477, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2287, \"group\": [1837.0, 1031.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67356_BALBc-1_X02_Y02_592_870\", \"ini\": 325, \"clust\": 1976, \"rank\": 2681, \"rankvar\": 2330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2501, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2722, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2200, \"group\": [1974.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67680_BALBc-1_X02_Y02_596_996\", \"ini\": 324, \"clust\": 737, \"rank\": 796, \"rankvar\": 156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2502, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 536, \"cat-2\": \"Density: 21\", \"cat_2_index\": 241, \"group\": [741.0, 468.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67689_BALBc-1_X02_Y02_597_244\", \"ini\": 323, \"clust\": 686, \"rank\": 563, \"rankvar\": 1011, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2503, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1759, \"cat-2\": \"Density: 24\", \"cat_2_index\": 559, \"group\": [686.0, 451.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67735_BALBc-1_X02_Y02_597_815\", \"ini\": 322, \"clust\": 2597, \"rank\": 1541, \"rankvar\": 2201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2504, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 537, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2288, \"group\": [2596.0, 1403.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67822_BALBc-1_X02_Y02_598_971\", \"ini\": 321, \"clust\": 1882, \"rank\": 1834, \"rankvar\": 1867, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2505, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 538, \"cat-2\": \"Density: 25\", \"cat_2_index\": 699, \"group\": [1883.0, 1073.0, 327.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67827_BALBc-1_X02_Y02_599_124\", \"ini\": 320, \"clust\": 2825, \"rank\": 2229, \"rankvar\": 2008, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2506, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1478, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1573, \"group\": [2823.0, 1534.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67881_BALBc-1_X02_Y02_599_836\", \"ini\": 319, \"clust\": 1187, \"rank\": 1489, \"rankvar\": 838, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2507, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 539, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2501, \"group\": [1187.0, 580.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68161_BALBc-1_X02_Y02_602_173\", \"ini\": 318, \"clust\": 1411, \"rank\": 1493, \"rankvar\": 2088, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2508, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1479, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1305, \"group\": [1412.0, 761.0, 225.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68329_BALBc-1_X02_Y02_604_479\", \"ini\": 317, \"clust\": 2655, \"rank\": 2463, \"rankvar\": 2027, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2509, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2465, \"cat-2\": \"Density: 26\", \"cat_2_index\": 845, \"group\": [2656.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68364_BALBc-1_X02_Y02_604_898\", \"ini\": 316, \"clust\": 484, \"rank\": 698, \"rankvar\": 248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2510, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2723, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2201, \"group\": [485.0, 332.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68650_BALBc-1_X02_Y02_608_247\", \"ini\": 315, \"clust\": 19, \"rank\": 942, \"rankvar\": 369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2511, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1679, \"cat-2\": \"Density: 24\", \"cat_2_index\": 560, \"group\": [20.0, 19.0, 11.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68746_BALBc-1_X02_Y02_609_287\", \"ini\": 314, \"clust\": 1845, \"rank\": 2416, \"rankvar\": 1762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2512, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 540, \"cat-2\": \"Density: 24\", \"cat_2_index\": 561, \"group\": [1846.0, 1039.0, 312.0, 86.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68769_BALBc-1_X02_Y02_609_505\", \"ini\": 313, \"clust\": 972, \"rank\": 770, \"rankvar\": 601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2513, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2724, \"cat-2\": \"Density: 21\", \"cat_2_index\": 242, \"group\": [975.0, 500.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68812_BALBc-1_X02_Y02_61_160\", \"ini\": 312, \"clust\": 2501, \"rank\": 2144, \"rankvar\": 2208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2514, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 541, \"cat-2\": \"Density: 19\", \"cat_2_index\": 133, \"group\": [2503.0, 1345.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68919_BALBc-1_X02_Y02_610_685\", \"ini\": 311, \"clust\": 2606, \"rank\": 1753, \"rankvar\": 2064, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2515, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1480, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1813, \"group\": [2605.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68936_BALBc-1_X02_Y02_610_908\", \"ini\": 310, \"clust\": 1932, \"rank\": 2592, \"rankvar\": 2128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2516, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2725, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2202, \"group\": [1931.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69083_BALBc-1_X02_Y02_612_642\", \"ini\": 309, \"clust\": 2213, \"rank\": 1711, \"rankvar\": 1201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2517, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1481, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1148, \"group\": [2214.0, 1195.0, 353.0, 96.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69172_BALBc-1_X02_Y02_613_941\", \"ini\": 308, \"clust\": 1969, \"rank\": 2242, \"rankvar\": 1799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2518, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2726, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1574, \"group\": [1966.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69269_BALBc-1_X02_Y02_615_12\", \"ini\": 307, \"clust\": 235, \"rank\": 936, \"rankvar\": 549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2519, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1482, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1575, \"group\": [237.0, 165.0, 58.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69314_BALBc-1_X02_Y02_615_721\", \"ini\": 306, \"clust\": 42, \"rank\": 746, \"rankvar\": 1999, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2520, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1483, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2023, \"group\": [41.0, 35.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69385_BALBc-1_X02_Y02_616_708\", \"ini\": 305, \"clust\": 1850, \"rank\": 2339, \"rankvar\": 1709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2521, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 542, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1814, \"group\": [1852.0, 1044.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69392_BALBc-1_X02_Y02_616_80\", \"ini\": 304, \"clust\": 1191, \"rank\": 1374, \"rankvar\": 1089, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2522, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 866, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1815, \"group\": [1189.0, 582.0, 162.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69516_BALBc-1_X02_Y02_618_346\", \"ini\": 303, \"clust\": 763, \"rank\": 300, \"rankvar\": 972, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2523, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2727, \"cat-2\": \"Density: 26\", \"cat_2_index\": 846, \"group\": [764.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69550_BALBc-1_X02_Y02_618_772\", \"ini\": 302, \"clust\": 1960, \"rank\": 2420, \"rankvar\": 2015, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2524, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1680, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2124, \"group\": [1977.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69694_BALBc-1_X02_Y02_62_685\", \"ini\": 301, \"clust\": 1812, \"rank\": 2403, \"rankvar\": 2643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2525, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1484, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1576, \"group\": [1812.0, 1024.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69845_BALBc-1_X02_Y02_621_738\", \"ini\": 300, \"clust\": 1849, \"rank\": 1902, \"rankvar\": 1741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2526, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 543, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2125, \"group\": [1853.0, 1045.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69869_BALBc-1_X02_Y02_621_980\", \"ini\": 299, \"clust\": 1950, \"rank\": 1994, \"rankvar\": 1374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2527, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 544, \"cat-2\": \"Density: 22\", \"cat_2_index\": 332, \"group\": [1949.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69947_BALBc-1_X02_Y02_622_856\", \"ini\": 298, \"clust\": 1964, \"rank\": 2199, \"rankvar\": 1464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2528, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2728, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2419, \"group\": [1968.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70036_BALBc-1_X02_Y02_623_791\", \"ini\": 297, \"clust\": 1897, \"rank\": 2100, \"rankvar\": 1193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2529, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1681, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2203, \"group\": [1897.0, 1086.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70145_BALBc-1_X02_Y02_625_402\", \"ini\": 296, \"clust\": 1166, \"rank\": 299, \"rankvar\": 2580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2530, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2332, \"cat-2\": \"Density: 23\", \"cat_2_index\": 444, \"group\": [1167.0, 563.0, 156.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70178_BALBc-1_X02_Y02_625_825\", \"ini\": 295, \"clust\": 2445, \"rank\": 1839, \"rankvar\": 1437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2531, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1485, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2360, \"group\": [2446.0, 1301.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70445_BALBc-1_X02_Y02_629_611\", \"ini\": 294, \"clust\": 2568, \"rank\": 2437, \"rankvar\": 2516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2532, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2729, \"cat-2\": \"Density: 24\", \"cat_2_index\": 562, \"group\": [2568.0, 1388.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70500_BALBc-1_X02_Y02_63_385\", \"ini\": 293, \"clust\": 299, \"rank\": 373, \"rankvar\": 2420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2533, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2730, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2024, \"group\": [298.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70692_BALBc-1_X02_Y02_631_72\", \"ini\": 292, \"clust\": 1397, \"rank\": 1880, \"rankvar\": 1894, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2534, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 545, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1701, \"group\": [1398.0, 748.0, 219.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70695_BALBc-1_X02_Y02_631_748\", \"ini\": 291, \"clust\": 1952, \"rank\": 2040, \"rankvar\": 1594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2535, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1682, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2204, \"group\": [1956.0, 1115.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70916_BALBc-1_X02_Y02_634_5\", \"ini\": 290, \"clust\": 1275, \"rank\": 543, \"rankvar\": 1738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2536, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1683, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1577, \"group\": [1279.0, 653.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70961_BALBc-1_X02_Y02_635_253\", \"ini\": 289, \"clust\": 1006, \"rank\": 865, \"rankvar\": 733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2537, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1684, \"cat-2\": \"Density: 24\", \"cat_2_index\": 563, \"group\": [1007.0, 513.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71202_BALBc-1_X02_Y02_638_308\", \"ini\": 288, \"clust\": 2815, \"rank\": 1555, \"rankvar\": 2236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2538, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1486, \"cat-2\": \"Density: 24\", \"cat_2_index\": 564, \"group\": [2814.0, 1528.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71220_BALBc-1_X02_Y02_638_474\", \"ini\": 287, \"clust\": 2784, \"rank\": 2471, \"rankvar\": 2220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2539, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2731, \"cat-2\": \"Density: 26\", \"cat_2_index\": 847, \"group\": [2785.0, 1507.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71595_BALBc-1_X02_Y02_642_520\", \"ini\": 286, \"clust\": 1177, \"rank\": 1310, \"rankvar\": 429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2540, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2732, \"cat-2\": \"Density: 22\", \"cat_2_index\": 333, \"group\": [1178.0, 571.0, 158.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71629_BALBc-1_X02_Y02_642_830\", \"ini\": 285, \"clust\": 1758, \"rank\": 1530, \"rankvar\": 2307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2541, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1487, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2289, \"group\": [1757.0, 995.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71736_BALBc-1_X02_Y02_644_115\", \"ini\": 284, \"clust\": 2413, \"rank\": 1349, \"rankvar\": 741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 867, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1702, \"group\": [2414.0, 1284.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71739_BALBc-1_X02_Y02_644_155\", \"ini\": 283, \"clust\": 1304, \"rank\": 2017, \"rankvar\": 1995, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2543, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1760, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1816, \"group\": [1305.0, 676.0, 199.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71744_BALBc-1_X02_Y02_644_213\", \"ini\": 282, \"clust\": 1984, \"rank\": 2576, \"rankvar\": 1839, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2544, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1761, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1578, \"group\": [1986.0, 1124.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71785_BALBc-1_X02_Y02_644_568\", \"ini\": 281, \"clust\": 2621, \"rank\": 2621, \"rankvar\": 2804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2545, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2733, \"cat-2\": \"Density: 23\", \"cat_2_index\": 445, \"group\": [2621.0, 1416.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71963_BALBc-1_X02_Y02_646_955\", \"ini\": 280, \"clust\": 2061, \"rank\": 2551, \"rankvar\": 1134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2546, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2183, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1149, \"group\": [2063.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72006_BALBc-1_X02_Y02_647_56\", \"ini\": 279, \"clust\": 665, \"rank\": 177, \"rankvar\": 1048, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2547, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 546, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1703, \"group\": [664.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72118_BALBc-1_X02_Y02_648_980\", \"ini\": 278, \"clust\": 906, \"rank\": 62, \"rankvar\": 41, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2548, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 547, \"cat-2\": \"Density: 25\", \"cat_2_index\": 700, \"group\": [904.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72144_BALBc-1_X02_Y02_649_345\", \"ini\": 277, \"clust\": 2779, \"rank\": 2226, \"rankvar\": 2159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2549, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2333, \"cat-2\": \"Density: 24\", \"cat_2_index\": 565, \"group\": [2779.0, 1504.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72328_BALBc-1_X02_Y02_650_881\", \"ini\": 276, \"clust\": 2313, \"rank\": 2154, \"rankvar\": 1116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2550, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2734, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2126, \"group\": [2311.0, 1253.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72406_BALBc-1_X02_Y02_651_83\", \"ini\": 275, \"clust\": 829, \"rank\": 181, \"rankvar\": 446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 548, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2025, \"group\": [828.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72482_BALBc-1_X02_Y02_652_908\", \"ini\": 274, \"clust\": 2047, \"rank\": 2298, \"rankvar\": 1598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2552, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2184, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2205, \"group\": [2046.0, 1146.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72586_BALBc-1_X02_Y02_654_266\", \"ini\": 273, \"clust\": 106, \"rank\": 874, \"rankvar\": 1706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2553, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1488, \"cat-2\": \"Density: 24\", \"cat_2_index\": 566, \"group\": [106.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72771_BALBc-1_X02_Y02_656_677\", \"ini\": 272, \"clust\": 550, \"rank\": 906, \"rankvar\": 555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2554, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1489, \"cat-2\": \"Density: 27\", \"cat_2_index\": 995, \"group\": [553.0, 378.0, 125.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72775_BALBc-1_X02_Y02_656_705\", \"ini\": 271, \"clust\": 2569, \"rank\": 1895, \"rankvar\": 1911, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2555, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 549, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1817, \"group\": [2569.0, 1389.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72872_BALBc-1_X02_Y02_657_832\", \"ini\": 270, \"clust\": 1829, \"rank\": 2719, \"rankvar\": 2542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2556, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1490, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2290, \"group\": [1831.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73062_BALBc-1_X02_Y02_66_601\", \"ini\": 269, \"clust\": 1076, \"rank\": 495, \"rankvar\": 631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2557, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 550, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1306, \"group\": [1077.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73332_BALBc-1_X02_Y02_662_61\", \"ini\": 268, \"clust\": 310, \"rank\": 2122, \"rankvar\": 2675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2558, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 551, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1579, \"group\": [314.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73887_BALBc-1_X02_Y02_67_263\", \"ini\": 267, \"clust\": 196, \"rank\": 416, \"rankvar\": 651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2559, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2735, \"cat-2\": \"Density: 19\", \"cat_2_index\": 134, \"group\": [196.0, 131.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73953_BALBc-1_X02_Y02_670_242\", \"ini\": 266, \"clust\": 2817, \"rank\": 1603, \"rankvar\": 1500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2560, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1491, \"cat-2\": \"Density: 23\", \"cat_2_index\": 446, \"group\": [2816.0, 1530.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73968_BALBc-1_X02_Y02_670_412\", \"ini\": 265, \"clust\": 659, \"rank\": 303, \"rankvar\": 658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2561, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2736, \"cat-2\": \"Density: 23\", \"cat_2_index\": 447, \"group\": [658.0, 439.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73976_BALBc-1_X02_Y02_670_483\", \"ini\": 264, \"clust\": 43, \"rank\": 389, \"rankvar\": 1819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2562, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1492, \"cat-2\": \"Density: 24\", \"cat_2_index\": 567, \"group\": [42.0, 35.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74149_BALBc-1_X02_Y02_672_855\", \"ini\": 263, \"clust\": 728, \"rank\": 274, \"rankvar\": 176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2563, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 552, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2502, \"group\": [728.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74167_BALBc-1_X02_Y02_673_108\", \"ini\": 262, \"clust\": 628, \"rank\": 609, \"rankvar\": 511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2564, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 932, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1150, \"group\": [627.0, 423.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74236_BALBc-1_X02_Y02_673_890\", \"ini\": 261, \"clust\": 1056, \"rank\": 548, \"rankvar\": 527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2565, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 553, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2206, \"group\": [1056.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74383_BALBc-1_X02_Y02_675_456\", \"ini\": 260, \"clust\": 406, \"rank\": 755, \"rankvar\": 1365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2566, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1493, \"cat-2\": \"Density: 24\", \"cat_2_index\": 568, \"group\": [406.0, 284.0, 96.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74388_BALBc-1_X02_Y02_675_540\", \"ini\": 259, \"clust\": 1118, \"rank\": 615, \"rankvar\": 486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2567, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 554, \"cat-2\": \"Density: 24\", \"cat_2_index\": 569, \"group\": [1118.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74441_BALBc-1_X02_Y02_676_169\", \"ini\": 258, \"clust\": 1296, \"rank\": 1182, \"rankvar\": 984, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2568, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 933, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1307, \"group\": [1296.0, 667.0, 193.0, 54.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74508_BALBc-1_X02_Y02_676_991\", \"ini\": 257, \"clust\": 2340, \"rank\": 2237, \"rankvar\": 958, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2569, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 555, \"cat-2\": \"Density: 18\", \"cat_2_index\": 109, \"group\": [2337.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74535_BALBc-1_X02_Y02_677_385\", \"ini\": 256, \"clust\": 2804, \"rank\": 2419, \"rankvar\": 2246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2570, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2334, \"cat-2\": \"Density: 26\", \"cat_2_index\": 848, \"group\": [2805.0, 1523.0, 453.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74729_BALBc-1_X02_Y02_679_790\", \"ini\": 255, \"clust\": 2011, \"rank\": 1997, \"rankvar\": 2335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2571, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1494, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2291, \"group\": [2018.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74731_BALBc-1_X02_Y02_679_812\", \"ini\": 254, \"clust\": 1839, \"rank\": 1328, \"rankvar\": 1229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2572, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1495, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2361, \"group\": [1844.0, 1037.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74790_BALBc-1_X02_Y02_68_580\", \"ini\": 253, \"clust\": 2220, \"rank\": 1089, \"rankvar\": 158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2573, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1575, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1151, \"group\": [2220.0, 1201.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74845_BALBc-1_X02_Y02_680_497\", \"ini\": 252, \"clust\": 1991, \"rank\": 2075, \"rankvar\": 1699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2574, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1496, \"cat-2\": \"Density: 23\", \"cat_2_index\": 448, \"group\": [1989.0, 1125.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74920_BALBc-1_X02_Y02_681_628\", \"ini\": 251, \"clust\": 983, \"rank\": 528, \"rankvar\": 251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1497, \"cat-2\": \"Density: 23\", \"cat_2_index\": 449, \"group\": [982.0, 504.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75012_BALBc-1_X02_Y02_682_927\", \"ini\": 250, \"clust\": 1951, \"rank\": 2012, \"rankvar\": 1769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2576, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2185, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2026, \"group\": [1950.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75078_BALBc-1_X02_Y02_683_754\", \"ini\": 249, \"clust\": 2665, \"rank\": 2720, \"rankvar\": 2416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2577, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1685, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2127, \"group\": [2663.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75093_BALBc-1_X02_Y02_683_961\", \"ini\": 248, \"clust\": 1190, \"rank\": 1451, \"rankvar\": 1575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2578, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2186, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1152, \"group\": [1191.0, 584.0, 162.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75122_BALBc-1_X02_Y02_684_41\", \"ini\": 247, \"clust\": 832, \"rank\": 190, \"rankvar\": 134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2579, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1686, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1580, \"group\": [832.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75210_BALBc-1_X02_Y02_685_709\", \"ini\": 246, \"clust\": 2802, \"rank\": 1526, \"rankvar\": 1240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2580, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 556, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1914, \"group\": [2801.0, 1519.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75222_BALBc-1_X02_Y02_685_85\", \"ini\": 245, \"clust\": 573, \"rank\": 553, \"rankvar\": 597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2581, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 557, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1153, \"group\": [572.0, 391.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75253_BALBc-1_X02_Y02_686_343\", \"ini\": 244, \"clust\": 1258, \"rank\": 1925, \"rankvar\": 1634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2582, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 868, \"cat-2\": \"Density: 22\", \"cat_2_index\": 334, \"group\": [1258.0, 638.0, 183.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75823_BALBc-1_X02_Y02_692_891\", \"ini\": 243, \"clust\": 2206, \"rank\": 1203, \"rankvar\": 1627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2583, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 558, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2292, \"group\": [2202.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75887_BALBc-1_X02_Y02_693_684\", \"ini\": 242, \"clust\": 2610, \"rank\": 2227, \"rankvar\": 2317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2584, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 869, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1446, \"group\": [2610.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76096_BALBc-1_X02_Y02_696_645\", \"ini\": 241, \"clust\": 2612, \"rank\": 2359, \"rankvar\": 2242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2585, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 870, \"cat-2\": \"Density: 27\", \"cat_2_index\": 996, \"group\": [2609.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76103_BALBc-1_X02_Y02_696_735\", \"ini\": 240, \"clust\": 977, \"rank\": 582, \"rankvar\": 1221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2586, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 559, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2027, \"group\": [977.0, 501.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76294_BALBc-1_X02_Y02_699_112\", \"ini\": 239, \"clust\": 882, \"rank\": 253, \"rankvar\": 90, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2587, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 934, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1154, \"group\": [885.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76538_BALBc-1_X02_Y02_700_290\", \"ini\": 238, \"clust\": 107, \"rank\": 483, \"rankvar\": 1725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2588, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1498, \"cat-2\": \"Density: 24\", \"cat_2_index\": 570, \"group\": [107.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76553_BALBc-1_X02_Y02_700_423\", \"ini\": 237, \"clust\": 629, \"rank\": 497, \"rankvar\": 1203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2589, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1499, \"cat-2\": \"Density: 23\", \"cat_2_index\": 450, \"group\": [631.0, 424.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76803_BALBc-1_X02_Y02_703_773\", \"ini\": 236, \"clust\": 295, \"rank\": 953, \"rankvar\": 2437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2590, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 560, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2362, \"group\": [296.0, 211.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76901_BALBc-1_X02_Y02_704_869\", \"ini\": 235, \"clust\": 1734, \"rank\": 2401, \"rankvar\": 2592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1500, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2207, \"group\": [1732.0, 977.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77001_BALBc-1_X02_Y02_706_34\", \"ini\": 234, \"clust\": 2230, \"rank\": 1919, \"rankvar\": 1183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2592, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1687, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1581, \"group\": [2231.0, 1210.0, 359.0, 98.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77014_BALBc-1_X02_Y02_706_510\", \"ini\": 233, \"clust\": 2806, \"rank\": 1623, \"rankvar\": 1342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2593, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1501, \"cat-2\": \"Density: 24\", \"cat_2_index\": 571, \"group\": [2806.0, 1524.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77039_BALBc-1_X02_Y02_706_830\", \"ini\": 232, \"clust\": 2165, \"rank\": 1423, \"rankvar\": 1069, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2594, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1502, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2420, \"group\": [2162.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77074_BALBc-1_X02_Y02_707_326\", \"ini\": 231, \"clust\": 1838, \"rank\": 1769, \"rankvar\": 691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2595, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1503, \"cat-2\": \"Density: 22\", \"cat_2_index\": 335, \"group\": [1839.0, 1033.0, 309.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77093_BALBc-1_X02_Y02_707_617\", \"ini\": 230, \"clust\": 2550, \"rank\": 2584, \"rankvar\": 2560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2596, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2737, \"cat-2\": \"Density: 27\", \"cat_2_index\": 997, \"group\": [2550.0, 1374.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77135_BALBc-1_X02_Y02_707_975\", \"ini\": 229, \"clust\": 1014, \"rank\": 535, \"rankvar\": 161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2597, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 561, \"cat-2\": \"Density: 23\", \"cat_2_index\": 451, \"group\": [1013.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77220_BALBc-1_X02_Y02_709_226\", \"ini\": 228, \"clust\": 2805, \"rank\": 1882, \"rankvar\": 1909, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2598, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1762, \"cat-2\": \"Density: 21\", \"cat_2_index\": 243, \"group\": [2826.0, 1537.0, 456.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77373_BALBc-1_X02_Y02_710_537\", \"ini\": 227, \"clust\": 2799, \"rank\": 1427, \"rankvar\": 1886, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2599, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1504, \"cat-2\": \"Density: 26\", \"cat_2_index\": 849, \"group\": [2798.0, 1518.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77376_BALBc-1_X02_Y02_710_565\", \"ini\": 226, \"clust\": 2756, \"rank\": 2020, \"rankvar\": 1849, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2600, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2738, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1155, \"group\": [2758.0, 1491.0, 443.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77395_BALBc-1_X02_Y02_710_791\", \"ini\": 225, \"clust\": 1933, \"rank\": 2620, \"rankvar\": 2449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2601, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 562, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2028, \"group\": [1932.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77586_BALBc-1_X02_Y02_712_99\", \"ini\": 224, \"clust\": 1396, \"rank\": 1486, \"rankvar\": 989, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2602, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 563, \"cat-2\": \"Density: 27\", \"cat_2_index\": 998, \"group\": [1399.0, 749.0, 219.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77673_BALBc-1_X02_Y02_714_203\", \"ini\": 223, \"clust\": 1450, \"rank\": 2362, \"rankvar\": 2510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2603, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2739, \"cat-2\": \"Density: 24\", \"cat_2_index\": 572, \"group\": [1449.0, 787.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77790_BALBc-1_X02_Y02_715_74\", \"ini\": 222, \"clust\": 767, \"rank\": 90, \"rankvar\": 1068, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2604, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1990, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1156, \"group\": [768.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77983_BALBc-1_X02_Y02_717_921\", \"ini\": 221, \"clust\": 2325, \"rank\": 2232, \"rankvar\": 1678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2605, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 564, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1915, \"group\": [2323.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78066_BALBc-1_X02_Y02_719_1006\", \"ini\": 220, \"clust\": 2314, \"rank\": 2282, \"rankvar\": 887, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2606, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 565, \"cat-2\": \"Density: 16\", \"cat_2_index\": 65, \"group\": [2312.0, 1253.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78175_BALBc-1_X02_Y02_72_479\", \"ini\": 219, \"clust\": 2397, \"rank\": 2815, \"rankvar\": 2707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2607, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 871, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2029, \"group\": [2395.0, 1268.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78545_BALBc-1_X02_Y02_724_169\", \"ini\": 218, \"clust\": 182, \"rank\": 1025, \"rankvar\": 2616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2608, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 935, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1582, \"group\": [183.0, 120.0, 39.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78626_BALBc-1_X02_Y02_725_382\", \"ini\": 217, \"clust\": 1281, \"rank\": 1209, \"rankvar\": 1325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2609, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 872, \"cat-2\": \"Density: 22\", \"cat_2_index\": 336, \"group\": [1282.0, 654.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78655_BALBc-1_X02_Y02_725_758\", \"ini\": 216, \"clust\": 2546, \"rank\": 2250, \"rankvar\": 2105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2610, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 566, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1818, \"group\": [2549.0, 1373.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78673_BALBc-1_X02_Y02_725_953\", \"ini\": 215, \"clust\": 1975, \"rank\": 2685, \"rankvar\": 2318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2611, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2187, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1157, \"group\": [1971.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78684_BALBc-1_X02_Y02_726_124\", \"ini\": 214, \"clust\": 25, \"rank\": 1225, \"rankvar\": 715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2612, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 873, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1158, \"group\": [26.0, 25.0, 15.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78789_BALBc-1_X02_Y02_727_511\", \"ini\": 213, \"clust\": 1264, \"rank\": 1754, \"rankvar\": 2080, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2613, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1505, \"cat-2\": \"Density: 23\", \"cat_2_index\": 452, \"group\": [1267.0, 646.0, 186.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78889_BALBc-1_X02_Y02_728_781\", \"ini\": 212, \"clust\": 275, \"rank\": 1466, \"rankvar\": 1688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2614, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 567, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2128, \"group\": [276.0, 198.0, 71.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78953_BALBc-1_X02_Y02_729_688\", \"ini\": 211, \"clust\": 1895, \"rank\": 2430, \"rankvar\": 2043, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2615, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2740, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1583, \"group\": [1895.0, 1084.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78974_BALBc-1_X02_Y02_729_890\", \"ini\": 210, \"clust\": 896, \"rank\": 79, \"rankvar\": 266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2616, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 568, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2208, \"group\": [895.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78999_BALBc-1_X02_Y02_73_354\", \"ini\": 209, \"clust\": 2551, \"rank\": 2546, \"rankvar\": 2660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2617, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2741, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1159, \"group\": [2551.0, 1374.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79016_BALBc-1_X02_Y02_73_624\", \"ini\": 208, \"clust\": 1720, \"rank\": 2728, \"rankvar\": 2673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2618, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1506, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1584, \"group\": [1721.0, 969.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79095_BALBc-1_X02_Y02_730_647\", \"ini\": 207, \"clust\": 1937, \"rank\": 1975, \"rankvar\": 1976, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2619, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2742, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1447, \"group\": [1938.0, 1110.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79236_BALBc-1_X02_Y02_732_35\", \"ini\": 206, \"clust\": 1217, \"rank\": 951, \"rankvar\": 1720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2620, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 941, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1308, \"group\": [1217.0, 609.0, 173.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79458_BALBc-1_X02_Y02_734_917\", \"ini\": 205, \"clust\": 1735, \"rank\": 2724, \"rankvar\": 2752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2621, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2188, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2030, \"group\": [1733.0, 977.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79623_BALBc-1_X02_Y02_737_105\", \"ini\": 204, \"clust\": 575, \"rank\": 733, \"rankvar\": 629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2622, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 874, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1160, \"group\": [574.0, 391.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79762_BALBc-1_X02_Y02_738_804\", \"ini\": 203, \"clust\": 1189, \"rank\": 1571, \"rankvar\": 577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2623, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1507, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2209, \"group\": [1192.0, 585.0, 163.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79767_BALBc-1_X02_Y02_738_865\", \"ini\": 202, \"clust\": 2450, \"rank\": 1473, \"rankvar\": 1047, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2624, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1508, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2421, \"group\": [2450.0, 1303.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79785_BALBc-1_X02_Y02_739_196\", \"ini\": 201, \"clust\": 941, \"rank\": 144, \"rankvar\": 136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2625, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2743, \"cat-2\": \"Density: 24\", \"cat_2_index\": 573, \"group\": [943.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79862_BALBc-1_X02_Y02_739_981\", \"ini\": 200, \"clust\": 830, \"rank\": 187, \"rankvar\": 190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2626, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2189, \"cat-2\": \"Density: 22\", \"cat_2_index\": 337, \"group\": [833.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79984_BALBc-1_X02_Y02_740_709\", \"ini\": 199, \"clust\": 2618, \"rank\": 1735, \"rankvar\": 2621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2627, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2744, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1916, \"group\": [2619.0, 1415.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80165_BALBc-1_X02_Y02_743_497\", \"ini\": 198, \"clust\": 316, \"rank\": 1249, \"rankvar\": 2402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2628, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1509, \"cat-2\": \"Density: 25\", \"cat_2_index\": 701, \"group\": [316.0, 220.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80587_BALBc-1_X02_Y02_748_815\", \"ini\": 197, \"clust\": 2199, \"rank\": 1224, \"rankvar\": 1663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2629, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2190, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2210, \"group\": [2196.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80635_BALBc-1_X02_Y02_749_454\", \"ini\": 196, \"clust\": 1982, \"rank\": 2217, \"rankvar\": 1884, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2630, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1510, \"cat-2\": \"Density: 27\", \"cat_2_index\": 999, \"group\": [1983.0, 1123.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80695_BALBc-1_X02_Y02_75_13\", \"ini\": 195, \"clust\": 2423, \"rank\": 1008, \"rankvar\": 812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2631, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1511, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1309, \"group\": [2424.0, 1291.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80817_BALBc-1_X02_Y02_750_584\", \"ini\": 194, \"clust\": 2697, \"rank\": 2798, \"rankvar\": 2790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2632, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1512, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1161, \"group\": [2703.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81059_BALBc-1_X02_Y02_753_779\", \"ini\": 193, \"clust\": 440, \"rank\": 618, \"rankvar\": 2496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2633, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 569, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2129, \"group\": [441.0, 309.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81060_BALBc-1_X02_Y02_753_793\", \"ini\": 192, \"clust\": 2436, \"rank\": 1327, \"rankvar\": 867, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2634, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 570, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2130, \"group\": [2437.0, 1297.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81068_BALBc-1_X02_Y02_753_897\", \"ini\": 191, \"clust\": 2137, \"rank\": 2050, \"rankvar\": 1556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2635, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2191, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2131, \"group\": [2138.0, 1156.0, 341.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81108_BALBc-1_X02_Y02_754_416\", \"ini\": 190, \"clust\": 557, \"rank\": 764, \"rankvar\": 128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2636, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 571, \"cat-2\": \"Density: 25\", \"cat_2_index\": 702, \"group\": [556.0, 380.0, 127.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81179_BALBc-1_X02_Y02_755_323\", \"ini\": 189, \"clust\": 244, \"rank\": 1035, \"rankvar\": 1718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2637, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 875, \"cat-2\": \"Density: 22\", \"cat_2_index\": 338, \"group\": [244.0, 170.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81222_BALBc-1_X02_Y02_755_881\", \"ini\": 188, \"clust\": 2008, \"rank\": 1960, \"rankvar\": 1929, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2638, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2192, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1917, \"group\": [2008.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81284_BALBc-1_X02_Y02_756_634\", \"ini\": 187, \"clust\": 2598, \"rank\": 2225, \"rankvar\": 1497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2639, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2745, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1819, \"group\": [2613.0, 1410.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81466_BALBc-1_X02_Y02_758_853\", \"ini\": 186, \"clust\": 2126, \"rank\": 2470, \"rankvar\": 2427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2640, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2193, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2422, \"group\": [2124.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81536_BALBc-1_X02_Y02_759_820\", \"ini\": 185, \"clust\": 2160, \"rank\": 830, \"rankvar\": 627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2641, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2194, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2031, \"group\": [2160.0, 1172.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81627_BALBc-1_X02_Y02_760_153\", \"ini\": 184, \"clust\": 52, \"rank\": 843, \"rankvar\": 806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2642, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 876, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1162, \"group\": [53.0, 42.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81992_BALBc-1_X02_Y02_764_995\", \"ini\": 183, \"clust\": 2355, \"rank\": 2447, \"rankvar\": 1578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2643, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2195, \"cat-2\": \"Density: 21\", \"cat_2_index\": 244, \"group\": [2350.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82113_BALBc-1_X02_Y02_766_756\", \"ini\": 182, \"clust\": 265, \"rank\": 1113, \"rankvar\": 219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2644, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2746, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2293, \"group\": [265.0, 187.0, 65.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82616_BALBc-1_X02_Y02_772_197\", \"ini\": 181, \"clust\": 780, \"rank\": 270, \"rankvar\": 91, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2645, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2747, \"cat-2\": \"Density: 26\", \"cat_2_index\": 850, \"group\": [778.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82799_BALBc-1_X02_Y02_774_509\", \"ini\": 180, \"clust\": 1202, \"rank\": 1050, \"rankvar\": 1441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2646, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1513, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1000, \"group\": [1202.0, 595.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82871_BALBc-1_X02_Y02_775_626\", \"ini\": 179, \"clust\": 2045, \"rank\": 2474, \"rankvar\": 2160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2647, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2815, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2032, \"group\": [2047.0, 1146.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82932_BALBc-1_X02_Y02_776_234\", \"ini\": 178, \"clust\": 270, \"rank\": 1279, \"rankvar\": 2530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2648, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2748, \"cat-2\": \"Density: 25\", \"cat_2_index\": 703, \"group\": [270.0, 192.0, 68.0, 21.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83113_BALBc-1_X02_Y02_778_564\", \"ini\": 177, \"clust\": 1820, \"rank\": 2813, \"rankvar\": 2824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2649, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1555, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1310, \"group\": [1821.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83255_BALBc-1_X02_Y02_78_243\", \"ini\": 176, \"clust\": 791, \"rank\": 343, \"rankvar\": 1396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2650, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2749, \"cat-2\": \"Density: 19\", \"cat_2_index\": 135, \"group\": [795.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83347_BALBc-1_X02_Y02_780_648\", \"ini\": 175, \"clust\": 2716, \"rank\": 1878, \"rankvar\": 2041, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2651, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2750, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1918, \"group\": [2717.0, 1459.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83401_BALBc-1_X02_Y02_781_370\", \"ini\": 174, \"clust\": 2548, \"rank\": 2645, \"rankvar\": 2523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2652, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 877, \"cat-2\": \"Density: 23\", \"cat_2_index\": 453, \"group\": [2548.0, 1372.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83432_BALBc-1_X02_Y02_781_781\", \"ini\": 173, \"clust\": 2670, \"rank\": 2624, \"rankvar\": 1434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2653, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 572, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2211, \"group\": [2674.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83518_BALBc-1_X02_Y02_782_947\", \"ini\": 172, \"clust\": 2298, \"rank\": 1508, \"rankvar\": 1453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2654, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2196, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1585, \"group\": [2298.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83545_BALBc-1_X02_Y02_783_408\", \"ini\": 171, \"clust\": 1007, \"rank\": 855, \"rankvar\": 131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2655, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 573, \"cat-2\": \"Density: 20\", \"cat_2_index\": 183, \"group\": [1008.0, 513.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83579_BALBc-1_X02_Y02_783_829\", \"ini\": 170, \"clust\": 2170, \"rank\": 1726, \"rankvar\": 1640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2656, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2197, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2212, \"group\": [2164.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83813_BALBc-1_X02_Y02_786_688\", \"ini\": 169, \"clust\": 2671, \"rank\": 2756, \"rankvar\": 2298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2657, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2751, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1919, \"group\": [2673.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83857_BALBc-1_X02_Y02_787_296\", \"ini\": 168, \"clust\": 2813, \"rank\": 1661, \"rankvar\": 1873, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2658, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1763, \"cat-2\": \"Density: 23\", \"cat_2_index\": 454, \"group\": [2811.0, 1527.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84179_BALBc-1_X02_Y02_790_487\", \"ini\": 167, \"clust\": 1681, \"rank\": 2571, \"rankvar\": 2456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2659, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2752, \"cat-2\": \"Density: 22\", \"cat_2_index\": 339, \"group\": [1682.0, 939.0, 278.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84223_BALBc-1_X02_Y02_791_169\", \"ini\": 166, \"clust\": 1351, \"rank\": 1334, \"rankvar\": 1624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2660, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 731, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1163, \"group\": [1352.0, 713.0, 212.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84480_BALBc-1_X02_Y02_793_920\", \"ini\": 165, \"clust\": 2064, \"rank\": 2806, \"rankvar\": 2677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2661, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2198, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1920, \"group\": [2067.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84554_BALBc-1_X02_Y02_794_978\", \"ini\": 164, \"clust\": 1107, \"rank\": 474, \"rankvar\": 130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2662, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2199, \"cat-2\": \"Density: 24\", \"cat_2_index\": 574, \"group\": [1106.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84577_BALBc-1_X02_Y02_795_333\", \"ini\": 163, \"clust\": 2776, \"rank\": 2273, \"rankvar\": 1654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2663, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 574, \"cat-2\": \"Density: 23\", \"cat_2_index\": 455, \"group\": [2777.0, 1503.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84864_BALBc-1_X02_Y02_798_754\", \"ini\": 162, \"clust\": 1192, \"rank\": 1284, \"rankvar\": 2069, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2664, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1514, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2213, \"group\": [1190.0, 583.0, 162.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85074_BALBc-1_X02_Y02_80_689\", \"ini\": 161, \"clust\": 953, \"rank\": 838, \"rankvar\": 167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2665, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1515, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2132, \"group\": [954.0, 487.0, 139.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85146_BALBc-1_X02_Y02_800_596\", \"ini\": 160, \"clust\": 2412, \"rank\": 1386, \"rankvar\": 1073, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2666, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2816, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1586, \"group\": [2411.0, 1281.0, 383.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85365_BALBc-1_X02_Y02_803_450\", \"ini\": 159, \"clust\": 645, \"rank\": 460, \"rankvar\": 477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2667, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 575, \"cat-2\": \"Density: 22\", \"cat_2_index\": 340, \"group\": [645.0, 433.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85452_BALBc-1_X02_Y02_804_6\", \"ini\": 158, \"clust\": 1657, \"rank\": 2302, \"rankvar\": 2477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2668, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 942, \"cat-2\": \"Density: 26\", \"cat_2_index\": 851, \"group\": [1658.0, 916.0, 266.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85759_BALBc-1_X02_Y02_808_377\", \"ini\": 157, \"clust\": 324, \"rank\": 1774, \"rankvar\": 2473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2669, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 576, \"cat-2\": \"Density: 23\", \"cat_2_index\": 456, \"group\": [326.0, 227.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85916_BALBc-1_X02_Y02_81_656\", \"ini\": 156, \"clust\": 1412, \"rank\": 2095, \"rankvar\": 1852, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2670, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1516, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2214, \"group\": [1416.0, 764.0, 226.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85926_BALBc-1_X02_Y02_81_785\", \"ini\": 155, \"clust\": 2381, \"rank\": 2568, \"rankvar\": 1749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2671, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1517, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1001, \"group\": [2381.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85942_BALBc-1_X02_Y02_81_991\", \"ini\": 154, \"clust\": 577, \"rank\": 840, \"rankvar\": 1787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2672, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1518, \"cat-2\": \"Density: 16\", \"cat_2_index\": 66, \"group\": [578.0, 395.0, 131.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86002_BALBc-1_X02_Y02_810_796\", \"ini\": 153, \"clust\": 986, \"rank\": 390, \"rankvar\": 689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2673, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 577, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2294, \"group\": [986.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86177_BALBc-1_X02_Y02_813_187\", \"ini\": 152, \"clust\": 457, \"rank\": 523, \"rankvar\": 2468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2674, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1556, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1164, \"group\": [457.0, 318.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86247_BALBc-1_X02_Y02_813_882\", \"ini\": 151, \"clust\": 2006, \"rank\": 1719, \"rankvar\": 1601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2675, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2200, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2033, \"group\": [2009.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86277_BALBc-1_X02_Y02_814_239\", \"ini\": 150, \"clust\": 765, \"rank\": 113, \"rankvar\": 837, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2676, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2497, \"cat-2\": \"Density: 24\", \"cat_2_index\": 575, \"group\": [766.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86338_BALBc-1_X02_Y02_814_833\", \"ini\": 149, \"clust\": 2127, \"rank\": 2123, \"rankvar\": 1887, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2677, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2201, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2295, \"group\": [2125.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86350_BALBc-1_X02_Y02_815_1001\", \"ini\": 148, \"clust\": 1851, \"rank\": 2272, \"rankvar\": 1691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2678, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 578, \"cat-2\": \"Density: 17\", \"cat_2_index\": 84, \"group\": [1851.0, 1043.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86446_BALBc-1_X02_Y02_816_410\", \"ini\": 147, \"clust\": 678, \"rank\": 664, \"rankvar\": 287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2679, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 579, \"cat-2\": \"Density: 25\", \"cat_2_index\": 704, \"group\": [681.0, 449.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86456_BALBc-1_X02_Y02_816_577\", \"ini\": 146, \"clust\": 1116, \"rank\": 608, \"rankvar\": 1399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2680, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1557, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1448, \"group\": [1117.0, 525.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86485_BALBc-1_X02_Y02_816_906\", \"ini\": 145, \"clust\": 2207, \"rank\": 1362, \"rankvar\": 1394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2681, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2202, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1820, \"group\": [2203.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86584_BALBc-1_X02_Y02_818_376\", \"ini\": 144, \"clust\": 336, \"rank\": 288, \"rankvar\": 1912, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2682, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 580, \"cat-2\": \"Density: 24\", \"cat_2_index\": 576, \"group\": [337.0, 237.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86654_BALBc-1_X02_Y02_819_312\", \"ini\": 143, \"clust\": 1312, \"rank\": 927, \"rankvar\": 1996, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2683, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 581, \"cat-2\": \"Density: 23\", \"cat_2_index\": 457, \"group\": [1310.0, 679.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86760_BALBc-1_X02_Y02_82_873\", \"ini\": 142, \"clust\": 1119, \"rank\": 157, \"rankvar\": 1414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2684, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1519, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1311, \"group\": [1119.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86819_BALBc-1_X02_Y02_820_592\", \"ini\": 141, \"clust\": 955, \"rank\": 584, \"rankvar\": 750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2685, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 582, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1587, \"group\": [956.0, 489.0, 139.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86859_BALBc-1_X02_Y02_821_272\", \"ini\": 140, \"clust\": 95, \"rank\": 893, \"rankvar\": 1707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2686, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 583, \"cat-2\": \"Density: 24\", \"cat_2_index\": 577, \"group\": [98.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86882_BALBc-1_X02_Y02_821_469\", \"ini\": 139, \"clust\": 783, \"rank\": 349, \"rankvar\": 484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2687, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2753, \"cat-2\": \"Density: 22\", \"cat_2_index\": 341, \"group\": [783.0, 475.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86995_BALBc-1_X02_Y02_822_773\", \"ini\": 138, \"clust\": 1992, \"rank\": 1866, \"rankvar\": 133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2688, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 584, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2034, \"group\": [1997.0, 1130.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87010_BALBc-1_X02_Y02_822_970\", \"ini\": 137, \"clust\": 2193, \"rank\": 2157, \"rankvar\": 2329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2689, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2203, \"cat-2\": \"Density: 25\", \"cat_2_index\": 705, \"group\": [2192.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87223_BALBc-1_X02_Y02_825_637\", \"ini\": 136, \"clust\": 845, \"rank\": 277, \"rankvar\": 76, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2690, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2754, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2035, \"group\": [848.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87231_BALBc-1_X02_Y02_825_685\", \"ini\": 135, \"clust\": 1816, \"rank\": 2823, \"rankvar\": 2720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2691, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1520, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2215, \"group\": [1817.0, 1027.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87361_BALBc-1_X02_Y02_827_663\", \"ini\": 134, \"clust\": 1927, \"rank\": 2663, \"rankvar\": 2446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2692, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2755, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2423, \"group\": [1927.0, 1107.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87401_BALBc-1_X02_Y02_828_136\", \"ini\": 133, \"clust\": 531, \"rank\": 888, \"rankvar\": 401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2693, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 878, \"cat-2\": \"Density: 25\", \"cat_2_index\": 706, \"group\": [532.0, 364.0, 122.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87753_BALBc-1_X02_Y02_831_750\", \"ini\": 132, \"clust\": 2414, \"rank\": 1191, \"rankvar\": 123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2694, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1521, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2036, \"group\": [2415.0, 1284.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87772_BALBc-1_X02_Y02_832_176\", \"ini\": 131, \"clust\": 1352, \"rank\": 1199, \"rankvar\": 1545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2695, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1558, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1165, \"group\": [1353.0, 714.0, 212.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87940_BALBc-1_X02_Y02_834_449\", \"ini\": 130, \"clust\": 160, \"rank\": 1201, \"rankvar\": 899, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2696, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 585, \"cat-2\": \"Density: 22\", \"cat_2_index\": 342, \"group\": [159.0, 100.0, 33.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88160_BALBc-1_X02_Y02_837_355\", \"ini\": 129, \"clust\": 337, \"rank\": 199, \"rankvar\": 1383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2697, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 586, \"cat-2\": \"Density: 23\", \"cat_2_index\": 458, \"group\": [338.0, 237.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88190_BALBc-1_X02_Y02_837_668\", \"ini\": 128, \"clust\": 525, \"rank\": 149, \"rankvar\": 1272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2698, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 587, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2296, \"group\": [527.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88264_BALBc-1_X02_Y02_838_719\", \"ini\": 127, \"clust\": 2519, \"rank\": 1435, \"rankvar\": 1573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2699, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1522, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2133, \"group\": [2519.0, 1352.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88363_BALBc-1_X02_Y02_839_932\", \"ini\": 126, \"clust\": 2234, \"rank\": 1299, \"rankvar\": 174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2700, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2204, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1704, \"group\": [2235.0, 1214.0, 362.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88394_BALBc-1_X02_Y02_84_515\", \"ini\": 125, \"clust\": 436, \"rank\": 598, \"rankvar\": 2425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2701, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1523, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1921, \"group\": [436.0, 308.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88440_BALBc-1_X02_Y02_84_969\", \"ini\": 124, \"clust\": 1070, \"rank\": 345, \"rankvar\": 1293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2702, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1524, \"cat-2\": \"Density: 20\", \"cat_2_index\": 184, \"group\": [1072.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88503_BALBc-1_X02_Y02_840_832\", \"ini\": 123, \"clust\": 2275, \"rank\": 1668, \"rankvar\": 809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2703, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 588, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2134, \"group\": [2274.0, 1240.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88555_BALBc-1_X02_Y02_841_439\", \"ini\": 122, \"clust\": 570, \"rank\": 1245, \"rankvar\": 708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2704, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 589, \"cat-2\": \"Density: 23\", \"cat_2_index\": 459, \"group\": [576.0, 393.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88760_BALBc-1_X02_Y02_844_277\", \"ini\": 121, \"clust\": 407, \"rank\": 802, \"rankvar\": 153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2705, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 590, \"cat-2\": \"Density: 22\", \"cat_2_index\": 343, \"group\": [407.0, 285.0, 96.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88917_BALBc-1_X02_Y02_846_331\", \"ini\": 120, \"clust\": 1109, \"rank\": 464, \"rankvar\": 14, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2706, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 591, \"cat-2\": \"Density: 24\", \"cat_2_index\": 578, \"group\": [1113.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88934_BALBc-1_X02_Y02_846_601\", \"ini\": 119, \"clust\": 1321, \"rank\": 1357, \"rankvar\": 718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2707, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2756, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1705, \"group\": [1322.0, 690.0, 205.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88985_BALBc-1_X02_Y02_847_249\", \"ini\": 118, \"clust\": 335, \"rank\": 1056, \"rankvar\": 793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2708, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2498, \"cat-2\": \"Density: 25\", \"cat_2_index\": 707, \"group\": [335.0, 235.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89032_BALBc-1_X02_Y02_847_706\", \"ini\": 117, \"clust\": 2174, \"rank\": 2023, \"rankvar\": 1729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2709, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 592, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2216, \"group\": [2176.0, 1181.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89042_BALBc-1_X02_Y02_847_797\", \"ini\": 116, \"clust\": 1016, \"rank\": 585, \"rankvar\": 512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2710, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2817, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2037, \"group\": [1017.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89169_BALBc-1_X02_Y02_849_386\", \"ini\": 115, \"clust\": 1316, \"rank\": 1588, \"rankvar\": 655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2711, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 593, \"cat-2\": \"Density: 23\", \"cat_2_index\": 460, \"group\": [1315.0, 683.0, 201.0, 57.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89338_BALBc-1_X02_Y02_850_734\", \"ini\": 114, \"clust\": 588, \"rank\": 924, \"rankvar\": 1118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2712, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 594, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2038, \"group\": [590.0, 402.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89357_BALBc-1_X02_Y02_851_140\", \"ini\": 113, \"clust\": 2473, \"rank\": 1130, \"rankvar\": 163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2713, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 879, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1002, \"group\": [2480.0, 1327.0, 394.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89396_BALBc-1_X02_Y02_851_573\", \"ini\": 112, \"clust\": 2712, \"rank\": 2547, \"rankvar\": 2213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2714, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1559, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1312, \"group\": [2709.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89419_BALBc-1_X02_Y02_851_872\", \"ini\": 111, \"clust\": 1057, \"rank\": 519, \"rankvar\": 660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2715, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2205, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1821, \"group\": [1057.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89427_BALBc-1_X02_Y02_852_1004\", \"ini\": 110, \"clust\": 2297, \"rank\": 1977, \"rankvar\": 1452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2716, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 595, \"cat-2\": \"Density: 16\", \"cat_2_index\": 67, \"group\": [2302.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89491_BALBc-1_X02_Y02_852_856\", \"ini\": 109, \"clust\": 504, \"rank\": 881, \"rankvar\": 516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2717, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 596, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1922, \"group\": [505.0, 345.0, 116.0, 33.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89556_BALBc-1_X02_Y02_853_642\", \"ini\": 108, \"clust\": 2331, \"rank\": 2284, \"rankvar\": 892, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2718, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2757, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2135, \"group\": [2356.0, 1257.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89743_BALBc-1_X02_Y02_855_754\", \"ini\": 107, \"clust\": 2368, \"rank\": 1966, \"rankvar\": 159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2719, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2818, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1822, \"group\": [2368.0, 1263.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89977_BALBc-1_X02_Y02_858_899\", \"ini\": 106, \"clust\": 2269, \"rank\": 1204, \"rankvar\": 920, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2720, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2206, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1706, \"group\": [2272.0, 1239.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90055_BALBc-1_X02_Y02_859_983\", \"ini\": 105, \"clust\": 2179, \"rank\": 2255, \"rankvar\": 2141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2721, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 597, \"cat-2\": \"Density: 24\", \"cat_2_index\": 579, \"group\": [2178.0, 1182.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90109_BALBc-1_X02_Y02_86_60\", \"ini\": 104, \"clust\": 1522, \"rank\": 1534, \"rankvar\": 1380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2722, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 732, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1313, \"group\": [1525.0, 824.0, 240.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90319_BALBc-1_X02_Y02_862_37\", \"ini\": 103, \"clust\": 1084, \"rank\": 290, \"rankvar\": 639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2723, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1991, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1003, \"group\": [1084.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90441_BALBc-1_X02_Y02_864_212\", \"ini\": 102, \"clust\": 314, \"rank\": 1383, \"rankvar\": 2630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2724, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2499, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1166, \"group\": [311.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90472_BALBc-1_X02_Y02_864_516\", \"ini\": 101, \"clust\": 551, \"rank\": 453, \"rankvar\": 1307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2725, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1525, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1004, \"group\": [552.0, 377.0, 124.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90584_BALBc-1_X02_Y02_865_954\", \"ini\": 100, \"clust\": 46, \"rank\": 757, \"rankvar\": 1461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2726, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2207, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1314, \"group\": [46.0, 38.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90756_BALBc-1_X02_Y02_868_247\", \"ini\": 99, \"clust\": 1752, \"rank\": 1455, \"rankvar\": 2194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2727, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1764, \"cat-2\": \"Density: 24\", \"cat_2_index\": 580, \"group\": [1751.0, 992.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90964_BALBc-1_X02_Y02_87_810\", \"ini\": 98, \"clust\": 413, \"rank\": 1153, \"rankvar\": 853, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2728, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1688, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1167, \"group\": [413.0, 290.0, 100.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90993_BALBc-1_X02_Y02_870_113\", \"ini\": 97, \"clust\": 358, \"rank\": 341, \"rankvar\": 2070, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2729, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 645, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1005, \"group\": [358.0, 250.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91037_BALBc-1_X02_Y02_870_608\", \"ini\": 96, \"clust\": 2669, \"rank\": 2761, \"rankvar\": 2058, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2730, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2758, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1588, \"group\": [2670.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91170_BALBc-1_X02_Y02_872_455\", \"ini\": 95, \"clust\": 101, \"rank\": 340, \"rankvar\": 1045, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2731, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1526, \"cat-2\": \"Density: 19\", \"cat_2_index\": 136, \"group\": [99.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91208_BALBc-1_X02_Y02_872_797\", \"ini\": 94, \"clust\": 2067, \"rank\": 2727, \"rankvar\": 1895, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2732, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2819, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1923, \"group\": [2065.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91245_BALBc-1_X02_Y02_873_333\", \"ini\": 93, \"clust\": 1282, \"rank\": 1862, \"rankvar\": 2331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2733, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 598, \"cat-2\": \"Density: 25\", \"cat_2_index\": 708, \"group\": [1280.0, 654.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91506_BALBc-1_X02_Y02_876_651\", \"ini\": 92, \"clust\": 913, \"rank\": 86, \"rankvar\": 179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2734, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2759, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2217, \"group\": [914.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91693_BALBc-1_X02_Y02_879_140\", \"ini\": 91, \"clust\": 543, \"rank\": 905, \"rankvar\": 1166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2735, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 646, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1589, \"group\": [544.0, 371.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91994_BALBc-1_X02_Y02_881_868\", \"ini\": 90, \"clust\": 1945, \"rank\": 2002, \"rankvar\": 928, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2736, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2208, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1707, \"group\": [1945.0, 1113.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92030_BALBc-1_X02_Y02_882_354\", \"ini\": 89, \"clust\": 100, \"rank\": 256, \"rankvar\": 1747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2737, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 599, \"cat-2\": \"Density: 23\", \"cat_2_index\": 461, \"group\": [101.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92117_BALBc-1_X02_Y02_883_671\", \"ini\": 88, \"clust\": 2673, \"rank\": 2602, \"rankvar\": 1491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2738, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2760, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2039, \"group\": [2672.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92273_BALBc-1_X02_Y02_886_181\", \"ini\": 87, \"clust\": 1594, \"rank\": 937, \"rankvar\": 860, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2739, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2466, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1315, \"group\": [1593.0, 876.0, 256.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92311_BALBc-1_X02_Y02_886_596\", \"ini\": 86, \"clust\": 2677, \"rank\": 2600, \"rankvar\": 1876, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2740, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2820, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1316, \"group\": [2676.0, 1444.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92434_BALBc-1_X02_Y02_888_295\", \"ini\": 85, \"clust\": 122, \"rank\": 1072, \"rankvar\": 421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2741, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 880, \"cat-2\": \"Density: 25\", \"cat_2_index\": 709, \"group\": [125.0, 79.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92552_BALBc-1_X02_Y02_889_735\", \"ini\": 84, \"clust\": 826, \"rank\": 265, \"rankvar\": 417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2742, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 600, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1924, \"group\": [830.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92558_BALBc-1_X02_Y02_889_853\", \"ini\": 83, \"clust\": 2135, \"rank\": 2224, \"rankvar\": 1630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2743, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 601, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1708, \"group\": [2135.0, 1153.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92570_BALBc-1_X02_Y02_889_96\", \"ini\": 82, \"clust\": 631, \"rank\": 530, \"rankvar\": 132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2744, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 881, \"cat-2\": \"Density: 26\", \"cat_2_index\": 852, \"group\": [630.0, 424.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92700_BALBc-1_X02_Y02_890_746\", \"ini\": 81, \"clust\": 2063, \"rank\": 2677, \"rankvar\": 2013, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2745, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2821, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1709, \"group\": [2062.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92756_BALBc-1_X02_Y02_891_44\", \"ini\": 80, \"clust\": 534, \"rank\": 735, \"rankvar\": 280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2746, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 882, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1168, \"group\": [534.0, 365.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92817_BALBc-1_X02_Y02_892_413\", \"ini\": 79, \"clust\": 567, \"rank\": 493, \"rankvar\": 1862, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2747, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 602, \"cat-2\": \"Density: 26\", \"cat_2_index\": 853, \"group\": [567.0, 389.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92906_BALBc-1_X02_Y02_893_546\", \"ini\": 78, \"clust\": 2636, \"rank\": 2662, \"rankvar\": 1602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2748, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1527, \"cat-2\": \"Density: 24\", \"cat_2_index\": 581, \"group\": [2634.0, 1426.0, 420.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92912_BALBc-1_X02_Y02_893_644\", \"ini\": 77, \"clust\": 1962, \"rank\": 2395, \"rankvar\": 1697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2749, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2761, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1925, \"group\": [1960.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92924_BALBc-1_X02_Y02_893_808\", \"ini\": 76, \"clust\": 925, \"rank\": 34, \"rankvar\": 507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2750, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2822, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1710, \"group\": [924.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93103_BALBc-1_X02_Y02_895_993\", \"ini\": 75, \"clust\": 1955, \"rank\": 2119, \"rankvar\": 1198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2751, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 603, \"cat-2\": \"Density: 17\", \"cat_2_index\": 85, \"group\": [1954.0, 1115.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93223_BALBc-1_X02_Y02_897_705\", \"ini\": 74, \"clust\": 2024, \"rank\": 2204, \"rankvar\": 1772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2752, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2762, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2040, \"group\": [2022.0, 1139.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93348_BALBc-1_X02_Y02_899_389\", \"ini\": 73, \"clust\": 267, \"rank\": 1022, \"rankvar\": 664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2753, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 604, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1006, \"group\": [267.0, 189.0, 66.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93415_BALBc-1_X02_Y02_9_38\", \"ini\": 72, \"clust\": 2558, \"rank\": 1708, \"rankvar\": 621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2754, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2467, \"cat-2\": \"Density: 24\", \"cat_2_index\": 582, \"group\": [2563.0, 1384.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93437_BALBc-1_X02_Y02_9_690\", \"ini\": 71, \"clust\": 2, \"rank\": 1060, \"rankvar\": 1377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2755, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1528, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1711, \"group\": [2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93474_BALBc-1_X02_Y02_90_174\", \"ini\": 70, \"clust\": 251, \"rank\": 1197, \"rankvar\": 262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2756, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2763, \"cat-2\": \"Density: 20\", \"cat_2_index\": 185, \"group\": [252.0, 175.0, 60.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93570_BALBc-1_X02_Y02_900_320\", \"ini\": 69, \"clust\": 1305, \"rank\": 1254, \"rankvar\": 1552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2757, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 605, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1007, \"group\": [1306.0, 677.0, 199.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93778_BALBc-1_X02_Y02_903_445\", \"ini\": 68, \"clust\": 1283, \"rank\": 1277, \"rankvar\": 2077, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2758, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1529, \"cat-2\": \"Density: 23\", \"cat_2_index\": 462, \"group\": [1281.0, 654.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93852_BALBc-1_X02_Y02_904_543\", \"ini\": 67, \"clust\": 263, \"rank\": 531, \"rankvar\": 1498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2759, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1530, \"cat-2\": \"Density: 24\", \"cat_2_index\": 583, \"group\": [262.0, 184.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93948_BALBc-1_X02_Y02_905_80\", \"ini\": 66, \"clust\": 26, \"rank\": 1026, \"rankvar\": 1290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2760, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 883, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1317, \"group\": [27.0, 26.0, 15.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94108_BALBc-1_X02_Y02_907_946\", \"ini\": 65, \"clust\": 2029, \"rank\": 2148, \"rankvar\": 1072, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2761, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2209, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1449, \"group\": [2038.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94454_BALBc-1_X02_Y02_911_705\", \"ini\": 64, \"clust\": 877, \"rank\": 0, \"rankvar\": 636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2762, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2764, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1926, \"group\": [874.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94481_BALBc-1_X02_Y02_912_148\", \"ini\": 63, \"clust\": 88, \"rank\": 767, \"rankvar\": 998, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2763, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 647, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1318, \"group\": [89.0, 64.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94484_BALBc-1_X02_Y02_912_174\", \"ini\": 62, \"clust\": 1108, \"rank\": 410, \"rankvar\": 196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2764, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 606, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1319, \"group\": [1107.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94610_BALBc-1_X02_Y02_913_822\", \"ini\": 61, \"clust\": 2096, \"rank\": 2583, \"rankvar\": 2373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2765, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2765, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1450, \"group\": [2098.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94815_BALBc-1_X02_Y02_916_641\", \"ini\": 60, \"clust\": 729, \"rank\": 456, \"rankvar\": 6, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2766, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2766, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1590, \"group\": [729.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94838_BALBc-1_X02_Y02_916_85\", \"ini\": 59, \"clust\": 823, \"rank\": 308, \"rankvar\": 3, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2767, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 884, \"cat-2\": \"Density: 25\", \"cat_2_index\": 710, \"group\": [824.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94839_BALBc-1_X02_Y02_916_856\", \"ini\": 58, \"clust\": 1996, \"rank\": 2543, \"rankvar\": 2028, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2768, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2767, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1451, \"group\": [1994.0, 1127.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94853_BALBc-1_X02_Y02_917_213\", \"ini\": 57, \"clust\": 836, \"rank\": 123, \"rankvar\": 73, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2769, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 885, \"cat-2\": \"Density: 26\", \"cat_2_index\": 854, \"group\": [835.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94891_BALBc-1_X02_Y02_917_742\", \"ini\": 56, \"clust\": 1044, \"rank\": 368, \"rankvar\": 40, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2770, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 607, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1591, \"group\": [1042.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95053_BALBc-1_X02_Y02_919_786\", \"ini\": 55, \"clust\": 1015, \"rank\": 477, \"rankvar\": 122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2771, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2823, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1823, \"group\": [1014.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95070_BALBc-1_X02_Y02_919_984\", \"ini\": 54, \"clust\": 1088, \"rank\": 175, \"rankvar\": 955, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2772, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2210, \"cat-2\": \"Density: 20\", \"cat_2_index\": 186, \"group\": [1089.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95344_BALBc-1_X02_Y02_922_457\", \"ini\": 53, \"clust\": 1106, \"rank\": 450, \"rankvar\": 515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2773, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1531, \"cat-2\": \"Density: 22\", \"cat_2_index\": 344, \"group\": [1105.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95351_BALBc-1_X02_Y02_922_549\", \"ini\": 52, \"clust\": 2687, \"rank\": 2819, \"rankvar\": 2702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2774, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2768, \"cat-2\": \"Density: 22\", \"cat_2_index\": 345, \"group\": [2693.0, 1450.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95458_BALBc-1_X02_Y02_923_893\", \"ini\": 51, \"clust\": 634, \"rank\": 561, \"rankvar\": 53, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2775, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2211, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1452, \"group\": [638.0, 428.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95495_BALBc-1_X02_Y02_924_349\", \"ini\": 50, \"clust\": 252, \"rank\": 1587, \"rankvar\": 661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2776, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 608, \"cat-2\": \"Density: 24\", \"cat_2_index\": 584, \"group\": [253.0, 176.0, 61.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95866_BALBc-1_X02_Y02_928_872\", \"ini\": 49, \"clust\": 2188, \"rank\": 2341, \"rankvar\": 2216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2777, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2769, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1592, \"group\": [2194.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95874_BALBc-1_X02_Y02_929_132\", \"ini\": 48, \"clust\": 366, \"rank\": 564, \"rankvar\": 2257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2778, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2468, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1320, \"group\": [366.0, 253.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96102_BALBc-1_X02_Y02_931_305\", \"ini\": 47, \"clust\": 92, \"rank\": 741, \"rankvar\": 896, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2779, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 886, \"cat-2\": \"Density: 24\", \"cat_2_index\": 585, \"group\": [93.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96234_BALBc-1_X02_Y02_932_924\", \"ini\": 46, \"clust\": 2015, \"rank\": 2159, \"rankvar\": 1768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2780, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2212, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1593, \"group\": [2016.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96350_BALBc-1_X02_Y02_934_713\", \"ini\": 45, \"clust\": 1994, \"rank\": 2113, \"rankvar\": 1664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2781, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2770, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1594, \"group\": [1995.0, 1128.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96428_BALBc-1_X02_Y02_935_613\", \"ini\": 44, \"clust\": 2559, \"rank\": 1703, \"rankvar\": 1814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2782, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 609, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1321, \"group\": [2562.0, 1383.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96640_BALBc-1_X02_Y02_938_684\", \"ini\": 43, \"clust\": 2634, \"rank\": 2086, \"rankvar\": 422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2783, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2771, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1453, \"group\": [2635.0, 1427.0, 420.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97000_BALBc-1_X02_Y02_942_474\", \"ini\": 42, \"clust\": 2800, \"rank\": 1956, \"rankvar\": 1796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2784, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2772, \"cat-2\": \"Density: 23\", \"cat_2_index\": 463, \"group\": [2802.0, 1520.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97011_BALBc-1_X02_Y02_942_662\", \"ini\": 41, \"clust\": 2456, \"rank\": 1187, \"rankvar\": 900, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2785, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2773, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1454, \"group\": [2464.0, 1312.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97056_BALBc-1_X02_Y02_943_193\", \"ini\": 40, \"clust\": 761, \"rank\": 315, \"rankvar\": 116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2786, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2774, \"cat-2\": \"Density: 25\", \"cat_2_index\": 711, \"group\": [761.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97137_BALBc-1_X02_Y02_944_154\", \"ini\": 39, \"clust\": 1356, \"rank\": 1947, \"rankvar\": 310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2787, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2775, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1824, \"group\": [1357.0, 718.0, 213.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97167_BALBc-1_X02_Y02_944_435\", \"ini\": 38, \"clust\": 943, \"rank\": 146, \"rankvar\": 352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2788, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 936, \"cat-2\": \"Density: 21\", \"cat_2_index\": 245, \"group\": [942.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97214_BALBc-1_X02_Y02_944_966\", \"ini\": 37, \"clust\": 879, \"rank\": 8, \"rankvar\": 698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2789, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2213, \"cat-2\": \"Density: 24\", \"cat_2_index\": 586, \"group\": [876.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97451_BALBc-1_X02_Y02_948_331\", \"ini\": 36, \"clust\": 102, \"rank\": 449, \"rankvar\": 1101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2790, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 610, \"cat-2\": \"Density: 21\", \"cat_2_index\": 246, \"group\": [100.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97491_BALBc-1_X02_Y02_948_932\", \"ini\": 35, \"clust\": 2534, \"rank\": 1597, \"rankvar\": 1327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2791, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2214, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1595, \"group\": [2533.0, 1359.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97517_BALBc-1_X02_Y02_949_240\", \"ini\": 34, \"clust\": 2504, \"rank\": 1616, \"rankvar\": 738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2792, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 887, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1008, \"group\": [2506.0, 1346.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97549_BALBc-1_X02_Y02_949_586\", \"ini\": 33, \"clust\": 2692, \"rank\": 2753, \"rankvar\": 2099, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2793, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1589, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1009, \"group\": [2689.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98069_BALBc-1_X02_Y02_955_308\", \"ini\": 32, \"clust\": 351, \"rank\": 1298, \"rankvar\": 1070, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2794, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 611, \"cat-2\": \"Density: 22\", \"cat_2_index\": 346, \"group\": [352.0, 246.0, 86.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98157_BALBc-1_X02_Y02_956_396\", \"ini\": 31, \"clust\": 1686, \"rank\": 1922, \"rankvar\": 1629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2795, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 612, \"cat-2\": \"Density: 25\", \"cat_2_index\": 712, \"group\": [1684.0, 941.0, 279.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98194_BALBc-1_X02_Y02_956_883\", \"ini\": 30, \"clust\": 2050, \"rank\": 2487, \"rankvar\": 2578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2796, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2215, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1712, \"group\": [2052.0, 1148.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98263_BALBc-1_X02_Y02_957_843\", \"ini\": 29, \"clust\": 881, \"rank\": 97, \"rankvar\": 220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2797, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2776, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1322, \"group\": [882.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98313_BALBc-1_X02_Y02_958_647\", \"ini\": 28, \"clust\": 2633, \"rank\": 2257, \"rankvar\": 1869, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2798, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 613, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1323, \"group\": [2636.0, 1428.0, 420.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98322_BALBc-1_X02_Y02_958_769\", \"ini\": 27, \"clust\": 2192, \"rank\": 1816, \"rankvar\": 1892, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2799, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2777, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1455, \"group\": [2193.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98806_BALBc-1_X02_Y02_964_191\", \"ini\": 26, \"clust\": 2506, \"rank\": 1942, \"rankvar\": 1840, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2800, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 888, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1169, \"group\": [2505.0, 1346.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98856_BALBc-1_X02_Y02_964_78\", \"ini\": 25, \"clust\": 1235, \"rank\": 1028, \"rankvar\": 2765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2801, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 889, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1596, \"group\": [1234.0, 621.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98994_BALBc-1_X02_Y02_966_741\", \"ini\": 24, \"clust\": 1993, \"rank\": 2028, \"rankvar\": 2111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2802, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2778, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1713, \"group\": [1996.0, 1129.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99000_BALBc-1_X02_Y02_966_800\", \"ini\": 23, \"clust\": 2662, \"rank\": 2525, \"rankvar\": 1853, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2803, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2779, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1456, \"group\": [2665.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99040_BALBc-1_X02_Y02_967_294\", \"ini\": 22, \"clust\": 2807, \"rank\": 1332, \"rankvar\": 1152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2804, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 890, \"cat-2\": \"Density: 21\", \"cat_2_index\": 247, \"group\": [2807.0, 1525.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99129_BALBc-1_X02_Y02_968_372\", \"ini\": 21, \"clust\": 105, \"rank\": 448, \"rankvar\": 1354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2805, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 614, \"cat-2\": \"Density: 24\", \"cat_2_index\": 587, \"group\": [105.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99400_BALBc-1_X02_Y02_970_970\", \"ini\": 20, \"clust\": 1728, \"rank\": 2300, \"rankvar\": 1242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2806, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2216, \"cat-2\": \"Density: 22\", \"cat_2_index\": 347, \"group\": [1727.0, 972.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99453_BALBc-1_X02_Y02_971_668\", \"ini\": 19, \"clust\": 1883, \"rank\": 1961, \"rankvar\": 1484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2807, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2780, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1597, \"group\": [1884.0, 1074.0, 327.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99472_BALBc-1_X02_Y02_971_945\", \"ini\": 18, \"clust\": 736, \"rank\": 482, \"rankvar\": 305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2808, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2217, \"cat-2\": \"Density: 25\", \"cat_2_index\": 713, \"group\": [736.0, 466.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99576_BALBc-1_X02_Y02_973_307\", \"ini\": 17, \"clust\": 939, \"rank\": 102, \"rankvar\": 1005, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2809, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 615, \"cat-2\": \"Density: 22\", \"cat_2_index\": 348, \"group\": [939.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99819_BALBc-1_X02_Y02_976_413\", \"ini\": 16, \"clust\": 2823, \"rank\": 1664, \"rankvar\": 1033, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2810, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 937, \"cat-2\": \"Density: 25\", \"cat_2_index\": 714, \"group\": [2824.0, 1535.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99924_BALBc-1_X02_Y02_977_857\", \"ini\": 15, \"clust\": 1931, \"rank\": 2469, \"rankvar\": 1956, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2811, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2218, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1714, \"group\": [1933.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100214_BALBc-1_X02_Y02_980_820\", \"ini\": 14, \"clust\": 158, \"rank\": 1122, \"rankvar\": 173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2812, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2781, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1324, \"group\": [160.0, 101.0, 33.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100337_BALBc-1_X02_Y02_982_632\", \"ini\": 13, \"clust\": 2580, \"rank\": 1637, \"rankvar\": 1676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2813, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2782, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1325, \"group\": [2580.0, 1394.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100367_BALBc-1_X02_Y02_982_992\", \"ini\": 12, \"clust\": 2640, \"rank\": 1973, \"rankvar\": 976, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2814, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2219, \"cat-2\": \"Density: 17\", \"cat_2_index\": 86, \"group\": [2639.0, 1431.0, 422.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100561_BALBc-1_X02_Y02_985_561\", \"ini\": 11, \"clust\": 2604, \"rank\": 2042, \"rankvar\": 2248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2815, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2783, \"cat-2\": \"Density: 22\", \"cat_2_index\": 349, \"group\": [2602.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100649_BALBc-1_X02_Y02_986_672\", \"ini\": 10, \"clust\": 1947, \"rank\": 1962, \"rankvar\": 1285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2816, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2784, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1825, \"group\": [1948.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100670_BALBc-1_X02_Y02_987_14\", \"ini\": 9, \"clust\": 1266, \"rank\": 2166, \"rankvar\": 2448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2817, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1532, \"cat-2\": \"Density: 23\", \"cat_2_index\": 464, \"group\": [1266.0, 645.0, 186.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100764_BALBc-1_X02_Y02_988_366\", \"ini\": 8, \"clust\": 518, \"rank\": 1261, \"rankvar\": 89, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2818, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1170, \"group\": [519.0, 356.0, 120.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100956_BALBc-1_X02_Y02_99_748\", \"ini\": 7, \"clust\": 1726, \"rank\": 2521, \"rankvar\": 2084, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2819, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1533, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1715, \"group\": [1728.0, 973.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100988_BALBc-1_X02_Y02_990_472\", \"ini\": 6, \"clust\": 54, \"rank\": 869, \"rankvar\": 1001, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2820, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 938, \"cat-2\": \"Density: 20\", \"cat_2_index\": 187, \"group\": [52.0, 42.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101005_BALBc-1_X02_Y02_990_71\", \"ini\": 5, \"clust\": 800, \"rank\": 77, \"rankvar\": 1319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2821, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2469, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1010, \"group\": [799.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101037_BALBc-1_X02_Y02_991_103\", \"ini\": 4, \"clust\": 1780, \"rank\": 2557, \"rankvar\": 2517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2822, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2470, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1326, \"group\": [1780.0, 1010.0, 306.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101297_BALBc-1_X02_Y02_994_186\", \"ini\": 3, \"clust\": 1215, \"rank\": 1083, \"rankvar\": 445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2823, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2785, \"cat-2\": \"Density: 26\", \"cat_2_index\": 855, \"group\": [1218.0, 610.0, 173.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101397_BALBc-1_X02_Y02_995_288\", \"ini\": 2, \"clust\": 852, \"rank\": 38, \"rankvar\": 742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2824, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2471, \"cat-2\": \"Density: 23\", \"cat_2_index\": 465, \"group\": [859.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101608_BALBc-1_X02_Y02_997_729\", \"ini\": 1, \"clust\": 2290, \"rank\": 2167, \"rankvar\": 1445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2825, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2786, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2041, \"group\": [2290.0, 1247.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}], \"links\": [], \"mat\": [[1.3213044010665222, -0.6524064713613235, 0.0024460404164287812, -0.7585718732301786, -0.6788316316633347, -0.1391101272616333, -0.7105661136314988, -1.5037488352104937, -0.420656136444123, -1.626862615483413, -0.4590993937299508, -1.1083641756563736, -0.2257404111471895, -1.1653602785793227, 0.7574193934434844, 0.4181534200566171, 0.6751827872144754, 0.9360890098994042, -1.2132426938705787, 1.5923071008962184, -1.2104620597983, -1.0263135771250806, -1.9382189871549775, -0.053398331803671636, 1.3157762316040404, -1.6827510761823716, -1.4537983125536702, -0.7480992433547338, -0.6577297565339735, -0.14707673869264803, -1.0937180950324634, -0.3501078471009562, 0.4500476204046905, -0.09432588652381747, 0.07655709258487299, -0.1042339425253221, 0.3777944041567053, 0.5108397284281713, -1.2340668072734027, -1.769174547176509, 0.011120653343710821, -1.2171588109853617, -0.1454788653376569, 1.5697406952795068, -0.35033143559393837, 1.2410528538171999, -1.775720253303669, -1.4340325812269001, -0.06903194263732335, -1.183297695596603, -1.1728022241827485, -0.45373671767784646, 0.2657700183935792, -0.9991643831526682, -0.6037579594911954, 0.7970781653507368, -0.011216992110951392, -0.8133571738183464, 0.4647780854290049, -0.9410111192743476, -0.32604320895342526, -0.28073507813837995, 0.6146585716490501, -0.8576829460927243, -0.11967378815765693, -1.8006146857541736, -0.38831734494462594, -0.019784379099419346, 0.11765634671828537, 1.4247781215711766, -0.3725846104537134, 0.6859814046305734, -0.2986111246826454, -1.4518594969149599, -1.2962931915201508, 0.9620816462778319, -1.1797585500600947, -0.19555544742816663, 0.7578184739070472, 0.08095266652008438, -0.46327137917218003, 1.233175712261174, -0.720647765324927, -1.4153312224928614, 0.870820132736242, 0.9693133635333859, -0.9949289585697872, 0.14552095491264178, 0.3699334671637788, -0.5329704804533408, 0.06536077381696533, -1.6780335873959062, -1.4379292183881691, 0.5795710380365624, -0.6732449361458271, 1.3148294713855064, 1.5923071008962184, 0.09806847771042868, 0.33477766751951743, -0.5820150559800769, 0.5552795360056392, 0.8886729067696768, -0.33874396625504144, 1.1884193985363594, 0.30872848755920373, 0.11810524759393407, -1.9382189871549775, 1.5623203844917102, -0.6937249180690033, 0.14007139482008932, -0.08818935638923318, 1.5606285591485394, -0.6764858487657179, 0.31284772197688226, -0.08586365680651976, 1.5923071008962184, 1.5923071008962184, -1.735563191081108, -0.3695188450264721, 0.7082581967791246, 0.9293170540245513, 0.176572345590578, 0.08664857044954591, -1.9005844550078013, -0.5693092993983521, -1.5291401357673116, -0.8908092965977499, -0.8649747409040303, 0.8754486041687694, -0.4589016635823401, -0.3600214195494734, -1.1220713397598543, -0.11949433124077541, -0.4437872883237475, -1.4781833786975993, -1.4430010742493282, -0.40995836657497725, -0.676154430972542, 1.4434378483691668, 1.316311671742199, 0.4849550075444201, 0.6808428342383552, -0.6121818326628535, 0.49049334795608485, 1.1238673147069014, -0.6077560044635627, 0.8319165969028092, -0.2911316844784362, 1.537158835333518, -0.2573589615336066, 1.2150659062747504, -0.0366724644615291, 1.5923071008962184, -0.7173579804322825, 0.3662145199324577, 0.9944211273332055, -1.0882656905219148, -0.9933628047851184, 1.5923071008962184, 0.15760490448266387, 1.1049952046989269, -0.7855812597486124, -0.9082785051748375, -0.4982984904509778, -1.266253034535208, 0.09947792992214287, 0.047097714036977066, -1.9382189871549775, -0.2918788182707025, 0.04472840004507396, -0.4787248435330807, 1.5923071008962184, 1.046035419028472, -1.2215317588683738, -0.7632057749152286, 0.9838195505088416, -1.0094509191359213, 0.6956648378052811, -1.0403450910739989, -0.513958390602429, 1.5923071008962184, -0.7660329540091758, 1.5923071008962184, 1.5923071008962184, 0.9631270129867158, 0.24383559073775338, -0.5431028145036971, -0.6447955845681372, -0.635823083502176, 0.026703064653523484, 0.5754676634040522, 1.148332067651817, -0.18500644923939494, -1.3373315061529718, -1.317648693920359, 0.8794433737507266, -0.6082117147034941, -0.43788934452245726, 1.5923071008962184, 1.3619985411224482, -1.2745102075737107, -0.547037247946454, -0.7221813375944243, -1.6611808417724745, 1.0341685071705975, -0.8105096528260403, -0.5498040047067184, -0.4732882126132104, 0.41987627541423345, -0.9108876122228224, 0.41763004714629853, -0.7830734312200083, -0.19638188014623878, -0.8816045013958735, 0.8085851290410404, 0.3578702042700539, -0.34689141371469084, -0.9337507854499157, -0.45209316124602883, -0.4514227405450348, -0.49133664812661904, -0.2604333464093051, -0.3739001106772481, -0.8286731579763537, 1.2256726547681887, -1.8282383049439785, -1.5321324203964555, 0.4128245322424648, 0.4639268286993761, 1.5923071008962184, -0.8035651355930786, -1.2056950738290717, 1.2634051523342358, -0.4457533845168213, 1.4559029499499678, -1.2895738142808901, -1.0367021673780663, 1.5923071008962184, 1.5267124085813828, 0.3823125466489739, 0.30065637407908047, -1.3525113892198386, -0.8807730693976927, -0.9188076786321687, 0.42015209776486245, 0.7818255341388914, -1.045527706847828, -1.4718948876867117, 0.40654043715029403, -1.05668765154325, 1.4234083188223652, 1.5923071008962184, -0.941826260514939, -0.1036952269967463, -0.5441254258686542, -0.3907631996388286, 1.3664834125436758, -0.24388762553992063, 0.27711269539629296, -0.9274388495392267, -0.02255880716881586, 0.25623328823161595, -0.8690388108515757, -1.359044758761394, 0.17016033788329593, -0.6197709122514448, -0.015066093013979084, 1.028958567745154, 0.5464709768493293, -0.2536148455127835, -0.36859328865114616, -1.127395142099415, -0.7227926288790059, -0.6155210069951627, -1.5372134990674646, -1.2392974764723863, 1.5923071008962184, -1.0100647962550364, 1.1823930249530539, -0.4648168462805446, -0.6109814882707133, -0.9460122956581551, 0.013518411515526076, -0.41564530627803625, 0.9673157201589554, -1.0864674149903037, -0.15812962983822865, -1.299097442881202, 0.7856634297589213, -0.6687374817696455, 0.6972971889541009, -0.5011920392980487, -0.8216402913967081, -1.4984144740465708, 0.17930384880664726, -0.5608484487928075, -0.6269349668366119, -0.2830495724381026, -0.48571849162224456, 0.9073619396924212, -1.2555966380186567, 0.08342610344934995, -1.9382189871549775, -1.3424122831432848, 0.49637163941489976, -1.4136724958317661, 0.8661358072777194, -0.8780576845502402, 0.07281108028539289, 0.23984806149250024, 0.6304537109467925, -1.4776269932996897, -0.6575754684065936, -0.6745147532925354, -0.8700690935256579, 0.26029253128803265, 1.5923071008962184, 0.7808886000916021, 0.547605813433202, 0.18767091981297798, -0.9696864727905805, -1.9382189871549775, -0.20629217720433873, 1.351578317493623, 1.0511812297573941, 0.10231803818877938, 0.7204540267901242, 0.55155145215895, -0.205731223498747, -1.5956290096650925, 1.039636340493879, 0.6134156471815282, -0.7916871908411791, 0.5128873646036533, -0.6257885801918102, 0.1676289782603983, 0.2951095866079313, 0.5492545415340869, 1.218304405449073, 0.3429001185786305, 0.2530997739395049, 0.25405222299401714, -1.2367449992007684, -1.1072029635602254, 0.5136207072783882, 1.413103595802866, 0.16134315927853607, -1.6517408649194398, -1.9382189871549775, -0.29134751546780335, -0.8280754854203309, 0.314053065649131, -1.1556009942581922, 0.17894545213980226, 0.8313111668431785, 0.017335620459258756, -0.6756685526630066, -0.34258220665301664, -1.12289165266952, 0.12713739524321896, 0.45884049216481176, 0.7502595623880595, -0.31849481316155875, 0.12308366863381484, -1.262846456115971, -1.0790100405741376, 0.5867536244359143, 0.8471521616067129, 0.5170371118688666, -0.8195778297698798, 1.5923071008962184, 1.1835959551797346, -0.3459318967124332, -0.2554316528585865, 0.48232745487674766, 1.008838016822645, -0.8707995917824036, -0.37998682039975357, 1.5923071008962184, -1.658576432323903, -0.6817421608238572, -1.9382189871549775, 1.5923071008962184, -0.7673465579540464, 0.4844204293511108, 1.5578951596538062, -1.3450835795118836, -1.326897448309372, -0.36097059321357544, -1.9382189871549775, 1.5923071008962184, -0.12189277896846723, 0.282846007732055, -1.9382189871549775, 0.4593821383058524, -1.2635033442828913, -1.3540544428826389, -0.007990387775495994, 1.1323843641163867, -0.6612308903027874, 0.41236459847279094, 0.24778278096422, 1.3700966853369156, -0.5914781760522196, 0.6080755540843852, -1.0250248833862494, -0.31316196040111266, -0.8104313020395665, 1.3925672426867837, -0.5749115099230825, 0.836743832816755, 0.5344608097581005, -0.5600599416479468, 0.6343972810049107, 0.5331880619989133, 1.4443952967037876, -0.38995141998313715, 0.6936249591334069, -0.29802086485229934, -0.25592313380961706, -0.7655125117113364, 0.3333878676502785, 0.28277257003120004, -1.3570044060198578, -0.16017812795855285, -0.3166997268258679, -0.9252855389256562, 1.400194420237552, -0.01334634065780727, 1.5923071008962184, 0.6025063560472403, 0.4128269456880328, 1.4395277217710623, -1.9382189871549775, -0.42160272427369144, -0.10754329356595914, -0.6173950474787142, 1.5923071008962184, -0.4314170006759751, -0.7273617985061407, -0.06435089256921094, -0.397677893580132, 1.5430807412015226, -0.005391451676694245, 0.6559022877386045, -0.11020532402746727, -0.5980208545981122, 0.014806501892963505, 1.3432395182782317, 1.5923071008962184, 0.1123403880768153, -1.8452721236308745, 1.5923071008962184, 0.7586423207905857, 0.8131984302442831, 1.5923071008962184, -0.13525706141231883, -0.6581108223502694, -0.7869731282854739, -0.38640968861208813, -1.8629683038344598, 0.023841752543692963, -0.46898796977793167, 0.663906652353858, -0.6234907214276151, -0.0764127763511827, 0.08653358700712391, 0.3977001584236619, -0.6874020354587643, -0.48763545695911614, 0.04256612520510822, 1.5923071008962184, -1.3115565970425682, -0.18479061825002774, -0.03994802726422114, 0.994461466351985, 0.07728319492290384, -1.0621154044312076, 0.42434907960762097, 0.2613959930795143, 1.3721208766125943, 0.15736959353978702, 0.5762187621426124, -0.4496569603340982, 1.5923071008962184, 1.1404104497417522, -0.3899067712401255, 1.5917533875273306, 0.4894931471571164, -1.1243958326197803, 1.0225874162235624, 0.7204941934199309, 0.8053064632369109, 0.7245670552049135, 0.06866426363265855, 0.2291951127553317, 1.5923071008962184, 1.5420605432821335, 1.2019622759522433, 0.3659633492044126, 0.6151250561995515, -0.16145518544196513, -0.5230664755926198, -0.7826210825649766, -0.11684057544978614, -0.09769074681252565, 1.0240223820027097, 0.05069167926567293, 0.5356830475493253, 0.5701916990034234, 0.13940407712053274, 1.4472228205756732, 0.056541181766637444, -0.10748726715099115, 0.7469421090658692, 0.23304093826794214, 0.4227362084123179, 1.5923071008962184, -0.6481918196492226, -1.5936309784154814, -0.34932192579063626, 1.33519653853389, -0.01843422869309039, 1.2052811083861865, -0.7251605637591558, 0.11600503278286692, 0.58586926902421, -1.4440142473182254, 0.7145143648582942, 0.02138572690030733, 0.3892243099778054, 1.5923071008962184, -0.7223646732631098, 1.5923071008962184, 0.05155862339149018, 0.45723917103043776, 1.5923071008962184, -1.233792320937285, -0.4987947982931444, 0.280207077392412, 1.4456333942801736, -0.8837376425000506, 0.34944141801276285, -0.25141223165404536, 1.3330989095573564, 1.5923071008962184, -0.027570499279744785, 1.5923071008962184, 1.5322071345838508, 0.6210702345783939, 0.02726574224880664, 1.506637713124666, -0.45400495491383314, 0.8220242282975001, -1.6790338528407385, -0.4643544990653098, -1.0527814036969496, -0.6270200407928856, 1.0895453605063818, 1.5923071008962184, 1.5923071008962184, -1.2721908432856162, 1.0553647652605596, 1.5923071008962184, 1.5923071008962184, 1.5923071008962184, 1.5923071008962184, 1.5923071008962184, 1.5923071008962184, 1.5923071008962184, 1.5923071008962184, -0.6343958752266367, 0.9494241586074671, 1.089101286521869, 0.22829282889083657, -0.4429743019452685, -0.7933240241031894, -0.34815812785995454, -1.3401995845298478, -0.25149308208057, -0.031805923862618685, -0.11197058707149286, -1.3476980306179083, -0.7852776827739549, 0.7764763044263803, -1.6862360269367054, -1.9023465800338728, -0.43473807416652094, 0.8785160934857021, -0.05970587179565296, -1.0116061260281486, -0.6761589992802226, -0.020336540967588305, -0.5161247165831644, 0.4701557593214211, -1.579458902810846, -0.4642546858521724, -0.6574171291384375, -0.23350256926079346, -1.1829766211415758, -0.5271420956011015, -0.6781893103643075, -1.407442832556599, -1.2719229077303256, -0.6668518050306681, -0.08528649853782858, -0.48761011578064856, -0.5338600937286091, -1.9382189871549775, -1.1532746913140919, -0.39726381527624316, -0.985725025312753, -1.5817080185940147, -0.9921890944887092, 0.2815467120716268, -0.337660673972946, -1.3328444798696293, -1.749583392003928, -0.35910879234682974, -0.8794475706139548, 0.25393241266045913, -1.110426551088719, 0.4982546441248466, -0.0007374666767337724, -0.41940562686195876, -0.24835112072897442, -0.6464119897373061, -1.5404705731532125, -0.8375016280585942, -1.3058288873483028, -1.1056493941703076, -0.4114272929810423, -0.7377755575486286, -1.1724606354403897, -0.5487498461604047, 0.05248021482052932, 0.199831237696334, -1.3866149696936958, -0.6245166943774721, -1.6931199278983924, -0.8072835656574958, -0.3563048857637133, -0.8362162097101803, -0.5753248124766049, -1.0071006541251066, -0.15843096575629081, -1.789200833655828, -0.6996447552693781, -0.1837692136078512, -0.9102633055710688, -0.033550845008285396, -0.7523450112757563, -0.6630677809634936, -0.4699466248353401, -0.9644052505264018, -1.2596792397803895, 0.11805146223556141, 1.3361536420905726, -0.5110419140224588, -1.1548468787126773, -0.15749092870754983, -0.3066870307200969, -1.1745992929915794, 0.5909493995558852, 0.6024537774116552, 0.9286454266007697, -1.1735309985498028, -0.44058343933222605, -0.9417744576297132, -0.19815059096964724, -0.26494924784497836, 1.2801072299986365, 0.12873923354449687, 0.29858925795008173, -0.8354530437437802, -0.6210043553256671, 0.6938104496642049, -0.7648726900523598, 0.8889335588910212, 0.20807642970148404, -1.8871351201562987, 0.032922513882276204, -1.4066578593856063, 1.0114176453569028, -1.6713041254019512, -1.6103946204904873, 0.027107489175140317, -0.897710630393943, -0.8021636994684278, 0.38376785432648725, -0.9574945215313923, 0.1517329914157178, 0.8755151463108586, 1.5923071008962184, -0.8032575074776445, -0.19669028401203936, -1.229513626723149, 0.17899699644157252, -0.9506615399614625, -0.5997425894274308, -0.5098591533051712, 0.09263615651479053, -0.8470127584586414, -0.5937841370979677, -0.26477927232140325, -0.8716169740795975, 0.775658146378827, 0.00525735972521486, -0.7747420447302865, 1.1202399060181918, -1.855018376423368, 1.5923071008962184, 0.2246243916274709, 0.03598672780879172, -0.23166972974086375, -0.873636941825534, 0.17241122065340125, -1.0679711129350613, 1.2255471555986523, 0.28792338004022394, -0.45120690955566756, 1.4569514196602962, 0.10156780139506849, -1.0030529611296262, -1.0402606204791187, 0.10985902125497622, 0.7644819971203126, -1.184463389805949, 0.006474598236337997, -0.7951156626594975, -1.5185646327745306, -0.6573599821951648, 1.5923071008962184, -0.7123661130528085, -0.020214661966400586, -1.9382189871549775, 1.3026832893976201, 0.7482308889991832, -0.21364525629416958, 1.3177611181947544, -1.4274616308900716, 0.655029654776802, -0.19269672115286268, 0.1511546264242391, 1.5923071008962184, 0.6496424994910793, -0.1191333487393897, -0.14524596784034807, -0.809531604009605, 1.525152977966514, 0.20288372917295483, 0.9168248873755983, 0.5658612880985481, 1.2479142795670346, 1.5600110618610687, 0.42185788661453016, -0.4418813558809011, -1.8207814153717916, 0.2306118053037499, -0.5994878847255202, 1.5923071008962184, -0.8493486289905309, 0.46288180676843055, 0.5720107474058216, -0.7193413155222776, 0.0875317191384626, 0.2866866615755982, 0.49531455025611415, 1.273020664255101, -1.0079634609156645, 1.0610842864787902, -1.9382189871549775, -1.0007422593872317, -1.6863559234647447, 0.9462487537958507, -0.7716518000694268, 0.8234360939547823, 1.5352928971315127, -0.5503497019885426, -1.4496641664901642, 1.0275449781981805, -0.8484857360054829, -0.8000209907764615, 0.16295585808486646, 0.12157819576629146, 1.4589366510289485, -1.2730108114173457, 0.34685196330726753, 1.4769919821011228, -0.2825453347033554, 1.102062178777926, -0.4520640275102472, -0.24017936642467935, 0.40297784671397513, -0.56902873635107, 1.4876463099500445, 1.2262663623779175, 0.5301703930940664, -0.3031009953839816, 0.6923897921695, 0.8598665376368879, 0.04849975352301457, -0.37026373776214305, 0.3685193604498942, 0.2222767986456798, -0.5510121927969562, -1.9382189871549775, 1.5923071008962184, 0.14281100031771185, 0.056374136855534225, 0.24713735666374811, -1.1342831157504978, -0.6125149743457278, -1.4976222174416316, 1.2510190049013021, 0.9325484852511357, 1.5923071008962184, -0.5867751463905398, -0.5628360936070277, 0.07629988824291145, 0.23496893649883885, 0.3802652552514301, -1.0688249554992235, -0.28354036383324954, -0.12598477592901405, -0.014382743140295737, 1.5923071008962184, -0.6759384275942022, -1.3420992678725632, 0.6095901635672696, 1.1625779472838667, 0.09105655639052854, 1.5047676375874013, -0.5943949112156385, -0.03718566642267171, 0.27472976267583105, 1.555855798148843, -0.8286515231607244, 0.8239282644616824, 0.7042373964628303, -0.9182087131588754, 0.7406493945252413, 0.3455240510779545, -0.08203507019082364, -0.19661236419798667, -0.8788704985397464, -0.6717858359109997, 0.3407504281334158, 0.41031541079658307, -0.5854358564892702, 0.7636996959783341, -1.0776881619587482, 0.4056398771754903, -1.4685030916215789, -0.6525621386004562, -1.1717472898860755, 0.4313172141293517, -0.3924122725176517, -0.5456447760481987, -0.10608419333113173, 1.5923071008962184, 0.9623667776327947, 1.4349159720685454, -0.021953721887116428, -0.7474665758379785, -1.3331910247948493, -0.5885354101544636, -0.3829856989069674, 1.0428213990877675, -1.4678028045316769, 0.4610550008624173, -1.9382189871549775, -0.48585226546229965, -0.22528926921493841, -0.7823810309254394, 1.5923071008962184, 1.0771354233957064, 0.003936170665701952, -0.14925556287364447, 1.5923071008962184, -0.04641950916585405, 1.0223271088801562, 0.4827213636712362, -1.7047863298365324, -1.0030944206767032, -1.9382189871549775, -1.4275880351016956, 0.13481473798401156, 1.5923071008962184, 0.14254362502656734, -0.18739041629367167, 0.3751646104324234, -1.2302224901642655, -1.3414988801902796, -0.32106806330395465, -1.9382189871549775, -0.1343561566595698, -1.2429051466241288, 1.5923071008962184, -1.9382189871549775, 0.7894459885198668, 1.053560887087446, 1.5488695627853486, -1.9382189871549775, 0.7478254301437586, 0.9138285947029181, 0.4586369007922502, 1.1247947673608913, -0.4181242596543144, -1.0168539048323137, -0.5135934431547495, -0.01997917863455814, 0.49282732220931713, -0.14345432928404003, -0.6416243170917804, 0.6242244355468022, -0.5518074231116169, -0.6713330562835471, -0.3085210769628141, -0.7680986048319315, -1.0625401708511761, -0.4098485548016366, 0.2727234998529363, -0.17727170097188122, 1.4692589577233004, 0.6282581650357857, 0.5329349949922112, -1.6868682634810381, -0.8356128483181793, 0.15228980778604304, -0.6785957173590569, -1.235617273661876, -1.9382189871549775, -1.6965866916164818, 0.5531807003063252, -1.8091999257752658, 0.6737404087096585, -0.6178620491961263, -1.184231871420386, 1.48897301545657, -0.5402820138016116, 0.06539921655708777, 1.5277264004978828, -1.16141024393486, -1.6095039513327882, -1.5941753612314145, -1.0767099407533474, -0.8468008924155681, -0.3200751028416903, 1.0972645937666725, 1.4862516831896766, -0.4189291437512472, -0.7220291181346746, 0.7925410600718554, 1.5923071008962184, -0.8015334453972406, -1.9382189871549775, -1.9382189871549775, 0.6404091739148009, -0.9075355087178381, -0.1633288811475853, -1.0038161270960262, 0.7524237335066893, 0.05388328864038169, 0.9506131253276507, -1.5058878806368636, -0.7946691752294168, -1.603710496795416, -1.9382189871549775, -0.38622437047026276, 1.0827187573283141, -0.35086601378725474, 0.15543366541630974, 0.019069853488838592, -0.24504642419049366, -0.5125811751279411, -1.8589639397289424, -0.6384697713454269, -1.3952769551289885, 1.443480256055576, 0.5128634025369389, 0.4850751626559164, 0.4996809904555368, -0.42754066231582283, 0.24980369684948836, 0.08249589257185364, -0.010383319056175242, -0.6991518952065943, 0.15232980202688426, -0.3122251987427889, -1.4481638221944695, -0.15258008414357316, 0.8211702133443651, -1.1538081489791037, 0.35215378605326786, 1.101643273582908, -0.8667918930277643, -0.5325826914672586, -0.46864457095139855, -0.37812881209032895, 1.5202257564504653, -0.34280820859155975, -0.5017651464259633, 0.851852691628335, 0.08123969415371123, -0.14806935437696708, -0.5937238009587609, -1.2949991106260363, -1.2124794417096958, 0.32899487954960777, -0.585003160176721, -1.923710980667824, -0.3179709230843293, -0.12411452800278382, -1.6986037933958047, 1.5923071008962184, 0.07566049755636313, -1.0564097605249911, -1.646401806156108, -0.24828750919935708, -0.1696250434675961, -0.9328241947407678, -0.07644915042367542, 1.057756145040513, 0.00048683978211363566, -0.27234714806678645, -1.6018852423901286, 0.8920053579321789, -1.0408665677056532, 0.5490156104228545, -0.9498570006424752, -1.3597295308440724, 0.3740921786553875, 0.13677531773007276, -0.05170547212668615, 1.467914323763984, 0.18485115344470743, -0.6467833155768403, 1.5923071008962184, -0.09561345973434393, 0.5482062442127311, -1.2782604003056923, -0.46243529267183586, -0.5549799835052373, -1.2279585489297575, 0.06254376567220105, -1.9382189871549775, -0.38793343471034064, -0.31559764414613234, -0.915754583794154, -1.0199388916296162, 1.045415163517495, -1.9382189871549775, 0.660235456866986, -0.018589895932230167, -0.02804353461107352, -0.6799956881774719, -1.6832766255034253, -1.1121058782316287, -1.9382189871549775, -0.5424352382206921, -0.5554688786217271, -0.5658630715162154, 0.3546753195049208, 0.6223050567643627, 0.34056924732684984, 1.5085667456893774, -1.1619824891179322, -0.7802986583726805, -1.3035330972517398, -0.2331903728376788, -0.23563553797600487, -0.2896929261419677, -1.4758641006039903, 0.7295537509153132, 0.8976216181578963, -1.0890298908221299, -0.032845084568613445, 0.2508213089343367, -1.3520380522078137, -0.2560781114928732, 0.5660252300082067, -0.030889331713688222, 0.13684392853979174, 0.34268187414369533, -1.7549718617555408, -0.2741053431630807, 0.08658168352951837, 1.5923071008962184, 0.8331405585837254, -1.252635124820505, -0.2929541806602173, 0.44245854081610625, -1.0596794621027252, -0.39660270357958277, 0.6723845694673443, 0.7542584693052761, 1.5923071008962184, -0.13927165572572392, 0.30330478581202275, -0.7694840949769384, -1.3998422891015636, 0.6031409198426597, -0.4419834101506338, -0.8624347618326681, -1.0130319551919278, -0.494479471423064, -1.1593798466562921, 1.5923071008962184, -0.22027619799225634, -0.06766369138923083, 0.03400218599601606, -0.5703858685106544, -0.30696612846114313, 0.17873927493270708, -0.016016818178799883, -0.15684171184975682, 0.2714221355248784, 0.1952372440576424, -1.3373614587363596, -1.1364409084772658, 0.784596514428898, -1.2486950887362547, 0.2758223639622531, 0.9931420011821636, -0.03069573890133696, 0.7432502269027, 0.056030220862097226, -1.609029342952116, 1.2633206817393556, 1.5923071008962184, -0.5681825650960326, -0.882003754248409, 1.5923071008962184, 0.15238220827350377, -0.5180766768807685, 1.3729328286572584, 1.4942481179123495, -1.4591415086522608, -0.9791624358409297, 0.24983938136609746, -0.8028242078037015, -1.514019899283768, -0.7587348670005053, -1.3995359970006387, 1.2669584337662139, -1.9382189871549775, 1.5923071008962184, -0.9122237129281644, -1.4674780668110539, -0.8196758328988357, -0.2865382080066485, -0.9501675593703811, -1.9382189871549775, 0.9528071197379318, -0.658113925351714, 1.5923071008962184, -1.8719142623863283, -1.0800670435384405, 0.19518363108823536, -0.4717132669911188, 0.621996652898562, 0.06085349182974918, 1.5923071008962184, 1.5923071008962184, 1.2247017600939745, -1.0452574009442115, 0.9204188526042941, 0.8721363225156533, -0.8040427392320879, 1.582890181067806, 1.5923071008962184, 0.698643891581047, 0.17598863654105937, 1.4703750039095331, 1.0329428215999898, -1.0873572006545376, 0.851311217876253, 1.275599603233482, -0.6180333176369648, 0.5196267389633347, 1.5923071008962184, 0.09709206658920201, -0.2798184859894495, 0.5430404363633812, -1.450373719487157, 1.2024439307320292, 1.5923071008962184, 1.5923071008962184, -1.116655912683192, 1.0767416869901836, 1.5923071008962184, -1.3199344423594697, 0.20717535255977645, -0.11188904708908463, 0.19406672295716057, 1.5923071008962184, -1.358802767745959, -0.8593913207769327, -0.21306447785712992, 1.545055629232026, 1.5923071008962184, 1.347368923645086, 0.5030668821984734, 1.5923071008962184, 0.39455974857277804, 0.8650532045515007, 1.5923071008962184, -1.0144461481002953, -1.8897719764411565, -0.02731105388118085, -1.9382189871549775, 0.19449597149032696, 0.5495682894579274, 1.5923071008962184, -1.0420044210964878, -0.32426760257125103, -0.4350518220903615, -0.9942553486728587, -1.3049391016840712, -0.04852868820331665, 1.2402643466723393, -1.9382189871549775, 1.5923071008962184, 1.187451951641528, 1.5923071008962184, 1.0163372817583092, 1.5923071008962184, -0.7735211860508149, 0.6839942769832642, 0.22978623453051994, 0.9016620708166729, -0.36747793202079015, 1.5923071008962184, -1.184033882689327, 0.28196285904313123, -0.3529295097478909, -0.9785712278712516, -0.7855768638298973, 1.5923071008962184, -0.708468139877027, 0.282448478769211, -0.1081582050188962, -1.0410212006109782, -1.0993343552581738, 0.30707389823336806, -0.5245185940741918, 0.6404427897637873, -0.8159216321233196, -0.5917780466640459, 1.5923071008962184, -0.4104984612152991, -0.1738327134264415, 0.4784176730565816, 0.18619440829227066, -0.9692110240136838, -1.6247240441267081, 1.5923071008962184, 0.06615652129852999, 0.7497763561075548, 0.9334300824393407, 1.171557688686532, -1.3594557340638311, -0.00026598284613085825, 1.1944792155796784, 0.7893903068828301, 0.7530646756939564, -1.3359886391805886, -1.795682540378194, 0.33329391566209904, -0.10747519992314407, 0.6890020041478994, -1.5097196133512505, 1.0867819653310176, -1.9382189871549775, -0.7863762314798177, 0.5018937752634579, -1.3948061177570164, -0.056006059739896155, 1.5923071008962184, 1.245549102910391, 1.5923071008962184, -0.2397564962833748, 0.48409340747664986, 1.5923071008962184, -0.8425465050460814, 0.5303434716190861, -0.26839478617123846, 1.3157862301642507, 0.36199667902442934, 0.08475211939999885, -0.8048871865974336, 0.38726666084421607, 0.259235442129247, 0.622350739841189, -0.5138824532615163, -0.29788950445781937, 0.6930065999010941, -0.1949598435397736, -1.9382189871549775, -1.3283691760361898, 1.0283976140395623, 0.4514639681751704, 1.5923071008962184, 0.5006737785288355, -0.5185173030858983, -0.09897935435686699, 0.8691158953873002, -0.96252103909366, -0.30740916811183394, -1.9382189871549775, -0.8570944963465598, 1.5923071008962184, 0.6892000790734413, -0.8355274295839671, 0.047306994245509756, 0.13597388141252992, -1.7420475806068054, 0.37580158767341076, -1.7038850372086094, 1.5923071008962184, 1.5923071008962184, -0.7275372042822457, -1.092746941774794, 0.2306345606476768, -0.7736522016673636, -0.9109901836594663, -0.4497733228882733, 0.043417899101640865, 1.1355204642430383, 1.192258845657115, 0.6886923935593182, -1.3443391608458817, 1.5475500976155272, 0.8763065840681983, -0.941581295789783, -1.7554294467255096, 1.2693932555663914, 1.5923071008962184, 0.21758419851663835, 0.8589887330060111, -0.8925385303472282, 1.4847336259274022, 1.3606883849569604, 0.32611477704213715, 0.2936616916560946, 0.8133842655530124, 0.19962661198996465, -0.14103812549253, -0.00905437249304736, 0.03676040950230606, 0.8831021572318202, 1.5923071008962184, -0.13090441233042055, -1.1645066945986087, -0.9158930121363794, -0.6065235095286722, 0.5627782837743924, 1.5923071008962184, 0.061606142069028064, 1.2905277984054002, -0.03079606928137826, 1.3194388076424552, 0.7516622914299806, 1.2959794271655822, 0.44888761503132996, -0.16844642008556102, 1.0045341538190178, -0.2521310936553722, 1.0382806736405377, -1.3707828529620756, 1.4761390014818025, -1.2128574907190302, 1.2272410496094528, 0.5138670511152972, 1.5923071008962184, 0.3942073855198495, 0.44110683890905145, -1.9382189871549775, -1.7987954649628062, -1.1581068403136565, -0.019228769451874586, -0.7269068640165757, 1.5923071008962184, 0.75390834730895, -1.3684774090832403, 1.5378449434307075, 0.4386882216719805, 0.3759841475917369, -1.2983899154545966, -0.21906482070609115, 1.5923071008962184, -0.6433270891344933, 0.10831855342671326, -1.9382189871549775, 1.5923071008962184, 0.36600868750329374, 0.7209641257498222, -1.2150888935356188, 0.24729009329040894, 1.1134426089648783, 0.4220359644196585, 0.1018965471592209, 0.7530370934588935, 1.5923071008962184, 1.4296487995053464, -0.3062707113596127, 0.035705389011150133, -0.4917078015771877, 1.0610808386994073, 0.1422831452941956, -0.7243328381238133, 1.5923071008962184, 1.0937168287817072, 0.5091556605886085, 0.3373250593165419, -0.26997404151756216, -1.501787048741645, 1.5923071008962184, 0.17818297572928574, -0.9063143914549108, 1.2004638710324511, -0.8222824403067626, 0.45677027303436846, 1.3217233062615399, 1.5923071008962184, 1.5923071008962184, 0.13275779280419578, -0.9345458433756038, 0.23589087270581627, -1.5379719243372099, 1.2289370122878829, -0.0386508002714156, -0.3039655260642309, -1.9382189871549775, 0.3680018487645336, 0.08930439490815782, 0.554267095589858, 0.4178848380426921, -0.3072081625738201, 1.5923071008962184, 0.8711926652985639, 1.5923071008962184, -1.0745636118930326, 0.9052010439642156, 1.5923071008962184, 1.5923071008962184, -1.4056119755098142, -0.9499991353475318, 1.5439478577163124, 1.509203205763454, -0.2703046835603787, 0.2773400764465892, 0.740507001236729, -1.204032640805138, -0.08577953098957791, 1.5923071008962184, -1.524462447284097, -0.8212897384279536, -0.06819051207893222, 1.5923071008962184, -0.13355868528832077, -0.77973606697188, 1.0042745360314882, 1.5923071008962184, -1.9382189871549775, 1.5923071008962184, 1.2146235561799292, 0.3484310462646185, 0.4745997745569653, -0.026813711705199403, 0.2964407742276474, -0.6561604135533842, 1.5923071008962184, -0.5082479198050768, 0.8139378065329345, 1.5923071008962184, 1.377045684683075, 0.47586838498089307, 1.5923071008962184, -0.25460401341773387, -0.7559687136016273, -1.6516573209152685, -0.6943839610980337, -0.17046992180537007, -0.46876644995258626, 1.5923071008962184, -0.5332269952394258, -1.5229513286778311, -0.11225244303603835, 1.5923071008962184, -1.6000157055683926, 1.5923071008962184, 1.5923071008962184, 0.36893378353171424, -0.2550689464675093, 1.5923071008962184, 1.0956986123709764, 1.385468609715408, 1.5923071008962184, 1.0348177240283905, 1.2775045013425137, 1.5923071008962184, 1.5923071008962184, -0.3996991542433316, 1.5923071008962184, 1.271230921977457, 1.5923071008962184, 0.5891084577544093, -1.1977194981716615, 1.5027462045352291, -0.4904071268049993, 1.5923071008962184, 0.921808652473519, 1.1890327584885705, -0.9071160001614264, 1.5923071008962184, -0.3412867035499096, 1.5923071008962184, -0.12075656327284136, -0.9426313170008375, -1.4800006601130637, -0.018910022247925415, 1.5923071008962184, 0.8142536231244046, 0.06775577376526722, 0.23048527180039885, -0.7137382430526977, 0.5375946688281569, 1.5923071008962184, 0.10549706316874422, 0.4610837898202677, 1.293278781574986, 1.5923071008962184, 0.7359395554992784, 1.1659333261792684, -1.004451897614226, -0.8424996152464744, -0.5224120008712627, 1.047638636441503, 1.0602009654009008, -1.4643538184260303, -1.9382189871549775, -1.9382189871549775, 0.34215212284151497, 1.5923071008962184, 0.4811514173292462, 0.4804077313163698, 0.7257067186799152, 1.5923071008962184, 0.6322741384609439, 1.5923071008962184, -1.9382189871549775, -1.7574884821215764, -0.9678349290675006, -0.30333854738346083, -0.4013839116387638, 1.5923071008962184, 1.4886437525255065, 0.8734001060484452, 1.23610977251599, 0.0465307267174618, -0.47383089308807297, -0.7282726156246103, 0.38107979313063495, -0.7190780775663925, 1.5923071008962184, -1.2602001130506548, -0.85009921056218, 1.5923071008962184, 0.6646344785815803, -1.9382189871549775, -0.07876261038957616, -1.3497353234552418, 1.5923071008962184, 1.2562658355661422, 0.03230277553820314, -1.9382189871549775, -0.04868659649905175, -1.5298095652317365, -0.9821898447225313, 1.5923071008962184, 0.15373649601509215, 1.5923071008962184, 0.10232889869383187, 1.5923071008962184, -1.7410813188861372, 1.0565994150575626, -0.4369505141964968, 0.3689739501615281, -0.32529745427291207, -0.20940983171129568, 1.5923071008962184, 1.4825694548087793, 1.5923071008962184, -0.9814826189766235, 0.6730968806878437, 1.2007920996296997, -1.3328445229668715, -0.2398392429885635, 1.5923071008962184, -1.2413957088103116, 0.35140079103605065, 0.41436758590526845, -0.05942556733181918, -0.4778248007251809, 0.28685370648669434, 0.5352110465518114, 1.5923071008962184, 0.19089873087121384, 1.5923071008962184, 0.8110590831372099, -0.5698040557397928, 1.5923071008962184, 1.5923071008962184, 1.5923071008962184, 0.574484701501998, -0.9147082689459451, -1.2823050764942132, 0.009928928400020867, -0.703597030970436, -1.09387436563299, 0.4085666970935952, 1.5923071008962184, -0.3680819829686677, 1.5923071008962184, 1.4777480801197844, -0.6827475332919, 0.2377804281965976, 0.6407301621753525, 0.8687557748307567, 0.35746043569039715, 0.28071924501973977, -0.39347729156901795, -1.263134518083409, -0.5684316671564479, 0.5555453597960578, 1.5923071008962184, 1.5923071008962184, -0.5489611950365741, -0.4878033638150615, 1.5923071008962184, -1.3964358830712955, 1.0908227627677323, 0.3900298836306077, -0.6889120766339755, 0.3687215727107026, -1.4664509302356565, 0.8630172908259204, 1.3946314282033034, 0.42513431136207147, 1.5923071008962184, -0.2922989301885007, 0.011968117516018423, -0.4717786024104206, 1.5923071008962184, 0.12523663446944686, -0.5251678971264745, -0.7623858067835011, -0.4146207986344222, 1.5923071008962184, -1.3390872447064521, -0.2961266548593547, 1.5923071008962184, -1.8868360683920775, -0.014557028388095904, 0.5593627411287632, 0.8296039988817506, -0.38941063578693164, -0.7056720769920083, 1.2963121378760285, 0.9755976310145295, 0.19525551728837157, 1.5923071008962184, 1.5923071008962184, 1.1587295359367156, 0.256357408289399, 0.7287121479679564, 0.12503356026379625, -0.7110500094678873, -0.6714519184777659, -0.2698597476310238, -0.48647665830853604, 0.9301655525306738, 0.7661186579933503, 0.5324885075621375, 0.6604468057431555, 1.0262227548048526, -0.4640997081689092, 1.3727776785850296, -0.40210760053123373, -1.7325746774606636, -1.3473393753676066, 0.5058961299600504, -0.4618750285221207, 1.2925599195736592, 1.5923071008962184, 0.4465431250509834, 0.454174095159073, 0.23175767478164072, 0.8086870109218005, -0.3173779050304769, -0.6030897798467966, -0.1311264493226769, 0.4928050840322941, 1.4999235075544795, 1.2591902420386862, 0.026810118203364895, -0.0063926868094775135, -1.6335212040624292, 0.17693643109340826, 0.5384045522051842, 0.22247694223885145, -0.525259435669086, 0.5335586982825781, 0.4024815388718156, -1.1276644136692167, 1.5923071008962184, -0.3141192363467609, -0.5448717839105609, -1.5605259610453854, -0.1420255695077818, -0.5701444377593643, 1.5923071008962184, 0.4798878061854342, 0.21887987400871806, 0.8673154649935694, 0.15209069852668627, 1.3476950835747048, -0.8274865185072552, 1.3165137116140349, 0.5299523210481039, -1.9382189871549775, -1.9382189871549775, -0.22423976517079508, 1.179745819942892, 0.38428933095814166, -0.3908221566662755, -0.6702088216212785, -0.5915852296020611, -0.8235795811050782, -1.5456096607123382, -1.9382189871549775, 0.6560753662636242, -0.4644884452943305, 0.7570258294269342, 1.5923071008962184, -1.2806284213803272, -0.8554808494008901, 0.6719949703970808, -0.5206624252234325, 1.5923071008962184, 1.3146095030608798, 0.18022906040404196, -0.33998396011009147, -0.0012175699558009071, -0.40755147178780093, -0.1861840382876081, -0.3436136098553964, 0.1587314663960177, 0.7190645716988305, -0.4750689906644589, -1.9382189871549775, -0.11205057555317527, -0.09310278678774346, -1.760474086678166, 0.3557198242689555, 1.5923071008962184, 1.4951048910889908, 1.2868200564570698, 1.2262539503721392, -0.749612990892776, -0.17438728874017845, -0.6924537218105344, -0.38935719520649725, -0.010850320773580434, 1.5923071008962184, -1.9382189871549775, 1.5923071008962184, 1.5923071008962184, -0.2801015486767825, 0.039516736729939016, -0.3607618301719467, -0.447410387288225, -0.6513276611924258, 1.210476567138222, 0.5980256219612723, -0.32572394458257214, -0.8681822962583899, -1.023724208614061, 1.0446345862652149, -1.9382189871549775, 0.5842201961453869, -0.12243166688600157, -0.6913283666199681, -0.6794299937752271, 0.15052833729934567, -0.394328893076585, 0.4924222081318237, -0.9988769245466202, 1.0403124500308585, -0.3262330092084553, 1.550977879877969, 1.5923071008962184, -1.0611265813042026, -0.2896824104148535, 1.5923071008962184, -0.9684450998237845, -0.5952260846303637, 0.22148553327731288, 1.0976052343696994, -0.19762325311304196, -1.0137609881424376, 0.129199512092109, -0.4549553353007157, 1.5923071008962184, 0.5769484846489916, -0.06780798095640715, 1.5275398756332699, 1.5923071008962184, 0.1254714282454198, -0.4367269257035217, -0.23208639387928623, -0.3549521495228507, -1.433607297640024, 1.5923071008962184, 0.35671261234225426, 0.21877333762578055, -0.08302820304205365, 1.5923071008962184, -1.5798276428158433, 0.37690729052149474, 1.063529106839178, -0.6223578673168892, -1.2331526285700367, 0.270897728280745, -0.7819340263284549, -0.8733974073529077, -0.676579542170449, 0.015239542983451034, -1.2600073821831528, 0.1675655391197536, -0.32093187601833156, 1.2113319612031104, -0.049307369176939675, 0.05306909553912224, 0.1671718027142307, -0.7640896131600217, -0.9242313803793423, 0.3176658212754599, -0.29407539851552417, 1.399064582933788, 1.5923071008962184, 0.3852493651272962, -1.20652090318575, 1.5923071008962184, 0.04110478391368548, 0.519985480408125, -0.5468052123939874, 1.5923071008962184, -1.079927236084469, 0.49610426412375525, 1.5923071008962184, -0.5591363677457609, -0.5569379774167649, -1.9382189871549775, -0.2356295043620884, 0.24155281600835307, 1.5294171915072385, -1.9382189871549775, 1.5923071008962184, 1.0877266568819217, -0.6147192258996745, 1.5923071008962184, 0.7055999588749376, -0.9329756384501582, 0.858958909714353, -0.4176033001895709, -0.7200426800432347, -0.4901221678390022, -0.5983333957991651, -0.24368196549972937, 1.5923071008962184, -0.5071149794998682, 1.5923071008962184, 1.5923071008962184, -1.3219681581256935, -0.33938197782984364, -0.014362228852964173, 0.7230907160731718, 1.0418784314265546, -1.0790678770732869, -0.9838540016361563, -0.45948882041124156, -0.266530916636863, 0.16826405922272156, 1.4791106425318918, 0.5715501240802712, -0.4357163815664047, -1.510530574159342, -0.644690944463864, 0.0780213644887747, -0.17097967598712277, 1.0738469314203323, 0.8389416197843642, 0.3855944878435278, -0.7585086064784995, 1.3946066041917469, -0.5793569042703729, 0.36616538907624835, -0.5979590531526692, -0.6825762648510617, 1.052154193099238, -0.7505307897644939, -0.008838369114707492, -1.2606867240133037, 1.408843519597401, 0.043577703676040073, 0.19765672323956968, -1.9382189871549775, -1.2542289901319603, -1.0521945916459863, 0.4878337309401447, -1.8172783206784555, -0.0942552070464688, 1.0018335082284215, -0.055199451753279005, -1.6321090367244517, -1.2771910715300974, 0.07123061821628872, -0.47181480409394766, 0.42092198690105564, -1.4452513105607965, 1.2186391848271492, -1.181269022207727, 0.7344866612673401, 1.1628910056518305, 0.18895521763310133, -0.18016576698585599, 0.07707615577096646, -0.25626704980305404, -0.6000331510349163, -0.40808570520317194, -0.4450277993457014, 0.4230944326901973, -0.032314471321590904, -0.2365055851032667, -0.8604472894074207, -0.378646151386731, -0.42530322588531067, -0.07758967584352634, -0.8622343596560411, -0.6862478913103548, -1.9382189871549775, -0.250809559817921, 0.13740522702332175, 1.1115959783274172, -1.6741450956134298, -0.5041590258459675, 0.4056200524440353, 0.9657376715354192, -0.990137665755906, -1.1056344825244784, -0.4102964213434634, -1.3345523373869301, -0.29682655407407577, -1.0959989734831925, -0.39665855760558516, 0.18152128811673882, -1.5819274482031127, 0.16792083278516112, -0.19657633490343224, -0.7136629952676687, -1.2806271715603001, 1.3773590878289772, -0.856355206252384, -0.548835782061521, -1.5306131564113972, 0.6112292378858825, -1.0882450900401075, 0.07713494040944074, -1.8300676643615936, -0.19769944903739614, -0.5751227726047692, 1.5923071008962184, -0.5480220199326824, -1.3299277878034548, 0.4706558597209089, -0.6121676967673906, 0.8094908606849184, 0.8736064556445059, 0.2701549042127038, -0.19825557585185893, 0.01267525706744352, 0.055926442702666, -1.9382189871549775, -1.1855777982969729, 1.5923071008962184, 0.74992892034525, -1.3191341696674654, -1.6574239043220753, -0.3877917309777121, -1.4028742662908529, 1.5923071008962184, -1.3959213881928876, 0.055998156513829535, -0.948027695096411, -0.5710243972523605, 0.5273545916720827, -1.6757704434603746, 1.5923071008962184, 1.4699964377332948, -0.21884399043661526, 1.5923071008962184, 1.510865380203932, -1.5566647067200328, 1.5923071008962184, 1.5923071008962184, 1.531725479804065, -1.8454535953438285, -1.1236751605342792, -0.09057142716484583, -0.29043695693278937, 1.31740185958306, -1.5503633727309447, -0.8350387930509328, 1.4712841833327939, 1.5923071008962184, -1.3843804638756627, -1.9339867739900447, 0.6716522611264243, 0.6842023504690165, -1.1711367743518533, -0.39001468673480916, -0.5911027128774259, -1.9382189871549775, 0.8035274090753538, -1.2478373674202827, 1.5923071008962184, -0.8316214403211222, 0.6423135548569285, 1.531588258184627, -1.0854565260752485, 1.5923071008962184, 0.6033374432674828, -0.4515144514766189, -1.005997192333625, -1.0963445271718382, -0.026525994515703057, -1.1287355525289893, 0.085859201359836, -0.42163668490060907, 0.28208973732442055, -0.612908624556761, -0.7812079239904239, -0.24186257231939282, 0.49214776489294787, 1.5923071008962184, -0.23723737627728278, -1.9382189871549775, 1.4691034628731334, 0.3268786325644068, 0.8555194050020093, -0.5296369087625408, -0.7814983132089438, 0.13883898607968864, -0.8961964518834798, -1.2537572046206575, -0.3630433981785524, 0.19308203716541505, -0.41628366263077676, -1.341265896498483, 0.13935632537608364, -1.9382189871549775, -1.2758125631383448, -0.42068716645856874, -0.6383862488898787, -0.9778486595070864, -0.6980199030407177, 0.3201690814963837, 1.5923071008962184, 1.5923071008962184, -1.1071999467532707, -0.6269557397073918, -0.31658784638489046, 1.5742814207267366, 0.1418175226885365, -0.9290900772801621, 0.10568582908995947, -1.0250160053543367, 1.4651247254653101, 0.8241063422668108, 1.5923071008962184, -0.9605756295768836, -0.013786277307060526, -1.4335032608971456, 1.5923071008962184, -0.6290188908900968, 0.25325923373595877, -0.5916275510939805, 0.49455138428971396, -1.4875570288947566, -0.3150541017264276, -0.5283108066174089, -0.3728802575357974, -0.2394687790938714, -0.4194144186993815, -0.135006752629123, 1.5113594469894962, -1.5310381814148195, 1.5498439052389457, -1.1403430189882997, -0.7790214285002954, -0.5206344982104314, 1.185162281353369, -1.287589789635022, -0.39297339861220904, -0.4204951251469433, -0.31977342214568977, -1.3369407003599243, -1.1991607561481807, -0.6492358072463533, 0.613080523025514, -0.9534844093311774, -1.0788685954249575, 0.8922139485848493, 1.5923071008962184, -0.9401948575054513, -0.24962748865651013, -0.8753165275518918, -1.9255035458148377, 0.32378873268148545, -0.17747098262021066, 1.5923071008962184, 0.056483948628881925, -1.9382189871549775, 0.1877772838069428, -0.3847523410627461, -0.26302745561697083, -0.13970073186991763, 0.13196014904396702, -1.2775136974858492, -1.4019665521738294, -0.6818854160572189, 1.5923071008962184, 1.5923071008962184, 0.15794675180847823, -0.7154776477513592, -0.9192239979926456, -1.470687561541318, -0.24508486693061612, -0.07891620896108621, 1.5923071008962184, 1.0039625119973392, 1.5923071008962184, 0.926008737317722, -0.5351769730638899, -1.374177536542442, 1.5923071008962184, 1.0111569932355584, -0.13731348942522364, 0.372927346390891, -0.5109433075321089, -0.6753918683675356, -0.9688486624005449, 0.04914500543452082, 1.5923071008962184, 0.9673564039556732, 0.690097708435773, -1.496705409806486, 0.372580499784975, -0.15904829065478882, 0.500262975615364, 1.009199344101969, 0.9130914594708621, 1.5923071008962184, -0.8189343017480648, 1.1503014392353081, 0.5816267764935977, 0.2887515366479875, 0.5323931764621979, 0.5556734448001347, 1.5923071008962184, -0.24087081857991596, 0.9520761905087649, 1.5923071008962184, -0.524309227671169, -0.04434773853468491, -0.31426835280507326, 1.3155007540313497, -1.4758634541453557, -0.9703061249401638, 0.4903100984818822, 0.9203761001399466, -0.36087336583497875, 0.6592521501869937, -1.5920835934798319, 1.331186771111621, 0.7572116647356634, -1.2061271667802271, 0.6077962839543734, 1.1136649907350729, 1.5923071008962184, -0.26480668216750053, 0.43771422399631477, 1.0743013487429935, 0.3149201821639138, 0.5926077814390421, -0.21537707587818142, -0.40741304344558255, 1.5923071008962184, 1.0283110747770525, -0.7187151125918672, 0.5641198147322712, -0.7763328501375393, -0.17918987303153322, -0.4186560796241245, -1.7133774203082643, -0.19430562740187898, -1.6394795701974079, -1.9382189871549775, 0.1220460594285459, 0.20802057567548168, -0.10417601983169, 0.10994383662779464, 1.5923071008962184, -0.6365878871637777, -0.5087597426544591, -1.0869626023041654, 1.193562106263837, -0.35908793328155986, -0.3267536238952676, -1.5082432742195087, 0.16902929385675142, -0.06282214719084969, -0.5688009243283525, 0.1922099213705235, -0.024673847431229325, 0.5196962117178958, 0.20067835709071039, -0.7782966190795348, -0.6028130093568356, 0.9359690271768806, -0.03456363020199772, -1.0480831147319227, -0.7314650869441753, 0.406877112807027, -0.3310405927799188, -0.2580352434595586, 1.5923071008962184, 0.5418616405923875, -0.554136656668189, 0.3556706934127532, -0.8223843221875299, -1.615051622297404, -0.7024784851441455, 1.5803464094391302, 0.8318871183890822, -0.43118737856907646, 0.10197429458430092, -0.6733495762500934, 1.5923071008962184, -1.803958859366581, 0.03668524791175966, 1.5923071008962184, 1.5923071008962184, -0.011990156637554776, -0.13046068312384615, 1.2913576789028551, 0.5200197858129809, -0.32293400150595986, 1.1342592665447873, -0.686470962636426, 1.5923071008962184, -0.3070011234218757, -0.1935481502714641, -0.4585460251389943, -0.3775073498565645, -1.1316462540784846, -0.18886589348057123, -0.6416952551525845, -0.14010894894884857, 0.9853176106506953, -0.21312274532869324, 0.2813119182956468, -1.1526838281223521, -0.6401233263374478, 0.38381319262536834, -0.10983692880040488, -0.02477831514653006, 0.9681514618813613, 1.1131126564779383, 1.0111525111223607, 0.09736254488178404, -1.9382189871549775, 1.5923071008962184, -0.6578532732303696, -0.9471229115918652, -0.48454279885268847, 0.19894257256040473, -0.2583527839407132, -1.2030810536954681, 1.5923071008962184, -0.45630307226147665, 0.7099434713414678, 0.5340077715471924, 0.07472201200834797, -0.867884149536255, -0.6312238319999202, 1.095618623889294, -0.6032318283573705, 1.0793982010046792, -0.72732982035237, 0.701894285594237, 1.12979646091161, 1.5923071008962184, 0.13362680559764273, -0.6964629720658998, 0.5001078255431352, -0.05689972415593411, 0.36586801810447295, 0.7313397006356359, 1.5923071008962184, -0.13084804113751428, -0.18698323354855562, -1.9382189871549775, -1.2232319881737912, -1.0494886019973502, -0.9242304322400174, -1.9382189871549775, 1.0569110943137734, 1.5923071008962184, 0.6220606092061177, -1.096433048907495, 1.5923071008962184, 1.5923071008962184, 0.8771902499240188, 0.29258150237544384, -0.0267109678795901, 1.5923071008962184, 0.16560651087441114, 0.20084988411500426, -0.1851888367687413, 1.2642695106255193, 0.5726594470967107, 0.17977809086076355, -0.12360563576587331, 0.2764119342367226, -0.5167607456848196, 0.4419972279346792, -0.5170159675536343, -1.1619897294546362, 0.941306017272579, 0.6259890090349512, 1.1023679968091857, 1.5923071008962184, 0.14627136409531827, -0.41556911035368205, 1.5923071008962184, -0.7369879985430927, 0.6438652279681822, 0.12352998367492993, 1.5923071008962184, 1.5923071008962184, 0.12317624151024822, -0.40320037420662846, -0.21354061618989617, 0.2057957236397205, -0.26956927221801413, 1.5923071008962184, 0.72340549833082, 1.3583852683292084, 0.05668167877648556, -1.228615652582886, 1.5923071008962184, -0.5556740214950074, -0.31068990258360024, 0.0998682185482829, -1.886189502014685, 1.5923071008962184, 0.17396599676609956, 0.8475222807234597, 0.4478306982615099, -1.6309891333350341, -1.4184615475890474, -0.8008918136540899, -1.109077521210695, 1.1710408665570409, -1.6408267037967765, 1.5923071008962184, 1.089708095693253, 0.40254239217792664, 1.5923071008962184, -0.6893764925168471, -0.08487155828909754, -0.25752807511233244, 1.5426463209992818, -0.09091379165757113, -0.45131051532611904, 0.549773259942235, -0.5277390786012406, 1.5923071008962184, 0.24730026423958484, -0.034653100076986534, -0.49833193391099156, -0.6202672200936111, 1.5923071008962184, 1.5923071008962184, 1.5923071008962184, -1.1902770354013317, 1.2630931283000866, 0.15163438492536796, -0.942835856512724, 1.5923071008962184, -0.3163682228382092, 1.5923071008962184, 1.5923071008962184, -1.9382189871549775, 0.13665361111785773, -0.4154973965425185, -0.17020461518185528, -0.4576802877359646, 0.09243049647460631, 0.7198622154590594, 1.5923071008962184, -0.055882284460058454, -1.0968251476178092, 0.20236656226552546, 0.7716073503819019, 0.09281509626476109, 0.4626178792566759, 0.050729949616815644, -0.7806396437536383, 1.5923071008962184, 0.3043710115861765, -1.3996931726432542, 1.5923071008962184, 0.23163424427973422, 1.5923071008962184, -1.1875265693986496, -0.6863738214523121, 1.5923071008962184, 1.5923071008962184, 0.9435041490181195, -0.3972300270382911, 1.1719176368541029, 1.5923071008962184, -1.2913883805700905, -1.053277280566695, 1.5923071008962184, 0.9548816485926002, 1.5923071008962184, -1.76543741290894, -0.8793082803268871, 0.1418514833154612, -0.3641018664490912, -0.16503018788405524, -0.06351808145927697, -1.0968261819516312, -0.8749260665367788, -1.0368368893574536, 1.4892122913457406, 1.3182696656537267, 1.5923071008962184, -0.29511231816491656, -0.7897658295855926, 1.5923071008962184, 0.6276534245320315, 1.5512830083533524, -0.40678744387655863, -0.44320737183155, 1.5923071008962184, -1.8598016854731148, -0.4965608958365048, 0.9574761025782041, -0.5189926656683123, -0.472085627164468, -0.5116318290748734, 0.31378379407932233, -0.020413943614730038, 0.43990339151546687, 0.4665774814889208, 0.4325927201120452, -0.03183333370871597, 1.5923071008962184, 0.5451478915111594, 1.5923071008962184, 1.2849930781620909, -0.9397678500288873, -0.955727017430764, -0.9602901534439826, -0.6941154652785915, 0.04145163051960145, 0.5306099849653814, -0.9913529217938822, 1.123471854411687, -1.0387073958671391, -1.0538516806118798, 1.5923071008962184, 0.4748476698945931, 1.5923071008962184, 1.5923071008962184, -0.19929232311227862, -1.0590839444088223, 0.33952939706497853, 1.2308894897523979, 0.5856686082641275, 0.18158558920222567, -0.7580678078844041, 1.5923071008962184, 0.575341647067612, -0.48640304821871544, -0.6974909274888965, -0.5008750159837909, 0.20213176848955253, 0.2028121877507569, 1.5923071008962184, 0.6414238553871844, 1.5923071008962184, -0.6534355473126249, -0.7323581479988195, 0.7329555024434179, -0.6504418404744787, -0.8558874287846122, 1.5707171064007335, 1.5923071008962184, 0.9852103847118884, 1.0485567800911593, 1.5923071008962184, 1.5923071008962184, -1.9382189871549775, 1.5923071008962184, -0.3145676200555057, -1.897640635921185, -0.09601736708904982, 1.4322877298449894, -0.9472057444915366, -0.2519118148866221, -1.3437040367863164, -0.2567724942605817, 0.6882793495892513, 0.2770478771438951, 1.382554891358951, -0.8413334038702248, 1.5923071008962184, -0.6765449781821303, 1.5923071008962184, -1.5560857814644082, -1.3939292612654695, -0.13240367919506182, 1.5923071008962184, -1.6252020140922783, 1.262438394995281, -1.2949116232241957, 0.04395368401773769, -0.7056182916336357, 1.5923071008962184, -1.597861942433782, -1.0989152776741904, -0.752669188732228, -0.1920757760860162, -1.7259667927871964, -1.5962976849277775, -0.10185669864083134, -1.1436224605427958, -0.12533555907122104, 0.07701737113248514, -1.1064831534195736, -0.4259234813962947, 1.5923071008962184, 0.6260483108403364, 1.5425197874959309, -0.7403863884862977, -0.2125016278728741, 1.5923071008962184, -0.181251645102485, 1.195123260768397, 1.5923071008962184, -1.090126370860363, -1.1818773828798363, 0.9337610692600954, -0.21830268907350586, 0.002360018320829894, 0.6352338846721587, -0.2748716121309184, 0.7030229161752135, -0.3548390623590928, -1.456056047785295, -1.9382189871549775, -1.7019846427613974, -0.8341528861385027, 0.3376148451736679, 0.7606953010241077, 0.5289590158078942, 1.2212101939129496, 0.6797102387110849, 1.5923071008962184, 0.16880587775274195, -0.3272156263325712, -0.26943463643310983, 0.6729998256982196, 0.7505719312001468, 0.4576235984316269, -1.2873810265933896, -1.7093322054042155, 1.5923071008962184, 1.5923071008962184, 1.5923071008962184, -1.9382189871549775, -0.5535276926346927, 1.4708114927794034, 1.5923071008962184, -0.12294814423755437, -0.7063046583142808, -0.32500215196877347, 0.43633407790936196, -1.2826748508330246, 1.4728591289548856, 1.5923071008962184, 1.0169844299484725, -0.7428364667102497, 1.5923071008962184, -0.06901384179555978, 0.2180246523327955, 1.5923071008962184, -0.837826322681977, -0.7536342221814986, -0.00040941046845793805, -1.0574815889406404, -0.22300787359730537, 1.5923071008962184, 0.2911891166716713, 0.7137343047729251, -1.5904343266634178, 0.743014054014981, 1.5923071008962184, -0.871118252791863, -0.5408231427757485, 0.3324731717800121, 1.2350857820392798, 0.5848935474588599, 0.1730666435140834, -0.44205305529416766, 1.5923071008962184, 0.30625125807261705, -0.4194130395876284, -0.004011477978699999, 1.1171958616010624, -1.3837080176042773, 1.5923071008962184, -1.6086563147715116, 1.5923071008962184, 0.900443797971742, 1.4205914830665667, 1.5923071008962184, -0.5743191814251067, 0.9471863773990167, 1.5923071008962184, -0.22345039608109224, -0.44157174529232, -0.26155732248811825, 1.5923071008962184, -0.5734874046489877, 0.07334169353241543, -0.20615271452829842, -0.7788476604193991, 1.1899881381555617, -1.670389946698585, 0.154484836530146, -1.2048599354680525, 0.8968251811204552, 1.5923071008962184, -1.5351622427236304, -0.09101515637142729, -1.2707405348882157, -0.2113324858841454, -1.0487659474387023, 0.6342986745145608, 0.3036247397387524, -1.0670353856105523, -0.12992782882022122, 0.18273594079332128, -1.9382189871549775, -1.2553421919002015, -1.9382189871549775, -1.0545439947119588, -0.615837771725958, 0.5419469731321098, -0.08224728101183529, 0.605191831408559, -0.48705847107939054, 1.5923071008962184, 1.5923071008962184, -0.5836755065308635, 0.5702061796768313, -0.9368859374372354, 0.4746520084146192, -1.9382189871549775, -1.8121482619915883, 1.2924895848742488, 0.5503916191745549, 0.5505119466750169, -1.012383600278984, 0.9590917319970135, -0.947295817727912, -0.7311892645935464, -0.4610934169360258, -0.16590419995761088, -0.7130500662878784, -1.2320155509295718, 0.594791260122216, -0.43440794929060833, -1.1367285394722793, -0.3861236953122832, 1.2652179947337447, 0.017642472824333517, 1.5923071008962184, -0.9589756013597799, 1.5923071008962184, 0.6501448409471624, 1.5923071008962184, -0.13208872454843382, -0.7167920274465891, -1.3127150940124521, -1.9382189871549775, -0.011019779130251659, -0.23767593381478289, -0.37557038739927234, 0.3335131944308491, -1.0100575559183322, 1.5923071008962184, -0.6847243176010679, 1.36608622835877, -0.3709763937605807, -1.722332596282827, -1.3173714062634927, 1.0975280041115234, -1.3105670843596868, 1.5923071008962184, -0.1861238745373736, 0.597141783716479, -0.18122526959020258, -1.5655018824452174, 0.4137400900575875, -1.1995778512590243, 1.5923071008962184, -0.7283164886172626, -1.331611079892653, 0.9145564209306404, 1.5923071008962184, -0.48276288274628926, 1.2449298817332288, 1.5923071008962184, -0.2219118245314863, -0.4810615760098122, -0.687362213606896, -0.2787460542124136, 0.21344238114399855, -0.6168902063825803, -1.2911714721496665, -0.44722558631330356, 0.6828066893748337, -1.9170792066542421, -1.1295092342225035, -0.524939567936846, 1.5192765827863632, -0.23657402352402004, -0.725498101360738, 0.9858427074507053, -1.2880503698633303, -0.9595566383802748, -0.40025476389088344, -0.8193480352740083, -0.4633922238395458, 1.0793850994430243, -0.4294788314959025, -0.7517621641710869, 0.44036935889906426, -1.7041107374664606, -0.8775215548561978, 1.487314288795475, 0.5049807445339074, -0.3485546224889837, 0.6350444291950669, 0.636683848291625, 1.3579315405624237, -0.6317434123529175, -0.38991625263343194, -1.4771470624095953, -1.9382189871549775, -0.742128551408458, 0.42419479148023437, -0.13766257708773494, 1.5923071008962184, -1.1666109605504524, -0.9502180693383435, -0.6294792556321918, -1.4424855450371061, -0.381836209260721, 0.6575961817494048, 0.9639351724740588, -1.259423242161212, 0.46126083329158124, 0.42143294780559587, -0.4066893545531126, -0.8860495509652255, 1.5152471630216118, -0.6270980468014213, 0.36737469769478387, -1.9382189871549775, -0.2412261122453164, 1.5554517184051715, 0.3991797729458138, -0.3909681701231362, 0.34793628992317777, -0.45548008732278733, 1.5923071008962184, -0.42683800487759543, -0.6240349534032033, 1.5923071008962184, 0.13008041972443038, -1.9382189871549775, 0.4740007228891894, -0.3084457429832951, -1.9382189871549775, 1.5923071008962184], [0.6640000162620529, -0.32869296297079886, 5.0, 1.151257816245078, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 2.488402452511743, 2.4212982904116624, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.39301958804303344, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 5.0, -0.32869296297079886, 0.5619178786868011, 3.6238877707927233, -0.28567904908318537, -0.32869296297079886, 0.5467471833009395, 3.0710486079076422, -0.29448805798086214, -0.32869296297079886, 0.49084166139254376, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.4590121545913337, -0.01426180803335049, -0.32869296297079886, -0.32869296297079886, -0.29676248262747124, -0.32869296297079886, 0.04002498103282674, 0.9625102095117334, -0.32869296297079886, -0.32869296297079886, 0.29775962972009923, 0.5333286122235104, -0.32869296297079886, 0.25098514559390256, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.268482625206007, 0.7297567372642696, -0.32869296297079886, -0.32869296297079886, 0.8536443216349014, -0.32869296297079886, 0.7134833945840964, 1.753296441034508, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 4.853032349802062, -0.32869296297079886, 2.263037882490588, 0.15508153702915542, -0.32869296297079886, 0.5313673484087655, 0.7730108104170578, -0.32869296297079886, 3.4476270758634233, 0.2087350114377447, -0.32869296297079886, 0.2810691178887026, -0.32869296297079886, -0.32869296297079886, -0.04147340701737759, 0.3787621004848973, 1.8908407311177868, -0.32869296297079886, -0.32869296297079886, 0.9929761822248605, -0.32869296297079886, 1.3197947082726313, 0.0057721265623798075, 0.04678497336395064, 1.2008074394190342, 0.13027901359050906, 0.16074411922442378, -0.32869296297079886, 0.1801790754994235, -0.32869296297079886, -0.2974855681637366, 1.3416564805337234, 2.3627261877730334, -0.32869296297079886, 0.14590287925654802, 0.2322046953924693, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.56593047300323, 0.9767570840202927, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.25486584532212914, 0.14883665911722482, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 2.4461969209103303, 1.3385191798400324, 0.47563295325395977, 1.2895605578580385, -0.32869296297079886, -0.32869296297079886, -0.21705431184324994, 0.46006333206352185, 1.704317425349413, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.21858617584839235, 1.5856441085374684, -0.1269704869351897, 2.1382816928469794, 2.4154232391259, -0.32869296297079886, 0.7233473570839425, -0.32869296297079886, 0.020283356181573224, -0.32869296297079886, 2.4940527568653525, -0.32869296297079886, -0.32869296297079886, 0.9411868587590906, 2.1618512643271033, -0.32869296297079886, 1.057196092028946, 0.2701473881146525, 0.6419609436433789, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 5.0, -0.07615315926783017, -0.32869296297079886, 0.12015024509884731, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.8633948299886662, -0.22735596725930393, 0.4105345187906864, -0.32869296297079886, -0.32869296297079886, 4.168069182413542, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.38196786575328623, -0.32869296297079886, -0.32869296297079886, -0.1716568708992823, 1.4760645797847, -0.32869296297079886, 1.4862249446429106, 1.0985098500007908, -0.32869296297079886, -0.32869296297079886, 1.9914797714163184, 0.6988441147066492, 1.5845604676195264, -0.32869296297079886, 0.5140545511673791, -0.32869296297079886, 4.7125483143531195, 1.1940908357317563, 1.8852560473190643, -0.32869296297079886, -0.32325641261069554, -0.32869296297079886, -0.13364649397368797, 0.36607562172906505, -0.32869296297079886, -0.32869296297079886, 0.1712793050850671, -0.32869296297079886, -0.32869296297079886, 1.4252329279687326, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.2324659637010998, 0.006861108688278993, 0.6459697629962015, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.7139552244089532, -0.32869296297079886, -0.32869296297079886, -0.1512779948508118, 0.04179899042061024, 3.1686598075924195, -0.32869296297079886, -0.32869296297079886, 1.0840902533128878, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.17899808376884194, -0.32869296297079886, 0.8384322839121381, -0.32869296297079886, 1.3406838257551088, 0.03650411917822954, -0.32869296297079886, -0.32869296297079886, 3.61367094173613, -0.32869296297079886, -0.32869296297079886, 2.1457444008559436, -0.32869296297079886, -0.32869296297079886, 2.00452813435273, 0.4529844279976494, -0.32869296297079886, -0.32869296297079886, 0.16676105935269145, 0.29985282830797944, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.4939940839477136, -0.32869296297079886, 1.9318419243747245, -0.29592461314491436, -0.32869296297079886, -0.1954026675587737, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.03591544175855631, 0.1361864589556877, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 5.0, -0.32869296297079886, -0.32869296297079886, 0.0512791836605261, 1.2819757650958044, -0.052222917518029446, -0.32869296297079886, 1.1343475518577975, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.1905571757879663, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 2.080641596313427, 4.003697877660618, -0.32869296297079886, 1.9151493315532166, -0.19609203888751783, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.03509453068378339, -0.32869296297079886, -0.32869296297079886, -0.09588989379231967, -0.13808354640850576, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.7246164835872446, 3.859574329237491, -0.32869296297079886, -0.32869296297079886, 1.2382759438609061, -0.32869296297079886, -0.32869296297079886, -0.3078484935647195, -0.32869296297079886, 1.5852711951092988, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.6423358686953202, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 3.335727798065855, -0.04932205198429881, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.42208491567773965, -0.32869296297079886, -0.11911998641875163, 0.774175332484046, 0.0343777981643909, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.7078140436691966, -0.32869296297079886, -0.32869296297079886, 1.1090538107030834, -0.32869296297079886, 0.030063489463045736, -0.02869402939460397, -0.26030287470763785, 0.6182740736872377, -0.32869296297079886, -0.11943600210892673, -0.32869296297079886, 4.5028999365926605, -0.32869296297079886, -0.32869296297079886, 0.1591974233232681, 0.5387671411499941, 0.041898218965810044, 0.8154966513866336, 5.0, -0.32869296297079886, 0.4549046269408398, -0.32869296297079886, -0.32869296297079886, -0.31853314112095216, -0.32869296297079886, -0.32869296297079886, -0.11733302286751755, 0.6818880685368892, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.7111697497769625, -0.15946556374073187, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.44171877992433145, 0.6442769469059733, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.3206297283627839, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.7723186037392885, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.19295210227302298, -0.32869296297079886, -0.32869296297079886, 0.372955166942155, -0.32869296297079886, -0.32869296297079886, 0.7601503608878177, -0.32869296297079886, -0.036065520670301256, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.6318075847852171, -0.32869296297079886, -0.32869296297079886, 0.3381680876266473, -0.32869296297079886, -0.32869296297079886, 1.2095315049015523, -0.32869296297079886, -0.32869296297079886, 0.1572585995185707, -0.32869296297079886, 0.9911492116387134, -0.32869296297079886, -0.32869296297079886, 0.38704693832099446, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.06044516957649183, -0.32869296297079886, -0.32869296297079886, 0.3574518599699698, 0.47676404074646983, 5.0, -0.32869296297079886, -0.32869296297079886, 0.6147139851690218, 0.40197672441815974, 0.6060425687363499, -0.32869296297079886, -0.32869296297079886, 0.6455635537262311, 1.027315848666167, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.3056885488806123, 1.328765579182496, -0.32869296297079886, -0.30756173746260573, 0.3089521656741296, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 2.370800151944398, 1.2403420895773247, 0.43603774628339764, -0.32869296297079886, -0.32869296297079886, 0.7116939511863177, -0.32869296297079886, -0.32869296297079886, 0.22574790332074435, -0.32869296297079886, 1.1529345393450956, -0.32869296297079886, 1.0357356733942298, 0.4051170772306764, 0.5981481246453632, -0.32869296297079886, -0.16324155498312778, 0.09318893720060688, -0.12306113890974713, -0.32869296297079886, -0.32869296297079886, 0.1624583348296393, -0.32869296297079886, -0.32869296297079886, -0.08461795072391051, -0.32869296297079886, -0.32869296297079886, 5.0, 0.06002589725210434, 1.059394449983853, 0.40185831608075506, -0.32869296297079886, -0.32869296297079886, 0.6157086290764798, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.9970819757169218, -0.32869296297079886, -0.32869296297079886, 4.505237859617775, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.512293756066811, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.6951682537718351, 0.2479459289008556, 0.36592801016374793, -0.32869296297079886, -0.32869296297079886, 0.581725297508779, 3.19181096132725, -0.32869296297079886, 0.7416365548861402, -0.32869296297079886, -0.0022183899054653115, -0.32869296297079886, -0.32869296297079886, 0.5950551490410745, 0.3544508641286574, 0.3189898908483677, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.6366703037475604, -0.32869296297079886, 0.4429094531003972, -0.12322872798014474, -0.32869296297079886, -0.060041301420397805, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.13865846711039018, -0.32869296297079886, -0.12515652253724613, 0.3469681092482748, 2.2796747047770802, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.23160800616086222, 1.0005258756205277, -0.32869296297079886, -0.32869296297079886, 0.8860848764994967, 0.9806975081647475, 1.9442457353069353, 0.04002213701300619, -0.32869296297079886, -0.32869296297079886, 5.0, -0.32869296297079886, -0.32869296297079886, 0.5983479690625096, 0.28496757539922307, -0.32869296297079886, -0.32869296297079886, 0.19930673890113673, -0.32869296297079886, -0.32869296297079886, 5.0, -0.32869296297079886, -0.32869296297079886, -0.2159745120862217, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.08433771072208622, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 2.9907254416819193, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.3111455584341585, -0.32869296297079886, -0.32869296297079886, 1.22389380499503, -0.32869296297079886, 1.2517679738893055, 0.44318712654774906, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.5191979263295653, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.18778394981624377, 0.0030143984652240326, 1.6705204811294554, 0.7826094466775445, 2.114526497048812, 0.6717394959559895, -0.09250809410199363, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.10816578835748389, 0.5369405173955321, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.057099643639000934, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.2482972308856916, 1.2173889073685322, -0.32869296297079886, 3.0222443953920037, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.6028116234875956, 4.05673399166915, 0.2544247447846042, 0.7362870923364688, 5.0, -0.32869296297079886, -0.09210509302511279, -0.32869296297079886, 2.0996543543777646, -0.07288040345940254, 0.860972875147938, -0.32869296297079886, 0.7398754129538855, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.5818333994433589, -0.035716018380898, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 2.9190641887006854, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 5.0, 1.632927949676875, -0.32869296297079886, 2.151119182118643, -0.32869296297079886, 0.2827985594049084, -0.32869296297079886, 1.4074106349814561, 0.6183094505191516, 3.030009540630657, -0.32869296297079886, -0.32869296297079886, 0.5226143571636819, 0.3861143772852225, -0.20245727606508188, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.2518286749360255, 4.3807619099759885, -0.3177777048592288, 4.4190809844431955, -0.32869296297079886, 1.0628026955901886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.3053112875562516, 0.2539906502471261, -0.32869296297079886, -0.32869296297079886, 0.4368250542093137, 0.9534470813735415, -0.32869296297079886, 0.49021784992313766, -0.32869296297079886, -0.32869296297079886, 0.1792138082357158, -0.32869296297079886, -0.32869296297079886, -0.10456576701214919, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.22958319895201681, 0.33684707510319783, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.133511687495918, -0.32869296297079886, -0.18241987315249786, 0.44942655920221736, -0.32869296297079886, 1.9544517432149426, 0.049273525390046945, 2.415664079048254, -0.32869296297079886, 2.362799993555699, 0.7813155563918996, -0.32869296297079886, -0.32869296297079886, 0.41985735449492506, -0.32869296297079886, 1.6488899762362035, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.04919492083000646, 0.2468365530718532, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.5951455333782942, 1.6593106035911551, -0.32869296297079886, -0.32869296297079886, 1.7547062424694246, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.4723943083417934, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.0490516516591104, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.2244143299885122, -0.32869296297079886, 2.2717139464678486, 0.6013800410228325, -0.32869296297079886, -0.32869296297079886, 1.1895520575636103, -0.32869296297079886, 1.0974717133999812, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 2.2108458180717054, -0.32869296297079886, -0.24588832875615277, 0.6654614262517676, -0.32869296297079886, -0.0760372654601451, -0.32869296297079886, 0.07518830336068408, -0.32869296297079886, 1.106129603396918, -0.32869296297079886, 0.46807715562062746, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.227599394907051, -0.32869296297079886, -0.32869296297079886, 0.09095308674051124, 0.8013379414924985, -0.32869296297079886, 0.6719007033233788, -0.32869296297079886, -0.32869296297079886, 1.2223680230445004, 2.8840602702154547, 0.2608450154798537, 0.8516381084337241, -0.21636497519767467, -0.32869296297079886, -0.32869296297079886, 1.1870315623392815, -0.32869296297079886, 0.573099940323932, -0.32869296297079886, -0.32869296297079886, 2.2388920154819565, -0.08452865890649729, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 2.557534608842857, 0.7200165243097857, -0.32869296297079886, 0.7780061578159008, -0.1107118672600695, -0.32869296297079886, -0.32869296297079886, 0.16150635121948304, -0.32869296297079886, 0.3816496823650763, -0.32869296297079886, -0.0893928172203329, -0.32869296297079886, 0.32313508441989935, 1.1030158872578395, 0.8797041446163821, 0.5003658675733412, -0.32869296297079886, 1.6744076319270291, -0.16849067912620055, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 2.123916201901999, -0.25930541279273034, -0.32869296297079886, -0.021433628307748354, 0.5470038387481542, -0.32869296297079886, 0.12694603045990693, -0.32869296297079886, -0.05555255372286748, 3.5246653298301425, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.010253434720257562, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.04156640509236375, -0.32869296297079886, 0.15202203068251074, -0.32869296297079886, -0.2806447915046297, -0.01703781416032748, -0.32869296297079886, -0.32869296297079886, 0.09325299701290497, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.0816034756301574, -0.32869296297079886, -0.20326457883766244, -0.32869296297079886, 0.564661594783865, -0.046458297440908576, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.3959398012830462, 0.28917055112954715, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.17479342590484426, -0.32869296297079886, -0.16509072279714296, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 2.4873999702081955, -0.32869296297079886, -0.32869296297079886, -0.3277740348589242, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.4587075670051933, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.23516067248101313, -0.014760066432632245, -0.32869296297079886, -0.04931818481100647, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.08781795858632055, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.30522538984789543, -0.32869296297079886, -0.32869296297079886, -0.049518670866767193, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.09679265714485244, 1.9519868797929638, -0.32869296297079886, -0.04790919843054931, -0.32869296297079886, 0.13735441465635895, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.4353510889125925, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.6766094290173874, -0.15207709505403227, -0.32869296297079886, 2.0775747718182265, 3.549383607852401, -0.32869296297079886, 0.6903899536417286, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.20589593013944146, -0.14763034867360725, 0.3370379018965192, 1.2370759062293302, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.8713133150172203, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.027789730299732376, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.29453305455058526, -0.23940755327338095, -0.32869296297079886, -0.32869296297079886, -0.021201910058715034, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 2.8952404589614864, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.5152073503233969, 0.6544638790712828, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.7767937036099967, -0.32869296297079886, 3.060457200630796, -0.26953142421819354, -0.32869296297079886, -0.32869296297079886, 1.7205240376133022, 2.7981822477159515, 0.20928654318390866, -0.32869296297079886, 0.7748447176369122, -0.02514025321305968, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.29312332248200446, 4.355281157176495, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.7513961210486597, -0.32869296297079886, -0.32869296297079886, 0.6128886793749581, -0.32869296297079886, 1.651798645482862, -0.2919826802826261, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 3.2658797811360274, -0.32869296297079886, 5.0, -0.32869296297079886, -0.32869296297079886, -0.301451415070735, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.2572804181497239, -0.13790485872417452, -0.32869296297079886, -0.32869296297079886, 0.6520859316696664, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 2.2861931982056456, -0.32869296297079886, -0.32869296297079886, 1.3052263901580177, -0.32869296297079886, -0.32869296297079886, -0.14578385146357029, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 5.0, -0.32869296297079886, -0.32869296297079886, -0.26548351693442346, -0.32869296297079886, -0.32869296297079886, -0.05610042639475042, 0.41469525042172595, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.564142387750783, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.2966665549803123, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.548219027422607, -0.32869296297079886, 5.0, 0.6624683381728813, -0.32869296297079886, -0.32869296297079886, -0.08398156660590765, -0.32869296297079886, -0.32869296297079886, -0.11584768149151373, 0.6808022078961607, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.3120825297341069, 0.47357298114154356, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.2477822937116719, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.936576078333045, -0.32869296297079886, 0.8043214570168697, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.30422804065328585, -0.229664877813935, -0.32869296297079886, 0.8033939597237079, 3.1441371426407394, -0.32869296297079886, 0.48257021125950456, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.2410396564770722, -0.32869296297079886, -0.32869296297079886, 0.2853119098965133, 0.07769964222851362, -0.32869296297079886, -0.32869296297079886, 2.8099409517132763, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.991781693900256, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.07746768119730102, -0.32869296297079886, -0.32869296297079886, -0.3271890146167969, 0.3194438241582527, -0.32869296297079886, -0.04171102140506266, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.06946825115514013, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.17417534965837045, -0.32869296297079886, 2.5427523649446675, 0.14190970201273828, -0.29703238270967336, 0.757769430733705, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.34081371972307273, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.19768465530382306, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.8824459184560063, -0.32869296297079886, -0.27172957407408355, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.7567371902715464, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.02848502862096615, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.9204718507826926, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.2546705790832343, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.22855019546014513, -0.19189134357552523, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.2526487112729225, -0.08212667606908321, 0.10873490447009931, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.4089732906419121, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.5121440635113809, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.2151611137467701, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.7120337768716922, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.2016566411316534, -0.32869296297079886, -0.32869296297079886, 0.3013828416050657, 0.884013458941454, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.01839263793164429, -0.32869296297079886, -0.32869296297079886, -0.1071905024995289, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.44742409178324394, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.2718094927651976, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.7683266002214335, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 4.186518963286084, -0.32869296297079886, 1.5589332131161004, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.3843439402637993, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.42078679404552904, -0.32869296297079886, 0.4784941759260463, 1.2865485327691288, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.0673214962532636, -0.32869296297079886, 0.007494943593394174, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.43699666652726216, -0.32869296297079886, -0.32869296297079886, -0.14928260279822192, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.20135566926583306, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.3036084897118436, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.2670619734411069, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.20344849883898256, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.1031185494367322, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 4.055427129878472, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.1807343877109582, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.056961465895526885, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.26636507637085377, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.12327325632709268, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.19699725607422544, 1.6177868043506132, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 3.066364437896961, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.13812740327512704, -0.32869296297079886, -0.1365404055321254, -0.32869296297079886, -0.32869296297079886, -0.1268801372811369, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.322265818505084, -0.32869296297079886, -0.32869296297079886, 0.5853668221067359, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.6023981307522293, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.023987523423379408, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.00524945121244319, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.04026377948970293, -0.32869296297079886, 0.01765548186744071, -0.32869296297079886, 1.161120460784511, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.20003512496515996, 0.5164623260939399, 0.3755305309391137, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.1484742838705266, -0.32869296297079886, 0.1692223504083141, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.24275545399578752, -0.32869296297079886, -0.32869296297079886, 0.5473569134039169, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.2580841664035942, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.48197407695859473, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.407751223696549, 0.12530516975615888, -0.32869296297079886, -0.32869296297079886, -0.1871167545444519, -0.32869296297079886, -0.32869296297079886, 0.12016703175242138, -0.32869296297079886, -0.32869296297079886, -0.11544743772653278, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.2244839737909512, -0.1717778284495748, -0.32869296297079886, -0.32869296297079886, -0.281453347206674, -0.32869296297079886, -0.13799394244257554, -0.32869296297079886, -0.32869296297079886, 0.9124307662551178, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.18698606352392244, 0.22945452822605567, -0.32869296297079886, 0.5264989414067848, -0.32869296297079886, -0.3197077484030397, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.26625711583190825, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.15885947052898977, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.19746872656726894, 0.7468533889992934, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.3664823165633948, -0.32869296297079886, -0.32869296297079886, 0.5713492727085779, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.28940790589953247, -0.03250116612235162, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.7928604733383221, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.14155930280241286, -0.32869296297079886, -0.32869296297079886, -0.025683842513626747, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.21103079441308187, 0.026507007994355323, -0.32869296297079886, 1.338590488434555, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.11507171496171141, -0.32869296297079886, -0.32869296297079886, 0.2966252820097467, -0.32869296297079886, -0.32869296297079886, 0.15039993357294415, 1.0830763949300586, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.42016124841769475, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.8813330049438164, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 5.0, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.2871473431757855, -0.32869296297079886, 0.5402907033777318, -0.32869296297079886, -0.32869296297079886, 0.38571281555983683, -0.3041904684493285, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.7002682056070014, -0.32869296297079886, -0.32869296297079886, -0.23510296453001933, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.2916599702348575, -0.1230493986571956, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.6472408317569434, -0.32869296297079886, -0.18244680463287063, 0.05142644839415733, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.11359032746692158, -0.32869296297079886, 1.699111620483852, -0.32869296297079886, 0.6648211055941345, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.009004528504208593, -0.32869296297079886, 0.6430959850170949, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.025303710144939814, -0.32869296297079886, -0.006874917430819663, -0.32869296297079886, -0.32869296297079886, 0.5224363631427215, -0.32869296297079886, -0.14428560794886872, -0.32869296297079886, 2.345295814590292, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.3659530514114358, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.44416956197988544, 1.3916608694136114, -0.32869296297079886, -0.32869296297079886, 1.4033750402225191, -0.3112011344649424, -0.32869296297079886, -0.32869296297079886, 1.33228689191829, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.6908847437241531, 0.23796137302399314, -0.32869296297079886, -0.32869296297079886, -0.03621438082968538, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.21117477775795487, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.25941058899527103, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.7336195696589287, -0.32869296297079886, -0.32869296297079886, 0.5069720400519784, 1.0780990827788475, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.5008673861904661, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.4225054144131493, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.19793696184271695, -0.32869296297079886, -0.17484272802892672, 0.14268171466132648, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.04673811640324933, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.22574536762010966, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.28611673766400414, -0.32869296297079886, 1.0971004647639038, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.012407160278705358, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.11261262628729156, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.27482642501639104, 0.05087751788563478, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.7315903670187768, 0.3276916203703464, -0.32869296297079886, 0.40895983357251736, -0.021752678775170602, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.29113132121520413, -0.2387452781700609, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.1979323364811772, -0.17625095137967636, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.2978962385562608, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.14824683715299034, -0.32869296297079886, -0.32869296297079886, 0.20760818997496552, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.26830797978325094, -0.32869296297079886, -0.32869296297079886, 0.300956932295363, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.420403059468774, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.07211959347425267, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.3148802420228254, -0.2336556532483228, -0.32869296297079886, 4.9487484611576695, 0.19402674673806122, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.3011926504533331, -0.32869296297079886, 0.1549688167313918, -0.32869296297079886, -0.32869296297079886, 0.27447432148934714, 0.016682618989822835, -0.32869296297079886, -0.32869296297079886, -0.14869187907160533, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.0627691673094385, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.8249129929132619, -0.1885573893162034, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.5604722842219471, -0.32869296297079886, -0.32869296297079886, 1.0783236909783276, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.14911918820817266, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.4683103652459071, -0.32869296297079886, -0.32869296297079886, 1.1110479541616027, -0.32869296297079886, -0.32869296297079886, 0.6846342124557547, 0.019582652127508194, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.530161027621917, 0.6808278040745449, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.285682669138902, -0.32869296297079886, -0.32869296297079886, -0.049089293240209754, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.9947878922168475, -0.32768377380952796, -0.32869296297079886, 1.666058283397447, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.6170824293824557, 0.41171992012513436, -0.32869296297079886, -0.31172872832171766, -0.23507165429961793, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.3850328867237287, -0.32869296297079886, -0.32869296297079886, 0.1303898263140027, 0.9434441781005147, -0.32869296297079886, -0.21316794141696696, -0.27083831202125336, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.1714511893665958, -0.32869296297079886, -0.32869296297079886, 1.3346747587061012, 0.32363022133401315, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.12828216968630093, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.6862504481098367, 0.20205094056256095, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.681730676318047, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.6550957662171881, 0.6333889985380794, -0.32869296297079886, 1.0095723558378236, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.15201256217749876, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.15134973214348169, -0.019846179683555256, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.05823995685434278, -0.32869296297079886, 3.9494029033666678, -0.32869296297079886, -0.18394395562776278, -0.32869296297079886, -0.20161982494824515, 5.0, 0.027222972642579273, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.2794344226242277, 0.31062992926920685, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.18847162651119045, 3.2536047141254465, -0.32869296297079886, -0.13301621409334816, -0.32869296297079886, -0.32869296297079886, 0.23626855693376841, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.0008944293126903847, -0.32869296297079886, -0.32869296297079886, 0.0065203465573480095, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.13060902878065217, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.0082266488983658, -0.32869296297079886, 0.212330268688866, -0.32869296297079886, -0.32869296297079886, 1.6209930551833662, -0.32869296297079886, 0.3794055426276989, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.822419718474475, -0.32869296297079886, -0.26034371847399274, 0.5961328938203655, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.24694191670855417, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.9266393103606652, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.44400620425605, -0.09716195102337066, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.24732311774157, -0.32869296297079886, -0.14728325686441804, 0.30143278536776696, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.09830191740702683, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.7701685247549953, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.3870681644201429, 0.171812870949926, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.018717034448483792, -0.32869296297079886, -0.32869296297079886, -0.11315968390471327, -0.32869296297079886, 0.2506278395915769, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.16168711989392734, -0.32869296297079886, 0.1498538124010725, -0.32869296297079886, 0.9344264155467816, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.22685009973385817, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.40889199329484865, -0.32869296297079886, 0.5523339480897734, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.05912051532034615, -0.32869296297079886, 0.09196458666788636, -0.32869296297079886, -0.32869296297079886, 0.10983488116042642, -0.32869296297079886, -0.31686858097459925, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.9570975140440432, -0.32869296297079886, -0.28999493586869945, -0.32869296297079886, 0.950536608602126, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.03514027294163041, -0.32869296297079886, -0.32869296297079886, 0.3504014654686397, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.2434129373200784, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.1935442289955283, 0.183018690557508, -0.32869296297079886, -0.11055867170461761, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.47919297240584147, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.0485031026654426, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.15761594504552615, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.39357639163081615, -0.03152289267043968, 0.38886822086750106, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.09788159208745971, -0.32869296297079886, -0.12525011506755832, -0.32869296297079886, 0.1597762854062434, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.36057299830711437, -0.32869296297079886, 0.7606311389701537, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.29448376593875486, -0.32869296297079886, -0.32869296297079886, 1.7980248263157104, 0.2951035233067732, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.10910317035368403, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.2645057545531834, -0.32869296297079886, -0.32869296297079886, 2.214770010493286, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.03204747075318502, -0.32869296297079886, -0.21864320848972932, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.26738518639481956, -0.32869296297079886, 1.1692891793723272, -0.18387861253822899, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.638429642155049, 1.468679007142577, -0.32869296297079886, 0.19427230357134226, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.4307575405195398, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 3.884441051221112, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.5305117840071583, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.9183368936598855, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.03406145782557486, 0.848769671662583, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.028324059194299745, -0.32869296297079886, -0.020953647938287818, -0.06227430786067366, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.0014074974249405202, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.10401088349876031, -0.32869296297079886, 1.4780544225303287, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.3373797683870756, -0.32869296297079886, 0.9211555254010033, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 3.2239758543682613, 2.254743888298, -0.32869296297079886, 1.1115412875509498, -0.32869296297079886, -0.32869296297079886, 0.4798331543307999, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.2803958357208312, -0.32869296297079886, 1.97746458047362, -0.236369012902121, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.3756676280025952, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.9692058645652065, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32321768993686684, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.07877383682449017, 0.8687836634363969, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.24479185506584844, -0.32869296297079886, -0.3160018832758893, -0.32869296297079886, -0.32869296297079886, 2.6817816495722644, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.46637233915408627, 0.4305163245840975, -0.32869296297079886, 0.06392619297055761, -0.32869296297079886, -0.32869296297079886, -0.28282719953739743, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.09618360820512191, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 0.572556940637229, -0.32869296297079886, -0.32869296297079886, 0.10370182178387825, 0.3004463960544166, -0.32869296297079886, -0.32869296297079886, -0.24795924340824443, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.2378876414491327, -0.32869296297079886, -0.26249549259814525, -0.32869296297079886, 0.7873815038373206, 0.41061290275159246, 0.8926577531363323, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, 1.1181391360691426, 0.8093765981982807, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.21412129501227978, -0.32869296297079886, 2.873459706582105, -0.32869296297079886, 0.9907901714779586, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886, -0.32869296297079886], [-0.6390226508914734, -0.7759767404699184, -0.39999006138759324, 0.3838868933988756, 1.5959925435281308, -0.21284097659141388, -0.6405193807885191, 1.118841815395464, 3.903533039521133, -0.7759767404699184, 0.609138097990547, -0.5280041763507409, -0.7759767404699184, 1.3037325524348422, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 0.4428224789044164, -0.7759767404699184, 1.9411004193475068, -0.7759767404699184, 1.2754575586092498, -0.7759767404699184, -0.7759767404699184, 5.0, 0.44551278296856955, -0.7759767404699184, -0.18044997554894446, 0.179009954063691, -0.7759767404699184, 1.9433588040204777, 0.6762852463620856, 1.350089833113507, 1.3223377201645357, 1.315213929672904, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.13370020196712656, -0.18634910844377664, 0.10861794666268901, -0.7759767404699184, -0.3595945603735756, -0.3285344617148934, 0.9482527046375222, -0.6796968691194497, -0.04093336728861122, -0.7759767404699184, -0.7759767404699184, 1.2187076328877597, 0.610991881250958, 0.4273875256735065, 0.45033226505023805, -0.5717001321722659, -0.03877694512488673, 0.8295969908143875, 1.0809820503694607, -0.07978263379844117, -0.7759767404699184, 4.727223843874846, -0.09316201988927413, 0.2836594449359936, -0.5911930419155544, 0.043485388463348394, 0.7602245346736631, -0.7759767404699184, 0.6847876349514704, -0.3721665525324262, -0.7759767404699184, -0.2657700400133246, 1.4365869702092833, 0.9852195409256167, -0.7688668679577065, -0.09606259855617179, 0.11099638277671041, -0.5219061021226611, -0.42183695027083207, -0.10278392877408506, -0.13243441973769918, 0.33641363637876326, -0.2828552206479849, -0.11953213845126259, 1.1212573153615115, -0.2135785250970623, 0.10809203865871124, -0.7759767404699184, -0.43983739393670535, 0.044631636078366864, -0.7759767404699184, -0.7759767404699184, 0.08644911171019139, -0.6010856756597774, 0.9912401280765981, 0.6467079971140334, 0.5601184218853116, 0.2685456625344127, -0.08799220319032938, 0.3806173005239373, 1.4613094455006304, 1.2153596300310403, -0.7759767404699184, -0.7759767404699184, 0.004609246969177986, -0.6005063130166185, 2.1091874985963974, -0.5343650938322497, -0.43836392123764456, 0.8151175761750116, 0.5487991805417788, 0.05122124934006813, -0.7759767404699184, -0.17162837268815817, -0.7759767404699184, 0.715137170837401, 1.082855768371001, 2.2349018827568092, -0.6050679724463282, 0.35942534171921836, 0.6860321534570222, 0.07618028355949863, 0.5128128381878188, 1.9202640372586435, -0.1391798931420959, 0.3104848877518836, -0.0943125497820163, -0.41145098705790345, -0.7759767404699184, 0.7600192806723897, 0.24346724136531941, -0.7759767404699184, 0.07943865391350646, 0.5987407276757499, -0.5614838542141664, -0.12203350546892328, -0.7759767404699184, 1.4826168781391573, 1.2022260319151112, 1.269896356492771, 1.9621736556939409, 2.0096003244857017, 0.4962277242260403, -0.28925268515489905, -0.7759767404699184, -0.10514737691607223, 0.06397232192340933, 1.4235709132336538, 0.429245148217393, -0.7759767404699184, 0.17897827997500454, 0.8743716007120218, 0.3819747825625655, 0.317121458403805, 0.8028596300213455, -0.09790154150929424, 0.060075596858972555, -0.7273576880580818, 1.0715251568417892, 1.7893196630140262, -0.43161113842817, -0.23138035967537443, -0.4141596753833239, 0.07235118895015821, -0.6486295533461558, -0.7759767404699184, 1.9744410523915383, 1.0634157041498034, -0.06436348069568967, -0.7759767404699184, -0.09282800222677365, 1.8755443586476999, 0.650382634395799, 0.7351885671199437, -0.7759767404699184, -0.26572319337166567, 0.09211367915105194, -0.23745654260439794, 0.006777999139453981, 0.7245766399246782, 0.043791423655892246, -0.32004178208276457, -0.028793183772364644, 0.8678090839317814, 1.024435606672255, 0.38780754015267066, 0.19409449884494542, 1.4229536745823443, -0.5836062855192553, -0.42180553459545794, 0.274623986602297, 3.3120908292254723, 0.7459023829920958, 0.6073609527349283, -0.7759767404699184, 0.6878351400437371, -0.15922213421019188, -0.11718249696331946, -0.6058760677858684, -0.7759767404699184, -0.22430179151316038, 0.49694197861751666, -0.4315927172507181, -0.7759767404699184, 1.0811487638712132, -0.7677302716184009, -0.24297100882778203, 0.45591812717982033, -0.30023912707011113, 0.7793130091272146, -0.7759767404699184, -0.7759767404699184, 0.7233898583360289, -0.7759767404699184, -0.2055642423358842, -0.7759767404699184, -0.6093479059928167, 1.6620385558655175, -0.7759767404699184, 0.684266969046084, 0.48769535969258704, -0.012561505387598171, 0.9949172756590983, 1.0572201342711196, 1.3936958241866313, -0.7434836823204548, 0.3611286546002787, -0.5997772367759491, 2.3480520640738813, -0.2183663700062314, 1.7037931263142, 1.2891190582032683, -0.7759767404699184, -0.7759767404699184, -0.44279334688452, 0.18759717605144147, 2.9131615149890795, 5.0, -0.7759767404699184, -0.7759767404699184, -0.46356615929887063, 0.5938996865407118, -0.7759767404699184, -0.055021913337074936, -0.7759767404699184, -0.5677247756289238, 0.6969422157807549, 0.9116500096207509, 0.6397188768735956, 0.6220918404420505, -0.6521847113877931, -0.4172823787490801, -0.7759767404699184, -0.5995459014883643, 0.0937131837134828, -0.7759767404699184, 1.6413214868939454, 1.2343568476696385, 0.4211339973807943, 0.5692379014612524, -0.7759767404699184, -0.062419252776445174, -0.7759767404699184, -0.1465158778782079, -0.23793139552136974, -0.3912666925011584, 0.428766197603633, -0.2681393578290867, 0.2910612143178361, 0.031325344038347296, -0.7759767404699184, -0.4190464187582127, 0.08439671936221912, -0.7759767404699184, -0.036769812022519936, -0.7759767404699184, -0.7759767404699184, -0.27972716443507345, -0.7759767404699184, -0.26571603163133384, -0.7759767404699184, 0.016323122354724284, -0.4593794944995429, -0.294768480361027, -0.7759767404699184, 2.495847348828699, 0.10832069752271786, 5.0, -0.7759767404699184, 0.49723022020779223, -0.3198752531619483, -0.7759767404699184, 0.745140137557157, -0.7759767404699184, -0.42217477030062367, 0.81205559993733, -0.7759767404699184, -0.6986875848945635, 0.2526936302196233, -0.028611629963326765, -0.7759767404699184, -0.17276262254230917, -0.28307513037560844, 1.3608097032403745, -0.7759767404699184, 1.0268347158511524, -0.7759767404699184, 0.10766063609416796, 1.2064601709312819, -0.3807032731759777, 0.33217167113089024, 2.1641456602521125, 3.498016696156147, -0.7759767404699184, -0.3824660580347456, 0.9868202268060404, 0.3218653361339234, 1.5012879043469551, -0.7759767404699184, -0.7759767404699184, 0.5615593345071899, 0.5639593296745812, -0.761695209284298, -0.7759767404699184, -0.7759767404699184, 0.6357158331897946, 0.2119289304166247, -0.7759767404699184, 0.6658280718238944, 0.08547164490341372, 0.8966128652239623, -0.7759767404699184, -0.531704211969357, -0.33164453974460106, 0.3440083297553275, -0.7233314148634348, 0.21089055190083686, 0.7691276853921489, 2.1119579846193406, -0.05717183825183815, -0.6468447664397707, 0.33021193841298935, -0.1475961193503681, -0.7759767404699184, -0.16871468877477683, -0.1443712688944129, -0.5294354538477427, 0.076581267185725, -0.7759767404699184, -0.7759767404699184, 1.1565734074192309, -0.5669280320169715, -0.7333093203857491, -0.03746472233186122, 1.3501391531397136, 0.08699037684807727, -0.7759767404699184, -0.25430630871278054, 0.10300742452000608, 1.2462767892125748, 0.19213262498818381, -0.7759767404699184, 0.49249520236262084, -0.6535466972012699, 0.009913881584067958, -0.16287635684039112, 1.3402695366382575, 0.27409689728032616, -0.1650346617296663, 0.7983718029661941, 0.3844153117035903, -0.21220077607161864, 0.4015018213209943, 0.3587011937895506, 0.4664001832282348, -0.6006443426408552, -0.003836955183168053, 1.9071965929503385, -0.7468248902914539, -0.31482851503139125, -0.7759767404699184, 0.09563378527286864, -0.3976942067845157, 0.6269163431251875, -0.3672533771674425, -0.7759767404699184, 0.33191104284870043, -0.06557521762693914, -0.7759767404699184, 0.7091286921958485, 0.590943142933898, 0.34873330639755873, -0.7759767404699184, -0.7759767404699184, -0.30499031420531214, -0.7759767404699184, -0.7759767404699184, -0.5836465241633895, -0.556147508594404, -0.302041965992075, 1.6186686807262194, -0.7759767404699184, -0.11661819612457139, 0.9143056124688637, -0.7759767404699184, -0.3652195905778603, -0.7759767404699184, -0.7759767404699184, -0.20497118378724483, 0.616607719324609, -0.7759767404699184, 0.16181963612765718, 0.2054168411482088, -0.7028105738853583, 0.5585669083663428, -0.554408257805028, 2.3722495911821304, -0.34665174511350566, -0.565693905418136, -0.7759767404699184, -0.30157253975463266, -0.659021487752376, 0.3070253241772058, -0.7759767404699184, 0.32854458189833896, -0.21585097483740637, 0.5587687660783832, 0.3044480574784979, -0.7759767404699184, -0.4918357264449335, 1.111985593429231, -0.705422744839137, -0.7759767404699184, -0.6168150354842381, -0.14189921332945019, -0.7759767404699184, 0.24948103593784302, -0.5824734015640329, 0.30214552104552356, -0.3823798218212615, -0.16211920583929554, 1.46478960830781, -0.7759767404699184, -0.5752104185882654, 0.7585308200012945, -0.237351589883965, 0.5674306325968139, -0.6710601425245573, 1.4369846313786532, 0.22672995887957773, -0.7759767404699184, -0.7759767404699184, 0.0706269815070988, 0.5161605457150414, -0.2955090190778449, 0.08338890744949924, -0.5252158044350794, 0.665936605414496, -0.7759767404699184, -0.7759767404699184, -0.19804279067488173, -0.3665834960330754, -0.6731290917825231, -0.42668253209690393, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 0.065495114648674, 0.6619276551407303, 0.4884243805589748, 2.424408029194571, -0.7759767404699184, -0.7382958966673504, -0.7759767404699184, -0.7759767404699184, 0.8997867713414727, -0.7759767404699184, 0.6513622423414398, -0.10840980805067857, 0.6166338559852046, 0.4486524308642878, -0.3949626304229841, 0.5419159359264571, -0.40583282326445125, -0.07615849786087471, 0.21224441615311188, -0.7759767404699184, -0.33864041564730984, 0.3108377326698967, -0.7759767404699184, -0.38980359325072417, -0.01795813514118599, -0.6353617002861409, -0.7759767404699184, 0.2554469132992757, -0.5492921541585729, 2.269202336670111, 0.7517016206841506, 0.08776192516221075, 0.4650460974788368, 1.4761708688459692, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.6706318040035572, 0.3028340079382806, -0.7250516215146984, -0.24452300225718573, 0.07035262040323881, 0.03701361167144092, 2.1513705921470465, -0.7759767404699184, 0.249744543682641, -0.7759767404699184, -0.7759767404699184, -0.4213554893563377, -0.7759767404699184, -0.7759767404699184, -0.6160779115147417, -0.7759767404699184, 0.22359798955081384, 0.13102075641016392, 0.4205246587935639, 0.4393163271013921, 0.3302493714268919, -0.07655084309927679, -0.7759767404699184, 0.5373765738738647, 0.4377670285536609, -0.2026862932917878, 0.05008688873735589, -0.7759767404699184, -0.7203470872111716, 0.18065582535734312, -0.6540641975435959, 0.09639787651717091, -0.46663965338698443, -0.21056634879601963, -0.3175899565884328, -0.7759767404699184, -0.7759767404699184, 0.24885109811811015, -0.7759767404699184, 0.07723889214591723, 0.1907418445486283, -0.7759767404699184, 0.6075346064798894, -0.36813194550850026, -0.6291438699465268, 0.13671995123469355, 0.8463914933904145, 0.565560015555005, -0.7749060221483413, 0.155872881351234, 0.7890261009946066, -0.7759767404699184, -0.22701527894292678, 0.7821475816512566, 0.46408598128007966, -0.5128772702445841, 0.5450995879174108, 0.008635547850966357, 0.17608050693834065, -0.7759767404699184, 0.38677329624985807, 1.0420902564118852, 1.03021476195843, 0.5047270118556914, -0.4315172236477319, -0.7759767404699184, -0.7759767404699184, -0.5621350926739579, -0.7759767404699184, 2.1725265207529856, -0.12661199868003353, -0.6171684710612487, -0.7759767404699184, 0.04555062764449435, 0.6998680451197495, 1.3431082437752746, 1.4709941857361892, -0.5039468753798843, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 0.12799370288564832, -0.7759767404699184, 0.2690676574225405, -0.7759767404699184, 0.23953286178985708, 0.42622392745046767, 1.9128542201479852, 0.26532125507270293, -0.23404799720054156, -0.6473291345040137, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7460201243305535, -0.3669568663512164, -0.7759767404699184, -0.5708148635432182, 0.8407947040693966, -0.013711666118466713, 0.29454174628688956, 0.30669928041115635, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.4828922263337524, -0.4988866628409699, 0.14172423574987913, 0.1823589167412809, 0.2134895991500372, -0.7429737820981849, -0.7759767404699184, 1.3154258285878864, -0.33337291871682295, 1.317087204680198, -0.7759767404699184, -0.11821851284312143, 0.7066888275461943, -0.7759767404699184, 0.010667710128307584, -0.7759767404699184, -0.7759767404699184, -0.6051259308603563, -0.30189810361024705, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.09980117467430429, 1.0235218572047216, 5.0, -0.6661235069225596, 0.31064244603919156, -0.051050174580086795, -0.4956581945986591, -0.7759767404699184, -0.29974153378177415, -0.7759767404699184, -0.09485255976953495, -0.7759767404699184, -0.7759767404699184, -0.522692084666022, -0.49823588583352013, -0.2641927959118214, -0.22253638560509661, 0.5602941429367589, -0.15999534375275348, 1.3450727755975218, -0.7175521395996503, 0.4757947622317831, -0.3943826402046412, -0.7759767404699184, -0.7759767404699184, -0.2945820536152664, -0.5832275623539586, -0.06725268917690357, -0.03587156735364305, -0.7759767404699184, -0.48754992322466856, -0.20196875335964498, 2.1605833958444363, -0.7759767404699184, 0.4189662050313861, -0.7759767404699184, -0.7759767404699184, 2.0059125450412583, -0.7759767404699184, 0.2068866960609167, 0.038537807211823566, -0.19928228857896513, 2.200154595312687, -0.7759767404699184, 0.0686537374646533, -0.6598520742790164, -0.6524340894619104, -0.7759767404699184, -0.7759767404699184, -0.32235362139493384, 0.47889513130423217, 0.5887351119403585, -0.7759767404699184, -0.15946537496817226, -0.7759767404699184, 0.19551540289332073, 1.3153032668461213, 0.059971345546094866, 0.5846741836749039, 5.0, -0.7759767404699184, 0.22219384545146476, -0.7759767404699184, 0.08814755165452899, -0.48830975064934173, 0.12190445162632818, -0.7759767404699184, -0.09606961263175524, -0.4498912222126818, 0.4899714641354687, -0.014540951349505464, -0.2836680781756864, 1.2286157898887344, 0.5202467246525957, -0.7759767404699184, -0.008269260292651516, 0.04169768517817009, -0.7066949781722913, -0.4250873467283864, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.14389431175476508, -0.0841601552860043, -0.3307609138858874, 1.2372812003611413, 0.5705689515097879, -0.5362213873933946, -0.7759767404699184, 0.5404466716727482, 0.17508834748902574, -0.7214928318431374, 0.6052348756771488, -0.7686599613802384, 1.2093130538842143, 3.6504270949798374, -0.48338215951322777, 0.39804764750965915, 0.3501903144770926, -0.07663419985015282, -0.016571636979356763, -0.6296230420574103, -0.7759767404699184, 0.008038908432161063, -0.5311275811240549, 1.2504269069864962, -0.5338115909782799, -0.7425865635952905, -0.7759767404699184, -0.7759767404699184, 0.5000921107104227, -0.7759767404699184, 0.023795475486645883, -0.7759767404699184, -0.16745791409504493, -0.16553288259318688, 0.4330152507594633, -0.7759767404699184, 2.6609575067353988, 1.5010009917394214, 5.0, -0.4671584181087252, -0.42584719261115195, -0.7759767404699184, 0.701428418523665, -0.7759767404699184, -0.3032890686307382, 1.7271226800271355, -0.1118750567181982, -0.7759767404699184, 0.34561521755521285, 0.39049577691033754, 1.7337667077488812, 0.24922897221110005, 0.7654131786281204, -0.7759767404699184, 2.1410393756398656, 0.308440469300365, 0.5413016505701321, 0.38016758753050117, -0.6752036338428622, -0.7759767404699184, 0.47429463604550687, 0.3837578344081488, 0.6902258323319332, -0.5692434337412131, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 0.40281581609100675, -0.015365806638069341, 0.25984473868984137, -0.3656956617290122, -0.03427959369341782, 0.23826360943882766, 1.1681311273325876, 1.0856776417266198, 0.5106553085384757, 0.6222090862528477, 0.5745343406825661, -0.5020750401038953, -0.7759767404699184, 0.5436670921862313, 0.38620124301178166, -0.08084965927555886, -0.4031629707680491, 1.0638005184860022, -0.5921219823941533, 0.6092915216648797, 0.5181032231544193, 0.2143690903957781, -0.7660694383094062, 0.7596926462473466, -0.21337463699472003, -0.7759767404699184, -0.3686631325272591, -0.5582358573087853, -0.7759767404699184, 0.3810004167155187, 0.01363746973016609, 1.1671885832389757, 1.050916769125579, 0.7556683388396703, -0.30713717507652927, -0.1745900107288147, -0.6927493900590656, -0.4324669294816755, 1.5825782347241326, 2.5003517143357517, -0.6625156787107218, -0.5196513721522134, -0.7659603821240294, 1.6880625482555747, 0.045483661680768325, -0.7759767404699184, -0.7759767404699184, 0.790158984949829, -0.3707763258356801, 0.3674359328616691, -0.32916177848532785, -0.529198230428286, -0.7102602420201964, 1.1955918977315523, 0.4217055337922484, -0.47817411610235355, -0.6964901073160615, -0.7759767404699184, 1.6586449246013137, 1.2013480173168656, 0.07553890172171293, 0.2725772793471668, 0.4729945955942844, -0.1991009931832371, 0.16572079113456883, -0.7759767404699184, -0.7759767404699184, 0.7077840569903915, -0.13638688824492926, 0.44846940040775735, -0.7759767404699184, -0.7759767404699184, -0.03536101648357342, 0.4745574792989344, 0.23843106126432462, -0.7759767404699184, 1.5360038868642645, -0.7759767404699184, -0.16129852207989387, -0.7617471445916455, -0.7400385575895263, 0.23901389402908835, -0.5223341453141634, -0.08627301634873856, 0.9704886532184943, -0.18125456385069305, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.5278231209102304, -0.1979596923373156, -0.7759767404699184, 2.998452378749328, 0.8661797510900301, -0.4133203120331581, -0.7759767404699184, 0.32376504313131005, 4.617586902268756, 2.779425686327162, 0.5823616060389896, 0.05833337431651955, -0.7759767404699184, -0.7759767404699184, -0.7644392379372528, 1.4547949197638521, 2.362931354853877, 1.5056753193727073, -0.6036048916539873, 0.4356281784950795, -0.7759767404699184, -0.7759767404699184, -0.32221780674193384, 1.1036376621674238, 0.7134619142586739, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.6701402188247014, -0.3136086196227526, 3.2681425512638898, -0.7759767404699184, 0.2317814222821065, 1.66430653874719, 0.5893436383714672, -0.6674902826113358, -0.4911039553225937, 0.39939892762882573, -0.26390857818595964, -0.7759767404699184, -0.016975500068188702, -0.7759767404699184, 0.47059976869311054, -0.2634707522048297, 0.48236909219195034, -0.2271055390208247, -0.1526145796814715, 0.35001880187099466, -0.10610557347308908, -0.620466175612801, -0.2856691939395249, 0.48790356698884, 2.009197790379604, 0.36583295817763617, -0.2888370458023248, 0.012945734212929714, 0.5769903007898731, -0.7304331479331669, -0.7007578354481311, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 0.6669894550756983, -0.7759767404699184, 1.107347295994729, 0.09891496983061376, -0.7759767404699184, 2.274742422727473, 0.8695750066664673, 0.5316649013780351, 0.1313999594858953, 0.2794040421959507, -0.40795321522939115, -0.6124768851104101, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 1.7298479806368312, 1.6262218803082797, 0.36794869870297864, -0.7759767404699184, -0.3870577303247135, 1.7819195917768036, -0.33152367614744815, -0.7759767404699184, -0.06388334876393681, 0.5616712643870189, -0.5708090123275346, 1.7790492843834693, -0.44904406954700055, 0.8921711095705355, -0.005421988600184256, 1.3778922997419267, 0.13361278958378095, -0.7759767404699184, 0.47603988571531386, -0.7759767404699184, 1.3375204620039547, 0.5426455474518441, -0.24846937959351298, 0.256677698983163, 3.1131462473536704, -0.11896178335780143, -0.4578799958884505, -0.7759767404699184, 0.3463221625416089, 0.9693350961983955, 0.9569117655257189, 0.14084489216888932, 0.1644581836972465, -0.24271429366144437, -0.5958937277065574, 0.8955381611798903, 0.9738354747572214, -0.3544568238413757, -0.7759767404699184, -0.1278800697130725, -0.7759767404699184, -0.533220341322817, -0.7759767404699184, 0.3100029838431412, 0.3224050507919451, -0.3696630443759024, 0.5261503613222768, -0.7759767404699184, 1.0446962439042948, -0.48597264220698067, 1.786858386975763, 0.6889240199037214, -0.7759767404699184, -0.25686124111818404, 0.7805074692828206, -0.05233330741753441, 0.07723091824946383, -0.6327226635770697, -0.7759767404699184, -0.7759767404699184, 5.0, -0.7759767404699184, -0.7759767404699184, 0.5081707014698412, 0.40621217915306257, 0.18076672158393048, 0.7686783415605863, 0.22655999675334398, -0.7759767404699184, -0.3405128415822952, 1.999840275228092, 1.741757142653078, -0.7759767404699184, -0.35766949195553044, 0.049370640871764924, -0.43630086011154906, -0.7759767404699184, -0.7759767404699184, -0.11737305832205538, -0.7759767404699184, 0.9444958180904997, 0.4792312162732243, -0.15160676776874887, -0.7759767404699184, 1.8824810579022007, 0.3958591820953772, -0.2970912099484425, -0.7759767404699184, -0.4905692797241355, 1.0989633345341374, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.07086316612517964, 0.4715350772140161, -0.5015389063160418, -0.4127556051163491, -0.7759767404699184, 0.3488739570710945, -0.7759767404699184, -0.17307947417772507, -0.7759767404699184, -0.527899260546495, -0.7759767404699184, -0.4522737560234914, 0.19965725144129132, -0.06347439124125678, 0.0051488139624487565, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 1.5182770290623164, -0.7335058160215893, -0.22581627809628715, -0.7759767404699184, 3.127254137484257, 0.5684165901266646, -0.7759767404699184, -0.6080434909734017, -0.7759767404699184, -0.6936798994756237, 0.24542195348175172, 0.03655644160817597, -0.7759767404699184, -0.7759767404699184, 1.5212230884719424, -0.7759767404699184, -0.7759767404699184, 1.5974210523110834, -0.7759767404699184, 1.0250936007943185, 0.20181485492300888, 0.38868555475091915, 0.5760919084562479, -0.18906429401815816, 2.3818835347439884, -0.7759767404699184, -0.34985762064920223, -0.6327822463033381, -0.7759767404699184, -0.42638631661017723, -0.7759767404699184, 0.7897332674781253, 0.6821611220589329, 0.5164278189109414, -0.7759767404699184, -0.7759767404699184, -0.31177691224233384, 0.2117716674588161, 0.30454559004528914, -0.7562773261895136, 0.6081490395009628, -0.7759767404699184, -0.5368286217579491, 0.2304601919393854, 0.5749991893127852, -0.46375384119499846, -0.7759767404699184, -0.7412644588003836, 0.944819056226315, -0.44990037742712824, 3.8463215137939097, -0.4496926131251206, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 1.3280985650218207, -0.14690586048062426, -0.7759767404699184, -0.7759767404699184, 0.32658876229629036, -0.7759767404699184, -0.11095761563193492, -0.17960795423329332, -0.7759767404699184, -0.623773441456859, 1.0578240830950048, -0.7759767404699184, 0.8767461975425651, 1.137060101482472, 0.8301910461000842, -0.7096308487142272, -0.12730085473466174, 0.07625035048295527, 0.5275874346606794, -0.7759767404699184, -0.3030132308793884, -0.25314200908218404, 0.07548721905952076, -0.41527572555714587, -0.3979186941193624, -0.7759767404699184, 0.8889187934712407, -0.7759767404699184, -0.5195448135776317, 0.6185791913900651, 0.4027131152579959, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.2281922777419485, -0.436610254677136, -0.7759767404699184, 1.5518100692744552, -0.7759767404699184, -0.40522403842003246, -0.7759767404699184, 1.5804757840262085, -0.22538343580043868, 1.742926056807097, -0.7759767404699184, -0.03444409222393233, -0.6746404128025911, -0.7420965888851044, 1.1589454939490396, -0.7759767404699184, 0.24636937051208374, 0.2555939873893958, 0.3584886303831969, -0.38470181308493206, 1.1751550964538167, 0.6437256121761237, -0.40102013376124346, -0.7759767404699184, 0.7034774145824068, -0.7600882095822186, -0.7505279899536125, -0.7759767404699184, 2.249228612045605, 0.18428845201798555, 1.2617049498650246, 0.12921452119896984, -0.7759767404699184, -0.7759767404699184, -0.3986179974549891, -0.5434348473039269, 0.37337626422150544, -0.7759767404699184, -0.7759767404699184, 0.33715159096247244, 0.764909937163131, -0.09672568711208078, 0.6256994379277183, -0.3170008480718331, -0.7759767404699184, 1.1782694936774327, -0.4444927835659174, -0.7759767404699184, -0.7759767404699184, 1.6373583126924076, -0.343562856975299, 2.597577729108091, -0.7759767404699184, 0.7647330347936907, 0.99401135242327, -0.4012839368355411, 0.3787298497007279, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.5336891769012629, 0.42831508179508126, 0.8020637170236082, 0.32312956788348657, -0.7759767404699184, -0.7759767404699184, -0.5477162205817198, -0.7759767404699184, -0.5740902707176541, -0.7735717676738059, 0.44303910309136846, -0.7759767404699184, 0.9082501764370906, 0.01777267336442698, 1.4325201353538646, 0.6731494377498458, 2.1613831481256516, -0.5641805263206274, -0.7367187656216722, -0.7759767404699184, -0.5669282719721889, 0.46524514956064594, 0.7614436548423696, -0.43273320594051806, -0.6356353968986286, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7277967922621971, -0.6190714082250205, -0.7267946054535129, -0.4221789418297861, -0.7759767404699184, 0.4266470607890603, -0.7759767404699184, 0.007827600176174678, -0.16372406324888175, -0.48804557841317286, 0.7221320500030524, 0.4727311616818604, -0.527829562784912, -0.5318976158745115, -0.6318806145742792, 0.25856994891071844, -0.39720912808366826, -0.7759767404699184, 0.27581977574064437, 0.2275067492923054, -0.6888260022783655, -0.7759767404699184, -0.2141386544066481, -0.025075576048605462, -0.4049617119932271, 0.8297222105216384, 0.5432967489954469, -0.7759767404699184, -0.7222748920415994, 0.1804104065443127, 0.4306304650612293, 1.3862012475099699, 0.6523000611630774, -0.603228032756148, -0.24166871648913751, -0.7759767404699184, -0.2888607829107448, 0.616331586243762, -0.38516045979568936, -0.7759767404699184, 1.3790787860010787, -0.7759767404699184, 1.183445290798719, -0.23529380777265052, 0.14652533357028033, -0.2574700628787923, -0.7519197902028406, 0.5086946159997069, -0.29163012453186327, -0.15136149662046677, 0.3114678919867519, -0.24785125495371219, -0.7759767404699184, -0.2089367206247713, -0.23669090088022907, -0.7759767404699184, -0.4931198006451591, -0.34436578404861945, -0.3056644407012159, -0.16863779235667242, -0.7759767404699184, -0.7759767404699184, 0.6039986263975448, 0.6456916206458633, 1.1344886675413541, 1.008296883247054, -0.7759767404699184, -0.7759767404699184, 0.1461239807821828, -0.3152989380058884, -0.7759767404699184, -0.7759767404699184, -0.03305899687721874, 1.8632657394291574, -0.050168468363110966, 0.44349169554741275, 0.6359430892386831, 0.5150750621442849, -0.7759767404699184, -0.4605847341818337, 0.26932872869897867, 0.337692486938487, -0.35007258360772886, 1.171327035497716, -0.7759767404699184, -0.035947171705190746, -0.6826552216194389, -0.03639895200511322, 0.328338737238072, -0.7759767404699184, 0.6943050710262809, -0.29888670254913885, 0.3689364282098188, 0.6049439761213881, 0.536634706174303, -0.7480970682503276, -0.7759767404699184, -0.7759767404699184, -0.6642294573308752, 5.0, 2.465163499950749, 0.5926150032233974, -0.3278808975353046, -0.7759767404699184, 0.12855630557978112, 0.18385025687498166, -0.3751722685006925, -0.7759767404699184, -0.7759767404699184, 1.2906174124125551, -0.7759767404699184, -0.46069083130407246, -0.12669055632656356, 0.19519851434171545, -0.7759767404699184, -0.7759767404699184, -0.6455415419673957, -0.679041256091466, 0.28189588483729366, 2.574250242701649, -0.6402085095754414, 0.31541098378241295, -0.5291622556037834, 0.008427783548958631, -0.7759767404699184, -0.7225917805932036, 4.331816629234394, -0.5199343531858026, 0.7834620932478935, -0.7759767404699184, 0.3347349096784315, 0.5175508093279749, 0.09893601205736108, -0.5950057457377448, 0.2971479552764218, -0.4797428141064991, 1.1693425689343402, -0.7759767404699184, -0.7759767404699184, -0.3707043392704854, -0.7759767404699184, -0.7759767404699184, -0.23904969758261857, -0.7759767404699184, -0.009393948854297722, -0.5472558018939743, -0.30215005658842836, 0.3783199323571803, 0.1967049162798298, -0.5030172519518203, -0.7759767404699184, 0.5932297315739703, 0.04036641363250923, 0.017834323397182193, -0.4725730075874246, 0.5668395306060994, 0.15779016045376376, 0.9258206572697233, 0.3628687360038686, -0.7759767404699184, 1.2824639556253337, 0.09907887770213165, 1.253832646760121, -0.5241258540056635, 0.007544748349241444, -0.6422684328256179, -0.7759767404699184, -0.22345947486801215, -0.6733343088676081, -0.758132565332059, -0.03893952401366354, -0.7759767404699184, -0.7759767404699184, 0.29212299769635985, -0.4711359527071167, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.6540176646895305, 0.03691718659026848, -0.7759767404699184, -0.003682497855590866, -0.73522907748735, -0.4649103145938924, 0.44948385723418705, 0.6357974917960555, -0.7759767404699184, 1.9544673277670324, -0.1474393732191818, 0.14448534506123661, -0.07090008231245754, -0.5306641353089541, 2.241311714186462, -0.7759767404699184, -0.3870717584758778, -0.7759767404699184, 0.300644730367877, -0.43240989397232815, 1.8703571913407324, -0.7759767404699184, -0.09986695932003738, 1.0788896408744804, -0.7759767404699184, 0.12738052501494182, -0.7759767404699184, -0.1802528800250603, 0.47780654677374745, -0.7404878483540688, 1.2033147641103474, 0.020035561812263836, -0.7759767404699184, 1.8121817101312767, -0.5835036400605256, 0.18817033677513653, -0.7759767404699184, -0.5909672809722488, 2.2560702152016625, -0.09324537664015004, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 2.747598026302585, 0.15116023471555173, -0.7759767404699184, -0.6770485110730908, -0.1879243590711652, -0.27067129144981517, -0.7759767404699184, 1.4070779420753219, -0.7759767404699184, -0.7759767404699184, 0.7358015234935248, -0.24986710027627754, -0.7759767404699184, 1.1103974590524812, 0.4582479077590063, 0.22935469979512327, 1.360311187047357, 1.4371092604269078, 0.2122114869140608, -0.28251094028541934, -0.7759767404699184, -0.4913016045892871, -0.7759767404699184, -0.7759767404699184, -0.188323792217525, -0.23734542488068805, 0.2966849524555666, -0.6277821702335015, 0.14654489914954047, -0.7126647917221939, -0.05323457921376777, -0.7759767404699184, 0.3036284442885278, -0.7759767404699184, -0.7759767404699184, 0.8353554730356862, -0.4067470526424197, -0.7759767404699184, -0.2520173574367249, 0.6303962106028704, 0.3659595068676284, -0.7759767404699184, 0.13954079093706578, 0.6988568369177991, -0.7759767404699184, -0.14277028768448963, -0.7759767404699184, 2.1514896099348406, 0.9984477921457287, 0.5239080721069395, -0.2335291032721447, -0.2115677742083424, -0.2671411441250586, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 0.46332934710560625, 0.19488620339733317, -0.7759767404699184, -0.7647838805399058, -0.7759767404699184, -0.5743579684497088, 0.3749028962302481, 0.7781095414219156, 0.2390717047783679, -0.1365106313046877, -0.7759767404699184, 0.17810787011133586, 0.9129403041985328, 0.08183665560678569, -0.5310752708866817, 0.5339438114511509, 1.2051198180035487, 2.569514338867982, 1.2254367155050039, -0.7759767404699184, -0.44710663420621666, -0.7759767404699184, -0.7331887705761891, 1.7179639216279283, 0.6590170352708926, -0.24803321484081095, -0.7543177434436236, -0.7759767404699184, 0.019942385355570583, 2.20946456241499, -0.2498972238850973, -0.7759767404699184, 0.5525996281897919, -0.7759767404699184, -0.1631072675918224, 0.8475543532897085, -0.13967752334661754, -0.7759767404699184, -0.7759767404699184, -0.3965279875121812, -0.4465470955556274, 1.6804808493769325, 0.26524262359379874, -0.4215000531457211, 0.5320412988235328, 0.6719659047856757, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 1.2012332818068001, -0.7759767404699184, -0.7759767404699184, -0.09186921501075773, -0.4096197965041093, -0.7759767404699184, -0.3775198426821492, -0.3955732610767688, 1.443171341372393, 0.8051462186614178, 0.494767024527779, -0.7759767404699184, 5.0, -0.7759767404699184, -0.03910490853267412, 1.0284701029476166, -0.08173498327888763, 2.52344707175657, -0.48965314916252384, -0.32059833052218445, -0.263374142542719, 0.4248612033132454, 0.3338210863785239, -0.6269179161440624, 0.31782264446498515, -0.7759767404699184, 2.329961655659602, 1.2691753095228338, 2.1772898902299826, -0.18315379093764222, -0.105027620804538, 0.640792104270175, -0.7759767404699184, 0.10541576274572223, 0.2688323536448216, -0.7759767404699184, -0.18266845382348493, 0.32712840312193786, -0.6539629087547486, 1.0882787562823095, -0.6809658169119366, 0.6537451083979334, -0.4306417562664073, 0.023596423404836725, 0.23725564986135658, -0.2374733025534242, 0.7878754972694901, 1.5587035027574627, -0.12610934787404068, 1.122921497084057, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.5159017950102707, -0.7759767404699184, -0.022863262777342, -0.7759767404699184, -0.7759767404699184, -0.7653953660341518, -0.04304224140311878, 0.8662386693249257, -0.7759767404699184, 0.5603170309728726, 1.1895822377720042, 1.7077189413342075, 0.09350246611649288, -0.7759767404699184, -0.33313392332037683, 0.49022766247518657, -0.6849131448400869, 0.5231495182907284, 0.0693167521881854, 0.31026878039155104, 0.3179138274475635, -0.21555771264565965, -0.7759767404699184, -0.7759767404699184, -0.06393576974987128, -0.3344641612127934, -0.7076807095904958, -0.4348994847262467, -0.7759767404699184, 1.9210106302301768, 0.058640443162307626, 1.8806201867338395, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 0.6210794509221071, -0.7759767404699184, 0.32693968757256575, -0.7759767404699184, -0.7168362332087926, 1.260960867194228, 0.19748621046740375, 0.49332315861091836, 0.4883672343010661, -0.7759767404699184, -0.3490093974140895, -0.26440606072573286, -0.27018765248027066, 0.4764221897507786, 0.2164873412218548, 0.1391135229854979, 0.6106916788160021, -0.7454956029908596, 0.8421930892435318, 0.7346847349959552, -0.31075784089249375, 0.8768891370197099, -0.4319287283873309, 0.35414440729656116, 0.0299364832405322, -0.7759767404699184, 0.3466685102106634, -0.7759767404699184, 1.8032973128359222, -0.7759767404699184, -0.22575975941356202, -0.515758541745534, -0.7759767404699184, -0.4565310784052723, 0.9689213395713725, 0.44117439263952424, 1.845567528588532, -0.4800818339123784, -0.770013440319809, -0.7759767404699184, 0.7090055397950839, 1.0422432370919679, -0.7759767404699184, -0.7759767404699184, 0.40112261824526296, -0.5630863674458605, 0.6072292357787163, -0.3081871083589366, -0.5926498284979642, 0.5089534723049077, -0.7759767404699184, -0.5990770843680127, 0.1611408212759688, 2.706388634107604, -0.7054470541484602, -0.7759767404699184, 0.9868896292381264, -0.28003161223156586, -0.7759767404699184, 1.135714432623773, -0.2950832277737693, -0.717543524284444, 2.3648191010065838, -0.7759767404699184, -0.3207295675679637, -0.39300400519070167, -0.7759767404699184, -0.7759767404699184, 5.0, -0.24566858538083097, -0.5848142016251225, 2.891035133651958, -0.7759767404699184, -0.7718415302022801, -0.7759767404699184, 0.6935708818936732, -0.638031008268781, -0.7759767404699184, -0.7759767404699184, 0.8649647655342988, -0.2110838768254879, 0.2060898970746836, 0.6977689907110567, -0.7759767404699184, -0.6163250100142948, 0.3648782317422212, -0.7759767404699184, 0.11738812527459545, -0.7759767404699184, -0.7759767404699184, 0.2658378601974858, 0.9107739146642431, 0.09233665292221936, -0.7759767404699184, 1.214016471473076, 1.6482635020794212, 1.5651499550448966, -0.7759767404699184, -0.5457036607998225, 0.1647724142833666, 1.985063463783989, -0.2803796580452331, 0.09427187329176581, -0.10231716050212822, 0.0860328447824309, 1.933163143752992, -0.6177747086887467, -0.7759767404699184, 0.01826520913510563, 0.04431851297786555, 0.0318976187735489, -0.07212651188624439, 3.586483238010891, 1.0031209384610216, -0.7759767404699184, -0.7759767404699184, -0.38173031842227123, 0.8807445159543944, -0.7759767404699184, -0.7759767404699184, 0.5984659235776445, -0.007911468605541339, 0.354375354964182, 0.5016083323543491, 2.721539037366991, -0.15227362177576184, 0.6955145929862929, -0.7759767404699184, 0.3498035804991557, 0.27251245452230655, 1.908961777361272, 2.2936697949397327, 1.3750191867183654, -0.7759767404699184, -0.022715893357722408, 1.002048744717684, -0.7759767404699184, 0.57486776768607, -0.7759767404699184, 0.8887875195092764, -0.22355922240604076, -0.7759767404699184, -0.7759767404699184, 0.9021528036165686, -0.7759767404699184, -0.5860275444105199, 0.7343129151576809, -0.2846841223981699, -0.279596997958728, 0.5747806454840926, 0.02079633059971249, 1.438410482196123, -0.02344543105073249, -0.600370830609304, 0.2932810584913052, 1.2848521376127955, -0.7759767404699184, -0.5589436329093947, -0.18441798577101823, -0.7751381287102528, 3.7788115531337922, -0.39075835660232366, 2.7396645899915413, -0.21528194872668416, 4.888842911782938, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.4835274985425456, -0.7759767404699184, 0.21397918162573354, 4.638280049550958, 0.5146206977112537, -0.7759767404699184, 0.8924603848140529, -0.5466184254625062, 1.8931722810677336, 0.27642608720051826, 0.4566206422237415, -0.6521834470083787, -0.18765557231158592, -0.7759767404699184, -0.6641698746046067, -0.7759767404699184, 0.2736770863985871, -0.23156715558300628, -0.3975927980180616, 0.19519127876900927, 3.3212649447585876, -0.3242569092624841, 1.622510769833484, -0.09094092056543795, -0.7759767404699184, -0.775073653363437, 0.7163985231243563, -0.7759767404699184, 2.522634915636441, 0.6941095628984505, -0.010918144394677753, -0.6216342314654537, 0.9677524254173656, -0.5595088566528257, -0.7759767404699184, 0.3873257100763027, 2.335186034483359, -0.4155588357973913, -0.4433056697315815, 4.403729362054172, -0.7759767404699184, 0.679367305005647, -0.5051906186455066, -0.7759767404699184, -0.651920769877794, 0.03725260706788708, -0.05480477232349803, 0.7653700605213811, -0.692581190680775, -0.5309929662471425, 0.8074589439620804, 2.2193400855064147, -0.7759767404699184, 0.7083550765752259, -0.7759767404699184, -0.39721337344520496, -0.7759767404699184, -0.7759767404699184, -0.606083610590752, 2.068765750173235, -0.7759767404699184, -0.12160321038999893, 1.10286759050078, 0.2437071965826358, -0.7759767404699184, -0.723752688549094, 0.01502596136611004, 0.8509815044519545, -0.7149000022586183, -0.7759767404699184, -0.7759767404699184, -0.2674352553891118, -0.7759767404699184, 0.9932975410260387, -0.7759767404699184, -0.45384335847422524, -0.7759767404699184, 0.019602756432602432, 0.4950700325929662, 1.51340232036448, -0.2580292692836951, -0.5025951153502851, 3.6733092245029435, -0.7759767404699184, 0.762216089144999, -0.7759767404699184, -0.10714181085001376, -0.7759767404699184, -0.7759767404699184, 0.30594249857193456, -0.4662521810853026, -0.7759767404699184, 0.8469201331922519, 0.10028662768515677, -0.4584444074757624, -0.5305475170733378, -0.7759767404699184, 0.043629656923237226, -0.09888336442616988, 0.48459070834240886, -0.7759767404699184, 1.0120543604530756, 0.06508047203315462, -0.7759767404699184, -0.7759767404699184, -0.6048862155982593, -0.4492926631521386, -0.708369030360409, 0.5511216517158846, -0.5362236392808185, 1.0673875905715402, -0.7759767404699184, 0.44466747611225205, 0.013637395897791806, 2.559707627549639, -0.7040523744366244, -0.7759767404699184, 0.2740173798129285, -0.08112047642543992, -0.3132040551263603, -0.7759767404699184, 0.5639438248759245, -0.03206277664730534, -0.7759767404699184, -0.7759767404699184, 0.7117027841024488, -0.3617166873993179, 0.12715437645166963, -0.7687667939421471, 0.18075084762340005, -0.7759767404699184, 0.8182874953442979, -0.7759767404699184, -0.7005116829258771, 1.387529787257771, -0.7759767404699184, 0.6948498062857714, 0.6813300648509046, 1.450659420800094, -0.7759767404699184, -0.3968956727374827, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 0.13544656427068624, -0.48134222637846347, -0.7759767404699184, 0.6475149849679549, -0.7759767404699184, -0.6850013376114967, -0.10492846392550594, -0.10413550422274863, -0.4470923476417401, -0.28667235441264993, -0.7759767404699184, -0.7759767404699184, -0.6798115492552326, 0.3780207635754712, -0.6807150452517492, -0.23316706622349792, -0.2164878159841585, 0.9488697956240812, -0.20923112721832154, -0.30232167994308773, 0.26156503301704825, -0.5924200067740578, -0.7759767404699184, 0.056787619722767115, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.296474377375196, -0.7759767404699184, -0.024948067537742875, -0.7759767404699184, 0.1076698651409861, -0.3868586782429044, -0.7759767404699184, 0.11314940865120439, 0.6811539008052094, 4.7073085944910025, -0.26239021540316987, 0.4031310803303712, -0.7759767404699184, -0.14185594755795972, -0.7759767404699184, -0.5998961438151751, -0.5548125269719217, -0.29364393946412926, -0.7759767404699184, 0.26803570232333707, -0.32699801000033596, -0.7759767404699184, 3.5303989849784183, -0.7759767404699184, 1.0726868354230874, -0.7759767404699184, -0.7759767404699184, -0.2741945354475498, -0.7759767404699184, 0.24445113158868376, -0.7759767404699184, -0.7759767404699184, 0.1655148726419248, -0.11124748153445133, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.1429492573604189, -0.45649427296655337, -0.34068169622291045, -0.09805769698148668, -0.7759767404699184, 0.6747561778849828, -0.5018657253220234, -0.21872253738110062, -0.34862886535561655, -0.7759767404699184, -0.1848685847529478, 0.300803543805552, 0.9760454253925014, -0.7759767404699184, -0.7759767404699184, 0.5287861770940068, -0.05153015884708861, -0.4527999593569687, -0.6976803221101284, -0.4896115446194588, 0.36190788148136643, 0.14594619242424645, -0.7759767404699184, -0.7759767404699184, -0.472141881894286, -0.7759767404699184, 1.255724527525805, -0.017799617033010296, -0.7759767404699184, -0.4359051185839166, -0.5602388742562711, -0.23106118232015982, -0.7757091196886466, -0.675161346350334, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.04890024966532344, 0.7983898180655875, -0.6911596405991232, -0.4998900817274048, 0.3319210102192658, -0.7158943351484587, -0.718978294975665, -0.7759767404699184, -0.7060177737892724, -0.7759767404699184, -0.4068381617926241, 0.01310070836712661, 0.884271340822295, -0.19202046846309795, -0.33917256248693894, -0.14139907282419423, -0.7759767404699184, 0.3418121119417171, -0.7759767404699184, -0.4120298328744405, -0.027530354837919598, -0.7759767404699184, -0.6404352211105695, 0.02329924809723987, 1.128116490622727, -0.31203569471516274, -0.7759767404699184, 0.23032470953207193, 1.8773337600775006, -0.2372433147066736, -0.5656456928775492, -0.28466957742038096, 0.4518004218183281, -0.7759767404699184, 0.08605344401493308, -0.6334736588039362, -0.5981568561096117, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.0055839768299644635, -0.4795028035149033, 0.39012403090443765, -0.6232185542458661, 0.016812852495169166, -0.7759767404699184, 1.1623981911128853, -0.5663445532189307, -0.7759767404699184, -0.7759767404699184, -0.2992472260341061, -0.7759767404699184, -0.7759767404699184, -0.016078141387807755, -0.7759767404699184, -0.7759767404699184, 0.28455813259911605, -0.5740106609597866, -0.22174364739946462, 0.010570989717635532, -0.7759767404699184, -0.27596654935313597, -0.7759767404699184, -0.183592465991081, -0.7759767404699184, 0.3121227113167104, -0.7759767404699184, 0.12187314669951546, -0.7759767404699184, -0.7759767404699184, 0.7986854428933178, -0.7759767404699184, -0.7759767404699184, 0.2248830420300019, -0.08120811545403965, -0.28642516362262754, 0.38486472936752675, 0.9012724263823365, -0.7759767404699184, -0.19120244266917927, 0.31595306107642046, -0.2931016037568118, -0.594586931593063, -0.7759767404699184, 0.6232098102576127, 1.0833641781022096, -0.21153174400955796, -0.41556972607263754, 0.36734489754383914, -0.7759767404699184, 0.6862233793071291, -0.5186606524342037, -0.6255408869842695, -0.4572074567886006, -0.3049787225225057, 0.41641433666952876, 0.7646786941660159, -0.7759767404699184, -0.7759767404699184, 1.38561605210922, -0.7087185805087085, 2.027905142115686, -0.2834171588507496, -0.7759767404699184, -0.4101890441119543, -0.7759767404699184, 1.07242399216966, -0.4701904368604278, -0.727450726079072, -0.7759767404699184, -0.7759767404699184, 1.226200732916932, -0.04068514284534678, 0.7324056772580911, -0.45943213698260266, -0.487394561450503, -0.7759767404699184, 1.028824055351251, -0.2900310998798674, 0.4905088161575045, -0.31185000629314713, 1.044986700465805, 0.4564820588566971, -0.7156363648317522, 1.279385145606254, -0.7759767404699184, 0.1224454214347146, 1.018158230522559, -0.093300603256321, 0.3578552962742364, -0.7759767404699184, -0.7759767404699184, -0.31617307640447145, -0.7759767404699184, -0.7759767404699184, -0.1972249863780857, 0.26841320725445583, 1.3310750433697658, -0.7759767404699184, 0.15299489539095296, 0.5067467702941094, 2.81437793244307, 2.9538611684700973, -0.3492745294711286, -0.1325112054072398, -0.7759767404699184, -0.21042337240268763, -0.7759767404699184, 0.36110916285339534, -0.7759767404699184, -0.7759767404699184, 0.16493373802177633, -0.18381071449027656, 0.08955568270210476, -0.7759767404699184, -0.7759767404699184, 0.35998189015864057, -0.7759767404699184, -0.02956598723686534, -0.7759767404699184, 1.279998397309335, 3.311578432546032, -0.7759767404699184, 0.13041924405463598, -0.7759767404699184, -0.5015907366429799, 0.8522914384413686, 0.27492300771925987, -0.4266042328636862, -0.7759767404699184, -0.24619674527223565, 0.5174879041448499, -0.7759767404699184, -0.0311282802825213, -0.7759767404699184, 0.47827449636369707, -0.6027651037676677, -0.39740171983270345, -0.7759767404699184, -0.26771884553978975, -0.7759767404699184, 2.784897255940934, -0.6213568616923318, 0.16235964611517598, -0.7759767404699184, 0.0050855396174525735, 0.28127502839963353, -0.7759767404699184, -0.7759767404699184, 0.01373123684585581, -0.7759767404699184, -0.7759767404699184, -0.2967894570336225, 0.07435367061292769, -0.7759767404699184, -0.33870442831605097, 1.01268533192605, 5.0, 0.8673120443862561, -0.4038871556139039, 1.5239085195993778, -0.7759767404699184, 0.23531496589609088, -0.7759767404699184, -0.7759767404699184, 4.2994148486652275, -0.285309519526864, -0.2666511924874909, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 1.5397012645173958, -0.7759767404699184, 3.9587525677827786, -0.6494013785316944, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 1.23015903418175, 2.0391427248529626, 0.34850006992632876, -0.22181987932619585, -0.7759767404699184, 2.1280416290931194, -0.7759767404699184, 0.4954434767434815, -0.32254540098784984, 4.890099243468434, -0.632451883343377, -0.7759767404699184, 0.3266728573709114, 0.06395349466789683, -0.07666048417549681, -0.17810144154662, -0.7759767404699184, -0.7569456060842578, -0.49059078340322576, 1.2431012587828234, 2.2686373713399965, 0.0015375986904302735, 0.5848623085652798, -0.099306940759013, -0.16549700005915094, -0.7759767404699184, -0.7759767404699184, -0.004402363507534776, -0.4129445790790312, -0.7759767404699184, -0.16240538012308472, -0.7759767404699184, -0.7759767404699184, -0.6218442384258379, -0.7759767404699184, 0.3652990024448306, 0.739834543121397, -0.6798956904750886, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.3334385187816178, -0.40050611276956916, -0.7759767404699184, -0.08400614095267502, 0.774495299022538, -0.7759767404699184, -0.7759767404699184, 2.442380305809557, -0.7759767404699184, 0.47483966663449423, -0.7759767404699184, -0.1503392135623321, -0.10236633286358335, -0.6207873279840362, -0.7759767404699184, -0.7759767404699184, -0.1246865241839274, 1.099151311759762, -0.7759767404699184, 1.4783483332364433, -0.2473186651198351, -0.7759767404699184, -0.48529349510960573, -0.7759767404699184, -0.7109140415404802, -0.7759767404699184, 0.3515570255625416, 0.3113422292852531, 0.62620563268769, -0.7759767404699184, -0.36835207673324655, 2.2218022475331787, -0.7759767404699184, -0.5399533924301927, -0.3554626791961707, -0.7759767404699184, 0.5147010273347732, 0.12358982324036938, 1.126614444794713, -0.7759767404699184, -0.11265413593453731, -0.7759767404699184, 1.1013419183129074, -0.3332761613899638, 0.1923955420739855, 0.23648543052996449, -0.7759767404699184, -0.61173974268282, -0.7159359166189054, -0.4109110878189461, 0.9039247806059676, -0.7759767404699184, 0.24853827034710818, -0.7759767404699184, -0.014295754033597646, -0.7759767404699184, -0.4973775291049984, -0.7759767404699184, -0.5093061090357615, -0.7759767404699184, 1.9503090884319092, -0.2421551241727263, -0.7108487921794644, 3.2950568144263674, -0.49601419585068746, -0.48062073641427855, 0.3095707691224764, -0.7759767404699184, 0.20302164508516363, 0.9859154848882024, -0.4332972114497691, -0.6673339333291619, 0.9734784213938587, -0.6951093311632597, 1.876210917325206, 0.10915020425087933, -0.033838002261183706, -0.7759767404699184, 0.7913466525269718, 0.3768789459029276, 0.05415807970287309, 1.0325658800938633, -0.7759767404699184, 2.433590118624145, -0.1806179442010637, 0.49916049380824423, 0.23736861339443024, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 0.1581033573866395, -0.7759767404699184, -0.6341549931854068, -0.4759176326130088, -0.7759767404699184, -0.7188204413588595, -0.44663643272884235, 0.9013130341883416, -0.7197414448571933, -0.18674680652933415, -0.615501446792284, 0.24399337086642234, 0.2433873547360479, -0.24180139326621725, -0.5983142482740764, -0.7759767404699184, 0.07914686836925208, -0.7759767404699184, 0.20663972676801948, -0.5291628647208723, 1.0387348703177088, -0.7759767404699184, -0.19435755844736677, -0.7759767404699184, 0.6929992716498424, 0.9158072153026293, -0.5376660285501894, -0.7759767404699184, -0.31643961127662634, 0.5880787421305359, -0.7759767404699184, -0.7214872944150454, 0.9492807466208736, -0.44226961693559236, 0.5963900525345625, -0.7759767404699184, -0.7759767404699184, 0.2702274901944751, -0.7759767404699184, 0.2500474040830797, 0.23600736590470048, -0.3075205865976102, 0.1033916481972062, -0.7759767404699184, -0.7759767404699184, -0.3193197014595857, 0.7467099615050162, -0.7759767404699184, -0.1207159667449322, 0.8946366678865343, 0.018336457376555346, -0.7759767404699184, -0.7759767404699184, 0.2656311295487226, 1.7791641675583003, -0.7759767404699184, -0.45403248010165825, 0.7607339780581139, -0.7759767404699184, -0.1504299535506652, -0.46095249323950704, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 1.172542464047695, 0.12398091332840425, -0.7759767404699184, 0.2522837128760757, -0.7759767404699184, -0.5613145381212107, 0.04631176559381414, -0.31881664457553205, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 1.0504167762850691, 2.4354084623447605, -0.7759767404699184, 0.9257539128031226, -0.13052260423088619, -0.7759767404699184, 3.781921372750176, -0.5662683028341057, 3.02286697303876, -0.3183697741285169, -0.7759767404699184, 0.5104245085356057, -0.015519304144776445, 1.9638942453506352, -0.7759767404699184, -0.6423098158715579, 0.5622533588280378, -0.1255058420444005, 0.8286796973928754, -0.7759767404699184, 0.3235634807487641, -0.7759767404699184, -0.44658899542818936, -0.7759767404699184, -0.7759767404699184, 0.3311632685591739, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 2.2471521503435214, -0.716995332746919, -0.7759767404699184, -0.7759767404699184, 4.740609948711775, 0.09945424149438739, -0.7759767404699184, -0.39637275494467195, 0.4673229402454635, -0.24599547821918913, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 1.0095100968257957, -0.4706218394249734, 0.17791383863099802, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 0.33137516747415674, 2.037400576142879, -0.0895984264988441, -0.7759767404699184, -0.7759767404699184, 3.417301667641536, 0.21218918953694377, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.2570988336995121, -0.7759767404699184, 0.16151227195237197, -0.7759767404699184, -0.7455954820428049, -0.44773686735544627, 3.4082731495510434, -0.7759767404699184, 1.300304072289855, 0.4556263416355659, -0.7759767404699184, 0.614025801186306, -0.7759767404699184, -0.7759767404699184, 0.2789157887029982, -0.21251921510308827, -0.7759767404699184, -0.7759767404699184, 0.07291076451693455, 0.8567295024760657, -0.7759767404699184, -0.7759767404699184, 0.8746679638634997, 0.3783533784228563, -0.23996333630158825, -0.7388470322708108, -0.7759767404699184, -0.42382318881119985, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.5612594037955092, -0.7759767404699184, 0.012958876375600541, -0.5057816837200338, 0.25978486063407547, -0.4790829372588848, -0.7759767404699184, 1.393379969288273, 1.3435087105748789, -0.30898217228436736, 1.0414223687516306, -0.7759767404699184, -0.7759767404699184, 0.9623952959841642, 0.10081017305315128, -0.1860223632701694, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 0.7079182842473379, 0.9467571560584694, -0.7759767404699184, 0.992478739992188, -0.01981250906059332, 4.462029767641386, -0.7759767404699184, 0.07343283323743666, -0.7759767404699184, -0.12618709336444892, -0.35638347965547235, 0.6694702228608569, 1.0401159787161953, 0.06823717520739596, -0.7759767404699184, 0.012517580272865897, 2.2706270061695877, -0.6858096267610204, -0.6953188028389283, -0.7417408460463892, -0.7302369060961145, -0.12699038959964315, -0.7569025202791795, -0.1990091087931007, -0.7759767404699184, 1.321140011384453, 0.620414811886334, -0.7759767404699184, -0.7759767404699184, -0.0427643363452826, -0.1488664053546445, -0.7759767404699184, 0.33994909963448794, 0.10174171612295299, -0.07206013658151744, -0.7759767404699184, -0.7759767404699184, 0.12362127583193067, -0.7759767404699184, -0.7759767404699184, -0.3877183085798857, 0.9799095165473842, -0.07025028358397027, -0.45549004192399917, -0.7759767404699184, -0.4331774922544245, -0.5400807717343993, 5.0, -0.7759767404699184, -0.7600763802514573, 1.0058846319054855, 0.1125240484386951, -0.7759767404699184, -0.5350010489905078, -0.7759767404699184, -0.034705754159366914, -0.7759767404699184, 0.3552788417316502, -0.35113300108732154, 0.36460298464986796, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.029684635862780792, -0.6138680162537438, -0.08693027214705717, -0.29060710314998356, -0.11396909052541983, 1.684176307388318, -0.7759767404699184, -0.5663209822333531, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 0.49279067952560257, -0.19205413602589652, -0.3643173589607592, -0.6457003646341172, 0.3584226242403437, -0.44669010886514654, -0.7759767404699184, 0.02004272355259558, -0.7759767404699184, -0.7485754120542587, 0.24784542734425316, -0.7759767404699184, -0.7759767404699184, 1.626951639498415, -0.7759767404699184, -0.4870809030652872, 0.14749526947485234, 0.49527410527624394, -0.7759767404699184, 0.0006964264470854379, -0.7759767404699184, -0.7219952796101001, 0.0748885123342292, -0.7759767404699184, -0.7759767404699184, 0.51135361513705, -0.5420437899929678, -0.7759767404699184, -0.5500763093506629, -0.060461882694529984, 0.3511650494860106, -0.639269371000107, -0.5515616875201204, -0.30608882919017577, -0.4321218369629882, -0.3748244811003376, 0.2998597445615732, -0.3715168276363132, 0.05771753848033034, 0.12803010224630637, 0.25844280956172716, 0.9211498735904163, -0.020636330695912832, -0.3285575712481299, -0.6923267827761407, -0.7759767404699184, 0.31248471144917006, -0.7759767404699184, -0.7759767404699184, 3.1983358130960187, -0.19633146698118067, -0.5335645293949138, 0.8283564592570597, -0.7759767404699184, 0.6013697508690217, 0.7175876673489914, -0.7305115994456585, -0.6412007982314114, 0.14674269608097992, -0.7759767404699184, 0.38187400137129246, -0.25656059568898265, 0.09851649650512155, -0.7759767404699184, -0.7759767404699184, -0.7759767404699184, 0.3675660255056427, 0.30491608090082445, -0.6483798984006337, -0.2173081305816865, -0.32087486968109447, 0.45685513384533866, -0.7759767404699184, -0.38065864150555856, 0.07925326082099017, -0.051754313936248825, -0.45105677699364793, -0.7759767404699184, -0.1923255807509588, -0.7759767404699184, -0.5016854820376322, -0.017718770582868554, -0.7385947701195624, 0.6367748847704587, -0.5686826768564428, -0.7759767404699184, -0.6156050151556959, -0.7759767404699184, -0.6819649627496934, -0.6503209792149118, -0.7759767404699184, -0.7759767404699184, -0.23796015323126096, -0.4621906621608514, -0.7759767404699184, -0.7759767404699184, -0.14194122395057357, 0.19148474590143438, 0.2705338945488929, -0.18262725535848084, -0.7759767404699184, -0.6115336396092405, -0.7531785352840679, 0.3772720294650746, -0.6630293120824302, -0.3964517925016371, -0.7759767404699184, -0.45088655645410186, -0.52626590384033, 0.27471103497190286, -0.29108627526086867, -0.6496725002401194, -0.7759767404699184, -0.5528588115925475, -0.3912246818800327, 0.6381307424968462, -0.11158238518544775, 0.25916319204029337, -0.7759767404699184, -0.7759767404699184, -0.6140595374333478, -0.3799990599874412, -0.6563162418614197, -0.7759767404699184, -0.7759767404699184, -0.7569785906975917, -0.6392694263743878, -0.7759767404699184, 0.6092566727840881, 1.4572662370050673, -0.23957981403194595, -0.04725696250477992, -0.31558717959616395, -0.7759767404699184, 0.0540584798295956, -0.4342927671883144, -0.7759767404699184, -0.31994004107062396, -0.7759767404699184, 0.15909285887047153, 0.43065313160022023, 1.5101166320318886, -0.7759767404699184, -0.7759767404699184, 2.5817625391482, -0.43672188922746813, -0.6969905892960515, 0.640459858584664], [-0.3142110621652231, -0.4155505896196347, 1.4103275622498392, 0.567043917915412, 0.08352881622541165, 0.1874668410878708, -0.4155505896196347, 0.4351527674851391, 0.6896191353102135, -0.10005187536308222, -0.4155505896196347, -0.4155505896196347, 0.12395896172929984, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.3218009397824075, -0.4155505896196347, 3.041697930888426, -0.4155505896196347, -0.09586534866705933, 1.8195416462456337, -0.34569059310915895, -0.4155505896196347, -0.302593330018585, 3.4404393279842234, -0.4155505896196347, -0.4155505896196347, -0.4126996423832729, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.10545209955022872, 0.0605939371062601, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.26400629612057774, 0.16448795867933894, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.12647551473238533, -0.4155505896196347, -0.21784438627206215, -0.31310513761832814, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.19665287564530853, 0.1418052947062914, -0.4155505896196347, -0.3755942142643267, -0.4155505896196347, -0.4155505896196347, 0.28254053046813715, 0.37302986406775707, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 2.728309287125038, -0.4155505896196347, 0.8165045636740821, -0.13436594753235742, -0.4155505896196347, -0.4155505896196347, 0.32193038446662015, -0.4155505896196347, 1.4630100086012916, -0.059686439167513185, -0.4155505896196347, -0.10783400344753676, -0.4155505896196347, -0.4155505896196347, 0.7508305420190309, -0.13163385671358815, 0.28749514729660236, -0.4155505896196347, -0.4155505896196347, 0.12705142845127326, -0.4155505896196347, 0.5844581836976654, -0.27600302279231687, -0.3722856749562483, 1.394855103564663, -0.32918974348102864, -0.3580333058406976, -0.4155505896196347, -0.050005403594162154, -0.4155505896196347, -0.1747391094962906, 0.2597295515596425, -0.4155505896196347, -0.4155505896196347, -0.14355478927892099, 0.15849343423458195, -0.4155505896196347, -0.4155505896196347, -0.41514445143514644, 0.27998315718113165, 0.009897876974932177, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.07906538551481578, -0.35928739358974054, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 1.0293259689026577, 0.6599565035437801, -0.020980555599963386, 0.31450280196949326, -0.4155505896196347, -0.4155505896196347, -0.25494307008914197, 0.039023543846977884, 0.4142518288497747, -0.3983168147014811, -0.4155505896196347, 0.15690221386836867, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 2.4439524493459874, 1.595017957293668, -0.4155505896196347, 0.6739180706592754, 0.06493596288541661, -0.3000627809832327, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.1798162670032342, -0.4155505896196347, -0.4155505896196347, -0.0692584022471247, 0.5547082171584174, -0.4155505896196347, 5.0, -0.08021179029364071, 0.18138478992574428, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.7199056828547423, -0.12072651136735472, -0.4155505896196347, -0.4155505896196347, -0.1043449072944135, -0.4155505896196347, -0.4155505896196347, 0.6937576518742579, -0.4155505896196347, -0.22023984232985166, -0.4155505896196347, 0.046581216766686986, 0.8780545605790366, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.35520770203373037, 0.18267230601880402, -0.4155505896196347, 0.7457032230766332, 0.32550573570443, -0.4155505896196347, -0.4155505896196347, 0.551901603865928, -0.06693071461400925, 0.1652839047654185, -0.4155505896196347, -0.1789789247995719, -0.19691727119792113, 1.3379798203399178, 0.20281847067527506, 0.5817966804892328, -0.4155505896196347, 0.6226462248471863, -0.4155505896196347, -0.4155505896196347, -0.210852853819199, -0.4155505896196347, -0.4155505896196347, 0.08602131225260926, -0.4155505896196347, -0.4155505896196347, 0.2601215503283893, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.3985485967498114, -0.16342592138023698, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.24824048617171698, -0.4155505896196347, -0.4155505896196347, 0.33749867147119766, -0.4155505896196347, -0.4155505896196347, -0.17298032153300755, -0.4155505896196347, 4.486296457721876, -0.4155505896196347, -0.4155505896196347, 1.0318728812113738, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.268233575045069, -0.4155505896196347, 0.21254266978057465, -0.4155505896196347, 0.24322289560870852, -0.1414622097333892, -0.4155505896196347, -0.4155505896196347, 1.3489517550291203, -0.4155505896196347, -0.4155505896196347, 0.1551222640178266, -0.4155505896196347, -0.4155505896196347, 1.6503277407226515, -0.2761386556139425, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.12658303574938456, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.13761607271371532, -0.4155505896196347, 0.6336540531682906, -0.35153277955768253, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.21974719263474504, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.4122952420219112, -0.4155505896196347, -0.4155505896196347, -0.13675964009954153, 0.32804928898342983, -0.2145638138855665, -0.4155505896196347, 0.6826199730612637, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.6509079492743199, 1.3046421221390223, -0.4155505896196347, 0.8730948092337069, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.34978584417071035, -0.4155505896196347, -0.3412024075491536, -0.16418714949481578, -0.4155505896196347, -0.4155505896196347, -0.4047651598073499, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.2464926711139474, 1.2446713490655512, -0.4155505896196347, -0.4155505896196347, 0.021746182519026987, -0.4155505896196347, -0.4155505896196347, -0.3079926823824568, -0.4155505896196347, 0.5378129694546009, -0.4155505896196347, -0.4155505896196347, -0.36021749092540645, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.1911457943995864, -0.15306976881857878, -0.2864118521379622, -0.4155505896196347, -0.4155505896196347, 0.17130107866774003, -0.3837445849796332, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.3467184562045842, -0.4155505896196347, -0.39894827330078225, -0.1201183590358955, -0.12201693062181959, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.34467226333508016, -0.4155505896196347, -0.0802975895100097, 0.32987765684813253, -0.4155505896196347, 0.4343855650962702, -0.07774918963098353, -0.4155505896196347, -0.4155505896196347, -0.22787342932131419, -0.4155505896196347, -0.32776904185942757, 1.8804183976217017, -0.4155505896196347, -0.4155505896196347, -0.009304592273759432, 0.09796352667054872, -0.008463683175522853, -0.008031232091677512, 0.003919619831265353, -0.4155505896196347, -0.4155505896196347, -0.16770316587186662, -0.4155505896196347, -0.15034343633647884, -0.4155505896196347, 0.055635769303515076, -0.36741926864763147, 4.927553957779925, -0.404123486908512, -0.4155505896196347, -0.4155505896196347, 0.13715730930545245, 0.00025635798697208715, -0.4032493061709929, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.3449581206883215, 5.0, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.12803228105086248, 0.049203947174882794, -0.4155505896196347, -0.10333950171199746, -0.4155505896196347, -0.4155505896196347, 0.4310327735707133, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.4771775883572429, -0.4155505896196347, 0.0727335185135304, 0.424263177010306, -0.4155505896196347, -0.4155505896196347, 0.1840771482214964, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.1326906635235497, -0.4155505896196347, -0.4155505896196347, 2.5673440069359135, -0.4155505896196347, -0.4155505896196347, 0.11193709032077231, -0.37806223436154707, -0.39732683066445723, 0.2266028484115291, -0.4155505896196347, -0.4155505896196347, 0.4671797722878851, -0.4155505896196347, 0.7741657215089625, -0.039016865700895145, -0.4155505896196347, -0.06757344095855249, -0.4155505896196347, -0.4155505896196347, 0.005378254495674076, -0.35626504061498016, -0.4155505896196347, 0.022473076551216057, -0.3298670678317255, -0.4155505896196347, -0.12914805475276886, -0.3185840510005105, 5.0, -0.4155505896196347, 0.01196881477181609, -0.4155505896196347, 0.22821959740364292, 0.29379251226400915, -0.4155505896196347, -0.2605356146482603, 0.31974667924329786, 0.28837386947229754, -0.4155505896196347, -0.4155505896196347, -0.11322392653511303, -0.4155505896196347, -0.4155505896196347, -0.17307818926331195, 1.1173537575346735, -0.4155505896196347, -0.3281477544659624, -0.03188965244026699, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.357515705427867, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.09255347339770005, -0.4155505896196347, 0.7839271578580554, -0.02410658862610342, 0.41624651667193296, 0.08100085844156105, 0.09991185988252109, -0.4155505896196347, 0.4148776640734251, 0.44932681722372625, 0.5016500393393075, -0.4155505896196347, -0.12019535279577404, -0.14465405574904244, -0.4155505896196347, -0.26997444018546923, 0.10856855934165685, 0.2423791073421341, -0.4155505896196347, 1.684802134582022, 0.44958287126094465, 0.08522819734872568, -0.030951211514698266, 0.2790354309376853, -0.4155505896196347, 0.23114396868101636, -0.4155505896196347, -0.12904032587091843, -0.4155505896196347, -0.4155505896196347, -0.22860635761047157, -0.4155505896196347, -0.318005740049185, 0.12646417408330762, -0.39079337689274984, -0.4155505896196347, 2.3486801933229193, -0.4155505896196347, -0.4155505896196347, -0.39959012689742446, -0.4155505896196347, -0.03519172261699371, -0.4155505896196347, -0.17141899653133386, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.2186720352756676, 0.6392064333291432, 0.275412813353046, -0.4155505896196347, -0.199138021720479, 0.15695221542511123, 0.7597837958166251, 0.14745374311723897, 0.40598688822869217, -0.4155505896196347, 0.10798879081136134, -0.32622282649324263, -0.35851015010130105, 0.5180509338400922, -0.2916447285894246, 0.06410493893179514, -0.02160420745429085, -0.4155505896196347, -0.4155505896196347, 0.38380577537951865, 0.6878549728993723, 0.6348678145658517, -0.10395842693164255, 0.16726918730435084, 0.582553709816657, -0.22469263211414453, -0.4155505896196347, -0.15301475271031978, 0.16780855150568466, -0.4155505896196347, 0.9222052633770723, -0.11025466422478788, 1.1268416728919872, -0.4155505896196347, -0.2993210352410509, -0.4155505896196347, -0.28755029929050224, -0.3478213696212622, 0.9470347312326208, 0.9208018607585471, -0.4155505896196347, 0.6861816962356287, 0.6004241318353827, 1.2007477166768323, 1.3523935128562148, -0.05583159266362679, -0.4155505896196347, -0.4155505896196347, 5.0, -0.4155505896196347, -0.4155505896196347, 0.6872743406185771, 0.038929778931549947, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.17333546694707114, -0.4155505896196347, 3.1202896291931506, -0.22170423533092978, -0.4155505896196347, 2.379109355672286, -0.4155505896196347, -0.06764868322436138, -0.34604401102222143, 0.10995948556406536, -0.4155505896196347, -0.4155505896196347, 0.7126204272456147, 3.5678578823513667, 0.9425074309711394, -0.4155505896196347, -0.4155505896196347, -0.12358571746809278, -0.4155505896196347, 0.7815378320295118, -0.4155505896196347, -0.4155505896196347, -0.08031176941405724, -0.20579158779700854, 1.0074756724951186, 0.2879985218937562, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.1569137944481405, 0.6222796107459222, -0.06645644361010476, -0.4155505896196347, -0.4155505896196347, 0.4274544471922909, -0.15912816281422323, 0.5815737368878641, 0.46592723809009357, 0.5893933661398736, 0.48674583251108827, -0.06973946328968478, -0.4155505896196347, -0.4155505896196347, 0.03974539933458198, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.08812310513681211, -0.4155505896196347, 0.8485777311424579, -0.3531941436624462, -0.4155505896196347, -0.026002017119928948, -0.2160585581195043, 0.2644752367393058, -0.4155505896196347, -0.22280868430405296, 0.17324696458662867, -0.0176976798788002, -0.0012201755072493267, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.20556059059707618, -0.4155505896196347, -0.4155505896196347, 0.03443184618707859, 0.8711687415901902, -0.4155505896196347, -0.13472485985832477, -0.4155505896196347, 0.6032988854451266, -0.4155505896196347, 0.2778789170038437, -0.03878756393611962, 0.4017094038063652, -0.4155505896196347, -0.28013997980684757, 0.061570407046913946, 0.27821721928315457, 0.5335784806127362, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 1.492602868521754, -0.4155505896196347, 0.03656329450512696, -0.34089743764158614, -0.4155505896196347, 0.46996335223370456, 5.0, 1.030179066480174, -0.4155505896196347, -0.4155505896196347, 0.3433478459012022, -0.13843704357123546, -0.09762324888677215, 0.4899307685227381, -0.15569993707830512, 2.0114639363121225, -0.4155505896196347, 3.6795174048117687, -0.12616713181068825, 0.026022947149267624, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 5.0, -0.4155505896196347, 0.9535495213954288, -0.4155505896196347, -0.01669332999144011, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.10739351468542416, 3.0207537087557674, -0.4155505896196347, -0.4155505896196347, 0.05805451063520958, 0.6878623627647651, 0.8568182948049738, 0.09248024654972524, -0.4155505896196347, -0.4155505896196347, 0.1606296811665212, -0.28951079698868815, 0.2725180495233806, -0.08544278328915121, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.08939089892678079, 0.2211045006430865, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.8176391479424409, -0.4155505896196347, -0.35057039954706615, 0.08468950495333631, -0.4155505896196347, -0.4155505896196347, -0.20831592262737153, 0.7048955226318128, -0.4155505896196347, 0.3112023633214883, -0.037355345641180336, -0.4155505896196347, -0.4155505896196347, 0.07312124651591297, -0.4155505896196347, 0.7438176557343528, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.12666047730480906, 0.888234723976249, -0.26911468453117665, 0.06878795421403794, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 2.8235114833853037, 0.49498994714788797, -0.4155505896196347, -0.4155505896196347, 0.771538768320541, -0.4155505896196347, -0.4155505896196347, 5.0, -0.4155505896196347, -0.08878288248096369, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.3814688504146624, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4081182197553677, 0.7957417291464972, -0.4155505896196347, 0.7819331418418393, -0.2121102106239546, -0.4155505896196347, -0.4155505896196347, 0.7599634559206995, -0.15187810503798868, 0.3576902310150772, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 5.0, -0.18420931796834628, -0.4155505896196347, 0.031535546800964355, -0.4155505896196347, -0.38586598619984747, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.3215841644743936, -0.4155505896196347, -0.05751969704429753, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.09796349460470431, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.3153300269453661, -0.4155505896196347, 1.3397599141488745, 0.18389815992336656, -0.4155505896196347, -0.1599289555003322, -0.22105741816804395, -0.3729759885549209, 1.0363901043836883, 0.391710436069672, 1.0759530443852199, 0.11967499917822218, 1.7820097675595616, -0.4155505896196347, -0.4155505896196347, 0.379697442096847, -0.4155505896196347, -0.13430289374583107, -0.36748681813554657, -0.10099885782137692, 0.14047046428026697, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.055721104578789385, 1.5464291124802427, -0.16353741717399098, -0.4155505896196347, 0.13218560941153526, -0.10353787641024621, -0.2664904545561399, -0.3934693929090701, 4.1633293967431975, -0.4155505896196347, 0.2676328686379118, -0.4155505896196347, -0.3483925546309604, -0.4155505896196347, 0.886878251801573, 0.21240595727082393, 0.25737659922439354, -0.4155505896196347, -0.32984702162219653, 0.6339085716490641, -0.25395474757217723, -0.16299135890627947, -0.4155505896196347, -0.4155505896196347, 0.37716958028527203, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.23619623730216027, -0.4155505896196347, 0.06669700619722864, -0.4155505896196347, -0.26710692048616547, 1.1569708259008924, -0.4155505896196347, -0.4155505896196347, -0.3460679800986066, 0.13398029100672168, -0.4155505896196347, -0.4155505896196347, -0.04097491610599675, -0.1406500443323589, -0.3288061962709989, -0.4155505896196347, -0.4155505896196347, 0.03626477273497572, -0.3159599409908216, 0.4092635737379369, -0.4155505896196347, 0.38905905793654866, 0.2445497123495346, -0.4155505896196347, 0.05812860123368494, 1.6340412451770288, 0.5740980722795525, 0.3694290321901811, -0.3537203416669173, -0.16206947319863432, -0.4155505896196347, -0.1548837408416067, -0.4155505896196347, 0.43454257574277794, 1.8307218407777028, -0.39078682078652144, -0.2625187977936149, 0.13648929426570414, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.3324112209374584, 0.5482678055109216, 0.7470615187245865, -0.2297998568608748, -0.4155505896196347, 1.7203435482261682, 0.1343492084426523, 0.005900007784028929, -0.3301189230817882, -0.025687443986312782, -0.4155505896196347, 1.8101582446988687, -0.4155505896196347, -0.22423767553115073, -0.2547789934836781, -0.4078611452629155, -0.3652406619515707, 0.06383971954204666, -0.4155505896196347, 0.17397856126043096, -0.4027388933568726, 0.6296321429217951, -0.4155505896196347, -0.39889242193379304, 0.08731410682094948, 0.10255997495819945, -0.30651509319317877, 0.16698851637787349, -0.16428165819539653, 0.05884925706781623, 0.2414139141441274, -0.4155505896196347, -0.27727766660361514, -0.4155505896196347, -0.4155505896196347, -0.3160132116032776, -0.20320074417811748, 0.5447306512396841, -0.4155505896196347, 0.05635359395545048, -0.4155505896196347, -0.4155505896196347, -0.2722457920915063, 0.1383314341522712, 0.3639338035207705, -0.12343175394140424, 0.15576235112473077, -0.057954307504393766, 0.2577994050943193, -0.19303636822060782, -0.4155505896196347, -0.4155505896196347, -0.3563856477768599, -0.4155505896196347, 0.8484372277277299, -0.05776029954478602, -0.4155505896196347, -0.33070663331807304, -0.25472341353828726, 0.6442290465164435, -0.14216091190896996, -0.06205412324740898, 0.8454176519507617, 1.5853403047431125, -0.4155505896196347, 0.5494924117758757, -0.06584514818654644, -0.08080434712995495, -0.4155505896196347, 0.8639931822946111, 0.3014762447706321, -0.3131937440238234, 0.48978613830006823, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.1839151389437664, -0.4155505896196347, -0.4155505896196347, 0.4360072086745516, -0.4155505896196347, -0.4155505896196347, 0.9612558073873346, 0.18716304084243907, 0.06400354422028116, -0.3166283399196808, -0.2387133661389153, -0.3019358239432574, -0.4155505896196347, 0.20130753111945557, -0.16512645417088445, -0.24032731993843742, 0.08433234412143852, 0.10307102733757738, 0.1677193932595926, -0.4155505896196347, -0.4155505896196347, -0.046598219780155305, -0.3937008465522623, -0.4155505896196347, -0.4155505896196347, 1.3412559300154983, -0.4155505896196347, -0.20755217524049993, -0.3725400644742719, -0.4155505896196347, -0.4155505896196347, 0.8015953662874178, 0.6656688694917534, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.19089445892427737, -0.4155505896196347, -0.4155505896196347, 0.36641036814985145, -0.35920495340309533, -0.024739405832962583, -0.06885215159512309, 0.3093790340013726, -0.4155505896196347, -0.4155505896196347, 0.9122276014860615, 1.156621774726466, 0.2587967010192598, -0.2307482789033366, 0.20202929063478237, -0.03375984022502665, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.1587628923248498, 0.397084115849231, 1.3652217433429636, -0.29091800250872124, -0.4155505896196347, -0.4155505896196347, 0.2839023770903679, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.3573021770317494, -0.020227197212166197, -0.4155505896196347, -0.4155505896196347, 0.6161548519201644, -0.4155505896196347, 0.7443350422840673, 0.15680508992321704, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 1.0037297785196273, -0.2942391711687341, -0.020633423871098046, -0.4155505896196347, -0.28065727038428323, -0.0227203650453082, 0.4653008270327786, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.28057210698425517, -0.06755206313366904, 0.11899345204730169, -0.4155505896196347, -0.4155505896196347, 0.39282045143490957, -0.4155505896196347, 3.5368093149209687, -0.02877595185182636, -0.4155505896196347, 0.3463881516901822, -0.4115825081993506, 1.2731996844804578, -0.4155505896196347, -0.4155505896196347, 0.8720087869379262, -0.4155505896196347, -0.4155505896196347, -0.0033654438333034055, -0.1929793366945147, -0.25433694517205063, -0.03586180106071542, -0.4155505896196347, -0.4155505896196347, 0.7872427121398146, 1.5847113024342943, -0.4155505896196347, -0.31270967185104626, 0.19224808399645932, -0.4155505896196347, -0.4155505896196347, -0.09429653782771574, 0.386887973067761, -0.4155505896196347, -0.28369883580940936, -0.28882247181564646, -0.4155505896196347, 0.04819158360232513, -0.4155505896196347, 0.3685543888362922, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.521503728479134, 0.06749520763183645, -0.4155505896196347, -0.4155505896196347, -0.13346985437437545, -0.06193463776152632, 1.167248785049197, -0.4155505896196347, 5.0, 0.6072847101151658, -0.4155505896196347, -0.4155505896196347, 0.345158410908364, -0.4155505896196347, -0.000617421616416887, 0.17984443486677337, 0.2750608350241548, -0.4155505896196347, -0.4155505896196347, 0.030846753763068193, -0.4155505896196347, 0.014435878145392413, 0.053090344565101054, -0.4155505896196347, -0.24022406576404062, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.5682870468299781, 0.7495929794965744, -0.4155505896196347, 0.3181360244908287, -0.40846579685558526, -0.41337394435700187, -0.38375572376212747, 0.3279900740880137, -0.3086345569730346, 0.5971317068725776, 0.5672109096788158, -0.4155505896196347, -0.3387931074902887, -0.4155505896196347, -0.3140359607443453, -0.4155505896196347, 0.1977392818302023, -0.4155505896196347, 0.34062266508643135, -0.4155505896196347, -0.23755951543578577, -0.4155505896196347, 0.4000993728737024, -0.4155505896196347, 1.047033238049089, 0.05394368207331491, -0.4155505896196347, -0.4155505896196347, 1.3933934457735022, -0.18346298954989895, 0.11074132372530511, -0.4155505896196347, 0.3736935603549992, -0.059012689784165136, -0.2595071637226334, -0.4155505896196347, -0.11882191752099808, 0.036163857884850825, 0.24562066699769697, -0.4155505896196347, 0.1909015449525413, 1.0732114043248047, 0.5195865862574489, 5.0, -0.4155505896196347, 2.0319697570797146, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 4.672781342416338, 0.13301298641859965, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.6571520016414005, -0.4155505896196347, 0.5115678145289664, -0.4155505896196347, 1.2274848254985569, -0.4155505896196347, -0.059327862744517394, -0.16424588452883973, -0.4155505896196347, -0.2118343623044377, 1.1156786573976465, -0.40347941920142927, -0.4155505896196347, -0.4155505896196347, 0.7027140727570192, -0.18172126065899752, 1.1187382536144643, -0.08289791039133514, 0.3822129714707196, 0.5823888294433691, -0.4155505896196347, -0.4155505896196347, -0.265517763523925, 0.08121175752206476, -0.19489679082609965, -0.4155505896196347, -0.4155505896196347, 0.04137208145744892, -0.23831431340775072, -0.34032589873411395, -0.1592875967607477, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.14083231968100335, 0.20669498292087832, -0.04178314664363626, -0.4155505896196347, 0.2948414412744177, 0.5461289673274807, 0.438394135196147, 0.35139027479616736, -0.35907363333570425, -0.029338013496864195, -0.26775498528866293, 0.23905640312567875, -0.233705712630421, 0.9044431940600052, 0.4071553507111202, -0.4155505896196347, -0.4155505896196347, 0.8316548434226235, 4.9148836976624635, 0.06608052827066795, -0.38160013241794083, -0.4155505896196347, -0.21625592510883576, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.1446249521557943, -0.4155505896196347, -0.4155505896196347, 0.7368119673705131, 0.5673179187685781, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.08659569826257234, -0.4155505896196347, -0.2853260337832701, 2.252616357952416, 0.4910571951474844, -0.2916969734981614, -0.4155505896196347, -0.06792935415083866, -0.4155505896196347, 0.14823322995767227, 0.9347126585390835, 0.9787855278198078, 0.5380883139196573, -0.14018265933938764, -0.4155505896196347, -0.280657894204089, 5.0, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.3718796363181086, -0.4155505896196347, -0.2954160312254708, 0.5412972430007638, 0.9146280600988307, -0.4155505896196347, -0.4155505896196347, -0.29730462169450184, -0.28985573335169856, -0.013027356930299216, -0.4155505896196347, -0.4155505896196347, -0.12772421003906853, -0.11575428362590989, -0.3652622047288071, 0.6256083132297448, -0.17669399281622392, 0.7056166583273293, -0.09714446718581056, -0.3680116755272619, -0.4155505896196347, 0.05042169142196958, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.07122636178991083, 0.7765726102643439, 1.0238302123857181, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.11958242584349311, -0.39308864688989875, -0.4155505896196347, -0.31209422562647265, -0.03051528143578209, 0.4972295562230395, 0.7884652070146525, 2.16155037492153, -0.4155505896196347, -0.304552352142999, -0.4155505896196347, -0.2118548283926824, 0.4431228812687726, -0.4155505896196347, 0.27159964281080384, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.2786897187236783, -0.4155505896196347, -0.11847284235350636, -0.4155505896196347, -0.4155505896196347, 1.0856726368211798, -0.09236334424256909, -0.2955939158424052, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.3423438898249796, 0.3320827638894022, 0.5439187257693467, -0.4155505896196347, 0.7369741605200206, -0.04167409814296647, 1.2413284426846132, 0.052133980816649966, -0.35919755154116867, 0.5301320201440357, 0.07248970094173503, -0.16916779880363955, 1.1882027003819198, -0.4155505896196347, -0.18902993350390954, -0.4155505896196347, 0.7124722460486673, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.3090478816567644, -0.25031671444041576, -0.2567429941700039, 1.1775297193381138, 0.04598647656105222, -0.4155505896196347, -0.4155505896196347, 0.34471146801056846, -0.4155505896196347, 1.1911589344555302, 0.20541221745556984, -0.22052045327365513, -0.4155505896196347, 1.7407557000506102, 2.911747627832463, -0.4155505896196347, 2.054991970971682, 0.7511491699813881, 1.736511997870075, 0.4799544502436175, -0.4155505896196347, 0.19946903817944572, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.905429789075972, -0.10705295705758873, 0.02777309760754727, -0.33781657756696165, 0.27954921852698045, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 1.0717772905773781, -0.4155505896196347, 0.46665595559555806, -0.4155505896196347, 0.15058147965130977, 0.8717296995540312, 1.0418561094945067, 3.834593250200349, 0.1898971950651812, 0.1571731436086472, -0.4155505896196347, -0.22074471649384508, -0.4155505896196347, 0.24522708468636958, 1.540561175469923, -0.30695221092903324, -0.4155505896196347, -0.23321750165316318, 0.25565341697618205, 0.7502787973938604, 0.8172786760669567, 0.590039835403252, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.2283439294895526, -0.4155505896196347, 0.4087582796952222, -0.099144601434735, 0.01611558495175332, 1.0702800270711479, -0.4155505896196347, -0.4155505896196347, 1.363345869200741, 1.3230127516697279, 0.6455383003304318, -0.21888157067497047, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.39600952117740196, -0.19686866123920693, 0.7622065199978447, -0.4155505896196347, -0.4155505896196347, 0.06864673100722934, 0.22117734360195346, -0.35861435200194136, -0.4155505896196347, -0.07188775474248979, 0.2635631641970641, -0.2710957322933501, -0.4155505896196347, 1.0440550263238606, 2.2542246613840784, -0.265630494960756, -0.4155505896196347, -0.4155505896196347, 0.24557589593009932, 0.2260176094613989, -0.4155505896196347, -0.3395608077353528, -0.4155505896196347, -0.4155505896196347, 5.0, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.9825876615501017, -0.4155505896196347, -0.4155505896196347, 0.3888332351668445, 1.1503277208026401, -0.20678648441500325, -0.4155505896196347, -0.11447422937744967, -0.2965970180901537, -0.02907984806953529, -0.4155505896196347, -0.08696797472822676, -0.4155505896196347, -0.4155505896196347, 0.2594758008570947, 0.0690106578847132, 0.2572730451366312, -0.29105433112936113, 0.18171896539710453, 0.7990916415037126, -0.4155505896196347, -0.4155505896196347, 0.43231016458846455, -0.4155505896196347, 0.08086659322489405, -0.4155505896196347, 2.4040316287204813, -0.4155505896196347, -0.27958998667574453, -0.4155505896196347, 1.3715478520075817, -0.40289727010877396, 1.3361910890259547, -0.4155505896196347, -0.4155505896196347, 0.03173032253879464, -0.4155505896196347, -0.18749224167564824, 0.6762347454735131, -0.4155505896196347, 0.6501820149649071, -0.36183914050195565, -0.15930758298760272, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.33305856202411144, -0.22473959854760173, -0.4155505896196347, 0.4737498424827159, -0.4155505896196347, 0.9236388012908348, -0.4155505896196347, -0.09587777707703674, -0.4155505896196347, 0.7000202268909627, -0.4155505896196347, 1.1565144777198715, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.0988787342321111, -0.04874996623496202, 0.9720717871250878, -0.20835270400284503, -0.4155505896196347, -0.4155505896196347, -0.26539823005190294, -0.23857153110883608, 0.2304514807104273, 0.27806088044258875, -0.4155505896196347, 0.7245944084875121, 0.8421700460416957, 0.23707054475308126, -0.4155505896196347, -0.4155505896196347, 0.17080149497556146, 1.4084194414222762, 1.7476006348491036, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.6141948100903011, -0.2443317512338367, 0.07236589670335067, -0.11701576723861172, 0.11779691767361247, 0.6841946861956959, -0.4155505896196347, 0.07458799083779745, -0.4155505896196347, -0.06834457821081595, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.526875488813132, 0.5977090760959274, -0.4155505896196347, -0.062129029610245606, -0.324817828335599, 0.4934283822155194, 0.7136282321349801, 0.9329978258790395, -0.22021072674006906, 0.5785778662635139, -0.30237501707961983, -0.4155505896196347, 1.1050175769162915, 0.03398399155264364, -0.4155505896196347, 0.05177086970352739, -0.4155505896196347, 0.06605274429623978, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.14317193186963814, -0.28165161516168064, 1.0817057186898749, 0.5488054422112544, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 3.2199211380192447, -0.4155505896196347, 0.17053584371056268, -0.4155505896196347, -0.4155505896196347, -0.3938115115859868, -0.4155505896196347, 0.055272322287420315, 0.3059000869166288, 0.32836297437347767, -0.4155505896196347, -0.4155505896196347, -0.2957729281336046, -0.4155505896196347, -0.37484242442344456, 1.6264592432848968, -0.4155505896196347, -0.4155505896196347, 0.009742305912590059, -0.4155505896196347, 0.5049996637796967, -0.4155505896196347, 2.1555711100689456, -0.024934685425251502, -0.032125792229836955, 0.22260296380279368, 1.5712271974009415, -0.4155505896196347, -0.09729336817484396, -0.4155505896196347, 0.3120700006991001, 0.0792459093693907, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.6826490526614427, -0.06253959901474893, 0.547334954970539, 0.7290181546612313, 0.0014542359725508353, -0.09922368259165655, -0.4155505896196347, 0.6255972764177907, 0.6763940594546919, 0.41887855639107674, -0.4155505896196347, -0.4155505896196347, -0.2867265692299951, 0.31310899657874813, -0.4155505896196347, 0.16846188278692728, -0.11983166584898496, -0.4155505896196347, 1.5795641172303878, -0.4155505896196347, -0.35171787409198846, 0.7942933155296713, -0.4155505896196347, -0.03283749864906168, -0.4155505896196347, -0.4155505896196347, 0.560781150954152, -0.23918974853293187, 1.1514451260332705, 0.15998983399031194, 0.4846261887832141, -0.4155505896196347, -0.4155505896196347, 0.4040055405531462, -0.4155505896196347, -0.4155505896196347, 0.0970733837937916, -0.4155505896196347, -0.4155505896196347, -0.19731385264293289, -0.2947716253660651, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.4363117287120645, -0.4155505896196347, 0.031204730359327176, 0.557099846321632, -0.4155505896196347, 0.4480666052437029, 0.6102728069850131, 2.314105412460954, -0.4155505896196347, 0.07038306145750274, -0.1898252557701827, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.20270128045128602, 0.6084297553618018, 0.034988389426142456, 0.16656801384261588, -0.4155505896196347, -0.3471573554258452, -0.4155505896196347, 0.48265971681073166, 1.3317562100680105, -0.4155505896196347, -0.4155505896196347, 0.9796469749854974, -0.1916964992499985, 0.4435400727604409, 0.3505609303574052, -0.4155505896196347, -0.16317963252228745, 2.4432858259042685, -0.20391086705475836, -0.4155505896196347, -0.4155505896196347, -0.32189944932731945, 0.31812676316601646, 1.2014210581779965, 0.03987208274130104, 0.12024368291042996, 0.005221051904608972, -0.0829524466382051, -0.4155505896196347, -0.4155505896196347, 0.425749595649143, -0.1138339503259909, 0.32318383040105664, 0.021323664565935308, -0.4155505896196347, 1.043714804598995, 0.23236603168060924, -0.12431438698742237, -0.4155505896196347, 0.12794627396964298, -0.30800435501074624, 0.13453875369134152, 0.3056705692142281, -0.4155505896196347, 0.253482907941059, 0.17263691680268176, 0.7203527217248155, -0.2754063511445909, 1.609692502461067, 1.4019612749033816, 0.24970932596342119, -0.4155505896196347, 0.754546684588401, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.17590200558660482, -0.4155505896196347, -0.21442789314710795, -0.06309667010133993, -0.16527014866384648, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 2.2863049308010153, 0.0571477165682514, 0.9911678711038191, 2.784554800262746, -0.37244171388344477, -0.4155505896196347, 0.483084682056909, 0.11395164440443856, -0.228316305393838, -0.22987752242669904, -0.03599028394764342, 0.41618672594285233, -0.029271936583587045, -0.13111706999061046, -0.4155505896196347, -0.4155505896196347, -0.2586343078524183, 0.10641642899773865, 0.3042505154055037, -0.11235885641593586, 0.1784839318564329, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.37829620577746503, -0.14485499770572277, -0.4155505896196347, 0.6367175842485017, 0.49366044318328134, -0.4066599554839686, 0.2565977841899059, 0.3066025080179784, -0.4155505896196347, -0.4155505896196347, 1.0118139073693002, 1.244580559290737, 0.1791876965696684, 0.007858274126754954, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.20019909929680296, 0.2534092972039789, -0.0843407576160427, 0.7822967808024909, 0.7486838341088098, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.8941355794778573, -0.4155505896196347, -0.25888571923069614, 0.48591029786041007, 0.7897580495691322, -0.28407359555775163, -0.4155505896196347, 0.7080965819861328, 0.19439359225320757, -0.161246774840113, -0.4155505896196347, -0.26827901791861564, 0.8373687449270418, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.04276075233132915, 0.4982331383321732, -0.05642273390884368, -0.4155505896196347, -0.4155505896196347, 5.0, -0.4155505896196347, -0.4155505896196347, 0.1450684481243634, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.35726910466001566, -0.24500554860332344, 0.08070545577043878, 0.3196895757379977, 0.06953816950973674, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.28726260646744717, 0.272665318983689, -0.3377170123269929, -0.21359367811524915, -0.4155505896196347, 0.531458452995746, -0.4155505896196347, -0.4155505896196347, 0.35096953233021555, 0.2685588571604367, 0.08055022061106894, 0.15120328403928968, -0.24914332138221537, -0.4155505896196347, -0.4155505896196347, -0.008769594811066038, 0.13829645225700726, 0.6920839913214045, -0.40729889617202236, -0.4031109321411822, 0.0721554294980973, 0.040206738074050376, -0.4155505896196347, 0.1695361484786773, 0.02629685203015886, -0.4155505896196347, -0.4155505896196347, 0.3794017994950306, 0.5446319917380831, -0.4155505896196347, 1.0580005660689566, -0.22309433379244192, 0.15009038950571796, -0.4155505896196347, -0.1440354424393005, -0.36224340572745956, -0.4155505896196347, -0.4155505896196347, 0.6682853617018915, 1.0983927065508314, 0.9704458247943031, 0.2295793806218996, 0.9089565783412037, -0.4155505896196347, 0.021406584613969604, -0.4155505896196347, -0.38519980063164483, -0.23930140028163785, 0.41669441929250906, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.06394279376842245, -0.3326111911748261, -0.15863174620721224, -0.4155505896196347, -0.4155505896196347, -0.3945343522890054, -0.4155505896196347, -0.1664258708263939, 1.8201374421463246, -0.4155505896196347, 0.46632331568064056, -0.4155505896196347, -0.2539374605656358, 0.48483982307363493, -0.4155505896196347, 0.48328104133732447, -0.4155505896196347, 0.35897649946852483, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.05900938681335477, -0.4155505896196347, -0.4155505896196347, 0.11961040983525138, 0.37953884790775233, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.1973438280594557, 1.0729403786122513, -0.4155505896196347, -0.20379790768376696, 1.1059589689894027, 0.19299100539904435, -0.4155505896196347, -0.4155505896196347, 0.5630115466906332, -0.4155505896196347, -0.4155505896196347, -0.19545880448499875, -0.4155505896196347, -0.11995690967153694, -0.24393852881854863, 0.1071448106002346, 1.0316591509486759, 0.33042421897029695, -0.4155505896196347, -0.38888785331495135, 0.0835001685004835, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.061369936878848015, -0.31467206500171924, -0.4155505896196347, -0.15079172284616463, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.5330037026408894, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.7978619487080362, -0.1439950141172698, -0.2876184875938915, 0.5705020870020086, 0.3081295229303294, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.24411872876668583, -0.4155505896196347, -0.404826601559522, -0.4155505896196347, -0.4155505896196347, -0.1304069951001088, -0.4155505896196347, -0.4155505896196347, 0.6318521736522704, -0.4155505896196347, -0.4155505896196347, 0.3108571030520421, -0.4155505896196347, -0.4155505896196347, 0.12103516628559036, -0.17205929957586297, -0.3721170546632567, -0.4155505896196347, 0.31473203175506154, -0.4155505896196347, -0.10125306439224589, -0.13686655321703006, -0.4155505896196347, -0.4155505896196347, 0.29199581525098867, 0.42266235941630736, -0.4155505896196347, -0.012429737556329788, -0.4155505896196347, 0.16074811095734778, -0.4155505896196347, -0.4075854461502993, -0.4155505896196347, -0.3167024125233538, -0.4155505896196347, 0.11213820022893838, -0.3568166052921319, -0.10296173083343818, 0.599407113607353, -0.4155505896196347, 0.08821485463440534, -0.4155505896196347, -0.3707543802801306, -0.4155505896196347, -0.4155505896196347, 0.9070194738857391, -0.08090396635432967, -0.4155505896196347, 0.7175224032797016, 1.3050661276624191, -0.4155505896196347, -0.4155505896196347, -0.26793591702541775, 0.39580701274831176, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.1490365179230044, -0.4155505896196347, -0.4155505896196347, 0.027892151218179662, -0.2021569256915053, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.012255259955257806, -0.3024880724228887, 0.3553881919732063, -0.24415270295303304, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 2.4469867088814645, 0.23291537699883177, 0.12275278214168989, 0.05997347633016998, 0.1123017849764787, 0.2402591756974276, -0.4155505896196347, -0.4155505896196347, -0.16955936569713484, -0.05303481652960931, 0.423432440973518, -0.4155505896196347, 0.01685601107511519, -0.30340824262606775, -0.36194739723133373, 0.10960529987277971, -0.4155505896196347, -0.32367187735058733, -0.055879122934215895, 0.05275933617890833, -0.4155505896196347, -0.4155505896196347, 0.4652869110524954, -0.02348629580149966, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.2818109771289966, -0.2229281218037969, 0.5470010674160084, 0.11524813390547475, -0.4155505896196347, -0.40328157984854274, -0.3613909199732112, -0.4155505896196347, -0.4155505896196347, -0.2777019120577067, -0.4155505896196347, 0.02907740884922559, -0.4155505896196347, 0.07624188110142617, 0.039620491415002276, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.050917764053233616, -0.09883513882491225, 0.14609487163562104, 0.09660503907804235, -0.4155505896196347, -0.07816023889687575, -0.21647419006166224, 0.47085090385896056, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.5327714497285725, -0.4155505896196347, 0.016548947772238642, 1.3261042106827823, 1.4109131850890853, -0.4155505896196347, -0.023105885685300486, -0.28033022085455095, -0.4155505896196347, -0.3979562528519883, 0.4851160312891945, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.045796731295032166, 0.3367813266806488, -0.4155505896196347, -0.10923800589279815, -0.15381350598552504, 0.16420306497263795, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.05929187314033611, -0.4155505896196347, 0.1175820357435788, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.5657139340894183, 0.28439601050132235, 0.6465593493941322, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.23901158407193923, -0.4155505896196347, -0.06514459854461796, -0.4155505896196347, 0.20070933591181964, 0.8268257103474034, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.22821228344121866, -0.4155505896196347, -0.4155505896196347, -0.31698876980729207, 1.0600955449214386, -0.4155505896196347, 0.22767226750324643, -0.0832259676299847, 0.44146870308830605, -0.4155505896196347, 0.5103319795075096, 0.047093180882704276, 1.6268174118257102, 0.3211163955923088, -0.4155505896196347, -0.4155505896196347, -0.12261212669577365, -0.27016959981241107, -0.4155505896196347, -0.4155505896196347, -0.273833953341364, -0.4155505896196347, 0.05383892833207732, -0.4155505896196347, 0.40953315986632277, -0.1972269977315078, -0.4155505896196347, 0.741108550276123, 0.49148158455999097, -0.4155505896196347, -0.307369138496942, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.28974679281984145, -0.008880730708778756, -0.4155505896196347, -0.13084100573346905, 0.2734206208101132, -0.19557413916986555, -0.05805685388324187, -0.3813521340537931, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.46989655552834664, -0.011839939923002528, -0.1097259049601528, 1.1028614637228449, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.5143412214133348, 0.06720297204588234, -0.4155505896196347, -0.20735500019572398, 0.2013349312047728, -0.17645022323056783, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.752732712565375, -0.4155505896196347, -0.4155505896196347, 0.6215801647851853, -0.4155505896196347, -0.14949876032633796, 0.03737166900118333, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.45258881897446207, -0.4155505896196347, -0.4155505896196347, 0.14251443386708454, -0.035844694002194456, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.10398789042093255, -0.4155505896196347, -0.28768425259726604, 0.45856837174387916, -0.4155505896196347, -0.4155505896196347, -0.287586072957059, -0.4155505896196347, 0.6758417389958504, 0.614228208442983, -0.4155505896196347, 0.33343693272940744, -0.4155505896196347, -0.3309610918161714, -0.4155505896196347, -0.4155505896196347, 0.1815492384237845, -0.4155505896196347, -0.4155505896196347, 0.18109130670017792, -0.26291257204950047, -0.22483786216355225, -0.17326183221691574, -0.4155505896196347, -0.28315479295953183, 0.7707550586998859, 0.8634506510081108, -0.4155505896196347, -0.08899630083375998, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.04762481124289933, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.709974759463026, 0.19956006788495506, -0.4155505896196347, -0.17184122656759204, -0.40449671484932653, -0.4115540078068642, 0.0026918944672849245, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.1432498214458609, 0.38026967680333273, 0.4829492651729098, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.1032007497913429, -0.4155505896196347, 1.8166087334355319, -0.4155505896196347, 2.0090097332237757, -0.4155505896196347, -0.05246059039835794, 4.576174112008831, 0.5282976060258303, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 1.5002036809803432, -0.255909235006465, -0.4155505896196347, -0.2712794712192313, -0.03617733391710962, -0.33033400295464466, -0.40205521834060454, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.16162200245331046, 4.646751357337575, 0.5195916727881714, 2.1381152882903907, -0.4155505896196347, 0.15112607434178535, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.28497285580090176, -0.4155505896196347, -0.4155505896196347, -0.32553780036725133, 0.30279523977081985, -0.4155505896196347, 0.2447718881726841, -0.4155505896196347, 0.27185392136088066, -0.4155505896196347, -0.4155505896196347, -0.21153641636795356, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.3282004312499496, -0.37321703192806055, 0.10309866735358882, -0.4155505896196347, -0.4155505896196347, 0.9506755355639044, -0.4155505896196347, 0.5897527823202996, -0.4155505896196347, -0.3716178548601891, -0.025865280617108372, -0.27116350071802364, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.35878633040003166, -0.4155505896196347, 0.08289885419381805, 0.7660633579264974, -0.4155505896196347, -0.39536484839509883, -0.4155505896196347, -0.2811888968207184, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.37513376834207074, -0.33716396607780286, -0.4155505896196347, 1.0868264155451053, -0.4155505896196347, -0.2355342004604688, -0.4155505896196347, -0.40669728270177224, 0.41579650266124724, -0.09873328824507896, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.1189473532881057, 1.434259401390958, -0.0968744491821708, -0.03679469958723995, -0.015658724843498468, -0.4155505896196347, 0.11517793018425136, -0.2992952306948526, -0.05787565822272249, -0.1027325010478717, -0.4155505896196347, -0.1618398115378169, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 1.3837326843438427, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.9057485130106002, 0.031720293435762895, 0.7283102631400497, -0.10763481298492678, -0.11090379671887593, -0.4155505896196347, -0.32765822986815246, -0.4155505896196347, -0.2774317620921853, 0.018169583641603253, -0.3697999989590432, -0.4155505896196347, 0.09374962388227773, -0.21167406460741334, 0.19545662918845297, 3.6563546875050794, 0.0443756778501638, -0.4155505896196347, -0.4155505896196347, 0.13762579797961852, 0.21322287329960624, 0.6340759473015778, -0.4155505896196347, 0.1922385827409554, -0.4155505896196347, 0.4020728508224619, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.3194260877730115, -0.4155505896196347, -0.4155505896196347, 0.08792271502072924, -0.4155505896196347, -0.25767676844356413, -0.4155505896196347, 0.06142049834896315, -0.4155505896196347, -0.1451591338541265, -0.4155505896196347, 0.37575806800926986, 0.047210890881447046, -0.4155505896196347, -0.057516793882893824, -0.4155505896196347, -0.0643559703447219, -0.4155505896196347, 0.18375280990861234, 0.19467862991832538, 0.1791201800722242, -0.19875511632505616, -0.32711843978983557, -0.4155505896196347, -0.17650192829524186, 0.5765824106631301, -0.191009649650728, -0.4155505896196347, -0.1761473347217756, 0.40065725972465355, 0.6191664619980751, -0.4155505896196347, 0.3363059280024806, -0.4155505896196347, 0.15843911392533783, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.15115750526277075, -0.2700718160578502, 0.09495196457877499, 0.05134916751479761, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.22728194824936393, -0.006651198722801386, -0.4155505896196347, -0.4155505896196347, -0.09408309548184969, -0.4155505896196347, -0.4155505896196347, 0.6651272979280337, 0.9981867076697227, 0.04589319150701337, -0.2394725308495213, -0.4155505896196347, -0.4155505896196347, -0.14914790967170702, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.27124740448190565, -0.03849055372934383, -0.1250030360669012, -0.4155505896196347, -0.4155505896196347, -0.20873467366855888, -0.4155505896196347, 0.5156201479875313, -0.36369637202920985, -0.4155505896196347, 5.0, -0.210116026656255, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.25560447503825545, -0.4155505896196347, -0.4155505896196347, -0.14433890678175926, -0.4155505896196347, -0.16624601877776418, 0.1151587837148266, -0.4155505896196347, 0.7729717304006325, -0.09706267481204076, 0.2060782170774847, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.20988384572314545, -0.4155505896196347, 0.2658262384941371, -0.22184854164716308, 1.0614003840106403, -0.4155505896196347, -0.3971716434912263, -0.15801771557373592, -0.4155505896196347, 0.1381572924541714, -0.4155505896196347, 0.8202000722037237, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.036615743354954475, 0.028780758538491703, 0.09755861963043673, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.5488805885047857, 0.32999023233001035, -0.17851391512047668, -0.4155505896196347, -0.12048945984114608, -0.4155505896196347, 0.5150138911085571, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.30604514901455004, -0.1832419653940849, 0.876264197736351, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.38608561275936537, -0.4155505896196347, 0.19548796413716035, -0.4155505896196347, -0.36851190103404863, 0.008028337003047867, 0.02681183927292758, -0.4155505896196347, 1.0339232329546648, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.227982765738818, -0.4155505896196347, -0.4155505896196347, -0.14955305664251314, -0.16827369707042203, 0.05912671292298662, 0.28411759492336947, 0.1401126316424248, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.6250115576062734, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.030214480324032327, -0.4155505896196347, 0.49803274821609356, 0.3717136522636271, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.3160464680720496, -0.08865053670985322, -0.4155505896196347, 0.24460153737955756, 0.21513507294897863, 0.23645037189382406, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.6618933200824187, -0.4155505896196347, -0.3480478881899811, -0.18848562673026753, 1.5537946009136183, -0.01818512307783486, -0.4155505896196347, -0.4155505896196347, -0.20113532478720744, -0.4155505896196347, -0.4155505896196347, 0.23867025866588004, -0.14955099323854038, -0.4155505896196347, -0.4155505896196347, 0.911703688821451, -0.4155505896196347, -0.4155505896196347, -0.04608157701559441, -0.4155505896196347, -0.06436904656757471, -0.3464894783462464, -0.4155505896196347, -0.4155505896196347, -0.15034312442657624, 0.6257690667950847, -0.08932994845759255, -0.4155505896196347, -0.4155505896196347, 0.7094075633011209, -0.4155505896196347, -0.32063393487894876, 0.5022051429942069, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.33054456820668404, 0.5113652170504932, -0.4155505896196347, -0.4155505896196347, -0.016494307480316578, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.15133449406336089, -0.009970687867951671, -0.4155505896196347, 0.16086903602739805, 0.6787817537545131, -0.4155505896196347, -0.4155505896196347, -0.36083879745719466, 0.6698913617988896, -0.4155505896196347, 1.0953414599221811, -0.19995599344431675, 2.612326213548956, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.010113958558438031, 1.1689444232536743, 0.1441022472174362, 0.9670782535379666, -0.02658773593144932, -0.4155505896196347, 0.685414109957644, -0.4155505896196347, -0.4155505896196347, 0.1049902329632326, -0.4155505896196347, -0.08919525136567587, 0.18860905515231505, -0.08356268636670734, -0.2052579819323434, -0.023514991512567127, -0.24352162524370954, -0.4155505896196347, -0.26589127563265563, -0.4155505896196347, 0.3405146003016112, 0.5535102911867005, -0.4155505896196347, 2.133118587618102, -0.4155505896196347, -0.41193433207286156, -0.4155505896196347, -0.28334490204535356, -0.4155505896196347, -0.2238033289948184, -0.4155505896196347, 0.05468895479670682, -0.12762029605526184, -0.4155505896196347, -0.4155505896196347, -0.18179943007927976, -0.3671071937923722, -0.38959566086038994, -0.4155505896196347, 0.27317742705812614, 0.8925053943668476, -0.36877637064037677, -0.4155505896196347, 0.032691053025886686, -0.07433970248230955, -0.4155505896196347, -0.39674976885230967, -0.4155505896196347, -0.23204262102465698, -0.4155505896196347, -0.09185217189784402, 0.07605487911809866, -0.4155505896196347, 0.8169843290908887, 0.06785443186770705, -0.3878973774200036, 0.3574734296394887, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.26014453568892987, 0.9049816945108412, -0.4155505896196347, 1.0780170241919615, -0.4155505896196347, -0.4155505896196347, 0.14664114584095844, -0.2920974898065633, -0.4155505896196347, 0.5498044176510593, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.4052527962756667, -0.23038118494068513, 0.7908810211918724, -0.4155505896196347, 0.02462050425352103, 0.37967771979375153, -0.2937082645243827, -0.4155505896196347, -0.2917842602848367, -0.4050177393481965, -0.4155505896196347, -0.22221372816079302, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.3832164096214403, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.2575076493697542, -0.4155505896196347, -0.4155505896196347, 0.4759973212846415, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 5.0, -0.4155505896196347, -0.13089225492982307, 1.0412013866152319, 0.2553924203666605, -0.22637555399181303, -0.18369766576223157, 0.6933863351313869, -0.4155505896196347, -0.2293207032673368, -0.4155505896196347, -0.3000938040220375, -0.4155505896196347, -0.2999573794291196, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347, 0.5084126299234377, -0.4155505896196347, 1.498814770175772, 0.5380342815272473, 0.8145636203275015, -0.06158738606731317, -0.4155505896196347, 0.12968730706152953, 0.30709220656553954, -0.4155505896196347, -0.4155505896196347, -0.16652441036264354, 0.15078714824267314, -0.06358272170234691, -0.4155505896196347, 0.5424735752099722, 0.5864160181651418, -0.4155505896196347, -0.39896212180055796, -0.3149599758369043, -0.10347681404848498, -0.41324324304837845, -0.005463493798671111, -0.4155505896196347, 0.2535211049076311, -0.4155505896196347, 0.027858225017971184, -0.31160417917940164, 0.7388125095016193, -0.4155505896196347, 0.004889083795638255, -0.4141195846617153, -0.4155505896196347, -0.4155505896196347, -0.4155505896196347], [-0.0926219969657387, -0.03469125849602422, 0.4425661117804808, -0.6201643176047754, -0.2838638545962397, -0.5627410771499083, -1.1274805500814384, -0.4738820129692804, 1.649668131767888, -0.2734818685523537, -0.6570514136652436, -0.23306794115888202, -1.0711628969839042, -0.6070016875664229, 0.01092132503279861, -0.2548808935184306, -0.6394153911986914, 0.4589930282229278, -0.3856244032374643, 0.40372132346969514, -1.521142007407349, -0.2806533432575296, -1.601325502639888, -0.45845836466122913, 3.8574766739391486, -0.9998084828517262, -1.601325502639888, -1.0274532644213585, -0.9684791430844409, -0.6639054355680588, -0.1919508731334749, -0.712162459580008, 0.3331272567769222, 0.08013909655767151, -0.38849547197012313, -0.4303855149131123, -0.14259229322820446, -0.6476018619335728, -0.7244991392646166, -1.1139562877260407, -0.5483436196807191, -0.2573301578348599, -0.4641054795203238, 0.580783489323307, -0.6096403973734331, -0.26996496594889585, -1.2761100996713977, -0.8727130149290697, 0.24578335670629203, -1.0057633883267012, -0.938188921495153, -0.5449475943617839, 1.0793392505530106, -0.6864896303152044, -0.47361080539043643, -0.18442462959544179, 0.5284105737825366, -0.5066259634715113, -0.265264345549232, -0.28454860375598184, -0.7386535760851494, -0.9310717549415165, 0.057616339989317214, -0.6132757117379749, -0.008068003261434952, -1.012608947486884, -0.2989212727192021, -0.3241839588273014, -0.27401375525856436, 0.12711184939836934, -1.0435949797735338, -1.601325502639888, -0.11602074735017069, -0.15337236135464796, -0.600778373214893, -0.5706690011020122, -0.9261077233479584, -0.07372236041624916, -0.5938100043328919, -1.0987561357864035, -0.8107153622205683, -0.32450807520653574, -0.8144027191205094, -1.1082839179105957, -0.35428946606559475, -0.25900951247907283, -0.14784105946166123, 0.9016397802070113, 0.2816284692507095, -1.096973329111192, -0.4959249253668109, -1.519191878316789, -1.344748239961731, -0.3918904311167637, -0.737381166080733, 2.161123245113579, 0.370038008535292, -0.19956694168779798, -0.8163668084046244, -0.6958027119924607, 0.01167137724593959, -0.4848947065644562, -0.46502931781837187, 0.12315941541030415, -0.5271091990655167, -0.9930618111723802, -1.014169090740793, -0.06745779852385395, -0.9598238230805849, -0.770311097013564, -0.2746787802307654, 0.445549395147732, -0.9697430237104566, -0.7076676770700375, -0.6732166514437898, 0.03385748991052748, 0.33344217742007104, -0.9056562730156521, -0.20064457534014277, -0.40487094559910586, -0.00958823168986144, 0.02857034147426665, -0.11980579228710696, -0.6187212533965724, -0.34522873404461846, -1.2564728051617646, -0.8535379727473041, -0.6844575059111888, -0.24075704251575195, -0.7760074557057617, 0.16298734785332886, -0.9441237696037326, -0.8402706579162349, -0.7733092401572504, -0.42474959486316877, -0.8997841291654728, -0.7542191585806505, -1.4009354202240383, 0.9906990182369886, 0.24782267777332764, -0.007918605867884336, 0.21767958796146097, -0.5573275206603154, -0.3494518425253664, 1.7396703991973044, -1.1336312314450212, -0.434559579468055, -1.0903824851770838, 0.14539177329842384, -0.296287693866388, -0.4214392631428633, -0.05898199528103559, -0.2842741976602484, -0.31135670661310594, -0.41981268402749505, 0.03160093623733812, -0.8109253981636906, -0.38813483918961533, -0.7006670564759583, 0.22077375324792395, -0.27842984092563283, -1.0034392659839928, -0.8721042305457051, 0.34899909726562534, 0.27399507539650386, -0.1894588286534953, -0.6287612646751993, -0.5475185355919696, -0.5135325609958765, -0.528646153071898, -1.463192744193914, 0.5120498932942208, 0.13463062973030165, -0.4134748227894728, 0.24232882518239085, -0.15061990429037123, -1.1106643141600192, -0.5534712420865749, -1.2650108128947228, -0.7863889752992694, 0.025434062381938034, -1.0821616970212933, -0.1479578053285236, 0.5875061054901247, -0.3677969362072733, -0.281832396549909, 0.010751936908626582, -0.6001981089405575, -0.4062593684769227, -0.8018811251776008, -0.45812371983053934, -0.2677942391458656, 1.199198073988644, -1.04893680285806, -0.2713369964275957, -1.601325502639888, -0.5021328468557653, -0.6712408342643736, 1.2011907500175554, -0.5918479807576088, -1.187482428197781, -1.0022984616228718, -0.6998572986140223, -1.1131311370015218, -1.0183512848595246, -0.33307490290949016, -0.5631985983381949, -0.40698170021024926, -0.009195613740339332, -1.0709361354628248, 0.7893398518360992, -0.7086441576254044, 0.2955097660551015, -0.004998359937874573, -1.0332553740785742, -0.5105933905075398, -0.3830551945372613, -1.0775098540043617, -0.8657820953491095, -1.1731666994989716, -0.7150333284053689, -0.8742205825614296, -0.8546091427300744, -0.22190978168050274, -0.25629823631988524, 0.16529307872386936, -1.601325502639888, 0.11134782558351265, -1.0001193387129788, -0.19519243674043396, -0.930284386697883, -0.987507453303403, -0.1315003697039779, -0.9314677046794704, -0.34061247452820925, -0.666165920751605, -1.3224669714193558, 0.6274573141053579, 0.03482344201442994, 0.16724364094692626, -1.601325502639888, -0.8913530385234849, -0.7597728500919396, -0.9895049937434333, -0.7990223174263845, 0.22711028177057654, -1.134944122678958, -0.5217570141189489, 0.7463360586541071, -0.14419208476452416, -0.3131422786727149, 0.09920678851596339, -0.8083696498887827, -0.30061382124563163, -0.5983726886912258, -0.383884276772134, -0.23215596402767005, -0.06596382458832618, 0.08017174808435976, -1.0756028715740724, -0.5520648275511888, -0.479967724458326, -0.2627200586265469, -1.601325502639888, 0.9112963692722051, -0.4845735221590527, -0.952959072819, 1.211820487849683, -0.7021562992719096, -0.3511949009645165, -0.6347269651447137, -0.5330073308655106, -0.7851561469414954, -0.6362086114630272, -0.026967239996320377, -0.8381451101644215, -0.3033213658017688, -0.3835063186917439, 0.5972033423742685, -0.05005426825450383, -1.048436568142, 0.2388057920882019, -0.669735665519689, -0.058818337832968234, -0.3894504958079549, -0.1485688553280232, 0.6624091075338047, -0.8928412817829048, -0.18016593761417482, -0.3325905941421583, -0.6752243205206712, -0.9935980958393371, -0.9082185515958989, -0.4322601123597807, 0.04967442252577478, -0.16700084205237833, -0.3610619257874588, -1.601325502639888, -0.0974505580414161, 0.05275819263231712, -0.8408064761328101, -1.296053085770204, -0.8911180141670785, -0.0759779811886732, -0.583664908446934, -0.666425067256301, -0.4005810680780551, -0.7566509643256717, -0.5180158821536204, -0.2466978878435278, -0.554445257118498, -0.30100910462589314, 0.39418294625826816, 0.4636848527011209, -1.2265892616692011, -0.6035066414951138, -0.37104249796035227, -0.16337812184812883, -0.652176007644133, -0.27869238585454115, -1.224552872575985, -1.332843443353379, -0.7394094256101612, 0.7191025530492489, -0.0567282403101313, -0.49040548464067135, 0.0805920865136848, -0.5551348706893644, -0.6388750417498404, -1.2730173670539604, 0.7020379322997887, -0.3169182611451111, -1.2533030082777588, -0.5035844404423693, -0.5881917427616776, -0.3695619844500996, 0.10514203643915844, -0.5037774176286898, -0.3829856267946844, 0.949396302959827, -0.2823756113368166, -0.9033656018288592, -0.2705141779549889, -0.4337870043650774, -0.6000054649330808, -0.8420764206137831, -0.42854276936390157, -1.5926952048877925, -0.8283728414046608, -1.0598395141169004, -0.4106805184624221, -0.25071895667339344, -1.078313747918647, 0.4484409876971735, -0.09133885860255259, 0.11883981833640736, -0.7705364591834999, 0.535205556394227, -0.7534620429760334, -0.789149495291569, -0.013736441566520994, 0.20547058240979663, -0.9243132220953312, 0.012887480025753108, -0.6495408961686351, -0.8016850161101486, -0.5546831468129598, -0.7372321018660236, -0.10019595171420732, -0.41880461811773817, 1.5124930709199569, 0.23715109267842638, -0.20893726349042238, -1.1899635110937967, 0.39439897942057606, 0.9516661837867678, -0.32965568834302744, -0.9174345449580765, 1.118979270128135, -0.3130091404067465, -1.601325502639888, -1.601325502639888, 0.17489862479019233, -1.1386450399578412, 1.4355754030436783, 0.028371367068749605, -0.1538682647457353, -0.5271231259411864, -0.9597469920392082, -0.9501150582084484, 0.5826824754613434, -0.31366443655670073, 0.046307716945098124, -0.7744659704671047, -0.720835371426816, 0.4277986925231491, 0.8008689060033721, -1.601325502639888, -0.022290475201862874, -0.4138701061697452, -0.4119020853752712, 0.4600121556703009, -0.015334500572855738, -0.14826766165324123, -0.1552736131088301, -0.6474128828933777, 0.16663778853738154, -0.8871883696119367, 0.6165740938088733, -0.4400667592127435, -0.35603079197475995, -0.17219123535240938, -0.3217709443690759, -0.42748565952833945, 0.10755038639357914, 2.0172398281533472, -0.5278169375654851, 3.8505998626034192, -0.9982328134636971, -0.9696786535578368, -0.012016039288753735, 0.8308286141796305, -0.094404503779993, -1.3756146777024036, 0.05818754179910826, -0.9302595315561368, -0.07781659532021823, 0.5576061029626835, 0.6475813162699928, -0.23736354935603768, -0.7101534577877513, 0.5065137936258836, 1.1502927505824565, -0.5764731764680595, -0.535492911675918, -0.11187720197732685, -1.601325502639888, -0.1415599718986145, -0.9306446862995528, -0.029949590462806017, -0.9440459390258242, 0.30810565888018354, 0.6941933030586371, 1.0035048137336469, 2.1335520294326544, -0.2313123551952001, -0.6024132818013478, 0.10923680442928874, 1.061965173293448, 0.31036741014332747, 0.14994566173527618, -1.2722978340229207, 0.9528219145600904, -0.5566669602846269, -0.5067834237930856, 0.7909742939721726, -0.6017465242991655, -1.4500358365022044, -0.5004240392017535, -1.0946234520438587, -1.3406550045942902, -0.5840120141663906, -0.7359558269870199, 1.8917081684518817, 0.24122746919637403, -0.4664029475555328, 0.439226060507296, -0.04210515412793017, 0.21050638072630007, -0.3199633825057689, 0.009181864925175517, -0.23154664655815543, -1.295572008837662, 0.07930201803054795, 0.1754446382793962, 0.9835338072940676, 0.06219141860063703, -0.27185515616545064, 1.1339206087419198, 0.21291992827068681, 0.49164602090080645, -0.9434709389772199, 0.8027187149440683, -0.9340870901135429, 2.5740493780597107, 0.5077541518255303, 0.6980672401110871, 0.6865965588772508, 1.0125430228647752, -0.35971255147012005, -1.2540689864396215, 0.4104809891239469, 0.3153906809353103, 0.6591572820184598, 0.18404798238362424, 0.7057479453611019, 2.90475470210879, 0.5325044088718904, 0.4848768929673884, 0.6822511071250703, 1.9097875186879798, -1.161006637919454, 0.002585190361295074, -0.4389527424306601, -0.14327677584487708, -0.30151673591228173, -0.315154279074574, 0.08846536913540472, -0.6499103915063926, -0.2295253171486758, 0.2749477003466663, -0.7715106074869597, 2.7155272437678177, -0.2142955789277103, 0.43425982993336926, -0.5639851003168349, -0.25595959334306456, 1.8623313899807155, -0.05131728261552257, -1.245651189633501, -0.0018388915980242057, -0.8351431021461476, -0.8178269313696293, 0.8019300139850651, -0.5407612688253898, 0.08200623079823886, -0.2982801033522189, -1.4112576673012358, 1.3358227233866362, 0.8093849572505255, -0.5828959983112462, 0.17727418994639024, -0.26548104506922454, 1.5047475957027157, -0.3265232741252952, 1.8994616399613846, 0.7597618333432922, -0.10955081401848009, 0.051544488740173144, -0.4398092786022662, 1.2290802181300746, -0.6991225726277062, 0.35970573277489554, 0.4245699229837914, 1.1495928084674432, 1.2169975539959625, 0.33216956750834015, 0.5475839500700854, 0.5977173706944579, -0.042821621913606174, -0.3334580585798351, 0.30600290056127977, 0.3851735237792429, 0.07769716217579727, -1.033713095174166, -1.2421434161303604, 0.01223644856499953, -0.025982230062550415, 0.3437184791346997, 0.5438083674123048, 1.3186746746546978, -1.096134751279269, 0.7097690141909893, 0.27257120228971427, 1.702596922891622, 1.0850355426094342, 2.1272656110081183, 1.7407275090328667, 1.019988637122615, 0.6601920022357305, 1.3240324570058466, 0.060917742516617406, -1.601325502639888, 1.2460824677999782, -1.429721172744213, -0.6708582116801713, -0.022801305005163, -0.5993238476544648, -1.2684066049884675, -0.166437103448699, 0.502841496409679, 0.23929942986315428, -0.2711770705825787, -0.2285436390033412, -0.2988138558599603, -1.219154075909172, -1.0686851125584413, -0.36307739124927696, 2.3569647033183134, -0.26610608858017126, -1.2348415019078451, -0.350865187180712, 0.5738491046833715, 2.069090185995517, 0.5375935158034107, 1.031088823482173, -0.5424288955743037, -0.4873816200902427, -0.42077970230369766, -1.102400179436652, -0.15989080552600463, -0.2498742816686343, -0.10654500776138079, -1.1178834334398549, -1.000102946313864, -0.5495312023515071, -0.6793606025947285, 0.08774197122977799, -1.2682808299749382, -0.8521097683155342, -1.431314034160582, -0.6986290014885225, -1.3322238473165342, -0.38293911502808375, 0.3568244021338513, 0.03223464239822082, -1.0312116550507953, -0.6701889886545437, 0.027878262379958718, -0.3945686559346478, -0.11244467218405658, 0.004094890338255213, 1.3488060365712744, -0.05982307195429004, -1.1762585991692995, -0.2806270887646311, -1.601325502639888, -0.5916815246072541, -0.7787506503981843, -0.6207622403578325, -1.601325502639888, 0.8386911018068036, -0.6960480648930246, -1.5961678514495514, -0.3617234856996681, -0.2022450332341473, -0.041224495808036755, -1.574064168272097, 0.07861233782390957, -0.8091992652098075, -0.9586425708078292, -0.2449938779648666, -0.4500125475143485, -1.0537014602314967, -0.24648345393965937, -0.7410376706197405, -1.0214431178940842, -0.1554059517455789, -0.12063873939657577, -0.5321912426055437, -0.1518809195783245, -0.009198412442635568, -0.7024249080557697, -0.10804124731305473, -1.4380210742164605, -0.6446462324103527, -0.6254013559429309, -0.2087641437631888, -1.601325502639888, -0.7298769123463871, -0.5328368099332622, -0.8647147236051593, -0.13917601063556162, -0.7146144559629627, -0.14788330653905046, 0.5319589284688478, -0.2718082445842457, 0.11428166521034315, 0.4200925324094665, -0.9817455250147482, -0.734982478312785, 0.995293687764315, -0.3569243776337895, -0.31705393157029504, -0.4984989318423645, -1.1699243029449051, 1.2073398987584685, -0.2700081459270395, 0.6971791185850928, -0.33582989213298237, -1.601325502639888, -1.601325502639888, -0.7751325946977504, 0.09935965096949509, -0.731944820158226, -0.13024361910521412, 0.3643622402956509, -0.6536524563724829, -1.0167306363275843, 0.5472551691870355, -0.42716367549370526, -0.7255932985876087, 0.7383976062505455, 3.8574766739391486, -1.5594201751174483, 0.2149055409081015, -0.26614353788221, 0.5920701225638393, -0.5691904866648304, -0.49726830246495335, -1.601325502639888, 0.13648150484329796, -1.347277134021831, 0.12061899336221538, -0.22775507131587278, -1.1585482445026984, 0.9944961908838305, 0.6889173494315165, -1.0311985278043492, -0.19131636734337282, -0.7731062676056172, -0.5353338520958957, 0.7495774889895315, -1.5731735833050267, 0.6984022847564031, -1.0822554535479347, 0.3237891866863817, -0.559590138188462, 0.08960950528496085, 0.006509637326476586, -0.5564761154429068, -0.21773824928477548, -0.2641929756591531, 0.938747107483217, -0.8112933608787678, -0.031340945314453604, 0.74427994537335, -0.9346728851566867, -0.06658486995314206, 0.44960498130582743, -0.7279674643926541, -0.9672029348412056, 1.288664323294195, -1.2073085018403023, -0.06814601274358836, -1.3667236170076278, -0.4425437440089867, -0.02096935445048822, -0.7091712465562721, 1.3126713249758415, -0.7033825306885767, -0.29606619657103406, 1.3737310126033182, -0.033253791692391274, 0.11513260397736819, 0.876616716323357, -0.21757299257825796, -0.45652739335418957, -1.305391255814397, 0.37086509169710996, 0.09481016049337773, -0.89177737509893, -0.4495783488451329, 0.3300198976082426, 0.24537114784076355, 0.06354425797794601, 0.07716594182727138, -1.3267303612223171, 0.2030900862067134, -1.0364914735524924, -0.24504145590375642, -0.8678237486680576, 0.07864965385441353, -0.04652097325192904, -0.48352594123841863, -0.8378824319639816, -0.39815326047916283, -0.27110323815080134, 0.36782796662870304, -0.04470155022178605, 0.7271900030317567, -0.8245404184361347, -0.2076590561741216, -0.8250330566745566, -0.6916996811670134, -1.4099270676117528, 0.5355699207777961, -0.29540983424877965, -0.3644367609319211, -0.09239316973582964, -0.8958412907281176, -0.9386384463911877, -1.0886344623731639, 0.018386930021271227, 0.08525179255132907, 0.9780467515515465, -0.15022981850006462, 0.3746232157834738, 0.44235234423430814, -0.6747216869169365, 1.4337207963276206, -0.11471788479943248, 0.056221786620769286, 0.5227338726421192, -0.8031392751275028, -0.24085433073814272, 0.6825469699383407, -0.0662630191900427, -0.13847966685205298, -0.5993419725835667, 0.39986844332015625, -0.16069496598335944, -0.041956689635144886, 0.12499123269344439, -0.16641538018808147, -0.16866553682747015, -1.1478850888325398, 0.03783577857685353, -0.11542995462437325, -0.8427167903515378, -1.601325502639888, -0.24813522137561506, 0.2817720026966095, -1.2960190348923688, -0.1476130318609718, 0.7213908253483611, 0.9867699067679914, -0.39888878609470607, -0.48691623588124333, -1.0015464103366802, -0.420669886556786, 0.48713611207132806, -0.4325342519124445, -0.6101707514569708, -0.7328635275020798, -0.7348125571024552, 1.4047190439630248, 0.6007130483147061, -0.685671276439098, -0.42262404711135854, 0.3758107984542648, -0.028743349776762836, 0.21442429738614638, -0.7708099990142486, -0.9730273008451854, -0.7575044352519122, 0.8455689793148332, 0.721932707419899, -0.7247992001313298, 0.31010060052522964, -0.19935850500312588, 0.20990092813137062, 0.2141413619120009, -0.022970426586265708, -0.6574010515439123, 0.12537838650992023, -1.291036911687593, 0.12260500581424533, -0.39741173764443416, -1.1250739992927765, 0.30069895991129786, -0.7928574426440557, 0.06466040710462963, -0.3743468324614723, -0.7621987918893102, -1.2309893214338825, 0.13279054961184122, -0.17551929218721238, -0.20251903951527636, -0.711464649809584, 0.7536262782992109, -0.5166638424055404, 0.6667833459380992, -0.2677521253400002, 0.9856813448495759, -1.601325502639888, -0.8465725358391284, -0.21252839834027287, 1.232938162598023, -1.4541309876479969, -0.16386229734392588, -0.6501766014025775, -0.9204856635379252, -0.5199926322337998, -1.4916975020067118, 3.194039765384625, 0.9349470028625443, -0.32914792378509317, -0.0922135197032606, 2.8096670593509034, 0.506339474454815, 1.132052941415202, -0.5958263360597124, -0.5222665778426347, -0.83038757387303, 0.8033661480733175, -1.601325502639888, -0.07756884353198788, 3.064183710833901, 0.04898754102143238, 1.0521137412404031, 1.6169201164837534, -1.601325502639888, -0.8727204114994019, -0.8069195222890906, -0.9252562514947812, 0.1590819587180146, -0.3934103930021097, 1.3959497767945948, -1.5725775055298168, 0.9519031405804734, 1.1022227731734184, 0.20130091581558884, -0.5571168849952747, 0.6166295347684791, -0.8536994978507713, -0.2654973041968067, 1.570001871701907, -0.4628127456064367, -0.7254720881242394, -0.28419796634079036, -0.7789942041329917, 0.2807319516178492, -1.0332960218975165, -0.015460042361199763, 0.5675610870003742, 1.4234362317776603, 0.06090574807824659, -1.217972290550265, -0.5866407952438564, -0.5964265244289074, -1.141557556138675, 0.2862071461935452, -0.7408666166013408, 1.8797305222893308, 0.56125374494444, 0.4041152741345869, -1.0848065706369148, 0.020542597140565118, -0.08624695296874699, -0.7561875791897342, -0.8552465804940049, -1.0637950466682042, -1.2190810764244984, 0.605675947100187, 0.30711705061489797, -0.13257906952862278, 0.5553252938696611, -1.2101787376258606, -0.09225856548294609, 0.8224397039792603, 0.1171700592428843, 0.8581130295118247, -0.0792204776963976, 0.0014033383666197101, -0.5740587626586848, -1.0947598554625046, -0.2918726743716197, 0.049707740410158775, 1.705528363630783, 1.1843876080247033, 0.9006317142972543, -0.5493034412938959, -0.7420092201282186, 1.5318414327362593, -0.7881954709902731, -1.5530262648684303, -1.601325502639888, 0.7192960633217194, -0.8296871653076243, -0.4583157641160945, -0.7177764564620231, 1.3610448949473422, -0.19150241440974256, 0.9744798721215072, -0.2735806227616489, -0.27447700712297446, -0.32811746825703386, -1.601325502639888, -1.5582021399003378, 0.20436256284689838, -0.6657575767606616, -0.293315072222127, -1.2201103325087195, -0.05311671491503273, 0.2576077406006963, -1.601325502639888, -0.47336905082139125, -0.4863367712361319, 1.3230118635715578, 0.6259194938339798, 0.2077523244035732, 0.5235901422706448, -0.3696179584958664, -0.19763903562612395, 0.24896094997524434, 0.42430018139186276, -0.08096793409628296, 0.6895789093437477, -0.42470601507040984, -0.5863790499441787, -1.0900452415514044, 0.4295334881269679, -0.4813955957112579, -0.1520001976044024, -0.03372623929287591, -1.601325502639888, 0.7991419734202694, -1.102300159147748, -0.5688825627774043, 0.9018892645252378, -0.4623453623243719, -0.2678651396038122, 0.20030097946961756, 0.06759784506297599, -0.5044085249945837, -0.1533509046371109, -1.501570648990901, -0.9021101173097064, -0.27455150591243666, 0.09133457206654383, -1.1434789318950158, 0.517393149047783, -0.5369123201862132, -1.116625483397258, -0.43018174273224496, 0.01851460415420406, -1.1272652499125841, -0.495822572826, 0.7968009255922907, 0.9596718050452365, -0.9795927232335133, 0.8364979853854709, 0.8828231718253848, 0.07387893262602271, -1.2185010120574673, -1.146675716265368, 0.6599867640679478, -0.8483044661048937, 0.8893329533468058, -0.32001922327999005, -0.8020960255318422, -0.975945281159058, -0.1535854625431358, 0.1748896955971873, 0.369328737412647, -1.601325502639888, -0.5835687530326176, 1.9978288287144188, -1.0120316818221424, 0.5318145953937172, -1.601325502639888, -0.4850482353756725, -1.601325502639888, -0.4091400327602934, -0.25887690729925444, -0.9771390609563412, -0.3840585959432025, -0.9720455560640878, -1.063737739907073, -0.6132447261055034, -0.2312486514002738, -1.2136227740161851, -0.04056706731348225, 0.004510830806834103, 0.1741193861103556, -0.8871062743448279, -1.1087272456801363, -1.1870830467177347, -1.3938786423358385, 0.5382237569043123, -0.2983955165037116, -0.5681882847027241, -0.5576600997821823, -0.7080683579475737, -0.266993943563085, 3.8574766739391486, -0.8545325115960042, -1.601325502639888, 0.6279760069293525, 0.5226735006356281, 0.4613138187772042, 0.00765670544985232, -1.3808789200931544, 0.8672474606930327, -1.601325502639888, -1.3176250831899288, 0.21424598006894677, 0.2840202935344673, 0.5921131692704483, 0.14329034769490093, -0.47820734071930443, -0.6949532392123455, 1.1699311112644004, 0.45190498150024094, -1.2833248543083788, -0.5718331946179673, -0.3308887166080973, -0.8102414486331679, 0.13666302067739794, -1.1905694634569899, 0.4844316327605564, -0.5483533485029581, -0.5709148870887253, 1.3067785906731164, -0.5921565710027231, 0.6280379781943045, 1.0611215644609782, -0.2435434838220975, 0.21677147570483393, -0.16949528542003864, -1.263872374103393, 1.1021278838387083, -0.7767633718665419, -0.3359233154807771, -0.1908481844320884, -1.601325502639888, -0.8069807605605788, 2.0696102115349024, -0.7379585650170138, 3.1520517678615714, -0.0623152497058044, -1.1408002739446357, 0.34355148989819745, 1.3589058867702457, -0.7717365027430468, -0.7398723442957169, 0.48141316570740145, 0.21805501388263557, -0.661334361066336, -1.601325502639888, 0.9041847334873813, -0.8014104101071009, -0.296376985796517, 0.6400029635607889, 1.546886190063155, 0.13035994331066386, -0.5261593728176539, -1.501656026069621, -0.82613028124291, 1.434924238311379, 0.09205703707140499, -0.7096441606071409, 1.7767886547395917, 0.725952976620545, 0.33100157575356626, 0.24948097551461904, 1.348256957836716, -0.3807316052806996, -0.8201261985705915, -1.1551783737230004, -0.803507371114117, -1.0769369863003575, -0.307571528404624, -1.1000711593649404, 0.5551830931391311, 0.7006073956161175, 0.6153029498840686, -1.0599691873229011, -0.38852519152299153, -1.601325502639888, -1.601325502639888, -0.7778482688176755, -1.2784114992169602, 1.7907413850880913, -1.0868542544929345, 1.2291052731791163, -0.11406858586866361, 0.2148058537980409, -0.1092365597330163, 0.3915125844611001, -0.5712297410961034, 0.12202727369913, 0.3208389546604342, 1.8286675326907946, 0.3015554960828928, -0.014925223681147093, 1.0800389261249652, 1.3443918167057256, -0.40559447677626737, 0.3038456341835357, 1.874149376841319, 0.6140777846396932, 0.30028768394652355, 1.1841461199987278, 0.9205320868219458, -0.9043202258520724, 1.1358802334295277, -0.19020088457437404, -0.7179639028795364, -0.5686287471342089, 1.278840611720953, -0.09672636050655858, 0.09723703519151587, -0.30405595851654676, -0.778423935223968, 1.2226133500437277, 1.7205837826806798, 1.1497964473767648, -0.6711434127704515, 2.307587865212396, 0.737676340689519, 0.09180635330934388, -0.5812586242013486, -0.7156877582903319, -0.5439979680212264, 1.152442420482565, -1.601325502639888, -1.3234349892320887, -0.050855363466492866, 0.7876275791221176, 1.1733793790260358, 1.4055261363942104, 0.5313062977496438, 0.7389837344725273, -0.07651919690251513, 0.9160256430524373, 1.467500333312104, -0.8201811064440473, -1.601325502639888, 0.26253252372645347, -1.2922513485731904, -0.3106253124152284, 0.18800401470318245, 1.3706932211772156, -0.7631324256453645, -0.04315480075739151, -0.6973625887032945, -0.3804809215186382, -1.393626659176283, 0.5099238124562604, 1.0583657756082663, -0.8887375845997695, 1.4864675385311157, 0.6092191041965431, 1.7060830397699112, 1.7902783997667726, 1.6172173120124154, -0.2113380169671966, 0.39474695140502797, 0.26392267913426615, 1.7297115502850176, -0.08990485685890047, 1.1452812076857857, 0.20383987187676222, -0.6092423819266471, -0.45247927040219493, -1.601325502639888, -1.0458217805759726, 0.6343958301629484, -0.8069617693664833, 0.7195428822091956, -0.9112165614680485, -0.5997043378940671, -0.4335537791744331, -0.603436607302151, -0.2710721858825524, 0.0986430499122843, -0.3743420346861218, -0.08135082322355834, 1.7401576399384562, 0.6223415528663351, -0.379413683046225, 1.08876101516911, 0.48078998799798534, -0.10540313722795967, -0.9458633629829041, 1.6303061762547537, 0.4150993809849673, 2.166149714422473, 0.29971688195134777, 1.3258356209084075, -1.601325502639888, 0.16779258640993855, 1.08055788549204, 2.6320560813058136, 1.1531564893805601, 0.2835097302742591, -1.601325502639888, -0.10639880888473051, 0.8886863198467873, 0.3944569525393972, -1.567558734734593, -0.5921843581182944, -1.601325502639888, -1.5273673041729985, 0.38266388745631147, -0.7901930114303046, -0.15213786710265176, 1.2235243942741854, 1.7901643193306604, 2.1077874427142826, -0.5864520827467364, 0.9245115749321069, 1.1854457840325656, -0.9681351692461165, -0.13454842303846645, -0.9068928329764768, 1.1703938300426495, 0.6985139663048345, -0.2804338450352411, 1.8109019036540102, -0.9458789557527937, 0.7192664770403967, 0.4184323688666556, -0.5886352704385247, -0.16905535607469627, 0.1967500926240909, -0.2007973045221285, -1.1229004404695737, -0.8641305944562343, -0.134598399865037, 1.33387296079281, 2.423176935129157, 0.3577787596139871, -1.3984301818618476, -0.6835439295215286, 0.9878398106711549, -1.3974468045044144, 0.9537017732507641, -0.6650119891440379, -1.302363459753613, 1.4003338772926597, 1.1877529808900105, 0.9573696725062227, 0.7686667709369063, 0.41518334205359575, -1.5236280963154931, 1.3552689065114796, -0.27015487788985076, 0.21546701389565698, 2.521260788593441, -0.10190289356668839, -1.3240684788267205, 1.3180570943498517, -1.601325502639888, -0.6574695531141945, -0.6795551790394992, -1.06357898018801, -0.18085428510544352, 1.0218477750709318, 0.9502649668413387, 0.33845945099285735, 0.7940352746457973, -0.23532209594439069, 0.15468999519924465, -1.5037884956119136, 0.8690991354352595, 2.132768659335152, 0.4078196897913299, 1.916713107406434, -1.380976374904962, 2.747208020579528, 0.8594926564681711, -0.22482682909361218, 1.4169930860250073, 0.715082816934753, 1.2676047549362002, 0.43282196331513195, -0.8054372762488584, 1.783490347275022, 0.33668267485471887, 2.1222692610667186, -0.5330298537553513, -1.550984120110688, -1.102593356530279, -0.6714466721540651, 0.07681477132591889, 1.1921416126203563, 3.190728234220474, 0.7370467659463023, -0.456006168370969, -0.4581082603321877, 1.2660321507935333, -0.3809231164801047, -0.0961771485004658, 0.4119718978141203, -0.3986612915801667, 0.03262619417543164, 1.7819883770472433, -0.5406958325004698, -0.03666154490663321, -0.682362010891085, -0.0337278385513375, 0.23968791639501072, 1.9857896111015416, 1.943735510895881, 1.0278892404095334, -0.3732958531166413, -0.5687855410980941, 0.5770910681049352, -0.4811731655151386, -1.0862346084792633, 1.1569339378398609, -0.38108717374278733, -1.1649009321992696, 0.980417918746998, 0.17797279934603388, -0.3581155586360854, -0.030126041978474735, 0.28256256945714336, 1.7281392126854314, -0.3481483136169434, 0.8806193936810511, -1.601325502639888, 1.3142673849091107, 1.0668978194399104, 0.8890392228781246, -0.7145559497579932, 0.6842643069707535, 0.5339026938434888, 0.4450641534796458, 0.4824828030674844, -0.1795135734380404, 0.9884619222082709, 0.4924155307584185, 1.7757424731701004, -1.4450637586395692, 0.11358718722835426, 2.3023924075939446, -0.7906188806284301, -0.444533621335613, 3.0649044433087775, -0.2567005830916431, -1.1303562833179175, 0.3435596194619828, -1.0637144840237773, -0.8578557040196884, 1.7743092710556787, 0.08475615570331127, -0.03972345848101206, 0.9598077420135118, -0.8291810000081465, 1.1127381640263534, 1.3756101412822568, 1.7256467683908474, 1.8877046914649571, -0.4095872920401909, -0.7027147070140938, 0.30935707861743555, -1.601325502639888, 0.16375938987015667, -0.5269190205814845, -0.6660497079708926, -0.6481329490105662, -1.3414406736258209, -0.6369057548757632, 1.5052167115147654, 0.15401617430557318, -0.2266619781651873, 0.45244086635259323, 2.128145469698781, 3.8574766739391486, -0.8055594196129909, -0.42112314305586884, 0.9261001716592754, 3.465919565861115, -0.1527579795667023, -0.22544667501459315, -0.10211279623827588, 1.04605441751578, -0.6781333716415298, -0.1958986426177241, 0.16857009255980174, -0.9738935658390273, 0.20688112836284625, 1.094286453114446, -1.5512591217636127, -0.20831368596639102, -1.0082025240062862, 2.590494019616655, -0.5012581857550572, -0.5495280038346068, 0.4369403203673886, 1.9863112358993666, -0.8260567819899706, 3.0287702647994945, 0.9785793046154421, -0.35134403181499757, -0.5611253596648567, 0.5014689328448289, 0.8605540309929227, -0.5859089345955971, 2.0733202245962263, -0.21140611872286905, 0.5236948936991365, 2.432225805983297, 1.2919372057124616, 0.5825461386784638, 2.935036127776602, -1.0076657062531793, -0.7896833144350809, -1.346966111571157, -1.601325502639888, -0.3021340496740472, -0.19685393299862544, 2.012881315790485, 0.002014121823049729, -0.8498220291025664, -1.0143148898028347, 1.4837746538441106, -1.601325502639888, 3.2814786880615, 0.8628388382320651, 0.21095950395384813, -0.8271166238920517, 1.1141687007100245, -0.15540555193096361, 1.0725306742444884, 0.35390735472074186, 1.2798084296263752, 1.6447146952615626, 1.44436199551198, 1.0090920896723787, -1.2256167792599602, -0.044687689981884576, -1.601325502639888, 1.1999638522432057, 0.6781724649909768, -0.5649426563138732, 1.4835123754582829, -0.5435569725035931, 2.410943407614578, 0.7168190785254762, -0.44575732059306233, -1.407712927605377, 2.0168186900948024, 0.12161813007895612, 1.3499447085877951, 0.49055279447857547, -1.5849111689047053, -1.182699012855439, 0.3198391515859974, 1.8563744187969142, 1.7184189198253002, 0.24911701094566496, -0.4390007201841652, 0.4843016930114774, 0.2511923153278465, 0.35537947212411736, -0.07279718940282032, 0.9134473718876942, 0.91011718270828, 2.3277030714555487, 0.9242754177676428, 3.8574766739391486, -1.2675659947655977, 0.03436845298535122, 0.34578152253541855, 0.6208246562263543, 1.3381173927195602, -0.8878566597368011, -1.5895470776434322, -1.601325502639888, 0.6303105244519955, 1.8499056849090476, -0.03368359240087139, -0.573299448073698, 0.37705195628313143, 0.8673460816308041, -0.7948862352596329, 2.4718903475213243, -1.3084337783800764, -1.5630818730816824, -1.2248430380310371, -0.6162367387584642, 0.03354176963815947, 2.4720057606728165, 1.124445268967745, 0.3558460557769516, 0.8001177876179425, 0.7600001228523565, 3.487672146214172, -0.4906962831355216, 0.8454618289986827, -0.7209860348999753, 1.7459008435760959, 0.16129040136616432, -1.2702821686537888, 2.258928294521384, 0.9287954552339613, -1.601325502639888, 0.7832506752870837, -1.0800882917585324, 1.9343177444259014, 1.6014915371288168, 0.28681219897385934, -1.601325502639888, 0.6228785038909768, -0.35457080228128984, -0.24813122322948417, 1.6539325544252599, -0.36615729648123413, 0.07755922613446715, -1.2028074888859526, 1.9620464870641623, -0.21175409070732118, 1.4379710922020326, -1.1369248375873773, 0.3003915024742498, 0.001133330231621779, -0.9198644182658028, 0.8375857476746669, 1.2919542644692634, 1.9799168675294383, -0.3692166778964086, 0.7335382594497105, -0.2947640003779807, -0.5104499236974062, 1.417296145501309, 1.951033460290155, -0.11641589745890829, -0.9916885146140649, 0.8574767911917267, -0.20001886547151115, 0.342524499430119, -1.051199287114668, 2.6177555122443965, 0.13723009106951214, -0.7141962498782434, 1.9766482498003721, 2.680443778060296, -0.6147506944794131, 1.2545430780875146, 2.411844856294335, 0.008828562079222562, 0.5937037650706821, -0.6345052013062902, -1.601325502639888, -0.8084368853794582, -1.1761946288312928, -1.430663802329051, 0.45553743052672624, 2.3070582441223197, -0.04178743478249647, 1.5288524186928922, 1.9816208774080994, 1.1643371717487767, 0.0868289279262659, -0.4628925752573995, 1.533588089506914, 1.3564512915923048, -0.5269139562630579, 1.0052357444628697, -0.26494929163454856, 0.16328201122277558, -0.6876822106686493, 1.583999647830092, 2.3389399944126015, 0.13765922542030767, -0.2477063535678891, 2.33837012531818, -1.5324771889701587, 0.31035341663189125, 0.22666515483527933, -0.6232916675040812, 1.2071223996092455, -1.601325502639888, 0.17939267430671496, 0.35283865026141303, 0.32510550966240603, 2.336417430750534, 0.2126891019677009, -0.379201781301583, 0.6422592506908977, 1.731106370196646, -0.6562839028807004, 0.5868269537349526, -0.6308864126123997, -0.5019713883880601, -0.18518481044542243, 0.5943405364769301, 0.4042158941454128, 1.859968752163665, -1.501541945633509, -0.6175947757257331, -0.11064030883764997, 3.6455104258675144, -0.77048021859467, -0.3519938638319165, 0.6908948325051567, 0.7573024403900008, -0.9131190126660622, 1.6127873661054455, 1.9108043805192072, 1.5501217564509286, -0.7269153522397489, 0.24380893887801738, -0.4217221986169976, -0.40439116806405495, 0.24132542377643848, 0.47744100753178464, -0.8740206752551584, 2.0083698077025565, 0.21863287926929686, -0.3785751385321861, -0.4634379223889183, 0.2860298950486459, -0.7443526002080985, 0.8915092775544062, 0.3962038758531325, -1.5271503381099254, -0.3947932184753564, 1.1686738275794866, -0.15225527932720992, 1.3035454231730126, 1.2123279858645368, -0.28915406827786605, 0.16226501612001365, 1.1708938648514027, 1.1670948264030192, -0.20838538605356816, -0.9199337861010786, -0.06843814395381935, 0.9308153186565366, 1.8388257558231917, 1.6194050975722474, 0.016098924265228527, -0.3430442802732324, -1.267644724926384, -0.2988574356527301, 0.4313105308081869, 1.4785458783412755, -0.40401201053981906, 0.5154781703252344, 1.8956780610113528, -0.13246938705324593, 1.892008562497433, -0.053788536735649935, -0.9161486745283717, -1.01436280092057, 1.0930664854600471, -0.48434649409489056, 0.951748545596957, 1.2814932484036343, 0.07215866361979023, 0.32724385148181767, -0.16503721921865053, 0.29011626693190984, -0.08703951880234653, 2.075188425009094, 1.173825039047483, -0.6815952330999969, -1.601325502639888, 1.369307463730149, 0.05455482622954246, -0.371859719028389, 0.15146549034908738, -0.9909926372809345, -0.09476380384513111, -1.0204523106484356, 0.3908382304812786, -1.4514450164219947, 0.1787441750051657, -1.601325502639888, -0.5351677291243835, 0.41601375700384907, -0.7748423959248131, -0.8857869527592065, -0.14495439795910503, 0.14828509837785003, 2.821732398185133, 1.5657587724905264, -0.06798848578624095, -0.23947417069564633, 0.7380953464034635, 0.6109664273248937, -0.522034951910435, -0.29828783310140017, -0.6960155466378712, 0.8101789890710401, 0.5495830231327975, -1.601325502639888, -0.9385029758733048, -0.534552614342988, -0.8122093361561017, 0.18682736029847313, 0.3559827923744466, 1.6978503238115183, 0.4792213820014385, -0.4427557790251635, -0.4424957662554816, -1.0919584877439574, -1.1612666173712591, -0.7918413138062794, -0.49836959181520823, 2.328281469928371, -0.29051490394741475, 1.6659962940010395, 1.664459140087357, -0.2722636334279397, -0.1674751554543939, -0.6329583852061325, 1.004424120799414, 0.44696060745846644, 1.3079841650014639, 0.4124451450438357, 0.00589858732696583, -0.21535588728017277, -0.5783919534294184, 1.4185862139844458, -0.5174827293677956, 1.7942064450634587, 0.988402483102545, 0.3662750866735883, -1.0275722759043593, 0.5060128259163759, -1.2336722773913487, 1.187149793911227, -0.8109818386598281, -0.40247645588458664, 0.03228941700013069, 2.1271563283473567, 1.964730042743547, -1.0006992031727022, 0.3983283574326533, 2.283602720062902, -0.011541592615203409, -0.7567462534749936, 0.24790570594120195, 1.6032760430161366, -0.46583840932261195, -0.9687691419500718, -0.5778418085225601, -0.015088881129214454, 2.5225924377962823, 0.49547064748439257, -1.0583315466699275, -0.21339986092408053, 3.8574766739391486, -1.601325502639888, -1.027620320293633, -0.2913691745028858, -1.1336070426609623, -0.012357214424789926, 1.089412446444479, 0.18266369092346194, -0.11115247135631952, -0.43557137698086235, 0.996411302877914, -0.40112228379190823, -1.601325502639888, 1.0579702256849244, -0.5429524528094289, -0.3550994904706112, 0.14370748760731447, -0.0681778646410458, 0.11296574204892286, -1.5758147149057584, 0.5424875132039993, -0.8411650432044918, -0.6052356397870539, 0.02784254560789351, 0.9591181950784082, -0.0609756042107123, 0.15642772277689446, 0.18641128655835945, -1.2353878152579991, -0.19630138920408638, 0.7940211478628262, 1.031891651224158, 2.332714880895311, 1.1935095116814014, 0.1534104551675744, -0.5170646565546132, 2.087207385348269, -0.16379472867440348, 0.44996028322483467, 0.6859637856171337, 0.5751864845623179, -1.1123835836297213, 0.9745587688717157, 1.5161204556280221, -1.1897311188502562, 0.6241132646860428, -1.601325502639888, 0.1456464552066049, -0.0015391639101576431, -0.5447686773226716, -1.601325502639888, 1.692949396290979, -0.018445058258435686, 0.007543158099901694, 3.745784463779301, 1.4897302923125424, -1.498555588691421, 0.3465013221095408, -0.5014387686883917, -0.34522113756698286, -0.5212563129525078, -1.035132636955998, -0.06717139798973905, -0.08567681733126722, -0.8510289361462945, -0.41884913081127334, 0.7827309162907677, -0.4673759630509208, -0.46854288863339455, -0.310287602339173, 0.30973690249935654, 1.0970262493826672, -0.9137193343067944, -0.5157690573026704, -0.5075117527455978, -0.45959530414776495, 0.873087419466913, 2.422566818030411, -0.48171877918972694, -0.2907474627803851, -1.2682341183010397, -0.3364066913473436, 0.3812480106417613, 0.35817737478269485, 0.16752857549412603, 0.6654253089708246, -1.0762862213826765, -1.601325502639888, 0.9193518340857205, -1.152117426367261, 0.03528949258111415, -1.567909911483046, -0.8214666436949086, 1.0296476250754896, -0.6786405364775402, 0.056671178245266955, -0.11346073438606437, 2.0924793408292586, -0.7758758500624663, 0.8138205005620655, -1.601325502639888, -0.7524174606649976, -0.4741388272220729, 0.3160487757875606, -1.601325502639888, 1.1565844998685042, 0.80679229275972, 0.10204014140352535, -1.601325502639888, -0.857537784766948, -0.4281925317633144, -0.11642815844034868, -0.19212425940377806, -1.601325502639888, 1.4540561671507581, 0.46197844393478993, 0.6776073936719168, 1.327035864375265, 0.013912471420777311, -0.06465309901687193, -0.18212582884486317, 0.9543763937736552, -1.1033308145831138, 0.24525466851697073, -0.32690123220567435, 0.30151431517780364, -0.27653511947679704, -1.522155987241583, -0.2102390598688605, -0.34551086988954405, 1.4279645320793102, 0.20567222224605253, -0.5257187104788625, 0.07387586738065716, -1.601325502639888, -0.7071022725721342, 0.688752092724999, 0.8213676677314965, -0.7646084745591025, -0.7690544130505741, 0.9554433657029879, 1.4883261433932933, 0.44096725314491575, -1.2858881990609257, -0.7521986954361678, -0.3062433442617636, -0.5413519282796524, -0.8969467114960282, -0.6279095929147156, -0.7613262631332044, 0.5848906515664125, -0.37543272894913754, -0.41925867424605157, -0.8952620259903116, -0.6592399322185323, 0.6899971154284615, -0.3474278476851474, -0.09515988685462312, 0.06705636280605307, -0.8608269929485654, -0.7412244506795667, -0.24799941767888542, -1.1796120442319986, -0.6167657601266269, -0.49964386762115126, 2.4572062229749463, -0.1688072044718504, -1.256578789351972, 1.169859677720293, 0.20244825048204532, 1.245870566055325, 0.5291836819716534, -0.4803431503795115, 1.1245350939840242, -0.5957848886115448, -0.2108533083852604, -0.5815733449371873, -0.5452849046232326, -0.3160350706660022, 0.21215401674459008, -1.601325502639888, -1.306425876078004, -0.46937183759673246, -0.49670176515898923, 2.5104516672718145, -0.3504824313249714, -0.3413814512996713, -0.3262068874952312, -0.6551935417965281, -0.021227901233265643, -1.298840293387889, 1.2126699606298035, 0.12823372920115786, -0.3714080617877563, 0.7176781468562977, 1.7046087900219353, -1.3338923403304426, 2.210018706425996, 0.8261020058301487, 1.0298795175507642, -1.601325502639888, -0.40322664136925096, 0.17080825476081984, 0.350853170895522, 0.6676330852612893, -1.2035101630674967, 0.02004362850411219, 2.2047851331478103, 1.542544469914025, -0.9052659206822727, -1.5695280882444393, 0.03048665291217398, 1.1395316070143453, -1.0306274592661018, 0.03584057038873783, 0.2196991848409445, -1.1926339062088522, -0.15692737961784028, -1.601325502639888, 1.572977292048453, 0.8032736576262772, 1.1907052119890236, 0.9856163083392689, -0.6092892935078521, 2.076104533557961, -1.4017265700475485, -0.9575708011031393, -0.3426973744610804, -0.6568782273022438, -0.5248649063737786, -1.601325502639888, -0.25119660186384407, -0.2124481688746948, -1.147027386534983, 0.8326288461083605, -0.2308503027746468, -1.2343895448062498, 0.004757649694310285, 0.8931605119042119, -0.3701603736535435, -1.601325502639888, 2.1526490411292105, 0.9080261522846887, 0.11217637473223506, -0.781821626437123, 0.6690148445622358, -0.20911957895374172, -0.7023060964800755, -0.9806572296394077, -0.3943194381594909, 0.41348026507570007, -0.9648511586544616, -0.7804210758493865, 0.6349061268800873, -1.4275072992809135, -1.336718329965545, -1.2966018979616871, -1.601325502639888, -1.5565135270490007, 0.7140462309159625, 0.06209879488207314, 2.0419435734331177, 0.3128614536963725, -0.8290301366276805, -0.7755468026363445, -0.9859535071759881, 1.676016980906722, 0.4230636880668121, 0.4840885918229898, 0.17447615401627822, -0.3869841727347128, 1.279369966267948, 1.0179746376477015, 1.2402011948494738, -1.0687642092159562, -0.11930189260376874, -0.8778434360372139, 1.2804913129845976, -0.09489267742191002, -0.05332954956045125, -0.5121208155989888, 0.7680638505011924, -1.1231286013417978, -0.3560066698264617, -0.34575235791551967, 0.7300057640763554, -0.16110051127201772, 1.0495645232708326, -0.3235200000274114, -0.37213252586567225, -1.601325502639888, 1.1059365178377818, -0.9272506600536797, -0.42849505815346606, -0.23409946285923053, 1.050263932299707, -0.678761280490528, -0.854299886127273, -0.9762398112569642, -0.5501475165767422, -1.601325502639888, -0.044810832882547634, -0.40875567764610266, -0.4947861867145281, -0.6854463140837741, -0.5454337689306354, 0.4511433346633556, 3.0705994026498313, 0.20026086473682853, 0.6451421805904036, -1.601325502639888, -1.601325502639888, -0.3384854607894836, 0.7920116796201826, 3.8574766739391486, -1.0076391185814448, -1.4582111624047598, -0.6672846686732672, 0.015066336392568998, -0.10482767072897908, -0.3640177552179767, 0.05768764026189, -1.601325502639888, -1.2757250781995189, -0.5451079200214138, 1.395315137732947, 1.0545040995372565, 0.7475517616193166, -0.683314102755086, -0.21387044272304567, -1.0391481750170688, 0.2524595943780655, 0.7230519217919373, 1.2439525220874217, 0.8292472141154823, 1.8797251914278301, 1.6994458506586376, -0.4814788904222015, -1.012303155944058, 0.5594571113472147, 0.3083873949104827, 0.002341969805334505, 0.013026882053987434, -0.21476349529592517, -0.1724716386673391, 0.12746955020505726, -0.4017272033006767, 2.5830819897862685, 0.17773371020773898, -0.2159420155021654, -0.6993992443395856, 0.17746050355582954, -0.6616817999646347, -0.17640501482552587, -0.2229716892914154, -0.13019830678247024, 0.40234596120254923, -1.3624109167357863, 3.3900720684310692, -0.7082120913007836, 0.1632916067734766, 1.0617444756273247, 0.2351525527018644, 0.4702868581264908, 0.39012935917323815, 0.8685817753266352, -0.6822924431485026, -0.4967672014839002, 0.21421666033069364, -0.037556330009497665, 0.6099951443594906, -0.931416395137528, -0.6279211875384786, 0.03681585150026082, -0.6623301659946417, -1.552632568252407, -0.08349622843445521, -1.103805494481855, 0.04522915039199919, 0.8354542027036602, -0.1712743271743121, -0.4606905296430616, 0.4581672777765006, 0.2871547068252652, -1.2195263033134482, 1.6672237248615502, 2.876448893713087, -0.4435064975959888, 0.0410417586832936, 0.404532947133151, -1.0170843389881468, 0.6514096744566183, 0.7832341496164211, -0.7549354930947897, -1.0078237662966698, -1.0137172335928515, 0.026881791093957077, -0.9636472502203285, 0.5887023508108515, 0.1399704204238833, -1.2938632345015402, -0.9196488515538733, -0.1343357216645939, -0.4945283729252087, 1.4035923663848857, 0.7305335193649114, 2.015310322833212, 0.4536881546721801, -0.4031461453605924, -1.1144273359753842, 3.3340591073861776, -0.6076919674949764, -0.08368454111697113, -0.8461744537565732, -0.46970514971205257, 0.4057886315596144, 0.5372875243532782, 0.40564816335906934, 1.427236869484494, 0.3508259835018691, 0.8161298297641104, -0.22363764716438173, -1.232229912858718, 1.2483118340795145, -0.16686623779949453, -0.9520694186703254, -0.1993816942506479, -0.3501193996567829, 1.3618618494722983, 1.255075631151432, 1.122542417955113, 0.9725586296367035, 0.46168524655225884, 0.31329032150408753, -0.8809462639736181, -1.601325502639888, -0.566914475347164, 1.4450757978669055, -0.571326829411182, -0.6222412878811643, 0.7917430042005541, -0.13954703859600098, 0.054002015891933826, -1.1791771458872065, 0.36353808910766344, 0.9537020397938337, 0.4104276805089413, 0.8364014967923217, -1.4597205125439345, 0.23059773136424647, -0.45693746987512873, -0.620815282429763, 0.8398982753936122, -0.857339743262202, 1.3667883651280515, -0.4118305185596288, 0.8309019135252579, -0.29389680248337346, 1.0913659406413667, -1.4872562030306402, 0.3482899594145153, 0.24816465253859463, 0.3131570499665734, 1.5798245171028489, -0.9051489082723353, -0.3114557273654817, -0.9381806586598271, -1.601325502639888, 1.7404934842129918, 1.2337689773628915, -0.5694708233439919, 1.0380293386128288, -0.21819483757230437, 0.9213117253163979, -0.9127875663522652, -1.3011430589667123, 3.8574766739391486, -0.6751553525000085, -0.8738019766620982, -1.086497553222778, -0.13209742619204123, 0.07485594626754183, -0.20082342574348128, 1.3865855854827014, -0.3683862629461553, 0.3826071137813253, -0.16195984614590886, -0.15405617761363571, 1.7027048728370138, -0.7646957007804064, 0.5026974298776287, 0.1969194807482741, 1.0384651365404944, 0.26138345653001205, 0.3307039804102999, -0.47435885853051146, -1.601325502639888, -0.12729725195386252, 0.2536747642571139, 0.7315589105745397, 0.19132807339186578, 2.739437756856304, -0.09324504140362001, 1.636436133894254, -1.226261880137297, -0.5812814802700312, -1.589363482565116, -0.8226267057932013, -1.0259913422905969, -1.3267148850650232, -1.601325502639888, 0.90370229052158, 0.80216803695106, 0.18615527193478634, -1.4232971681161302, 0.8175795575491946, 2.7389441190813515, 1.316728643663911, 0.44441365510504177, -0.738610529378533, 0.4735853286799711, -0.17676884612294494, -1.2225501012281073, -0.5338740623097342, 0.9684362744383271, -0.0407296585892495, -0.06570154620249836, 1.03436197244352, 1.1277448056935255, 0.14023723004198113, 0.34510476966792747, 0.6939859325462542, -0.4289099324497557, 0.8600753196301719, -0.7612644251397978, 0.5258594900114356, 2.486022727902403, 0.8242967095829767, 0.7802062202840999, 1.2062545353569534, -0.3897137070945371, 0.21128108817386704, -0.37190369863576317, 1.4448220488594787, 1.3964900596076715, 0.07968530697243861, 0.04413299199593698, 0.5514704146470675, -0.04250656799892275, 0.7703041450468104, 3.8574766739391486, 1.0307852309197103, 0.8256118331151772, 0.07535331564553316, -1.601325502639888, 1.9979698300011033, -0.13927849644791818, -0.10286977857135618, 0.894953280626852, -1.601325502639888, 1.2130575142608946, 0.44242817573915094, -0.14658750737980872, -0.6110207573232358, -0.5516400245253621, -0.6606725346110409, -0.8056300535278724, -0.09317387440258175, 0.653612386428652, -0.6679392984655367, 3.6455093596952146, 1.3317480793986844, 0.8401888073453929, 0.4914579747613715, -0.9535202126277043, -0.811263841233208, 0.09496648800687908, 0.9432125036191711, -1.5072418776688066, -0.25373022706352805, 1.2251647003578983, -0.072704832227326, -0.36428629736607043, 0.40512973707814454, 0.2846333426070323, 0.14752011975251889, -1.3635191695238693, 1.0360809087343719, 1.9577290223348651, 1.4071517826088025, -1.054872650503171, 1.4148540778479, -0.06418424974790266, -0.24691458736352034, 1.5092774952628158, -0.5514551102670612, 3.8574766739391486, 3.8574766739391486, -1.601325502639888, 0.12270042823511687, -0.2173393675729984, 1.0780912958757283, -0.6438275453554041, -0.18391673176597267, -0.39459024592371966, 1.8186031327208076, 0.622936610281333, -0.7869701058385995, 0.5658665394008793, 0.772113705983172, -0.0902546946448721, 0.7536268113853609, 0.8629212000422543, -1.0765106506518503, 2.2323827365931685, -0.4341033909951414, -0.9708501770083545, 2.3500244547307165, 0.868212879710796, 3.8574766739391486, -0.6316643852126389, -0.4774370312324727, 0.9622039642580051, 1.5620330333877923, 0.30543476399685426, -0.49665851854506166, 0.5240003520631188, 3.8574766739391486, -1.0042112413650433, -0.6302221206336609, 2.4761179872343524, 0.48084996018986126, 0.8575250354883014, -1.5369425559529586, 0.41206078992964495, 0.2844876768165323, -0.6346120184436079, -0.3296246360747785, 0.45585008555373985, 0.004863733838171537, -0.4647193282221085, -0.6554175712510888, 0.8950321773770604, 0.30488848396458085, 3.8574766739391486, -1.579874082643728, -0.4184109339959268, 1.2492271429991508, 0.07742608786849897, 1.4413202059397572, -0.9656219345916749, 0.9354083889254237, 2.075131384791038, -0.8536311961877956, -0.06642401120735977, -0.08129564880702178, -0.4924975146008007, 1.1905775378560906, -1.2289643603750087, 0.3760584169709608, 0.3890442623148035, -0.38263632209485166, 0.738326172706438, 0.9967756672614723, -0.6818938946155669, 0.5182506181201437, 0.8445827699372286, 1.2471870223028954, 2.0564957591573614, -0.2121806928989012, -0.8124116423500481, -0.9422249167372311, 0.014562569980765562, -0.9107954234095039, -0.7936989191319199, -0.6985209849073674, 0.9271778053116202, -1.2509048202780766, -0.6810645458376157, 0.794429758396839, -0.13083827670560766, 1.5837605586917969, 3.2898326811190364, -0.6057691257517225, -0.3772568164830962, -1.1115810557486954, 1.03455761506058, 0.9795409920301441, -0.1040396361276498, -0.6827783511742791, 0.5375378083007244, -0.5448530382059171, -0.8263535777040153, 0.1989902538981633, 0.2967538558577987, 1.6057946085320733, 0.5586712090904965, 2.685073098187387, 1.0314286659028284, 1.0363559811878011, 0.09043672171831382, -0.9053933282721363, 0.2306866234797714, -0.7140461194912338, -1.266847427953206, 1.8540597587333687, 0.9435328883953551, 1.1146258220837035, 0.4302436921503783, 1.9384763494824926, 0.5463653151310561, -1.601325502639888, 1.207009118802353, -0.4528788184716678, -1.601325502639888, 0.3993052378026267, 0.8721395922921126, -0.6241406738338158, -0.7744185257997497, 0.5332198104852663, 0.8854038418778195, 0.5782332051814365, 0.38354441250467014, -0.3903815307690232, 0.7350093106807861, 1.778511322633494, -0.5608050415244409, 1.6693499389710453, -1.601325502639888, -1.601325502639888, 0.6000738780207883, 1.4701023268105409, -1.4041214095998513, 2.0123039834899736, -0.23016488725720885, -0.6087631374777462, -0.3028581139373697, 1.8567654374879752, -0.4676826208587381, 0.22042071694505172, -0.27452618432031445, -0.18639384983375065, -0.6070016209306531, -1.4774035465453443, -0.8993026191004347, -0.19795688824309243, -0.968168087315883, -0.7842552979836681, -0.5809729566606868, -0.9126146465323403, 0.9995522464740473, 0.25855690049086627, 0.710448965575381, -0.700934599087517, -0.19658259214824667, 1.0813609797771055, -0.40544148105120115, 1.0159534415097675, 1.7720465868917692, 0.7885236969403626, -1.3915625829211482, 0.16634432461178086, -1.1568435016305874, 0.9780957954773517, -0.2234858508831504, 0.22881669053690756, 0.5435479548279969, -0.3206104158204028, -0.8926303129390204, -0.056208348042291384, -0.7844515403226573, -1.601325502639888, -0.10675117882991789, 1.3199855334976869, 0.676369834174566, -0.006963182215437049, -0.17028758471055744, 0.7192963298647999, -0.3003912577779776, -0.814870502217184, 0.09428400446327193, 0.39142582469017567, 2.563458822059617, 0.4846386034583131, -0.7137305324904003, -1.601325502639888, 1.1514095660668358, 0.6720443731530072, 3.257551116216212, -1.601325502639888, -0.1265062853787134, 1.4960151114786284, 2.643134411133208, -0.300115252423794, -0.5808282237709466, 0.3652823469906485, 0.30579353097584233, -1.601325502639888, 0.19053084305445048, 0.638424762013541, 0.9640649680078635, -1.249289236064562, 1.4735327361861437, -0.721922800537163, 0.975655860168532, 0.5498868822383297, -0.5853536587345449, -1.601325502639888, -0.2860179224570834, -1.0237788348605568, -0.5469536641802151, 1.1856145057990641, 0.06599725389743667, 1.409034109804663, -1.601325502639888, 0.6200170307090083, 0.35698246217733737, 0.04853548396618443, -0.769170559195518, 0.4106255887421577, 0.2664890891321732, 1.602592093485614, -0.3523948778882938, -0.1531851148444433, 2.002068196322738, 0.4426881885088437, -0.6490891722922305, -0.6808127959032523, 1.9191972888656976, -0.35211474111644453, 0.39786950352898964, -0.7636368584148561, 1.197873621448834, 0.3164891049475073, 1.225110059027523, 0.4289291017043388, -0.838094067165554, -0.17725048945951558, 2.994610104303871, 0.06522774403982458, 1.2330647705586668, -0.06326014490677416, 3.055541851255334, -0.5990514406317858, 0.8592978134803199, -0.8028003656076037, -0.3633247432229032, -0.8224246661423299, -0.7430309463705703, 0.036763475786020496, -0.784348321516853, 0.7279992278075426, 1.3890553736159132, -0.6242722794771112, -1.0648186387120813, -1.179490400636133, 0.09964258644364032, -1.3865574870350936, 1.0041477156306151, 0.904436350150208, -0.9251650937631215, -0.7613511849107203, -0.37831019471560795, -1.2460549690742846, -0.391690257267412, -1.0022690752488501, -0.051786531699107116, 0.0069502330294928605, 0.04581274645476516, 0.6069402941765861, -0.038153386497561, -0.7823076677344366, 2.7188640965241015, 0.5781180585730243, -0.9571076825102782, -0.3919933167437246, -0.3131683998940786, 0.7470645208781649, -0.864988929793595, -1.312684574022743, 1.402702912143511, 0.21722873035004792, -1.407058197859455, -0.6508226351806774, 0.6231430478929398, -1.0234919678760581, -0.3063420984710588, -0.9698218538248954, 0.46309739176375864, 0.0685483376685268, -0.4339703860006968, -0.3207338252641354, -0.21818550856467292, -1.0355793631497456, 0.3143166456144809, 0.40902712992120793, -1.0028777263606767, 0.3585525341607887, -0.6927870436415907, 1.0699793239303177, 0.7701791363446168, 0.37787704037188397, 0.5252685640141034, -0.5294295231694062, -0.451401103663711, -1.1148646332078531, -0.7003996471359363, -1.2360136583981656, -0.9582882017895785, -0.3945686559346478, -1.4245083231901163, 2.9881005893255304, -0.6342345268135983, 1.430764833625568, -0.11027754371254195, -1.3825547930184519, -0.7736264930523037, 0.7818734472184072, -0.5191862061603012, 1.936632937575597, -0.6889107743372229, 1.2474762215392956, -0.6450809641657238, -1.1476956766598474, 0.6282890617709811, -0.005524249424899895, 2.3573253360988216, -0.8535299764550532, -1.1429538420372103, 2.0317379056333547, 1.777860424444286, -1.601325502639888, 0.376524467537645, 0.55521974281195, -0.7608539488042543, -0.2794031229641013, -0.40944922272732626, -0.8232284934208456, 0.04196959512747273, -0.5022072123736926, 0.017060478408395755, -0.51215133478108, 0.7968974141854509, -1.601325502639888, -0.5663669958710559, -0.335960631511281, 1.26194258039338, -0.4239763534025172, -0.45151105268215747, 1.0376759024953413, -1.1608452127696396, -0.6696439080661108, -0.734294264093062, -1.4377384219443357, -0.6747568039670716, 2.2629416336020793, -0.6023628385243991, -0.07480359240009862, 0.5007836505989257, -1.1106829055395027, -0.8246423711623337, 1.0075647978524775, 1.0139620981962258, -0.5930040447097746, 0.43638604404287523, -0.12668193726515156, 0.8159832310728559, -0.932881382513652, 0.39064245459267305, -0.6024880471338941, -1.601325502639888, -0.21663369478185832, 0.444136983393152, 0.6490246470212654, 1.6742831182036686, 0.13992230939884368, 0.049668292035054594, 0.9982557809571098, -1.601325502639888, 1.1367859467984847, 0.22325113785878267, 0.7744944687293245, -1.1598825924541754, 0.40633744375110287, 1.479025922419407, 0.4191890846566661, -1.2330164814731266, 1.0444988721299149, 0.8933929374656365, -0.31462572415678747, -1.0589439293848055, -0.17047882936688202, 1.5487194733331995, 0.8558410163402836, 0.2624044497789051, 0.37575735656771364, -0.5693589418882482, 1.276261807470049, -0.2283594577385021, -0.1102167718914355, 1.028703262960659, -0.07614017264983634, -1.5418680928958526, 0.4254532467344351, -0.5658598310350453, -1.601325502639888, 0.7672690190514581], [-0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.1129470957542676, 0.0517099190878545, -0.44294774881238946, -0.44294774881238946, -0.12877424715339697, 0.874051352702909, -0.20705844959360994, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3982412955289398, -0.44294774881238946, -0.44294774881238946, 2.03081173530287, -0.4174896749813108, -0.44294774881238946, -0.4223399962493767, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.29409417208792893, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.08065208390052231, -0.3239166399804174, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3388578815238534, -0.44294774881238946, -0.44294774881238946, -0.11041939508641979, -0.23800868994261035, -0.44294774881238946, -0.44294774881238946, -0.33508147709908503, -0.44294774881238946, -0.026743139934649395, -0.2651365552414718, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.2081697962906751, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.27034974481641283, -0.2643282927080366, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.17925433749247668, -0.44294774881238946, -0.44294774881238946, -0.06850837410596436, -0.44294774881238946, 0.265805876075821, -0.44294774881238946, -0.4326671886470629, -0.008312514763384625, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.22348852002232847, -0.44294774881238946, -0.44294774881238946, -0.36795369178131376, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.07907362235058278, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.31844710886753397, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.1324422123829539, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.515499393949473, -0.15371781999759707, -0.2093374021216525, -0.08719990972422016, -0.44294774881238946, -0.44294774881238946, -0.4396347490545643, -0.33308129237382045, -0.23654712167839223, -0.44294774881238946, -0.44294774881238946, -0.2084192927185629, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.7954250612415565, -0.44294774881238946, 0.13426222261374277, -0.2080745974887431, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.28858677051061005, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2391486005747457, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.19499110814853218, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.25451359213503866, -0.23581995728056435, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.2951593792386886, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.013550865513507437, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.4111116870900879, -0.44294774881238946, 0.09351492207313977, -0.35430356119286643, -0.44294774881238946, -0.44294774881238946, -0.005342627355742442, -0.29258955311732543, -0.18848400031357093, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.44087237797451245, -0.288737673210867, 0.050233550132352665, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.12527343320909365, -0.44294774881238946, -0.44294774881238946, -0.15849438917968334, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.4110413174446975, -0.329908185039777, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.014238944615287486, -0.44294774881238946, -0.44294774881238946, 0.36945975039211126, 0.04684197172480226, 0.4979809096416596, -0.44294774881238946, -0.44294774881238946, 0.38467511843459007, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.12094905732112592, -0.44294774881238946, 0.03697242032132842, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.052437340889009074, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.29196322647271866, -0.44294774881238946, -0.44294774881238946, -0.4322682215345864, -0.44294774881238946, 0.3707798433529109, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.43602593656742356, -0.44294774881238946, 0.45015884649226057, -0.42398008578641777, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2210181398577877, -0.44294774881238946, -0.44294774881238946, -0.2841708555645968, 0.10928476905667107, -0.366881429960968, -0.44294774881238946, -0.03539305002555544, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.19388217418832637, 0.8621917518301575, -0.44294774881238946, -0.0180837702714892, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3258270311639452, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.24177354318342978, -0.44294774881238946, -0.44294774881238946, -0.42163956560017907, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.2334279481754741, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.13946391773104147, -0.15722043576518813, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.39055922999014775, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.39905732038144476, -0.06767496648505643, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.1329825663164557, -0.44294774881238946, -0.44294774881238946, -0.1599307319178883, -0.44294774881238946, -0.17220027976376967, 0.08058967142799624, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.41140727660245613, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.054508561098243674, -0.20588448128381556, -0.3383450536585977, -0.44135859836307645, -0.13045756838353734, -0.44294774881238946, -0.40806882986126347, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.22730875540731496, -0.2849699481045202, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.3138473755612025, 0.060201268729535067, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.39269293464726535, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.03063343728761328, -0.44294774881238946, -0.16070004611045788, -0.021985200318331156, -0.44294774881238946, 0.6370144207522026, -0.44294774881238946, 1.4353030900858124, -0.44294774881238946, -0.44294774881238946, -0.234202000407689, -0.44294774881238946, -0.44294774881238946, 0.13784115846768938, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.9626932076047867, 0.3353236934198117, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.6077826693628422, -0.44294774881238946, 3.1090112068864624, -0.4289691343762934, -0.030187936479988034, -0.3900984820573448, -0.44294774881238946, -0.44294774881238946, 0.23522861314715782, 0.3861332439293143, -0.44294774881238946, -0.3248045929750171, -0.3829712413453247, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2866375999071486, -0.44294774881238946, -0.44294774881238946, -0.21632266881130863, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.4405515231778966, -0.4237381588347689, -0.44294774881238946, -0.44294774881238946, -0.34754752825331275, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.19356105570412208, 0.6709803341255758, 0.16235277635432918, 1.664945467969765, -0.11910006487486167, -0.21422481561128312, 1.7620391611026744, 3.9225344208103907, -0.333095505863765, -0.44294774881238946, 0.11872078890721016, -0.44294774881238946, -0.44294774881238946, 0.8689852691291647, 3.175239795820673, -0.44294774881238946, -0.44294774881238946, 1.0707854874827594, 1.9615167005381071, -0.15845922145017735, -0.44294774881238946, -0.44294774881238946, 1.6529524034721403, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 4.069251228169376, 1.7579284299758384, -0.44294774881238946, -0.44294774881238946, 1.280516173629234, -0.44294774881238946, -0.44294774881238946, 2.6735761563506832, 2.571785238611125, -0.44294774881238946, 3.514293516930089, -0.44294774881238946, 2.8567124455928097, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.6226972616181167, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 2.4008233545102655, 1.0844297943209438, -0.44294774881238946, -0.28127794783933524, 0.38123138367797493, 2.3229794404603132, 4.639849022940144, -0.2314330162965092, -0.44294774881238946, 3.088611478441628, -0.44294774881238946, -0.1913299801948402, -0.44294774881238946, 1.2877381387654616, 0.27126610849352883, 2.771247076443636, -0.44294774881238946, -0.3210953949500703, -0.20610213188421903, 1.1806586122762595, 4.828672381281602, -0.44294774881238946, 2.2122306295494893, 1.2775080296521695, -0.10173261196896932, -0.44294774881238946, -0.44294774881238946, 2.25305968782173, 0.04351429369309614, -0.44294774881238946, 2.173515882202484, 0.15579941635910868, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.33713311010460206, -0.44294774881238946, -0.44294774881238946, -0.053772548461061005, -0.05056317943337353, 4.828672381281602, 1.2580996901199761, 3.352568551206579, 4.828672381281602, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.05461448256716574, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.22421455828060266, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.0599058210746153, -0.20516553770473311, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.2593488492756045, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.14416416682677224, -0.056096900500843656, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.10859885354194095, -0.2643764753932465, 0.06642769432447568, -0.25927861859635903, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.42010333428352004, -0.05745505697857502, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.056122262562710266, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.2218896510052315, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.11997613709716454, -0.44294774881238946, -0.14806138189413928, -0.44294774881238946, -0.2841303145406476, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.1300574992630689, -0.2111501167865649, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 3.0145058329048324, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3429310639404122, 0.20967077943928855, -0.37684706519997424, -0.44294774881238946, -0.40989684795833176, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3354320765177103, -0.06484172806845757, -0.44294774881238946, -0.2703555363912623, -0.44294774881238946, -0.44294774881238946, 1.3518138062754488, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.0274944358943523, 0.4938568578926686, -0.44294774881238946, 1.278082939982267, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.37156433650756393, 0.0413931937551315, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.19869343672219827, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.1836746443827511, -0.44294774881238946, -0.21669915335197207, -0.13222531790482372, -0.44294774881238946, 0.2798139581654117, -0.44294774881238946, 2.9452784952149775, -0.44294774881238946, 1.355185146346443, -0.27015498702437474, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.19431719406390816, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.7461712756270995, -0.11403320909112889, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.25318062900790467, -0.44294774881238946, -0.44294774881238946, 0.06120311465232991, 0.663810364461324, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.008727899381790097, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 2.8361786100147786, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.15405081121024364, -0.44294774881238946, -0.14123163507691217, -0.4335091177257587, -0.44294774881238946, -0.44294774881238946, 0.009358867120466347, -0.2315344653826308, 0.0707301909296769, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.0461038676855917, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.26587243917699055, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.07401314513337472, -0.44294774881238946, 0.22449862677347407, -0.44294774881238946, -0.44294774881238946, -0.4213090195094718, -0.40814954189188074, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.24237138675083544, -0.44294774881238946, -0.33958532745656983, 0.11303320500122595, -0.44294774881238946, 0.11573645473785911, -0.2620927448159533, -0.03165429888116566, -0.12348483401834741, -0.39894210423927345, -0.44294774881238946, -0.44294774881238946, -0.2875361788328274, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.08378300926440954, -0.0669733815428154, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2656762174035317, -0.44294774881238946, -0.406448053617576, -0.3135878649544647, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.02255168852367837, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.26660677869254934, -0.17994942300071967, -0.2847535201699187, -0.44294774881238946, -0.44294774881238946, 0.3223059062787327, -0.3832524182823631, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.14200298415486773, -0.1745014494164446, -0.44294774881238946, -0.44294774881238946, -0.19168868781825485, -0.32190385857985515, 0.43270284684199545, -0.44294774881238946, -0.44294774881238946, 0.8585805118587119, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 3.9113765014061275, -0.44294774881238946, -0.44294774881238946, 0.2828945611789355, 2.6082562011595996, 1.3851800985993536, 0.5260868432310147, -0.44294774881238946, -0.12132914550836266, -0.2649005807417516, -0.23660029155305687, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.424936127993811, -0.25080334057488773, -0.4385595570090438, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.24023025761651454, -0.2930892695006298, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 2.1767447495321663, 0.1820610551129108, 2.852328609536378, 4.828672381281602, -0.44294774881238946, -0.44294774881238946, -0.2852421682101755, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 3.000890226537574, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3939185766748874, -0.44294774881238946, -0.06146739568379263, -0.44294774881238946, 0.2409235330479515, 1.6606956103448591, -0.44294774881238946, -0.11694643559148912, -0.16278745838804504, -0.37248827770477305, -0.09978870204599717, -0.4131129899110523, -0.44294774881238946, -0.43919660083219797, -0.44294774881238946, -0.35933764631557263, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.14169483236324484, -0.44294774881238946, -0.10282583607273021, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.15921582635349324, 0.17939487145531735, -0.44294774881238946, -0.28084604114489975, -0.44294774881238946, -0.272480819133286, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.0986966311046529, -0.44294774881238946, -0.0874310257361494, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.38386057788280536, -0.4027468391176827, -0.289728820807898, 1.2424610223068044, 1.2514189154780586, -0.44294774881238946, 1.2910796200505628, -0.3649482746707381, -0.44294774881238946, -0.44294774881238946, -0.4204159988868782, -0.44294774881238946, -0.44294774881238946, 0.8190115715721717, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.5418784729710653, -0.44294774881238946, 0.2698095917695959, 0.26791844952859, -0.44294774881238946, -0.4214429617436579, -0.44294774881238946, -0.44294774881238946, -0.36368579179198707, -0.10970371731204359, -0.3128724365395618, 0.1995458839357622, 0.4892082825147671, -0.10344704682622041, -0.17793057653427236, -0.20560944582927485, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.34759423870358397, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.9400693405537577, 1.0627637702105792, -0.44294774881238946, -0.44294774881238946, 0.369835430547378, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.4562886685021357, -0.44294774881238946, -0.4339132510034398, -0.02661611139294094, -0.44294774881238946, 4.321938925889623, -0.44294774881238946, -0.44294774881238946, 0.05846241273166655, 0.08630322089455789, 0.04405667467779555, -0.44294774881238946, -0.2987436644651822, -0.40791623795167503, 0.4983195880687191, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.26903197631974174, -0.44294774881238946, -0.1731988277064415, -0.44294774881238946, -0.07153160835305859, -0.44294774881238946, -0.012220765998383615, -0.44294774881238946, 2.0205392833423335, -0.13447447599780457, -0.44294774881238946, -0.44294774881238946, 0.16877003434057664, -0.44294774881238946, 0.6095133849805047, 0.19937664124847954, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.720975010053684, 4.011274732484715, -0.44294774881238946, -0.44294774881238946, -0.2642540801114169, -0.3278582651654891, -0.17439903506784776, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2598957591597461, -0.44294774881238946, 1.3359354959651468, -0.44294774881238946, -0.44294774881238946, -0.04654572483703732, -0.44294774881238946, 1.2795269726448562, -0.44294774881238946, -0.44294774881238946, 0.48705619765135444, -0.44294774881238946, 1.0451706389380366, -0.44294774881238946, -0.44294774881238946, 4.0860179660616645, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 4.828672381281602, -0.44294774881238946, 4.62832147235879, -0.44294774881238946, -0.10122974239491349, 2.4084136638069555, 0.6434061314582703, -0.44294774881238946, -0.44294774881238946, 4.449486392705231, -0.44294774881238946, -0.44294774881238946, 0.2354122060699012, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 2.50955618256663, -0.24728645501037522, -0.18863747704709452, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3454268305080457, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.41926109652192867, 0.006062849697939932, -0.44294774881238946, 2.023405726788072, -0.28193506635689464, -0.44294774881238946, -0.385583458786712, 1.4114639383900836, -0.44294774881238946, -0.44294774881238946, -0.05791706377452258, -0.08760641392785516, -0.44294774881238946, -0.44294774881238946, 0.16666685610923032, -0.44294774881238946, -0.13581136452566875, -0.44294774881238946, -0.4078218312596936, 2.8037264856055253, 4.10397802577637, -0.44294774881238946, -0.44294774881238946, -0.4218373358155242, -0.017999535032838583, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 2.009202468626043, -0.44294774881238946, 0.7639943132325097, 0.18742334556482207, 0.2351692816803611, -0.44294774881238946, -0.39122897333649453, -0.44294774881238946, -0.4381411247754701, -0.44294774881238946, -0.36454549477148546, -0.44294774881238946, 0.9795345924618077, -0.44294774881238946, -0.3708782118526311, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3209637974993132, -0.24017504460294442, -0.1538854860895029, -0.44294774881238946, 0.4653943563450515, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.1443877808142586, -0.44294774881238946, -0.44294774881238946, 1.1350619295875344, -0.2604041146422001, 0.4110330903833972, 0.8651807192593886, -0.44294774881238946, -0.44294774881238946, -0.38025104723032843, -0.44294774881238946, 1.5444575447912643, -0.44294774881238946, 0.9708617734748265, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.22883277615366548, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 4.828672381281602, -0.44294774881238946, 0.5585972051429312, -0.44294774881238946, -0.18309485947714715, -0.44294774881238946, -0.19419444485250478, 3.3531193943256414, -0.44294774881238946, 4.828672381281602, -0.15948507023318456, -0.44294774881238946, 2.104136419146575, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.18732225040827533, -0.44294774881238946, -0.44294774881238946, -0.10829256792443609, -0.44294774881238946, -0.44294774881238946, -0.31961826182844283, -0.08538875556697559, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 3.024456015900385, 1.5537915042227812, -0.44294774881238946, -0.44294774881238946, -0.11579294693387303, -0.44294774881238946, -0.44294774881238946, 0.08147835641330567, -0.44294774881238946, -0.4143568713775248, 3.1138017401990243, 4.130973971870315, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 4.828672381281602, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.020412312949519507, 0.38006528225735214, -0.35654873757813776, 0.22347712167160552, -0.44294774881238946, 0.04683843242906146, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 2.2185748493418007, -0.3947775275540407, -0.44294774881238946, -0.44294774881238946, 1.0614687740741235, -0.1383715301880931, -0.44294774881238946, -0.44294774881238946, 1.5721313625459734, 1.484381538872655, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.9695201421740993, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 4.828672381281602, -0.44294774881238946, -0.44294774881238946, -0.2418984403135052, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.42472090060441303, -0.21755939526968565, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2921387111906726, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3862748360782796, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.08956748118165632, -0.44294774881238946, 0.5322136215631216, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.15288122701052093, -0.44294774881238946, -0.44294774881238946, -0.29040371624270506, -0.0368306797803937, -0.4359111437330668, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.07344610994595853, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.370756974885772, -0.44294774881238946, -0.44294774881238946, -0.08217079570326002, 1.9020665708082962, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.7814870120455026, -0.44294774881238946, -0.31139751547777283, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3284019412106742, -0.3585571431221474, -0.44294774881238946, -0.44294774881238946, -0.3354112188043971, -0.44294774881238946, -0.44294774881238946, -0.22040428118681585, -0.44294774881238946, 4.114592309354717, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 2.4559498805620943, -0.44294774881238946, -0.22522927436973078, -0.44294774881238946, -0.44294774881238946, -0.11623938082855678, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.8982520273709463, -0.25518532654490483, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.566600131972265, -0.44294774881238946, 1.8423577507351818, 1.8348804414988922, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.3827020767735467, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.9182136553537867, -0.44294774881238946, 0.5133298700106784, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2845727908591843, -0.4144628933946219, -0.08381392983902503, -0.026606909224012258, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3774857190507723, -0.18910936169570344, -0.44294774881238946, -0.1088518088270315, -0.44294774881238946, -0.44294774881238946, -0.36120362738139705, 0.031263954570467566, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2447515148739651, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.28217477320485096, -0.44294774881238946, -0.36558213840650394, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.42385353183209235, -0.44294774881238946, -0.44294774881238946, -0.4197843291122794, 0.01630370540012934, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2122386111041987, -0.2657515078765817, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.38186046153029973, -0.44294774881238946, -0.44294774881238946, -0.0015942235866033365, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.0716550332481938, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3477260133287929, -0.44294774881238946, 1.444154289578167, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.27271198340833874, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2778054482609651, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.6104510409487127, -0.44294774881238946, 0.14551904924627684, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.37551619347487003, -0.44294774881238946, -0.44294774881238946, -0.16404265353511055, -0.44294774881238946, 0.5307832956276768, -0.44294774881238946, -0.24389994423081782, -0.44294774881238946, -0.44294774881238946, 0.09747587663927254, -0.44294774881238946, -0.27476977821565174, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.36057213658254883, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.3220138370424785, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.4219654623432985, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.5897785936792765, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.20504943271669943, -0.16353193315959091, -0.44294774881238946, -0.44294774881238946, 0.5746171516337325, 0.08004037272889367, 4.828672381281602, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 4.6084216211743385, -0.1664948063265817, -0.41589335205365646, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.32065831605754014, -0.15416853322258703, 0.4397075635705232, -0.44294774881238946, -0.29147276052146737, -0.44294774881238946, -0.44294774881238946, -0.3272645322171207, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3408075910655295, -0.44294774881238946, 0.02841967998623892, 3.6220662305780045, -0.44294774881238946, 0.2205299179321256, -0.44294774881238946, -0.36066546942002675, -0.44294774881238946, -0.36389834258898046, 1.1271561725140138, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.18531180997887817, 0.1936580402416328, -0.44294774881238946, 1.0487103207846589, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.17467769025666965, -0.11863918421846785, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.8602254026556098, 1.0371897200931302, -0.2359982412596959, -0.44294774881238946, 0.31113222092071147, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2086617344768654, 0.22720548015668054, -0.1221772251188905, -0.44294774881238946, 4.828672381281602, -0.2897645194317641, -0.44294774881238946, -0.44294774881238946, 0.14871316712685967, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.23697759656682382, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2618787943883713, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.1835931118790298, 0.4987746127994311, 1.9403898076954502, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.15717041082775654, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.3117596607181294, -0.3734407343642642, -0.44294774881238946, -0.44294774881238946, -0.3086953677491322, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.5909808602672963, -0.44294774881238946, -0.26702829272767026, -0.44294774881238946, -0.12693001666867657, -0.44294774881238946, -0.44294774881238946, 2.924808238258637, 0.9499392588735412, 0.2702246546338433, -0.44294774881238946, -0.44294774881238946, -0.07434743986969139, -0.34687364634410445, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.5776220137183852, -0.44294774881238946, -0.44294774881238946, -0.3264808114821124, -0.21940714896244015, -0.4253324788427875, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.047827942180852, 0.0172473459956823, -0.36598336584194263, -0.44294774881238946, -0.44294774881238946, 0.5556425367069779, -0.3123086669471891, 0.2962252864144073, 0.05690885495358196, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 4.828672381281602, -0.2793161483851605, -0.44294774881238946, -0.44294774881238946, 4.548068777977909, -0.44294774881238946, -0.44294774881238946, -0.3041164923657789, -0.44294774881238946, -0.4239064684349917, -0.2188662802222861, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.6782501762805629, 0.4306849334626067, -0.16709436302521527, 3.26709005448775, -0.44294774881238946, -0.44294774881238946, 1.594071907304233, -0.44294774881238946, -0.322649877771361, -0.44294774881238946, -0.44294774881238946, -0.3310564210607583, -0.44294774881238946, 3.3990635715053643, -0.09223372135589158, -0.44294774881238946, 0.49961349024103147, -0.44294774881238946, -0.4337338127312656, -0.44294774881238946, -0.38624577363392837, -0.3396725630527473, -0.44294774881238946, -0.43383048879554487, -0.44294774881238946, 0.0897302887857723, 0.20652177149170348, -0.3519784691185197, -0.07671159289885994, 0.008615325435980054, -0.3947831944491543, -0.18545978471629468, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.4303083616546968, 1.3423938741328256, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2752180461090389, -0.318424127576776, 0.042548999042687635, -0.44294774881238946, -0.44294774881238946, -0.1548208897786026, 0.21017265157545229, -0.2316547692624314, -0.44294774881238946, -0.3561251401848412, -0.3009636394560017, 1.2246265754154997, -0.2764039514981069, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.03005351542682714, -0.2900240463358736, 0.5862282939454209, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.39434624425828696, -0.44294774881238946, -0.2557851084714494, -0.18318158831052428, -0.44294774881238946, -0.44294774881238946, 2.9833700691081333, -0.44294774881238946, -0.1141342077214297, -0.4344289364478142, 0.7670818661358481, -0.44294774881238946, -0.42910443099438983, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.32752138856171636, -0.11565034549090075, -0.44294774881238946, 1.2469974985359438, 0.024514421064912886, -0.44294774881238946, -0.44294774881238946, 1.108499321994032, -0.3839521290066315, -0.44294774881238946, 0.17605120224194232, 0.9895876080863654, -0.15805313552694858, -0.44294774881238946, -0.44294774881238946, 0.03640745219471496, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.2104859114240045, -0.3468686832862121, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 2.619125314031345, 0.05860794213748029, 0.0479877704580352, -0.44294774881238946, -0.44294774881238946, 2.2516529786415123, -0.44294774881238946, -0.44294774881238946, -0.354837624832572, -0.44294774881238946, -0.44294774881238946, -0.3675007986719011, 4.749667578228391, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.06040020149144059, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.10323173677765433, -0.1336708306365415, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.01175447987212983, -0.44294774881238946, -0.44294774881238946, -0.2809185484444799, -0.44294774881238946, -0.16860313262446122, -0.20377049211274945, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3946477600800589, 2.141693881136896, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 2.044745492181886, -0.3686291985490216, -0.44294774881238946, -0.44294774881238946, 0.2186816976958413, -0.44294774881238946, 0.24346288121633172, 3.3668480007533113, -0.3403293839477101, -0.2938696842116616, -0.44294774881238946, 3.092956961402382, -0.4073110063140736, -0.44294774881238946, -0.11008007315104315, 0.1499060384934566, -0.44294774881238946, -0.41760444871151436, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.32964252871895117, -0.43256047787497065, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3294480765933643, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.5797399282901827, 3.2958700630388145, 1.7293383850798638, -0.44294774881238946, 2.202694093699893, 1.7883148926886117, 3.8990540893520325, -0.190901451919067, -0.44294774881238946, -0.44294774881238946, 1.6284039769097844, -0.44294774881238946, 4.828672381281602, -0.44294774881238946, 3.717311381720469, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.6591070908765058, -0.44294774881238946, -0.44294774881238946, 3.0443718260910893, -0.44294774881238946, 2.7839957484066877, 0.1974475320167912, -0.44294774881238946, -0.44294774881238946, 0.5026117885408538, -0.23356835385598068, -0.4259867679347169, 0.8597612209181283, -0.44294774881238946, 2.675074501115194, -0.44273270371368967, -0.44294774881238946, 1.1340151989596547, -0.44294774881238946, 0.30010512675722506, -0.2978909194193575, -0.44294774881238946, 1.1706155066797757, -0.44294774881238946, -0.260995933153327, -0.44294774881238946, 0.7067774147648315, 0.21160181919592747, 1.5147459936010061, -0.03175059990075393, -0.44294774881238946, -0.44294774881238946, 2.117200667588117, -0.44294774881238946, -0.44294774881238946, -0.2672138805261955, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.7785182959395732, -0.4140831933233391, -0.44294774881238946, -0.44294774881238946, -0.20806656972249293, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 4.828672381281602, 4.062772386437224, 1.0073865333185792, -0.44294774881238946, 1.0741140986015274, 0.9857645251770694, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.4665181149184385, -0.44294774881238946, -0.44294774881238946, 2.843593370242683, -0.44294774881238946, -0.44294774881238946, -0.13843082947947308, -0.44294774881238946, -0.44294774881238946, 1.135040822514748, -0.44294774881238946, -0.44294774881238946, 0.2024835637521555, 0.25391770343380976, -0.14609964679079585, -0.44294774881238946, -0.3969553969913162, -0.44294774881238946, -0.43983416097022815, -0.400193494643416, 0.012045192588371, -0.44294774881238946, -0.44294774881238946, 1.2093930604384984, -0.44294774881238946, 3.8466369907166773, -0.44294774881238946, 3.997053198686488, -0.44294774881238946, 1.4133443983930247, -0.44294774881238946, -0.2845532764694814, -0.21989320688172245, 0.9056555905541384, 2.1847330043718802, 0.916569749008045, -0.3884331871039254, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.11299992778706523, -0.44294774881238946, 3.2071179108114634, -0.2823789744814364, -0.44294774881238946, -0.39595585161075336, -0.30763366750903387, -0.44294774881238946, 1.1707922140635283, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.30099715015159173, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.4087141480450659, -0.44294774881238946, -0.44294774881238946, -0.15969070331577398, -0.250992242441244, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.023995656835436224, -0.3087034276907991, -0.44294774881238946, 2.674897150223127, -0.4114935811225379, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3223534697968526, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.011737233849243233, 0.05874204927067262, -0.44294774881238946, -0.38836579971739, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.4067893020559749, -0.44294774881238946, 0.566918797290676, 1.6789029059548342, -0.44294774881238946, -0.44294774881238946, -0.20997297919831132, -0.44294774881238946, -0.379563683821886, 0.19175190425684893, -0.20392729900181286, -0.44294774881238946, -0.44294774881238946, -0.2965232711939564, -0.44294774881238946, -0.26723818905285696, 0.15913607133183236, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.4163819920500597, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.4422273875668894, 0.5021793509520569, -0.23461852725335713, 0.007342884266028059, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.40502479018590715, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2901144109912418, -0.3923798437196475, 4.828672381281602, 0.5018778029548697, -0.44294774881238946, 0.5293308973569715, -0.2599684755995284, -0.44294774881238946, -0.44294774881238946, 1.568414844613927, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.10604443944476184, -0.44294774881238946, 0.7464449405254999, -0.44294774881238946, 1.0338322798017758, -0.44294774881238946, -0.02774128568462385, -0.44294774881238946, -0.03946365840884738, -0.44294774881238946, -0.44294774881238946, -0.3403045364828331, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 4.549078828631742, -0.09644648072633503, 0.28140458202253604, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.37297845386761835, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.045280292755185, 1.21629558804634, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.17857124516082148, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.9678311067066758, -0.44294774881238946, -0.44294774881238946, 0.2937653471723037, 1.8650658722135456, -0.44294774881238946, 0.2853650539574322, -0.265812432026462, -0.02265428809057991, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 4.204911533034803, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3677341750067925, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.8003356732060058, -0.44294774881238946, -0.44294774881238946, 4.189133738723561, -0.44294774881238946, 1.2371953224532182, 1.224615764475791, -0.44294774881238946, -0.0009653872595613629, 2.7506061610817114, 1.2415759409680596, -0.44294774881238946, -0.44294774881238946, 0.04753400056854103, 0.7200231325516778, 0.801878033939381, 0.8710550492788707, -0.44294774881238946, 1.2563595149300617, -0.35763066006708744, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.18942405335025841, 0.2776545373071887, -0.44294774881238946, -0.44294774881238946, 3.0296725517185616, -0.44294774881238946, 0.42619736386553353, 1.5348697856796558, -0.44294774881238946, 0.6606310472720218, -0.44294774881238946, 0.09560416834942935, -0.44294774881238946, 0.6627663365683718, 2.181356387532692, 1.575046326518796, 4.828672381281602, -0.44294774881238946, 2.03135588593545, -0.01984045144972907, 4.828672381281602, 2.3350094423353167, -0.44294774881238946, 0.20244443844650248, -0.44294774881238946, 3.559325971526755, -0.44294774881238946, 0.8128708291095863, -0.44294774881238946, 0.9373711553441477, 0.6485226660840514, 0.09281539635751207, -0.44294774881238946, -0.3317440177409657, 4.828672381281602, 1.7728511304359005, -0.44294774881238946, 4.3977035358667775, 0.568470424543811, -0.4224212673278441, 3.267503701633706, 0.0902639502327797, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.3204945592786578, -0.44294774881238946, -0.44294774881238946, 1.0575530259672388, 4.828672381281602, 0.010364413216082655, -0.44294774881238946, -0.44294774881238946, 3.8141681350911862, 1.7328640384451857, -0.15104265939898603, -0.046040989088864545, -0.44294774881238946, 0.582941639568903, -0.4253374941857304, 3.029630080169668, -0.44294774881238946, 1.4778491572485672, 0.8200961404890763, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.11379263350694557, -0.44294774881238946, 1.3041594413933657, -0.44294774881238946, -0.44294774881238946, 1.0266184228703303, -0.44294774881238946, 3.4877506006910632, -0.44294774881238946, 0.4244755286626415, -0.44294774881238946, -0.44294774881238946, 1.606277458248012, 0.24160005334125775, 2.954856215596851, 0.3354521376798184, 0.43378381211232453, 0.13285319680357993, -0.44294774881238946, -0.44294774881238946, 1.436328198834252, 0.17563478801023005, 1.2026916935304368, -0.44294774881238946, -0.24233174663852908, -0.44294774881238946, -0.19385708561749437, -0.44294774881238946, 1.3419111141936633, -0.44294774881238946, 1.236860698128554, -0.44294774881238946, -0.3867144407409533, 1.1720112762186123, -0.44294774881238946, -0.29519687185165294, 2.4411638612684863, 0.5534650976158896, -0.44294774881238946, 0.4742588764595633, -0.2393979278720357, 0.9160153022424091, 0.13212776987820726, -0.44294774881238946, 4.266803133318035, -0.3512318788133825, 2.6104559699892764, -0.44294774881238946, 0.19031578674655503, -0.44294774881238946, 0.3690704922113617, 0.4039085524063075, -0.44294774881238946, -0.44294774881238946, -0.44096025967669056, -0.3396269624446578, -0.44294774881238946, -0.44294774881238946, 1.9356566753247388, 0.5327927146972846, -0.44294774881238946, 0.9772029044272178, -0.05264595845108192, -0.44294774881238946, 2.3765746741218083, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.21826174416838728, 0.43771770715374086, 4.828672381281602, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.5701172266769794, 3.5164860784666088, 4.828672381281602, 0.3970757167491593, -0.44294774881238946, -0.44294774881238946, 2.7195702697757684, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.1611419511056982, -0.44294774881238946, -0.31294924730100954, 2.6945452609541003, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.6846153744439895, -0.2952576672998693, 3.184693447799084, -0.44294774881238946, 1.983711559783112, -0.44294774881238946, 2.5513669771267704, -0.44294774881238946, -0.44294774881238946, 0.4864076699698234, -0.36729703980728406, 4.523894487150863, -0.44294774881238946, 1.7456209473146904, -0.44294774881238946, 0.2759976964442802, 0.2746099707593981, 1.6008964417040905, 1.9890480455515256, 0.6955048221785468, -0.44294774881238946, -0.09107897785705789, -0.44294774881238946, -0.44294774881238946, -0.05202555208298738, 0.34845171353553556, -0.44294774881238946, -0.44294774881238946, 0.5916035189144982, 0.5204559524077293, -0.44294774881238946, 1.0823833091722876, -0.23523011755751258, 2.0391353866772333, -0.44294774881238946, -0.44294774881238946, -0.38393431991396787, -0.28996738542859163, -0.27788685206302255, 2.1769650867797914, 3.0684264243712316, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.6245043165108135, -0.44294774881238946, 0.625806050295913, 0.4316287671106548, 3.097856376322119, 0.4573927165323512, -0.44294774881238946, -0.38376211708842917, -0.44294774881238946, 3.5991938857772183, -0.21532334865865685, 3.9267249469684926, -0.3616020635995122, -0.44294774881238946, 0.2393937850775829, -0.44294774881238946, 0.2513806718953706, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.1264292463308393, -0.44294774881238946, 0.27817127448546874, -0.12272684557215223, -0.3184952513334747, 1.4078420161805787, -0.1955671928813157, 1.310766598683868, -0.44294774881238946, -0.31562346676870756, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 2.5164355438750827, -0.44294774881238946, -0.1472997254505383, 0.7969275244593039, 0.3642664452241549, 1.6023506417980855, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 3.6873341902970926, -0.34913998610914, 0.3543045503772385, 0.400450853519219, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.8950443506535606, -0.44294774881238946, -0.44294774881238946, 4.532432040689679, -0.44294774881238946, 1.8849788509676624, 0.3709616344523676, -0.44294774881238946, -0.062427477916836414, -0.44294774881238946, 3.137945914836846, -0.44294774881238946, 0.10514887675465337, -0.44294774881238946, 0.4948778481878848, -0.3547255417715175, -0.44294774881238946, 0.024963654220774113, 3.2692391148620796, -0.3573611829156314, -0.44294774881238946, 0.7796611667099647, 0.16783913520969407, 0.7331167249724602, -0.44294774881238946, 1.2217082651994464, 1.7821045226261663, 4.684905930852848, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.451707275392496, 1.6363816782130998, -0.44294774881238946, -0.44294774881238946, -0.27902557220477164, 0.30458889965522956, 0.2720960411695274, 4.828672381281602, 2.147515314772746, 1.6454968448169516, 0.4947081550447814, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 4.242679808349668, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 2.6004916298107514, -0.10683811042711748, -0.10598530103046039, 0.49606010166725595, -0.44294774881238946, -0.44294774881238946, 4.125747654725714, 0.2635863515408224, 1.3503578043581614, -0.44294774881238946, -0.21237865460161218, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.1932191758231877, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.6401293871098281, 2.4499366814478742, -0.44294774881238946, 3.2661994389774898, -0.44294774881238946, -0.44294774881238946, -0.26505838506870494, -0.44294774881238946, -0.36095112276179286, -0.44294774881238946, 0.1404500698851005, -0.29037118689729724, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.3880003189592778, 4.828672381281602, 0.16202632458528698, -0.44294774881238946, -0.44294774881238946, 2.1171345149331593, -0.44294774881238946, -0.44294774881238946, -0.1651908654245295, -0.44294774881238946, 0.46985875964272483, 2.1432254309305616, 0.44114387413331246, -0.2927687058326841, 0.459990302203388, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.0024452955108040654, 0.010280371029926136, -0.44294774881238946, 0.9499157064691488, 0.06474543488305769, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 4.828672381281602, -0.139510379031505, -0.44294774881238946, 0.7826174439167041, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 4.828672381281602, 4.828672381281602, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.3000778420045986, -0.44294774881238946, 0.29386373959392115, 0.015599321196710666, -0.44294774881238946, 3.5603571292533736, -0.44294774881238946, -0.44294774881238946, 2.232441423952562, -0.44294774881238946, 0.9721879154138032, -0.44294774881238946, 1.4753572356431206, -0.44294774881238946, 0.14470571908484756, 0.5059044275447179, 2.9141576608112345, 0.5709174292687484, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.4479453257732853, 0.9907679310407892, 2.505659096200926, -0.20923313768664542, 3.261514183625549, -0.2207726092595652, -0.36804116869311, -0.44294774881238946, -0.36380411688371334, -0.44294774881238946, 0.728802645217559, -0.44294774881238946, -0.44294774881238946, -0.2985226032707007, 4.010846928155798, -0.09555827837226208, -0.44294774881238946, -0.32620399029199176, -0.44294774881238946, 4.828672381281602, -0.44294774881238946, -0.44294774881238946, -0.3128372205469334, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 2.9133602253052167, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.9507096670302435, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.6394944566424616, -0.3295258043541626, 2.976824302511049, -0.2359066217631111, 1.089821493102924, -0.44294774881238946, -0.43367163876757686, -0.44294774881238946, 2.656473507117093, -0.44294774881238946, 2.9337617555733435, -0.44294774881238946, 0.8954100372412356, -0.44294774881238946, 0.4790358960974717, 0.5248359917650879, -0.44294774881238946, 0.47445353772535437, -0.44294774881238946, -0.44294774881238946, 1.3340097329767016, -0.44294774881238946, -0.325118584814279, 2.314036734085316, -0.44294774881238946, -0.05411824112877176, -0.44294774881238946, -0.44294774881238946, -0.30945860883196336, -0.3800401494453234, -0.023721289230437786, 0.37430562541990176, -0.44294774881238946, 0.07495311773152312, -0.44294774881238946, -0.42672116476273503, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.4714766039016441, -0.44294774881238946, -0.44294774881238946, 2.389490143440539, 0.7357984815313141, -0.4239978365611403, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.1340536615683129, -0.44294774881238946, -0.44294774881238946, -0.2695880883728119, -0.44294774881238946, -0.4148661036400613, 0.4752655165193178, -0.1284170035114031, 0.5694553140224615, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.2181441108481015, -0.44294774881238946, -0.4263728236561085, 1.7535003205472302, -0.44294774881238946, 4.218147726898558, -0.44294774881238946, -0.44294774881238946, 0.6660012528762337, 0.67987632179677, 0.09820439240456519, -0.44294774881238946, 1.2652803420222873, -0.06767770139540158, -0.44294774881238946, 0.4519386617944832, 0.6194350605576285, -0.44294774881238946, -0.44294774881238946, 0.003836632676449052, 0.040411360940985075, 3.054601549099389, -0.44294774881238946, 0.7479906475021165, -0.44294774881238946, -0.44294774881238946, 0.1267771269268272, -0.44294774881238946, -0.44294774881238946, 1.4820383963900308, -0.44294774881238946, 2.034758243107294, -0.44294774881238946, 0.708341139974325, 1.057250963163395, -0.44294774881238946, -0.15962422890666197, -0.44294774881238946, -0.44294774881238946, 1.9895986312672562, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.9838696505878347, 0.7904453364839109, -0.05664784014615437, 0.3628814222742032, -0.44294774881238946, -0.44294774881238946, 1.5454300145594038, -0.44294774881238946, -0.34993489584500453, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.24750224727084907, -0.44294774881238946, -0.44294774881238946, 1.9129598795927483, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 3.7390323614410783, -0.22612687194522646, 1.0237469600597189, -0.44294774881238946, -0.031755458388544905, -0.44294774881238946, -0.44294774881238946, 0.5977385341530571, 2.063931821344833, 0.40286825686159144, 2.5156466026788507, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 4.828672381281602, -0.052221339488332165, -0.31708544526947746, 0.13218143847181638, -0.26361847085934237, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 1.7969657036911606, 3.097764740737826, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, 0.5396411232556954, 1.2483979013346604, -0.44294774881238946, 3.186165537424274, 1.5584954213159137, 4.828672381281602, 0.36576221595540376, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.2623771915796257, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946, -0.44294774881238946], [2.726231398509992, 1.085326817411974, 1.0024398813888102, -0.5050326372257956, 0.9099977686185056, -1.156198080237699, 0.8760098451065708, -0.736882825891714, 2.7314681321608285, 0.5196923832309494, 0.22343316390819673, 0.3068102543148233, -0.2626289890991578, -0.2499309625242878, -0.07273302809597103, 1.4925405049358085, 1.747617364255986, 0.4052961471341017, -0.8473816909784485, -1.156198080237699, 3.4858670593059213, 0.8514903052299387, -1.156198080237699, 1.1879246958320293, 5.0, -0.8278112611240924, -1.156198080237699, 2.6258538692494997, -0.740273424714067, 0.6470957653998569, 0.2445298814004525, 0.4208211030867176, 2.174523210592807, 0.6808165086234772, 1.2593045816563968, -0.6213510735695645, 1.0948683922535145, -1.156198080237699, -0.3921873827025822, 0.3894065305698073, 2.915471148532357, -0.8788625525441628, -1.0994005251521983, -0.586099427775795, 1.1292306920239754, -0.3237804848135757, -0.044175422498310524, 0.16560450037937663, 0.9653822992553912, -1.0308161699614746, 3.4824332258551043, 2.240553013553103, 1.1419923560857006, -1.156198080237699, 0.6689543515323926, -0.07722975331191811, 0.898442302112916, 0.723670931448498, 1.111155216846437, 1.9515539732646527, -0.9859138810698314, -1.156198080237699, -0.004390091548710064, 0.11072615494325865, 0.0009249340229731696, -1.156198080237699, 3.0097900004186955, 2.0494967614251456, 0.13221052674472283, 2.669722605605406, 0.8441423615191201, 1.368495012244863, -0.07171434252400313, -0.30850764989665347, -0.1330130302881612, 3.208165049316929, 0.1123098863431347, 0.2875102837795901, 0.014117487022384084, -0.07796142248326288, 0.28097586356482074, 3.058305082952008, -0.4125736435190989, -1.156198080237699, 1.4140978296356082, -0.14566968440020633, -0.13500457596446475, 0.9816644279523272, -0.32474095746817994, 1.7790899067990935, -0.14055488211730588, -1.156198080237699, -0.5066072197248906, -1.156198080237699, 0.9901267563565546, 2.8229778666886554, 2.68083018079133, 1.0859343691948415, 1.5110322955807687, 0.8753185768333702, 0.3569520599853062, -0.6317476253336937, 0.5139049343312936, 0.9977626070689493, 4.565071719341276, -0.45952815027751615, -1.156198080237699, 1.8861540680749802, -0.7854373377584768, 0.534315565228654, 0.604582361779179, 0.9220615253816874, -0.11986646468382875, -1.156198080237699, 1.8728076840004761, 3.0412615713971247, 3.594389863028522, 0.00636529143898876, 0.7021439727283593, -0.7408348271744077, -0.6792559239624218, 1.4197591370536897, -1.156198080237699, 1.3068484233598414, 1.1592758441177253, -1.156198080237699, 2.3380760857697815, -0.1282360086606625, 0.6632311878293881, 1.548293420515654, 1.0070068831169547, 0.26243484697581976, 0.8961936156500442, -0.9250972917986211, -0.8896312135825536, -0.9599667888163865, -1.1365713590893622, -1.156198080237699, 3.3599014309430086, 4.468207367980862, 1.730022003960161, 3.0977240530517305, -1.156198080237699, 0.27104145273573677, 5.0, 1.1595271555161824, 1.3857776906396533, 0.18898309946121947, -0.5393110180966094, 0.8833155257536061, 1.3031454664913402, 3.080972010902261, 2.6340574375926806, -0.29674078710839974, 1.09924010948003, 2.23666384012003, -0.9466676065928239, 1.0538503886101407, -0.042958375803205794, 1.1203065465395938, -0.5800575098924671, -0.8324731928183098, -0.7326504067518825, -1.156198080237699, -0.22388719958471034, 1.3167033278122193, 1.9416980972475963, 0.19145378845456137, 2.342244098267399, 0.5771225433115725, -1.156198080237699, 2.0396648506703134, 2.4217326629507294, 0.2863010096019634, 0.21964454741999284, -0.7406778385140971, 0.8091075770593638, 2.6764225156714856, 0.8003484356439466, -1.156198080237699, 4.05248552658518, -1.156198080237699, 3.8588695253677843, 4.261492083973793, 1.1807255634454428, 0.4426026117542625, 0.3706556560089122, -0.5192771923694878, 2.7888513332816953, 2.1651706050824546, -0.037313908839665386, 2.2421512374595336, 3.0606238839996265, -1.1431166398286416, 0.5294350719622282, -1.156198080237699, -0.7437552696530619, 0.7479514664126935, 5.0, 2.402110942577391, 0.2644453381634755, -1.156198080237699, 1.5862900199168934, -1.156198080237699, 1.95400944107794, 1.8704645938357323, 0.7746495781674511, 0.2643415426696573, 3.05136098629516, -1.156198080237699, 0.9525851730826694, -1.156198080237699, 0.0060300206590245585, 0.016140122768598643, 0.17580730595261548, -1.112437293826688, -1.156198080237699, -1.156198080237699, 1.661910461735327, -1.156198080237699, -0.9247115198959802, 3.0239570327969236, -0.5932270691943388, 0.04269541451469968, 5.0, 2.1692307739000443, -0.9053601576371066, 1.083961930957342, 0.9304462905385784, -1.156198080237699, -0.1578625783027263, -1.156198080237699, -0.08840218044054902, -1.156198080237699, -1.156198080237699, 0.8396286339212001, 1.5457629802942026, 0.7115535767002173, 3.2537942608816137, -1.156198080237699, 0.6165742227556885, -0.13621093544803717, -0.7880225094571651, -1.156198080237699, 1.6900978202243653, 1.9988937863842984, -0.32902644832891675, 1.5850418831518764, 1.482508128001015, 0.7802359131773556, -0.034255666103223885, 3.832875312227123, -0.1564504899971572, -0.21466672687147811, -1.156198080237699, 0.40436295925439, 0.9427683215804477, 2.7560406223127836, 0.4833691420717487, 0.16650821746364683, -0.5822151931298627, 1.261946751816588, 0.15832861438268353, -0.7218831220967948, -0.8763910539135896, -0.8828964283924772, 0.9862071405633461, 0.43444195418465525, 0.03432060789582514, -0.565638801779032, 1.4255977550267298, -0.11758668815104868, 0.39153134253537597, 2.104586746035099, -0.41475253925211236, 0.2520964271653346, 3.8010018373241192, -0.07928768924167852, -0.40614439518144824, -1.0993367206776667, 1.0243486650300648, 0.19517059011980858, 0.27230902079444885, 2.4966594075842474, 1.3379576007108365, 2.361212927172581, 0.6447424738059198, -0.9869384365117692, 2.5815932684707414, -0.7789975236548788, -1.1481332773916935, -1.156198080237699, 2.41368389724732, 1.9083326228436954, 0.3909759313905836, -0.003707243502774748, -0.015856497958203947, -1.156198080237699, -0.5056782014769537, 0.4721176133850367, -1.156198080237699, -0.8026537068635301, -1.156198080237699, -0.1294181599908393, -1.156198080237699, -0.4284658509225527, 1.7023427738012438, 1.0205924340313528, -1.156198080237699, 1.2478490243858857, -0.9427052621944235, -1.156198080237699, -0.2266302505446723, 2.9535461208181664, -1.156198080237699, 0.5429990865261175, 1.177989799220613, 0.6892014357078257, 1.2156701543169537, -0.256218119526794, -1.0699559467803808, -0.3295324716022279, -0.08309929942742585, -0.43719876009148545, 3.6340594968169118, 0.4239092214372188, 1.3506496359701603, 0.43509031168428264, -1.0830995470883316, -0.6492121077701163, 3.0773707444707643, 1.1161100348112503, -0.22254465911782398, 1.086741415592979, -0.4951748180793632, 2.74594088355986, -0.318184515120551, 1.2366570849998257, 0.04864268580498793, 1.1447642301313168, -1.156198080237699, -1.156198080237699, -1.0467229204738033, 0.11227280495766741, -0.5494402276449851, 0.35559931808923717, 2.0388846842284476, -1.0694769957521923, 3.9727712350400712, 0.6043490243273933, -0.1897100638504197, 1.687126451563479, -1.156198080237699, 1.6281434072617136, 0.5888303835452317, 1.403047738693536, -0.01540026737498819, -0.7810338422704046, -1.156198080237699, 1.2584395652320621, 0.7170468034278296, 2.215407947946932, -1.156198080237699, 0.46766525628969347, -0.409741937281654, -0.38288537951955387, -0.46884140741814195, -0.06165006588206096, 1.4397388790133512, 1.0878311873143873, 4.208767211661438, -0.028174723705057768, -0.26959875125642796, -1.156198080237699, 1.2942104718679754, 0.5124676663076441, 0.04297571092625248, -0.5881948094277811, 1.137628573304121, -0.5211052318057191, -1.156198080237699, -1.156198080237699, 4.242259961039036, -1.156198080237699, 1.4790738087678519, 1.7776934444922037, -0.9392233362917052, -0.1564460369923516, -0.26321800018929153, -1.156198080237699, 0.7850675043546418, -0.5006936293436739, 2.3383685267398997, -0.5712187406547576, 0.6826056449904662, 0.21664694651262473, 0.5377937668000815, -1.156198080237699, 1.6392364089773728, 1.42358580649205, 1.9344832578985962, 0.9418069583248846, -0.027385975108483715, -0.018225091695916535, 3.1306464939593828, 0.012794053994297937, 1.1520273238596535, -0.18106410972077336, -0.6197906597221225, -1.156198080237699, -1.156198080237699, -1.156198080237699, 1.5642571998508783, 0.7158930703646847, -0.2587012769335829, 3.617630337997683, -1.156198080237699, 5.0, -1.156198080237699, -1.156198080237699, 0.2906419606134546, 1.4259507568621912, 0.0950076956909282, -0.6996352623805603, -0.6452720486366729, -1.156198080237699, -0.5356559512706945, 0.178357744213823, 1.29393697640922, 2.42412271207523, -0.2666987116361552, 0.8113023416822213, -0.4953500640593759, 0.593688045041569, -0.3735182815026469, 0.2366919452336285, -1.156198080237699, -0.27848662499257865, -0.5104943690648758, 1.1012991789019233, 0.21314947557495945, 0.5838673072805949, 1.1281067536111635, -0.10491303165702091, 0.9728680432239878, 0.9396228809135524, -0.9050705706382567, -0.32693450763518955, -0.6497703526452328, 0.2905640735112299, 0.308436329742217, -0.6439789365231239, -0.22713829791107656, 2.9531743353987996, 1.1030122093685994, -0.45862629535889077, -1.1559009457238285, 0.14437038744796152, 3.448496795271455, -0.9459205543139697, -0.3454973844295903, -1.156198080237699, -0.9770594655925116, -0.40414321482202176, -0.0741296523303073, -1.07045054404818, -0.47301905459887067, -0.11312429155396299, -1.156198080237699, 1.5355651135081123, 0.08842121580179524, -0.037832643417601675, -1.156198080237699, 1.1570206805569687, -0.29133799686019324, -1.156198080237699, 0.34782210471521374, 1.7533683794799668, -0.5295403968806349, -0.024206124858999613, 1.5310126852502324, 0.6402854208146036, 0.5867005518288017, -0.828513439259069, 1.3435884657687958, 0.8835640843854597, 0.3531922665827567, -0.2373614253789773, 0.38784749310566835, 0.2766243872692348, -0.4190996435066085, 1.3771953739968616, 0.5690619569044886, -0.40324573194447844, -1.156198080237699, 1.8215446926837844, -0.03344513826496579, 1.4654136093001784, 1.6520222002287657, 0.9201211487787783, 1.8979284604895352, -0.13816726190451817, 0.5253426795825905, 0.19038142393374985, -0.04139869062927701, 0.6130505195715149, -0.2982822554444883, -1.156198080237699, -1.156198080237699, 0.5906907679890893, -0.04851345881574621, -0.9405716454239063, 1.7207497144637485, 0.13052105672165534, 1.2123550136851216, 0.5063576579326625, 2.8389316065221437, 1.5355442248673803, -1.156198080237699, -0.21512150010766734, -0.2759550512789986, -1.156198080237699, -1.156198080237699, 4.789891139684094, -0.47033899341596963, 0.5081012926869051, 0.30087286059884, -0.7062183822751605, 3.5715422240468913, 1.783833409444962, 0.15616064875237418, 1.0265724146660213, -0.9407513039268627, -0.04080911279307679, 0.8872144148335264, -0.4648269021407289, -0.2766368467965259, -0.6312633408202049, -0.7841798901652305, 0.8528200534284752, -0.324173482728559, -1.156198080237699, 2.4071689083262324, -0.18888212881155897, -0.7153002046115045, 2.07742600756294, -0.3580317023550795, -0.028187111154789467, -0.04795715707000055, -0.4915258640145887, -0.50167280461846, -0.22275694600144386, -0.23378290975384822, 0.6278369244362718, -0.42832060200218236, -0.3165452426061955, -0.4765213023962456, 0.49791540853192, -0.5088957403398333, -0.036517549653061344, 0.3486348185740157, 0.018562719310039087, 0.33116543783229424, -0.3705563046337198, 0.15073348842332546, 1.7856884502830566, -0.00950991358248086, 0.4701529476650153, 1.5603299734676488, -0.072108392967396, -0.1831175926457297, -1.156198080237699, -1.156198080237699, 0.5228881833340078, 0.19860563802649017, -0.16831734298421722, 0.6274829510361323, 0.5682874579233003, -0.6622063806101134, 1.3739650833474846, -0.38579594442391224, -0.28934604636527134, 1.754110331044219, -0.11846741153777966, 0.4334044850287929, -0.3682982263788993, 1.6415590962837303, 1.2301317327221142, -0.29288092254330966, 0.921769084411569, -1.0932812717320102, 0.041982933745878394, 1.8091138463972225, 2.9090516968052635, 2.5615168558249373, 0.06201271128681433, 0.6278694718532079, 0.7080148142634467, 0.9602062883973557, -1.156198080237699, 0.5441648022203677, -0.7264676524711264, 0.2162314406824506, 0.7380418304830811, -0.26305736816141184, -0.37514047067129497, 0.8597356508545705, 0.04760813134317053, -1.156198080237699, 0.04450122940876673, -0.8407429287647161, -0.17002114358638484, 0.028305489005050505, -1.156198080237699, 3.0275168458018706, 1.6321002663678443, 0.4293049678414538, -0.8727653566784581, 2.856812930690188, 1.4678481884727206, 1.5748080684724435, 0.25324659782464193, -0.7011859605811548, -0.11942594106301564, 0.7019127403333872, -0.12389829619812054, -0.9994039453925523, -1.156198080237699, -1.156198080237699, -0.07094445847505795, -1.156198080237699, -0.5542057119418518, 1.078703499028553, 0.6480213426895348, -0.670283443134974, -0.1059994838657501, 1.0370394048697957, -0.8951407949823598, -0.03832279780106213, -0.014291307251061544, 0.06845515671143458, 0.5321870289318037, -0.6396638939032262, 0.779767942854191, 0.5651570765090022, 0.14784445986947828, -0.12870074043487095, 0.8208871511522372, 0.6805878670676645, 0.1433763958117321, 1.3447765274508021, -0.45946710362982335, -0.07254276334520535, 2.818016085843598, -0.6085284843057359, 0.23079956734803228, 0.36764186235678487, 0.2686332677371208, -1.156198080237699, -0.20884972621267048, -0.12528601442284745, 2.2063733679433764, -1.1381670908311652, -1.156198080237699, -0.7796978598651413, 0.026158897797805634, 2.8195242780892413, -0.7620916504303293, 1.798122535118581, -0.7221444729969942, 1.0621961292521973, 0.34318919851595, 1.652741481950387, 1.021346530154168, -0.15992059519621177, -0.7521931065308607, 1.4748581896006876, -0.5784860040148729, -0.6282399124849667, 2.2135927412609053, -1.156198080237699, -1.156198080237699, 3.424186627584384, 0.42334636162985, 0.011857384674469585, 1.3081465957061198, 4.161080873804229, -0.03864349511075499, -0.585502036940255, 1.209920920294912, 0.7248047474356152, -1.156198080237699, 0.042365406376778665, 2.967746186395663, -0.9862709513324108, 2.4305314765907706, 0.10359122678958015, -0.6109950846310237, -0.9636503346321247, -1.0301695633023729, 0.5362054204679557, -0.3833852495498602, 0.5730272362378739, 1.6010950464380982, -0.15641842836256023, 0.232721322294467, -0.006442602908981935, 0.7954370142350528, -1.156198080237699, 0.6314317137698702, -0.5556264633658603, 1.0995319027403447, -0.5701696936863924, 0.09940410685317526, 2.075342325169046, -0.6016803701433701, 0.7423916875041723, -0.7961838957002896, -0.407262180351261, 2.535749988820522, -0.31966671801086943, -0.15640158790802444, 0.8129174060431882, -0.5180307558426688, 0.12902185144935263, -0.20532634688340268, 2.0766646247049927, -1.156198080237699, -0.1925191002452215, -0.8080119265818227, 0.05255590546401618, 2.1152687758890996, 5.0, 1.2781809499890762, -1.156198080237699, -1.156198080237699, 2.691241144098277, 3.286486764813873, -0.15744496741572914, 1.7475746154098568, -1.0548451405155732, 3.414125427563936, 0.680653123828994, -0.6720710411912009, 5.0, -0.7195185360634079, 0.3033994145615388, 0.8674176508894879, -0.05477964621380586, 3.903558910027415, -0.32872947339027625, 1.3922688762259607, 1.9512511689379102, 0.6048126226094729, 0.1865497347445287, 1.4783984093844957, 0.8823258251947342, 0.6988348234120793, 0.11499391474849817, -0.49499835764349415, 3.0069028340305013, 0.06468014212881336, 0.004718651225775191, 0.8383976614656069, 0.5252437419121895, 1.1395467658467318, 0.7104552228240968, -0.27805994616852375, 1.550492233324708, 1.3634305693981232, 0.24569851178876356, -1.1241922347066235, 1.2991779201736837, -1.156198080237699, 0.6403866254692756, -1.156198080237699, 3.396543993028586, 1.0798967423888777, -0.30060826226351967, 0.4100059688708987, -0.6835510090244197, -1.156198080237699, -1.0418955191692132, 1.9315805464754459, 1.2981513001567913, 0.3839265818928802, -0.6392015910407305, 0.3170588043919784, 2.0959103495453237, -0.07023100614155191, 1.1984608290558723, 0.013138635602491506, 1.18736377915403, 1.393949521203132, -0.5541267318293532, -0.09867914878472955, 0.674516559352629, 1.256008872318259, 1.0879876092286265, 2.2639573590990927, 1.9326923403296954, -0.5860619415717078, 1.069526746726135, -1.156198080237699, 0.24303205251144655, -0.7914962175419269, -1.156198080237699, -0.3462007162976305, -0.6012257588346276, 0.4858145703832869, -0.24419848799305396, 1.8778089751427134, 1.849474910386257, -0.001537982452885264, 2.148794558465979, -1.156198080237699, 2.4469276022107183, 0.6015076834068201, 0.5948812884018939, -0.7104408023951114, 0.16832917257405194, -0.9568709384302729, 0.4652771502945625, -1.156198080237699, 1.5005175367800032, -0.5147031063155167, 3.0746795102940023, -0.273449709811907, 0.09750073067201287, -0.6162725025530335, 2.428522928532498, -0.2872332170308213, 4.773096672543398, -0.26291940597617647, 1.9050992555728266, 2.280131320261139, 3.0697782903142885, 0.16825436209332556, 2.0429490631596914, 3.0472043087188707, -0.5157113880489853, 2.5985801054190207, 2.590790099776645, 4.4049941310416685, -0.29315660402260896, 0.2584332958942035, -1.156198080237699, 2.8994944150013224, -0.33695611639472606, 1.5699363192881737, 3.2468025575552057, -0.3197293839330368, 0.1990802473749968, 0.7245944036813622, 0.009929962267359635, -1.156198080237699, 5.0, 0.9371777764569158, 1.6704696227531286, -0.23520171804848733, 4.695572287797742, 1.8793958641278152, -0.07880797917858054, -0.4409196909066554, -0.5861656965836669, -0.8302494431823508, -0.8118679048881724, 0.15725479251485602, -0.04467270168945769, -0.1299355991491962, -1.156198080237699, -0.1923864007020284, -0.5322899249384953, -0.5878029854867911, -1.156198080237699, 1.1762553943308722, 0.1627148241157402, -0.6109867048856176, -0.20778100505943856, 0.28259303298260097, 0.05183281844738585, -0.03151204839719687, -0.3096631641617236, -0.7473010759338042, -1.0230723844848826, -0.04071786667643298, -0.9291431097961869, 0.3553841165115669, 1.91169650363721, -0.12505453913670384, -0.7119056385666906, -0.011145704656715555, -1.052192414709897, -0.46635339218792915, -0.09292562368532631, 0.706698829897941, 0.3255002441554869, 1.7665512168325168, -0.6415907495642695, -1.0781628447567064, -0.021856557596363953, 0.40814396515257323, 0.5626624222534495, -0.30687987423106833, -0.13193807492820223, -0.8028212612897881, -0.06637810445670332, -0.3782684231738685, -0.029756592939289093, 0.048228718285558164, -0.824006573336725, -1.156198080237699, -0.7060415979843965, -1.1037938394520117, 0.34944656086812625, -0.1353209012330771, 0.024584639153605505, 0.21895230758210066, -0.9567535207899347, -0.6266866639270747, -0.6595100457187433, -0.8134905798391635, -0.5517115839504972, -0.3965811220619451, 0.3387672837807291, 0.08960450062410348, -0.6966534493993197, -0.5363209063336876, -0.16128904405469013, -0.7591844455205051, -0.5008757572402034, -0.8908300636807504, -0.127074017297694, -0.4071157979387577, 1.81880455641787, -1.1408496226726974, -0.30699945765101677, -0.6204881217201911, -0.6344113318444018, -0.48457302327557766, 0.6721394644239252, -0.11013502991013949, -0.3372126904352265, -0.42761443640381275, -0.2738987346237125, -0.8771128859925018, -0.6530769920860768, -0.6850018384717941, -0.5284054878832531, 1.142391669171142, 0.18538110435620409, -0.8223377693041395, -0.5619132965134717, -0.6209345152109755, 0.5829830214900226, -0.5406606428893225, -1.1032660925995779, 0.8219516621918421, 0.5376860850475244, -0.6272393223052541, -0.16039002286639562, -0.4946674184227489, 0.4254533615761915, -0.6241601909280899, 0.10294076423313475, -0.5025845775932416, -0.7420965253631497, 0.07925806540496363, -1.156198080237699, -0.6054928304482157, 0.008229481177864765, -0.7748961038200426, -0.616873860611036, -0.9899197738311327, -0.6576707523249145, 0.7149174574937452, -0.9624862584532694, -0.2734633117174936, -0.2390355122945357, 0.8070975716540537, 0.02634875772995131, -0.3242923374749942, 0.02535136561732629, -0.5049547501235668, 0.44569591178308243, 0.7917610992502806, -0.1311073061590123, -1.0209770837966199, 0.9600448467322283, -0.7659978667272546, -0.8790016279805989, -0.556817723114958, -0.18584177905806157, -0.4033200566428617, -0.48675054262528805, -0.2855201056004244, -1.156198080237699, -0.34729129765627015, -0.8626859803020396, -0.6904793177551403, 0.19870328027731135, -0.9323613166097874, -0.0019393196314131957, 0.943695841999495, 1.2784873167196693, -0.014190183560123611, -0.47570599769828825, -1.0429263088178777, -1.1393336617047574, -0.3030285108569709, -0.4337233112866639, 0.006734081200577959, 0.20521260173773445, -0.21167770811882594, -0.8086675708165851, 0.23841922531568105, -0.1455186870554506, -0.6648732851879079, 0.20269333451015473, 0.11454618535627357, 0.5341087838782517, -1.139431820099314, -0.22857451340631774, -0.1435838969494811, -0.3706415594348067, -0.3970836638951343, -0.9361597094676354, 1.7619359607250362, 1.3160818502688636, -0.37330316088869736, 0.5527782089330846, 0.040867172669159506, -0.49199715385042025, -0.08368782473521653, 0.49215807813749834, 0.9505235128216166, -1.156198080237699, -0.6138608361142982, 1.4465851714919338, -1.156198080237699, -0.05807163122065513, -1.156198080237699, 0.0947260228960738, -1.156198080237699, 0.2692732050094803, -0.1844362488141141, -1.156198080237699, 0.026902468636539126, -0.5131993265928237, 1.301672412501805, 0.5081014546143493, 0.8365575179526785, 0.6910477324637508, 0.9165661935972619, 0.09902373927909211, 0.7222951958548831, -0.9691615353064041, -0.4037261706810898, -0.7837615101228573, -1.0549562126240648, 0.008427599409831472, -0.45130757955234496, -0.9954776602126082, -1.156198080237699, -0.0408585006645525, -0.06817833285383347, 4.1020699779815, -0.14016593238850844, -1.0072756535526373, 0.45787139848500424, -1.156198080237699, -0.3944578484071329, -0.5816065483367252, -0.5369568359017216, 0.7247244314216754, -1.156198080237699, -1.156198080237699, 0.5667387838157855, 0.9681046235020784, 0.40654995135978306, -0.042649499197176866, -0.2567473793888146, -0.3989963509045245, 0.8044231779318146, 1.7271882736296218, -0.9169585349162804, -0.025343827104849243, -0.2828538082505582, -1.093331651409101, -0.31788745921818573, -0.6141331980809249, 0.1347553785089945, -0.42375651496809214, -0.32065860459028217, -1.156198080237699, -0.7427027007627143, 1.3794283534973204, 0.41768813083327344, 0.7228321472706584, -0.4228627564218398, -0.3249879777892797, 0.401512388469315, -0.3437194210564863, -1.119400267681747, -0.2845940425284048, -0.03763946397278353, -0.8736474564484921, 0.9955022618298605, -0.6908082328827926, -1.056649801676577, 1.7982783093230303, 1.3477605264525836, -0.9315641680268764, 0.022082455271739833, 1.2874763951104788, 0.008849825229082267, -1.0587595645099908, 0.05824198778155139, -0.5884092823319408, -1.156198080237699, -1.156198080237699, 0.6275242425352244, -0.8992036356028391, -0.37979912333470145, 1.9666501453364094, 0.6592754622154061, 0.9865070301960409, 2.133979492443038, -0.5389623883022301, -0.5065840640999032, 0.2932308566434352, 0.17663572677381767, 0.9648223541420701, 0.2550354103367158, -0.10502136111937214, -0.009476070745962753, 0.45878110688482443, -0.16135170997685783, 1.4199553931200106, 0.2186022204407001, 0.9216978363346869, -0.8890672000421224, -0.9275359798801532, -0.9270662081141421, -0.1866869593700763, -0.13724751400294888, -0.833808304863544, -0.26206159532326007, -1.0212693324778879, -0.8371601423031607, -1.0110680753358594, -1.156198080237699, 0.7526897873802431, -0.7470593587366083, 0.7829971000114331, 2.565105491915539, 0.7057322849640592, -0.17811945908872356, -0.4288223341981349, -0.15162788579319825, 0.052552747878790274, 0.8992266786684092, 2.0450984880972607, -0.24741647215641505, 0.16213350457936085, -0.8153669546184613, 0.0038776000636711523, 0.22460616633760577, 2.0647292764076566, -0.9155079078782147, -0.28635969941550193, 0.4255006443908496, 1.047116311852644, 3.2668783224912334, -0.3488309847904373, 0.5285154859881163, -0.8027169800136243, 1.414202110911772, -0.7087136842405082, -0.8286371518289279, 0.2781719278846141, 0.38856062158427945, -0.184159190951512, 0.1380992612627545, -1.156198080237699, -0.4910681356024834, 0.3872938631628014, -0.06359530030838963, 0.6943442514391356, 1.164988968318994, 0.7379420831754461, 0.1966410532701975, -0.37060447804933927, -0.22089542806545076, -1.156198080237699, -0.2859201473593739, 0.6492983025401928, -0.866502448311209, 0.10531939747258982, -0.4212699570849059, 0.47107091436465925, -0.11649829281294999, 2.227425231532676, -0.3871433427142224, 0.2438983643553609, -0.0940679408634296, -0.3561726133307977, 0.14866729419374372, -0.4571211797347551, -1.156198080237699, -0.5648361679038367, -0.7339511294554628, 0.8741080072361639, -0.010065000872371627, -0.015240040165726979, -0.45551987920682996, -0.9270495093461222, -0.9171855369566864, -1.156198080237699, 0.5137507794013122, 2.9497145935563758, 0.12569513300502214, -0.6892368889326468, 0.14344788677978434, -0.04231876238574002, 1.8833420360223938, 0.3680533200007891, 0.5065427410051119, -0.30126876432170574, 1.0010827674516565, -0.7627374575726589, 0.0762635411190962, 0.2815448766151864, 2.117345657330207, 0.4195213114659578, -1.1486403437054762, -1.156198080237699, -0.48331658772887925, 1.033501452070259, -0.7012294381007985, -0.4646218210285219, -0.7951810385363126, -0.40162410952189537, -0.7219323480408225, -0.10337585439828989, -0.6314242967029795, -0.06381171634191894, -0.2678119628374377, -0.3400491735323719, 0.01565296404291754, 0.6833140775730907, -1.156198080237699, -1.156198080237699, -0.11822330591073571, -0.06536338610719955, 0.3418490869607761, -0.5355867272869067, 0.63745217626641, 0.3390859569973292, 0.23248944218970516, -0.8751648987995655, 0.5144671464288726, -0.950704194725884, -0.6055853315025759, 0.3792888178701993, 0.7034427927844277, -0.349513508981478, -0.5027968644768614, -0.9347612635495144, -0.19376351267894626, 1.645864099401892, -0.31499082007430884, -0.9638563063452931, -0.6462693597855759, -1.156198080237699, -1.156198080237699, 0.5454284840203539, -0.46103950010837874, -0.5613954525364966, 0.5217634352839482, -0.08060529288165642, 0.6002882078000135, -0.5448564259441666, 0.16500998375602935, -0.22864495184596195, -0.6655093362015283, 0.028248409579821523, -0.6818012210271736, -0.09270637392146751, 0.48998598335728477, -0.6357844765988574, -0.43437903648515114, -0.5588116572211113, -0.19902817881446902, -0.2814787203667331, -0.857856150085737, -0.5117284586238262, 0.044676272979470924, -1.156198080237699, -0.9001198818233568, -0.5643054102129268, -0.000746966872045571, -0.004917408281361397, 0.7242224563345513, -0.0009396605345222377, -1.156198080237699, -0.821369200277161, -0.04544946765492095, -0.6953510264575417, -0.2138638905869745, -0.9776157470973278, -0.5373477287598886, 0.4998268001217306, -0.03495883604381611, -0.9008099761225672, -0.11180231587290458, -0.008188180792594093, 0.9721128136090372, -0.0875877663435516, 0.21844838936560707, -0.1426881952738606, -0.2847298186930992, -0.5422514181331635, -0.8968899757516777, -0.08045275722614968, -0.647195787194352, -0.508414208592951, -0.4842813514608423, -0.9564262249367569, -0.16508632366133624, 0.025235344601220587, 0.28955898984484624, -0.20011714089863428, 0.1635083495720143, -0.5050368068575665, -0.8266495936160188, -0.9781527592358955, -0.2387253402689268, 0.8609483255085906, 1.8244140470527648, 0.922693528209125, -0.7858622353806103, -0.4911895407062163, 0.2946088592213212, -0.23027523738698302, -0.5618154113714827, -0.7000859064668403, -0.6929706120161653, -0.08818633115308507, -0.8327321350477289, -0.5286356272679553, -0.19011302030342192, 0.041648634530598645, -0.4720750985439059, -0.3770784993262121, -0.9141853047282972, -0.6753825789373318, -0.10852603782845947, -0.07898715189919389, 0.3012792984919564, 0.002116800999997813, 1.4402167269108068, -0.5299683306424077, 0.1441243386915464, -0.5036454047834102, 0.447545285160526, -0.5457386066779253, -0.1966222608001175, -0.41508279028120626, 0.9480215718309319, -0.9121291095185963, -0.3501582231135378, -0.015333067484291942, 0.22770302877026316, -0.5709400635176807, 0.6835574545266254, -0.5385440892235801, -0.31581818836710285, -0.3690624429671828, 0.3076516293318355, -1.156198080237699, -0.3613964737495622, -1.1454676732937117, 0.24986830548829347, -0.35025894198585755, 0.05715464497186268, 0.1840115220055994, -0.2863590517057121, -0.657545541926166, -1.0568652967477492, -0.37887508435577477, 0.21241756351244304, 0.6688350110036183, -0.29003690981985647, -0.6982848684324724, 0.08816261766820155, 0.326078001288022, -0.2905698130494459, 0.07953099411765642, 0.7861904712027762, 0.29848005870773603, 0.14590853627137715, -0.2299345420375285, -0.6483844156224287, -0.08157289034395013, 0.026885223363385155, 0.022385259598488878, -0.9487440427334579, -0.2991505913814888, 0.746462705460745, -0.4486320523379742, -0.9800248834196976, 0.3621243465120605, -0.5409529219319859, -1.156198080237699, -0.30456301631281946, -0.8563144186175446, 0.023837020128686135, 0.1268236863500909, -0.6799569078824729, -0.2475135476611674, 0.11027259616292552, -0.8198803178796342, -0.09065750592876333, 0.30081991032351746, 0.15806289144140206, 0.7663627791162696, -0.2545606301745998, -0.44240618487433253, -0.0855018979291046, -0.6955786964486695, 0.5362415302887426, -0.6607709342702485, -0.6244327957858881, -0.518048486898166, -1.0034959531945051, -0.718553569922135, 0.6961066697772835, -0.4517638101355621, -0.5265121512038347, 0.07940614805566464, 0.08395525680086544, 0.6264888784361758, -0.5631931710581907, -0.2983432211284578, 0.584175779068015, 0.5373959110616772, -0.3367808299328517, 0.1525580869012978, -0.737849492271185, 0.5362015342092167, -0.3794797214445881, -0.3780817208269472, -0.6784587146567169, -0.29181657343115835, 0.5938783097923238, -0.6910110065288735, -0.9015536684068857, -0.7508516590742452, -0.26432874151513963, 1.2339664985328407, 0.06672285687851288, -0.7404785058262738, -0.17666284073510252, 0.1215342453151058, -0.36255951764093874, -0.9474981527117746, 0.2996663391878168, -0.7812041494632703, -0.71735040850565, 1.1138048356692047, -0.010600899759738911, -1.156198080237699, -0.3807612962275051, -0.31598910278789516, 0.05657097748749548, 0.12175106616725512, 0.39725207732666523, 0.398896936337951, 0.3825195943019089, -1.156198080237699, -0.7946450586852221, -1.156198080237699, -0.8792428593954518, 0.23170814225571693, -0.9813016206201217, 0.7001781735162023, -0.8319191782977593, -0.4400527313529563, -0.5051612885828017, 0.5344520700668656, -1.156198080237699, 0.9224903092625598, -0.6354511489482613, -1.156198080237699, 0.07678227569703278, 0.8116569627921643, -0.42814110542667394, 0.18763813008261518, 0.024122255327384785, 0.3570166690368458, 0.42259696140300795, 0.331796307167596, 0.1843096304363688, -1.156198080237699, -0.7943909945201577, -1.156198080237699, 0.8031008783958546, 1.9989277911482715, -0.2178426098984996, 0.11199088927163955, -0.2108543070484944, 0.6175671618634961, -0.6702149883065597, -0.8296700465344102, -0.7446518214477822, 0.19480180035821834, -0.5593967010887811, 0.6883467826401284, -1.156198080237699, -1.156198080237699, 0.8037766016341129, -0.3653336586708129, -0.040975331317893396, 1.518177020345022, 0.2362521502863288, -0.9758034146235006, 0.2337872906810954, 0.5957790141706087, -0.47139184567935205, -0.7105773881970422, 0.195973264476875, 0.371191473932552, 0.979763399719154, 0.6643288939957186, 0.6403293031528684, -0.8765410594527295, 1.2270227257308939, 0.6449375963801183, 0.6319822670912321, 0.7399171122521047, -0.5392002597225473, -0.5415805527183385, -1.156198080237699, 0.4068718631253323, 0.2451039142016927, -0.5999038641172926, -1.156198080237699, -0.18933139651453487, -0.47005181508790145, -1.1155285394010148, 0.5212337706033052, -0.5770087399117019, -0.7742254408145274, -0.993614158665384, -0.430008533714499, 0.12362545733532002, 0.7083265245998026, 0.07856404436515256, 0.40222001141471914, -0.040412795365419495, 0.32077293425436426, 1.3905315566421592, 1.257207459284347, 0.5170463268120056, -1.156198080237699, 0.6201895768751042, -0.744492363393897, -1.156198080237699, 0.2788874852749271, 0.7151699023843381, -1.156198080237699, 0.2363034812871701, -0.9370211027653267, 0.002272899059348659, -0.5386478442355406, -0.33713707031726237, -1.128387759689598, 0.6324016591801586, -0.7910498645330042, -0.6059673588329949, 0.8619645821688456, -0.10381605416420776, 1.3081354227122486, -0.7529093925946976, 0.3131905195996245, -0.449202522735373, -0.09631104082936025, -0.15404619125728025, -0.16580398610847624, 0.15330011942927982, -0.5838608212965314, 0.4280605554077317, 0.20815741429722417, 0.49408679596419036, 0.9457241452063643, 0.05845354599165707, -0.21687719845674555, -1.156198080237699, 0.09217347957804721, 1.014966912579156, -0.9458634546478096, -0.2712386714805732, 0.43665064456800123, -0.291917049412308, 0.3921118524345145, -1.156198080237699, 2.95519324681371, -0.20832273333491438, -0.25927717190047195, 0.2744016091979698, 1.1460050801611879, -0.4002130737447358, 0.7202123230982094, 0.8087348200753053, 0.2716546719792688, -0.5512325620790507, -1.0932672650078048, -1.156198080237699, -0.7047786853397984, -1.156198080237699, -1.156198080237699, 0.8996622635020819, -0.5958485531231198, -0.2912385734074532, -0.18909417280400748, 0.5521743814814987, 0.02861234151798694, -1.0958932323027881, -0.7331367558403271, 0.6481780884586755, 0.6877337253240537, -0.11306858851203695, -0.6276498488664247, -0.20688012170549933, -0.47507116114052267, -0.7962381009133275, 0.004224853474747348, 0.2055523255224976, -0.061758800163030085, 0.13739827734270177, 0.07494180832920942, -0.7199564688450614, -0.14586893612430465, 0.048770446561033985, -0.4241041731977867, -0.20041945944304004, -1.0839414584900002, -0.23925727193383178, 0.49516604240150386, 0.05778162804842541, 0.9694163977539435, -0.8896566766736671, -0.6063980453613752, -0.30507559764775244, 0.2845819878197346, 1.015323152963567, 0.22383943987388227, -0.9395365242160224, -0.42088797023634994, 0.33029977369818303, -0.06890733022229562, 0.39620618794352175, 0.06024413970566414, -1.156198080237699, -0.5048509951116078, -0.3237059172240196, 0.13632607474935052, 0.050735921918295984, 0.08327580923132587, -0.1765306269742521, 0.670402306767581, -0.6030140450825073, 0.5657050389912047, 0.3388288162107637, 0.2193899974725867, -0.5070236161560314, -0.1659536880336535, 0.1350950213300395, -0.4521433680724069, -1.156198080237699, -0.176309272153576, -0.5491831678221429, 0.6940871106525701, -0.36835384845710056, -0.14481997011966277, -0.6121364707263025, -0.4878852087314983, -0.5965466628309796, 1.60308837331633, 0.09726585490947304, -0.5745786947076781, -0.5063562321813286, -0.15666196724353915, -0.8437677334832574, 0.3089075386143172, 0.4622916939457439, -1.156198080237699, -0.3189554516979044, 0.2655626375509452, 0.17029991057335578, -0.6384524741869215, -0.772921196188966, -0.22710931289798045, 0.28154244770348447, 0.41511413212845905, 0.5884221644501899, -0.32819179330098763, -0.009153592234346938, -0.23526794637449883, -0.9079676146007518, 0.3732997692984732, -0.13417866501869863, -0.6417834432267462, 0.17724894601734983, 0.3037809156277664, 0.4685521329194252, 1.0334684188709773, -0.5132124427160674, -0.577876185247741, -0.36967962943317473, -0.20945031511529824, -0.9702681272414108, 0.005244348683951628, 0.5482197893596522, -0.3383911983978359, 0.11634714242691563, -0.6653854617042226, -0.5496890696498679, -0.225019639188518, 0.7251630928768396, 0.1606512207253178, -0.021226821753195315, -1.056125227590067, 0.11180402499727159, -0.018678164693907894, -0.15737485283097863, -0.04985761855710715, -0.9272681316411245, -0.1834818484387885, -0.4598948349822876, 0.11968349555436877, -0.2352256833107113, -0.4672156558456498, -1.156198080237699, -0.28612320437848643, 0.25660740199665144, -0.09087481256325382, -0.87001763006345, -0.18900827029313072, 0.4045618061598701, 0.6607357239365882, 0.46546854853745284, -0.002835183234481784, -0.29955702927461336, 0.2720290482377949, -0.14704258626349026, -0.5361419765042442, -0.5075004924888, -0.7225790053022518, 0.41975432506285515, 0.4248132623763879, -0.7908645385693872, -0.5279907512084486, -0.4786692295049333, -0.42869821680965764, -0.3060878061218204, 0.7824559384820169, 0.30404032339858966, -0.6068183280512564, -0.8114090429839356, -0.467269820576826, -0.41039717669779807, -0.7892331600180964, -0.9573770629082384, -0.3614966258758153, 0.7284471434387599, 0.27684460859777954, -0.4789026074385833, 0.5762031192648915, -0.1378445405017307, 1.1296602855420954, -0.8133674744972328, 0.1269822942848778, -0.04738741534611486, 0.5307444173023913, 0.19542303501040123, -0.5796285236022848, -0.4715433288064492, -0.49093329052061213, 0.15932908311681088, -0.7374202630898327, 0.3197492289315194, 0.0717684351776237, 0.19275528031350442, -0.6364556658685758, -1.0553856239737962, -0.8831284906656179, 0.4286004215175547, -0.9782836775771662, -0.5820882015291928, 0.9622707014250117, 0.6986301471184906, 0.8814086681323243, -0.5996108968829775, 0.23229610081744528, 0.521237333007156, -0.17883590708000746, -0.7979217820301486, -0.029967341512157932, 0.33432205149307415, -0.33520147057405614, -1.156198080237699, -0.25178592239865905, 0.4242118638365171, 0.8068830177861737, 0.5013461653612453, -0.5262818094098242, -0.38709087822124555, 3.120995941945705, -0.8852642934566765, -0.625453748342119, -0.41894184520905825, -0.8490359620226244, -0.32625473621075507, 0.6274897519889189, 1.1116102329737914, -0.14264633702869128, -0.2204995154564132, 0.39344823965839354, -0.4721710405565266, -1.156198080237699, -0.10753050788147918, -0.5460566321847355, 0.23946527662625539, 0.08964392995755999, -0.26323945557607964, -0.6427761799252573, -1.0716343905563228, -0.0020019855535790723, -0.5494077611917685, -0.7336216475817439, 0.2260544454276825, 0.7297963229309916, -0.6410718125770245, 0.5620862843953957, -0.3708900371029342, -1.1367138236166718, -0.8439732801368752, 0.25259176322710286, -0.07781374465117992, 1.3796391830339059, 0.23962574672669096, -0.43558029525412817, 0.5393879425203291, 0.3718306015676775, -0.38500735775478506, 0.1485300606820213, -0.08446232371641536, 0.15160797760332925, -1.0438459555147923, -0.2248880731374562, 1.0710563133948292, -1.1286703787479746, 0.39271487024885327, -1.0302725086770952, 1.898417805235764, -0.5150421823904966, 1.221995850051965, 0.08851140939002891, 0.3173068772414862, -1.156198080237699, 0.6313264609290282, 1.1539260851085689, 0.12151829546153166, -0.6881592617698038, -0.15528857959791192, -1.156198080237699, 0.015242882782225594, -0.3169295774027393, -0.8325453517370842, -0.6565413893426093, -0.0984505072289169, -0.6519673032886384, -0.5522112515714952, 0.07410917739437328, -0.4908545128174221, -0.5973535473016689, -0.8658916174975307, -0.2989540114602746, -0.36862442922180594, -0.6210688340286422, 0.31225474088075345, -0.9678432232338442, -0.49417434934523435, -0.6875890747454384, 0.9712385673202006, -0.8376500537954493, 0.4802267780263452, -0.9660247375170136, -0.5749733928608608, 0.10287736963745425, -0.018212299427566643, 0.06079760772107911, -0.4675647714223722, 0.0394110400978816, -1.156198080237699, 0.040824666714202026, -1.156198080237699, -0.39303782565663886, -0.8868851872057449, -1.156198080237699, -0.3027626259882426, -0.7642579967861644, -0.3588503265657108, 0.3388702696373133, 0.0918555350349601, -0.5894570338807277, -0.14277927946305632, -0.8825289947732616, -0.4112014703293296, 0.11624358982426657, 0.342325477511195, -1.156198080237699, 0.20830347285483916, -0.29115850028468343, -1.0159616847255302, -1.0676608984652116, -0.6194959112858848, -0.7066204886090631, -1.032676392477888, -0.482251307533905, -1.156198080237699, 0.16936542727406706, -0.7866305811188042, -0.1407317878536551, -0.6579821792882413, 0.1779883877061716, -0.5708267952681826, 1.4849723398964452, 0.01808041840778026, -0.5752387109835225, -0.37170469409110174, -0.5109918506653327, -0.0950414486775554, -0.5129518204893811, -1.156198080237699, -1.13327842908405, -0.3329786115390585, 0.007107971676762279, -0.9223378052027429, -0.8895403520435987, 0.4875985250719436, -1.156198080237699, -0.8540988058358203, -0.8345732096434804, -0.2511571581201737, 1.5773228017314809, -0.8028417855937545, -0.13914813741750232, -0.23875821154076196, 0.12148113311233913, -1.1016356451311093, 1.0620087791954766, -1.156198080237699, -0.7771859198545649, -0.9204094517128102, 1.3449345686395224, -0.4676607943987162, -1.156198080237699, 0.7127236644355656, -0.44700800100368, -0.5774121416651842, -0.5051141272137287, -0.6026025469566507, -0.6681947814720564, -0.479392518930872, -0.8861799526901968, -1.156198080237699, 0.0107374134841157, -0.4700472001556493, 1.3713475261593073, -0.4533157227920128, -0.7583972352346825, -0.04643171955120837, -0.5102729737623378, -0.7033182616911615, -0.269138472487025, -0.6633189436197445, -0.8985566140046531, -0.35452313938725294, -1.156198080237699, 0.3687162509706812, -0.9239143713130692, -0.3369247834336437, -1.007383891930799, -0.25641818088812907, -0.7530828168909272, -0.22251251651950346, -0.827802152705173, -0.9335765821029707, 0.15559948918320307, -0.13235301401231675, 0.35938064784230866, -0.643572539111864, -0.3100698449460182, -0.7340874723662236, -0.48261119128588453, -0.8926114477711813, -0.3857794278242714, -0.42043845964220267, -0.36944799221958435, -1.0054842400809287, -0.33293116679695234, 0.23139918468596443, -1.156198080237699, 0.6027452948877555, -0.33175848822245146, 0.20415392008623837, -0.7057647425311028, -0.6608131163703113, -0.46869235320275593, -0.6386872689857377, -0.13120365299025125, -0.8978189535177517, -1.1346677336917388, -0.21132146773441532, -0.4358784036849016, -0.9959400845206907, -1.022793332890583, -0.5656594070467204, -0.29195032550276134, -0.8882248737013695, 0.14845006852297638, -0.4594770621678424, -1.116023895703724, -0.7191185752681832, -1.156198080237699, -0.7688428105335294, -0.5395743930899032, -0.6817904123700561, -0.039877706115290415, -0.2818484007292835, 0.3310724914774592, -1.0462687139836797, -0.927099200831562, 1.1108101494558977, -0.6284761241489489, -0.5277167699673474, -0.5185297757538768, -0.4763811541904706, 0.6108688710718979, -0.536700504752394, -0.6766631416737022, -1.156198080237699, -0.8356672319603776, -0.6303680844450643, 0.3383048189907851, -0.4222293772111035, -0.09220480365296192, -0.4215738139400631, -0.4890782092006557, -0.5380581044718935, -0.7149177724624685, -0.6250338299889957, -1.0618613960911956, -0.9534396553367468, -0.7822533583590822, -0.5550091149724217, -0.028872307148712792, -0.7175394992824209, -0.8539535366745178, -0.24195627862808478, -1.0309639388777467, -0.6903639849306875, -0.7310359496188507, -0.9226152071611711, -1.156198080237699, 0.05301156930116704, -0.2638407731522204, 0.19459388551569376, -0.04714679115918901, -0.14788209911484299, -1.156198080237699, -0.8670882613342555, -0.1099064693180501, -0.9466039488650422, -0.27286256088741934, -0.45223380455181267, -0.3768060563958622, -0.6099465639268618, -0.34397801919007953, 0.34778842380614217, -1.156198080237699, -0.46716578219183225, -0.6311345680176137, 0.40909966094747185, 0.17482222032600145, -0.6268846202315934, 0.8083887811200883, 0.1292445016896087, -1.0129086034264754, -0.6172127342767074, -0.6676830097743615, -0.5696820896602298, -0.4739190473518499, -0.6683442000242005, -0.6912541810730958, -0.747238369529775, -0.9141164855631277, -0.0672094399719598, -0.1876304296426979, -0.5564132688330662, 0.36421887804495096, 0.017472137951399534, -0.078316205520647, -1.156198080237699, -0.721692776382306, -0.7468004367481214, -0.935798429091422, 0.11078380111455419, -0.17627850593855873, -0.4726075969548771, -1.156198080237699, -0.4567551427397736, -0.7880257075242527, -0.0463235520163055, -0.5155267502770186, -0.4700083375682591, -1.156198080237699, -1.156198080237699, -0.5370864588234138, -1.0513107703608082, -0.08422963397441563, -1.156198080237699, -0.5732940028213972, -0.9363807809152798, -0.6238048411446406, 0.053084517616246885, -0.1167925149849846, -1.0671034935887291, -1.0598137729157442, -0.5840168383921576, -0.6329177130690364, -0.19084282730912197, -0.09049800739301524, 0.5114680881744806, -0.8146471871145035, -0.4235771803200306, -0.663789626227648, -0.30657366942792336, -1.0338660329525102, 0.17211511725936882, 0.23856576965562848, 0.4635432311871674, -0.38986242841196034, -0.13931160317571273, -0.9343281076275598, 0.6014186233107242, -0.5802246595001068, -0.5507967748360751, -0.7284078266647233, -0.19294715545257932, -0.5740174541747839, 1.2607139981590831, -1.0701992225292576, 0.8673776548099621, -0.617409152270475, -0.2809218518749209, 1.8900782178367042, -0.5085038759169817, -1.156198080237699, -0.6841318832603188, -0.6827433149164923, 0.21641781917447966, 0.3531440122034072, -0.9246636500943248, -0.41473302699469394, -1.156198080237699, 0.09377526588831543, 0.25441684748742094, 0.4801412803340867, -0.29234810027744484, -0.49337900220517694, -0.40180838295710564, -0.010382864451735302, -0.296130563522648, -0.24350041876705747, -0.07699123418180953, 0.2739087020479034, 1.032968063058321, -0.7748134803399764, -0.6762852434931937, -1.156198080237699, -1.156198080237699, -0.1246153109354707, 0.08061914656458348, 0.08421150698646931, -0.2936160731547753, -0.18754541773278266, -0.6874087685326921, -0.37172388249362526, -0.06998576702237512, -0.6923834226098158, 0.47730253025268615, 0.9603871613561641, -1.156198080237699, 0.04177728588760618, 1.4491279181993917, 0.44764762330732033, 1.3597574071799545, -0.8570435171906624, -0.17452426493650705, -0.24721616790390719, -0.6590923133861611, -0.1599783223312306, -0.461536941226974, 0.22921883160592715, -1.0110483404282002, 0.715489547165616, 0.5040851681350241, -1.156198080237699, -0.998741550807323, 0.4308620621762232, 0.5557911929479514, -0.8868692373521705, 0.8751832054872942, -0.4133100085864209, -0.2770010216258628, 1.1354595551453992, -1.156198080237699, 0.3132582052726692, -0.9958595964588379, -0.7261946832765718, 0.2740902227165021, 0.04093526316081739, 0.08956952429545226, 0.28660640476787846, 0.4911678917962809, 0.23331316711493436, -0.4652669399792001, -0.6589381179743167, -0.12145521583457664, 0.5198384417885511, -0.3052271617385744, -0.7987131619477436, 0.6914395968866026, 0.31822176731963836, -0.8332423684346728, 0.37060513464530487, -0.6505677238783846, -0.17879688256517035, 0.21295856311440153, -0.12271136800824327, -1.1225976491075345, -0.8729760647694638, -0.8688426642637538, -0.9707340937124064, -1.089204348483834, -0.23631869358106217, -0.4371323698380271, -0.5954032121607447, -1.156198080237699, -0.4235109519940203, -0.5043706778205816, -0.13313504261982198, 2.4525973298560677, -1.156198080237699, -0.01791564834382105, -1.156198080237699, 0.0911645096529284, 1.2007363954750156, -0.7057974113936277, 0.35284898039414286, -0.5123352412513189, -0.008014918423812552, -0.9302167292547043, -0.7943025416519832, -1.156198080237699, 1.0005770680332375, -0.16138271908304522, -0.05149162842941919, 1.0176056822629542, -0.2552673625190358, -0.8366730645412028, -0.6191254617679594, -1.156198080237699, 2.0323463777549393, 0.011265054071663158, -0.6912739767035475, -0.236158628299249, 0.35282129080062397, 2.3587208637561745, -0.3723413118507886, -0.2494150616766822, 3.9653899342750827, -0.28051865253074704, -1.156198080237699, -1.156198080237699, -0.5157002555369716, 0.18313751860793573, -0.36143315031641127, -0.788589457932583, 0.41551684569029385, -0.6112984557038392, 0.2208105869691578, 0.21348272226182424, 0.5456919399773604, -1.156198080237699, 0.3388905105682424, 0.9532391980429612, 0.7800346373601603, -0.41491317127999205, -0.3198659697349693, -0.675055404529739, -1.156198080237699, 0.8517730305531962, 0.7815502782683801, -0.21224664020547343, -0.5229682070887385, -1.156198080237699, 1.1463758940158768, -0.03471772607454969, -0.12310112737427739, -0.5839446592324523, -0.8288048681826341, -0.7964130230384455, 0.061479727093502974, -0.5269148647656668, -1.156198080237699, 1.7028143065282455, -0.7646279200398862, -0.36704045493075826, -1.0286732322422625, 0.29616903017759566, 0.4116062978341431, 0.8397787406649847, -0.22692463464415347, -0.7537674056569238, -0.4331234510575511, 0.0950400002166965, -0.5626038361131618, -0.5400193292336599, 0.25711779731104345, -0.18577279796544388, -0.22796356114705288, 0.3862159121450676, -0.38165853621387813, -0.6606991194472999, -0.21430247107841777, -0.8435293560396664, -0.9796074344601474, -0.5494043607153725, -0.026571318120316156, -0.0748376800943233, 0.6217633497369652, -0.7679344785170069, 0.9308069029640738, 0.44887130902776756, -0.9306022785071059, -0.2588939705960596, -0.6795231042507298, 0.8265083005633491, 0.1559243156428066, -0.28183002196399654, 0.012207147960981853, -0.7030955709690438, 0.1586293136526162, -0.4498312060501336, 0.6663426237323234, 0.6321192577117893, -0.1536904366552111, -0.7212155761946438, -0.981750038203999, 0.09273820155106241, -0.07755984241356362, -0.485414843593058, -0.34472555725127546, -1.156198080237699, -0.03763687313362418, -1.020696321843656, -0.6001941595487262, -0.8873734187007651, 0.1264399992633353, -0.8499163615544605, -0.8371301452435183, -0.9376486525879546, 0.35060968572321705, 0.06267199888914536, 0.03360027364580102, 0.6181348794942954, -0.24488101218409603, -0.28377833301182787, -0.6789029221269604, 0.10076834559801966, -0.5774904740678928, 0.15291060295441566, -0.7930581697001201, -0.235783928185828, 0.2501165402652454, -0.25414148097685013, 0.2060989925851205, -0.6736153837394835, -0.2809557756751626, -0.8938757165581515, 2.2305663001585, 0.09109585241520561, -0.0713588308131059, 0.20603017341995356, -0.78584312794181, 0.4399126729970805, -0.2291184277023332, -0.22859127289712872, -0.03396808295653602, -0.8604681207769803, -0.27509262569383, 0.07185676660021324, -0.8672026023530927, -1.156198080237699, -0.09854070081715269, -0.20979797334499264, -1.156198080237699, -0.9058547245435092, -0.4554585896679669, 0.1466317042517306, 0.32711061262046714, -0.31061764550077253, -0.1933634709199983, -0.2670041068020621, -0.20614877638904797, -0.1737637726795145, 1.0748070388603341, -1.0551379154610452, 0.2148464752243338, -0.5552510345789261, -0.5222622843815391, 1.1141103927625642, 0.1942097126465914, -0.048926778625387336, -0.9616577161864821, 1.774361949188181, 0.33727091223876027, 0.27643039818718507, -0.7020533654353337, 0.02451007156405091, -0.5152614726362185, 0.6894334777400316, -1.156198080237699, -0.4845293838284884, 0.20607632274247617, -0.20941177638280292, -0.10739141220411097, -1.156198080237699, 0.015101439156870879, -0.6480380932941741, -0.8766596510670625, 1.284541783980182, 0.60172418040407, -0.16677077393353354, -0.3156044441364565, -1.1240125989747145, -1.156198080237699, -0.6877809587706771, 0.8034715303230855, -1.1373876378821213, 0.6587508172856377, -0.029489169759809468, -0.08993595722288432, -0.11350482105549253, -1.156198080237699, -0.6654483300356986, 0.9678505593370182, 1.7213462551801757, -0.31296640312617163, 0.19727807584849594, -0.8644713720967958, 0.6382911223716938, -0.38699323597042695, -0.7153808849622023, -0.2475253683648312, 0.6154645339582394, -0.24639859622168536, -0.5062817050736342, 0.1533967091516889, 0.0969305031657857, -0.39580346549552187, -0.15430414168108214, 0.2876896993913751, -0.21413827664669396, -1.0313863873472373, -1.0532876717235815, -0.7347326722806251, -0.16583556196073143, 0.4915840453362581, -0.42799423723182767, 0.056068678545475266, -0.6185673383384279, -0.0717551482407629, -0.14163388566345192, -0.7926123429554022, -0.3388317220186488, 0.05571057599542004, -0.8082910490193811, -0.5299604771612064, -0.5671208832237654, 0.4342753308412229, -0.06683320154778746, -0.32796954787934995, 0.6974909875256106, -0.17526459722629134, -0.1595385273839309, -0.3111886826442391, 0.5912048876347761, 0.20089780200900978, -0.9584658428240244, -0.6051595027976208, 0.24169922769141833, 0.3098046166732555, -0.3107455681842669, 0.44455723797254804, -1.156198080237699, 0.2926883996944529, -0.5909902439169965, -1.012334337854527, -0.3358027071864736, -0.14165801285312277, -0.03977893037234019, -0.595982831458926, -0.17602565622935046, -0.14244336097330199, -0.09373194140995046, -0.28970034362031244, 1.314153294369629, -1.156198080237699, 0.6542754664927486, -0.24517960639721112, -1.0439804160189765, -0.6831563513530987, -0.6664986319417817, 1.9751072920623047, -0.2601947337815001, -0.39690789165091817, -0.31864511774484877, -0.6798997474935203, 0.9112891400119978, 0.8840320547086105, -0.24528995995265515, -1.0432932465342861, -1.0483305968949728, -0.181058685151283, -0.24080861784421595, -1.156198080237699, 0.11392705576091247, -0.9551589604920089, 0.21357518283432686, 0.6634041263432747, 0.34808329368796237, -0.8783576020401906, 0.1850088331545052, -0.9493299367202277, -0.6555925754642208, -0.3178394477300143, -1.156198080237699, -0.9432626367095097, -0.22898589008658815, -0.6634849192533911, -0.7088309197124687, -0.7043534233809083, 0.03054705066023166, 0.1712237066611084, -0.5639832150743442, -0.8579393403118695, -0.6293245834917744, 0.027036706490483557, -0.31602302658813836, -0.923257107803831, -0.7243389542468254, 0.12173098716377016, -0.6616530745221455, -1.0430780753180091, -0.21232072201268656, -1.0090854761510284, 0.6232768855883715, -1.0358745405289345, -0.5828544826924323, -0.2920996226093174, -0.30293345944531164, -0.6817567314609846, -1.156198080237699, -0.06123836534689442, -0.22324888158682546, -0.7049258773895383, -0.031028047256740174, -0.9239525861906697, -0.2399448968394676, -0.10714560633886762, 0.43111385935702584, -0.5752418280868867, -0.9352688453745064, -0.7531322047624016, -0.14810191562476954, -0.5601533070870349, -0.2435859974230393, 2.102767653090347, -1.156198080237699, 0.4989293982079173, -0.14478216006068054, 2.866914288717593, -1.156198080237699, 0.2399329230945181, -0.14873067990325495, 0.0018799011443638297, -0.5088175698645728, -0.004154487112657566, -0.0463092214372055, 0.6360814604236696, -1.156198080237699, 0.12416759042941403, 0.278268598570744, -0.44640093500315403, 0.11272223458809107, -0.8510235404764643, -1.005686193969307, -0.4397323578981584, -0.4735824811523059, -0.9224862724311317, -1.0218079436499994, -0.073811950678392, -0.5052193800545773, -0.494621795364427, -0.6754443542585364, -0.10987934647060021, 2.348969916725072, -1.1190230121507958, -0.2781938601675721, -0.36394683104704595, -0.5478620422601829, -0.40888558397576397, -0.7434364345090152, 0.22687687493331876, -0.219738294525906, -0.9084734557056842, -0.9179785361487574, 0.27019084785423597, -0.3961596249162077, -1.011769646242909, -0.6430187472415528, 0.21747876781023354, -0.31848691462868034, -0.1894177848077546, -0.5624133689530879, -1.1325202367028342, 0.46160771240767545, 0.2894495268903637, -0.6416313528717208, -0.5113880466474049, -0.3262295564926748, 1.788520561339128, -0.5967232042305719, 0.276596535748285, 0.5058237831383922, 0.9752381752724474, -1.0148381410108676, 0.1888031171033735, -0.7304368990269758, -0.41574296848449876, -0.7846173776464043, -0.6320466243654284, 0.6655501508044639, 0.28695357721523135, 0.33902636769666417, 0.6184805945946245, -0.538473650783936, -0.9702123229948305, -1.156198080237699, -0.5469042009265996, -1.156198080237699, -0.5425972141972133, 0.10973297294426591, -0.4086592903679405, -1.156198080237699, -0.6525415789810527, -0.6422956602249226, -0.8806934459516546, -1.156198080237699, 0.6314595652908331, -0.8220999181247532, -1.156198080237699, -0.12181202296505385, -0.8065061632478973, -0.6591823855288103, 0.8843230383316917, -0.8272288283365126, 0.13157803813494526, -0.3342527376593924, 0.5635523755046863, -0.8079136366212143, -0.549163534119138, -0.9222889435954719, -0.7201314314520408, -0.26468992068669733, -1.156198080237699, -1.156198080237699, 0.013679716168177489, -0.5854030183061346, -0.7791397769174716, -0.6237178861053543, 0.39827659228674406, -0.08190856594253282, -0.19205202052302386, -0.7491506922024086, -0.2423807714315985, -0.4449482029082732, -0.5182054350766164, 0.31930911012933144, -0.5686353501579907, -0.25575727401132314, -0.4305561723418066, -0.22064322606603232, 0.10914031848656457, -0.5305733725498394, -0.01979829781170863, 0.7737069984957933, -1.156198080237699, 0.7379717158983209, -0.6671514019643515, -1.156198080237699, -0.5839462785069269, -0.1670348776003389, -1.156198080237699, 0.653819478800703, -1.156198080237699, 0.31822808249007933, -0.004883403517396133, -0.960377983328279, -0.010080545907327728, -0.07940767748024682, -1.156198080237699, 0.2763589881828588, 0.3231921303193942, 0.5340100081352948, -0.5878652870722006, -0.9285607984541921, -0.5677218769450113, -0.07598752689873299, 0.0796228069803653, -0.41283458960068015, -0.6765631514748958, 0.10613575469895675, 0.03421300710698732, -1.156198080237699, -0.31192788144189054, -0.06853400649217756, -0.47148624938122013, 0.6832504400862425, -0.5716393876813953, -0.036142201829849285, -1.02631689438823, -0.7610091249622009, 0.33387383631850653, -0.8908613966418341, 0.12754045819626927, -0.9858722454749027, -1.0323124504192576, -1.083502908359953, -0.6123075065926814, -0.6707370828790306, -1.0455235441114026, 0.07519951586184163, -0.927601520014512, -0.6428826877038238, -0.8061729165610259, -1.1449800667374332, -1.0979002116889272, 2.238037956439177, -0.285132208400035, -0.1839870620748618, -0.6478314333893541, -1.156198080237699, -0.8030244397544887, -0.5031224600918399, -0.18612256125195614, -0.5260383919744303, -0.3322248392711345, -0.26838842455039313, -0.7763640975768475, -1.156198080237699, 0.971894697337306, -0.9003896327098934, -1.156198080237699, -0.882810424676946, -0.6928539028084093, -0.7455610440652672, 0.9041060384426995, -0.5463329613738247, -0.5084826229395022, -0.5692256971495658, -1.156198080237699, 0.0655224077467738, -0.4570279904887432, -1.0277405402653619, -1.156198080237699, -0.7876980473343196, -0.13397852269363883, -0.9106452873538019, -0.95501529036425, -0.097683052091683, 0.24716444097061005, -0.513911645434197, -0.5879614719759928, -0.485980010866553, -0.17628967893243253, -0.31125272494970974, 0.3249448330106946, -0.2858004020119772, 0.4110784143554255, -0.8059231434733201, -0.2307558380510425, -0.3456347798687592, 0.044405530287318834, -0.8359192315504862, -1.156198080237699, 0.7457652839445477, -0.19603632633148618, -1.1294409560488046, -0.2566832561196207], [-0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.294891377528925, 2.9682912232810224, -0.2897917766911038, -0.2897917766911038, 1.4503981756287903, 2.02710053481534, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.15815882196889203, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.6634858040293654, 0.6346478449718151, -0.2897917766911038, 0.3872388539990285, -0.2897917766911038, -0.2897917766911038, 0.3877605249979484, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.063814156552348, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.048432547435153885, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 4.251462547190486, -0.2897917766911038, 0.21281933966041455, -0.2897917766911038, -0.2897917766911038, 1.1201876211489479, -0.2897917766911038, 4.161192545932623, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.19699103430398054, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.29905922280642677, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.04204451878200879, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, 1.9664011053368455, 0.47487253220927655, -0.26576756903167514, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.04452591265460969, -0.2897917766911038, -0.2897917766911038, 0.5546253936331744, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, 3.0492000822046466, 2.8136325897941363, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.1780211251296184, -0.23923913496386723, -0.2897917766911038, -0.2897917766911038, 0.9689852308144098, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.9173343457972027, -0.13872165866005906, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.127112633699719, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.40164737750060786, -0.2897917766911038, 2.0274726435405865, 0.23023408329310469, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.5385533008491445, 1.7383565123553613, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.7670322049802282, 0.3039841803874572, 1.544762662988747, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.258509502055141, -0.2897917766911038, -0.2897917766911038, 1.4702981595317173, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.7680820833610518, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, 2.9047592336250396, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.3791140130151947, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.998424190737758, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.7192228495394044, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.5886010758578424, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.5691889624369428, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.125863326172927, -0.2897917766911038, -0.2897917766911038, 0.9606971954899545, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2690111288483434, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.7995289503236376, 5.0, -0.2897917766911038, 1.430002599669298, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.18731906415144384, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.3192794212240337, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.0923624954728288, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.3384770834232765, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.31589640541001984, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.3870528853976065, -0.2897917766911038, -0.2897917766911038, 0.5453304162480958, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.8945489257897532, 0.39628317865189405, -0.2897917766911038, 1.0021053954585313, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.13544380975696574, -0.2897917766911038, -0.2897917766911038, 1.9769563499152147, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.047557059831333334, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.3541433732400945, -0.2897917766911038, 0.935091544466543, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.3731891232963003, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.3918512137071, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.7630738206072551, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 4.016477085168454, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.1029992021891721, 0.33908579174041936, -0.2897917766911038, -0.2897917766911038, 0.2000742472136823, 1.0966070967590327, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.1687169808460318, -0.2897917766911038, -0.08887688628145933, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2783798492233142, -0.2897917766911038, -0.2897917766911038, 0.3641788026354148, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.9372692743811247, -0.2897917766911038, -0.11353549387511014, -0.18362922879520502, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.0598712536716612, -0.2897917766911038, 0.32230205714590043, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.027423517343918742, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.12346433700229595, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.16302546959907818, -0.2897917766911038, -0.04152116695133424, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.702930889094783, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.0783113824940094, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.613758132211992, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.12986572578271902, 0.24694289852317722, 3.1235713281010096, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.49009936316014, 1.3404970892446821, -0.2897917766911038, -0.2897917766911038, -0.04730382685040652, 1.2459346599476577, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.7815252649219846, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.18360304618213932, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.633059867020237, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.3190248981187533, 4.113628978353409, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.6160516238833481, 0.2107875320257814, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.8026205554321928, -0.2897917766911038, 2.76984908658088, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.1716154295174661, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.9821817221679416, -0.2897917766911038, -0.2897917766911038, 1.8229339320397966, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.2907740441859037, 1.910747536521976, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.9181543311494109, -0.2897917766911038, 0.48072296971296036, -0.2897917766911038, 1.194266008816281, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.6673664980951601, 0.4623434434405992, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.518584387444851, 0.7092127016734697, 1.1918637051118472, -0.2897917766911038, 0.12355757058752706, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.3441270908929292, 1.9004645081829312, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 4.309215516941121, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.888097093251166, -0.2897917766911038, 4.221198810024461, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.595804958744815, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.48549619945443656, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.5055508139767286, -0.2897917766911038, -0.2897917766911038, 0.022005823472766636, -0.2897917766911038, 5.0, -0.2897917766911038, 0.7069452159643373, -0.2897917766911038, 1.5621846866088793, 1.7672947388963351, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.02378889146128253, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.04760046330077206, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.224731367598423, 1.4755382760628095, -0.2897917766911038, -0.2897917766911038, 2.305520060653366, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.0586458326170873, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.460313334222613, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.772185784637123, -0.2897917766911038, 1.3232599220145551, 0.392433862253497, -0.2897917766911038, -0.2897917766911038, 1.4113881325363555, -0.2897917766911038, 0.7694145117571325, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.52165127671554, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.0022125522220005655, 0.5409994687817175, -0.2897917766911038, -0.05050225247277355, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.7532176455174264, -0.2897917766911038, -0.25146822374367744, -0.2897917766911038, -0.2897917766911038, 2.4902323253395773, 0.4114539813449687, 0.037750961884045295, 0.2209597939736068, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.3046975270051271, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.897894402550881, 0.4379018531941398, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.9294978417098975, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.034629321698853376, -0.2897917766911038, -0.2897917766911038, 1.470408188709022, -0.1658530084442442, -0.2897917766911038, -0.2897917766911038, 3.283728471597348, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.798591128458386, 0.5395977486678569, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.09848759762747863, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.081555014935275, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.6481870550361402, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.1883478397838556, 0.45550177574792466, 0.7686960967937698, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.9782833349681082, -0.24732804765710134, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.1239262966026606, 0.009462865867251171, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.06097154157836337, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 4.835366196234223, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.07832323038310551, -0.2897917766911038, 0.37413754900215845, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.7978017566553963, -0.19007095793721437, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.2144549805751776, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.027662844731501, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.5796037677638768, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.4322693353834315, 3.725667942219914, -0.2897917766911038, 2.2994487354294177, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.16362720987839713, -0.15443577649193327, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.2104681277051514, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.1152363017798024, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.7473101660868203, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.784981244400184, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.15764537457525327, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.6768149017364413, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.397880886344661, 4.804642068976231, 0.48837621777791224, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.4168415739545117, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.5911367231297477, -0.2897917766911038, 1.617087403047988, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.8686470926841368, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.0402612840749073, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.7088712603059575, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.017710953412511433, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.132478728049632, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.0465552479021738, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2612644345996365, 1.208712360607041, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.664585364979005, 4.281918697189189, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.776904776689199, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.9423868290983046, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.290100580099952, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.20776106824683108, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.6581525284798905, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.5997803911896448, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.08556133486033039, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.08474452487681786, -0.2897917766911038, 3.249608737031786, -0.2897917766911038, -0.2897917766911038, 1.4423313966315499, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.0798585180532456, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.6845028513219595, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.6461986905562742, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.31149597553184116, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.9379118484626355, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.0630528974205298, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.1364155949913649, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.18555677825524022, -0.2897917766911038, -0.2897917766911038, 0.17371765166276618, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.61768342771984, 2.4613046040969384, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 4.285724932649235, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, 1.0655068060992428, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.9009903324006745, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.008708765142661608, 1.3372461601685723, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.05550125303922466, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.008007859947358115, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.4357416257195799, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.1888132854404376, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.4533977147587656, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.14402120154434483, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.10464572979030164, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.5466926890267887, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.5625979014006147, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.9728212312864113, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.7825505579598979, -0.2897917766911038, 1.3117521970537749, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.08992587163586276, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.22596116356286497, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.5296495997511876, -0.2897917766911038, 3.506208205316735, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.1498977106623518, 0.19818651882420169, 0.5935570155950536, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.877344195972036, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.08974702814687611, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.8813398954090815, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.2564270173541638, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.010086018969607296, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.16512837230095467, -0.2897917766911038, -0.2897917766911038, 0.33027198466462526, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.0869817553868282, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.3321368594226405, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.5705701263222929, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, 0.7472040994343282, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.5948408736337294, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.0140203389574167, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.49179394150303096, -0.2897917766911038, -0.2897917766911038, 1.012916637570024, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.2012292707296013, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.8997392739908285, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.9459721768380868, -0.2897917766911038, -0.2897917766911038, -0.030435704300181773, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.5512370599225151, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.07929453369586235, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.17139939034501359, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.0628990961668257, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 4.811149824839797, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.14229828654146856, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.25633265397262467, -0.2897917766911038, 2.5283661896901384, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.2553838993451374, -0.2897917766911038, 0.5304879041280076, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.5868610858788518, -0.2897917766911038, 1.8276148718138794, -0.2897917766911038, 0.90073553284017, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.6644279698074579, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.9287474500928339, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.3873832096993982, -0.2897917766911038, 0.5425829121264307, -0.2897917766911038, -0.2151519891060368, 0.02688180240410114, -0.2897917766911038, 0.21937082152450676, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.10416453738057896, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.07900464736043636, 3.3022362270156163, -0.2897917766911038, -0.2897917766911038, 3.7463928684973933, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.384661534969134, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.0309814131846133, 1.3985963652334212, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.03189994936948385, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.1991715095991458, -0.2897917766911038, -0.2897917766911038, 0.2791144070820903, 0.7579124080524806, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.4485042730727409, -0.2897917766911038, -0.2897917766911038, 0.4291710287600227, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.4627872922952729, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.08866247128342036, -0.2897917766911038, 0.7299248188591227, 0.5517285115413209, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.05969673838561835, -0.2897917766911038, -0.2897917766911038, -0.07551062199477598, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.333187060334555, 0.04345761963573051, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.2030367349537305, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.1564675831890706, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.1643210245181692, -0.2897917766911038, -0.2897917766911038, 1.4226687956103072, 0.863901560931002, -0.2897917766911038, 0.6576470761871728, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.5420403226825811, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.15313187451236032, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.23516788261916596, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.405958235887711, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.15274668024006186, -0.2897917766911038, -0.2897917766911038, 1.3507909914890193, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.01241185976795723, -0.2897917766911038, -0.2897917766911038, 2.966422385998201, 0.1171949537141227, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.989283106758123, 0.9777824966529172, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.9468385874955407, -0.2897917766911038, -0.2897917766911038, 2.7351399494876567, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.482020499503919, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.1802325032102944, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.6071285645295053, -0.2897917766911038, -0.2897917766911038, -0.00919323081413798, 0.7614643047107251, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.3382660559391713, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.374329310382117, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.25288350650423974, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.96403861757453, 0.9733664009789764, -0.2897917766911038, 3.2508564715884636, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.0423828014282213, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.13368652121765365, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.07391522196182604, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.19206630803979566, -0.2897917766911038, -0.2897917766911038, 0.07491716385306957, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 4.855696713065422, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.4655623037112627, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.893058542921151, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 4.0822955437919655, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.5677284495130994, -0.2897917766911038, -0.2897917766911038, 0.7778533073278734, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.9428065611014094, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.705107796034242, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2786576464023776, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.1489960916497672, -0.2897917766911038, -0.2897917766911038, 0.8604542564974128, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.2166728489629732, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.6182118449673759, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.5470712547643621, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.48577717010904137, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.3968637282219982, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.4349606000395777, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.12954017766149162, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.1803604034345772, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.3552490686709698, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.4027155352207026, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.6108594262569466, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.2627618044021538, -0.2897917766911038, 2.304576242534496, 0.32708192181264406, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.14358744236768453, 1.2984447486150061, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.49441178812682535, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.07641838574545567, -0.2897917766911038, -0.2897917766911038, 3.1349141014475816, -0.25022296864474713, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.8563994877951658, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.030062949575258704, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2221465192565602, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.50569686170321, -0.2897917766911038, 0.239711613274697, -0.007189759839488425, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.934284380987231, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.0605844223763916, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.1233730952609421, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.264565151532906, 4.233250045946485, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.2408206991483326, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.02359949566059575, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, 5.0, 0.9796742797189479, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 4.3917038566846465, -0.2897917766911038, 3.751420298813065, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.8978291399475067, -0.2897917766911038, 0.49005669690461956, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.07233627007693191, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 5.0, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.2916208265227812, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.2315304087209116, -0.2897917766911038, -0.2897917766911038, 0.5765472788587124, -0.2897917766911038, 1.5993741799301406, 0.9490195427210139, -0.2897917766911038, 0.9949235496184444, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.9867080377131979, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 3.3966560054194463, -0.2897917766911038, -0.2897917766911038, 1.297027270553647, 1.7577472657442492, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 0.013190518931198955, -0.2897917766911038, 1.419348937032837, 1.092901767454048, 3.0121174849015384, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 1.4708138406675517, 0.9862761225088288, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, 2.338643082001421, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038, -0.2897917766911038], [1.1102914782234736, -0.1160826307503794, 2.7433138478570367, 3.0741282429649472, -0.01818378801535184, -1.0362096522726216, 0.38032352379532486, -0.27853051755035707, 1.3511149595326795, 0.0490270766437778, -0.6477335738107908, -0.004288132208207562, 1.5229586474421604, -0.6481689235512593, 0.6430480677379374, 0.8164289285977926, 0.5261901967827528, 0.948826797806228, 0.0018851397528608827, 1.6396632786596905, 0.16063546826349503, 0.5657152338266355, -1.426180134207178, 0.1582863072990418, 4.326981785322427, -0.43152122307095014, -1.426180134207178, -0.1418415143135233, -0.7173530131915047, -0.7340969476604055, 0.14185243398584438, 0.20310731529449225, 1.4914592431844134, 0.8096761267031367, -0.4448555382625902, -0.7233464988425855, 0.6176765674895958, -1.2177198390774744, -0.8597719676543394, -1.426180134207178, 0.7386693831163906, -1.426180134207178, -0.9161187529294157, -0.5747732693705812, -0.21526554102123785, 0.7980940959726042, -0.5473380891539055, -0.2652050512161659, 0.9353585558594543, -0.30721345689574625, 0.009117886820353393, 0.43282772783960516, -0.18032336938532426, -0.005950312827237777, -0.0174031221474683, 0.000283075181232003, -1.0060540453384685, 0.43669608312343444, -0.0736862096947406, -0.20370640495362047, -0.5081002888318324, -1.0055376513004524, -0.6875294139840922, -0.9892930803304388, 1.0294547776802294, -1.426180134207178, 1.8375976120574657, 0.4642856969712313, -0.5644754466339544, 2.0651553919347347, -0.06778992101750478, 0.7355478433092708, -0.7544963732312759, -0.8112598975545766, -0.025144748747043384, 1.2669061420127736, 1.7864523396921788, 0.26785314109405206, -1.0845400398786604, -0.4237546651666663, -1.0672910533596582, 1.16610613815841, -0.8068030932506796, -1.426180134207178, 0.905345759652398, -1.3124797603211074, -0.45744570668055656, 4.326981785322427, -1.323233667918524, 0.6014387736207146, -0.5928801385730299, -1.426180134207178, -1.426180134207178, -0.9198006852601791, -0.23499624579380224, 1.908640172448157, 1.2484583811116141, 0.08619115424661415, 0.4350518811354028, 0.26436612942867105, 0.9234996823031637, -0.6455500831218256, -0.49151177120043177, 1.9193388624728234, 0.4349604429418058, -1.426180134207178, -1.426180134207178, -0.862525647816262, -1.426180134207178, 0.7939873833699926, 0.2998890951206728, 4.122457440915367, 0.02377075200025895, 0.03345828448932131, -0.5172760623986803, 3.4520769902288047, 4.326981785322427, -1.1331543634422263, -1.0926967902588332, -0.9186992131954097, -0.09061561902484654, 0.8034112760904195, -1.0064837065277217, -1.426180134207178, 1.473341839627852, -0.8911322482089344, -0.7025434670516032, -0.9244536041229172, 0.03314871493681537, -0.46785779204466266, -0.7846308763427153, -0.5696175457866152, 1.7471164996479476, -1.426180134207178, 0.004639381746999997, -1.426180134207178, -1.255043915961843, -1.426180134207178, 2.58362287175424, 2.143249227586266, 0.3295347339728114, 1.5353110906025877, -1.426180134207178, -0.1198008363737629, 1.0294410127908769, -0.6269565267599229, -0.17332392314665726, -1.209677632240889, 0.596458131001903, 0.17768173869509166, 0.26821777020399096, 2.579008824658127, 2.7636263298920634, 0.1429759579651892, 0.021866562153019083, 2.0488982148543142, -0.6093979355739024, -0.5887929496400119, 3.131407599494034, -0.2321695274434503, 0.9848020384342866, -1.3795024989732554, -1.4066609987687895, -1.3181387890081186, -0.9557743808496356, 0.4293356596842561, 1.5992905772558468, -1.426180134207178, 0.6811674005706229, 1.013238614351774, -1.426180134207178, -0.5708066636775022, 1.301738054075758, -1.426180134207178, -1.039505184494972, 0.4081510735877371, 0.3436403745716992, -1.426180134207178, 0.41559577185973284, -1.1067134155655758, 4.326981785322427, -1.3066204033336142, 2.8413884036184553, 3.026830397633334, -0.3725607943144613, -0.9557480449643836, -0.34332894489139837, -0.37292549365342864, 1.568847417569252, 0.053158931238179274, -0.3869414517844105, -0.0001225676806723304, -0.20077251710754784, -1.426180134207178, 0.14164202781993393, -1.3683122364824165, -0.5702712375730773, -0.8873674456259122, 4.326981785322427, 4.326981785322427, 0.596167242370678, -1.426180134207178, -0.4472814595539261, -1.426180134207178, 0.8532720595456972, 0.701784676584302, -0.9833168710200837, -1.0496212193943333, -1.426180134207178, -1.426180134207178, 4.326981785322427, -0.9156506764622081, 0.17317865346217862, -0.8045104666532306, -1.426180134207178, -1.426180134207178, -1.1863412638612567, -1.193930353013457, 0.4004216668389217, 0.8397091488700772, 1.7166179994878163, -1.426180134207178, -0.5756369459487835, 2.0935739892212237, 2.8471089792693003, -0.29669216539413046, -0.37994628951640874, 0.4942864137855908, 0.694642384504021, -0.6808066701131334, -1.426180134207178, -1.426180134207178, -0.06997474605798157, -1.1240917990674486, -1.426180134207178, -0.6548505132121973, -0.9496272692012541, -0.7042876049455418, 1.4432472968329804, 0.27078183199210454, -0.682642527116776, -0.6089706621715779, -0.6735338222710376, -0.8879846885471867, 0.8962700624495047, 0.4891667176926443, -0.14139696457046505, 0.5020798694073385, 0.5921192412349031, 0.24355488084148694, 0.19252127262967028, 2.6468174787979577, -1.426180134207178, -0.042816338438057384, -0.26949773028316837, 0.20516783495658364, 0.32031900008940867, 1.7760078787464701, -0.8447882184121248, 0.44182350440937923, -1.426180134207178, 0.20497287917669332, 0.33235372713015326, -1.2155581369442403, -0.6931956323677767, 0.13898821333489106, -0.676284131439648, 0.8854830243084385, -0.303671807047091, -1.2026097302578218, 0.07968050203821968, -0.46261147301543104, -0.7957490443476771, 0.6839366715766261, -0.360458858094549, -0.25854424934731396, 3.2165726554501854, 1.0209250409358643, 0.4753865184064379, -0.5651023109319729, 0.6503490774199968, 0.37647637767775455, -0.18098562911312455, 0.6826143994499007, 1.396078111079462, 3.489473104537966, 0.013352697168829511, -0.8966383795248031, 0.47242790994274236, -0.31900006478291193, -0.2796265819800217, -1.426180134207178, 2.5020181465680156, -0.6524939079708432, 0.1843015268119783, -0.46007950589281427, -0.18537297690898458, -1.426180134207178, 0.5136259428758738, 0.815266778653409, -1.3742892051441298, -0.5751981549859756, -1.0084940826643003, -0.3386377160942467, -1.426180134207178, -0.08421592867964035, -0.5458248643018544, -1.426180134207178, -1.426180134207178, 0.6831443476901904, -1.0705473977847535, -1.1960696169724567, -0.0762578562178124, 0.7338053206829545, -1.1069302476874818, -0.3058037496299909, 0.6803247927006297, 0.7394713986085849, 0.5157398365987539, 0.6303596489107249, -1.426180134207178, -0.8348290400453214, -0.5716996257601055, -0.3360190863518954, 1.6127206146117488, 0.09941822971350059, -0.4390340434994609, -1.2804266616331934, 0.5854011324797553, -1.1399684928350082, 3.137650117276066, 0.28298019266655533, -0.07886784778979639, -0.7868110662673964, -0.09799430201113879, 2.537010742645561, 0.28437592435586806, 0.5027755581521456, 1.1847558777421878, 1.067030959215491, -0.3773737300159898, -0.3166848946676861, -0.8719278397672476, -0.3654109877282618, 0.04176806392006951, 0.3891041186253471, 0.02439733538217729, -1.1962162200670248, -1.426180134207178, -0.8306781533845087, 0.808310733953634, 0.7530989199893671, -1.426180134207178, -0.18381852761788223, 1.6486919224142649, 0.9746873730009573, -0.11138178057647101, -0.2153665303625528, -0.010389911019437282, -0.20092224539383824, 0.8846885935511909, 0.651328350977198, -1.381225480372709, -0.21064587560294945, -0.9873163790124693, -0.5990279173971722, 0.39221540499447866, -0.7670219309440925, 0.1784341724939882, -0.6178190982420021, 0.751485197399186, -0.5433830712503382, -0.5982623507701607, -1.426180134207178, 1.1989657382176508, 0.7248251349572408, 0.7629847792516207, -0.594403476405019, -0.06535016460777662, -0.41731241603089614, -1.030795766784162, -1.426180134207178, -0.48537410535622616, -0.7779160683518468, 2.25958866786165, 0.47341238044796363, -1.426180134207178, -1.426180134207178, -0.38112662877887904, -1.426180134207178, 0.32280847865048634, -0.14904462473146476, 1.2509560062398688, -0.6065526767603295, 0.040079336728696895, -0.941770326538787, 0.48778123944132007, -1.426180134207178, 0.3871427623498512, -0.31190735439593625, 1.1105223912653726, 0.2051762624398642, 0.8891798803075112, -1.0455379632868473, 0.8343623321027227, -0.9041140136833389, -0.22725223140728903, -0.1717526188889938, -0.37186243686661213, -1.1377959754315634, -0.39359066586374625, -0.6768225071632206, 1.4510887891094215, 0.7676559927759893, -0.24266076092136307, 2.251828360340806, -0.06990634298536298, 1.4011862896119194, -1.426180134207178, -0.9231104388605647, -0.6892187030076801, 0.3079769508250214, 0.6970032034870155, -0.9335874509604446, -1.0481370693595995, -1.1724389538537638, -0.6944836327291558, 0.27946775809326935, -0.10978519386897737, 2.530062563596848, 0.00670214873797772, -0.04736507253873727, 0.24444187345676885, 0.1756965045503069, 0.09413939464462052, -0.07360235623610191, -1.426180134207178, 0.2556634888189969, 0.291603755391444, 0.2171979268815386, -0.4877663167144411, 1.3422048623762517, 2.053009141198572, 0.1775998516492127, 1.3658012537296038, -0.8610739787066723, -0.7644175576942899, -0.2537296983781555, 0.8442217852507082, 0.839645099997145, -0.2527887698698894, 0.06213349864170618, 0.4114958012437339, 2.101350589876422, 1.0484781356894455, 0.41571375662566074, -0.45885780173324225, -0.9405735185694056, 0.9978955382911848, -0.33976924618271664, -0.5889417649489413, -0.1822903439830072, -0.8662623587883492, 0.2782932478400625, 0.47615398121718766, -0.3190646052590345, 0.559527213769829, 2.1670136067730104, -0.9586142320281035, -0.1844897766611818, -0.08318861846774574, -0.1551458417104873, -0.7521306382163685, 0.16766300611310903, 0.37389405634253914, 0.3552167869800446, 0.03268562473055142, -0.07472728479601075, -0.4284965290925286, 1.4592457501766822, 1.1308222320754726, -0.11414346684751658, 0.06938127472104039, -0.8267756667933903, 2.074605690769441, 0.1592699350559408, 0.3826030175646588, 2.168779445436409, 0.7202955031519965, -0.7612906102520641, 0.322694707626193, 0.7059742594391781, 2.2304899726744254, -0.2246339528100763, -1.3977278577127663, 4.015901465980392, 1.0040105201595597, 0.8768631134929769, 2.7099522507103893, -0.24495991881835188, 3.331948272554377, -0.123978480293983, 0.3638584687939836, -1.1787817411295665, 2.3067943727093843, 1.9471554565369766, -0.16515319719004407, -0.8480303063446702, -0.9853405204428276, 0.5503502463095168, -1.426180134207178, 1.3420941814291671, 1.384817307919965, 0.42071069237881464, 0.606831660630003, 0.6196633466729852, 0.5322187969474992, 0.7753341323348508, -1.426180134207178, -1.2598259333340858, -0.2297063145385884, -0.42742567688367866, -1.426180134207178, 1.4238323417673278, -0.7965108186072127, 0.38188429369888477, 0.874282477654406, -1.426180134207178, 1.1852966412526962, 1.0317136241155234, 1.8817129587862123, 0.7556993604136331, -0.7233252896763289, 0.08727633317703529, 0.4333690531823205, 1.8780486890558246, 0.5706343558175047, -1.2717834962310492, -0.1109509957227883, 2.0775311511322445, 0.49041244017957475, -1.426180134207178, 4.326981785322427, -0.37204601554407474, 0.7507480735282461, 3.4009648659644216, -0.660598759099814, 3.4485863266539964, -0.021007135372403066, -0.09642917790788108, -0.6873723116499374, -0.20891599420155962, 0.14904543142386067, 1.132246757665991, -1.426180134207178, -1.426180134207178, -0.7078687235075614, -0.1956781034644545, -0.2092834324725921, 0.42304468387336314, 0.5950902100074102, 1.2031971775728147, -0.363270968807218, -0.5820238546110112, 1.736724570014682, 3.89631660189367, 0.6279554283888384, 0.5333402140560325, 1.3453733151736276, 0.311923962619481, 1.270844304949774, 0.36354889924147765, -1.426180134207178, 0.3686132548608761, -0.5494963676220571, -0.4402813110249839, -0.09026250747538528, -0.3232908476661817, -0.6758032732894644, 0.17142714152036267, 0.3193967525024002, -0.9855066120924817, -0.5926334942290188, -0.22655443579165857, 0.6683499007911714, -0.6429272396378327, 0.1910723073376325, -0.20889998198332083, 0.8153277374491327, -0.30510433874673115, -0.6895322053857169, -0.7828452330936186, 1.2502857404029548, 0.5702464106704838, 1.628535910652153, -0.5678991117166818, -0.3780494737170369, -0.4886431261207557, 0.16541005891610572, -1.426180134207178, -0.2868115030798904, -0.9448549258775263, -0.44817315751403775, -0.28932190989111534, -0.9049880139285601, -1.0030128124241098, 0.07489579840567256, -0.2648725167717132, -1.3549555357883123, -0.2515138321075867, 0.02176529189560055, -0.31175341236801135, -1.163355057411931, -1.0382442925381448, 1.0513946067367266, -0.24245414712293176, -0.7622183357032, -0.9180567229388082, 0.48679803305858793, -0.09758669273647476, 0.19125925700840943, -0.1210320916810471, -0.38414296550304555, -0.17020111921703676, -0.048353475869489515, 0.10150417228349698, -1.2232864024713674, -1.426180134207178, -1.0356440276864418, -0.6250003674324505, -1.426180134207178, 0.8854521235364098, -0.5955963866633817, -0.7071532301770418, -0.6452721868606482, 0.177103753800097, 0.4869278163011086, -0.01895700960634043, -0.6356196986562314, -0.9438606935375023, -1.1310991109571797, 0.4409637606567105, -1.087751788871396, -0.676459704007993, -0.6712011651280053, -0.4878623197948123, -0.1372002183547975, -0.060298028839137895, -0.3682575106643249, -0.44741236646088417, -1.426180134207178, -0.8099973201010944, -0.5175144899464932, 1.279831092204049, -0.11212353956322367, 0.6236189264087652, 0.09255769649091679, -0.10061665389194577, -1.426180134207178, -0.6550418170826661, -0.3195947641864101, 0.4673858871540403, -0.952300291325279, -0.5576135088308113, -0.4570243325165285, 0.6033490031643084, 3.099155059147108, 0.18198354753565688, 0.27202923997567935, -0.18544095860744778, -0.07487125430205079, -0.2073184242876689, 1.368661822471141, 0.3197811861980453, -1.426180134207178, -0.34588296392860013, 0.4081357636597803, 0.5835796724267167, -0.3945229562016587, 0.528621806625304, -1.426180134207178, -1.426180134207178, 0.14278928921052764, 0.70566904408637, -1.12286591628075, -0.9300303156112604, 1.1379889638572616, -1.2290292582811346, -1.0374535839193457, 0.6846273038314655, -0.16717298401628516, 0.6583887560116001, -1.426180134207178, 1.9567130653254552, -0.3762132655682564, -0.07321946757906084, -1.0740004537154222, 0.07489902894093299, -0.07464624049845406, 0.056714345976190385, -0.7389954223172308, -0.1522993187744174, -0.22477525361307463, -1.151816305319499, -0.41532549638944927, -1.426180134207178, 0.30342905947267557, 1.1275815838379875, -0.6704098244479606, 3.458994830337708, -1.426180134207178, 2.5674687908859455, 0.6773164620855731, -0.30102684141948644, 2.5523791011559918, -1.1596259662893098, -0.22926850678216612, -0.9307965494140322, -1.426180134207178, 1.5411555502576626, -0.5162020498836005, -1.2673126812361983, 0.12784553539938517, -0.687012247426775, -1.095296142133181, -1.426180134207178, 0.20447607903730713, -0.8499768442953973, -1.2316080506077296, -0.4833067734784776, -0.37703529633324884, 0.23285352211377885, 3.868517143712193, 1.6900427737108838, 0.9991540424610819, -1.0979917780040096, -0.06643295575127116, 2.9899671811836197, -0.24723562022021844, 0.7207901964205712, -0.9287632435000275, 1.883895115123659, 0.7615563208355711, 0.09321152873542501, 3.182041042708081, 1.2937993648254695, 0.2033798039205637, 0.4214646712163155, -0.918218741304876, 1.2733983942160025, -0.43194505525093413, 0.811532139437631, 0.4269343887815149, 0.4361838325980279, -0.7816554129124587, 0.9390332194858939, 0.20498832956271343, -1.2188172378586575, 0.6706819258729598, -0.7212756555134694, -0.32718118463557105, -1.426180134207178, -0.13110560290435916, 0.6686510428603968, -0.622970818771409, 0.30798692334690625, -0.2144722339284277, 0.2704159387596764, 1.3392928859867086, -0.1602380080247058, 0.40041085156870276, -1.1568587319251111, 0.17893631003945784, -0.9521912607603368, 0.4014819846936681, -1.1510973005376117, 1.341712416436552, 0.2738050511609511, -0.5358814874662016, -0.4241608698607893, 0.2877021115486479, -0.9070799259658776, 0.3652026523772388, 0.3567911813149052, 0.21097844422048462, 0.1198575453719026, -0.5805254480837275, 0.2848130298220198, 0.321401931690955, -0.5344156672076027, 0.4370774267418827, -0.0825911099031482, -0.0855498588248956, 0.4293910001577924, -0.9056269576192805, 0.1468224017925005, 0.627102847996961, -0.08201467004675783, 0.4042629137182014, -0.45204179371397846, 0.9291571922874506, 0.22969855328964042, -0.7734183907540383, -0.798261698487777, 1.524263221853991, 0.213057504345793, -1.0070425540127645, -0.7764116221282114, -0.2649902206215372, 0.1610488363184097, -1.2985347861795058, 0.8245759171431685, 0.15476488341026806, -1.426180134207178, 0.9157906419722622, -0.8354624356428831, 1.5263712163385688, 1.1658412342672968, -0.25730681388562415, -1.1585354323955483, -0.11286108480833032, -0.15620672139745237, -0.6012419577130294, -0.27601631837165636, 0.08329195954004939, 0.29562408629043874, 2.5262249686269955, 0.01644642628112919, -0.8429510270569626, 0.9533206128075382, 0.9557584028044837, 0.3691580916549672, 2.053717892542461, -0.6134066084543559, 0.2366662560079564, 0.46392570297709373, 2.214273528429855, -0.10760247569931208, 0.6720138896054442, 2.2467555772381154, 0.82906467565451, 3.022413272729883, 0.5632239293108499, 2.4108707011471147, -0.9730000513315618, -0.26665535085971287, -0.7755227333291944, 1.7923043840822004, -0.07359505241725875, -0.03773948205178416, 1.6053446003284866, -0.23902542555023268, -1.1596747227915398, -0.7165710832011238, -0.6165759742290925, -1.426180134207178, 1.1525502503855183, -0.27057293669171617, 2.474133008973192, -0.6314169829732427, 2.3434766791846875, 2.709346033746408, 0.09216609943446855, -0.2763115612025854, -0.3918861371412251, -0.8764518883648214, -1.0828761035339416, -0.6279760415497897, 0.5907162057267475, -1.1614517103130169, -0.2728210380858344, -1.0258821577719452, -0.910124564988062, -0.22876004862423893, -1.1613083728682192, 1.2626325652411954, 0.9093809791051827, -0.4094360901568839, 0.02003751736503376, 1.1887864620791708, -0.631375898992249, -0.358159138365338, -0.591123851057361, -0.5802849136650953, -0.5285812503034434, -0.22586998369122524, -0.9721095121504021, -0.032332830153143165, 1.9922031638326685, -0.39425580498166496, 0.2244532876958193, 0.050198215903660665, -1.279112878440153, -1.3016671763713499, -0.6604366002756896, -1.2968316181443902, 1.6108817377599187, 0.09229110710313596, 0.053432403070636354, -1.394124827694217, 1.0832218400941047, 0.3008539014982395, -0.2103083548975601, -0.4719289687594462, -0.7486366036482479, -0.7270492540799546, 0.0818841484580288, 0.4564786169181714, -0.5160384864789294, -0.16894135092465046, -0.8295496431442145, -0.48117525226974134, -0.4509761384531523, -1.426180134207178, 3.68411931487577, 0.18281000272937056, -0.11098358199147314, -0.31336242961335287, -0.7205157774376721, -1.426180134207178, -0.31909346938927047, -1.1665099911215502, -0.3678204051981731, -0.856291311715926, 0.741982788626192, 0.2240378127700934, -0.7382775411997824, -1.054414174937584, 0.023940003956152183, -0.5897166018075615, -0.7544981289569603, -0.9566834253794988, -0.9645929695834417, -0.8328999188933739, 0.773169814170351, -0.5048738970868974, -0.5071859771249199, -0.1405452269269097, -0.6571234054529647, -0.7363831834163677, -0.09035914261700238, -0.4529889023766596, 0.21127438934167808, -1.426180134207178, -0.54097119576447, -1.426180134207178, -0.9433664567576117, -0.22462341845597272, -0.3055325251264105, 0.6389486589541691, 0.5459693595841776, -1.426180134207178, -0.6993113867554528, -0.30150446903441186, 0.5991431271750898, -1.1243967686186631, -0.4832628803363904, 1.5087201335235432, 0.12168939932099296, -1.0283608912918392, -0.5731886918267536, -0.6668051791617824, 0.6797820627773616, -0.559731897211436, 0.17152925452611528, -0.9468641783496674, -0.6122191058310966, -0.4537802430567043, -1.426180134207178, -1.426180134207178, -0.22407816028772617, -0.9004770630445852, -0.5723921541986852, -0.8981370318536828, -0.38097577682815714, 0.5253259583723342, -1.215253290293822, -0.2661612194233684, -0.746959323788334, 0.639964451605586, 0.2477562621729559, -0.4424835528642486, 0.3832487032420133, -0.956460097072564, 0.9555620424440523, 0.18956097866931856, 0.12340565629108208, -0.1123904098671081, 0.3862856873002124, -0.7460433968137922, -1.3305732421152203, -0.9246618683034878, 0.006049299699843599, -0.8567066812981171, -0.04541986893953201, -0.1785183429246799, -1.0337140286716515, -0.17349233235420516, -0.926943925432323, -0.4267431209669804, 0.7250450922708689, -0.11568176346232831, 0.2420342819415704, 1.5816130883265422, -0.4450879963430783, -0.4738693967847961, -0.5548762622612852, -1.2204022192193933, -1.1990468010138828, -0.7378360113049081, -0.2481734586512872, -1.3784114295831604, 0.251308165459603, -0.5326854346610765, -1.426180134207178, 0.017305467743527703, -0.0583906084566376, -0.8803942650434677, -0.3837890814342904, 0.2694799262833154, 0.06425048244178308, -1.0393474149850566, -0.019744136544756333, 0.23428394694259938, -0.29701444640058455, -1.0495597689954133, 0.6810423929019667, 0.8327019774384001, 1.5510704843372367, 1.648587702537701, -0.21789730359169948, 1.9895156394145033, -1.2617332308157887, -0.4821196922293829, 1.0226265498102038, 1.8451160508081634, -1.426180134207178, -0.005882471586826384, 1.7135714642818878, -1.0821705476107897, 0.4661380577962986, -1.426180134207178, -0.48513890834367157, -1.426180134207178, -1.010583501571147, -0.8376861324500005, -1.1323705021535935, 0.4693007518134355, -0.40139290011391654, -0.34998616507985003, 0.1867858084250241, -0.34178812003160236, -0.6192977001835773, -0.30500482421499375, 0.038836002028704804, 0.6141783191798292, -1.0243097649643602, -0.9815728384696845, -0.03011513792786643, -1.0875105521624895, -0.2714602804521332, -1.0473823882318256, -1.426180134207178, 0.06960474348603281, -0.8453673972005816, -0.2630011238802415, 1.2876576959267116, -0.6984612643795264, -1.024770362040157, 0.3822038357732756, -0.8777831146925259, -0.053698607140188176, -0.6459953351551473, -1.426180134207178, -0.04198482675437537, -0.6219823452116275, -0.6799559859049884, 0.043581658322046225, 0.5662628797818201, -0.8286190383029582, 0.25402420286287025, -0.3338334887921082, -0.6478692562916077, 1.8350842556270874, 0.6570511739569176, -1.352486515820761, -1.012835325103713, 0.19600140185037504, -1.426180134207178, 0.23669533082527722, -1.0068392058641074, -0.1365507403099756, -0.8026873211035358, -0.308983228384664, -0.20716476317585908, -0.6394686004994905, 1.3265193495783567, -0.44486143750088664, -0.021556185908128734, -0.7816191045053252, -0.45588065280632944, -1.426180134207178, 2.0375702727446994, -1.1063361803452294, -0.9183596558482302, -0.14199812504447842, 1.2419017991193377, -0.03821872493433873, 0.776013387487264, -0.6912508501427327, -1.0497357278234083, 0.4005855813887318, -1.426180134207178, -0.35402763491607037, 1.3754681388846257, 0.1636509622393433, -0.9281327624071007, 0.09764157577990655, -0.2999200319486394, -1.426180134207178, -1.426180134207178, -0.025176913641561313, -1.0956166674139518, -0.5918722115726748, 2.9811506290916117, 4.326981785322427, 0.6737734076563735, -0.35764927562686516, -0.8641752925539188, -0.35741246334668036, 0.30682140240921074, -0.41544102313942116, 3.409700795133051, 0.803372650125381, -0.20409744017783849, 0.589897054351877, 0.48240422419221857, 0.37019944767234125, 0.07686867224165764, -1.0516031176603267, 0.7385627754528886, -1.0586894723203273, -1.099208987505832, -0.9062920616226856, -0.12724314685882052, 0.12260293850860576, -0.6486577175815319, 0.5836733579491885, -0.8075522262852943, -1.426180134207178, -0.8674752843195042, -1.3158636231025913, -0.5946955589297168, 0.30810013253898116, 0.4899101621760533, -1.3663067983243236, 1.2072595054301603, -0.256559366347664, 0.01171284938048415, -0.6167084261746525, -0.30106729333923316, -0.2469934705339455, 0.769020964151325, 0.40559810798594587, 0.9142124552699226, 0.8103904963692243, -0.10335853557727338, 0.23109259948229674, 0.4160710819167565, -1.2301424234789562, 0.4126065435401239, 1.1031233418611435, 0.26134192705343884, 4.326981785322427, 1.1288215475446675, 0.4488072193459343, -1.1319300959231566, 1.7994157753904412, -0.6617191930019639, -1.426180134207178, 0.4901914996595605, 0.8891661154181585, -0.07767521844753945, 1.8417467429925953, -0.708956852057137, -0.08545856108936195, 1.1898241661871172, 0.2538161844838979, 1.1721076299186068, -0.44960997318434615, 1.6577649509141283, 0.27968378258136706, -1.158783656892675, -0.46911650690164086, -1.2653368577810702, -0.055401941969235584, 0.9303189208576788, -1.1977741456949778, -1.144854168251602, 0.062346854426761925, 0.39534087762711734, 0.37214746043263974, 1.3664684294893206, 0.046453463707946285, 0.7092762878465537, -0.2375914892700481, 0.5087825277764779, 1.1310539878656938, -1.184283412902198, -1.426180134207178, -0.04907781805745085, -0.5235916183691326, 0.3792580089925584, -0.5645768573494294, 0.5197494926855812, -0.34503649346209564, -0.7659551520188277, -1.3741324100619692, -0.1262885939192423, 1.0222242779416117, 1.0388421513064405, 1.953122957447936, -0.7994143675134753, 0.6934437154654214, 0.42002300974312085, 1.4753107806383061, 1.0928876015846893, 1.0319678531944927, -0.7469306703451801, 1.119180225755602, -0.02280485801419276, 0.09733678180126536, -0.45191559215185245, 2.0144747548143163, 0.6036928444821553, -0.9411090851318857, -0.36793382507732414, -1.426180134207178, 2.3140748755154665, 0.8274537622254224, -0.8920798835893206, 0.41482339301706656, -0.010012781142635058, -0.2764364284131929, -0.5047134237594305, 0.1824967812674373, -0.6299329733965628, 0.6159479502106953, -0.7478345881560479, -0.18281158382391277, 1.303412314087496, -1.426180134207178, -0.7856900003039996, 0.03694543661276563, -0.2516666504710742, 0.27072255869303724, 0.25604300648273753, 1.1326032402087645, 0.017751422067115417, 0.7535129903345519, 0.6117698849162965, 1.286320254330081, -0.6757149954021008, -0.2525827881326968, 0.2513628036428691, 1.9891611232844895, -0.10136192433005095, -1.222252455616383, -1.426180134207178, 0.2931403665095996, 0.46059389746212687, 0.5571020649977986, -1.426180134207178, -0.9564430665334352, -1.426180134207178, -0.8691626420448401, 0.8936180739191695, 1.0174175223944948, -0.6028093993741868, 0.8889745306315694, 0.6602555840163019, 1.6094805282064708, -0.9494746615248488, 0.027005079625286442, 0.6095748064378317, -0.5951067498847811, 0.32165658214407944, -0.7026037937860856, 0.9209583747199022, 4.326981785322427, -0.6638137737423198, 0.5359905170897231, -0.6108733069802192, 0.32167189207204805, -0.026709591934185997, -1.0923703306252526, -0.9122435854299312, -0.3628004343240523, -1.426180134207178, -0.8158083507391505, -0.4254334900651812, -0.5422620052869415, 0.3714691884866124, 0.98810842104136, 0.1376400969261049, -0.8074274995327421, -0.2738154108839091, 0.1450229936540432, -0.9311514518036843, 0.2519847519089745, -0.9246378148616253, -0.4570005248762605, 0.8111224232921327, -0.14452061124840784, -0.5358539576874851, 0.1078131267253767, 0.30982720477927744, -0.03856846549048776, 0.6365308140009703, -0.19998468787887294, -0.13192587794366709, 1.2194574447304443, 0.20690937437651444, -1.426180134207178, 0.04745254185085391, -1.426180134207178, -0.02217925783867154, -0.387248633549988, -0.4286933810561574, 0.07204323577326023, 0.25239601309306586, 0.7280601648725387, -0.22665697017157782, 1.5839092966043742, 0.20405175525413377, -0.01573883465760356, -1.1663893552098408, 0.2962828345668632, 0.8311796930418159, 0.5270623008442333, 0.9703826145412469, -1.2693673016599991, 0.18741786967106616, 1.0761188762691327, -0.5933192104519471, 0.16545219633250854, 0.15639349455422782, -0.4964443771645441, 0.34062993708583106, -1.3298022502958469, -0.2571228840630242, -0.666787270759811, 0.8028554835680694, -1.0459439924084015, -1.426180134207178, -0.36012021372472564, -0.9972186718671284, -0.5274611675464299, -1.2536535216786056, 0.4887665526948752, 0.2249774771558702, 1.4103194341591727, -0.222920645459144, 0.4095861335323709, -0.008659046411661863, 0.11898080619462068, -0.33837857098336993, -0.42664943544451206, -0.8785157087912026, 1.3345496174803053, -1.303079982492937, 0.04146664093472902, 0.2252859230439387, 0.1335364744006904, -0.4537059407457799, 1.1746201436006514, -0.014432715207179921, -0.2848013376303956, -0.41510567953388205, -0.5316649366648276, -0.3689994101091246, -0.3654022090998436, -0.9796228592966182, 0.6443870543731728, -0.4610855367094308, -0.8718372794364945, 0.49897307769595656, -0.07792804294595629, -0.24051877558754806, -0.8490764028213835, -0.015233607034936807, 0.5423893646865953, -0.40480933160682897, 0.08347146493391958, -1.0509106945652873, 0.5071343929629153, 0.3521967983464585, 1.0080144174661485, -0.4291205140004277, 0.13776763283975071, -0.28795497210300836, 0.1390104057075241, -0.3115091558109307, -0.481655267671597, -0.11484926857226069, 0.36212170494791757, 1.715072679970265, -1.2987924915953233, -0.01152116019180367, 1.5749890864680214, -0.6794885414990266, -0.6287509486374364, 1.1403613004007453, -0.18392625894582162, -0.7664897353749246, 1.1379634004913164, -0.8750334726996748, -0.8481006407155488, 1.9104616325011956, -0.4672254498825112, -0.1296900666293285, 0.3248069158524167, -0.2713824666898372, 0.2618062813822038, 0.593732121076751, 0.072619394713547, 1.6016710603664843, -0.010942613464590282, -0.9066058449168318, 0.058209241052110096, -1.426180134207178, 0.2730051425395683, -0.4160683088116032, -0.9340634633077409, -1.2923933279678246, -1.426180134207178, -0.882406256447674, 0.5904372560301667, -0.7949153555641474, -0.454754600581991, 0.032451902527570534, 0.03014600264395726, 2.3527351123167, -0.7295239143162637, 0.11820772506168388, 0.5213127908341311, 2.3756314607255584, -0.19005584845188295, 0.6764435152757591, -0.09809529135245373, 0.4401309848505393, -0.5213171108607362, -0.05785560372637954, -1.3391869464403963, -1.2666637474663371, -0.6919368472817703, 1.0485438700590222, -1.426180134207178, -0.2772299461930841, -0.669579436428716, 0.8448084785450873, -0.31876283112856324, -0.7299147388533995, 0.5239175854580949, 0.1878643858268841, -0.7519737465692947, 1.8489702198284734, 0.776459482268915, -0.2227926881713313, -0.1880876097316993, 0.8022159780451323, 0.1992190149668932, -0.8727776109980375, 0.08955807427524429, -0.7434287701259976, 0.9910858508843879, 1.6083880454572066, 0.5081250436225424, 0.8945306299003969, 2.1851335385745503, -1.2667071314479759, -0.8934541954252978, -1.148867493805117, -1.423481514151352, -0.31086557700440504, 0.1613244150216898, 2.273102418218139, -0.8474036878482464, -1.2120512504641165, -0.8315785597440091, 0.6824649520797254, -1.426180134207178, 0.9207947410862075, 0.8469601554846719, 0.11569155947021198, -0.36014451296818406, 1.3865966305566122, 0.8791614286416322, 0.6758086448686235, 0.6268952509921438, 0.1880489477107344, 0.9854324141836726, 0.8973374032069903, 0.7100188895816287, -1.3814551687959322, 3.172013461268651, -0.13494867573834674, 1.034439353124572, 1.1862422048767636, 0.9107552207121329, 1.0722798767187278, -0.030861391572357223, 1.1491812234860652, -1.0901561849658534, 0.4811931948447962, -1.426180134207178, 1.8276635756824442, 0.10756030222695988, 1.181173073683512, -0.34183201317368966, -1.426180134207178, 0.4866516757656213, -0.4695469406101964, 0.7900693059348023, 2.419659161628187, 0.712790267458444, 0.046266794953284736, 1.0718472659103258, -0.05225385558978492, -0.36113235446671993, -0.498304533411646, 0.6173335689200712, 0.3724702330422795, 1.507651528643568, 1.1446239214440415, 1.114891479514119, -1.426180134207178, 0.21783841561086123, -0.44459302215839996, 2.4101262734573203, 1.0919333295612148, -1.1419987437863224, -0.8359885915156995, -1.426180134207178, 0.46531890642142804, 0.8622622177932957, -0.1856793159262301, -0.9660059073844554, -0.43061878006965626, -0.21443136063452561, -1.218528280525676, 1.1806446704818265, -1.2042512986573346, -1.353770934501746, -0.7647946173420674, -0.8611355695636476, -0.42827235803726565, 1.3612293440498937, 1.430077387794327, 2.3226652901394513, -0.005886825786524218, 0.14212674856662375, 1.3908772302309071, 2.0510432902653264, -0.160372707299143, -1.426180134207178, 1.2838243146984938, -0.4273055150179032, -1.2811535847379127, 1.646006083492756, 2.5965023135358116, -1.426180134207178, -0.014106571604216456, -0.9130817337566972, 0.5886808280564343, 0.1853479393193086, -0.3472853673755124, -1.408000249860197, 0.02862147091849803, -1.2501776237567956, -0.05328158717584645, 1.189778657777402, -0.7925421060433143, -0.5659317157448354, -0.4111306463575236, 0.9256281836637186, -0.8389784518965603, 0.20869150617424373, -0.5543240514193273, 0.06658447393633156, 0.1518682169486817, -0.3675953211655548, 0.49501272238632366, 0.4251074508643408, 0.5177214188341112, -0.29583396668005896, 1.0652406808505848, -0.5141193378488645, -0.5217304789156485, -0.15510623253906292, 0.7613888948343973, -1.1248609122603397, -0.726854087612982, 0.5941904357091616, 0.04585932613667249, 0.24417022757901968, -1.0947599083949415, 1.2250108752962188, 1.0510715532109833, -0.6349820190880021, 0.6955302198676365, 1.984256328015203, -0.33595897030449406, 0.30681971691254256, 1.3715471118302902, 0.49823426832837275, -0.4924620401693425, -0.6396158005407909, -1.426180134207178, -0.487710484637707, -1.3916792817790535, -1.39466925189277, 0.5909891157269859, 1.2132553788681701, -0.4018691933773237, 0.7836926507105629, 2.3926766074927057, -0.17428479669869298, 0.05728137514292609, 0.1083378780176463, 1.4343223111227512, 0.9068940287890834, -0.25169495276909276, -0.290476545329579, -0.5136607423003465, -0.5010063845513939, -0.6156823098562166, 1.5785881836610396, 1.4964654491691702, -0.790078471764297, 0.5938918218849265, 0.22655145011657538, -0.25308309972345866, -0.3623827822984741, 0.022065029384273415, -0.49066129767936767, 0.7590950743434803, -1.426180134207178, -0.059999695931006035, 0.06497398188142212, 0.21836288598701545, 1.4302605450976245, 1.0023283944967598, -0.053897214829494305, -0.8081244524000444, 0.9885553585713448, -0.14679785768886722, 0.08895845883983526, -0.9130235490075479, -0.7292460882841145, 0.402267145219301, -0.5389369417585967, 0.7362273793777876, 0.4298929972452105, -0.054382076034235914, -1.1433089540775971, 0.05043207856469335, 1.4894388945259536, -0.48588832229439455, -0.29423014638274086, -0.20831314823089017, 0.7584080939980574, -0.3085757595680484, 1.7594107931737335, 1.62658382460826, 0.4247943698604591, -0.6366132989350082, 0.3422020840918168, 0.0438003515131739, -0.8925492241790197, -0.4888015628064303, -0.621921175728816, -0.5126153832284207, 0.28409711511733904, -0.27809903040639233, -0.3103440562473921, -0.864752680502178, 0.12761672922832082, -0.728466826996772, 1.2007776471229716, 0.0998741565589847, -1.426180134207178, -0.34656088472949337, -0.8803592558733394, -0.4295429415998649, 0.8257116609732842, 0.4507680137892115, 0.07910083164656888, 0.36085084046920896, 0.2631289748830847, 0.28762935427633146, -0.9815316491451505, -0.45098323158491305, -0.501671945043476, 0.6869893869369491, 1.11052098668482, 1.5530815627640822, -0.3802902010632826, -0.5672940886461645, 0.21923611371293336, 0.023768926045551038, 0.051235217721336566, -0.7626988427082472, -0.6164175375434179, 0.23170794621984125, 0.10424198068524188, -0.543653242318508, 1.3051393863277923, -0.36627719255144825, -0.7106842052135427, -0.8356552143229257, 0.3824430358403917, -0.7544916678864452, 0.09941289230742867, 1.0200999903227033, 0.03777259409674981, -0.12015872349706587, -0.38656418144955085, -0.21046370150603752, -0.4105856691053807, 1.1830529642872958, 0.2188429716179041, -0.9698768260277859, -1.426180134207178, -0.19296417293199877, -0.07752520924515698, -0.2921484877834155, -0.43212835301228714, -0.7442415306593814, -0.8235836170428231, -1.2448072275935145, -0.2665563981602008, -0.9383248553430708, -0.17742010139517678, -1.426180134207178, -0.43707690096560425, 0.7283076519648833, -0.8760719493269221, -0.7298206319567666, 0.41580196428399724, -0.752414363486814, 1.3584724333527243, 1.338361930000316, 0.15537601640615475, -0.5093786678164666, 0.017481180769930275, -0.1287765274417157, -0.4675687293681394, -0.3616787362994107, -0.9808320626893232, 0.7994061146613303, 0.748436274406342, -1.426180134207178, -0.830817066400584, -0.1581623188927094, -1.0456572121752679, 0.13956605777182243, 0.008146478914214068, 0.5240819213820719, -0.10531736360777935, -0.9173517990769022, -0.5837842154102653, -0.43247844471356667, -1.027604419323869, -0.8141348632467122, -0.25470848033216953, 1.339025172934502, -0.7046008264074692, 0.6574773236948104, 0.23226949752243023, 0.09050799209902106, 0.06923547926028092, -0.3834413775199398, 0.19329421330455554, 0.6457707066697774, 0.1733304886192805, -0.14735463341760294, -0.7834499752480265, -0.937914612479875, -0.3631864832873304, 0.5568160923984782, -1.1637815582949544, 1.5370839521687027, 0.0214964551789449, -0.3153641675795685, -1.0991044515986395, -0.07426012130615256, -1.038737581226167, 0.3455034102089219, -0.5665976976110808, -0.5349329742229753, 0.24448597728593136, 1.4014101797510672, 1.2129517085539547, -1.1634897040145944, -0.20927247674432162, 0.6706774312152103, -0.6192085093188573, -1.0287081036029984, -0.08569326649872845, 1.216234494207854, -0.42743958223109235, -0.6862045433833597, -1.0173077202516796, -0.28822156149078343, 0.9556347997163688, 0.1336971584152398, -1.143407818990832, -0.45019420846277014, 1.7678677726457708, -0.8287204490184343, -1.1758865494775574, -0.3490840029946665, -1.0400345006740181, -1.426180134207178, 1.5830943589711497, -0.1540690902633352, 0.12383278923534896, -0.6431553435186266, 0.45500436917629195, -0.6633681705638603, -1.426180134207178, -0.101035780727099, -0.5791975576348205, -0.05315938866828407, -0.40618251977836867, -0.4913671696331424, -0.897107509427421, -1.4012898630060646, 0.6654643305159073, -0.45616781929911415, -1.0308513530593002, -0.15042954115057028, 0.4180737328603211, -0.8192050478753801, -0.3872333938510546, -0.35577830410955225, -0.922194652344077, -1.1699264928434894, 0.1364499958288379, 0.25080644928830026, 1.4840936227972032, 0.2618464523858351, -0.17821200390743439, 0.12857591728370046, 3.446888469689073, -1.3665960716879286, 0.3147916947217981, 0.4620748871906308, 0.34670278153780326, -1.1154974516179326, -0.10443514656636217, 1.3126215869003894, -1.1576941588770673, 0.3444245518909583, -1.426180134207178, 1.8400972035984802, -0.2499604362519015, 0.1372681639973228, -1.0488600069670173, 0.9230951631056968, -0.5856594708982453, -0.2402861770490046, 2.149193131544051, 0.6000952923277414, -0.8363527992514751, 0.03317062639334483, -0.9814990979909803, -0.6242937931884032, -0.15268866850197932, -1.426180134207178, -0.42491695556911113, -0.22240319798570607, -0.9100866413132995, -0.5271380437916469, 0.4177189358142155, -0.5833197206234522, -0.13372346012740496, -1.0627330490273674, 0.4253636463560699, -0.16305096148570525, -0.7510711631099479, -0.5222224332521508, -0.8676888156771254, -0.20875460789673977, -0.03459420483342702, 1.3060383178777186, -0.5746022616890131, -0.4238074071661975, -1.2884974341266475, -0.9835145657320394, 0.5383389757639061, -0.2611368943495499, 0.4910109319505461, -0.3795739352134621, -1.1949917769753864, -1.426180134207178, 1.035342779332248, -1.426180134207178, -0.13356488298367863, -1.2964696752947475, 1.216203874351929, 0.722719528259601, -0.8895220370701286, -0.1854696120506017, 0.8172577715784332, 1.8356261428020333, -0.40588425709926507, 0.40060538597443796, -1.2622570340161898, -0.6148133661009636, 0.28624752793442304, 0.25537035285888515, -1.426180134207178, 0.5833109761681244, 0.6630433954855115, -0.008472096740885207, -1.426180134207178, -0.7704951074910928, -0.5138547148738549, -0.7576630000739474, -0.3973533966904626, -1.426180134207178, 1.6059176691915649, 0.15394418699679321, 0.14257354563854527, 1.1273661211821202, 0.794065758964496, 0.4994389770633258, -0.4858489940390852, 0.34298345224998233, -0.5681504614055249, -0.6586963249782538, -0.17541646724521479, 0.021671606373128774, -0.6368038302861772, -1.0342966837969612, -0.973903301966669, -0.21853245491495019, 2.3095189780539838, -0.8636243107199377, -1.0590148434039839, 4.326981785322427, -1.426180134207178, -1.1692231666919557, 0.1062492667446197, -0.12486420878677572, -0.4954714242198025, -0.8542819539002443, 0.4346682901880797, 0.8863271772170358, -0.033321654858062315, -1.1151606332028183, -0.0271379890009536, 0.2702789921563644, -0.613753820765515, -0.8004814975838768, 0.9839382213980349, -0.3035308573892235, -0.45900191169733984, 0.8517087613971586, 0.3231860299014555, 0.303009651721407, -0.10810053996118747, 1.243498245368791, -0.09624981297206268, -0.09605331215357957, -0.8115965755116356, -0.3648981753706391, -0.32273077117316057, -0.24281231516234986, 1.0326726717128627, -0.7917433913153994, -1.0540313916240789, 1.4210375073953785, -0.5805111213621506, -1.0790949375875485, 0.22014347274614043, -0.23626486294363602, 0.3629983036671477, 0.4635628998218627, -0.6165150154333631, 0.11757496152537131, -0.7274009610488633, -0.14182142881170173, -1.2245561959574087, -1.110231187544937, 0.5459398633926899, 0.08455130645826879, -1.426180134207178, -1.3085513241043873, -0.17639222935105195, -0.9009138875946276, 2.219933145284976, -1.0960843225069958, -0.5686268248979588, -0.08219291131815033, -0.759666493765846, -0.4191198302784671, -1.4253774364509506, 1.5245781288125806, 0.18769386974851343, -1.006795488294589, 0.7558472627452043, 0.8037764670325771, -1.1788734953537827, 2.4377886445774335, 0.5968273952276432, 0.8012352999073786, -1.3682081482852733, -0.82744656469155, 0.1995148196300469, 0.08776568903952653, 0.49773550177621506, -0.7616647202806941, -0.1417465646685508, 0.66836535117718, 1.3410924345832178, -1.2214208912609308, -1.2956667292679345, -0.24348075504455588, 0.5463348314424388, -0.5026379453145104, -0.3565469608137678, -0.20870600940981612, -1.426180134207178, 0.07737881589624092, -1.426180134207178, 0.6590104233616016, -0.013929594455324677, 0.5919700747808432, 0.5969066135704925, -0.6667850936599644, 1.6625899660083587, -0.3878506367723293, -0.5605997875312786, -0.1940303900250473, -1.1209541768130675, -0.09360821833777949, -1.426180134207178, 0.10177848686428788, -0.348031621020007, -1.2076382515160218, 0.9132215236941916, -0.4125900055456064, -0.7446182391620211, -0.7317910477767886, 0.5366794638479059, -0.1417490929135407, -1.4014990138281056, 0.5687335369635652, 1.9808389835449414, 0.03387558536976663, -0.9664957548501382, 0.021787484268233608, -0.8008732350983675, -0.8805485933310427, 0.2515837441628713, -0.6413732819499243, 0.048047943544628414, -0.9086009111254499, -0.17666261110630038, 0.48314289310175085, -1.2321362606795951, -1.426180134207178, -1.0200008278775228, -1.2607354167953704, -1.0760992130829048, 0.23468312873398287, 0.14212253482498924, 2.3139731838838693, 0.2268458501991763, -0.1687933081350277, -1.426180134207178, -1.086428112164129, 0.7720061191873628, 0.7676974279021104, -0.3326008991332999, 1.1407500882960884, -0.1559048770379565, -0.07487897949506084, 0.560814652298995, 0.7385308914744743, -1.1393841873275559, 0.26744777914826284, 0.20520449450885092, 0.9561567418475564, 0.4748520755083986, -0.29817168031305935, 0.6735194594935192, 1.9095354520886678, -1.243040563739056, -1.0688486629569882, -0.1134705323075609, 0.10686784401741288, -0.19410455187791623, -0.2991090271409401, 0.1839354931214866, 0.44276710162069877, -1.426180134207178, 0.06748635510540338, -0.3892236844858148, -0.4112678738769415, -0.4070849627796629, 0.2976317937239717, -0.2171652362107396, -1.426180134207178, 0.12396187018759909, -1.426180134207178, -0.8692243733598705, 1.5068649635373825, -0.5347581039449029, -0.035188342404700805, -1.426180134207178, -0.013270846178899919, 0.029665636096953777, 1.2015793816990623, -0.7564679127157368, 0.7306646785803987, -1.426180134207178, -1.1602392588277968, -0.22257287131575468, -1.0470219377490138, 2.469752403163945, -1.3542366758537947, -1.397892397739848, -0.5222577584529022, -0.11642029191380904, -0.06048441667769584, 0.026779784905586114, -0.795494464123577, -1.3941328469712764, -1.426180134207178, -0.8753115094189062, 0.4946690215265283, 1.611344968424246, 0.8499861838146119, -0.9354293476604375, 0.13731943118727669, -1.36491590804858, 0.08403638722982076, -0.5328088972911373, 2.081708092762194, 0.21356554112955325, 1.8234585424415592, 0.3576416548359714, -0.5407773636490171, -1.426180134207178, 0.3820095822836558, 0.5377560748369946, -0.5563960184128796, 0.6161569517960531, -0.5152543793887007, -0.4712987334681157, -0.2820975903069092, -1.426180134207178, 3.1009484275892114, -0.23179000977970995, -0.11611395289656352, -0.46319886860008613, -0.42360233840637057, -0.43768452251013373, -0.4379301134187346, -0.4980035318004748, -0.356941156344216, 1.7471993699002006, -0.8922702393679195, 0.9364167668433776, 0.12668675644831381, -0.4583786993087416, 1.105406066165738, 0.0762290262606573, 0.32274808168696995, 0.29275579235589094, 0.4907120372101956, -0.5803091426795265, 0.30024347079262353, -0.4121427168704907, -0.2870319519967044, 0.5414071415102369, -1.426180134207178, -1.0588452403029625, -0.883239067368361, -0.7734942381035634, -1.426180134207178, 0.6774204010460334, -0.7249180840163549, 0.8547180752185896, 0.41451635170955053, 0.8954624286351118, -0.08848613445790635, 0.42572083118911414, 0.5261980624338147, -0.8489366470569804, 1.0768074016531488, 3.2802363923965325, 0.4583179151441567, 0.20405554762161315, 0.7770901389344049, -0.6667515944139233, 0.33167208419081345, -0.2008247675038873, -1.010138706026501, 1.2281206166267573, -0.5971447260291031, -0.033723786268602625, -1.210390193509518, 0.9688094843288755, -0.9780961504713169, 0.41234655568091544, -1.426180134207178, -0.4547730708161813, -0.2549849720127921, 2.4636034304463443, 0.5896787825349162, 1.319319750611779, 1.250168036553142, 0.37144095641761365, -1.426180134207178, 4.062941430323609, -1.1782363249460022, -0.15292407620161633, -0.4639538306439692, -0.783600476053612, 0.2752326668286781, -0.050944646062152654, 0.09187324439047194, 2.6812709968616506, 0.8317257939583963, 1.6354930790163653, 1.5951613913644755, -1.2710785723691436, 1.5156683125722563, -0.42277251221934464, -0.32903712714103167, -1.2504241452000084, -0.39679367134257815, 2.371912412353841, -0.29932385773556747, 0.7496630350558766, 0.31905515851342814, 0.8042347816649879, -0.02785615103450919, -0.6033490392202521, -1.426180134207178, -1.269744097948924, 0.3773663199121818, -0.051303235475737646, -0.30058467946336637, 0.6295209738662634, -0.4343463261536753, -0.7875018389802931, -1.2453129643766319, -0.7110958877717976, 0.9279877385242239, -0.32163849911097303, 0.8435453392593886, -1.426180134207178, -0.1693218517947764, -0.22419965650501805, -0.25676857862010566, 2.8441329540068248, 0.0986296981945552, 0.8195326302319769, 0.11212280121700377, 0.5650438443252841, -1.426180134207178, -0.4114325609460488, -0.3907726559127819, -0.1345032832469662, -0.3012974338618193, -0.17633660796140024, 0.5060857331266985, -0.1659598477980513, -0.37206265982355335, -0.6640041646354333, -0.8636065778905351, 0.9115736697967216, -0.07086103638299299, -0.3435188441813204, 0.39501445310806227, -0.6141192223947537, -1.426180134207178, -1.0054634192185552, -1.426180134207178, 2.1146398882615327, -0.34390124123517674, -0.7973769532013721, -1.426180134207178, 0.08843483121200307, 0.8001518064736136, -0.418372031595372, 1.6038692289221699, 0.5674809320319705, -0.09263203485777542, -0.13035850651153455, 0.5403767412211338, 0.48723738585361454, 0.20969156752353696, 0.24931787482484988, 0.9519800811337104, 0.9332283690022436, 0.6587525423732055, -0.35627075004924647, -0.31109332974006126, -0.45936492553964964, -0.029505409512520724, 1.140995328059547, -0.20373772709981608, -0.5047856191995339, -0.956967572024109, 1.0328445923717862, 0.9391835096043915, -0.2597960115305866, 0.5428745068074404, -1.0563406625010068, -0.4256825924251493, -0.6164815864163502, -0.19831253473795785, -1.426180134207178, 0.6472174246329403, -0.5279882363966013, 0.4651423506467034, -0.6141503338538646, 0.31185808779182905, 2.7267274370964554, 1.5152463765760096, 0.374590306919565, -0.8841442141872069, -0.08548566949391154, 0.0001524491903775527, -0.005533292862907564, 0.302939422694069, 0.8812813620608656, -0.43977587271523133, -0.26628798281771204, 0.2301952129709748, 0.034787439060723326, -0.09078262365185344, -0.14634811099780037, -0.2362942186770604, -0.6338262599850996, 0.45191738205061643, 0.2537526974431844, 0.33470878733290893, 1.7930867354467515, 0.1344571769490946, 2.860408109718244, 1.171345223597837, -0.5311158861290999, -0.2871462146241839, -0.5903727516099806, 1.9287616315288243, 1.146273179922053, -0.8099235093933619, 0.027862154674913733, 0.12451372988441828, 0.11512200205850937, 0.7161084485421102, 2.4818107271578866, 0.5686126025784923, -0.10227082840186233, -0.29379662259698386, -1.426180134207178, 1.2851603517145722, 0.8805823023227347, -0.3732748830644342, -0.23993896473784548, -1.426180134207178, 0.5224242354207795, -0.7296543296200302, -0.17137534855412825, -0.3126495347568443, 0.9960965515268944, -1.1205086789781487, -1.1949552403239139, -0.5159983154752931, 0.9633153270621684, 0.6095148308484819, 1.22056228778852, 1.101881130825589, 0.3535977269837913, 0.5974208305086582, -1.093964950919989, -0.7797065574038283, 0.05668499024276597, 0.4245912675134036, -1.0482039976226534, -0.6347791274280217, 0.27516749429130843, -0.09891500455954295, -0.13152627477811668, -0.4012995657365847, -0.3925396884696334, 0.5530089768264759, 0.22546669256030963, 1.0991084888262843, 1.9235455812103759, 0.23616720853969542, -0.7414862352298284, 0.9074916778117327, -0.05826756720074141, -1.2244121035505677, 1.4849574398334549, -0.6477439677068367, 2.8913824817676175, 2.286874049563013, -1.426180134207178, -0.6388998156070796, -0.5101532939880044, 0.9087139438035179, -1.426180134207178, -0.49159674832350997, -0.24857671372625353, 0.7763688868236519, 1.3623018817554111, -1.2512027568688482, 1.3140587537158344, 1.6229150602201226, -0.4003902402906122, 0.09051641958230162, 1.7462245910007492, -0.9010067654832824, 1.4971742005130713, -0.37431525587542047, -0.19667704114931034, 1.5983708579138167, 0.5934600538248463, 1.646517069895673, 0.13583521092352385, -0.2996514761480989, 1.057154229726777, 1.6087768333525498, -0.00028620131436701086, -0.5425826007967404, 0.6649074143291195, 2.8537301719667276, -1.426180134207178, -0.3143867902061045, 1.6196662654154719, 0.42565622048395113, 0.5454950327335277, -1.4050124798902277, 1.2263733184265877, 0.2521988099843007, -0.7953230350678441, 0.9438753704627891, 0.22612839045589123, -0.18993294765403856, -0.3258042743255813, -0.9240570559200539, 0.3960194304892603, -0.06360567556870052, 1.5341497834065265, -1.181519725103879, 3.3520972614137605, 0.542597663981683, 0.38219231821279814, 2.0322567445363, -0.818912052373326, 0.32955046527493514, 1.1047509697987292, -0.9489022247230164, -0.5475798174660037, -0.23378184545306765, -1.426180134207178, 0.49109633044778916, -1.426180134207178, -0.2373299563722356, 0.14034700455582108, 1.9323694371212383, -0.23699173337657575, 1.4071577233484098, 0.12721389552751, 0.623912483743044, -0.03894278620619646, 0.8723096038184325, 1.5063503252250494, -0.2677917267510794, -0.0001918135016247283, -0.2875834605483898, -0.08641002395174303, -1.3116722142930044, -0.44080999514278446, -0.581154770397703, 0.9204579226710999, -0.9860179847550442, -0.2702948999724778, 0.01613404756752973, -0.11950025613674471, 1.315231578472385, 1.4900189862917599, -0.5640794953778222, -1.426180134207178, 0.020414647241835986, 0.7954116280444075, 0.9126195204718447, 1.5800337779597535, -0.8076075667588367, 0.19424104105112341, -0.2885187707344779, 1.3842189566070566, 1.5006525037790566, 0.47297724139458314, 0.7199643030590762, -0.20277601079944652, 1.0906284742332688, 0.8966669969120133, 0.08059010840029004, 0.8403368559164217, -0.77315081815988, -0.30754992416572313, 0.6466473053890077, -1.2662655839958448, 0.9469042079538227, 0.3546042494036054, 0.8383613133773952, 0.16223374046765654, 0.6969384523238125, -0.03079256712556022, -1.3161500258547043, 0.9388348927126798, 0.14856197479966007, -1.2457809530575557, 1.1355545448536168, 0.3060703731908549, -1.426180134207178, -0.19127979994032399, 1.0784035669864986, 1.8520035519772566, -0.3142843260552193, -0.46618936104219266, -0.21669245439869436, -0.23440365326112125, 1.1398615506422023, 0.669586493504539, 1.485925476746282, -1.426180134207178, -1.1145127704256255, 2.0336745281402053, 0.07369586524458399, -1.3468807909654992, 0.40557352782638645, -0.5361187913495771, 0.030316659180379988, -0.15566862658998568, 0.0022650787907566275, -0.6423897768916152, 0.0875395515715039, -0.3379838136207035, -0.1243655826926701, -0.3921974624194154, -1.3423764064955803, -0.4503608619446431, -0.3650527494598097, -0.8818129967392362, -0.18123044750242773, -0.9172747929484261, 0.08939430018349781, 0.417208932617684, 0.9279613324099447, 0.1040373332995818, -0.701436587351728, -0.13165633893674092, 1.7140875071747732, -0.8476511398260719, 0.7566796171772199, 1.5782502415814832, -0.24601939392477595, -1.1919389211570026, -0.022855422913876124, -0.7863413745325598, 0.8716317532465603, -0.10164972288407922, 0.5534834441351775, 0.4669503267264931, -0.8795507793106243, -1.1486665334433885, -0.5894715727311793, -0.12872610300009565, -1.426180134207178, -0.22183279782566964, 0.6030349389540528, 0.641295853505863, -0.22257539956074462, 0.02572283804415197, 0.6451967950583769, -0.23447767465593838, 1.1755884614295935, 0.12653155029788818, 2.0651438743742574, 0.5543016123036624, 0.2842641197443459, 0.3981378188698897, -1.426180134207178, 1.5741530801265897, 0.3418486916262519, 2.8483511903048546, -1.426180134207178, -0.43852172274503, 1.3025232146014025, 2.695447709236222, -0.002736632536250537, -0.38780892073008955, 0.16966804484361228, -0.11588402306106177, -1.2134825531557787, 0.39392955509373273, -0.057186742470006595, 0.2123705240003697, -0.8950206889945852, -0.46702382234502343, -0.9131969444760452, -0.23662541876998072, -0.009856872701938925, -0.8855903703181512, -1.1024082357317015, -0.4071488711945397, -0.8778100475245103, -0.5308957181283948, 0.766044657972746, -0.8377338530740766, 3.496615115702132, -1.2448056123258855, 0.05272983188114117, 0.7799563259981291, -0.09330230069468937, -0.6967303997717533, 0.29412947213062235, 0.7964491916943017, -0.5773628242956155, -0.8106809996822303, -0.8623105363055253, 1.2787546216730121, 0.3181608620793028, -0.9443442906197527, -0.04952307009077958, 2.4109145240601735, -0.20985846774842995, 0.058942151181415305, -1.3735036320229552, 0.1714796728328175, 1.5917895553039174, 1.6818526645427312, -0.0861697002201895, -0.6991574447275278, -0.1699124779146862, 2.3479061643969503, 0.7397702933489354, 0.5904671735958098, 0.16076483013186055, 2.0065919678697948, -0.5088572172884823, 1.0032863184296503, -0.17589669333415495, -0.6351026725569683, -0.6146230454368772, -0.8851910480687079, 0.37616807224773785, 0.22490233209661536, 0.7650752164793664, 1.4925250389032836, 0.16928052107075803, -0.96938350222525, -1.426180134207178, -0.6305044269920118, -1.426180134207178, -0.12546494788662216, 1.6508639657717747, 0.11401406892322495, -1.2889902575473637, -0.5619513451623982, -0.850501139098989, -1.1533655576625754, -1.000533973560674, -0.7041762919372112, -0.6349646725182495, -0.12573827926102743, 0.468947640263974, -0.1107575849815023, -0.6992591363591133, 1.7610122959131438, 1.0030657992838032, -0.5659110684107974, -0.3275213038149681, -0.05452000584393352, 0.3067605840715271, -0.8940370963522033, -0.03712048340483559, -0.06348656713833525, 0.01267245881003069, -1.1764090183264375, -0.9617786115418989, -0.10146853199355292, -0.846317315024355, -0.32046981786704176, -0.9895738208672222, 0.03924290901309834, -0.5260871366265619, 0.37345779362470943, -0.3956332068948449, -0.495532242557478, -0.5072156137744559, -0.2240538610442586, 0.5108684703464743, -1.1673635722770737, 1.0135678480319346, -0.5116370226485745, 0.6601140022971885, 0.29987996534711, 0.12036572261372619, -0.2147334859101251, -0.4780578559752349, -1.0537773732321976, -1.1756419242180822, -0.7366350949374282, -0.6240976435150483, -0.9260437648744186, 0.16927265541969616, -1.426180134207178, 1.5785654294561762, -0.8000068898171259, 1.200089402655059, -0.07922545399700727, -1.2113794747031152, 0.14375662383308424, 0.6118363215761671, -1.2689929985015436, 1.6836682253574675, 0.2228068383789128, 2.3843780647063433, 0.7517840921395365, -1.024498891734981, -0.3301407763056484, -0.05608920323077396, 1.6772200769834125, -0.6103405495788323, -1.285142628605225, 0.6506572423919618, 1.0912698057109251, -0.9691193357389173, 0.07132858519106867, 0.2625327304409761, 0.005758130152503096, 1.215404387104713, -0.7189363968418679, -0.4419734794386923, -0.38842152853555956, 0.0782880008841559, 0.4924311033413664, -0.36658051172052164, 0.13985807006749673, -1.426180134207178, -0.9054647285661305, -0.6834513548246287, 0.5679780130874719, -0.5632776203436773, -0.5598495308322263, 0.6123654270681227, -0.8011428443343184, -0.969407380094545, -0.546653777511524, -1.138544283275107, -0.9631965707183675, 1.8613692950630534, -0.4318944201222238, -0.044820815336330165, 0.26659576058859236, -0.9551004279887865, -0.33795649452906906, 0.9442473033915713, 0.07433635397390663, 0.03912169371191006, -0.01440153351903609, 0.3736238150453305, 0.9338101462647058, -0.8648807782480425, 0.430058316375561, -0.9191537354603413, -1.1320974868098168, -0.45646327281712556, -0.19111827317745234, 0.43953221216345256, 0.6258126003067012, -0.2971608739225838, 0.18870053262636755, 0.08845589992021023, -1.1763166144837174, 1.7737215025324597, 0.006242429525025998, 0.3290983307969301, -1.426180134207178, 0.5097056181118087, 0.6150759866072665, 0.8694990381443597, -1.2680479791524268, 0.8062805532313411, 1.3875275865429935, -0.7788864930516027, -1.426180134207178, -0.3182323210560527, 0.615348475233338, 0.2795563871257728, 0.2355841671547324, -0.1371281633727516, -0.3781763775694368, 0.07413395391710985, -0.12341692899139405, 0.19576262315742582, 0.2850588314176968, -0.6607824782353302, -1.426180134207178, 0.7918685736151966, -0.4446643748501754, -1.2568327019599128, 0.1084465925519713], [-0.020304330517870426, -0.2342011906671348, -0.5861702473593172, 0.08128997728010408, 0.2488207641009404, -0.8361483916970542, -0.878343134936216, 0.2021012830011886, 1.9240606146875752, -0.10537243060960487, -0.878343134936216, -0.680214953972548, 1.0622411004412577, -0.5072744189067206, -0.878343134936216, -0.055123675609398765, -0.14853987428702256, 0.0970862238003493, -0.878343134936216, 1.2251473440499545, -0.878343134936216, -0.08747899228233665, -0.878343134936216, -0.532042604607645, 4.823991807888846, -0.2530822492289989, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.5426039234556004, -0.31201575183049995, -0.36187266855721967, 1.3934692314920507, -0.8489799863191223, 0.437717381639194, -0.878343134936216, -0.15762863346007655, -0.878343134936216, -0.8055938395122899, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.5842244575377367, -0.5291290102791498, -0.878343134936216, 0.9160196995377836, 0.5509971823565994, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.05778677741249019, 0.741077503032537, -0.21728478235085327, -0.29289750501309314, -0.5749012122538212, -0.878343134936216, -0.3811690931573897, -0.34765867786826626, 0.022823044993937947, -0.878343134936216, 0.3955882711743701, 0.34171230999972757, -0.4386647272546228, -0.878343134936216, 0.506887372544436, -0.878343134936216, -0.878343134936216, -0.7179196846397404, 0.32230512476192913, -0.878343134936216, -0.878343134936216, 0.4396255870847237, 0.49910279394979945, -0.015065608925267227, -0.878343134936216, -0.756657030344666, -0.878343134936216, -0.23200628494125625, -0.878343134936216, 2.4599641413867976, -0.2969443351507897, -0.878343134936216, 0.47866038705995184, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.6556300109094932, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.17605348167351567, -0.1128122810491755, 0.7320912070023273, 1.8700603002687186, 0.622691358517625, -0.878343134936216, 1.2429166474881395, 3.411113174362549, -0.7667103118741498, -0.2831161233805797, -0.24730271657824174, -0.878343134936216, -0.042530262076338816, -0.6924258639137546, 0.7950914646467673, -0.878343134936216, 0.37046236518838477, 0.5230764399362356, 1.3872810472231094, -0.5601595664030511, -0.878343134936216, -0.07600191933060867, -0.11167628850650946, -0.42053816753602996, -0.4753449766125259, -0.5896311215165723, -0.2725982299082932, -0.4941266290033084, -0.878343134936216, -0.6122074311689921, 0.1812731517813807, 1.9841825150619679, -0.34059636344143496, -0.19632847667212192, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.5738245731094497, 0.4159598218258531, 0.01394603570425769, -0.878343134936216, 0.03684450105059973, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.8923849407068031, 0.837396350987968, 0.14868441347882136, 1.5311947619781716, 1.485209390811803, -0.3218878600178391, 2.179258145953879, -0.5446835376749862, 0.27067374510431524, 0.13858505219416817, 0.43094782684745675, -0.321438976467702, -0.878343134936216, 0.3673875974825606, 1.2790033257305917, -0.5856808043445381, 1.1967096458689621, 0.4777769222204253, 0.08419235361400554, -0.6526703419037979, 5.0, -0.21357924127498903, 1.326700382729136, -0.6798235933508986, -0.6430009082149115, -0.878343134936216, 0.20314043504550455, -0.878343134936216, -0.47798060486570904, 0.5838123549247519, 0.8352200054477952, -0.11197483455244024, -0.878343134936216, 1.2512353227208044, 1.3641476317612635, -0.7925047598433621, -0.4279965781613057, -0.6094601415632843, -0.878343134936216, -0.022251839886066056, 0.13589655470611667, -0.08234742846778426, 4.034399147133266, -0.878343134936216, 3.4957332097358598, 1.2156427821283429, -0.2210606337772678, 0.07145537158564425, 1.3056205972266854, -0.5634136582560486, 0.5650091399652826, -0.29624423402826733, -0.26587824173014346, 0.6101630148120931, 0.7240822685157923, -0.8398541818342345, 0.423276247030489, -0.878343134936216, 0.43000136655410076, -0.7225984618062792, 1.2617794733969967, 0.6539279327028463, -0.878343134936216, 2.7200423464279555, -0.175435493979911, -0.8661159242730884, -0.878343134936216, 0.8819847952361765, -0.4229459968040847, -0.878343134936216, -0.878343134936216, -0.8150741503677278, 1.15035590960514, -0.807212881358704, -0.6082142072147106, -0.0018203507525150734, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.019622395558012005, 1.1996390982384793, -0.47045933525855527, -0.878343134936216, -0.5398767771102615, -0.878343134936216, 3.287055582984209, 0.8066880870299439, 0.015947096667088996, 0.8639385083207552, -0.878343134936216, 4.207805433682707, -0.878343134936216, -0.5647818987695354, -0.34747918995474936, -0.878343134936216, -0.7082573065508606, -0.09158663432260516, -0.1650771635159031, 0.7949650370288529, -0.007645574213374213, -0.878343134936216, -0.878343134936216, 1.2598123120674527, -0.871447558530625, -0.878343134936216, -0.1019877078025166, -0.878343134936216, -0.878343134936216, 0.9151442046603532, 0.21562521690341244, 0.27334968717262337, -0.443932571962148, 1.1586870310799786, 0.24690524375869377, -0.22604890204042707, -0.3625370686166535, 3.3547478555747077, -0.878343134936216, 0.6106953646091194, -0.878343134936216, 0.7686020400768955, -0.8647313983907755, 0.8727685712583585, -0.7653084992600505, -0.878343134936216, -0.878343134936216, -0.2946695114488197, -0.878343134936216, -0.5034334976527779, -0.878343134936216, 0.07136115134880375, -0.6402957884429005, -0.7217153108522476, -0.4160335285824227, -0.878343134936216, -0.878343134936216, -0.878343134936216, 1.5448631377961952, -0.878343134936216, -0.878343134936216, 0.25623282885073534, 0.06702680209903365, 0.17192842581195197, -0.13668744887381484, 0.9670430693472485, -0.1820559122206372, -0.2486152492402241, -0.5919495070661662, -0.6203772700889464, 1.9862339614701128, -0.878343134936216, 0.913804923495459, -0.878343134936216, 1.3979996636449086, 0.29884799782588606, -0.33643980985295546, 0.6338952692068117, -0.12085091583283539, -0.878343134936216, -0.6374630946885613, 1.1395217833217266, -0.878343134936216, -0.878343134936216, -0.8740458766310895, -0.878343134936216, -0.878343134936216, -0.21286440118146557, -0.2727415254596865, -0.878343134936216, -0.878343134936216, -0.5058793480071355, -0.878343134936216, -0.878343134936216, 0.5007253908906067, 2.0687376989628814, -0.878343134936216, -0.533124881789333, 0.3506719667045749, -0.2790659087384287, 0.24815379836877663, 0.07867211767529252, -0.878343134936216, 0.3180171759764194, -0.642570912383169, -0.48068288602108405, 0.42846982370080666, -0.878343134936216, -0.33958527003080075, -0.878343134936216, -0.878343134936216, -0.20710397460422614, 0.7498107254717888, 3.024763475321229, -0.23442385830680526, -0.5059016202299808, -0.878343134936216, 0.10453529974399028, -0.878343134936216, 1.5886948723554823, 0.1880469644980743, 0.3766572092886684, -0.878343134936216, -0.21209721044649957, -0.878343134936216, -0.08228874552769047, -0.878343134936216, 0.34017050445551544, -0.22150848014055752, -0.5539928082308421, 0.6044399269613907, -0.878343134936216, -0.2846810199793593, 0.39620883644227173, -0.878343134936216, 1.5179270678162216, 0.8920860125393993, -0.878343134936216, -0.3420894757925648, -0.878343134936216, -0.3596227919283873, -0.01745938158208853, 0.29377691838121806, -0.4403932537258991, -0.878343134936216, 0.8190086658331497, -0.6130141168873605, -0.12234883199673577, 0.10063165598012264, 0.3260746984784741, -0.46905482049977293, 0.07740543958975599, 0.36424928843508875, -0.728834001843157, -0.21034239947693942, -0.878343134936216, 0.47651635807841486, -0.3832155173976338, 0.015951845891078245, -0.878343134936216, 1.7684146790161417, -0.5308397953964434, -0.16381174097233928, -0.8130885448536538, 0.40836040837800563, -0.878343134936216, -0.06734883322257137, -0.7808691951881956, -0.878343134936216, -0.5740141445547189, 1.2036863104976339, -0.85934875859349, -0.872798797624004, -0.878343134936216, -0.7313893299987789, -0.878343134936216, 0.429610620056243, -0.878343134936216, 0.3223407166474554, -0.878343134936216, 1.853952679338893, 1.013320381316985, -0.7028762037689538, 1.258619874724737, -0.878343134936216, -0.878343134936216, 0.6273574983812505, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, 5.0, -0.878343134936216, 0.6063164709136574, 0.9018081653440049, -0.6962645333804606, 1.5121736286030174, -0.5913056050941814, 2.7040244694548754, -0.878343134936216, -0.878343134936216, 0.14873376173728223, -0.4587180253100579, -0.878343134936216, -0.20808220556840598, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.013037569202813841, 1.0184122044986035, 1.0204843946437165, -0.878343134936216, -0.14158755625487834, -0.6434878674401326, -0.878343134936216, -0.878343134936216, 0.7874309117636606, -0.878343134936216, -0.709922414505249, -0.8205296508351985, -0.878343134936216, -0.25443517758927975, 0.37967880752132926, 1.4634129637860311, -0.878343134936216, 1.4241553324048066, 0.5540419262326093, 0.16803700993513657, 0.04523506970848446, -0.878343134936216, -0.36455565257834066, 0.19023586545798926, 0.4050963267779968, 2.1063286256678815, 2.66999229459234, 0.4668659349326799, -0.03799333385848429, -0.878343134936216, -0.5320415128320161, 0.25122256130864107, -0.6761863428406691, -0.878343134936216, 0.012273817561081582, -0.878343134936216, -0.028298366267059002, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.08905697828710352, -0.878343134936216, -0.30142219830708, 0.8409514999708468, -0.23854738568248643, -0.878343134936216, 0.5929671119346174, -0.5037760422565847, -0.5505840936542935, 0.1779881080892821, -0.878343134936216, -0.29859875735120384, 1.1573576850732985, 2.219993386472315, -0.12212430833849547, -0.878343134936216, 0.5734007458100129, 1.5442390788462697, 0.8338775581335591, 0.6087732936130927, -0.10809826682418819, 0.17134017710268845, -0.38013338020630916, -0.570884187590814, -0.09783088127013086, 1.4315975301619677, 0.1916338841517747, -0.878343134936216, 1.2829970409838973, 1.8090586470919279, 0.5955315837111389, -0.35323972570955137, 0.7076477699624462, -0.2318747805666634, 1.6980864233453976, 0.6999516251938116, -0.878343134936216, -0.37948213604321257, 2.119087115676156, 0.1155941134519931, -0.878343134936216, -0.27063374342905616, 0.42903689196285344, -0.25762032381126365, 4.9450286744550205, 1.9452194447456044, 0.030120800835308173, -0.27374972566490136, 0.3261102903640002, 0.29130950545817513, 1.512605535042104, -0.878343134936216, -0.7231991840521117, -0.878343134936216, -0.4122908671351498, -0.878343134936216, -0.878343134936216, -0.03141494897949972, -0.36883786954179315, 0.13190458629381155, -0.44254203193142544, -0.22848803797466116, 1.378132185801638, 0.8530211887343573, 0.9698325560810291, -0.4600065116137988, 0.33324013111352707, 1.5283729586857349, -0.1268548083754892, 0.335715513998668, -0.24964113621063852, -0.030674124625991242, 1.3656344118137547, 0.7661903077109641, -0.878343134936216, -0.2146315492156423, 0.386834195820591, 2.412054406495586, 1.6305611924262327, -0.5467302621535292, 1.1677101199489126, 1.1468884302053237, -0.11701932926052562, -0.878343134936216, 0.38301003332256317, -0.2033825481929509, -0.6115993121432679, 0.9513999989478386, 0.20051580643178987, 1.6074376029450674, -0.10709907376791876, -0.27938039470855347, -0.87604937233887, 0.7217634462559466, -0.878343134936216, 1.3006032331430057, 0.7286147750423472, 0.1714699892250552, 2.111155802436887, 1.1071408099214877, 2.6451022121423673, 2.4561590849622803, 0.07081329833783866, 0.42352844720094285, 0.05771406515555349, -0.878343134936216, 0.3120990969982583, -0.878343134936216, 0.19630286263203853, 0.7426775002178095, -0.5780352087875573, -0.878343134936216, -0.2605185513977732, 0.010009747849064584, -0.878343134936216, 0.10611116868784774, -0.2999382022824581, -0.8635141214465811, -0.878343134936216, -0.878343134936216, -0.19232198764394062, -0.32343446937482345, -0.878343134936216, -0.878343134936216, -0.5844804789228928, 1.7827014365508258, 1.354506597885948, 1.1182657852326436, -0.878343134936216, 0.4885290561540554, -0.878343134936216, -0.5164851294176078, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.1344348428059088, -0.7547947204171696, 1.205301483364156, -0.5837902310754288, -0.5326488676147991, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.3180855876211873, -0.878343134936216, 0.564712286171576, 1.1481029214157543, 0.5445574529825834, -0.7585062116702159, 0.592002418988247, 0.8202841873012882, 0.23669004507973168, -0.878343134936216, 0.03537104066080383, 0.07353029116982218, 0.05404864683407976, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.646717530813418, -0.878343134936216, -0.878343134936216, 0.9842618995129427, -0.06820877029727865, -0.878343134936216, 1.0269420291380502, -0.06519939995167003, 0.8885101198195583, -0.878343134936216, 0.3025657122000234, -0.3913550322494749, 0.4163314622501911, 1.3554704174118073, -0.878343134936216, -0.878343134936216, -0.3483197480120289, -0.3367828457557953, -0.878343134936216, -0.5276056284486863, 0.17054918565899657, 0.08428930328991979, 0.6568933044905793, -0.43348558931700953, -0.878343134936216, 0.7982043353220681, -0.1649965904744329, -0.13232296661666598, -0.754847835301553, 0.9636629319978056, -0.878343134936216, -0.878343134936216, -0.3279934514603964, 0.7806576449347811, 0.4539678068213799, -0.27752126457757864, -0.878343134936216, 0.3917207651838448, 1.7390627279228448, -0.878343134936216, 0.9011939323747545, -0.6702772027754758, -0.878343134936216, 2.7642821867176073, 0.6823258902509353, 1.1640563836266802, -0.878343134936216, -0.878343134936216, 1.0214883915127475, -0.878343134936216, -0.04478859996630048, 0.8684627173525243, -0.6720022765063223, -0.878343134936216, -0.2134881325986928, 0.6027302063253337, -0.6060416555948491, 0.8461922413483656, -0.19567242869625662, -0.878343134936216, -0.6177219625800385, -0.584874800985937, -0.5115786351491121, 0.9641767216091215, -0.6484899739593967, 3.691867207923173, -0.4353974795052882, 1.2493705699453366, 3.2818927943866667, 1.3374936766039953, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.556077035202264, -0.7144001957783661, 0.07582716873951224, -0.41053021516597177, 0.02685611875870177, -0.3036595195161708, 0.6242882987311362, -0.878343134936216, 1.8728486952268741, -0.7347588498302231, 2.218479093673965, 1.763837300511222, -0.878343134936216, 0.9460404723818174, -0.878343134936216, -0.5868449101096671, -0.878343134936216, -0.878343134936216, 0.3518764135792211, -0.12309500605083104, 0.17394449868969036, -0.878343134936216, -0.878343134936216, 0.04965021035484976, -0.878343134936216, 0.12964493827309245, 0.3354793629299708, -0.878343134936216, 3.78899331477918, -0.4200495706473656, 0.7174164324088724, 1.486827620650079, 1.651635955760801, 2.996770784886861, -0.878343134936216, 5.0, 0.5006590109323231, -0.10922012087245067, 1.9257102876640033, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.2627795641380272, 1.075641554519775, 0.6554547809209326, -0.878343134936216, 0.45601106491229854, 1.4240120914421945, -0.878343134936216, -0.8154908128895941, 0.08446693518486487, 5.0, 1.7583782040077571, 1.4473516341429213, -0.878343134936216, 2.017583206900305, -0.878343134936216, 0.3668136510340459, -0.8775825886261871, -0.878343134936216, 4.184713505694779, 0.9413992250025374, -0.878343134936216, -0.878343134936216, 1.1500440984853075, -0.878343134936216, -0.5469382181165892, 5.0, -0.5828095436160815, 5.0, -0.878343134936216, -0.878343134936216, -0.878343134936216, 1.0022722670101576, -0.878343134936216, 0.36930497384337707, 0.1618762292345003, 0.49367022759414914, -0.878343134936216, -0.35187708054616684, -0.878343134936216, 1.6107985250434282, -0.13693910315645405, -0.20650327965278537, 0.2581050057004849, -0.878343134936216, -0.05396884993711948, 1.381634383666482, -0.01636651417679467, 1.6202126879428946, 0.9688003914007572, -0.06166996228487016, 0.3047612729912787, -0.7122272483898393, -0.878343134936216, -0.09730257104293555, 0.011118336823425315, -0.878343134936216, -0.33634094956969, 0.6759319062758024, -0.3023636364325406, -0.37734105485587793, -0.5573448323578216, 0.34519955053844, -0.878343134936216, -0.8113895304423665, -0.3648806741832915, -0.26984761038691607, 0.10713427163040744, -0.7787218294673913, -0.878343134936216, -0.6459522233914126, -0.40696857011809634, -0.22476000632082482, -0.8370745859052853, 1.014597103738302, -0.6702733133247941, -0.25581157912559893, -0.878343134936216, -0.03219191110635062, 0.28868749710597164, 0.3118400186413373, -0.878343134936216, -0.71606201475867, -0.878343134936216, 1.377220334795742, -0.878343134936216, -0.4308759180294207, -0.6874399293210042, 0.2605362808501853, 0.25234370570274345, 0.2981993739243027, -0.3613498172081736, -0.878343134936216, -0.22131600009704716, 0.7327577360242377, -0.4192197665800371, -0.372380681460057, 1.095566678116274, 0.5772773135382646, -0.11494872219008516, -0.3722230836479147, 0.18185484983686623, -0.2919792125309814, -0.7197646762763115, 0.0928630173096783, -0.07806635786874183, -0.878343134936216, -0.878343134936216, 1.229750706814883, -0.401003162666388, -0.878343134936216, -0.18330042726089274, -0.408075685195358, -0.5370256050533909, 0.7478782826072834, -0.36522278207684633, 0.014411950954217536, 0.883234659977017, 0.6889447800057809, 0.0354079972658687, -0.878343134936216, 0.1855549866233643, -0.878343134936216, -0.878343134936216, -0.09482511378409972, -0.3337037109474525, -0.15023327287741337, -0.878343134936216, -0.06288991237345702, -0.4322124151664763, -0.878343134936216, 0.006091037581508271, -0.878343134936216, 0.6186029863172199, 0.0926763236770064, -0.5974657580238314, 0.197157177062251, 1.61916087130128, 5.0, 1.0657830389390126, -0.8066580000421221, -0.7030869301126748, -0.878343134936216, -0.8581884501604717, -0.14704075716992912, 0.265093570683534, 1.7300815632381084, -0.4973248219440668, 0.10907817813902537, -0.39828857174078897, -0.878343134936216, -0.878343134936216, -0.446372144606634, 0.367671131613584, 0.7078461455943557, 1.1650898584377165, 0.6872228314826732, -0.878343134936216, 0.4609887975406296, -0.6333773154552766, -0.02388928497543845, -0.878343134936216, 0.18452402289627126, -0.49914516674579756, 1.2544021271122152, -0.0033469806154760623, 0.8502638002040753, -0.878343134936216, -0.29302900938768606, -0.8127017492188564, -0.878343134936216, -0.878343134936216, 0.30418285026268116, -0.517419198057568, 0.7645943500955213, -0.435542876724769, -0.6988813421512284, -0.878343134936216, -0.15751263229942403, -0.24932413915656518, 0.5957810544425167, -0.878343134936216, 0.15518615570860242, 0.0028404394105240372, 0.20841731419636403, -0.8390173733438836, -0.5637706415925593, -0.5548534276653169, -0.878343134936216, -0.6035659724714114, -0.7707697793147609, -0.021946797775138464, 0.3433457155192708, -0.878343134936216, -0.878343134936216, -0.1419739356502172, -0.6224893646333161, 3.331724927806593, 1.5814557448654116, -0.21706555380441653, -0.33697505285539947, -0.5338999606032234, -0.5505544519459479, -0.878343134936216, -0.878343134936216, -0.2773906336234894, -0.878343134936216, 1.2244154176678272, 0.2920453622325714, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.6183371389513959, -0.7419722796513968, -0.629261075681922, 0.49903477632807114, 1.057860023194538, -0.878343134936216, 0.44424106855913115, -0.1785379927867314, -0.04897615998266241, -0.5665301590853193, 2.4340676601613866, 0.13392677311507606, -0.7961589601702417, -0.8494291052833791, -0.878343134936216, 0.4830068550192098, 2.3326312231194626, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.11438322510113123, 1.0069066362029595, -0.6482942731777794, -0.4855813830330914, -0.878343134936216, 0.9659589361469956, -0.1798243228336019, -0.4718242458563727, 0.32418450733083365, -0.12457518086074866, -0.878343134936216, 0.14595530193734835, -0.25602436619582014, -0.006282710694863077, 0.7849865353064042, -0.878343134936216, -0.09693879140313118, -0.878343134936216, 1.2232644677990476, -0.5762559693382816, -0.8044747490210903, -0.14791876313130473, -0.878343134936216, 0.4854921730625792, -0.878343134936216, 0.8202781825353244, -0.4715155735914755, -0.878343134936216, -0.878343134936216, 0.4175460626381928, 0.30448221514033635, -0.865102435779668, -0.878343134936216, -0.878343134936216, 0.8141750475879347, -0.4186567378878194, -0.878343134936216, -0.23953293154338565, 0.43155277972385353, -0.7929433124666031, 2.4680330183553956, 0.47946327885800666, 2.7855680994589385, -0.878343134936216, -0.878343134936216, 1.8815357355569926, 1.9787039849523183, 1.1155435518776324, -0.6629935990757053, 0.3852760136419331, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.1990638659234668, 0.2896079731393428, 0.739418440785698, 0.7543235800370094, -0.1041846879020919, -0.878343134936216, 0.7333166159690634, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.06303952832193449, -0.3700601123592035, -0.878343134936216, -0.878343134936216, 1.4414868338154823, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.072401285991186, -0.4745077757653064, -0.4678200768514041, -0.878343134936216, -0.8106138920934663, -0.2530753710425316, 0.23892130693407948, -0.7349396751688865, -0.878343134936216, -0.878343134936216, -0.5285653811103345, -0.120340128604496, 1.428933597625585, -0.878343134936216, -0.878343134936216, 0.10382924844428552, -0.85212600262018, 0.24444907612463496, 0.004358171302103969, -0.878343134936216, -0.3321174701351108, -0.878343134936216, 0.538068266172542, -0.878343134936216, 5.0, 1.1622527702864736, -0.878343134936216, -0.768723048012621, 0.07850049054630917, -0.878343134936216, -0.24842244166402616, 0.3076135368237781, -0.7281251528684017, 0.4082657514309135, 1.0355825598263495, -0.12412127514271615, -0.8151221407302491, -0.7856031684364115, 2.2376257812465172, -0.878343134936216, -0.878343134936216, 0.8329200709063415, 2.1197500418384703, -0.878343134936216, -0.4379689659402284, -0.298704332054591, -0.878343134936216, -0.04699054764499005, -0.878343134936216, 0.12365633058925395, -0.878343134936216, -0.8031843248156076, -0.878343134936216, 0.11582273126884393, -0.7910741652942258, -0.878343134936216, -0.49578975811436726, -0.878343134936216, -0.7150330298749061, 1.1067661125253865, -0.878343134936216, 3.726913642345662, 0.44845182880762313, -0.878343134936216, -0.878343134936216, -0.7281241975647258, -0.878343134936216, -0.7300630819054478, -0.2335604275500848, -0.022047241133067646, -0.878343134936216, -0.878343134936216, -0.2923996007371828, -0.878343134936216, -0.06031048327081129, 1.2554511051371975, -0.3101849532771151, 0.2148682888593661, -0.04057014269961862, -0.878343134936216, -0.878343134936216, 0.34612908830953776, 0.13402819907107152, -0.5798511046035975, 0.790731677024826, -0.878343134936216, -0.864673605930179, -0.3903106942709195, 0.8245911329827531, -0.878343134936216, -0.16297653261564451, 0.09486860914137374, -0.878343134936216, -0.7263766332559071, -0.878343134936216, 0.03513374322769685, -0.5353971398185732, 0.3285234420382491, -0.878343134936216, -0.31056008738346796, -0.878343134936216, -0.8574014982866092, -0.878343134936216, 0.2417451846002074, -0.878343134936216, 0.40384722628009767, -0.3178818622886909, -0.08944702703236988, -0.5449525784845265, 2.4902871177251047, -0.42347034934462263, -0.1813190182593955, -0.878343134936216, 3.233636311555473, -0.48909316122908214, -0.878343134936216, 2.177058654770342, -0.5081816025717995, 0.8548454366339637, 1.4581503868959245, -0.878343134936216, -0.45615409942135254, 0.6224443988701956, -0.878343134936216, 1.2313134744511811, -0.14429630618085748, -0.878343134936216, -0.6732730214560804, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.9632716396121337, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.652659616953863, -0.6168155431579009, -0.15730683259323258, -0.024855833940380476, 0.7630193545721652, -0.878343134936216, -0.11955667041264839, 0.8558037972816829, -0.878343134936216, 0.44633673188027334, 0.5135611786134524, -0.878343134936216, -0.8610494328449141, -0.878343134936216, 0.47091565827579573, -0.7060335506539682, -0.6687933295756109, -0.878343134936216, -0.06203816361597458, 1.1359025471093827, -0.6267161193947813, -0.7614766329202363, -0.3919252666608494, 0.3190441001336813, -0.18046585019359307, -0.878343134936216, 1.151771942596811, -0.26015586353359765, -0.32362989721253255, -0.878343134936216, -0.3266485476509928, -0.878343134936216, -0.878343134936216, -0.7861141876670718, -0.7072955477514935, -0.8380285965094807, -0.17417995200579808, -0.878343134936216, 0.3191240181097748, 0.3859376296735085, 0.2725879553158065, 0.0461937578888927, -0.23821362987249844, 0.02785285531980566, -0.5330890988430708, 0.7527929106042188, -0.2738468391071612, 2.335211962352869, -0.1960511110734055, -0.878343134936216, -0.19483285323704513, -0.878343134936216, -0.878343134936216, 0.6875860652346629, -0.8365677904815924, -0.878343134936216, -0.6616311722674458, -0.8564846950546928, -0.8402331780968773, -0.3079451209840756, -0.21996023312012813, -0.878343134936216, -0.6444477292793437, 0.708086336232882, 0.5740734979530133, -0.06847838428902371, -0.47484398807046196, -0.6175692504638403, -0.6470205531394301, -0.878343134936216, -0.6019688684915562, 2.189448124615799, 0.6998955079264456, -0.09067183552251028, -0.878343134936216, 0.13489998191135844, -0.878343134936216, -0.3815289969937085, 0.26793087718990743, 1.4337476730870344, 2.321903872492626, -0.32738565996736135, -0.878343134936216, -0.35034531933774593, -0.20248865689616238, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.7149070953016503, -0.878343134936216, -0.10669942929868009, 0.389162298173287, 0.7188882551352253, -0.7324373254256943, -0.878343134936216, -0.13493700500677333, -0.7814052843167519, 0.37513363639747027, -0.7502159362511129, -0.878343134936216, 0.14633403890327853, 0.07457381031665682, -0.2567726692123917, 1.5609353851956107, -0.7893256661525243, 0.13041955308234018, 0.5195346106160379, -0.878343134936216, -0.878343134936216, -0.11977551683761636, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.3487076558932484, 0.9264492137728475, 0.9827893125436505, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.051891079834736585, -0.4728810027827148, 0.08969009897474667, -0.3360603632328652, -0.4995210923894822, 0.5105548652396068, 0.23097973100389416, -0.878343134936216, -0.878343134936216, -0.3197045271136359, -0.878343134936216, 0.3405692209154691, -0.6336148312435086, -0.878343134936216, -0.0057632984390506604, -0.878343134936216, -0.878343134936216, -0.5179195315342533, -0.878343134936216, -0.878343134936216, -0.4681297044199771, -0.878343134936216, -0.878343134936216, 0.8760786166123785, 1.476899886494418, -0.2445349015906963, -0.878343134936216, -0.5927135316518068, -0.878343134936216, -0.878343134936216, 0.1859279371784579, 0.970776068580199, 1.0696378803322426, 0.6363015426945934, -0.6411141834548973, 1.9149600097489488, -0.14373240406813603, -0.7570910248046534, 0.8126944906565468, -0.1672451569725098, 0.2886793087887506, -0.878343134936216, -0.878343134936216, 0.17399406530327816, -0.878343134936216, 0.080723782438559, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.169160786492319, -0.3330026272268619, -0.47247685473900436, 2.0984955722352914, -0.4228141376024118, -0.878343134936216, -0.878343134936216, 0.7543156100749134, -0.878343134936216, 5.0, 0.14274952115596237, -0.878343134936216, -0.878343134936216, 1.408994280945887, 0.6432645601279073, -0.878343134936216, 0.14509836724562286, 1.0313294386834353, -0.878343134936216, 0.3219331568049018, -0.878343134936216, 1.3107685376756817, -0.7133156258678569, -0.2764820579444832, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.5087416442738592, -0.7536477691766205, 0.07352035601159163, -0.24393497088219496, -0.566335959495192, -0.8272685028491508, -0.878343134936216, -0.878343134936216, 0.7620427612714304, -0.878343134936216, 0.5280844147495082, -0.878343134936216, 0.20953267217962981, 1.1809020448821594, 0.3618966211307222, 0.7518261432841521, -0.40900953548019303, -0.15091061047805754, -0.878343134936216, 0.03500474993705264, -0.878343134936216, -0.3153277077918704, 1.313232020206467, -0.0433203255107458, -0.6531797098238192, -0.878343134936216, 1.0171863588216243, 1.041370062439217, -0.705068366408563, 0.23996919318343093, -0.878343134936216, -0.878343134936216, -0.878343134936216, 1.0731496858226277, -0.5913725855290607, 0.08970603889893895, -0.10175723396709381, -0.02346294659205294, 0.6796018008773596, -0.878343134936216, -0.878343134936216, 0.6794599792230654, -0.04281603434740292, 0.35766904753753453, -0.4895769270105871, -0.7157317116891103, 0.26991485186413466, -0.878343134936216, -0.878343134936216, -0.7931472629778222, -0.2928762699770954, -0.19609276231367673, -0.878343134936216, -0.6133654502849858, -0.28703423317154014, 0.02126557246944004, -0.5938709229968142, -0.878343134936216, 0.07193062151723702, 1.6342819637721309, 0.014306649194736449, -0.878343134936216, 0.4161863652690088, 2.677340162935116, -0.44542571160766853, -0.878343134936216, -0.8318915551051916, 0.2272408361825444, -0.1920865462294037, -0.878343134936216, -0.49559776936989003, -0.6480861261539832, -0.878343134936216, -0.6218745857762511, -0.878343134936216, -0.37813614045818034, -0.878343134936216, 1.070034413240937, 0.31059299251713474, -0.878343134936216, 0.6930626301481877, 1.318034959556489, -0.878343134936216, 1.1360750476588786, -0.38471381568300483, -0.6828710393715914, 0.40145427245499665, -0.20385348561080618, 0.28860714241962826, -0.878343134936216, 0.34069259156162046, -0.07143556775953344, -0.10476496664925926, 0.17083796031304255, -0.4495080517477213, -0.15267754015710738, 1.2165483008355915, -0.878343134936216, -0.8473263351852477, -0.40289482771112783, -0.7120780026612642, 0.16857197999367243, -0.878343134936216, 3.084418969146629, -0.878343134936216, -0.8667217505699895, -0.878343134936216, 1.616847835452276, -0.878343134936216, 1.0458430671939503, -0.09808084330054195, -0.8393059876433843, -0.3104527112502902, -0.6089385730506032, -0.47223726457707377, 0.8666047335859596, -0.878343134936216, 0.5707403069556453, -0.2574548652145876, -0.25142875503787177, -0.5570218305377846, -0.6349127614064468, -0.878343134936216, -0.878343134936216, 0.1781124613334995, 0.2345326964355136, -0.878343134936216, 0.05629399259404963, 0.0114805333885678, 1.2267555295524646, -0.0936558220847294, 0.3543995070593762, -0.878343134936216, 0.3237329489304042, -0.6435442303570141, 1.7029225526745617, -0.041058330172423635, -0.878343134936216, -0.604489259827028, -0.878343134936216, -0.2293590565720071, 0.7246779412993376, -0.1299451338840369, -0.878343134936216, -0.878343134936216, -0.010841692780437857, -0.014329315440621144, -0.05551218396721394, 0.5280538450318776, -0.691036292833902, 0.8726996802161283, 0.8923150670665044, 0.5745507130807405, -0.878343134936216, -0.878343134936216, 0.5003687077923946, 1.6567520163614018, 1.4734509672803018, -0.6763137667038478, -0.878343134936216, -0.878343134936216, 0.8360668958037255, -0.23033887061085068, -0.4599723117421983, -0.11443242149481699, -0.18041415461752913, 0.20142230773709932, -0.878343134936216, -0.13814273119937792, -0.878343134936216, -0.7176146015872259, -0.4208081909436381, -0.878343134936216, -0.7860623897370417, 0.8547734886199679, 0.9186930213445861, 0.263532331533113, -0.4166467243648257, -0.5496367599404317, 0.24278051542981732, 0.6140241885039672, 1.084769017138896, -0.8202007602503596, 0.26227274998916894, -0.7900971079888479, -0.878343134936216, 1.6902033665889553, 0.05356739213652342, -0.878343134936216, -0.08385697204214129, -0.878343134936216, -0.10639002008523404, -0.3500192059571664, -0.5644784943220528, -0.878343134936216, 1.712998331605614, -0.024629836385038902, 0.976349364814513, -0.1466432962519497, -0.878343134936216, -0.878343134936216, -0.878343134936216, 2.596468193298423, -0.878343134936216, -0.14894525057831678, -0.8054973401938229, -0.878343134936216, -0.5620863320342839, -0.878343134936216, 0.008760483584819583, 0.020325116942047514, 0.4848996664283598, -0.878343134936216, -0.027301684294738223, -0.6451493588877485, -0.878343134936216, 1.1797419240980818, 1.7198579578867854, -0.878343134936216, -0.878343134936216, 0.04672992890061976, -0.6236087348920204, 0.6587131852876672, -0.878343134936216, 2.9727403665677006, -0.24409682661929158, -0.599490510517826, 0.2191363673284151, 1.9540995110070478, -0.878343134936216, -0.02704522619932849, -0.03442153529725342, -0.32302800130789866, -0.26592491513831185, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.37841749103794453, 0.4269391542680163, -0.5885198849863095, 0.3389211856024894, 2.28141231629475, 0.34581694965701615, 0.10355783302275161, -0.878343134936216, 0.9898581230354752, 0.43168291937890957, 0.2632655015692229, -0.23745331732399974, -0.878343134936216, -0.5793893108066389, -0.4845558508897567, -0.5800511178989521, -0.22245013662114319, 0.2477234204155637, -0.7612888065703477, 1.2092596067319479, -0.878343134936216, -0.5803986300818731, 1.0345733224342961, -0.878343134936216, 0.44708831022373474, -0.878343134936216, -0.878343134936216, -0.5899412403841802, 0.09110187404146709, 0.31724812922288337, 1.00008696890982, 0.36596796163130657, 0.9948152211044151, -0.7767921433363492, 0.6808839821768381, -0.6741744869462999, -0.8320682112256692, -0.24449030255622467, -0.878343134936216, -0.6926622469847729, -0.024342098917842316, -0.40394811824984733, -0.878343134936216, -0.878343134936216, -0.7916309231001712, 0.2525586763242241, 0.2243037413836206, -0.31708169992970997, 0.42954183819157493, 0.4915395182752949, 0.24609001489602228, 0.3375161795446739, 0.45914151317523644, 1.5718347996616826, -0.878343134936216, 0.1148970147124524, 0.23695753010900042, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.10745308201583816, 0.23670118119115507, 0.05274997972259465, 0.24816220504112646, -0.878343134936216, -0.19194783613565403, -0.7721899610538291, 1.2425993774901631, 1.1568251169211614, -0.8344252763387425, -0.5903701990290752, 1.9511536820030808, 0.04448480149577867, 0.07388249798795293, 0.16079820997777008, -0.878343134936216, -0.645426915547199, 1.7773591600397396, -0.42178470236120114, -0.878343134936216, -0.85429083333926, 1.0887304158335815, -0.02634010290891046, 2.6040671700360303, 1.074691928077079, 0.07035628105926008, -0.5464387853548001, -0.4533597815803982, -0.5577449408317029, -0.7337201481433553, 0.2849808096656974, 0.41440557003946205, 0.07794892549820241, 0.12888626338803866, -0.7481972021702763, 0.9598185716506202, -0.03346743257448876, 0.6335759248351333, -0.8028283172535671, 1.7677659459370085, -0.2612152680158432, 5.0, -0.8628154891034602, -0.7121131032477578, -0.35709260190664005, 0.2552069964691021, 0.8337437064413608, -0.7486872047200653, 1.4942851032660822, 2.7494373134810393, 0.5034386716854503, -0.878343134936216, 0.1844188849031341, -0.511480539108786, -0.878343134936216, -0.878343134936216, -0.7157122234941209, 0.3572335382388598, -0.8166672488957419, -0.878343134936216, -0.014663617138423552, 0.1660104560113532, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, 0.08932642851250484, 0.07445677196915672, 0.6135050491920608, 2.51504444025851, -0.5563417089092855, -0.878343134936216, 1.546695574013025, -0.018117503931650597, -0.44240490491233947, -0.2804947155049718, 0.03660796786043392, 0.5469983357578249, 0.07408938946977506, -0.493882180439826, 0.2391740529923455, -0.5295063006423714, -0.7421353772832734, 0.31300690843432327, 0.2489312517946625, -0.11191134779957593, -0.45257343018313123, -0.48635910940288346, -0.878343134936216, -0.5752185914293654, -0.878343134936216, -0.461092500832627, -0.878343134936216, 0.6669959411021202, 0.25589132143377613, -0.39885673177846664, 0.7002827607422883, 0.20765732918055463, 0.04648362431856733, -0.8433733875163048, 0.6039773416271003, 4.9361333233347535, -0.21733074610486175, -0.878343134936216, -0.878343134936216, -0.8430211158739968, -0.878343134936216, 0.23995783871688242, -0.27012049970555113, 0.09404060650383579, 1.0335601546499669, 0.3751349465282259, -0.878343134936216, -0.5716675093107084, -0.33248856467163446, 1.0073298084370088, -0.878343134936216, -0.5542265028043716, 1.2807805181005472, 0.5372041257616635, -0.24073950738051003, -0.878343134936216, 0.08292873250023045, 0.5305462596168392, -0.6666814260919776, -0.476245664212608, -0.1473589005884125, 0.833061128317694, -0.7824441838879527, -0.878343134936216, -0.7627163987365023, 0.05556359469780293, 0.6530846452064915, -0.2175284666713945, -0.878343134936216, -0.878343134936216, 3.2137166468371006, -0.878343134936216, -0.878343134936216, 0.4248526618621629, -0.878343134936216, -0.878343134936216, -0.7090849270669284, 0.8944379156008253, 2.01265100131573, 0.014217178181885299, 0.3742454769227372, -0.4350681453866, -0.878343134936216, -0.11957102726217868, -0.878343134936216, -0.4346403876948963, -0.11647704430527243, -0.6032304971148065, -0.5486864784323713, -0.878343134936216, 0.456332702012797, -0.6970859307754392, -0.878343134936216, 0.6282933684509994, 0.4424878952530159, 0.2939673240510316, -0.26453857844376233, -0.1837538962686734, -0.878343134936216, -0.878343134936216, -0.15533404861920827, 1.3163689099456115, 1.4462456654300573, -0.7932578871434981, -0.878343134936216, -0.878343134936216, 0.2913715183139401, -0.878343134936216, -0.878343134936216, -0.18592325444481878, -0.7530885753463015, -0.6658533006296826, 1.6466480696191084, 1.9740407928828743, -0.6977292186236341, 0.7946962418688301, -0.878343134936216, -0.878343134936216, -0.6076047234694495, -0.40415457302141555, -0.7793946293755747, -0.7383094406498476, -0.878343134936216, 0.18269246009994522, 1.375976365643306, -0.24189340504350257, 0.33463127162084705, 0.5528397720867845, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.4933156307712025, 0.3193772008782927, -0.6231643276219646, -0.878343134936216, 2.3758140062444766, 0.4963480256810287, -0.878343134936216, 0.1384917053778314, -0.30557012686808455, 0.1691473457505067, -0.878343134936216, -0.07273150543194673, -0.7262522663644929, 0.09620570675502305, 0.005007941568099302, 2.807045072935448, -0.2131579796482821, 0.8164990011932388, -0.8012476035553519, 0.1542570546477567, 1.1897028482328846, 0.34390284862308745, 1.3075716002769011, -0.878343134936216, 0.9981623868298376, -0.878343134936216, -0.6496770070127497, -0.878343134936216, -0.41839705905430463, -0.878343134936216, -0.587476475017039, 1.0948550587608716, 0.0325954194775079, 0.1987892724510368, 0.9795602769413533, 1.4848244307247784, -0.7196391220789, -0.878343134936216, -0.878343134936216, 0.16351454774437663, 0.5985798212691636, -0.2220074761920948, -0.6983787022985252, 2.4557105835336226, 0.7025632616775327, 0.7483453442216532, -0.878343134936216, 0.3460355231380759, -0.878343134936216, -0.45203671328358797, 0.7767108760335435, -0.5422163976958515, 0.4732088238083441, -0.878343134936216, 0.5049405182416175, 1.3750125461174467, 0.53363849573274, -0.38957718481412834, 0.09573143942149658, 0.8666420723124934, -0.678069464741106, -0.4178643271358094, -0.878343134936216, 0.2939678699388479, 0.8594444322963646, -0.878343134936216, -0.6544775990451689, 2.5012312949920057, -0.878343134936216, -0.878343134936216, -0.5994063073223878, 1.5694411907712138, -0.878343134936216, 1.7435979638884826, -0.878343134936216, 3.3622365629737057, -0.28695731757842863, -0.07092488970875814, 0.45019943405802815, 1.3124380809685745, 0.3439966321496761, -0.878343134936216, -0.2951584631645659, -0.878343134936216, 0.39157697833341853, -0.878343134936216, -0.5998177702628174, -0.35554948623167065, -0.10277367707831285, 1.6773293667190665, -0.6457476246384144, -0.878343134936216, 0.362998877806432, 0.12177356351589705, -0.7680371536204794, 1.3010493326652735, -0.878343134936216, -0.792831978646768, 0.015909157463959767, 0.08857932644912467, -0.3723719472550197, -0.6945921787653312, 0.5772853926779254, 0.19947206892983013, 0.3521611486634378, -0.19611781856437877, -0.2701548360491029, 0.09266169388356807, 1.2552102594332888, 0.5896989907647789, -0.7375515982437109, -0.12121038295890249, -0.8145263246511525, 1.1522121465306918, -0.6455095629623661, -0.2788752847134901, -0.6885767679897833, -0.5437225840601466, -0.878343134936216, -0.14061816867329818, 0.059549230811458825, -0.03429942019307468, 1.7327909136406852, -0.878343134936216, 0.7090130353873416, -0.20381789372528014, -0.1030929122724269, 0.0734928432657261, -0.878343134936216, 1.3656534087096974, 0.18160516075036143, -0.7701422744480133, 1.0796453141088826, 2.8488631365233896, -0.878343134936216, 3.0813213833301343, 0.8508709366317312, 0.9617800557468809, -0.878343134936216, -0.878343134936216, 0.7618626182925365, 0.6372029126544448, 0.6066266443700465, -0.878343134936216, -0.20630026397444887, 0.9710896265410388, 0.6932320737259118, -0.7147714267868431, -0.878343134936216, -0.14590629311314351, 0.7487006080115455, 0.012157379690178927, 0.8379555584654839, -0.176351057022949, -0.16817223824843994, -0.878343134936216, -0.878343134936216, 1.0353650781209203, 1.0947771059809002, 2.511022993904206, 1.499301593929258, 0.22996656321956505, 1.2688511225054537, -0.878343134936216, -0.878343134936216, -0.04357591018564977, -0.37609883254444415, 0.5705902969841301, -0.878343134936216, -0.06872807337552851, -0.07296050537026824, -0.5846334093942177, 0.4146178112218689, -0.878343134936216, -0.878343134936216, 0.1953633897027104, 0.2893957319569359, -0.7092485569394243, -0.6048215144455262, 2.7625971402107865, 0.4481648009945844, -0.33651486942749526, -0.4312102470216157, -0.20074023281403475, -0.47337066415262097, -0.6219211227124664, -0.03176983064792305, 0.2141953183612406, 0.6768467050758993, 0.1590137027110812, -0.8055341944449219, 0.23862892942045416, -0.6983030558945861, -0.5034313686902998, -0.3768895510442298, -0.878343134936216, -0.878343134936216, 0.662410920167779, 0.09215325397283348, 1.0088028321165439, 0.6189549747802239, -0.44229943938651295, 0.424136566226665, 0.3233682958700961, 0.6976683948194917, 0.2893362301851196, 1.3534866610927105, 0.41127741450534583, -0.878343134936216, 0.7554387196651504, -0.0385912993708512, 1.0341409792849487, -0.878343134936216, -0.878343134936216, -0.878343134936216, 1.0005675685419941, -0.13407515732471678, 0.23658523461928382, 1.615780733951837, 2.3926644713127354, -0.878343134936216, -0.13928658452657755, -0.16457003373592238, -0.25860750733560756, 0.7130914724295182, 0.6727951257142116, 0.05563346833810149, -0.878343134936216, -0.878343134936216, 0.61589243496145, 0.20624631835677557, -0.023826344110388566, -0.2090781778865685, -0.03212531279294197, 1.6392362232244386, -0.746526608043349, 0.1628996597097493, -0.878343134936216, -0.878343134936216, 0.06206217077825837, 0.1832661881933346, -0.3053744260864673, -0.878343134936216, -0.5268030641833208, -0.5789618533532339, 2.773417510121262, 0.220968366834993, 1.2010743464812323, -0.878343134936216, -0.7669168962940754, -0.5105371084928021, 0.1016789963416617, 1.111828239409896, -0.878343134936216, -0.878343134936216, -0.8717737277794121, 0.5204998494502262, 1.1823353279287836, -0.878343134936216, -0.28400128047233075, -0.584507009070694, -0.34672733866738176, -0.878343134936216, 0.1520552707354127, 0.5167743834691201, 1.313375261169079, 0.10825694451039237, 0.053111903343827184, -0.01964729994393721, 0.7057668589076593, -0.878343134936216, 0.5675039564566307, 0.2784192381314107, 2.58554061102111, 0.9173930441023419, -0.17851375536775202, -0.6856710344458219, 3.3908786415525896, 0.2780644110517687, -0.29253689152261425, -0.8449878439050741, 0.2583495634415299, -0.7865564455038558, 0.2009253314704758, -0.878343134936216, 2.3711034311127284, 0.02688455951385617, -0.6835925256492609, 0.741959002675927, -0.040955211964201876, -0.4681165485236398, 0.540378026694663, 0.6406164583381543, 0.730233987478704, 0.7005418390992073, -0.18145603610091884, 1.5176104528836099, -0.878343134936216, -0.6016704316231879, 1.131706635009454, -0.28679027590709083, -0.5031844636316517, 0.15363463336128508, 1.301073788439378, -0.10731289802498926, -0.878343134936216, 0.10464174786788304, -0.7920571250116017, -0.20752834779147744, 0.5225903814259071, 0.014308068503054605, -0.878343134936216, -0.21945861680707968, -0.6613516367646648, 1.127067243648751, -0.07669612486473004, -0.878343134936216, -0.878343134936216, 0.25376454250718866, 0.18231623421796164, -0.878343134936216, 1.1168097932529224, 0.39900716655866675, 1.6695650951511503, 1.7039099545540217, -0.7907872125407615, 0.5749323978408714, 2.1004579297520376, 2.2774491707590565, 0.8027676299213804, 0.2110831027513167, -0.878343134936216, -0.2236343310578581, -0.631653947623849, -0.6034516089742038, -0.40533505542099246, -0.878343134936216, -0.6242891567588182, 0.3387431169972906, 0.02913307142314983, -0.878343134936216, 0.18145973623649006, -0.17639783960867986, -0.34461584459960964, 0.6824823416986677, 0.9374195936548613, -0.8523341445262774, -0.878343134936216, 1.7578921454974392, -0.2347522644162085, 1.817020748403949, -0.21920237706679688, -0.878343134936216, -0.878343134936216, 0.3508653201685871, -0.878343134936216, 1.0488037443464624, 5.0, -0.3449907603508356, -0.878343134936216, -0.878343134936216, 1.347965988443742, -0.7344412113579676, -0.5805167602050038, 0.082264714562269, 0.6745745016354404, -0.01329911595646924, 0.02772266107596821, 0.19195508454202317, 0.8356923075851869, -0.015203609364856884, 0.09083351559169442, 0.659021611903047, -0.878343134936216, -0.878343134936216, -0.37870484638367236, -0.3768124170959932, -0.8021876564904818, -0.746513247439081, -0.878343134936216, 0.41667744594723133, -0.878343134936216, 0.06408435759952491, 2.6793344003002577, 0.31272872400388463, 1.1143270954710731, -0.7795492179811376, 0.5808503676414699, -0.878343134936216, -0.44292748331747755, -0.05706365172575011, -0.878343134936216, 1.684885327496871, 0.8948799755532759, -0.878343134936216, -0.878343134936216, -0.5054446302457927, -0.878343134936216, -0.5846189160727343, -0.5687180501527774, 2.0833100650022858, -0.6509708976058568, 0.4384126243601647, -0.01237902204456875, 0.4059071885381496, -0.878343134936216, 0.711173986891137, -0.40828072065861, -0.42920894040926694, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, 2.950811834690744, 0.16063542623138644, -0.878343134936216, -0.878343134936216, 0.9182747621008679, -0.43259527358540784, -0.5007420796649182, -0.878343134936216, 2.357117348586468, -0.878343134936216, -0.04169046826200049, -0.3841731138024134, 1.2876543374649179, -0.3478565076123616, 0.4858307326853381, 0.2740597780421575, -0.878343134936216, 1.3899028372201914, 0.1948392282229088, 0.026878118037640737, -0.878343134936216, 0.5476351684826078, 0.010440835456437406, -0.0008175548366681692, -0.25651359085547265, 1.4993695023734277, 0.7236725251219797, 0.6700026911862176, -0.3546531384397166, -0.878343134936216, -0.878343134936216, -0.501643722568678, -0.6094131133280359, -0.878343134936216, -0.878343134936216, 1.6427299052393667, 0.16293230380107485, -0.878343134936216, -0.878343134936216, 2.361081149187525, 1.2445335671956688, 1.3969906446079767, -0.878343134936216, -0.6288849316831123, -0.3611823934153652, -0.8482750540894383, -0.878343134936216, -0.878343134936216, 1.0709355648456669, -0.06906837983929469, -0.7315617350178983, 0.11352487110108941, 1.9455124773246155, 0.59261021048128, 0.7997565127347646, 1.040380040298228, -0.10598895630767538, -0.878343134936216, 0.6529842018485622, -0.878343134936216, 1.1227879198907251, 0.22383711647950078, 0.28628613660852487, 0.6303429588405709, -0.878343134936216, -0.015115557660323688, 1.1329447085735032, 1.1025444345206068, 0.4115033028831229, 0.2965290663884776, -0.05716191153241996, 0.34700840440166897, 2.292913299132753, -0.6956975333543891, 2.7302987050481415, -0.12625405883526541, 0.49286711744096756, 0.16190483375599854, -0.878343134936216, 1.0341575742745197, -0.800792735710045, -0.36640916006482255, 0.8227472331218124, -0.878343134936216, 0.023665295303443728, 1.6472295493194542, -0.5474464669665894, -0.7921143135838031, 0.2638189226358997, -0.7856514726844267, -0.4222332037898675, -0.878343134936216, 1.119001205296786, -0.3050397422671924, 1.6461039286452834, 4.922159468695545, 4.1571282659254285, 0.12671766945483465, -0.6849058362013807, -0.5748265893895335, 0.17639957454811866, 0.4546483105713515, -0.6712295313628406, 0.591985496465987, 0.45033743449761776, -0.10215889822124807, -0.5639263560917392, 0.6548634752399061, 0.39201008572570684, -0.878343134936216, 1.3943160126704277, 0.43324022813706375, 1.6873745759325072, 0.7381128954877433, -0.878343134936216, 1.0593625248160965, -0.6076728229743499, 0.27544862582065577, 0.11559596947056312, -0.47611598856219434, 1.8562855855043612, 1.1980739286957915, -0.878343134936216, -0.878343134936216, -0.36225992137306234, 1.5900316424364351, -0.878343134936216, -0.23514645000729967, -0.5069361595222608, 2.0731978207651975, 0.6092129516591595, -0.36244830725796034, -0.48676664195104624, 0.14159769786666498, 0.049561012285904704, 0.848463353013194, 1.0427526870966068, -0.878343134936216, 1.0732106069027496, -0.050446235868005736, -0.33614557632076036, 1.6646783074327698, 0.28694797099522695, 2.4292155909080337, -0.22723517085083897, -0.863150379336564, -0.0008063095476822128, 1.1405576600391527, -0.27082835243504466, -0.19292775935205986, -0.6225199070565559, 2.07607443119423, -0.878343134936216, -0.2826957897631576, 0.7170328916301713, 0.20247849148123825, -0.021240964830558713, -0.878343134936216, -0.17563425173329317, -0.5883964870457657, -0.878343134936216, 4.655893734450828, 0.5394393180082762, 0.7215874520244462, 0.06184316058694858, -0.6258025215478777, -0.16988659893092029, -0.5401422150602224, 2.2298809432848037, -0.878343134936216, 1.0033598938924253, -0.6151552253690876, 0.562271075863645, 0.30098110905112657, -0.878343134936216, 1.2814349284129818, 1.7954420214387459, -0.878343134936216, -0.6956510237125663, -0.07930273918055555, -0.878343134936216, 0.4335431958742964, -0.8575552356483608, -0.4373440335698081, 0.777217459925708, 0.8543116675286211, 0.11153161633400858, 1.071380354237188, -0.878343134936216, -0.019813959493806283, 0.6440303315545551, 0.5218807272666265, 1.315030829733894, 0.4736409486025668, -0.878343134936216, -0.5650408133601107, -0.08761868497415067, 5.0, 0.307690288650544, -0.7904640128363922, 0.7072763478932329, 0.17370081436914914, -0.5247567491206393, -0.49194051207124845, -0.8219141963353546, 0.27574002073621273, 1.119349700077775, -0.8095980153408563, -0.3054220275039207, 1.0202155994836886, 0.045118904781488105, 1.2270048911062712, -0.878343134936216, -0.17034257902264968, 0.6449924042394144, -0.3223803054156002, -0.7085862585480788, 0.5587543573829309, -0.4867855569638314, 1.4414914192731223, 0.5648376220138616, 1.1083157788541287, 0.11030315039551154, 0.9207489440328194, -0.878343134936216, -0.878343134936216, 1.0576927631680824, -0.21774605755438634, -0.878343134936216, 1.3554671420849318, 0.6441587243686038, 0.7143843531301683, 0.5737235838637063, 0.7714196946219349, 0.5517407907379629, -0.8138963223476521, -0.2943396314423171, 0.13190611477969205, -0.878343134936216, 1.8606144758759784, -0.6211480363890993, -0.23915998098829208, -0.8284539698868354, -0.878343134936216, 1.3417843548285877, -0.6993261861315343, -0.7648200456669362, 0.10455822703221224, 0.003957162113326587, -0.05359562643811962, 2.7055883288668165, 1.0068210409935938, -0.878343134936216, -0.878343134936216, 0.5935271928326363, 0.05654357250299024, -0.878343134936216, 0.9105965224525598, -0.6354115936916404, -0.3531381359872103, 0.06251875134658326, 0.6463993754933639, -0.8579014342887288, 1.4498887023511233, 0.5427691245011921, -0.22046523393763082, -0.878343134936216, -0.878343134936216, -0.7436085237875756, -0.5199184089458253, -0.7262203319273252, -0.30318972846272546, -0.3678351828035088, 0.5391110210764353, 0.5459413877707467, 1.3418948425223187, 0.9164560822569587, -0.16246454443411382, -0.43176492363026675, -0.15383853436169395, -0.878343134936216, 0.36154899977023686, 1.9439728553316573, -0.7195687707867635, -0.878343134936216, -0.5210747358095944, -0.643754342576943, 0.4733350330711334, -0.4836182339790004, 1.4771765424389796, 1.3469510738184054, -0.878343134936216, -0.878343134936216, -0.5633178822389368, -0.2976875614106845, -0.878343134936216, 0.296728533796018, 1.1978217285253343, 0.5169543080928889, -0.021356747636086314, -0.41437588564390376, 2.5525543572117853, -0.878343134936216, 0.7539899334045838, -0.3838799720458489, -0.878343134936216, 1.6372699353154168, 0.29798538590088836, 1.0279824913131344, -0.878343134936216, 0.3331070436642703, 0.4635387487012752, 2.5497185791913064, 0.22871123960057724, -0.7560010506047772, 2.8350582887516445, 1.519095704450215, 1.3698318523995514, 0.04221183381237848, 0.09374877487802491, 0.8089993760379455, -0.878343134936216, 3.3881147023685387, 1.219105894425658, 0.6763842289191732, -0.6433732582934094, 1.0319137570004322, -0.5486368845243949, 0.6446189077965062, -0.15478046378618776, -0.878343134936216, -0.729466058049561, 0.03736085633465091, 0.34950103734175775, -0.1237163355616739, -0.3607302891271195, -0.6027039883173998, 1.8324676267227107, -0.878343134936216, 0.2536621339531269, 0.7342415682825155, -0.7547854812659036, -0.878343134936216, -0.028598495387653303, -0.039352376162291286, 1.4940634728132556, -0.3001977719384103, -0.788562719695319, 0.7506726823314096, -0.4707332071752565, -0.878343134936216, -0.878343134936216, 0.7520563987644484, -0.506617688571086, 0.5524824339231957, -0.878343134936216, -0.1183029298683242, 4.407894279910918, 1.3029077531420938, -0.878343134936216, -0.19042055120731605, -0.13773571724463882, 2.02588332194727, 0.15175263053086752, 1.6715449210779894, 0.11393712557885093, 3.3292029261020577, -0.5602478910514906, 0.23575668609393147, -0.4425726289434466, -0.878343134936216, -0.48682625290042697, -0.878343134936216, 0.4718081848530475, -0.476296349896215, -0.3162873785703469, 1.2675495075997716, -0.878343134936216, -0.878343134936216, -0.483195089039333, 0.10382335285588613, -0.878343134936216, 1.0926470517274371, 0.13573257000654199, 0.05838921920493833, -0.878343134936216, -0.3885394520781323, 0.3803729584666691, 0.4220779140993687, -0.878343134936216, -0.878343134936216, -0.6016397254336023, -0.4590652372546819, 0.4810154562707008, 1.0754404494487952, -0.8657493844880203, 3.08029336739726, 1.785188283080072, 0.09047879768961667, -0.09854523006462118, 0.16163647530622585, -0.10807544871352869, -0.38989543741017624, -0.878343134936216, 0.32330595548164365, 0.11174320245103868, -0.878343134936216, -0.878343134936216, 0.04099963533076101, -0.07499508384493078, 0.10273550761848793, -0.878343134936216, 0.5703254322163726, 0.3440646497714046, 0.47196845751548233, -0.878343134936216, 0.13298762771843925, 0.2420132155172908, -0.26512895611550386, 1.0267682184578253, -0.40101277029192905, 0.030051363905261478, -0.8778051517262084, 0.6851473660106787, 0.29339796306016275, -0.878343134936216, 1.0579056594158713, -0.13393317190407722, -0.878343134936216, 0.6763112983071116, -0.02252800453159094, -0.7558941794178284, -0.31190422694993036, -0.878343134936216, -0.04532187777261005, 3.0629895970875642, -0.8252630918427949, 2.150845340257216, 0.6952215072782881, -0.878343134936216, 0.23315946104852178, 0.04850209910269201, -0.878343134936216, 1.0851404392081034, -0.33358601753457373, 0.7876473016934594, -0.4740773978120933, -0.5558367353861734, 0.9861609340431775, -0.6042506522631654, 1.6253601916816482, 0.812221642631338, -0.33061922643852293, 0.970678245483781, 1.569158857593387, -0.878343134936216, 0.7184412821924392, 0.20850072585447044, -0.2591419315063291, 0.04550037118649204, -0.07441960891053567, 0.2767506774365932, -0.17212157282240795, -0.36727548402696214, 0.04276121530922591, 2.1777628500514896, 0.7287012436722167, -0.878343134936216, -0.37635348921006334, -0.878343134936216, 1.4766439742868245, -0.36511022000942933, -0.6887172249245403, 1.4816242179991044, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.878343134936216, -0.6692220289237939, 3.545854882052782, -0.878343134936216, 0.38247189711469987, 1.3854890067045906, 0.834605663300982, -0.005313650645972415, 0.48337827708842307, 1.1356158468290372, -0.3042347760954408, 0.2588314732044648, 0.17637893998871843, -0.697349690120372, -0.878343134936216, 0.5363460992943092, -0.878343134936216, -0.878343134936216, -0.7509720045218513, 0.6149821124414361, 0.09062203865222872, 1.7775899614078463, 0.8730582193329086, 1.2877462649729492, 0.8738434243657637, -0.878343134936216, 0.7443972651896579, 0.5226533768797402, 0.45282002310191366, -0.7326584509322874, 1.1024282695935925, 1.0189487030430342, 0.683845641927429, -0.7957149486688522, 0.7757099361362666, 0.9449818867312942, -0.878343134936216, -0.736158847367338, 0.5840517813203373, 0.8240127102541578, -0.2600724518754913, -0.06324015399545356, -0.35914645022116587, -0.527148420109375, 0.3013511118120196, 0.8735319407786203, 0.42365705837011614, -0.34978638480414054, -0.878343134936216, -0.878343134936216, 0.9350804643682971, -0.009522172754423915, -0.878343134936216, -0.6592286244640004], [-0.14423245557543202, -0.5553849879796359, 0.48500343168469606, 0.23769066986968265, -0.13868370508420128, -0.33016980227728543, -0.3174466464883589, -0.15379426092081058, 1.5800586673025767, -1.392846772827294, -0.5481566646163254, 0.14054639772246635, 0.5464163238021861, -0.43112071857473844, 0.12654349556930705, 0.7203425060023092, -0.7836883649925679, 0.8823765598561869, 0.43379103347674847, 1.3556940372903852, -1.3080847647043123, 0.02199370993104825, -1.392846772827294, -1.233691161111311, 4.488601875587444, -0.793768315051025, -1.392846772827294, -0.8760707960468802, -0.27320360697971996, -0.2734673819105588, 1.0670102524496703, 0.158030640756502, 1.054896995418902, 0.9552245331751829, 0.46341064641001173, -1.392846772827294, 1.037376136920854, -0.7883906521102019, -0.3237167216203414, -0.8238781803292028, -1.392846772827294, -1.2317090978398393, 0.6281706138659773, 1.1232714205777057, -0.4540953427426899, 0.6695526933259024, -0.9135278054587929, -1.392846772827294, 1.2507231020211165, -0.42682479131245155, -0.9867170923382734, -1.289717173601329, 0.7750412707430571, -0.16996896265422265, 0.09790632579162711, 0.3391163666836387, -0.10882314803883351, 0.39874931648067585, 0.6605128378300626, -0.12472847482926643, -0.5034033060525965, -1.0462165751792873, 3.0626007122225003, -0.4431409292499361, 0.28204420192555607, -1.392846772827294, -1.392846772827294, -0.3636094132358897, -0.5723721940386616, 0.9999961994709163, 0.8232684317097749, -0.557466541210391, -0.41024444767396395, -0.4632232189421796, 0.07960405021485757, 0.8246352654423035, -0.15639209219393363, -0.36447037920502773, -0.4508914896428914, -0.26908293137942946, -0.3866881401936404, 0.8189001350598276, -0.5733256320031508, -1.392846772827294, 0.7316684587620963, 0.3576795453901458, -0.7381961638013873, -0.5196714131167184, -0.18939648169615333, 0.92537632487453, -0.7903001126601681, -0.5129915319680719, -1.392846772827294, -0.22679307559247103, -0.4583551571061722, 0.6451413788637158, 1.5862499832894446, 0.0931395667393492, 0.053409203680860454, 0.3327673888164926, 0.5939118934392329, 1.1384575047831826, -0.7330445116069657, 0.16167567429996804, -0.31663040882132054, -0.6323500471475528, -1.1666219695514783, 1.899420180191058, -1.0216246962230748, 0.4567612781480296, 0.15431194551489058, 0.8813560653360599, -0.4439573105070289, -1.178535851791027, 0.6626135603331524, 2.2193029249787948, 1.7916624491364272, -0.0635851012448193, -0.007929165198148928, -0.20791170132432016, 0.6767222883567646, 0.47482318397290246, 0.38192142358755904, -0.9844022052683167, 1.2098550749577082, -1.0533647752919675, -0.46400097447450683, -0.32483765738386405, 0.26323878679645374, -1.392846772827294, 0.2480094819844568, -0.9785263566320421, -0.16737831088383837, -0.4739181652057425, -0.33157533352960444, -1.3475073963264115, 0.017121268598369127, -1.392846772827294, 1.8385741816102736, 0.2490451970503966, 2.4010833395914974, 0.9929357328817731, 1.3422413722275754, 0.10322475783480958, 2.614705997597143, -0.7004140306076837, 0.7745835056480584, -0.07646843173996955, 1.1198462234082835, 0.04084033540590809, -0.2265468186483306, 0.33853224234033424, 0.9452483269313892, -1.374599104099687, 1.1450968217413282, 0.6346166586102311, -0.4423076043663645, -0.9034865888176445, 1.3023035215397576, 0.6061237968377156, 1.284129902652184, -1.0574389277144716, -0.6338412298676153, -1.112029138373724, -1.0775175558603163, -0.3261148909221358, -0.26540702597417026, -0.34702662856646976, 0.6255144850305738, -0.1049610063323811, -0.5237468578497171, 1.0613045580284446, 0.6665259585588112, -0.2889982976328604, -0.5949176275325398, -0.199080553973269, 0.4227561377582323, 0.05846343002302815, -0.09569427854981047, -0.8402647491886134, 1.2764199782447567, -0.2900177870226003, 1.4975710628284444, 1.5708456422005301, 1.253497261881648, 0.16604152991898488, -0.569280771951845, -0.35062061584541265, 0.36655685694384676, -0.23347173622565137, 0.019728002454889638, 0.5481544814166619, 0.8442635951760008, -0.9295993018402546, -0.9687264430781412, -1.392846772827294, 0.7610746968737828, -0.3153495855316755, 3.280209430151973, 1.0016005311542324, -1.392846772827294, -0.6149898659209411, -0.13716466589348594, -1.1966054396838368, 0.15174771431461836, 0.815057952371008, -1.392846772827294, -1.392846772827294, 0.13398993222600286, -0.23444556397793542, 1.464103954374322, -1.392846772827294, -1.392846772827294, -0.45093435127427783, -1.392846772827294, -0.3558819708417713, -0.8822123939772475, -0.30320373355844715, 2.6223016243208748, -0.6180738931199316, 0.8816550198303527, -1.1464818130671122, -0.6305286073012352, -0.16300857833333648, 1.8447959386887904, -0.17322515432902685, -1.392846772827294, 1.0593910769569355, -0.008058109067436902, 0.25111964257343783, -0.948843528177116, -0.3036763602241262, -0.31392933629873004, -0.6232635966788993, -0.5111407997505563, -0.33052425432778815, 1.2366337586549174, 0.4637493753495074, 1.805663341028812, -1.2663687665717336, -1.392846772827294, -0.4313495293272094, -0.2934762252897245, -1.1955302732503121, 0.46305439948382554, -0.8094643234389398, -0.6771962366817694, 0.4639436526937743, 0.6291402775066663, 1.1835054383445305, 0.4514991334063651, 1.3021122595866403, -1.2409547537818535, -1.1521695946289905, -0.7062413458054031, 0.07540102571809522, 0.6004443793965382, 0.801556753869639, 2.6517668779451253, -0.3794905451020759, -0.627393605632757, 0.42690301854354035, -0.607386413539223, -1.392846772827294, -0.43971085001865357, 0.011352681733094352, -0.3695813954139153, 1.3882806515278923, -0.562391464708136, 0.46826212359467034, 0.9718506820411783, -0.7702659974313414, 0.2339517284303225, 0.32858776949866897, -1.392846772827294, -0.6151002866731544, 0.7782248058500799, -1.392846772827294, -1.3135340162618776, -0.8451620674983054, -1.0317673233404925, -0.023996605160553016, 0.582180442364428, 1.1554763724493133, 0.6542368037108021, -1.392846772827294, 2.2833176688909447, -0.8978124483109815, 2.7230912171916497, -1.392846772827294, 0.39903922480150766, -1.1090879832793525, -0.5222510802478979, -0.6791843845818171, 0.7524028626886365, 0.2538403869335492, 0.11955223938662772, -1.392846772827294, -0.41197355911498473, 0.6183345515157591, -1.045409204198137, -1.2816561894584515, -1.392846772827294, -1.3845306959038108, 0.3187413686644984, -0.29909404259735584, 1.0378970816400175, -0.6383584294044929, -1.392846772827294, 0.9070384389641588, -0.04574561641497264, -0.9215224689450675, 0.3937928749658753, 1.319150942680352, -1.392846772827294, -0.10471202117719088, 3.489718807445161, 0.5778114277641976, 1.432960133008379, 0.13551945349072242, -1.0308462290358684, -0.9153100811176389, -0.40871169563300835, 0.5849767150934069, 0.6819898895205091, -1.392846772827294, 1.023628825065416, 0.1306580685922671, -1.392846772827294, -1.054002063853096, 1.389883978080821, 0.5347367087371945, -0.09083633981267258, -0.09878620320181716, -0.5922613551070749, 0.6803973322216886, 0.798502019041841, 1.1315582898256868, 0.6578600115659127, 0.8700825229463056, -0.23363040323630901, -0.421358964077924, -1.0009324000801325, 0.05353886550041995, 0.059520396417103896, 1.504831837544155, 0.5176469075839527, -1.105792286390692, -0.38870313943395246, -1.1549760802006293, -0.8872529792642092, 0.11635405809400026, 0.07523905613617597, -0.41118840869483014, -0.7270695858328161, 4.31428067714632, -1.2037714449633239, -0.5900965914395089, -1.0068078897412687, 0.08103391998148733, 0.545454701204571, 0.7009360229034188, -1.1887159020665017, 0.21099052993250256, -1.2613247440978324, -0.5660194110350609, -0.17236332681956534, -0.2939011082621522, 0.46278890147231944, -1.0945955467315491, 2.5679975886410245, 0.28438816598164074, -0.9668566851783524, -1.3811236836295888, 0.5417930112147491, -0.04319114933842139, -0.26075298511498035, -1.2285301935120774, 1.2772579698051119, -0.07955461278979228, -1.392846772827294, -1.392846772827294, 0.6883894110869776, -0.6617563570542687, 0.48286465781706256, 0.4654644149651486, -1.392846772827294, -0.7671480829793949, 1.313885495367422, -1.392846772827294, 0.7430821450454261, -0.8039522602067383, 0.2590789829061992, -1.0466962736551704, -0.568076338571403, -0.5752443541116585, -0.0010227707379025144, -1.392846772827294, 0.8196133468624838, 0.2627389498153744, -0.5794508965647748, 0.6807113636717425, 0.4110725021717037, -1.392846772827294, 0.6579002167812826, -0.31323385786785596, -0.3296147549200964, -0.2835433114474776, -0.5889803941477982, -0.8614360617546786, 0.9330233568379084, -0.8301634042119764, -0.49780257596149696, 0.9333969781607456, 0.20077208726610152, 1.310478964905142, -0.3708948136460205, 3.1779589520627116, -1.392846772827294, -1.2725908646766246, -0.52409908425437, 0.31997566877635814, 0.06901040673502423, -1.1034912198635196, -1.240414083378912, -1.392846772827294, -1.1340501809871322, 0.9979417129654969, 0.16004233742555793, 1.3350325771117186, -0.11612728695112749, 0.07635532522290779, 0.3221592427411183, -0.24318610600435128, -0.5773585740799022, 0.1065471445249165, -1.392846772827294, -0.2966650732287869, -0.2941141959036133, -1.2979015554476305, -0.5922532422689737, -0.5940083435099294, 1.0839079301094714, -1.392846772827294, 0.7834397094636872, -0.0821175516795734, -0.6810909015356583, -0.12439577667208243, 0.7781275953829201, 2.9628156753757446, -0.4770074334417375, -1.392846772827294, 0.8510755073801217, 0.20136425265248, 3.8787289636395714, 0.34931197853130885, -0.28159565594290975, -0.9327167137270076, 0.39028008786297447, -1.2954723347964656, -1.392846772827294, -1.0568729316155983, -0.43014811133792075, 0.8838818144016211, -0.27632288553718726, -1.392846772827294, -0.7621115182139702, -0.36797139192342737, -0.3569167525723582, -0.235569874107747, -0.1347250708608608, 3.324982819528354, -1.0039098116633651, -0.2001209357159971, -0.3943369670327047, -0.3842792016377281, 0.3976030370724626, 0.659096178348495, 0.3926882366735871, 1.2040494418582768, 0.35856664474926847, -0.4116403583926047, -1.392846772827294, 0.406199486478793, 1.1976186176598476, 0.5152600101014644, 0.48391186008740583, 0.8114624573964888, 0.49458706271841835, -0.3004144249471244, -0.8592921904400997, 0.32459926854391075, 0.43009516905385614, 0.11784179465274305, -0.4483984791098402, 0.7580761057574507, 1.2665389722073481, 0.9642873630798056, 0.2426198292740474, 0.3206605933381916, 1.44475548165762, 0.9008412357850316, -0.6726368934637816, -0.9866394460160892, 0.27516724342657184, 1.0209930860177894, -0.040085009270977356, -0.7232998443266841, -0.27117518206927527, -0.03451041256986588, 0.052442124661153576, 1.1017130969161957, 1.8781467391984437, -0.39091126729809605, 0.6848460393023875, 0.39678701479051515, -0.5909146239822345, 1.4778819945015247, -1.392846772827294, -1.392846772827294, 0.09195609750691572, -0.6862607178720236, -1.1600247065306648, 0.8767252860657571, -0.08776638443906158, 0.09681159521312335, 0.22546282797510367, -0.9902840128918683, -0.30157233514978105, 0.7327463893041802, -0.15867445611644804, 1.243057403350608, -1.392846772827294, 1.2317226915974633, 0.966869399446896, 0.2993277060628576, 0.5048391054576705, -0.9755367757916575, -0.0530998682564213, -0.010848925374336045, 0.5059931387288419, -1.392846772827294, 1.7109906844964768, -0.14492570836045512, 1.8188196362183227, 2.6398489033890113, -0.46395402052655765, 2.2001804630084885, 0.5126176659113184, -0.05631226496448611, -0.35515217438777835, 0.34964467668850485, -0.4248476280516028, 0.4827417447300742, 0.27858712776396605, -0.2705939295270687, 0.03267307667364973, -0.7123181487234994, -0.13743447160663272, -0.4161937426233152, 1.1219779613632301, -0.5686690783180012, 0.8057742809619544, -0.16313436322143446, 0.5915297344285649, 2.1971291743420074, 0.9001283111624911, 1.6559009240362523, 1.5288438280636871, -0.03595837468341804, 1.0220949960990438, -1.392846772827294, -1.2512307850346451, 0.9488792886494696, -1.0191795011783036, -0.07853713366081505, 0.47991072320781736, -0.5707524982194693, -1.1540301089189946, -0.17316757471701774, 1.7032672626238954, 1.1446249848209442, -0.9130663429198818, -1.3776303372739638, 1.7460708836272607, -1.392846772827294, -0.9677385793979911, -0.3500597530909998, -0.8195751812567131, 0.3263830877958489, -1.0822418122563493, 0.7262776573312477, 0.7073817804675567, 1.1638841445235204, 1.1571753299788066, -1.392846772827294, -0.6242250038914352, -1.0699726164259662, -0.1596645095449378, -1.392846772827294, 0.1792710560364967, -1.298194245825773, -0.038005538096023715, -0.6159629039279227, -0.3353373929677996, -0.9321352457997181, -0.4662379639396847, -0.2907520347682957, -1.392846772827294, -1.392846772827294, -1.392846772827294, -0.5739751616164591, -0.5399409442405426, -0.5229411022566863, 0.7939576809845893, 0.5573161012790632, -1.3076580419843058, -1.392846772827294, 0.16455077796908052, -1.1271329634265048, 0.9504814664819594, -1.3441602717621541, -0.8223276231214416, 0.5556636669273429, -0.17823357544369253, 0.07439445943328983, -1.392846772827294, -1.392846772827294, -0.8629304393534636, -1.392846772827294, -1.392846772827294, 1.0889554077190677, -1.3487219797288588, -1.392846772827294, 0.14576919878908423, 0.15558702520233986, 3.8097580653927365, -1.266140449410075, -0.22397598230552743, -1.392846772827294, -0.3197280770755264, -0.40154001854635407, -0.4612329171913081, -1.0901417781014207, -0.09576851460818717, -0.7329161420978914, -1.149164380421379, -0.5160176923749401, -0.5938347431335644, -0.8844765219627994, 2.509127676395695, -0.1397011842131785, -0.7335012715715806, 0.5667172293530136, -0.9465421385723192, -0.344053668274938, -0.3613773776276068, 0.18808447001576153, -1.392846772827294, -1.126668144470059, -1.2441100913918561, -0.22954892772100483, -0.48200745453819105, -1.392846772827294, -0.22974191275478092, 0.7092774563722472, 2.106025879394195, -1.392846772827294, 0.3176373047324176, -0.7506939549991588, -0.32212050277512416, 1.8749621989610223, -1.392846772827294, -0.32868192212848485, -0.35173150030509176, -0.8112196759624931, 1.0292584167575425, -0.4750296958206695, -0.12837365196278444, 0.15057113740481975, -1.392846772827294, -1.392846772827294, -0.2150331936867903, 0.8939914158064188, -0.4669984168703977, -0.8244899098605604, 0.311365291134694, -1.0954721281191564, -0.5157572918103926, 0.3078437450384479, -0.3927014045124458, 0.5986785089014589, 0.12786107791300463, 2.7196927277724554, -1.298971301356583, 0.4568201500705298, -1.392846772827294, -0.51531424469602, -1.1551659062531976, -0.7384554874405239, -1.1664035152317154, 0.17350993585407637, -0.6260435001416266, 0.5635820840944751, -0.4503052114487643, 0.4064612511488658, -0.01683131783134346, -0.4956488687281583, -1.392846772827294, 0.9131028213425013, -1.2998302480905741, 0.8207586211403098, 0.4201093422763817, -1.1420988881803171, -1.392846772827294, -1.015755596319382, 0.32449186318285084, -0.7621212105426758, -0.34204383827660206, 0.8638057708767735, -0.16654864754667287, 0.18592329609957675, -1.392846772827294, 0.27550223902463383, -0.7117440038890103, -0.7370406946296632, 0.2130689959770808, -1.392846772827294, -0.02173577974626665, 2.147659815810408, -0.5283581806675773, -0.38534298855940335, 1.8337765506962025, 1.74691691623069, 0.48792936623324623, -1.3398815528705084, 0.11409696602113523, 0.9272191596390319, -0.10773186362164719, 1.9612549398898176, -1.392846772827294, 0.34324616025241156, -1.392846772827294, -0.585748469192268, 1.1728392818869673, -1.3075299147834492, -0.6662074333708684, -0.39257813245032036, 0.4627446757354124, 1.3198387390432833, -0.08814560577403088, -0.518099460990779, 3.4311777164255295, 1.2026126797690122, 0.20753963014326354, 0.5004833011424901, 1.0527695651656084, -1.392846772827294, -0.11523731579090694, -0.433166589676853, 0.3120246566667624, 0.2596431482318826, 0.2521384140128941, -1.392846772827294, -0.9081398040340186, 0.3672025814206974, -0.04462992168844863, 0.05942792442174107, 1.0353868403003732, -0.7912538019072536, 1.1225781677926825, -1.0079905333308807, -0.29769569084778136, 0.038060288353128864, -0.5652993787048007, -1.3888974296096703, 0.9799656739934557, 0.5466351550458429, -0.1875608982294339, -0.8129520540772621, -1.3169648852384621, -1.0502760455186784, -0.5757245192552205, -0.3034739700417546, -0.5390611679742142, -0.8976129299297075, -1.392846772827294, -0.19520965327347076, -0.05384194166010801, 0.39282723184672347, -0.9291298700532954, 0.19226495087392043, -0.5784255199827838, -0.14210746635306848, -0.6344811389472454, 0.9868574222680971, 0.2687082755773836, -0.04230850127100333, 0.4812105003846959, 0.34928354770044595, 0.8916974210894493, 0.21246204081504538, 0.7783706933458511, -0.5784494995219503, -0.11146922557040058, -1.006056267598932, -1.0151884515000686, -0.17211146986327724, -1.392846772827294, -0.7327944495263692, -1.2943005591791334, -1.392846772827294, -0.9920199807580103, -0.16396259065805693, -0.9347302770667704, 1.0302997318356262, 0.7387717151875921, 0.8238993664109802, -0.7568945325445728, -0.5993260576028357, -0.28349815237521425, -0.04444627000824938, 0.054855442713742125, -0.6186187455832225, -0.06730106827538482, 0.14082941372066327, 2.506793189283239, 1.6692645632650283, -1.392846772827294, 0.16226712173606325, 3.2438822949844988, -0.5104797829328576, 0.9477730708665744, -0.9460225579586894, 0.17527953969057694, 0.2751688229171786, 1.448501459009667, -1.3676375374044485, -0.24650303627237816, -0.43533767130683426, -1.392846772827294, 0.8640211559591129, 0.2005014200126313, 0.03349283229704234, -0.40296062675443645, -0.5668517307882488, -0.7358789792905522, 0.8037387483437921, -0.35342421166719673, -0.6661601204477808, 0.6598985595752245, -1.033283347140053, -0.7768712117514436, -1.3663220842320336, -0.7115002597708292, -1.001161785192824, 0.37268456253640614, 0.3703701780316356, 0.9431276454106781, -0.7560713307598722, 1.6422567098402097, 1.1628686756553175, -0.018101659046984225, -0.004142551860564319, -0.7964619567882745, -0.6742318917935324, -0.29491973611156375, 1.3353628342379842, 0.02970305997825597, -1.3162961414809335, -0.5655318510036729, -1.2115025489038422, 0.35104295664304613, -0.7930886674237024, -1.392846772827294, 1.899389739099409, 0.22320214615086953, -0.31468914307419493, -1.392846772827294, 1.1283194725475219, 3.2230422087775574, 0.7381720831183591, 3.174749427155745, -0.95911262223538, -0.8166748416354436, -1.392846772827294, -0.3076887689230275, -1.1003223668396003, 2.0866090578113523, 0.18856104540795413, 0.18730018113594218, 0.15400394484714816, -1.3710152601119658, -1.2537936700781593, 0.6468571364296283, 0.13759791953530065, 0.13873084506840005, 0.4042218206527555, 0.8471328116528771, -1.392846772827294, -0.17980703526521524, -0.005734534799165265, 1.8140604874389512, -1.392846772827294, 0.26603706978620734, 0.9322884629369722, -0.22837895595373717, 0.4938488662462167, -1.259478911890941, -0.7285512916092558, -0.43735051669632347, -1.392846772827294, -0.14394211648443261, -0.9713472846575605, -0.2729322217759723, 0.10239897142911736, 0.83322367380556, -0.1156113678839001, -0.8372809837454516, -1.0970798880150363, -0.8463347315791017, -0.4490681113308338, -0.20746915677514613, 0.4762168690456874, 1.1354602059773535, 0.15324363550648712, 0.21048308267851681, -1.0183050377440055, 0.40664188743792723, -0.29395911864432894, -0.9352268832716187, -1.392846772827294, -1.3919311886508012, -1.392846772827294, 0.6708375371370844, -1.392846772827294, 1.5977173722532985, -0.9077125159281709, -1.3013446475276378, 3.6492088762965036, -0.12900243281316354, -0.43726723446448557, 0.09126901909425596, -0.9172928443906277, -0.5611597492172644, -1.1137240574329235, -1.301287633301467, -1.0291641433378254, -1.392846772827294, 0.8019768983702501, 1.0213704406820598, -0.4234583224754858, -1.392846772827294, -1.0439602010566997, 1.446947240255506, -0.9697978402727238, -1.392846772827294, -0.6577216201018327, -0.5860110236076407, -0.19495212451001895, 1.1881491407197564, -0.4553182992402136, 0.47951139926515096, 0.02744036789324717, 1.640157136057571, -0.9613656219916774, -1.392846772827294, -1.392846772827294, -1.392846772827294, 2.1884307759966974, 1.8287190217827576, -0.6514216064434044, -0.2846653959314384, 0.24875241692846697, -1.3604454660428094, 0.21616795654178605, -0.8909171102849672, 0.13985257057722367, -1.392846772827294, 1.3250435913530425, -0.03328085092982648, -0.0476104204578584, 1.103810373257956, -0.692068217642168, -0.21187040734269275, 0.048369910704389854, -0.2942053755884709, -0.7697083654531643, 0.560716026598812, -0.5869712103047092, -0.8905233145594236, -0.1855279502322538, 0.9586459970031719, -0.6714981525334522, -0.4790724738161794, 0.0337836021581976, -1.3742976412666286, -0.7705772288753209, -0.1982138444019352, 0.9820524682612118, 0.26305886845767584, -1.0810460301767146, -0.3830257322535401, 0.27069541834705013, -0.1089147584938611, -0.017620345182983096, -0.5518592777717947, -1.0904057325198273, -1.392846772827294, 2.0202819396552063, -0.10539823804952717, 0.23235242239893084, 0.29548222080277275, -0.47992109104059666, -0.5553710597443104, 1.1294236800696544, 0.1824530116529242, -1.219245337485077, -1.109782115553462, 0.5446791713180972, -0.24434035466060763, 1.5192293251681717, -0.0856085130941305, 0.5417495034281137, -1.392846772827294, -0.6094292692501843, -1.392846772827294, 0.5644156243631256, -0.7118206809783231, 0.41592527166685317, -0.6208704530290264, -0.24987187434524935, -1.392846772827294, -0.12644365803495963, 0.25031022543400955, 2.1276157928677932, -1.392846772827294, -0.6390789642999444, 1.5334074071882886, -1.392846772827294, 0.12526540049070795, -1.392846772827294, -0.946176271112452, -0.5131812862256133, -0.7563615980558374, -0.12888669922891396, -0.7370054432711879, -0.07398159557927582, -0.1549447044406128, 0.6860274982740466, -0.48452035229384477, 4.488601875587444, -1.0084282317157092, -0.11442100632883176, 0.1847961141686613, 0.3889579106375203, -0.17506841986369634, -1.392846772827294, -1.2694643078982515, -1.392846772827294, 0.11309068691644551, -0.43873745303653355, -0.5815849319605926, -0.7535677663577861, 3.1684754032972475, -0.004694942801740393, 0.859923670152688, -0.6630436418963844, -1.392846772827294, 0.045282724524191686, -0.5401217959146805, -1.1737455260209875, -1.392846772827294, -1.059556737434088, 0.5102067888896722, -1.392846772827294, -0.7550634721645781, 0.6731619729456914, -1.334335001101996, -0.45410022480455736, -0.15866253814190076, 0.9858278815745204, 0.7797899374484242, 0.3216345646805333, 0.9240272963088082, -1.1113141855416546, -1.392846772827294, -0.5718756596288429, -1.392846772827294, -0.4684605943993717, -1.1746407382182171, -0.04736186607284755, 1.2035460151258282, 0.012645279407246465, 0.1375465142956431, -0.11563017818109401, 1.4393923931073629, -0.03743491121787329, -0.22931631183207826, 0.18731870425302044, -0.045705554789654566, -0.9041477851229123, 0.20783226667512947, -1.1713851926986574, 0.09803124913938986, 0.6939394538886994, -0.7799743364277344, -0.22039994378344638, -0.2953714704242559, -0.4899683743615653, 1.5921845602581757, 0.07198875165361944, -1.392846772827294, -0.2018187445250512, -1.392846772827294, 0.18468598059655547, -0.5254086973500207, 0.5622072093188722, -0.7856175691750823, -1.392846772827294, -1.392846772827294, 0.4163945239662556, -0.8775323274206077, -0.517287890000524, 1.1870050151623694, 0.7261254518730612, 1.1098167452541217, 2.5191068980306377, -0.2948511000653239, 0.5005993219068435, 0.036624818574367106, -0.054903359345876604, -0.5306226676282659, 1.2225622204555135, -0.1206759327100201, 0.3134233673914836, -0.3007693795628197, 0.709229497293919, -0.8555850183003877, -0.6963518679547611, 0.36542737757205307, -0.057567672814418006, -1.1506705862509354, -0.2971181716470021, -1.392846772827294, 0.37672676617168815, -1.392846772827294, 0.5196851684131611, -1.392846772827294, -1.392846772827294, -1.17778263220933, -1.392846772827294, 0.25441445997300527, 0.14026395608450076, 0.972327401023423, -1.392846772827294, 3.347766540718326, -1.392846772827294, -0.7874955117079993, -0.1511262141108361, 0.013131044562940447, 0.5426360284270165, 1.1217335710897964, -0.01769673509218614, -0.0600309602061093, 2.7099972400859684, -0.33109344530538376, 0.6492240748944957, 1.6693851789111382, -1.392846772827294, 0.006477942959536943, 0.9431934096558134, 0.10198801669200788, 1.4850747075312218, 0.035776919300215475, -0.5230169896006969, -0.32657868679944013, 1.217067029054755, -0.15278367411446822, 4.488601875587444, 0.5507365177837529, 1.707657959322406, -0.6442986781803853, -0.3397517820253739, -0.5764318438656232, -0.7170637282426838, 0.7443724452786882, 0.7084591366494214, -0.40373938741714843, -0.871235149665765, 1.2048940385611513, 0.36478337617586115, 0.4406938381856137, 0.6362118005300338, -1.392846772827294, 0.6864881351701432, 0.33834241628777195, -1.2210700440051425, -0.07243857684940219, -0.37564297778619316, 0.5971461158356415, 0.5274961802192211, 0.9474591830065728, -0.36340041791099287, 0.0706649949375585, 0.13315466887669358, 0.2898777573702435, 0.9021695873828491, -0.23397889629953322, -1.392846772827294, 0.48282560132213165, -0.8054813148037789, 0.4329060879684403, 0.3277816549304938, 0.46515885532833645, -0.4151243556894997, -0.41937541105963294, -0.6961603906165623, -0.3360335175539205, -1.134831113449425, 0.29106366763360725, -0.03183159650578323, -1.392846772827294, 1.6310862651098743, 0.48563034586436454, 1.5069167651412003, 0.4395174048658788, 0.8035604094956207, 0.2655283302217187, 0.7039518448263261, -0.22258696390952018, 1.2792182612345102, -0.0714617337059626, 1.5706664418120238, -0.5798176255649703, -0.5251274762275132, 0.119614988240613, -1.392846772827294, -0.615749959876517, 0.1821964162248276, -0.2996427719921296, -0.4340002735355614, -0.20310696270251877, -0.37899429787236594, -0.16197372480773192, 0.33697342870441654, 0.26556982774759186, -0.3894767308546886, -0.26110363202902875, -0.05055573966382234, 1.462083642301984, -0.7365934834036996, -0.2566073966401673, 1.0111739672940545, 0.25310391354200656, 0.7935317928817824, -0.7098988716836361, 1.2538031086985642, 0.8666494283238733, 0.2763495639385662, -0.2405560387639052, 0.6631121050037407, -1.392846772827294, -0.33095739372837374, 0.6829199223060477, 1.7918830034607427, 1.984799975550838, 0.11657762780946562, -1.392846772827294, -0.35540719032526824, 1.1970973857605802, -0.9025113251648117, -0.9153217119120843, -0.945188766407439, -0.9592532327966344, -1.392846772827294, 0.6681758082895369, -0.4424361174654942, 0.734520300842322, 0.6948578558797947, 0.8508879787684371, 0.9500469629758478, -0.8867084857760552, 0.6403176145596483, 0.042791293481741384, 0.23240239173803356, 0.2828241831037345, -1.0647929282733275, 0.7412917206509687, 0.41721643344045045, -0.0911710482306192, 1.1476062015406254, -0.3228179196717401, 0.13639061435376082, 1.6633653094498067, -1.1773824646750997, -0.34117267741356605, 1.2089059446948716, -0.7985416074508032, -0.6048992901984219, -0.7682925675119199, 0.28408806276690834, 0.455229172262316, 1.2814602763516145, -0.33039495148335757, -1.0535650834185426, -0.9142335864761058, 0.2935025447159609, -0.7617643174612404, 1.440362200338104, -0.6378804899067808, -0.7157646690160667, 0.6184825928623446, 0.41688646349431263, -0.7623299186874629, -0.6857810552936542, 0.17030041094710943, -0.9151926244527364, 1.1722835883745375, -1.0151848617486956, -0.31612777183416835, 0.6444079208633227, -1.0223045592354798, -1.0385806355476486, 0.1797779289302629, -1.3375345195770127, -0.3347387660289517, -0.6683233046247424, -1.392846772827294, -0.6168687417892158, 0.7048692416870462, 1.6139134689048984, 0.04965834426694125, 0.761415579664093, 0.4724703173334209, -1.392846772827294, -1.1429619541540075, 0.9802222694215523, 4.488601875587444, 1.8648821771075381, 0.4450920015669903, -0.7811074055508951, 1.6655254782356161, 0.7923443031278234, -0.2584536057709532, 0.0626444852414066, -0.0721748019185668, 0.7650474029225086, -0.05847645427183247, -1.1581513588795045, -0.07644976503283935, -0.1629976654891764, 0.6078094004921067, -0.5925157248893179, -1.392846772827294, -0.9533480917891616, -0.6703881296141029, -0.05883858839027834, 2.4342391448066123, 2.3710313770029487, 0.12231893256430486, 0.3173102065873776, -1.1946892124525343, 1.4814114380507932, 0.27363398882043094, 3.1763119741330845, -0.05906402477645437, -0.5449836833783283, -0.3957801188794058, 2.567148397056394, -0.789021084246209, -0.38181684758139695, -0.7438657453238072, 1.2240044389668583, -0.10599356241711917, 1.7839085861722086, -0.5800412670754661, 1.9070953558051835, -0.09757100056725528, -0.2941724216708724, -1.1552642295432851, -0.4685033842357298, -1.392846772827294, 1.1626360597663792, -0.44545043169283405, -0.48073732870763647, 0.9586607867788287, -0.7553941600609971, -0.4876180923430777, -1.392846772827294, -0.22051273377156386, 1.0534461615042638, -0.1797649633791228, 1.0425066095821847, -1.392846772827294, 0.4180654814350415, 0.8626955325723413, -0.4106143356553682, -0.8403895648438282, 0.5034715537748579, 0.6792022321948238, -0.08391544275688494, 0.27858411237280417, -0.6240347470687014, -0.14479087729890772, 0.9648694771623472, 0.8013587431839387, -0.7411692676829733, -0.6930011222288079, 1.941301378681791, 0.7962895834760506, -1.366144721347511, 1.4125691964931426, -0.5834647411642235, -1.392846772827294, 0.21497501036572375, 0.8437014401111035, -0.5457885056360027, 0.5560658626711071, 0.07762408694794179, -0.18861563897765157, 0.9460341953018153, -0.728019649431015, -0.6601072252738239, 0.9077767790264124, 0.23715450460470627, 1.2122636545384882, 0.1621101778060682, -0.8139810922056521, 0.031106365584721712, -1.1853591435069986, 0.28522285497073013, -0.8494729999213283, -0.4422333683079854, -1.392846772827294, -0.0018762700241861374, -0.13651305422438767, 0.7136338350476472, 0.432054886123035, -0.17106211374211963, -0.10715793417224306, 0.815338240158159, 2.6986352462223997, -0.5145814328508735, 0.057870403096326205, 1.3026231530019552, 2.888653996644525, -0.17478870643675312, 0.32074947558217326, -0.10421663548781612, 1.1899437292258142, -0.36617910085825367, 0.06782894776336514, -0.5087953997939362, -0.2846526164165535, 0.9764357996740196, 0.6847145108121055, -0.4743733456797531, -0.17958978351216517, -0.833333477751362, 1.8424054514549328, 0.5887571540586282, -0.5159755486938299, 1.1587350051550478, 1.6399543869000621, -0.492580636435206, 2.0175037592731377, 0.39676375320161633, -0.02327305487395633, 0.3288571444416481, 0.5139174430882216, 0.5420766015731536, -0.8660160460430572, 2.1378256201309007, -0.1850387389152306, 0.47841236098500634, 1.3783447940895206, 0.5973271828948705, 0.9493712281775272, 2.3609186166169605, -1.392846772827294, -0.8955868742551681, -1.392846772827294, -0.26731138907718877, 0.7463430751920389, -0.012730385863601153, 2.6172182491975495, -0.8981209874414324, -0.8749694962233651, -0.4952318114137208, 1.8243854739260887, -1.392846772827294, 1.9213248430649699, 0.5358822701951362, -0.5023629961048967, -0.2484250609521481, 1.044630593674161, 0.28882280123694193, 1.4516167888406242, -0.08810166721722776, 1.1395226558103726, 0.4303036618135607, 0.9974018143590996, 0.7180707677438389, -1.1345116076285309, -1.392846772827294, -1.392846772827294, 0.937699223385442, 0.8919176882336607, 0.0676797576963402, 0.9664799832180263, -0.35735376890442394, 2.3998398497161246, 0.28658566818172226, 0.9494035359398751, -1.392846772827294, 0.7022626514205657, -0.18834927942582208, 2.4509820323872322, -0.3929564204499357, -1.392846772827294, -0.3949048656998055, -0.7290537132113267, 0.34809203742493844, 2.2163886212246875, 0.350876822949538, -0.707936498198442, 1.6455130451050775, 0.3823698553289806, -1.1600465681165222, -0.31900639345963344, 1.0660932863591182, 0.060599906449783116, 1.123697308680524, 0.6856222871391329, 2.7071863211713842, -1.340436600227697, -1.392846772827294, 0.27377958913608647, 0.7219142427431612, 1.59397369234213, -0.4075169545812718, -0.6164837768520471, -1.392846772827294, 1.9821777339683773, 2.005415486911915, -0.7604560684711101, -1.392846772827294, -0.4237180768847879, 0.1878188284142155, -1.392846772827294, 1.020605680049694, -1.1232061882465905, -1.392846772827294, -0.4830389336975148, 1.7731559885016057, -0.306413904620661, 1.7495974553754312, 1.4090647376134315, 0.6979655754378454, 0.3671220273999054, 0.3531431047859041, 1.229448512308075, 0.19478352043674255, 1.9200494761974047, -1.2209479924584836, 0.8746185327803678, -1.392846772827294, -1.392846772827294, 1.9093528786482161, 0.5906953326195792, -1.392846772827294, 0.8618281050507357, -0.8639271338219884, 1.1172750998853764, 0.31655305622793006, -0.30765078935350887, -1.392846772827294, 4.488601875587444, -0.48593507330967833, 0.08301043708708568, 2.701667006641416, 0.10512560298147641, 2.1279937218922713, -1.1387167680273689, 2.4271638884418114, -0.7998108358435161, -0.192563503946872, -0.19506642219371373, 0.13258849329024777, 0.06376132868835799, -0.9027551410780199, 1.461162368509791, 0.40376893761962934, 2.598745101455475, 0.015104833457504655, 0.2954568053630596, 0.18663909252321512, -1.392846772827294, 1.597599628408298, 2.812458508375812, -0.4714007443633595, -1.1176314120579134, 0.4422856775341627, -0.06681559029979474, 0.2900316859090888, -1.1151113168507585, 1.5952504951102497, 0.4044864571239261, -0.2917090624841577, 0.872799103194828, 2.3879123982163937, 0.08888915752445452, 1.501246681053588, 0.4439777427410211, -0.1393720758073639, 0.2857225483617576, -1.392846772827294, -1.392846772827294, -0.6889164877322963, -1.392846772827294, -1.208340049739853, 0.8295631325361772, 1.0692048828486422, -0.18867063396866646, 0.7059679927870747, 2.9358566425696018, 0.6303886494439114, -0.23554826380448612, -1.392846772827294, 1.845028554577717, 0.9008912051241343, -0.14799939707548748, 0.2921414545856275, -0.35994600016540695, -0.24551808029083963, -0.80294030929488, 0.34285358504234015, 0.9175225232321059, 0.42468713681643255, 0.22434052810606048, 1.0052449903374672, -0.6896317815907446, 0.1569040331858179, 0.8784398949112422, -0.2652127486299009, 0.8734630636086529, -0.5640505759973974, -0.564697951759882, 0.148895585054277, 0.3428079234048783, 0.8917535648009154, 0.8299852872975624, 0.3175533045503084, -0.3038455093087902, 0.9485717187518833, 0.15277668064797528, -0.09658999331222673, -0.7281392599467401, -0.06984763789891402, -0.21006332650186793, 0.034930599516682384, 0.6214096761313462, 0.144236231363059, -0.8185977637530564, -0.9276292462871236, 0.12943468132457928, 2.07311187983152, 0.04924695875967592, 0.18449328274289503, 0.6931372162520096, 1.3958487089610854, -0.2505452399076698, 1.2481990760362143, 1.0210513835800819, 1.7625800065985273, -1.392846772827294, 0.39863487520692914, 0.24666375599000018, -0.9809074028197903, -0.8701597319496441, -0.6473299360342036, -0.2827094839987152, 0.6198227188446694, 0.09994989945286341, 0.254436429251413, -0.896846446216689, 0.21606686914314144, -0.6045640792152746, 1.2664163463004754, 0.7454704784284574, 0.11026899874774145, -0.29771177293392936, 1.5064050101855737, 0.14554218291230145, 0.46403066826703354, 0.4884177160099462, -1.392846772827294, -0.7610926031844498, 1.130895478132301, 0.3354611382462841, -0.792721866628479, -0.84318917604159, 0.5160118476288839, 0.3897746508697513, 2.580371030851259, 0.7849331896246258, 0.2498912296538258, -0.7150977650061169, -0.8114268046166759, -1.0268982563741011, -0.01689363591516111, -0.1204873989679486, 0.3532849717601506, 0.15987548578176647, 0.728758031939474, -0.17936520866630085, 1.0071204200444208, 0.1352019758793512, -0.10427636895065158, -0.5113748515400328, 1.7020912600743165, -0.6134400984584809, 4.139003168939609, -0.11681910383560755, -0.6731509458602983, 0.5398423403190195, 0.10729754615179288, -0.01901417384582002, -0.5142052269070541, 1.6263549728011462, 2.182867810090041, -0.6288980704328981, -1.392846772827294, -0.18180078317740073, 0.5206269755831948, -0.5047812680143765, -0.4879175494025573, -0.819585017175473, 0.5639340233190205, -0.8492199224495798, -0.029720966288920764, -0.8354695952029766, -0.7042436491667053, -1.392846772827294, -0.9579761787459301, 0.6512120792044853, -1.1469702705363445, -1.392846772827294, -0.3094143624077038, 2.93606484814919, 1.1472719238928348, 1.2889924362710785, -0.2259558737774183, -0.6196207887812926, 2.912860408098388, -0.021895308297255646, -1.025844054088591, -0.4957297099290625, 0.0029397404169230015, 1.2955938454547204, 0.20780153840338825, -0.8176777822713579, -0.5574801104705779, -0.340280265222407, 0.6514235873553397, 0.17219780993245884, 2.0052322660018835, 0.6046041832867807, -0.08225353146154818, -0.10516677088103975, -0.6374973198452992, 0.6432749953302233, -0.5307983500604279, -0.6938309291560336, -0.5517416057218095, 0.8610660726294163, -0.5622208797229231, 0.5758386440000203, 2.3069617816898353, -0.42569351706497766, 0.12628144371913036, -0.2465044721729271, 0.23909483701648362, 0.7858893558001607, 1.0115441424555625, 1.1120372218629861, -0.06356528581723819, -0.09108762240872935, 0.47010481476912047, 0.5629669442993137, -1.392846772827294, 0.7442051628647408, 0.8746422251394338, -0.15908454931322227, -0.8437095105030084, 0.6779940654729485, -0.824134057807022, 0.9700122985683927, -1.392846772827294, -0.1700668910716655, 0.2544776395971582, 0.15620058550689445, 0.40424393352120286, -0.692502003198, 0.30115187412021743, 0.38675078790377, -0.5450059398368372, -0.7021096855659137, 0.1965219652313225, 0.9001008854620036, -0.18261895931018657, -0.3979892518739342, -0.5602210292334017, -0.09249049724503923, 2.306777124879249, 0.3098323237086693, 0.746182397920611, -0.6532313437002478, 1.288167080635542, -1.392846772827294, -0.6241065420961479, -0.3831581940791797, -0.6680529963464067, -0.7056669137908042, 1.7878851691524196, 1.9571689412877842, -0.01023450352944622, -0.027818972421803024, 0.3814748585168359, -0.356253079338642, -1.392846772827294, 0.6126368981376072, -0.4709269689772401, -0.6353774280698872, -0.087926918120426, -0.3151798620867921, -0.531140525161237, -1.1443659059157234, 0.48064461197836605, -0.3635020078748298, -0.9629079945663102, 0.4607151738995615, 2.1006495805588994, -0.5957099574554391, 0.8471616732539076, 0.04904894807397562, -1.392846772827294, -1.0393046883994475, 0.17468522045337215, 1.701178314505313, 1.8044353588793678, -0.2274628514035202, -0.3825361619613835, -1.179913616316482, 1.2000613716736745, -0.7117561372486485, -1.392846772827294, 0.006088239550551626, 1.945256710333866, -1.1516777268959544, 0.2554781750996522, 4.488601875587444, -0.8195673555987217, 0.5750766115787126, -1.392846772827294, -1.392846772827294, -0.16954250019118475, 0.3960498234486886, -0.6078614094408088, -0.2955503836326535, -0.8891839783224095, -0.5320478707181062, 1.8354780928466778, 0.20645825343986188, -0.4085571209389163, 0.03238848118485781, -1.252741433181525, -0.34625239099048705, -1.081630405802614, -0.8228388396143742, -0.5941030411511317, 1.093290104296164, -0.5825751289791342, -0.7476092816449216, 0.7707585537658145, -0.2801542989718946, -0.29787431687606813, -0.5198474545240171, -0.15858959439401515, 0.30060235498015125, -0.8124192990760959, -0.32016437545731863, -0.9955782141132845, 0.13493633427780516, 0.08174081382172821, 1.8816224800671764, -0.22633868486376288, -1.0181176886198846, -0.7945172089823194, 0.10478328429061165, 0.3045548148311281, 0.9594063063438328, 0.219639246118814, -0.7221326725654872, 1.7082564426711997, -1.392846772827294, 0.1349155137198486, -1.13462382325643, 0.13528741196201544, -0.7092371369156621, -1.392846772827294, 0.5646321581659042, -0.3456032203523153, 0.2777416695207564, 0.22567304381546693, 0.9525777376933443, -0.7276027357066331, 0.2669422614922524, -1.392846772827294, -0.5363985775863349, -0.9108862151164415, 0.5098878753777579, -1.392846772827294, 0.9584732581671327, 0.2901108040293377, 0.17258378000001104, -1.392846772827294, -0.6447333252765468, -0.29607958477996055, -0.3417494786640715, 0.11251948567807553, -0.21043946065065544, 0.7709783901398585, -1.392846772827294, 0.14103288082844362, 0.19884123179795324, 0.04520073460284488, 0.13869882448615597, 0.4493284825465515, 0.11238106486517051, -0.6991760689494239, -1.392846772827294, -1.392846772827294, 0.04778004275888967, 0.450874373077523, -0.8982849313866065, -0.7511405200698759, 0.5793739747415484, -1.392846772827294, 0.4456254386209085, -0.8089508454026427, 0.2725465813347176, -1.32919126879654, 0.15124127219100802, -0.31228149682877865, 0.4084433682666079, 2.212344263738579, -0.7180422226717516, 0.07565747755612812, 0.18565234166599084, 0.0052077453339598985, -0.8374479789792915, -0.29012260776267196, -0.885019184677754, 0.10750704404188462, -1.1156927129830192, -0.025457777559143552, -0.3214720500872277, -0.3461686061934566, 0.6528166980679048, -0.16476942317649154, -0.7627452529212405, -0.6673160921846961, 1.0193584568328882, -0.5046068778927081, 0.41563995822779, -0.6867533035553336, -0.6476138853677536, -0.5540644620398121, -0.1977950640068473, -0.5837448853613205, -0.13307105701854613, -0.4994919847523402, 0.7731503333101747, -0.5094562730215807, -0.9982992815510193, 0.04326873041425746, -0.2642783363476847, 0.4694710082668172, -0.08544568197187603, -1.2608642238686554, -1.392846772827294, -0.6705019965276334, 0.5104240406427223, -0.7324073307383778, -0.481753730911196, -0.01990371423588471, -0.07938058164325028, -1.0317260411997116, -1.0917040378986558, 0.153972211445008, -0.768444270404914, 1.6358416805478244, -0.8342052488721313, 0.032973467068497526, -0.5203573428089429, -0.4541130761144693, -0.12871941681496663, -0.7448098499347289, 0.5828188437484881, 0.08192216806104917, -0.9556014864181107, 0.2662279009691571, 1.8716113814400408, -1.2542163363791148, 3.124832929193203, 1.1349559177045694, 0.6410140263258731, -0.7279846852526484, -0.519547997464539, 0.23973022300938193, 0.4909902754334081, 0.39713680016422204, -0.5648676752047656, -0.29552654768354025, 0.8081860195239362, 0.9841007803942569, -0.8695766486342381, -1.2648078439568844, 0.21451982989171903, 0.7652958137174676, -0.35018618413433394, -0.315484488388248, -0.45002341596603707, -1.0762858762669583, 0.7347272141114197, 0.6807096405910837, -0.9075486078805101, -0.25333174851292106, 1.5115185392204091, 1.723420701188333, -0.3953797898063643, 1.5655807692478199, -1.0233637153778838, -0.24553925982393676, 0.3627935051951487, -0.7004910666721333, 0.1174657322989755, -0.6303457453663288, -0.29089031199115706, 0.2555996522860975, -0.9234752936916115, -1.392846772827294, -0.6095612285106314, -1.392846772827294, -0.062392729428988346, 0.7173199353468067, -0.30350663677924283, -1.392846772827294, 2.075773177908912, 0.6574319696122798, -0.2522901462547288, -0.49631613171324523, 0.4270461778282654, 0.1290558907597776, -1.1922621277034353, -0.5222797264638495, -0.5389669011031774, -0.15175571291148673, -0.5313017049978552, -0.8214790776920515, 0.3434068375238397, -1.274138289826314, -0.947866469648596, -0.4530831046507231, -1.392846772827294, -0.9450389301851579, 0.15263969573560154, 0.2413461854871409, 1.095159646810882, 0.2164837110724868, -0.29105142003274803, -0.017943853576653943, -0.01976500624286402, 1.023037808399465, -0.537166353609847, -0.5056792084226486, 0.37167139110908154, -1.392846772827294, 0.28847244150300316, 0.10517930566201225, 0.8115817807320963, -0.7005606360537286, -1.392846772827294, -0.47472169515292334, 0.4622909311619507, -0.7211797371661892, -0.3533699346264472, -0.06317529522814898, 1.048091975537416, -1.392846772827294, 0.4149953824713788, -0.441629500332133, 0.0022700364009023387, -0.7984481303250685, 0.22922230279231673, 0.07966751701912614, -0.2558262667415497, -1.392846772827294, 0.7272058234460758, -0.7082616578777468, -0.4897641893035075, -0.6609560578833239, 0.07279400468145902, -0.8776457635639732, -0.16848912354849013, -0.4749861162390091, -1.1908079194225067, -0.2509161330194577, -0.7908272317516796, -0.41577941351992126, -1.392846772827294, -1.0556551802575642, -0.45800285890649195, -0.29433173483677666, 1.7208581930687195, -0.0906373239965851, 0.27998756156933363, -1.392846772827294, -1.164453849466379, -0.7071143733391522, -0.4050322004763774, 0.6398627212657475, -1.1176687634209423, -1.392846772827294, -0.9675518405316031, -0.2977402755598252, 0.1241115108095883, 0.07909818245147858, -0.7173247749624792, -0.4887828948683692, -0.7907993752810314, -0.6601827536426976, 0.27268830471890015, 0.07655951028097144, -0.19539452546914116, -0.4638159586887777, -0.05957290793099494, -1.247866730305479, -0.19746071456402456, -0.34383225241029414, 0.5040608473601385, 0.26521903724348517, 1.5154356759178886, 0.6046834449970816, -0.17821907284815128, -0.349589567456253, 1.8386298945515838, -0.1778579438600926, 0.14763271052149068, -0.611006318823074, 0.34198199340913416, 0.4561200049628718, 0.08510024674600339, -1.2462592396409515, 2.2884372287080916, 0.2565337055931731, -0.0787707546801288, 0.9123650556404672, -0.035787502518089556, -0.597029837240015, -1.392846772827294, -1.392846772827294, 2.825271623334135, 0.4993954628866211, -0.9683976936474635, 0.5645632349395555, -1.392846772827294, -0.19322897205627196, 0.5624113943769359, 0.07498045044730497, -0.2603493534706772, -0.09195102940879764, -0.7364992883276897, 3.2421310706750246, -0.32331603357216265, -1.392846772827294, -0.22550478561997161, 4.488601875587444, -0.7420834337674489, -0.40593997680341054, 0.7219306120094128, -0.4717453604951025, -0.5178177373030779, 0.9868499555852427, -0.7034788885343456, 0.1943030681130649, 0.4243620489321549, -1.392846772827294, -0.5780803294908211, -0.3423076850024682, -0.2833258443093427, -0.1841441728732535, 1.431535719663841, 1.793068195773835, -0.21932452606732572, 0.29415171535412865, 0.33588458531816046, 4.488601875587444, 4.488601875587444, 0.2399909825490675, -0.5541939084742982, -0.62718633338852, -0.0847410855725252, -1.1518326246676698, -0.019654872670758192, -0.6281917509528804, -0.10832503413841287, -0.5991684675175903, -1.392846772827294, 1.9766839784681736, -0.7592692966674207, -0.5527223975917553, -0.5068478160843957, 0.08921453258884779, 0.6312942719201121, -0.058905788535956474, -0.18383531066517583, 1.3995452913342492, -0.8461144285373825, -0.24200041112607232, -1.392846772827294, -0.46167919508191535, 0.7167188673770187, -0.20456217611384167, -0.38305868617113814, 0.4149849003973625, 0.6297005659008644, 0.4556171525906426, -0.029564596719145297, -0.008975936698312563, -0.2933793737976996, 0.27062261818921624, -0.3861918929639304, -1.392846772827294, 0.07107393941389359, 0.6320586017823104, -1.3807636439067152, 1.672953104595118, 0.2938562070211651, -0.6522312389679179, -0.736131051631917, -0.10691210799826635, -0.7267065183790198, -0.5099846126285583, -1.392846772827294, 0.5981127640851808, -0.6153911283293391, -0.34741532684506415, -0.6101681836726633, 0.7383195501047372, -1.1916798700308449, -0.2768439020513657, 0.8317345013462626, 2.7546563317786665, 0.8782759150685485, -0.37919352907353004, 0.6781162606096652, -0.878502026958814, -0.2919268885974297, 1.2123276957029645, -1.0743037232517025, 2.5362817044963766, -0.10358670591699785, -0.8744496284296255, -0.7273075145537732, -0.4995592566930571, -1.392846772827294, 0.2789898978679375, -0.16201780695458698, 1.570713252169913, 0.44146778858149255, -0.36829827468339205, -0.8907674535502553, -0.8868658245787043, -1.392846772827294, 1.5283906578504451, 0.07771052816099322, -1.0725545092029967, 0.000783879332754547, 0.20584857006679233, 0.06093045075614078, -0.18954667689357738, -1.1260452328631767, 4.488601875587444, -0.20143622061881641, -1.392846772827294, 0.5513812371302159, 0.8315451060638673, -0.04687193680555284, -0.34653634032403796, 0.17859259302711877, -0.20199643721798266, -0.20322291167185216, 1.5147929668321995, 1.9252747182949648, -0.036684078820841064, -0.8860417253561595, 0.7480233660144019, -0.0035146325505204436, 0.02312189699233912, -1.392846772827294, 0.33166145821371334, -0.13562566768514933, -1.392846772827294, 0.11690817211583505, -0.6261750286319085, -0.6684061560864162, 2.57736482946202, 0.12005394303841777, 0.5375321199258503, 0.41499365939070776, -0.00239190191130962, -0.4717196578752775, -1.392846772827294, -0.3368766065612248, -0.5664294324368081, -0.6673336819664203, -1.2969204135769257, 1.0928699597955531, 0.20827409327404386, -0.7608230128563893, -0.5437154960135139, 1.5319554245532112, 1.6338564044488688, 0.9719796259104782, -0.15513237664236082, -0.8347249730758153, -0.028461394327399914, -0.1323483682722729, 1.1262265039074022, -0.20399162103072285, 0.20023721431162828, -0.42580975321441256, -1.392846772827294, 0.34225380938305555, 0.12149458205916744, -1.1248102865960703, 0.0012110597460639795, -1.392846772827294, -1.0930073330318915, 0.5025294594247085, 0.5210663611511672, 0.852151714841547, 1.5173457108280803, -0.0685597786965822, 0.4695458186854255, 0.249343577184458, -0.5444358155238839, -0.1598320791390008, -0.11490605353426599, 1.1194797815881967, 0.4259141138354895, -0.27630795217147835, 0.19876125213738083, -0.10269458090595097, 0.15821687705770696, 0.24130239052040178, 1.8173576022794087, 0.1730080886122226, 0.1000181047289405, -0.5753747338815013, -1.0351164536783302, 1.0619119439606357, 0.5275623752345238, -0.6966042274762358, 0.2691564201387015, -1.347319275405745, 0.29501957364591386, -0.7873990191911112, 0.20459014682571064, -0.3648880108796837, -1.1381200795542608, -0.5626349934412344, -0.4352843276014411, -1.120548964537012, 1.0649230274117465, -0.8008583970889865, 1.1484387366789006, 3.030727453377689, 0.7045438666226527, 2.4122552202223875, -0.01463065665004841, 1.5087294459941687, 0.44556240258681956, 0.554356135887494, -1.0575592920779866, 0.1107099638063206, 0.45794316788984424, -0.3302511460433819, -0.10110345950768528, 0.32907540132508534, 0.2896121157686975, -1.1878895233518354, -0.0039919258929845694, 0.1643836391451969, 1.2499505875257926, 0.7294848847973364, -0.4192165286638943, 1.238408818913498, -0.02064349019869313, -0.4142468768640497, 0.6016245460577064, -0.8683539075217971, 2.2538773999362514, 2.607001242431703, -1.392846772827294, -1.392846772827294, -0.40832141786381043, 0.24049541441190345, -1.0095686957266958, -0.292636008083518, -0.2727680983432291, 1.654329474475504, 0.972547237397467, -0.9165011247254615, 0.14182506716129678, -0.3265820611657305, -0.05617757749299065, 0.748984988612017, 0.6222038727249622, -1.392846772827294, 1.0507707916014986, -0.002796825866107705, -0.705414338884247, 1.8993047337869122, 0.8380386791162822, 2.3440964673260276, -0.6683003302159595, -0.5127027005726543, 0.6263137072761018, 1.2740128345645314, -0.6459246201669658, -0.15294995139804013, -0.6813383789952666, 2.548400417949236, -1.2881797100116983, -0.18112978685088899, 0.9465130681348862, 0.5714753730019977, -1.0032916564770504, -1.3690977069162495, 0.4944437598436291, 0.23116780444605822, -0.5593732735493138, -0.07335109164824975, 0.5831435008625978, -0.10267117572700049, -0.26697876271502824, -0.6492371709383187, 0.1693304601263047, -0.2341430197322769, 2.261784617079084, -1.392846772827294, 0.2588445003465622, 0.8505203882279113, 0.5348807295622551, 0.800903562709934, -1.392846772827294, -0.22155318730931794, 2.1068216554784174, -1.2630663299248726, -0.4827922459832088, 0.5969140743069344, -1.2285376781436899, 0.8241635721119831, -0.21077941010562182, -0.1851434160652564, -0.0006577648183705501, 0.19231147405170573, -0.20546751140993857, 0.6592041580697745, -0.11828946599771123, 0.6251437355088342, 1.2481508297777704, 0.7421858559227785, 0.7081435257087608, -0.7708123575902084, -0.4712623235504427, -0.7010109344658729, -0.36465281036977015, 4.488601875587444, 1.8572831042225, -0.3521382191355756, 2.2003036632755806, -0.34044395788498494, -0.42584026610107717, 1.623719233753543, -0.8535652087932364, 0.41012739243039226, 1.7394180692039611, -0.30150118627758105, -0.7007353851505327, -0.4560938291266909, 0.10329210157055144, 0.8953028237777532, 0.3198182940761955, 0.3998025495333185, 1.09606627441747, -0.6508612462541851, -0.9576501575262949, -0.015147150077507134, -1.116578448236626, 0.09624455808635408, -0.6460118511253136, 1.4955992841946546, 0.14621317923882496, 0.9986128528820721, -0.9501050386043769, -1.313132619237803, 1.6972519880443204, 0.5894400683597113, -1.392846772827294, 1.3942382029054061, 1.5606814765748729, 2.5155943981078415, 0.2595694865337134, 0.23131957913408913, 1.3225755654895426, -1.392846772827294, 0.25838845833222224, 0.8950676232678444, -1.392846772827294, 0.28346875886015804, -0.9847464624249227, -0.4913220696040689, -1.3322606049380392, -1.0592867163358621, 0.8467610570007622, 0.37506298820564044, 0.1566322172119085, 0.1357102846736722, 0.024995890798749795, 0.11031379884486806, 0.8777126112832121, 0.5200115486079296, -1.392846772827294, -1.0610287508818232, 0.1266811984319523, 0.647760030694795, -1.095542576989839, 0.8055659317923017, -0.5974737458947169, 0.4051980894359755, -1.011912049525035, 2.0232513819903923, -1.392846772827294, 0.13751535525373426, -0.4840023511708194, -0.154261790139542, -0.8050338163977053, -0.8683296408025193, -0.6773373139107014, -0.3392930835950186, -0.6536743908146203, -0.3466960124650789, -0.7410301289197815, -0.30548760517654583, 0.6214396864528159, 0.11344262614099106, -0.2441896568979975, 0.2285695424027796, 0.7794688700856723, 0.5834509271701207, -0.4851089997238785, 0.4945979755625902, 1.0604947101188484, 0.3995001488777081, -1.392846772827294, 0.8022230117243422, -0.4957106842467896, -0.09448108617602298, -0.24725243276886494, -0.8467812607523053, -0.33951859177622784, -1.1384324776674375, -0.7800530955728441, -1.392846772827294, -0.7253863514143327, -0.5649287727731226, 0.7274638547747154, 1.016893589950602, -0.08753577881089764, -0.675123011674198, 0.7329069229855449, 1.4086020904565606, -0.7008575084922201, -0.19855235795634663, -0.29269114666459684, 0.813435815520874, 1.5803932321304714, 0.46814150794856024, 0.20993916355058237, -1.392846772827294, 0.8920453397924578, 0.5567639975179908, 2.077862987567818, -1.392846772827294, -0.13388018697787077, -0.19592020866010113, 1.9841822511346827, -0.06634389696947438, 0.02949241336772509, 0.23766798264100342, 1.702114521663215, -1.1387961194814535, 1.4487828955172573, 4.488601875587444, 0.5242007884594343, -0.3491186638712325, 1.539947647008564, -0.31319408342264965, 0.05257135571055722, 0.06817442543544343, -0.5718767365542536, -0.9839161529325035, 3.385457494227179, -0.4904733087895972, 0.4509474604154603, 0.9888251803803499, -0.8936014545661629, 1.7278418389784924, -0.3274419502094565, -0.8266847915421401, 0.23235859677128212, -0.04054421026653086, -0.32161686065758704, 0.2861115338204596, 0.016058415012045715, 1.393656663183084, -0.30905423855003233, -0.3111047763289305, 1.0257671681628697, -0.39185860268525263, -0.5950232380179127, -0.01577262835662077, 1.2448824329482913, -0.35990141545336174, 4.488601875587444, -1.079656150240378, 0.2475601887027, 1.069789868732282, 1.1550246381366143, -0.23873474250764315, -0.5928354999415638, 0.074770952557225, 1.520169265667495, -0.06245361161226295, 0.34021870753504885, 0.008958317567763437, 1.3222455955434045, -0.6589429253137249, 0.5672631587417104, 0.798514798556735, -1.392846772827294, 0.23226612477594338, -0.39205589542067554, 0.06945108461349948, -0.8207867223448726, 3.574888386964578, 1.4498951440824521, -1.392846772827294, -0.6960377647096838, -1.1809519698496838, 0.19388952875497323, -1.1646506037390958, 0.7848947074899144, 0.8881421313303002, -0.4853617900155174, -0.8791258898498095, -0.1443220557696852, -0.6889350108493769, -0.5934071319500933, -1.392846772827294, -0.6729606890375647, -0.056284408493831, -0.7300010485984834, 0.017585782425938955, 0.27475226816793713, -1.0214679317806465, 3.0836085116135568, 1.2597368241269717, -0.4444863680642829, 0.09839266530755243, -0.05193908625266679, 0.026486929928758063, -0.8872475587396367, -1.1998713057385921, -0.1863161160435582, -0.10869334262921031, -0.6860292507035362, -1.392846772827294, -0.14444051756496895, -0.4755472661735307, -0.482946892472329, -0.3372727715226739, -0.1859327305969999, -0.4880879190026874, 0.6204352740188369, -0.4252957726129231, -0.28416347689456123, -0.528838991966386, -0.09731842566070743, 0.9258388284413376, -0.5039008455928, 0.16722657864201337, -0.4312044315767402, 0.5223876768362979, 0.33174000197373066, -0.33303672131327783, 0.326994350659525, -0.5829815606295097, -1.392846772827294, -0.7522007890352054, -1.392846772827294, -0.35828652990100845, -0.08013270635078537, -1.392846772827294, -1.2547877799256961, 1.3576376722734158, -0.7943895933210324, 1.4858357348221545, 0.5711861826314374, -0.621266761580531, -1.1737803286605417, 0.5416560263023754, -1.1051527901324703, 1.0428423231305302, -0.2171085725451894, 1.1189128880514914, -0.1890787886996983, -1.0196283995874125, 0.2033058773747482, -0.7040106025076136, 1.2275109081073436, -0.7604771044141516, -1.1854198821002189, 1.0295694328164349, 0.7633933890801939, -1.392846772827294, 0.45983238224207973, 0.9315778357552985, -0.06845122461508313, -0.062006328591268506, 2.5946091335143273, -0.08621834005726375, -0.00636618745064224, 0.27346369101532203, -0.14150352658219467, -0.17915671590660806, 0.7318736489505353, -1.392846772827294, -0.34716131603795936, -0.6650685488504847, 1.0860497193682426, -0.38847590817208477, -0.7859873853614594, 1.1504294691999364, -0.7750698745128112, -0.694116745160299, -0.7516411467962598, -1.2350673820436753, -0.767528524829834, 2.2173225309417113, -0.6252192932265411, 0.06109601008944116, 0.3314862783467316, -1.085538568121663, -0.6511879136290671, 0.4778157443069232, 0.5238634954204816, -0.1416710961762459, 0.19804100442203784, 0.08983713906686357, -0.3207973922143136, -0.24702879125836918, 0.4140284470417236, -0.515770214915333, -1.392846772827294, -0.5411280750193701, -0.10713122642202709, 0.18772606923874877, 0.9016902837796106, -0.3192933581843379, -0.0784249898279466, 0.9948529472947035, -1.0570953167131132, 0.5555884257385914, 0.3156368080876614, 0.18347566002386584, -0.4795687928409167, 0.7351859843368056, 0.9478016452874896, -0.20589081489176297, -0.8530827103112814, 0.23787058820846055, 0.18835413213885635, -0.5196424079256301, -0.9487933075554169, -0.0006118160008048099, 0.7991575076424359, -0.041543597048585706, -0.05656196806994787, 0.07846782211049269, -0.1536661785918461, 0.2981394983586276, -0.046252345718686874, 0.1008173269744687, 0.3545039077361336, -0.2682832065687042, -1.392846772827294, 0.3572128777117379, -0.12196508422285478, -1.0393105396941837, 0.9007800664216528], [3.1421216576893114, -0.3663485052504482, 1.6925959102261339, 0.6193656473023166, 1.2116233997694477, -0.5488146215130512, -0.5488146215130512, 0.04664390915563604, 2.079647264162827, 1.24956981158442, -0.317026439615391, 0.7848953874422858, 4.571180309957555, -0.5488146215130512, -0.5488146215130512, 2.9632320025859458, 2.7637202019066707, 1.128440427560266, -0.5488146215130512, -0.2868172948518001, 1.2707084951583114, 0.43156471069106467, -0.5488146215130512, 1.147582920899479, 4.595986146372431, -0.5488146215130512, -0.5488146215130512, 0.6959198264309767, -0.5488146215130512, -0.5177467212051128, -0.355499816955764, 0.9957899326602857, 2.2109246622529124, -0.5488146215130512, 2.9854246728241196, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 3.4744233206482984, 0.38169159889396537, -0.5488146215130512, -0.5488146215130512, 2.6020776215327737, -0.5488146215130512, -0.5488146215130512, 1.162369988974884, -0.5488146215130512, -0.48407999604649476, 2.444285940936265, 2.037528729112618, -0.5488146215130512, 0.042512773054823, 0.4089834134578562, 1.1065664225598726, -0.5488146215130512, -0.5488146215130512, 0.5856961345180355, 0.39810608422120664, 0.2753231446098338, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 4.905965893366794, -0.5488146215130512, -0.5488146215130512, 2.231997721920953, 2.8205574004524627, 2.9493711213988356, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 3.3424574276814973, 0.14696111634429124, 0.7232016861820285, -0.049635648191313726, 3.15077266811295, 0.581325248706917, 4.611555696105002, 0.20571920447344846, -0.5488146215130512, 5.0, -0.5488146215130512, -0.5488146215130512, -0.2221546401794568, -0.5488146215130512, 1.026688225758991, 0.6564329212326898, -0.5488146215130512, 3.0676814581450005, 1.8608300226492822, 0.9163922363226487, 4.184364534720205, 4.729038949183428, 0.58453993027836, 1.4193346294184723, 1.7004069346547717, -0.5488146215130512, -0.5488146215130512, 2.12762345578623, 1.0411472855320585, 2.9113548590535534, 1.1651538885337944, -0.15231984848949257, 4.083248551124909, -0.5488146215130512, 2.9083653008472927, 0.9923553553907359, 2.154891189713474, 0.21382447982232913, -0.2688486352252802, 3.0095762722656696, 4.402844536093808, 5.0, 0.37227406788181383, -0.5488146215130512, -0.2063304363240722, -0.05785454187889804, -0.5488146215130512, -0.5488146215130512, -0.3444505447437425, 2.514582491346861, -0.18250456503219542, 1.5390141700309636, -0.5488146215130512, 0.10501681832548539, 0.7533573168749295, -0.18181376219606468, -0.08040970077672324, 0.11966362920548836, -0.5488146215130512, 0.3389149895403365, -0.5045253707018335, -0.5488146215130512, -0.5488146215130512, 1.0917796881653432, 4.290330013731596, 0.0036608625659475262, 3.0053770096524217, -0.5488146215130512, -0.1888924405193419, 3.8210403381492166, 2.9693623876628217, 3.18197894866135, 1.0889094764861837, 1.7551608522569095, 0.9994772175808753, 0.28898787705460266, 1.295623111539177, 5.0, 0.5576089915832168, 2.0783863953546526, 1.2858716215823753, -0.5488146215130512, -0.08842154547997183, -0.5488146215130512, -0.5488146215130512, 1.8711819157312048, 3.5332663861742044, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 5.0, -0.5410609319749528, 1.098065457304052, 2.110444896863557, -0.5488146215130512, 4.626033886915032, 4.82515550342185, -0.5488146215130512, -0.5488146215130512, 4.126936276113865, 0.05173098535629619, 2.3598068409728796, 1.8962395699814658, -0.4206061837746339, 5.0, -0.5488146215130512, 5.0, 5.0, 0.17831227000690703, -0.46241476404830106, 0.655802598055563, -0.5488146215130512, 2.115686800991262, 2.0805306286718572, 3.227491018233213, 4.076509532127926, 1.9519562681414335, -0.3151781673329258, -0.4945803562637533, 1.9486058896799134, -0.5488146215130512, 1.9414446531462572, 4.034449280004286, 5.0, 0.41507853958869395, -0.5488146215130512, 2.0187460549860328, -0.5488146215130512, 4.123204834090528, 1.8904139467724888, 0.2365629963622019, -0.5488146215130512, 1.5712842252160504, -0.5488146215130512, 1.2505768604719663, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 2.079050197846465, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 3.4547575044666146, 0.2985188595650216, -0.5488146215130512, 1.3373258802163352, 0.11557581600523775, -0.5488146215130512, 4.870695824641307, 0.5495528229367724, 1.0984495239937677, 2.273366364813014, 1.2835487577688764, 4.632049040862288, 0.4463753588817959, -0.5488146215130512, 1.0133211922702103, -0.2838209239942994, 1.9634202083602807, -0.42612437566870315, -0.01531440104028245, -0.5488146215130512, 2.728007672337952, -0.5488146215130512, 2.377384259770823, 1.1245854123853778, 0.17979030945269292, -0.5488146215130512, 2.22810144154424, 2.7869773141432725, -0.5488146215130512, -0.27945156755386746, -0.5488146215130512, 0.4193053864877986, 2.3676483415883025, -0.18994662183079833, 1.7824119021402862, -0.5488146215130512, -0.1312333303594127, -0.2820241915039991, -0.5488146215130512, 0.7301420259749429, -0.5488146215130512, 1.476238564139697, -0.5215559334658344, 1.4484863255786744, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.08350592563674057, -0.44832777930842405, -0.5488146215130512, -0.2665586667849217, -0.5488146215130512, 1.3937399714097636, 2.49849818324766, 0.781444904717585, -0.5488146215130512, -0.5488146215130512, 2.1673595093728535, -0.5488146215130512, 2.055097027299921, 2.1151762692490625, 2.2468351758088096, -0.020627990943116594, -0.5488146215130512, 1.1909611012613124, -0.06016294618772573, -0.5488146215130512, 0.2503048647030966, -0.5488146215130512, 2.825741466561444, 2.055688532268315, 0.04949610206742439, 1.7006763263496776, 0.6319005919101917, -0.5488146215130512, -0.3403881608070113, 0.15508046190349487, -0.22786291894659996, 0.6718632148124777, -0.5488146215130512, -0.5488146215130512, 1.4542365369094064, -0.5488146215130512, 1.0413241363970032, -0.5488146215130512, -0.4454589927246779, 1.2263307181151903, 1.5778457259863263, -0.5488146215130512, -0.16245793554932994, 3.1947280051654663, -0.5488146215130512, 1.852000826637195, 3.1395687765244356, -0.5488146215130512, 0.5884204164268783, 0.4250743951746024, -0.5488146215130512, 0.17568136313021535, -0.5488146215130512, -0.5488146215130512, 2.458681156434823, 0.9195347315976448, 1.9725577255029585, -0.5488146215130512, 0.019139428645978777, 0.29206041057233567, 0.23533366039692769, 1.7719118547488548, 1.3157696506380347, -0.4340419346690749, 0.6819860915856609, 2.939171609250853, -0.5488146215130512, 2.663872428098825, 3.1317063652407144, -0.5488146215130512, 1.5258938379374296, 3.2520832988866486, -0.5488146215130512, 0.32548778226669145, -0.5488146215130512, 1.8509899960330407, 2.7529956985118123, -0.12255690457563563, 1.7837121452919904, -0.43633615058893344, 4.156620971862015, 1.1524790204113926, -0.5488146215130512, 2.9683835904228837, 0.9095209684713242, -0.5488146215130512, 2.9863600915500106, -0.5488146215130512, -0.5488146215130512, 1.8157882206604348, 2.3397750880957964, 1.778039347924781, -0.5488146215130512, 0.6816624211347276, -0.3299073834862368, -0.14600023854848473, 2.5346756415053773, -0.5488146215130512, 1.4320109434913435, -0.5488146215130512, -0.5488146215130512, 0.4484011354875899, 0.9893108510666921, 0.20781688930829081, 1.1090769262533557, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.9152551631199336, -0.4440648670678356, -0.4096959313580965, 4.609470413076088, 0.1845751263920415, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 2.336315707214365, 1.526811682803799, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 1.3902523388807204, 3.0281253697781696, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.3050962101769659, -0.5488146215130512, -0.2280466658830065, -0.5488146215130512, -0.5488146215130512, -0.3633043068005424, 0.06326227349887963, -0.5488146215130512, 1.6882918718174424, 0.4646460553157102, -0.5488146215130512, 0.974175976290231, -0.4161136573803867, 2.0135043733122413, -0.5488146215130512, -0.5488146215130512, -0.1574783323978836, -0.5488146215130512, -0.5488146215130512, 0.3240743656841329, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 1.7336664648678686, 2.2731852873236162, -0.3508066649340695, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 1.36909652635514, 0.5217730000899009, 2.8049733912152166, -0.5488146215130512, -0.5488146215130512, 1.309436943722601, -0.47338722709339115, 0.19772676887455873, -0.5488146215130512, -0.5488146215130512, 0.3204401360230253, 0.35912693009114105, -0.5488146215130512, 0.4235502521542756, 0.3799377165896516, -0.5111141985456193, -0.5488146215130512, 0.20583749434443416, 1.2679294895856017, -0.5488146215130512, -0.05461372197207167, 0.05862928135867816, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.2311103290507524, -0.5488146215130512, -0.5488146215130512, 1.0237241385263656, 0.460132576543045, -0.5403284503117484, -0.5488146215130512, -0.5251498155475333, -0.5488146215130512, -0.5488146215130512, 0.08298120055354336, -0.5488146215130512, -0.010982389051362887, -0.5488146215130512, 1.3706476975265192, 0.02530479460147631, -0.18374758191343749, -0.5488146215130512, -0.29312619919799615, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.754437553101552, -0.5488146215130512, -0.4387563032332149, -0.5488146215130512, -0.5488146215130512, 1.5035076327904588, -0.5488146215130512, -0.04194130084276887, -0.25658366625383994, -0.5488146215130512, -0.5488146215130512, 2.766049071975982, -0.5488146215130512, -0.255233426584041, -0.5488146215130512, -0.5488146215130512, -0.3389294053352569, -0.5488146215130512, -0.5488146215130512, -0.06457698805896893, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.20511535331258243, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.4361456535664475, -0.5488146215130512, -0.13799712516152127, -0.10719615565201439, -0.5488146215130512, 0.01819005093671815, -0.5488146215130512, 4.137947745063168, -0.3015129065600998, 0.3100030987039102, -0.5488146215130512, 0.2826018924257619, -0.5488146215130512, -0.2521025823330084, -0.5488146215130512, -0.5488146215130512, -0.17003265830337982, -0.5488146215130512, -0.5488146215130512, -0.3986977262236635, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5081661279951012, -0.5488146215130512, -0.4922534778521912, -0.5488146215130512, -0.4974411275547604, -0.5488146215130512, -0.5488146215130512, -0.5187571347081705, -0.5488146215130512, -0.5488146215130512, 0.3848664056005763, -0.04801874188711184, -0.21094632731931343, 0.3366466825502603, -0.5488146215130512, -0.20569983507954687, -0.5488146215130512, -0.5488146215130512, 0.618307322786633, -0.02767038147099204, -0.5488146215130512, -0.5488146215130512, 0.5788620164710464, 0.9132749895673626, -0.062272031785873254, 0.13687271992842495, -0.4643239052841264, -0.5488146215130512, 0.9941016186483529, -0.5488146215130512, -0.5488146215130512, -0.08364470907493764, -0.08412490366404192, 1.2663704213001212, -0.5488146215130512, 1.7029106535037362, -0.5488146215130512, -0.5488146215130512, 0.03532623238797495, -0.37302138591687745, -0.5488146215130512, -0.5488146215130512, 4.221109028015328, 1.1851943171136907, -0.5488146215130512, -0.27074914246840537, -0.22649916520127297, -0.5488146215130512, 3.488719544153276, 1.9036477303642791, 2.933640070121685, -0.4839475803517055, -0.5488146215130512, -0.2778396108493446, -0.4703355138720618, -0.07318022650366778, 0.5639827412465591, -0.5488146215130512, -0.5488146215130512, 0.8226518236111446, -0.5488146215130512, 0.2622747207453464, 1.2778039965591468, -0.5488146215130512, -0.5488146215130512, 1.5859430486076325, 2.4286056091524566, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 1.9447554348103342, 0.5212055201446558, 1.8143335944895314, -0.5488146215130512, 1.780751506095082, 2.5549269563996777, 1.5294557700751317, -0.5488146215130512, -0.5488146215130512, -0.4787062462621659, 2.7193918096333918, -0.22150429614969294, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.24555517957979686, -0.5488146215130512, -0.5488146215130512, 1.155656440951542, 0.20489440095836156, -0.5488146215130512, 0.4177370863647159, 1.854860471755246, 0.22112107956519003, -0.5488146215130512, -0.5488146215130512, 0.15202361138699416, 2.2410435880493265, -0.5488146215130512, 0.22116812856888293, -0.5488146215130512, -0.4994110299928278, 0.3786071084781325, -0.5488146215130512, -0.264847189758758, -0.28568772946882354, -0.5488146215130512, -0.5488146215130512, -0.3801447774777053, 0.5532091867627362, -0.5488146215130512, -0.2104787013765851, 3.6984241833629974, 3.0597236141303896, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 5.0, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.4740799923043267, -0.5488146215130512, 1.8590628487233576, -0.5488146215130512, 0.126650795548177, -0.0798485051546643, 2.0003847085804667, 1.6954444326482856, -0.5488146215130512, -0.5488146215130512, 0.42616708882064236, 2.1024443416966583, -0.5488146215130512, 4.409524382348568, -0.5488146215130512, 0.02036843093037534, -0.5488146215130512, 5.0, -0.5488146215130512, -0.5488146215130512, 0.6655126003566247, -0.5488146215130512, -0.5488146215130512, 0.9800270704728379, 0.8630502337391204, 0.3400427196784883, -0.5233449339445579, 0.7594191861450007, -0.5488146215130512, -0.40314940451718706, -0.5488146215130512, -0.14669924437284715, -0.5488146215130512, 0.71808024085101, 0.9875624744968523, -0.5488146215130512, 0.04775172966811145, -0.5488146215130512, 1.1926540868055298, -0.39878110473286676, -0.5488146215130512, 1.4137225619709364, -0.07316826960556606, 5.0, -0.5488146215130512, 5.0, -0.34564795857175934, 1.124609882316378, -0.5488146215130512, 1.0533798040381863, -0.5488146215130512, -0.5209169415375825, -0.5488146215130512, 3.5641016135871184, 0.42091739880580054, -0.5488146215130512, -0.5228579371317367, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.21215647663414597, -0.31409612366821643, -0.5488146215130512, 0.058076538985511565, 0.47099010738097663, -0.34815864300905064, 4.679719135894292, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 1.9591344111728706, 2.829738518563082, -0.5488146215130512, 0.9248632815264766, -0.5488146215130512, 1.422626280045596, -0.5488146215130512, -0.5488146215130512, 4.989799876967512, -0.36228385506442673, -0.48957163945576776, 3.1424927108248326, -0.5488146215130512, -0.5488146215130512, -0.24031185730836402, 4.002460406571763, 2.4439182246095386, 0.05699535732973706, -0.5488146215130512, -0.5488146215130512, 0.515368106878015, -0.5488146215130512, -0.030590700895218946, 0.05188598012378081, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.30034279895053745, 1.7932033641645266, -0.5488146215130512, 1.9484728622368401, -0.5425244884541213, 1.0470598882230404, -0.5488146215130512, 1.5458159210328608, 1.6145030173455266, -0.5488146215130512, -0.16864576935056344, 4.165450612781911, -0.33466019486811077, 0.10301006152969504, -0.5146475071205697, -0.5488146215130512, -0.5488146215130512, 1.6932930808056808, 0.3024841006563607, 0.35254590898954585, -0.5488146215130512, -0.5488146215130512, -0.18375848215542678, 0.8995060930754121, 0.7295999057763694, 0.09582919343776078, 1.5771345408099486, 0.5204531809934125, 1.0292384374768662, -0.5488146215130512, -0.5488146215130512, 0.5533483316885506, 1.0584049268226372, -0.5488146215130512, 2.4615679409308813, 2.383827637510547, 1.219626290702492, -0.5488146215130512, -0.5488146215130512, 2.111069547465772, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 1.8090874637373768, 1.8145751794446525, -0.5098707471840686, 1.3156428519046883, -0.2833048587108899, -0.5488146215130512, 1.6697320965168705, -0.5488146215130512, 4.057768679337957, 0.9955922823539937, 0.5399075547258966, 0.9047135168458001, 1.9225545337771925, -0.5488146215130512, -0.45200083412993586, -0.5488146215130512, 2.3731011320304307, -0.5488146215130512, 2.3437312085764916, -0.5488146215130512, -0.5488146215130512, -0.005349800229876186, 1.026315170538225, 1.7735101861508855, 3.175047729479088, -0.000719588763653271, 0.44905626227659495, -0.1453501447793778, 3.248980511636063, -0.5488146215130512, 2.4213625095769147, 3.2075315628795296, -0.007631676908961647, 2.2199498401669007, 2.5562576757381668, 4.938919326988493, -0.5488146215130512, -0.5203419450829924, -0.5488146215130512, 3.068113463654091, 0.3948036445790487, 1.2946495419663273, 4.21476864643972, 0.5633223867904785, -0.3958899406752898, 0.25959576382233257, 1.2763874100082544, -0.5488146215130512, -0.48707770162750424, 0.2715197943574395, 0.7010136874761403, -0.0229257730773497, 5.0, 3.1751618483391035, -0.2562023802381004, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.2612211233754245, -0.5488146215130512, -0.5488146215130512, -0.15614255223276644, -0.20410573030195678, -0.050736572632326865, -0.5488146215130512, -0.06003136469512909, 0.13635034251508774, -0.5488146215130512, -0.0639026746195222, 0.39324947027976825, -0.1319278592986721, 0.1250338892439751, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.24498793799149088, 0.3077184413508479, 0.05822841939813987, -0.5488146215130512, -0.04153615664430513, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.2618753047352757, 0.1772977132996222, -0.5301981082978978, -0.5488146215130512, -0.5488146215130512, -0.4068683752177457, 0.22269249404312705, -0.5488146215130512, -0.5488146215130512, 0.25251944907193685, -0.5488146215130512, 0.7234125724964515, -0.5488146215130512, -0.3350473202992019, -0.43158507712829575, 0.10604889327882519, -0.5488146215130512, -0.12647264967018307, -0.5488146215130512, -0.21952996201247388, -0.39470975312256057, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.45110679878450466, -0.42925120184583887, -0.5488146215130512, 0.08013612616713649, -0.4128727262466007, -0.29019748213835994, 0.24606277971059626, -0.1233557922092563, -0.5488146215130512, -0.5488146215130512, 0.032470202146099456, -0.5488146215130512, 0.40400022323697937, 0.3917689282274043, -0.5488146215130512, 0.16558935183817922, -0.5488146215130512, -0.5105519462674504, -0.4797763816905668, -0.09012056508671812, 1.9738521848527626, -0.5488146215130512, -0.2503469203973492, 0.7684214513054133, -0.3180414134237724, -0.5038504767966947, -0.5488146215130512, -0.48944775347840314, -0.0328298664220162, -0.28091553678933034, 0.28813865922199866, 0.031418940542317995, -0.5488146215130512, -0.5488146215130512, -0.1969134614467156, 0.26568538421869436, -0.5455421494984791, -0.5488146215130512, 1.1748244052643828, 1.167558281708312, -0.5488146215130512, -0.19121277391952984, -0.30332326435288864, 0.012603120781934034, -0.5488146215130512, -0.49671797505274934, 0.11262958069954285, -0.3890251239875922, -0.4299623036020019, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.12001812142780702, -0.5488146215130512, -0.5488146215130512, 0.398011874986864, -0.5488146215130512, -0.5488146215130512, 0.26767050737094394, 0.022671162664289337, 0.07709562601361955, -0.3163993837301856, -0.44248315714449843, -0.1710492170959272, -0.5488146215130512, -0.15072443679513306, -0.5488146215130512, -0.5488146215130512, 0.312037606625993, -0.41188333463880983, -0.37629347450257683, -0.5488146215130512, -0.5488146215130512, -0.5367164008704123, -0.5034173242595975, -0.5488146215130512, -0.5488146215130512, 0.6153535796612016, -0.5488146215130512, -0.5488146215130512, -0.22243465404894983, -0.5488146215130512, -0.058654208101232806, -0.32574353275608325, 1.0931641301250603, -0.5488146215130512, -0.3286118952870469, -0.5488146215130512, -0.5488146215130512, -0.17920768673799067, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.05219603717594521, -0.5488146215130512, -0.18010562197867439, -0.5488146215130512, -0.5488146215130512, 0.6259436096625369, 0.4959157352307955, 0.35509194969645586, -0.5488146215130512, 0.24702033260135078, 0.17073938249768, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 3.7064667823204434, -0.5488146215130512, 0.5615213998689924, 0.03175612506878098, 0.23462325380925855, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.36062155425754977, 0.1782165592086137, -0.5488146215130512, -0.5488146215130512, -0.11976118715232234, -0.5488146215130512, 0.07943522948447017, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 2.094476932163562, -0.5488146215130512, -0.35630262533969265, -0.5488146215130512, -0.2506121688880241, -0.32405517703403824, 0.3852086509536788, -0.5087735036602334, -0.5488146215130512, -0.5488146215130512, -0.09963213849277616, -0.5488146215130512, -0.5186667176179627, -0.5488146215130512, -0.5488146215130512, 0.5371416739343572, -0.5488146215130512, 0.4326221453910755, -0.5488146215130512, -0.5488146215130512, -0.44558600696026673, -0.5488146215130512, 0.8667474178590685, -0.5488146215130512, -0.5488146215130512, -0.2868648443768087, -0.5488146215130512, -0.36454541892010983, -0.4262283728754465, -0.5488146215130512, -0.5488146215130512, -0.36085817570963025, -0.5488146215130512, -0.5488146215130512, -0.06247490975924224, 0.30060970394187925, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.2713775350767708, -0.2328526993648009, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.5630640065645263, -0.5488146215130512, -0.15083368947569398, -0.31409045109330447, -0.48108754593930214, -0.05017787961684804, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 2.8282716574266753, 0.7738868103939175, 0.14340591343761336, 1.526359656442082, 0.9904195613948402, 0.12752170263780457, -0.5488146215130512, 0.03083739038674816, -0.5488146215130512, -0.03922769672200007, -0.12705650778515534, 0.07136015225498069, -0.5488146215130512, -0.5488146215130512, -0.1303882279242925, -0.3731665649052217, -0.41619346272352936, 4.967771600174868, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.055029822026003934, 0.14114172184502288, -0.5165334644871109, 0.031755958228341104, -0.5083946924443337, -0.5488146215130512, -0.5488146215130512, -0.5144262906023216, -0.14907207689772262, -0.06709438782391378, 3.6499924061151874, -0.5488146215130512, -0.2894401099672168, -0.19001783489135163, 0.10160776764304476, -0.5488146215130512, -0.3231028379069923, -0.5488146215130512, -0.10467466829632353, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.6373019954972237, -0.5488146215130512, 1.0437593394391842, 2.1110853416939666, -0.5488146215130512, -0.3225078988062239, 0.5923774267232462, 0.05081970288052251, 0.6210667524145463, -0.5488146215130512, 0.4480115074499205, -0.005995083433000567, -0.09183109668372984, 1.1707135680836036, -0.5488146215130512, -0.07705359412680467, 0.6019964453717785, -0.5488146215130512, -0.5488146215130512, 0.5650728766725396, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 1.7929960371127942, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 5.0, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5014933342247344, -0.5488146215130512, -0.4409431434274479, -0.5488146215130512, 0.377343625836419, 0.013240451257485677, 0.09522317335119239, -0.4786049185024406, -0.3691219772819452, -0.5488146215130512, -0.25099676390579745, -0.48906444452234527, -0.5488146215130512, -0.5488146215130512, 0.6629260174231306, 0.3224499515601926, 0.7715116699096412, 0.39000008589709295, 0.051358708724243904, 0.048221774797200946, -0.3876004734821665, -0.5488146215130512, -0.1401386890317231, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.7081205340268034, 0.3562897528188296, -0.04468510308292925, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.28484332220219843, 0.15674124724305608, -0.5488146215130512, -0.28455813627910737, -0.5488146215130512, 0.03523018790880582, -0.5488146215130512, -0.15286021686346077, 0.16183838948351403, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.23717524515847901, -0.21614179419160146, -0.5488146215130512, 0.09931026357620822, -0.5488146215130512, -0.4417449507687438, 1.0038294172628683, 0.9274127146556375, 0.2768887196724191, -0.36363462306228095, 0.02396684551065689, -0.5486607096334277, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.29213430498362675, -0.22358601991590676, -0.5488146215130512, 0.11195348762875265, -0.14270447252386995, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.31275978736830434, -0.5488146215130512, -0.5488146215130512, -0.0927491361972676, -0.13833575563845193, -0.40199122599898646, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.2334173152158503, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.1551336681003955, -0.44997281212990475, -0.1398222761398696, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.16348650685345834, -0.5488146215130512, -0.5488146215130512, 0.5984344020071178, -0.09544680705614914, -0.2868947088153225, -0.5488146215130512, -0.5488146215130512, -0.3924032257686684, -0.2825956200062918, -0.5488146215130512, -0.5488146215130512, -0.4451357602298952, -0.5488146215130512, -0.5488146215130512, -0.10727434820425082, -0.5488146215130512, -0.5488146215130512, -0.5361137262822224, -0.017844925586398257, -0.5304087460895841, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.04998106351274984, 0.1778406677003914, 0.04635015875669605, -0.0774513417324886, -0.5488146215130512, -0.5488146215130512, 0.5132814891256016, -0.33576687530425475, -0.5488146215130512, -0.5488146215130512, -0.26524546569249724, 0.4212545277187844, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.12892421897837197, -0.5488146215130512, -0.17616093006802372, 0.08207147525519592, -0.36781513002955896, -0.3627745745045359, -0.5488146215130512, -0.4291236662338792, -0.5488146215130512, 0.8266310792993293, -0.5488146215130512, 0.08760501646961957, -0.5488146215130512, -0.5488146215130512, 0.19756276472338882, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.4078234950187689, -0.5488146215130512, -0.4675031819241553, -0.5488146215130512, 0.04914290085885333, 1.2529996060947322, 0.0053327149879376775, 0.9120204606958571, -0.06762822161403703, -0.06300129134310647, -0.5488146215130512, 0.27145088925628674, -0.5488146215130512, 0.4507820597737404, -0.41171643858670454, -0.5488146215130512, -0.5488146215130512, -0.33256743182620746, -0.5453655660561659, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.28817675445548363, -0.5488146215130512, 0.7090518373552142, 0.21776869901840204, -0.5488146215130512, -0.5488146215130512, -0.4560655885912313, -0.5488146215130512, 0.3899483653611194, 0.24121378481585493, -0.40169982526955667, -0.5488146215130512, -0.5488146215130512, 0.8570344124301111, -0.5488146215130512, 0.3183576336680975, -0.4093525320252948, -0.5488146215130512, 0.15084449439374456, -0.5488146215130512, -0.08619311335472772, -0.5488146215130512, -0.3842660560892703, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5302144899434653, -0.20611685275589153, -0.5488146215130512, -0.5488146215130512, -0.07935766058422768, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.011201061252920854, -0.527958464842761, -0.12347060623777052, 0.28260055770225284, 0.684859751300552, -0.5457270808282079, -0.5026940952890518, -0.5488146215130512, -0.5488146215130512, 0.000259152862805501, -0.39216912082653654, 0.2372256865844247, 0.18168400404457472, -0.5488146215130512, -0.1903961733926748, -0.5488146215130512, 0.22963900693227116, -0.1751627793372059, -0.5352084848206635, -0.41019190627202146, -0.39845426431359887, -0.464026637332605, -0.5488146215130512, -0.17517370738593666, -0.5098269828515116, 0.36126282138642923, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.3386327769387505, -0.3314459164943954, -0.023782109435336873, -0.5488146215130512, -0.195084639978718, -0.5488146215130512, -0.3148681221844793, -0.5488146215130512, -0.1517211415754832, -0.29755628555808883, 0.493187337924467, -0.5488146215130512, -0.4674523581555388, -0.5488146215130512, -0.5488146215130512, -0.18789876667362534, -0.5488146215130512, -0.5488146215130512, 0.912553015375949, -0.5488146215130512, -0.5488146215130512, 1.2061714991429924, 0.6037194621949472, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.1057678902704188, -0.3418455120384084, -0.5488146215130512, 0.26503715350115353, -0.5488146215130512, -0.20941709566560934, 0.173624665429795, -0.5488146215130512, -0.5308865406094626, -0.2175492601318479, 1.151228718164331, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.13168414912760099, -0.5488146215130512, -0.5488146215130512, -0.24245164154721868, -0.5488146215130512, -0.27747514791116684, -0.5488146215130512, -0.5488146215130512, -0.3460874719005795, -0.07675038943634306, -0.135666447654139, -0.5488146215130512, -0.01610122054884075, -0.49747273339035264, -0.4181321208136215, -0.5488146215130512, -0.31728308192010846, -0.5488146215130512, -0.10357899932912741, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 2.4109745789602397, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.11089872237575985, -0.10367390373196697, 0.014307729543375215, -0.5488146215130512, -0.5488146215130512, -0.19328546049531867, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.33252164802917533, -0.5488146215130512, -0.28456222386985336, -0.4118526220947329, -0.3208659386294871, -0.5488146215130512, -0.5488146215130512, -0.015936437808958714, 0.5567469826503175, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.014108422736414801, -0.31733277256407794, -0.5488146215130512, -0.19586167151487885, -0.3198933005824095, -0.3421906492924462, 0.21583240450119068, -0.342495327740117, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.4672635851509187, -0.26150793399314093, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.30932721218401726, 0.8994158880115949, -0.23083654389096642, -0.1344152555914049, 0.027552524604122608, 0.20392683764129052, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.9591585571825624, -0.12677599339434492, 0.16088706530247004, -0.2156669106897917, -0.05621811524337673, -0.5488146215130512, -0.5315966308954664, 0.1481260519002554, -0.3021432575439682, 0.23635427897348132, -0.5385894002962203, 0.220839341677831, 0.5901057273109171, -0.5488146215130512, -0.2783382413069181, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.11932242460547653, -0.5488146215130512, -0.5488146215130512, -0.08683670034672576, -0.5488146215130512, -0.5488146215130512, 0.5405655734158347, 0.31210367543968986, 0.2813376311953343, 0.12034873165996382, -0.29804451629498685, -0.5488146215130512, 0.038661428369583785, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.2906365942691034, -0.4413570884590484, -0.5488146215130512, -0.5488146215130512, 0.17780713277222637, 0.14926379246472385, -0.1469354070137223, -0.4296522445501857, -0.5488146215130512, -0.5488146215130512, -0.5486754553248571, -0.5488146215130512, -0.5331215316494515, 0.054574446951795724, 0.5154622048854008, -0.5488146215130512, -0.537895780289767, -0.5488146215130512, -0.02713432314168699, 0.06336093181158557, -0.039902121388405355, -0.5488146215130512, -0.28949892122183213, -0.5488146215130512, -0.5488146215130512, 0.05329973038721517, 0.10080087166837016, -0.5488146215130512, -0.5488146215130512, 0.3772952421092172, -0.5488146215130512, -0.5107464752672031, -0.5488146215130512, 0.5018411290220705, -0.5488146215130512, -0.2049087611398027, -0.2940750207724619, 0.5967944717223851, -0.5488146215130512, 0.1315277084096489, 0.3170104527396736, 0.12763337450472478, -0.26210027316374324, -0.5488146215130512, -0.5488146215130512, 0.18840144501148537, -0.5103974485454402, -0.5488146215130512, 2.0625817118305836, -0.5488146215130512, -0.5488146215130512, -0.4417651593168722, -0.5488146215130512, -0.19928379136501292, -0.5488146215130512, -0.5488146215130512, 0.25453115546740623, 0.2159483586060344, -0.08304658610246295, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.17164809085037439, -0.284824747300031, -0.5488146215130512, 0.30346389893893017, -0.5488146215130512, -0.46852872924533323, -0.02958626584121128, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.48285109108568675, -0.5488146215130512, -0.5488146215130512, 0.6032095978145068, -0.3489186429170995, -0.5327963996067582, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.32373772138944307, -0.5488146215130512, -0.5453023904468473, -0.5488146215130512, 0.5471680057070536, -0.5488146215130512, 0.03819716704236862, -0.3933641988884132, -0.5488146215130512, -0.14861815967770184, -0.5488146215130512, -0.21569749810354025, 0.27151729175085937, -0.5488146215130512, 0.025790745185715214, -0.12570318156724175, -0.5488146215130512, -0.5411137821597299, -0.5488146215130512, 0.08212575401122886, -0.5023870880269254, -0.5488146215130512, -0.47320509989957626, -0.22027078917345183, 0.6780002735068896, -0.4542629680237837, 0.10026208827856974, -0.409964558367654, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.0744764654848323, -0.3078636322429114, -0.5488146215130512, -0.018052363865091136, -0.5488146215130512, -0.5488146215130512, 0.466430803101169, -0.5488146215130512, -0.5488146215130512, -0.006592205362842042, 0.036741706669277285, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.1549025940928994, 0.5938865541040963, -0.5488146215130512, -0.5488146215130512, 0.15319155007085408, -0.5488146215130512, -0.5488146215130512, 0.012535105496454037, -0.37807011662339346, -0.5040731566446229, 0.004851825230338333, -0.3647472958508475, -0.408666178267528, 0.576996406686331, -0.41940847797584874, -0.3205321743320166, -0.5488146215130512, -0.017245634730856198, 0.05462816957303375, -0.029243019445479374, 0.47299775399243976, -0.27275153360605314, -0.07434716414489657, 0.012937246567021997, -0.014053087324271298, -0.4651437244411091, -0.2425390103235802, 0.9943400892486287, -0.4225650712679094, -0.5488146215130512, -0.10536619410768713, -0.390809983000011, -0.268222510865856, -0.16602195319251536, -0.5488146215130512, 0.1900147364395191, -0.4160305152284714, -0.5488146215130512, -0.5488146215130512, -0.24146455789882995, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.2582488728650248, -0.09901046321171723, -0.26359088125590513, 0.13446009595893618, 0.06210551312440732, -0.5488146215130512, -0.5488146215130512, -0.10118355992481778, -0.48991598421772153, 0.0918215192615298, 0.05805946564729105, -0.46873301145906077, -0.1408472047610865, -0.5488146215130512, -0.5488146215130512, -0.07875770236693018, -0.5488146215130512, -0.19565498401816045, -0.41218727620787654, -0.27140165542387157, 0.03323271856409731, -0.28792241811051783, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.4377901789149274, -0.5488146215130512, 0.8424994958709472, -0.19969288412052247, 0.09825316255707507, 0.12183138702455293, -0.5488146215130512, -0.12643680678261932, -0.5488146215130512, 0.5674044161888568, -0.39600753537778144, -0.39625308279332894, -0.31684779521573253, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.0886126055889392, -0.5488146215130512, -0.09476345642627752, 0.5819928329153393, -0.20756196902178853, -0.5488146215130512, -0.5488146215130512, 0.01123080256075821, -0.0072215831108188785, -0.4389033313697538, -0.44082857270790654, 0.19798375876352087, 0.431564599464106, -0.5488146215130512, -0.19543194615845808, 0.4523856188428522, 0.22607234764880918, -0.3390445113345384, -0.5488146215130512, -0.31249620728201427, 0.29931808087951806, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.24896626015424156, 0.0027262224287652004, -0.35030382175542063, -0.5488146215130512, -0.5488146215130512, 2.064167808267129, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.2792228571192513, 0.10561777758541609, -0.5488146215130512, -0.5488146215130512, -0.24964463337769452, -0.46276562253904635, -0.4053805756063, 0.05982408135315819, -0.4137585099420048, -0.5488146215130512, -0.3070544005020964, -0.08226669047210643, -0.5488146215130512, -0.5488146215130512, -0.39228729947056307, -0.5488146215130512, 0.09391030593964576, 0.696760146106854, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.08045579244754437, -0.5488146215130512, 0.6436815289624385, -0.42630958245894773, -0.15620762000383007, -0.30957822362392945, -0.5488146215130512, -0.5488146215130512, 0.9623280806086165, -0.25451142458588927, -0.5488146215130512, -0.5488146215130512, -0.22844399638759375, 0.44083047251754653, -0.2862398600937159, 0.08216045682246302, -0.5488146215130512, 4.643300315135385, -0.5207361282122217, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.14169857961567495, 0.4472532732698443, 0.19318231339378814, 0.29844467118331225, -0.390414821421126, 0.2767560259102307, -0.4522003544394774, -0.42700013503441986, -0.5488146215130512, -0.5488146215130512, -0.3351168649553686, -0.2207217032655788, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.6143768957334865, -0.5488146215130512, -0.18668469660848472, -0.5488146215130512, -0.5488146215130512, -0.44449359833330937, -0.3080363120968889, -0.5488146215130512, 1.2417915991087267, -0.5488146215130512, 0.39785315411625094, -0.3544574813154489, -0.4184371746522789, 0.16442814238534356, -0.2893697033021172, 0.1254477647587258, -0.5488146215130512, -0.3816026987472671, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.382379146341892, -0.5488146215130512, -0.5488146215130512, -0.3159841039750759, -0.5488146215130512, -0.5488146215130512, -0.18992415398506426, 0.04550850435730784, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.392802238581012, 2.110320990031142, -0.5488146215130512, 0.013039742209819032, 0.2681817620883729, 0.23937931857968509, -0.5488146215130512, -0.5488146215130512, 0.034983820194434516, -0.5488146215130512, -0.5488146215130512, 0.2160107569300818, -0.5488146215130512, -0.2267650810537015, -0.5488146215130512, -0.024498077370959367, 0.37214142973310677, -0.30272305587493237, -0.5488146215130512, -0.5488146215130512, 0.1252592350630781, -0.5488146215130512, -0.4868788139212922, -0.3898167401587621, -0.14401478171535734, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.45545297135565216, -0.2397076724666204, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.3935452227639729, -0.06981288593088422, -0.13853590855132356, -0.13582781016503045, 0.0043190480963256365, -0.5488146215130512, 2.3651819949975716, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5006570882362321, -0.5488146215130512, -0.5488146215130512, -0.26622698799293265, -0.5488146215130512, -0.5488146215130512, 0.3262202674057377, -0.4013073192343194, -0.5488146215130512, 0.1281623699221277, 0.12535622497139925, 1.0286770750143714, -0.5488146215130512, -0.11003903330597925, 0.7390020318546887, -0.11801125340505618, -0.29470809681682764, -0.5138396101032638, -0.5488146215130512, -0.037548114026352344, 0.5728034840097468, -0.5488146215130512, 0.07398833407117317, -0.5488146215130512, -0.5488146215130512, -0.40971104432116195, 0.2592096394338725, -0.5488146215130512, -0.47529070270598806, -0.5488146215130512, -0.37601873001026975, -0.5488146215130512, 0.11023792301184294, 0.5646363108581359, -0.5488146215130512, -0.41020140227365315, -0.5488146215130512, -0.5488146215130512, -0.4796544630400409, -0.5488146215130512, -0.5488146215130512, -0.4644304676626138, -0.5488146215130512, -0.08509761122796962, 0.6093072821654022, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.8307218956274738, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.24807082752013607, 0.11548472112574754, -0.5488146215130512, -0.5488146215130512, -0.10047223571473626, 0.017171490058906315, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.2260215566389659, -0.02659904340109615, 1.5878009837321696, -0.053461633129881815, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.0759512674450854, -0.1698197977104339, -0.05258483101142311, -0.022716221486437545, -0.01578750491074499, 0.18255324272981563, -0.5488146215130512, -0.5488146215130512, 1.6815054701358942, 0.18916651964954442, -0.11646656120403893, -0.5488146215130512, -0.5488146215130512, 0.8390036325469422, -0.14857352986036995, -0.09889500962818724, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.595665518087683, -0.5488146215130512, -0.5488146215130512, 0.2889775885608875, -0.5488146215130512, -0.37878476373887726, -0.5488146215130512, -0.5488146215130512, -0.5137907119513766, 0.1141499420032618, -0.5488146215130512, -0.18694744249258138, -0.430123763436482, -0.5488146215130512, -0.5488146215130512, 0.33476817043829304, -0.2649441518603395, -0.2615042078900124, -0.4580277016663204, 0.034358780297864336, -0.5488146215130512, -0.41117431838812973, -0.5488146215130512, 0.3883404684406029, 0.2691007192243247, -0.5488146215130512, -0.5488146215130512, -0.5263424327129402, -0.20862760671003105, -0.17493220585102548, -0.17599623074836057, -0.5488146215130512, -0.5488146215130512, -0.2813234616617707, -0.3247139743126925, 0.6039342414529388, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.6111893535400598, 0.20883900944879139, -0.15881305590689013, 1.1374716117300403, -0.12359776645874347, -0.5488146215130512, 0.3242593361170879, 0.6453984283028572, -0.5488146215130512, 0.6047573209501595, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.051763197464670105, 0.09822457722859113, -0.03720953916290289, -0.5488146215130512, 0.14108805483726408, 0.7577689117530738, -0.1396877749395962, -0.5488146215130512, -0.5488146215130512, 0.02607253868655349, -0.5488146215130512, -0.5488146215130512, 0.26173148827718073, -0.27772362893776115, 0.7389379651262563, -0.5488146215130512, -0.5488146215130512, -0.26562880940698047, 0.6160903470381732, -0.39872458753428236, -0.5488146215130512, -0.5488146215130512, -0.5315272496038953, -0.5488146215130512, -0.5488146215130512, -0.48963085390811006, 0.1845532702945816, -0.5488146215130512, -0.5488146215130512, 0.6591642104399555, -0.5488146215130512, -0.28237886646977745, -0.5488146215130512, 0.6973615502746209, -0.5488146215130512, 0.42031554973019913, -0.45423135176066404, 0.7664758693371181, -0.5488146215130512, -0.5488146215130512, 0.5914533531471774, 0.07323516071773639, -0.5488146215130512, 0.10893356446266592, 0.3401323686075109, 0.06818512309445263, 0.09553805687235936, -0.5488146215130512, -0.5488146215130512, -0.17953469399769728, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.09172276162558127, -0.44161183295377515, -0.14061910607474648, 0.42469600105980004, -0.5488146215130512, 0.26517129321380956, 0.2404693983921863, -0.5488146215130512, 0.13190799338275708, 0.40042127337453814, -0.5488146215130512, -0.5488146215130512, -0.10764059077377389, -0.5488146215130512, -0.5488146215130512, -0.3407759953099683, -0.1152447052517634, -0.5020755482662165, 0.349729642385542, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.4113067221792002, 0.5664076001815461, -0.0849770412043227, 0.14897760549900155, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.20179500613001056, 0.29736610336107633, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.4617516428216131, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.36981152881478546, -0.5488146215130512, -0.5488146215130512, 0.07824109685174567, -0.5488146215130512, -0.5365944187857613, 0.5612027346312176, -0.0018516011397286915, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.12354339237877195, -0.5488146215130512, -0.5488146215130512, -0.17733576482334784, 1.1992306032152804, -0.5488146215130512, -0.009638989839546903, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.44826269763399007, 0.28988814806142843, -0.5488146215130512, 0.9465942486574892, -0.5488146215130512, 0.3051163978700408, -0.3033643071007901, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.4594372968218113, -0.5488146215130512, -0.5488146215130512, 0.0013400564511836417, 2.1505700223530697, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.08962271321785868, 0.4996527386020945, -0.5488146215130512, 0.38985081931800347, -0.5488146215130512, -0.15477334836644485, -0.5488146215130512, -0.5488146215130512, -0.041769121510107025, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.015176022799462249, 0.0712352999934083, -0.5488146215130512, -0.3770586881743342, -0.5488146215130512, -0.5488146215130512, -0.3037168409476058, -0.1714367874348547, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.12357220016117508, -0.09361856952968794, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.4826745878049906, -0.38778851655986746, 1.5718541521544052, -0.5488146215130512, 1.4994447344290431, -0.5488146215130512, -0.46876651162879973, 0.878353172450758, -0.39974328744579163, -0.5488146215130512, -0.5488146215130512, -0.0875725779080247, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.40143021112073735, 1.493988607178138, 0.07955446478460808, -0.5488146215130512, 0.008779082315151154, 0.24478450388332512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5183716533505681, -0.10461160261052245, -0.5488146215130512, -0.5488146215130512, 0.5730076967066248, -0.5488146215130512, 0.30925437442883674, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.18573794863578458, -0.5488146215130512, -0.5407333138359318, -0.5488146215130512, -0.19774143493013596, -0.11378059698260228, 0.11011963314085714, 1.454748180921174, 0.4007367130305, -0.4712878947092174, -0.5457353118404202, -0.3083651546014201, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.19911460325652705, 0.7052039407057068, 0.602432010143551, -0.5488146215130512, -0.5488146215130512, 1.1473199803682048, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.3110536770429163, -0.508791160939988, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.3683151925342302, -0.147559223413744, -0.15975681665471816, -0.5368303433314269, -0.2521086442022792, -0.14064810850432724, -0.5488146215130512, 1.4647292433215429, -0.5106377509146985, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.43161474691963136, -0.5488146215130512, 0.6460939304780082, -0.4550143826009297, -0.5488146215130512, 0.2858179087207122, -0.49077466329353414, 0.17274235757686243, -0.0745714533078889, -0.35145335237755293, -0.46835928887653894, -0.5488146215130512, -0.5488146215130512, 0.09082720586079919, -0.5488146215130512, -0.5488146215130512, -0.05511941534154724, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.46776480163529033, -0.5488146215130512, -0.44066247609956954, -0.5488146215130512, -0.44824305217234206, -0.5488146215130512, -0.11537731559373106, -0.15142944887528687, -0.3271942242733044, -0.5488146215130512, 0.8167093008681702, -0.3643374384099928, 0.8718784287085674, -0.49199991166806223, -0.19245362187506956, -0.5488146215130512, -0.44529608693972966, -0.5488146215130512, -0.5488146215130512, 0.28687690059815113, -0.5021833063345138, -0.5488146215130512, 0.3752661843081288, -0.5488146215130512, -0.29424325154807596, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.03770155161640876, -0.5488146215130512, -0.30694353503062993, -0.5488146215130512, 0.14442364011323178, -0.5488146215130512, 0.21748495904577864, 0.0363544143977463, -0.5488146215130512, -0.5265201455868164, -0.31339264095875097, -0.17112045796322015, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.2846044901143053, -0.42813865418760244, 0.016954653102173024, 0.5236184777950206, -0.5488146215130512, -0.028139926078763897, 0.10251354438434461, 0.46562563114436045, -0.2711221142689546, -0.5488146215130512, -0.0022581356751807755, -0.5488146215130512, -0.3010598235422705, -0.5225862600704105, 0.3240218665594453, -0.43305808355418346, -0.5488146215130512, -0.5488146215130512, -0.29771642457242997, -0.50987148058683, -0.04033551723447547, -0.5488146215130512, -0.32547486403641596, 0.9674637629903959, 1.3688378124483063, -0.5488146215130512, 0.0106207226901817, -0.5488146215130512, 0.6900792988094814, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.43769183342804235, -0.4241756654421836, -0.3471097171714094, -0.06236184755533369, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.13335922713140227, -0.48890304030134457, -0.2057969362148266, -0.16056337894851508, -0.5359020639859677, -0.5488146215130512, -0.5488146215130512, 0.6458157518533398, 0.466972367164948, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.15858017446130904, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.17496718672965622, 0.40707364657038503, -0.5488146215130512, 0.13743836462884526, -0.5488146215130512, -0.5488146215130512, 0.39782957400092517, -0.5488146215130512, -0.5488146215130512, -0.24546127621959046, -0.5488146215130512, 0.35240164762361437, -0.5488146215130512, -0.5488146215130512, 0.6779768046185244, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.2545724603796862, 0.18962933502629203, -0.5488146215130512, -0.5488146215130512, 0.4611516379421706, 0.2936402226856836, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.41492483583495854, -0.04620212757787475, 1.7054991272955544, 0.20728516883039066, -0.0004504195226702916, -0.05117013531883488, -0.4922202870324321, -0.5488146215130512, 0.10657216050783497, -0.17594937639184707, 0.40027089452585674, -0.32197592806766484, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.47648750478573054, -0.5488146215130512, -0.18681363646080307, 0.1536397947159613, -0.33898892566173616, -0.5488146215130512, 0.29773115024078856, -0.5488146215130512, 0.7623860540516052, -0.3415844484620692, -0.12992138057027827, -0.5488146215130512, 0.31507154438892343, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5338916410453297, -0.5488146215130512, 0.9357138050659854, -0.5488146215130512, 0.22363197255302972, -0.26528397802707904, -0.5488146215130512, -0.5488146215130512, 0.4166279311287315, -0.17534513593662412, -0.47136306327850325, -0.5488146215130512, -0.4103564387512462, 0.1566300202839722, 0.03840788651635188, -0.2254031069397199, 0.5477932124440655, -0.5488146215130512, -0.2680090663313754, -0.5488146215130512, -0.28540081952786645, -0.5488146215130512, -0.4993414331990236, 0.000312764257084965, -0.5488146215130512, 0.6158879139726406, 0.43743738290373463, 0.46953603734487165, -0.12004072830724113, -0.5488146215130512, -0.1711089181662151, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.43480617510494013, -0.030207412794214978, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5245850519731786, -0.5488146215130512, 0.08302802710331725, 0.012354584141862357, 0.37124822163818283, -0.21202300428324533, -0.5488146215130512, -0.5488146215130512, 1.0797813024080882, -0.5488146215130512, -0.5488146215130512, -0.51994459372335, 0.012183405851831754, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.02652701204136927, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 2.2283846253820627, -0.5488146215130512, 0.10183622781700408, 0.3298325853559041, 1.098834369272198, 0.7300914177085612, -0.5109001422628623, -0.5488146215130512, -0.0034732345896922655, -0.5488146215130512, -0.04462337212063718, -0.1966180148366492, -0.2869728179473399, -0.5488146215130512, -0.5488146215130512, 0.45701210420594646, -0.5488146215130512, 0.0215364252277146, -0.5488146215130512, -0.5488146215130512, -0.44005510043443724, -0.44842413661341535, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.4271508892740882, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.013329043530395674, -0.5488146215130512, 0.7779681724305421, -0.2835541461329379, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.5672638253125748, 0.44652128865211393, -0.5488146215130512, -0.5488146215130512, -0.27083873578394857, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.22832870964450355, -0.2862176425086388, -0.42110039296058327, -0.08532351318186938, -0.11728407935330636, -0.5488146215130512, 0.21024380594202177, -0.2559414974055699, 0.04700801060619836, -0.5488146215130512, -0.07840205416525835, -0.5041782974035396, 0.8775280908682729, -0.304305342788119, 0.5363209302032769, -0.5488146215130512, -0.5488146215130512, 0.22323711684828093, -0.5488146215130512, 1.7334927283577841, 1.154969058344402, 0.019948048638517624, 0.3867619354372845, -0.5488146215130512, -0.5488146215130512, -0.4674289518323368, -0.2737903099836776, -0.5488146215130512, -0.33894304454111424, -0.5488146215130512, -0.10770001377666523, 0.6715558947245304, -0.2401560005319465, -0.5474394490821048, -0.5488146215130512, 0.6311976375287816, -0.3928444214052445, -0.5488146215130512, -0.5488146215130512, -0.22709600906371613, 0.43276084540905163, -0.5488146215130512, 1.5993020737553558, -0.2687307068419116, 1.0381370391114124, -0.4922474924514555, -0.1976262594140044, -0.5488146215130512, -0.3519667760206841, -0.5488146215130512, -0.5488146215130512, -0.5391471261585309, -0.5488146215130512, -0.2019732036221817, 0.15684596742503468, 0.3129715794014199, -0.5488146215130512, -0.5488146215130512, -0.04343418908759172, -0.2601101169915938, -0.27699286781657917, -0.5488146215130512, -0.028371611834536025, -0.37277658928330387, -0.5488146215130512, -0.12335515265424053, -0.23163526468414902, -0.11701368661577304, -0.5488146215130512, 0.37555253811429096, -0.050194063139394014, -0.5488146215130512, 0.2405956409907469, 0.8502966169296874, -0.5488146215130512, 0.32782977711716155, -0.5488146215130512, -0.5488146215130512, -0.04693678164262323, -0.5488146215130512, -0.3518929352232231, 0.754003767961125, -0.5488146215130512, 0.1789930902234589, -0.5488146215130512, -0.5488146215130512, 1.2601095670002491, 0.17286526336664962, -0.5488146215130512, 0.022361395583241156, 1.1293521549438765, -0.5488146215130512, -0.5488146215130512, -0.09996857223726481, 0.09183753594363789, -0.5183700857456135, 0.17019292444770134, -0.08069288461454986, 0.6226349413106685, 0.22901952838365422, -0.5488146215130512, -0.5488146215130512, -0.06702325818357942, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5411304045073887, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.18021686484077812, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.38994775161319284, -0.47293695255628, -0.5488146215130512, -0.3644662253252421, -0.4502067015698032, -0.09881537112548318, -0.19655088936684187, 2.1811358580710785, -0.5488146215130512, -0.5418828970301811, 0.33699693624441474, -0.36804999965703444, -0.46400650525301074, -0.3214694422061064, -0.5053899448064774, -0.24074630981054468, -0.10735117822623857, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.11909552160894542, -0.5488146215130512, -0.49306977598075025, -0.5488146215130512, 0.5709596747090138, -0.5488146215130512, 0.6919509148499862, -0.30118740086434015, 0.4517427270193474, -0.5488146215130512, -0.5488146215130512, -0.12884662227139, -0.40627449277308736, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, 0.015515431865107007, -0.5488146215130512, -0.5488146215130512, 0.9454358198786301, 0.3015952860263211, -0.5488146215130512, -0.5488146215130512, -0.5488146215130512, -0.4759971815916642, -0.5488146215130512, -0.5063217799387847, -0.5488146215130512, -0.28182670803814547, -0.033133293566397014, 0.10728340129769755, -0.2502081925726315, 1.7808142381000145, -0.5488146215130512, -0.5488146215130512, -0.3131191894798444, -0.5488146215130512, -0.5488146215130512, -0.4131612072683546], [0.0561828213922273, -0.03086508483977916, 1.5146829760029967, 0.1522405257998477, -0.2529408921278508, -0.43581347939641696, -0.22709782499541958, -0.45205541315077663, 1.0260635393204118, -0.42220589459964264, -0.5347734438125334, 0.019999982142120083, 1.134892328746135, -0.21003124010837793, 0.775873528139644, 0.7284410577838009, 0.12029365062957267, 0.8601592370610738, 0.2514992662582601, 0.6761842868770649, -0.5329393172977505, -0.17087643862988305, -1.5576492788279013, -0.6399184745732096, 4.433962321082131, -0.7843879911252787, -1.5576492788279013, -0.7576954784713436, -0.2487160452961038, -0.5882239292324878, 0.033542545665549546, -0.15894455956266065, 0.8194519703992241, 0.4579335443283958, 0.39177363073333454, -0.4585437902046245, 0.404185306823194, -0.941871343658593, -0.6855703567405758, -1.2080609764693226, 0.8254994607987292, -0.8167964515104711, -1.0940756855663374, -0.21427700492009075, -0.05877332708372833, 0.49494008389390154, -0.6055414567391466, -0.594402705555104, 1.1212848170891518, -0.7081363955803599, -0.16922596612788335, 0.5992789678887801, 0.34446871617131725, -0.4781734858937545, 0.13053951125683422, 0.33759547754229885, -0.3957970180514758, 0.20509909089902142, 0.03080404564695108, -0.47923240377392323, -0.6378855541091043, -1.2847360513985617, 0.4941468097311465, -0.6226960287936005, 0.29410846002026303, -1.291710332647527, 0.16387940686816277, -0.3974289861865924, -0.10353853557646135, 1.4031629348630306, 0.3019627957928539, 0.4450523107864866, -0.6361743755813771, -0.4913443530042101, 0.054905069260261063, 0.9170165007612033, -0.2887703199124946, -0.09484353105717108, -1.5003638045132808, -0.06320325788674776, -1.5576492788279013, 2.2177245797849263, -0.6834659787016045, -1.5576492788279013, 1.0573211451093565, -0.7277446613110075, -0.4333498387087771, 0.20989706112551187, -0.4483008551689687, 0.8405171076076442, -1.5576492788279013, -1.2395089285618417, -1.5576492788279013, -0.7705328281392275, -0.3817219237167789, 1.82249324517357, 1.6941867445424106, -0.07331527269823654, 0.3495179947163841, -0.014914174309979614, 1.7504318281999256, -0.5780185880489095, -0.0944374589428803, 0.7101226122504751, 0.29635151110114133, -0.7234964097464424, -1.3357774584142454, 0.958862407674376, -1.1817232283669672, 0.7030429731339664, 0.24532875473191393, 0.46312295871116943, -0.38585746686489564, -0.2076522952976121, 0.4845616939670975, 2.1021049071337465, 1.9853811162121653, -0.534881471282419, -0.29748463333635483, -0.10875676703651894, 0.329809161774428, 0.3315500350569209, -0.2583939023139272, -1.5368429307672073, 1.2909890240001192, -1.1807046836508976, -0.41588866465448376, -0.5066299108640347, 0.19666285495688246, -0.9693049086651928, 0.1151282260979315, -0.15263566755356892, -0.25687332607903496, -0.754012743763352, -0.5486915070180169, -1.3353662482297048, -0.47994332253309224, -1.5576492788279013, 1.4615703232732338, -0.37704609693965235, 0.5770402296094198, 0.6879581839977933, -0.689685786446433, 0.020793695143618063, 2.233155320127976, -0.28258532670771813, 0.34817134490219914, -0.0025841222257965263, 0.3268812296996282, 0.27468150782911616, 0.6023148542936819, 0.321366635810355, 1.145099132725513, -0.29308132541690324, 0.6415397236910362, 0.8180231114610425, -0.9057792708879286, -0.667482228406077, 4.433962321082131, -0.09350126963039437, 0.2735801688707275, -1.0313285477142373, -0.8151579007942503, -1.5576492788279013, -0.13854865143310285, -0.34032531453382653, 0.9879495170541481, -0.6149874606225488, 0.7355120664050939, -0.1919058836207527, -0.6152906981920471, 1.1767669064569906, 1.1209235065263703, -0.4406322213232771, -0.1321967532274628, 1.0420015772471647, -0.927813949153086, -0.713543254558916, -0.07452529738462461, -0.8620041557329368, 2.5572260274197776, -1.1913862745773074, 1.9537680510436302, 1.4460474267947305, 0.193034243693513, -0.08583153868785329, 0.2374336069564791, -0.5290230472401678, 0.03283148062680345, -0.08579935718023658, 0.4532397251629194, 0.6979872582873761, 0.40059355801401564, -1.1261278088944637, -0.3836269226881082, -1.5576492788279013, 0.41956689722733803, -0.16689251426651214, 1.8232805218735326, 1.06518806092584, -1.00515210941881, 0.6287635188876275, -0.3269487051939916, -0.8218052106118503, -0.06474007115501947, 0.18390581277845475, -0.5880968122774013, -1.5576492788279013, -0.3326716743450877, -0.28333471699645013, 0.8274490750419811, -1.5576492788279013, -1.0924517262382294, -0.5467975521549848, -0.7067602704307953, -0.4528975446932747, -1.2793654880408118, -0.13375814146518727, 0.16483783067682023, 0.5680915762982719, 0.014055326287411426, -0.8105353929240612, -0.2675624138339203, -0.9634744240227366, 2.9390897488854755, 0.2965247061239512, -1.5576492788279013, 1.2705090051120147, -0.13133253346837423, -1.2632712600924327, -0.6087732846415542, -0.4209964550315749, -0.01571681036585923, -1.001093509329813, -0.2753310297725927, -0.7954031360641564, 0.21543988697374897, -0.520509209980799, 0.6137154459260566, -0.5262916417812004, -1.0104879130913442, -0.4894630513248544, -0.5940562423696946, -0.8520527559003713, 0.45212931687056, 0.6986278165685316, -0.7150356719746402, 0.2424082829157013, -0.045301709156632695, -0.07938631411013079, 0.39592636173210705, 1.5012878622962837, -1.487325430132478, 0.13266568495324083, -0.501383666864402, 0.9727498984476186, 0.279046197939428, 0.6786113576696847, -0.4788820641796422, -0.9755966859634186, -1.481340647960463, 0.8464996498735836, -0.12790066824021587, -0.9793965906150516, -0.07861585956186788, 0.23985936123288124, -0.8202900467214251, 0.8649969953333448, -0.36192517674720365, 0.05543650297467392, -0.36337334458995535, -0.9331783870534202, 0.15947960965864524, 0.3475223024054052, -0.3913828123033135, -0.26905183251825937, 0.9871321067606839, 0.4377731463227542, 0.38598227587854544, -0.6683099514099365, -1.043971308970724, -0.33255611347683384, 0.5975846115127699, 0.3442542703069319, 0.3704587942817337, 0.5742136692836096, 0.004351431504340475, -1.050465683487356, 0.6633571767797781, -0.3926678784142811, 1.836990721795735, -1.3564752327422471, 0.17598843050684812, -1.5576492788279013, 0.11754447220163194, -0.797208664921034, -0.04248714375639476, -1.5576492788279013, -0.8825680659602211, 1.7818348358914717, -0.8830548112629227, -0.9715544691873902, -1.5576492788279013, -0.968169596274328, -0.26709066218817845, -0.4996798754554672, 0.054954365478743654, -1.4730822651315119, -1.451481250966437, 0.6636201874647604, 0.4966127908920728, -0.6994857869136193, -0.09346045762755019, 1.520509584236581, -1.3630253214939396, -0.2405695892020923, 0.27058816633984845, 0.40957673330606176, -0.03784920339050137, -0.08261046233458134, -1.122708304290819, -0.6112321712428396, -0.31895964592814174, -0.39271658951444693, 0.9055060531641886, -0.004571769159880231, 0.8024705202277926, -0.36165953302978576, 0.2502996274220604, -0.606138350565646, 1.74948891002675, 2.1183510098561333, 0.44069551977350513, 0.30788828902256965, -1.5576492788279013, 0.6911223575944188, 1.2274539511899523, 0.966639800387853, 0.7739935429765082, 0.3909995191955727, 0.20993494753674227, 0.33070936631022124, -0.8473242684744177, -0.3278604658166019, 0.1778463274533895, 1.2350461539550472, 0.6603160243100052, -0.9233473021754681, -1.5576492788279013, -0.5558060338143809, 0.33404483329510654, 0.3727761553892906, -0.7865045835091876, 0.7886674327722509, 0.6406566338661208, -0.0524699936986735, 0.1691824804846524, -0.5426717365989427, -0.8667376166646131, -0.24195939149239068, 0.6734762130111106, 0.7994359503391205, -1.0303616396899353, 0.23844981119926958, -1.0010087768830536, -0.7533381023400418, 0.2988353383708306, 0.06072290071904089, -0.012776737085910147, -0.40794626857468114, 1.5196825194908257, -0.30607680331084874, 0.01912683932864986, -0.9157336694518852, 1.223523126314152, 0.2096472156027422, -0.5225134596472097, -1.210779253335978, 0.2117284814680625, -0.3931293173496302, -0.6625452194387248, -1.5576492788279013, 0.5799197431432115, -1.5576492788279013, -0.06071533478881636, 0.05166643935738001, -1.5576492788279013, -0.9289708012121161, 0.3341365505918172, -1.3738027621151931, 2.3087865439737936, -0.695568712318346, 0.2667875302903217, -0.5104298886554576, -0.351058505582106, -0.5794020271774777, -1.344903292866757, -1.5576492788279013, 1.1531728878682297, 0.23280224917169814, -0.9261952193199658, 0.3176344586042915, 0.7644084272124589, -0.6024204356186466, 0.5254314772424146, -0.3279963595464894, -0.8563835091480994, -1.2867803085301235, -0.21105929299715154, -0.7161378886105132, -0.539741098351912, -0.4065087791412759, 0.6891205215410824, 0.6963243520210729, -0.3608642840927035, 1.8274576815621928, -0.5710741112643859, 4.433962321082131, -1.5576492788279013, -1.5576492788279013, -0.7774563869438008, 0.18869061784274438, 0.1245616499374573, -1.4267920737315367, -1.42737312365102, -1.5576492788279013, -1.224405123080261, 0.8041982283480724, -0.3310347327042495, 2.0701571542859973, -1.1258886052111454, -0.1069352937054015, 0.4494439163395321, -0.1352967100884319, -1.1415652049584069, 0.5634703118045131, -1.5576492788279013, -0.5426880467721216, -0.3098658832735585, -0.6534319284602048, -0.658360306932333, 0.05395732386094613, 1.0628616304843124, -0.3572533726585333, 1.0398495120650877, -0.23465696857542326, -1.026175666656588, -0.5301031025196588, 0.5943290131786001, 0.21690692488232746, -0.6171660024086204, -1.5576492788279013, 1.237527055633135, 3.323116067663016, 0.24251199513797186, 0.35659836523079, -0.9382194739419981, -1.0920975833748647, 0.10523211994664732, -1.1181862539222465, -1.3933055602686066, -0.7094586167046655, -0.6971066226834748, 0.24312227354606117, -0.2907474347168008, -0.7144248815880331, -0.2682193554280443, 0.5214583775679755, -1.206702404869367, -0.5240243814298131, 0.05823029667454707, 0.04504641068146378, -1.0326482455157875, -0.3294591553472487, -0.08931372409155776, 0.4589607195396952, 0.1009919137589831, -0.47251904872591843, -0.24143146848789965, 1.1583298281842205, 1.0612873696435412, -0.3603171253234284, -0.7091892428579555, -0.7296720410580879, 0.9192899779947494, -0.227115963663349, 0.16462148317788494, 0.8485392260585852, 0.1342501853646233, -0.5725198654940654, -0.6767384345343319, 0.8300946875272284, 0.7128442901173738, 0.012856711408275262, -1.2219900837831024, 0.6194626243476568, 1.4057313117300099, 0.24983065508833072, 0.21391404467397396, 0.07192937934865178, 1.322822678775409, -0.36743333433496217, 0.508767161200588, -0.7686204420491046, 0.7969884004052901, 1.903369762201756, 0.02305605512906638, -1.5576492788279013, -0.40044080960056616, 0.11487721033853374, -0.5282196797863907, 2.561335898501591, 1.3367180686459814, -0.02765190758383731, 0.6903992976301004, 0.8918945919585525, 2.4161276700701504, 1.566151153693552, -1.5576492788279013, -0.7128170495836295, 0.2713185402831643, -0.5809070977768798, -1.5390384832685082, 0.46407904204654565, -0.48921218184502335, -0.09787254232180634, -0.07877647454079724, -0.654154769005149, 0.4703433187837172, 0.6876872742154927, -0.06680524626653742, 1.3313580922728452, -0.7466957660281643, 2.325653749793177, 1.4513550350782054, 0.42927912994648226, 0.63971108266051, -1.1560271722125093, -0.29212846023229466, 0.2112564372631545, 0.5896053529787756, -1.5576492788279013, 2.424634705329034, -0.503361147367658, 2.292234716929042, 1.7185510713998573, -0.8724681192140883, 2.22404297996672, 0.1769686499729339, 0.1183359910094258, -0.28567606795513945, 0.20808494968753127, -0.20329623568252803, 0.4776836281119273, 0.17949007109469942, -0.7096272770604938, -0.12737084360117484, -0.4777393281000892, -0.280731671868996, -0.6910023758069063, 1.1574190915186737, -0.8273022509515243, 0.4450850774124236, -0.5040869135042051, 0.6273033561193039, 2.5155708690790477, 0.6233415199725388, 0.8052161879458235, 1.478466492449478, -0.1881156334214023, 1.0704561737227003, 0.04713528308494805, -0.4703974828362883, 0.6627474834900217, -1.2195940242614587, -0.6893559259933613, -0.06162402354024803, -0.620462997863951, -0.7832938930061004, 0.04659053792874529, -0.12586211601227773, -0.242626572657114, -0.2627385521217594, -0.24870682968255603, 1.9936233854311176, -1.4150092992687902, -0.32807447284225594, -0.09963799057373972, 0.8456885296020655, -0.5190922728283939, -1.3328209469664891, -0.4623183884889038, 1.3715466515437398, 0.7295704824215758, 0.5692078357738343, 0.0584938924778379, -0.20900099302590017, -0.5974309122820463, 0.017322773267576433, -1.5576492788279013, 0.004208077515866065, -1.0612476953454872, 0.23049659043054763, -0.39779600165300344, -1.2385848804545014, -1.5576492788279013, -0.42043795959484515, 0.16035948133279268, -1.5576492788279013, -0.5948861595672558, -1.312733213342246, -0.6735699456900978, -0.8195255164961573, -1.3178412231387078, 1.0238988940944422, 0.28036593231086676, -0.9800770832215647, -1.3017864358221072, 0.013732048415449618, -0.03557616499571051, 0.2855187767986277, -0.002511421274501787, -0.7707746282850926, -0.3436103882033831, -0.12444335036511829, -0.915110152741812, -1.5576492788279013, -1.5576492788279013, -1.272855882162905, -0.7250838357494264, -1.5576492788279013, 1.4325159805193868, -0.4366142869575426, -1.39973626659801, -0.22582870335868083, -0.12211691992359072, 0.3666732250289458, -1.0362446752715344, -0.5390072136986702, -1.4526593592769472, -0.4939692669288825, 0.1920910329611834, -1.0850379845608213, -0.6897905957655572, -0.06643150193944042, -0.40913018235602605, -0.6394665438105649, -0.6480892862173012, -0.46860877613111984, -0.6449041946407279, -0.550587363515592, -0.7249566456545499, -0.7659954549846414, 0.1229999691405667, -1.3764289377012444, -1.2086584188442475, -0.1938478913258407, -0.06176035610887879, -1.5576492788279013, -1.1120967812832665, -0.552589053289351, -0.40009493153347675, -0.7010975684666855, -0.8716970064077177, -0.34036429804191504, 2.5828255390513974, 0.3475129405122804, -0.14269553124867235, 0.4532992609520133, -1.3532576488139485, -0.25526176394534145, 0.31458204260684414, -0.47940779299043507, -0.09440513115568652, -0.3257247839474933, -1.4515795691291955, 0.8659165087737082, 0.3059284352087183, -0.294200217924913, 0.566499030509982, -1.5576492788279013, -1.4363224077928542, -0.3867949726936032, 0.3310529770438166, -0.6363977445001525, -1.5576492788279013, 0.2818660294045484, -0.7629628598702982, -0.5520415288211262, 0.49128324067158013, -0.23920304536502895, -0.4754164083684834, -0.8019538282191165, 1.2952913990093244, -0.45645433268281993, 0.3098112803822538, -0.9799754920532012, 0.16543406624520973, -0.8092673683841732, -0.5946874387577217, -1.1097797493047585, -0.32600944401031506, -0.9240879888291816, -0.21820183233309898, -0.6187319984531234, 1.599237839351766, -0.5961339243853034, -0.1014806744439532, -0.7204108614241104, 1.6211707070291967, -1.1628812116466507, 1.102114293001887, 1.1177805434688648, -1.1348199609619458, 1.0009066696981197, -0.8674892011470445, -0.1091381179017679, -0.8297597478967998, -0.6321480301397867, 0.7225205380598134, -0.5165656587815325, 0.3768003066371854, 0.2671611283378296, -0.7707054380437172, -0.9567902883208524, -0.9541973364844265, 0.3160752645602592, -1.4156408613557672, -0.4703802949856294, -1.5576492788279013, -0.5164000702968866, -0.23582252426946826, 2.0925569463830302, -0.368236336089789, -0.06018185316027645, -1.5576492788279013, 2.769526262930547, 0.43008118088404157, -0.16766530928805626, 0.9792066791121701, -0.9216823479950439, 0.30803032649482637, 0.17010828394694968, 0.28817419001574274, 1.23606104168162, 0.8470875475059118, -0.16621684888613844, -0.014454856428541198, -0.29869261010861586, 2.4160004068354786, -0.08037296987773994, 1.0372442727439293, -0.28870595689726114, -0.5849618945967946, -0.24469569731729698, 0.8055409286135806, 0.07242555968426934, -1.4121304531355792, 0.24945149841677391, -0.7454474892315861, 4.433962321082131, -1.5576492788279013, 2.451582914688942, 1.2948859120133418, -0.6786368509245574, 0.4479868254423865, -0.024098630304209934, 0.24505930774542034, 1.7406272930657622, -1.4062862090701216, 1.0484355382972244, -1.5576492788279013, -0.721589436000783, -0.7322389551292603, 1.1547410049666436, -1.056636560712648, 0.9398952122034109, 2.752795974798091, 0.3324208373971096, -0.7411040828001819, 2.3778685384604397, -1.5576492788279013, 0.38813258570566156, -0.19666918558676816, 0.22219829613241102, -1.0485075850284595, -0.9853608113635921, -0.31910197595955264, 2.490016996676412, -0.5159065961335003, 1.180667305180135, 0.5168916753575818, -0.010916207106921415, -0.7690640348756846, -0.653289744708371, 3.9460321537808634, 0.852871588381691, -0.021836709157492855, 0.3424143657487309, 0.3609323366292922, 0.8470217216948833, 0.04445880560828979, 0.5808038569251903, -1.4891004048420668, -0.16541538306689943, -0.35272111928924327, -1.1182079764398876, 0.4666371793429135, -0.2975153520481648, -0.6059516978214691, -1.2694544248024524, -0.3781856880082333, -0.2457094148072172, -1.0823762813217597, 0.18020859639203238, -0.7611105946875872, 0.6101883526912658, 1.316758219944627, -0.639274113022976, -1.417074364670616, 3.728305530967609, -0.4297925387407006, -0.5660955588962908, -0.816934466294273, -0.4076393740156817, 0.3782525703081792, 2.5608941341697737, -0.21408406215396758, -1.1056853838584333, -0.25002305334408526, -0.15444763271197245, -0.4130482809083604, 1.0416098405317273, -0.6672155607315994, -0.5680377128809597, -0.9011894565038867, 1.1176655677189191, 0.014316289058266882, -1.1244901358557244, 0.878874100256411, -0.4412888703582385, -1.2138822454982343, -0.30525032368342575, 0.222181473980699, 0.8580036611690749, -1.3460385686877268, -0.654426337045561, 0.8272877286651543, -0.24561360168227644, -1.0470696201864182, 0.6186137639444849, -0.6626166038738018, -1.3686445601378185, -0.4096635177049829, -1.0227788353878544, 0.5641633844549189, 0.110510764873261, 0.24846864591825302, 0.7409185596847002, -1.4382237497746806, 2.0178247568363656, 1.6422469614856905, -0.007117033853201388, -0.14035973891401993, -0.8972924222110834, -0.9937821267885633, -0.9768170964999916, -0.1900057118755604, 0.15013673287918944, -1.1456981516439775, -0.5995717870762479, -0.8316160357679634, -1.2856534620699558, -1.1527512044468131, -0.231674181658092, 1.2898357557908124, -0.018299961470423048, 0.02755195802270304, -0.36217794786157487, 1.2322960978496198, 1.0040660160685937, -0.09641237955348242, -0.4713284060838915, -1.089289819975098, -1.1418483290856443, -0.7113233156516837, -0.38082493733175327, -0.23569540731438526, 2.495517694005599, 0.06112736375794784, 0.060486512917638194, 0.03390005295925511, -1.4746136386279056, -0.7562928035779961, 0.1772478976912956, -1.2297291146767046, 0.042163678996904465, 0.4377585183647466, 0.6882596662123268, -1.3063458423384415, -0.0997735917444731, 0.24476865021980648, 1.1264487788249982, -1.4373894441897175, 0.34118825030854044, -0.663384791088571, -0.761941170143257, 0.6479647616867142, 0.058674986597977895, -0.6933509676048155, -0.8320652603583759, 0.45165917430020197, -1.0862219714819559, -1.097932273555249, -0.3510857135839944, 0.19263402276242525, -0.04919259970707532, -0.010952045604049008, -1.1415554407964374, -1.5576492788279013, -0.9104090195973318, -0.7410028573307693, -0.8015293248777362, -0.8239113440057848, 0.28067706897769124, -0.02573974091308477, 0.14191699071556285, -1.062203998100233, 0.9832170800795317, -0.23906188557024668, -1.18365784895326, -1.502951645706878, -0.3632518593987027, -0.2791694059537851, 0.23687116197109018, -1.3342867232136921, 0.4923902845335948, -0.6470757881467456, -0.8862480213561906, -0.9459156449186376, 1.0684255205920803, -0.6472492025889246, -0.13855976868117664, -0.8646762448221831, -0.41963810285098996, -1.0920836868147583, -1.0501847901237151, -0.7190746705999072, -0.6238098746560883, 0.46098625288499734, 0.3329655825533124, -0.3736753765759622, -0.4514201940742973, 0.013222995476785387, 0.5833068468198725, -1.041549540812882, -0.9570277366492098, -0.8138609860372971, -0.4801944845720834, -0.6855455623517538, -0.7166753197877122, -0.5771254780727568, 0.3773137479632459, -0.4878562432775105, 0.23308252084712364, -0.9043639428109049, -0.9126460000756424, -0.9754611945023736, -1.5576492788279013, -0.9057723957476655, 0.7766868426048662, -0.7729125774876925, -0.4905365240232412, -1.5576492788279013, 0.32132421473212675, -0.01700597230506539, -0.9797896804166097, -0.2644030674634464, -0.13411374712435487, 0.09653024028709048, -0.0639048147527919, -0.017570757763747544, 0.6983901122509112, -0.80704735633715, 0.8198442922329937, -0.21857074943405647, -0.6822856487699713, -0.42791577172832657, 0.6168073574101185, -1.5576492788279013, -0.9750674830125987, -0.4848367401855821, 0.8276458210771802, -0.879610585410246, -0.6768265679813273, 0.15234906524825778, -1.0134054593159594, -0.8161279538295241, -0.7047498038822316, -1.2627117589835892, 0.13063093599439093, -0.7164518045893562, -0.486442158576916, 0.2703674304535169, -0.3311950551240127, -0.17361055026107325, -0.674469053129034, -0.9081571186018531, 0.4323246708036631, 0.030398851210134768, -0.9588197346449309, -0.32755240102096794, 0.075937001003989, -1.3768930462389297, -1.5576492788279013, 2.462839420934945, 0.359339352002259, -1.3282500575031186, -0.352781752175183, -0.46598086347505524, -1.0892345994336188, -1.5576492788279013, -0.6579186157402936, -0.28734745843709303, -0.3053654457129485, -0.26595553264678923, -1.5576492788279013, 0.6286150451138475, 0.24122283319876597, 0.10543266925092215, -0.3485863075390284, -0.3772644923527052, -0.050623506559372054, -0.47146459237294164, -0.0070498915259435396, 2.244980268822148, -1.5576492788279013, -0.3331095622680465, 1.290576223025151, -0.9708184269103428, 1.1047063671608324, -1.5576492788279013, -1.5576492788279013, -1.5576492788279013, -1.0323002098248915, -0.5622089104536734, -0.46910129947723495, -0.13401793399940212, 0.3034043810545052, -0.496493028523933, -0.25983417105934886, 1.6614022724966395, -1.0108898162376032, 0.03652328466875374, 0.22398349212765764, 0.11434782453823568, -0.8138668372205001, -0.8099458130765654, -0.5178876604864678, -1.2374550535478896, -0.928337922608918, -0.008480213259919975, -1.0498083761942845, -1.0814386657833677, 0.17789884182263974, -0.4010831232366786, 4.433962321082131, -0.9977687207542679, -0.1582156484151513, -0.17997663758597765, -0.814673715384199, -1.420489051190592, 0.32047535432894314, 0.7509299341450968, 1.4098672205770706, 0.7160346477588239, -0.4260174284778922, -0.10417002452364614, 0.6533199108337109, -1.0384025184970234, -0.3862885527873802, 0.989216883335926, -0.3905436794922081, 0.1781154818807292, 0.3046904711225328, -1.4048461231741693, 0.730197144142621, -0.4454733440258905, 1.595513561243033, 0.9466697121158872, 0.6917071833555564, 0.008443310197801425, -0.34347420191432926, -0.04646975160354798, -0.07872703204272559, 0.7047989132131978, 1.1019981470153006, 0.46999809897473804, -0.2862935140626489, 0.25114058872791395, -0.27923771851768353, -1.1794054284206634, 0.3818324704713744, -1.5576492788279013, -0.5977315168191029, 0.7574466894374854, -0.8230749905067003, -0.2687456693571635, -1.1902490239820072, -1.2738166281598962, 0.7996996924220001, -0.056922597836607684, 0.03420270541042921, -0.4142104721720631, 0.21011984492595825, 0.5480357681923876, -0.954639393375416, -0.03261795304783201, 0.3635532278655093, -1.4714412642323251, -1.4313926945195568, -0.06968183420872755, -1.2564917683892862, -0.25740812422379256, 1.390417595051021, 1.1179999628389667, 1.2198415618428011, 0.4814567636003996, 1.72168876839248, 0.6464084932342834, -0.16263694872294324, -0.6833244532078809, -0.19896796918766435, 1.9949510188998867, -0.3513508453228864, 0.23764351815389106, 0.4977246619802269, 0.2314103989672727, -0.008851617113735754, -1.1862731084256488, -0.5943877850379363, 0.05469574318116941, -1.4494589814842562, -1.2163722165102868, -0.02618881922391188, 0.45317112003986676, -1.376900378502881, 0.2180114819914838, -1.5576492788279013, -0.9129401683111759, -1.4503582992000892, -0.2487447160937987, 0.37983253605257633, -0.0418645778635916, 0.13059890076635103, -0.23481392656484174, 1.4702066696809166, -1.0065625736997972, -1.0939972797114166, -0.4396653132989763, -0.23379040834305345, 1.7523176645462644, 1.4261074721162663, 0.04632825864167214, 0.12483051180563087, 0.972723860682371, -0.07100186113933273, 0.5657825531267764, 1.890694636588171, -1.241305936633179, -0.10948289887200387, 0.8454587243817633, -0.44221167508914694, 1.09558905349386, 1.2720973087924852, -1.5576492788279013, -0.42145423697742307, 0.45760163596120645, -0.051397179258402634, -0.8508330036219085, 0.6464847048955003, 2.7498396644847625, -0.5263324537840421, -0.004123714806104665, -0.7039330518468773, -0.9484425515246586, 0.7152020243890317, 0.7741407002340707, 1.3837937631060169, -1.2062851423672007, 0.9581447600545175, 0.23082849879773665, -0.1639868166878839, 0.23743682510724679, -1.5576492788279013, 1.329425153901716, 0.4343946731413206, -1.5576492788279013, -0.1087090798934082, -0.24653077464934653, 0.3878745485264076, 0.2965029104665229, -0.030329262737958038, -1.5576492788279013, -0.017300433099767226, -0.12931870248946592, 0.32924730190735935, 0.5225829749795993, -0.24774094561531168, -1.5350213065852851, -0.00777119613530094, -0.8986580152308825, 1.7811876950292158, -0.40524119344012743, 0.5980600201480104, -0.3484786457680925, -0.20904531573866617, -1.0437984065070744, -0.29243316059759583, -1.0919188662979071, 0.9231640463934803, -0.12014273071088599, -0.8997068398200269, 1.2590307390226168, 0.6413634567970476, 1.3593466420062532, 0.9021451335323641, 0.66268663118471, 0.4779687270134923, 0.2097244512210223, 0.25791318700585236, 1.6453182475489647, -0.37626094129359444, 1.777206257418703, -0.3354199019557717, 0.12153761217853838, 0.4748282507088452, -1.174572570514325, 0.0016992364379808179, 0.37685691683467804, -0.3991256830358926, -0.35003527991947203, -0.20528373633702265, -0.4230584851321163, -0.17768063329710587, 0.34912347868892263, 0.02578182882419524, -0.37085978721866075, -0.7839438863201682, -0.08320918465582912, 1.6785734472834264, -0.28243582897688657, -0.3735386051685918, 1.1585884504817947, 0.15737698697462757, 0.6219920908463297, -0.4247170761508072, 0.7730782716439761, 0.8456480101583875, 0.20865441609276386, 0.309994714975663, 0.5835492320840554, -1.5576492788279013, -0.07452076271763927, 0.37037863307185215, 2.059887450087193, 2.3287030939194455, 0.025047944170957303, -1.5576492788279013, -0.5310953169113144, 1.7147287859724794, -1.3007953368122496, -1.0176173238349797, -1.1243671512987747, -1.1625130625134952, -1.5576492788279013, 0.778216195614563, -0.323443115057463, 1.1828047424042165, 0.391217768329046, 1.0037664354885982, 0.8577952127674697, -0.8877257376741177, 0.8382235900716307, 0.1650731945211594, 0.46892074986748183, 0.4079484953002333, -1.4645295815011588, 0.7669365771949139, 2.5060006738321605, -0.39596589782667296, 1.3983974387033231, -0.47363567390042854, -0.19522482101309244, 2.2537508998843343, -1.4510510244364863, -0.6512967585696267, -0.3891357385339781, -0.6896860058658022, -1.0732132918559085, -0.4615692907593357, 0.0993551915375168, 0.147884319905174, 1.653560516767929, -0.4061690448165496, -1.3096875262054857, -0.469739078446366, 0.20719381448570873, -0.9719313219555605, 2.3194789961590234, -0.35841285775000337, -0.8756428980802664, 0.4202263255743203, 0.7546550899313164, -0.9351301954903739, -0.20425817020110731, 0.054106382753046495, -0.7792812978450383, 1.1473184865144368, -0.614731910196157, -0.6580853744615802, 0.6555489190749139, -0.6547096074523776, -1.1885076021510976, 0.2829193886606722, -1.0265545307689845, -0.36298409462737274, -0.8436275640665284, -0.9385067670372672, -0.7607770772450141, 0.8857259820667446, 1.4141453131759771, -0.23517333549308528, 0.4386734971381248, 0.6728894856154347, -0.4468705334349862, -1.1421980104218155, 0.7758590464612138, 2.223774995776021, 0.09984230253916337, 0.6155622256245122, -1.1520047763195813, 2.058088211252259, 0.5697976350407005, -0.32117797575999024, 0.6155376506550594, -0.3112047802699905, 1.1691264314304646, -0.8835569890613241, -1.2737064613511524, 0.11680400496728133, -0.5075123424308423, 0.057432487844806965, -0.7814446265547819, -1.17602849117482, -1.0847615161544777, -0.7634415597960965, -0.13099038553057363, 0.051136907277505146, 3.0813562949615947, 0.25148771017143084, 0.22843156159860648, -1.5423859223227814, 1.874139883951818, -0.2180856863465247, -0.08545969599530627, -0.1949758531678092, -0.9323205304560652, 1.7071924620069674, 2.7642005159791427, -0.7772616888227203, -0.690879281540272, -0.5964833863021041, 0.8800741779313539, -0.31368802242135946, 0.9548066600371848, 0.4421079953987183, 2.640032264668325, 0.4165427131888543, -0.4489481423108036, -0.4374830413836126, -0.6159728730137302, -0.6655715245311252, 0.9548502513520415, -0.5053808295297658, -1.1328879002683028, 0.9333322325637182, -1.10288595839473, -0.5723632732035946, -0.9700515196419003, -0.8779275657016821, 0.8188378887220713, -0.7119126029400192, 1.247763115528528, -1.5576492788279013, 0.2919362082561295, 1.196351401755888, -0.28694387307566055, -0.4058418173959192, 0.21473321032239914, 0.8394638946310976, 0.06157673462794109, 0.32966332103309526, -0.9093609264060882, 0.03644180694265445, 0.6946880686383496, -0.5051635312135639, -1.467289036069606, -0.29412722441445216, 2.850771697059667, 0.41610431328736996, -0.7299888826285323, 1.2873966900726206, -0.9733069716964896, -1.5576492788279013, 0.5188526994080738, 0.9358306877914151, -0.5525173762951127, 0.44590321910379754, 0.13778927352498657, -0.283573298991557, 0.585088239546031, -0.36525435371015114, -0.450482468826221, 1.0667710985414276, -0.09335820820107411, 0.909589008803268, 0.1801755372069415, -0.6695945055423734, 0.7039480048958874, -1.3517524685048632, -0.16186181322811788, -0.6171832633990694, -0.5778915442336137, -1.0222654672015774, -0.9074834279958132, -0.8625385881787445, 0.8490035174457405, 0.5206632017706703, -0.37617865902980213, -0.4063604516470788, 1.1796761147455406, 3.0940454634148673, 0.1607469759404231, 0.18988703852818867, 1.0657415828568473, 3.28248574406028, -0.7129035739552435, -0.11443460893715712, -0.3137321988545484, 0.8164655264923939, -0.29481195912878455, -0.4788856480293536, -0.16753526674135977, -0.1139789480452176, -0.3135437907554106, 0.20345242166610997, -0.04857383708336013, -0.009568094496941657, -0.7417723610617585, 1.883252516672228, -0.36416193780614414, -0.28170911202306936, 1.0853638182873984, 1.6977624025977867, -0.5685593458635104, 2.1937894372154165, 0.00889999504679248, -0.10684752595735594, 0.09672084257992014, 0.900175917825388, 0.4445896284747031, -1.0577914379973483, 1.8142521461912464, -0.1362634718331507, 0.6282111671932608, 1.1182778940411229, 0.2683515515604935, 0.7152745790607493, 3.0688169167983324, -1.5576492788279013, -1.133914051522536, -1.5576492788279013, -0.19212778974372488, -0.36414526193401653, -0.24650371292703546, 3.3090647437600764, -0.6992644659089639, -1.1527975385038016, -0.530951889783049, 1.6422291153769273, -1.5576492788279013, 1.5707291194316082, 0.3632665198885605, 0.16674458500311296, -0.3840315320065983, 1.1652254475890118, 0.3026014524394714, 1.4917662318699814, -0.2194880686807156, 1.3512102792032639, 1.2502121282581533, 0.8065521593506543, 0.7783620363558957, -1.5576492788279013, -1.4936341347208608, -1.211595749382067, 0.7598591322720976, 0.8153754510616681, 0.16479701867397606, 0.6518119146427112, 0.18575537178893478, 2.645163752337389, 0.1711471615246552, 1.407290359494453, -1.5576492788279013, 0.7496084444186968, 0.15837007904376008, 3.0606062439686763, -0.13404221640970074, -1.5576492788279013, -0.29247777586951595, -0.8984603915181992, -0.10620682139663536, 2.480099241147264, 0.5540469812560218, -0.22485872346319433, 1.083831100847357, 0.73703425171537, -0.811504714561434, -0.39472632466510954, 0.899281857031964, -0.3588779536748504, 0.9501230804423197, 0.5870284918961581, 4.433962321082131, -0.8846156875221239, -0.2213234385719193, 1.3580470942168466, 0.595913074751239, 1.6669278373544216, -0.6473437723374447, -0.6333936739039236, -1.5576492788279013, 1.9440863907567187, 0.4337848335719748, -0.9961591333949021, -0.8825223535914464, -0.7607195893700436, 0.6048080434564961, -1.5576492788279013, 0.7054810148950831, -1.1840209148710086, -1.5576492788279013, -0.690504732675488, -0.5148347325104935, -0.23294579004770102, 1.6147039793532, 1.6258577973339836, 0.5821276871248835, -0.40719790224301267, 0.12311640768630713, 1.086364955733426, 0.19178618631630517, 2.7111136084554612, -1.2288485116046477, 0.9506394473599818, -0.4335404410016166, -1.5576492788279013, 2.0171597698653345, 0.07712830190412737, -1.5576492788279013, 0.7014630073895689, -0.6609525273708581, 0.5056518449837016, 0.12588094547016537, -0.39817844961511195, -1.5576492788279013, 3.3695449138199494, -0.25471555599333195, 0.0993395396224454, 1.3070180478256852, -0.29096597640942823, -1.2178983879391132, -1.5299824596027782, 1.8813421053564363, -1.0398291466716096, 0.07782590922151846, -0.005093694701591145, 0.5526557161699289, -0.5188490098867268, -0.5263627336571173, 0.625659027359673, 0.26299069750987086, 0.7740113890852834, -0.08283982871614039, 0.20656027762439688, 0.11715229664745137, -1.2218835922488072, 2.2131369595945793, 2.251946687543684, -0.45482785003195664, 3.121087876824344, 0.2570413607085998, -0.13583150823318949, 0.6826030348507967, -1.1655954292549602, 1.3520572379719094, 0.18872762657650058, -0.6533647129931595, 1.0202933950047306, 2.6694681045669983, -0.34245748569301326, -0.13074858538471112, 4.433962321082131, -0.24549745569569018, -0.10344696455933983, -0.9116035386482317, -1.4839308844821837, -0.48973454622547535, -1.5576492788279013, -1.2931031702391151, 0.9737867281111967, 0.5395560872149694, -0.34071024924879173, 0.5980237428121515, 3.2289389335368517, 0.49741294019508187, -0.44099543352060616, -1.4433186492637777, 0.8248179442351523, 0.9446095105100859, -0.3323006361902206, 0.5155524858019837, 0.4237022209560905, -0.37089708851158065, -1.0082273816006404, 0.3969146265751, 0.5987914180483901, 0.36797204142044293, 0.24971407026301348, 0.48802837373531993, -0.533625222248727, -0.19356074451014868, 1.141140222170338, 0.23380894524177442, 0.9632794658743368, -1.5576492788279013, -0.007362783547728948, 0.3893284212727853, 0.18697666000299798, 0.3466349704726584, 1.0562436497225232, 0.129387559563733, 0.8685619749793784, 0.8659965237040009, 0.011726116533859418, -0.06730259683879557, -1.0247311923732323, -0.2369951013833569, -0.43421844685526906, -0.041320710384875295, 0.4046615931359212, 0.4644317221141117, -0.7684653856942242, -1.1815205214388766, -0.14959641671833435, 2.6370619115152976, -0.23950862340780457, 2.5403690611709937, 0.8466982975433327, 0.857899802667227, 0.4717748107543465, 1.1806626242335727, 0.7975651807895322, 1.594298270491762, -1.5576492788279013, 0.28873327057078696, 0.1984541946944863, -1.1280412189416478, -0.4021077385553215, -0.8549495304246156, 0.0770058658956068, 0.642766570529136, -0.1265508002752632, 0.24201976435101963, -1.3596245955313857, -0.032752530261501864, -0.6684178326002427, 1.3491930837940107, 0.5537368685462608, -1.0540518005327064, -0.663729279499649, 1.029994071637058, 0.3001180640085131, 0.08622557526863242, 0.7697547995846511, -0.5616159661758354, -0.8798815683323363, 1.0196401104001176, 0.5940641008590792, -1.5576492788279013, -0.8466997278072831, 0.47161858416281294, 0.2589075955912148, 2.8812168660608757, 1.2666685810167073, 0.34469032973513525, -0.9213960788568347, -0.6697763310604086, -0.2790870505502113, -0.269921903460551, -0.5676478778000565, 0.62954479812481, 0.2016068122042827, 1.4156206890206169, -0.18671954110915764, 0.6316512240779034, 0.17330829604070322, -0.014292924933406137, -0.5775019285720813, 2.3109868814172896, -0.8638739013254673, -0.25087030467188504, 0.3845272328955269, -0.32759496837876106, 0.15038101977792248, -0.2218118660897958, -0.46482715642699696, -0.6989351905742135, 1.251078395931369, 2.44828109200748, -0.38553930877823145, -1.5576492788279013, -0.17226521696311792, 0.446545679019491, -0.6517124119964114, -0.6129152640911932, -1.1088758512095738, 1.0939565733802126, -1.1902637250798047, -0.5293420098645232, -0.9880429937438643, -0.5689060284682904, -1.5576492788279013, -1.0356312152825906, 0.6702298302904882, -0.6652674824239379, -0.9092633579261771, 0.27951648678936286, -0.24697531829320027, 0.584870282971724, 0.9352821393661364, -0.31502794337485496, -0.7638528248354802, 3.0647980316153323, -0.22068302657035288, -1.234522184537262, -0.8741648160633896, -1.1301663686809909, 0.08891726582160658, -0.06852768832193447, -0.7425896250756432, -1.0647867835058442, -0.3571874005679159, -0.46004096170670244, 0.048674144267346814, 0.5113802996190643, 0.5832351698256416, -0.4022023814436301, -0.16546775115657258, -0.8764399755120996, -0.4105042595914697, -0.5567507804823011, -0.9943673548185515, -1.0789175006508636, 1.1078484525408634, -0.6566541750501174, 0.3009205537848159, 0.5628787571826861, -0.3766379769112405, -0.08030977709914713, -0.43158585325264204, -0.19529708312565594, 2.8114374105364157, 0.24655647924750046, 0.4823859314930419, -0.4006991393389804, -0.17820636210790475, -0.3818341932944873, 0.4671754881975929, -1.1690058279547453, 0.14469586389826228, 1.3484719254642425, -0.17446979651444525, -0.9520688954545307, 0.22724304001049256, -0.7223677896463662, 0.9420434741164, -1.1822736052870024, -0.5312868700214228, 0.27211474003752084, 0.7802625006602423, 0.6832217974745118, -0.5611939495873169, -0.4749888331559204, 0.75642112330157, -0.7272135932955422, -0.7860872478672304, 0.0013247607129864409, 0.9353049589806163, -0.23664534690739236, -0.5509891203822704, -0.7533295449846077, -0.036126176216796, 0.7142632020441103, 0.6416004297167707, -0.7335404776929862, -0.8722117642500055, 4.433962321082131, -0.863039230041554, -0.7569667867431963, -0.37799779188762633, -0.6886164827160769, -0.9956108409588827, 4.433962321082131, 0.6349126735952764, 0.9926427511013043, -0.11091673131591412, 0.6212511847732481, -0.6351914499430569, -1.441299460795252, 0.5428995995767616, -1.1152177292639753, -0.5239005557652793, -0.44861703848130285, -0.10374230303151612, -0.7422794392260913, 0.4121275566234195, -0.6366517589909539, -0.3374635008292211, -1.1802686973624816, 0.2706417046661623, 0.9365822722738513, -0.8915835690394607, -0.2210479941226453, -0.19196264009782216, -1.2321766646105352, -1.0871097788233308, 0.1565121820972187, 1.798301528220613, 1.6643073849569354, -0.25304826133963254, -0.5857348358979158, -0.441801214587454, 0.35471633215353937, -0.9288577270967181, -0.5329055267147534, -0.06868947353749245, 0.018255890708871788, -1.5576492788279013, 0.6709544993301904, 0.9142702479248639, -1.0442685856473335, 0.5463899766369503, -1.4306538180756465, 0.4837613983844991, -0.46987424077835616, 2.3850236578402795, -1.0239420506086183, 0.312355228559345, -1.1780313877551158, -0.5305709777565313, 2.349447293729173, -0.29683617595788125, -0.44646928854683704, -0.13520879606080924, -0.9003541269618636, -0.35162614349258314, 2.2849280519042434, -0.561125637023421, -0.8450180246149392, 0.37436796977968284, -0.7076966060228607, 2.9985717070909104, 0.6911244055085338, -0.03267734255734883, -0.37258530114523636, -0.6883448415358764, -0.29808028378642404, -0.3700799707772765, -0.6766484725925848, 0.046238150420345375, -0.5123473945308824, -0.08436552473633832, 0.26317091395252445, 2.278877928472303, -0.1083517188792797, -0.2116855158794536, -1.1388023859596172, -0.48700562751936843, 0.5037089596011392, 0.14396753786906094, -0.047807039524596126, 1.1921563959584647, -0.06605922040815018, -1.5532452580812053, -0.03215761120933007, -1.1459308093160878, 0.26738756912778716, -1.3916235462321553, -0.3744410770378706, 0.38456731350047396, -0.6980972279997489, 0.7564793425744459, 0.4551046435293044, 1.1293588647910346, -0.6472228722645109, 1.0567521175428551, -1.5576492788279013, -0.5581610619138123, -0.47319807853663104, 0.6667422325423239, -1.3070275234665427, 0.11880686497769348, 0.08231508325446563, 0.6410989833162704, -1.4221797780045315, -1.2080677418999008, -0.21964824482088977, -0.6024070510370692, -0.5634804457034843, -1.1559422203463794, 0.9566255003358429, -0.5041229714206934, 0.18152657540852277, 0.16258688049861186, 0.1868103401204424, 0.4571527039299567, 0.3321734786271982, 0.45596418234183056, -0.18725667972719645, -0.18380565187404516, -0.286047032970212, 0.10722956761257485, -0.2677992404740662, -0.9470036724352423, -0.8867936441898738, -0.24247795260375685, 1.0422762902985412, -0.3648169046259341, -0.8234276705742628, 0.12703699299149618, -1.4916277640005395, -0.5288459758084862, 0.12894477127485243, 1.5624839246210425, 0.12284286487155915, -0.8565354936317975, 0.17240794522533262, 0.13259825006682882, 0.039375151361914044, -1.2539088732739903, -0.032445050584176266, -0.3488799637960383, 0.33367840294701934, -0.7281837926103955, -0.2083705280357789, -0.4533086634530775, -0.018468036707927293, 0.6877314506486814, 1.9820471120230747, -0.5932005068262504, -0.42194303019424734, 0.8351189522640993, -0.5527054918350914, 0.6619277327232876, -0.45095773118188687, -0.8268800880834252, -0.7229458134070366, -0.2656985194245988, -0.7944073378227904, -0.2113287399836574, -0.933748292297396, 0.9752817054195727, -0.5607607426109217, -1.024633697033112, 0.21453368497517558, -0.3154919422028678, 0.7491633156565227, -0.022487068170516426, -0.7574228864738717, 3.494334268227763, -0.8182824326246722, 1.0549318144484023, -0.8255502604209556, -0.27807274794195885, -0.12379167483587704, -0.2554261821933468, -1.1767781008829203, -1.1808705646947038, 0.19876123553306868, -0.727473020130806, 2.270964203190195, -0.7673719458331573, 0.031726045840172655, -0.3457370007385209, -0.48641282952111115, 0.05601518499345429, -0.7503887403067612, 0.479973634938019, 0.15639398819651734, -1.14656057947821, 0.2877988366132619, 2.682451587535384, -1.5576492788279013, 2.9942427091981374, 1.5433353424707832, 0.6413103573094772, -0.8519001131585618, -0.5596136912837562, 0.320487202974926, 0.7257103105829549, 0.47713902923530166, -0.8070077145709501, -0.49340769962097153, 1.1674968769084308, 1.1119097588020914, -0.8387002095514612, -1.091411166445359, 0.4528013252614348, 0.9226757651551809, -1.1802931626222488, -0.2975990239679802, -0.4329813604465664, -1.096478327669084, 0.026891505718657227, -0.9395409636684027, -1.2808242611531189, -0.12408028444736384, 2.053921583693376, -0.44039780829620545, -0.5821966254150392, 1.367059964263651, -1.2926085441240356, -0.3511661673530419, -0.2297375862974638, -0.9155704214405205, 0.049002980763357504, -0.9339004962004659, -0.328687238003191, -0.6666861749313038, -1.1813229708659831, -0.9512993917235415, -0.8593234361484653, -1.5576492788279013, -0.02305916760819638, 0.6971815503603179, 0.04068976594805941, 0.027278707767121206, 2.9059319713513383, 0.9425057175894399, -0.317567210605396, -0.4751596145656596, 0.7605890673766704, 0.38949459487575155, -1.1091585364980703, -0.40502733269405644, -0.7663403822344618, -0.2170532450703428, -0.43047544496028617, -0.9141665763105324, 0.3459765660827399, -1.4403591390846289, -0.6250662699693612, -0.5292475863955851, -1.5576492788279013, -0.9279562060447095, -0.2242003190732756, 0.17966165704213777, 0.979616847054703, 0.28477055674653606, -0.3003622452356085, -1.0302339010466335, -0.31560516259784055, 1.1348499076679188, -0.20179277415850164, -0.9017584840703822, 0.20448808109304753, 0.006532313763689496, 0.3856181860037394, 0.2671636150907002, 0.8219845087690874, -0.7700184359958909, -0.6754902308775446, -0.46538426220771595, 0.37832644149611455, -0.11554340815413265, -0.39905502999871645, 0.019839513442779785, 1.196245202780747, -1.1239840450785568, -0.5311323987848626, -0.4013053950586045, 0.3285653465050391, 0.026843818575558467, 0.8669767431700985, 0.32430261326204973, -1.17225045532041, -1.5576492788279013, 0.9046040932734465, -0.80571796751342, -0.8470669626930635, -0.5538938671436283, -0.029398778329098055, -0.6743774089721168, -0.7542425489836518, -0.6272815279300311, -1.3099690229723944, 0.07619679353820384, -0.8349380450314877, -0.4628637187634268, 0.4929263991945823, 3.557528802175525, -0.834212205755151, -0.2435557405497563, 1.8002464615173026, -0.49262751748063616, 0.14384890512962864, -1.5576492788279013, -1.3131666031681168, -0.7153185035427175, -0.5352668448361287, 0.9255089080620914, -0.05770768034287819, -1.3135043261486166, -0.3617622212949991, -0.18809237496816725, 0.08195362641209501, 0.09119279096928, -0.5085678958806702, -0.9124321393295728, -0.7428682145358976, -0.7862663672130343, 0.387707643525544, 0.5969264996820051, 0.12399437772591687, -0.43015538523908003, -0.32215570847321773, -1.2684711883200244, -0.013953995146361219, -0.05686379344542315, 0.9136450489996134, 0.30586129288146047, 2.0560379566579146, 0.768953187485835, -0.3094091984245675, -0.5079772920761146, 1.1601785095172261, -0.14335086376741252, 0.2939741753657473, -0.21754693865310204, 0.10780766451303492, -0.017707382891532467, -0.11296332892075943, -1.0556725051401579, 4.433962321082131, -0.17673713000562213, -0.3418251190683419, -0.9666133643917957, -0.9408926601280952, 0.9023540207727245, -0.0022127183719927355, 4.1804252868296485, 1.4175161798192348, 1.1081047343651564, -0.35093636213273977, 0.6797103561547923, -1.3731731565175989, -0.29395285915500163, 0.5717171156904505, -0.35799223081748754, 1.478271648048817, -0.26781328331375354, 0.7027236448106575, 0.29065991891997, -0.2606328575665634, -0.568122847596564, -0.5791766103445816, 0.23915107550614734, -0.7702499965711505, -0.41200947647045116, -0.4364984335301225, 4.433962321082131, -0.5582907387615494, -0.3386278131468308, -0.8139870790353225, 1.1482725219356862, -0.38128666882626405, 0.677764252621462, -0.30730789225676775, 2.6490047615510286, 1.0102542274241257, 0.3255234626373694, 1.858794863442687, 1.5469689272398692, -0.13215374703091448, 0.4443206203269528, 0.9301038422314485, 1.653371230991305, 1.3024623165838005, -0.14930634431104078, -0.8234216731114803, -0.2892477764618624, 1.345407953379978, 0.003860078394862434, -1.11084298243254, -0.040102201482836816, -0.5519804570964442, -0.7249333140615287, -0.5571240128308639, -0.8326086889983586, 0.18108466479711638, 1.399460891250469, 0.400621204854647, 1.4087704162856673, 1.3063960670512025, 0.17634432872516986, -1.5239436888376228, 1.9445963213728694, -0.8355013676943608, 0.6671395278818101, -0.4081803159028026, 0.0201851720905022, -0.6394134443229978, -0.4294082622838421, -0.4174496871932644, 0.7152210407344475, 3.205129006287887, 0.4595389627197321, 0.9244717858393591, -0.41259327827453324, 0.8282792116589147, 0.5638462503253143, -0.38141715021169176, -1.4091876736834015, 0.33800023314035965, 1.0217207911471176, -0.09223419590778267, 1.0772491048622603, -0.018784731998788683, -0.18128847286009858, -1.5576492788279013, 0.7314784069845088, -1.5576492788279013, -0.6561842518991235, -0.050454992483124586, 0.4683704460872302, -0.5252410618370951, 0.6038964291134629, -0.584061470641637, -0.16038058620027504, -0.766639304556346, -0.6770612735675601, 1.1008592142048355, 0.8658514143605657, 1.1698695316972503, -1.3082465443471059, 0.9198987936070194, -1.4023587669096111, -0.29733440420761387, 1.4626855587917327, -0.5744024836896426, 1.3728140178255175, -0.22556671663076183, 0.28527800060981645, -0.9612853866767946, 0.11649330713921259, -1.3579823329708214, 0.041195308176801816, 0.0666283536462892, -0.5265589677137896, 0.6896747748699874, -0.35874710659047404, 0.044544525442220276, -0.7237483031833332, -1.488797564970178, 1.335187399120067, 0.24208383480709889, 0.665503537058241, 0.16493730079127186, -0.1696250168223305, -1.5576492788279013, -0.7278576622866157, -1.4342071867800088, 4.0159192710762595, -0.3176567337084025, -0.18025676298182605, -1.5576492788279013, -0.6471252306448112, -0.1372344756857007, -0.422843966127934, -0.19146368045018017, 1.2596889971329583, -0.3609203823116615, 0.14083788625334573, 0.2321110781558424, 0.07023180482187363, -0.2522013025709869, 1.0413588247723051, -0.37626247722918615, 0.76613657417147, 3.3833853025684135, 0.417251730313473, -0.19098051899718638, -1.2032249369821175, -0.010252097813388688, 1.1778385506606328, 0.17107021846552897, -0.2800826293722021, 0.4777384829544588, 0.86206701534443, 0.4236889095143006, 0.2762445051422245, -0.45371246823387673, -0.6188675264840636, -0.3039806169283667, -0.819388013690886, -0.7573245865960607, -1.5576492788279013, 2.4053269709956524, -0.22105794113407848, 0.45796689607265306, -0.4406071343752952, 0.626152135824112, 2.2305749483354367, 1.5583442125049056, 0.8804315389454824, -0.930048150319376, -0.08272485296620671, -0.26197789830536455, -0.7744825962206467, 1.0410870373125298, 0.4581143458893696, -0.677904941045647, -0.45001335021291666, 0.28830905978856675, 0.3243706332667943, -0.7717042350164756, -0.239898604768281, -0.5406659509969416, -0.2002755623539541, 0.5702701180843519, 1.090171735525322, 0.24390208998743668, 1.8062942444759618, -0.04230224636717878, 1.2658558516697933, 0.051148463364334144, 0.07533593820946001, 0.19959239610705382, 0.42923802538448397, 1.3636531128436884, 0.5530793418338288, -0.03141889932995262, 0.2903500987693629, 0.31104310072607017, 0.8891281525401565, -0.11266623509362221, 1.7655858075774713, -0.18769039868213058, -0.13172734205500214, -0.36120584691217983, -0.9962537397133157, 1.503386096592893, -0.056096703327492996, -0.7277973219598348, -0.21793106883037544, -1.5576492788279013, 0.4322610391863271, -0.5402132156966072, 0.32274810016457955, -0.4745608191046184, -0.42307106517600174, -0.5882322671685516, -0.562681978615639, -0.0020156797776274627, 0.3128309297537644, -0.7831592426526409, 2.062256886725257, 1.0849059632017548, 2.668235845384439, 0.8678583701992074, -0.9838979058531481, 0.9458713181678269, 0.2819056711707397, 0.6979555156185026, -1.495432916432107, -0.0667828654907888, 0.620339716709792, -0.2738552150892097, -0.6852845264411085, 0.045011742420988786, 0.36253921781642295, -0.5419909514332694, 0.8676702546592354, 0.7249416113896531, 1.4648417198020398, 0.7329297929780165, -0.4539098725271896, 0.6012063476358606, -0.24364775040563305, -0.6558067774427366, 0.7744819704943847, -0.006979677327507094, 3.5889016762735695, 3.3508193722152697, -1.3260879355999107, -0.32994114656360185, -0.4545298053875514, 0.3822925197507102, -0.9602371837758655, -0.1993519530853607, -0.30329061614915154, 1.4449515001808015, 1.3877412638539517, -1.5576492788279013, 3.1798709111961823, -1.230818641559005, -0.06230671034046538, 1.0359564273209527, 0.636023667005956, -0.5093913767767081, 1.309225406689037, 0.09042292153933712, -0.6711980222991657, 3.8400882902333917, 0.19271798724139483, 3.895307076357094, -0.8618576567334905, -0.5303146959322382, 0.6120336695939267, 1.252355709224592, -0.6963216864567874, 0.7189786705874379, -0.4110118497343333, 2.8878436235974694, -1.5576492788279013, -0.19334147141962385, 1.0167768338997054, 1.0147672450286283, -0.22484146247275139, -1.263934491708497, 0.5897127221905576, 1.3250622191463772, -0.4778390176339109, 0.3994676440861619, 0.9785329153663463, -0.09998277154397568, -0.26812676045385925, -0.5550568629450218, 0.7472517341040905, -0.23281252935024888, 2.7532473935822113, -1.2520165640562333, 0.525688490464605, 0.3277001027888992, 0.8910065286279085, 1.8091800480316995, -1.1968625797865053, -0.32058525090152257, 1.4464330197678106, -0.7526058999019728, -0.4232278768858431, 0.2625116318851192, -0.8639359238674195, 1.2789186181705858, -0.369036704812175, 0.2516092685024772, 0.0007710925024020487, 0.6906724016061052, -0.46422207094401174, 0.6536851709451578, -0.0612382842875908, 0.6806569313174665, 1.2649026939260306, 0.9205599773089627, 1.3820784887500523, -0.21365809601678648, -0.24725324949534452, -0.8107412082932274, 0.831758617750595, -0.3077350286305895, 0.495422660228575, 0.5536561222180589, 0.8166265803100548, -0.3641931684964903, -0.31418083832664423, 0.7278995307783654, -1.0398887556004899, 0.37720623247188684, 2.24776572458596, -0.1627081868784432, -1.0472558340918543, -0.9891345319703909, 0.10682803016526943, 0.630790661308314, 0.6333724958966599, -0.3378504834583133, 1.1459437510208774, -0.6747986210229456, -0.48686914867115816, 0.493939239007028, -0.7802776812047257, -0.3277351042164798, 0.287498524635369, 1.920973924545568, 0.39283181721561006, 1.2169431782431706, -0.39527085040194176, -1.175890256971649, 0.5745161754552066, 0.8814132212073632, -0.7568691451234952, 1.5953877608041676, 0.6275611007394034, 0.6814796076758135, 0.42899578639987823, 0.7155207675940201, 0.34887173153160267, -1.2198551333118948, 0.9325478814553452, 1.2936238117964587, -1.5576492788279013, 0.9575488170452823, 0.2623757381552317, -0.6111958207671911, -0.829969366535048, 0.43849913187867434, 0.798651014112427, 0.5039686058557646, -0.4341137838157246, 0.16714597617084131, 0.12556673693214976, 1.3772811036418702, 1.5654206334706589, 0.6169716293785468, -1.3139059001658207, -1.0873734111965223, 0.4523977399000023, 0.6006651131895796, -1.1986779825150373, 1.1891562017711013, -0.13921407724286525, -0.772804184318857, -0.13524273292338687, 1.126506120420388, -0.6046763593025776, -0.45169007989953797, 0.218094715072544, 0.08482845899932423, -0.6944274390345937, -1.0633168931454504, -0.5354515228059755, -0.40785776942873603, -0.8446022249085738, -0.3883459019413577, -0.7443686773285267, -0.24304756528857852, 0.5088730676165504, 0.21816843998090227, 1.0516171191638697, -0.36264633507697797, 0.22670634023119698, 0.5357142003238552, 0.16168448176912645, 0.5393872805795555, 1.730115642441494, 1.4401432903837117, -0.37091522717951003, 0.6561855278074042, -0.8537649583851594, 0.11701113685266884, -0.1650300826529854, 0.41117264352468386, 0.2029852046873412, -0.9906616907863836, -0.9274320863092981, -0.5686628386664143, -1.1564973879226628, -1.5576492788279013, 0.8887639163857615, -0.5196777568476474, 0.0166667093509269, -0.1030046151091902, 0.23804344652582493, 4.433962321082131, -0.8535363965412912, 0.08283525344121563, -0.25015967847187015, 1.2354940620292336, 2.7670529677906113, 0.33438844402870166, 0.32797891166851795, -1.4010456151192687, 1.0831912739640988, 0.6229181868677934, 4.299567664328211, -1.4228333368833632, -0.3685973540934164, 2.4747696909267836, 3.035248386203354, 0.1694157964148765, 0.19412592819962265, -0.38523380387524175, 1.0350623665275287, -1.1104227211989826, 4.43126375538889, -0.20156530941148057, 1.3429013064957969, 1.7469454006884018, 1.4886689080414477, -0.5597238398075539, 0.6975162380395316, 0.31047173268629985, -0.7166084700196167, -0.9414968679335987, -0.07895259515519668, -1.5022999061803233, 0.1328353692661289, 1.4470939109105876, -0.17099229205730318, 1.9868395236255163, -0.8763176126433664, -0.4916902310712995, -0.012642598710983517, -0.25380160117701756, -0.6852421785026763, 0.6859382092765278, -0.3912025227208701, 1.967434952210118, -0.08286718299761758, -0.4698796531228195, 1.1635090029963948, -0.02162475004596583, -0.7046340235946011, 2.3601725125403403, 2.12812043789109, -0.23194772447283998, -1.5576492788279013, -1.5576492788279013, 0.2760947148522267, 2.8159916789825057, 1.4558130515605994, -0.0025775396446961066, -0.4785366980910821, 0.014040552049826755, 2.800584343372268, 0.013176332290738169, -0.541899014717192, 0.31652931637681486, 1.294924822381648, -0.679223066341712, 0.8334360056953287, 2.4092016245127033, -0.6554399813956973, -0.7154421097878823, -0.17112218832441062, 0.33831561191500337, -1.4485502104505608, 0.4901055437723981, -0.2890260166184673, -1.5440415191813175, -0.5618361900836399, -1.5576492788279013, 0.39909843442606285, -1.2711979859722191, 1.0383843757910471, 1.2747777358177845, -0.6897607547312218, -1.5576492788279013, -0.034512419889398356, -0.47170178471203517, -0.7736000915140494, -1.5576492788279013, -0.2072438827100401, -0.2125295490564977, -0.833556800096621, 0.20785382795101132, 0.2114063738327293, -0.9371348839955242, 1.7660699929875168, 1.9815529796015723, -0.6653739008184435, 0.037167207380253975, 0.37209332230949616, -0.15133494952753376, -0.9664841629526931, -1.0443381781575547, -0.4333693670327172, -0.18110225895466492, 0.6723384504372857, -1.5576492788279013, -0.1560224786710639, -0.2999279411623661, -0.44422499408952254, -0.5266903267766978, -0.8612964551245295, -0.6706483036372404, 1.185780069062949, -0.5456253407400462, -0.4720723840281566, -0.15817966363844663, -0.2155674833755146, 1.825560142849436, -0.5484727459060144, 0.23195587552138508, -0.517597588079178, 0.3827344303621163, 0.4280685201417739, -0.35065499336046835, 0.4931333848003805, -0.4955323373817839, -1.2277467703774105, -0.8760304658276766, 0.5074048594713315, -0.3674048829566374, -0.6989207820355764, -0.3422440637856794, -1.5576492788279013, 1.3791953182267498, -0.7283337291799727, 1.4879018179235415, 0.4344831722872635, -0.6144880621361696, -0.7606961846372314, 0.5251485725345417, -1.187255339235963, 1.2087567878238012, -0.1905769336357659, 1.5286140580911078, -0.20258209877259134, -1.0602807507512906, 0.3026080350205718, -0.4903459217304028, 1.4799310436051982, -0.5510005301895163, -1.3281383547587828, 0.9304698337407925, 1.0462179398632732, -1.2492655205636407, 0.8174337510329195, 1.0870577358246656, 0.03213153283613114, 0.1073100213816226, 0.07335575153397515, -0.07108363142459817, -0.05592848181041168, 0.2311403668624585, 0.07387343496786687, -0.03124321755427244, 1.0047707910854056, -1.5576492788279013, -0.3799287554844181, -0.8357817856493657, 1.3174799633927157, -0.4023963481668108, -0.7852962410379707, 1.746196449238413, -0.8336343282740613, -0.7347152490005754, -0.7857448073702733, -1.436980062499928, -1.0125529053533817, 2.2521678622687586, -0.7833929242818125, 0.052448596272048995, 0.5786004476105033, -1.312227396839291, -0.7389387793161082, 0.6061314348174343, 0.6413716484535319, 0.030012819398323384, 0.3854354828082276, 0.28556163671558665, -0.4632160331320396, -0.37045078951276844, 0.4347668083930337, -0.5284162795420129, -1.5576492788279013, -0.7270255508953543, 0.20703085903349813, 0.23526398822479294, 0.9441967095351176, -0.36737343284692203, -0.14941356724323346, 1.5915128147279503, -0.8535944695345818, 0.986774014348658, 0.23602420320244427, 0.0787541994366743, -1.0259760681695733, 1.2738974253048936, 1.3874071612930463, -0.17456619475771828, -0.8271221807884501, 0.3037272200877358, 0.24980183801105904, -0.6732980850905257, -1.1481047432953866, -0.12830235196709835, 1.0937459307849033, -0.15996559103159064, 0.07559514562535455, 0.27008013735824776, -0.14084611851776938, 0.3290256883435413, 0.012502714824491515, -0.1535638114891477, -0.4225698381948716, -0.49553504355401523, -1.5576492788279013, 0.5210922397790422, 0.1370109198793933, -1.214360762574557, 0.5446236507075305], [-0.22981906664718274, 1.3538851082376706, 1.6737669099919394, 2.918709251078791, -0.46420995739511506, -0.23867821438715472, -0.5698421113311132, -0.074362074062244, -0.3775801920417513, 0.3704608641582147, -0.14655885083419104, -0.435951347821303, 2.408499727907305, 0.09065552157163215, -0.5698421113311132, 0.6463356005158132, 0.8276886354791629, -0.011820413088979118, -0.5698421113311132, -0.5698421113311132, 0.4141943144504412, -0.06895215593965785, 0.016824340398236288, -0.5698421113311132, -0.5698421113311132, 2.020973860456962, -0.3182937215695175, 0.27987885942628543, -0.5698421113311132, 4.049698777228295, 1.5298474468344385, -0.36877329694536165, 0.20347994309954714, 0.19400937697630502, 1.0341723469080517, 0.17267315841742187, 2.621052101609542, -0.5698421113311132, 0.1294371838248455, -0.5698421113311132, 2.683922926480326, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 1.2324204032962887, -0.5698421113311132, 2.659110068218773, 0.5249648531832115, 2.0185295747763004, 0.2517987883921233, 2.062239154006919, 2.8091860447077566, -0.5698421113311132, 0.37533021376352516, 0.33063532870791157, -0.10801433786310181, -0.5698421113311132, -0.5110993363811319, 1.3351965651314748, -0.5698421113311132, 1.0201400486682104, -0.5698421113311132, 4.225951870906901, 4.964989945811777, 0.438179665707055, 3.1412880257981537, 2.1085276406028592, -0.5698421113311132, -0.5698421113311132, -0.10782472252633266, 4.7090266587195515, 0.958508714792994, -0.5698421113311132, 3.9885705398550453, 5.0, -0.032201823879774535, 0.48300320468192726, 0.13902294169888074, -0.5698421113311132, 0.9889884520525375, 0.4399219062414716, 0.770518275634917, 0.5158380581042018, -0.1352758188441211, 0.77718690650908, 2.7303063421817364, -0.5698421113311132, 0.1710833040786301, -0.5698421113311132, 3.8475947116786275, -0.5698421113311132, -0.23002387896794335, 1.5833581786345492, 0.451029930041484, 0.8756243641114246, -0.16506069309369334, 0.42260414496970594, 1.2434403678603008, -0.5698421113311132, 5.0, 1.928748569068103, -0.29462159125575765, -0.09400875578232908, 4.566330448684326, -0.5698421113311132, 0.45385344639568415, -0.5698421113311132, 0.9288591908506004, -0.5698421113311132, 1.6558668058450838, 1.8592718442525056, -0.1569323884376613, -0.5698421113311132, -0.3014359119376204, 0.991698650256712, -0.5698421113311132, -0.5698421113311132, 0.537323817761253, 0.727943682112707, 3.942267897164438, 0.40676867947424056, -0.5698421113311132, -0.41190631023658736, -0.5698421113311132, 4.93248366644978, 1.2640988286902795, -0.204874501191053, -0.5698421113311132, -0.5698421113311132, -0.10511386509225953, 3.454898538825877, 2.272059123866275, 0.1817057183171685, 0.622931134889251, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 0.6654682563961468, -0.5698421113311132, -0.17977220630748375, -0.5123635441608794, 1.5547786889073443, 1.2707895264179034, 0.5636076608018907, 1.8481459865489065, -0.5698421113311132, 0.29496655003829436, 1.7508898689257681, -0.15649334132485387, -0.5698421113311132, -0.5561830185336435, -0.05319878191479175, 1.0862555337097932, -0.27687538259403294, 1.9793890832801089, 0.7131852594871458, 1.2396361255940886, -0.17857650205573952, -0.5698421113311132, 0.06544691719275199, -0.5698421113311132, -0.5698421113311132, 0.40062535074074135, -0.3329866896053569, 1.6941022787787332, -0.5698421113311132, 2.092887931691122, -0.05819942235896001, 4.041290612131959, 1.3698390269371097, -0.1287927438384061, -0.5698421113311132, 2.9480184736079993, -0.2021535818269406, 1.9783737304502342, -0.5698421113311132, -0.5698421113311132, 0.4525024414582327, -0.5698421113311132, 0.5635563102623776, -0.5698421113311132, -0.2779582197477876, 3.4769154296037463, -0.5698421113311132, 0.8037499854564544, 1.76479823194458, 1.6462981185558072, -0.43651857177909986, -0.3664741112351273, 1.5856520211129697, -0.10782694309020335, 0.6738270139463811, -0.5698421113311132, 7.261473562958971e-05, 1.2531309085919824, -0.5589643344159636, 4.517534112766917, -0.24409781278036272, -0.5698421113311132, 0.6135077557482584, 0.8006536867092627, 0.3406164163435498, -0.5698421113311132, 2.9789534264610333, -0.5698421113311132, 2.689912619951019, 1.5238009901997966, -0.5698421113311132, -0.5698421113311132, 3.4740281414308813, 2.135057827447902, -0.5698421113311132, -0.5698421113311132, 0.8784265769309912, -0.3635299037649235, 0.07543612376504112, -0.3392527391890223, 3.717718649580322, -0.42593626647547417, 0.41909829097361384, -0.15915812205861082, -0.5698421113311132, 0.16288602315736533, -0.5698421113311132, 0.17951540962921778, 1.4450803355610085, 1.3915321317455829, 3.807623729294799, -0.5698421113311132, -0.10281853067248768, 0.6888076317442524, 4.6767152338371725, -0.24635071361241728, 1.5159643427296567, 0.2701592431864229, -0.15125516993914317, 4.656065655262691, 1.3380334742615196, -0.5698421113311132, -0.5698421113311132, 0.09005555297081784, 3.4312584158585344, -0.5698421113311132, 0.10223659486872164, -0.4735126714423344, 0.14917792724263948, -0.5124767972553232, 4.857216543770859, -0.007841474899501778, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 1.8635533689656791, 2.9161872456626594, 1.7341055981239328, 2.4526103964870654, -0.5698421113311132, 1.0745478882720745, -0.5698421113311132, -0.3582979256706337, -0.5698421113311132, 1.1806628066720857, 1.4131393284893108, 2.1695553974609725, 0.14582792907322423, 1.3843320921801194, -0.5698421113311132, -0.4012813805155377, -0.3485190307843162, 1.6079582791202354, -0.2881548061678128, -0.5698421113311132, 0.7823094697882693, -0.5698421113311132, -0.5698421113311132, 0.241610771960787, -0.29073288082168136, -0.5698421113311132, -0.5698421113311132, 3.540974811286313, -0.020254392240334106, -0.5698421113311132, 0.567201296463491, 3.064642210526041, 3.526525324609265, 3.7773579988782897, -0.5698421113311132, 0.3766805941673906, -0.5698421113311132, -0.023330775305310098, 4.277682126838444, -0.5698421113311132, 2.233910114138346, -0.5698421113311132, -0.5698421113311132, 0.039063009992692195, -0.01198553283055001, -0.5698421113311132, -0.5698421113311132, 0.45599129426219115, 0.28278585510349846, -0.5698421113311132, -0.5698421113311132, -0.15075082437001341, -0.5698421113311132, 2.2268814743466487, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 0.028335812896502614, 0.43356880361481304, 1.5980656670763211, -0.195821713342295, -0.5698421113311132, 0.17776227445330975, 0.5514124628093147, 0.11259039027152765, 0.9997762289068264, -0.5391105482501083, 1.0110879200493514, 1.1713708571551924, 0.4409929813459751, -0.4861206167443739, -0.5698421113311132, 0.373211795830889, -0.5698421113311132, -0.5698421113311132, 0.9423291312901927, -0.5698421113311132, 0.31058086125075995, 0.4087032069613337, 3.513389301461729, -0.5698421113311132, 0.19495214512465342, 0.24718348517214006, 4.051830796114657, -0.5698421113311132, -0.42362661982763017, 1.046267619526447, 1.317093973316662, 0.08115955774911839, -0.5698421113311132, -0.5698421113311132, 3.8423003322699434, 1.4189158478284227, 2.0922323102082996, -0.03720291537597954, -0.5698421113311132, 1.0740944768867302, 0.4676308655387461, -0.5698421113311132, 2.8132321896506376, 3.5678022761195454, -0.5698421113311132, 3.3717045582695873, -0.5698421113311132, 1.484499230252493, -0.5698421113311132, 0.3272698559840221, 0.35880880220988376, -0.5698421113311132, 3.7434999512599774, 1.641169309940725, -0.2132218783514525, -0.5698421113311132, 0.3460289019931099, -0.5698421113311132, 2.18203302342085, 0.04651015668138842, -0.4380917285184728, 1.4351904992219349, -0.5698421113311132, -0.5698421113311132, 0.1343641986981777, 1.6242953838726097, 0.5649426360438982, -0.5698421113311132, -0.5698421113311132, 1.5260246073458077, -0.5698421113311132, -0.5698421113311132, -0.2644290874025174, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 1.5327046186098023, -0.4911816027465434, -0.4479430953233046, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 1.4262309403594335, -0.22552831271542553, 0.22614253221543767, 5.0, -0.5698421113311132, 0.9280586775752221, 2.067158813262428, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 0.7204140275976875, 0.8524794268872457, 2.219439809675004, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.15831566094385796, -0.455049602309793, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 0.24061047732966273, 1.8752335349254972, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.19084716452360773, 0.5301289132497373, -0.5698421113311132, 0.8337722865586361, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.29526553743010175, 0.5878812690059653, -0.5698421113311132, 0.18252427367399976, -0.5698421113311132, -0.5160729093660869, 0.3086428641326195, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.23102216121305932, 0.5997848098126491, -0.5698421113311132, -0.5698421113311132, 1.3657295959239193, 1.7215048696544688, -0.21570550964819574, -0.5183272284098325, -0.5698421113311132, 0.11400981633324193, 0.45111042548179864, -0.5698421113311132, -0.28136225742077603, -0.47544774539631907, -0.21502459455503595, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.028799538370469474, 2.5912651802776483, -0.23051080698921275, 0.46514334825523096, -0.2087904308807006, -0.43293515418093237, -0.5698421113311132, -0.2378736763397562, -0.5698421113311132, -0.23700644205932117, -0.5698421113311132, 0.12692496276827014, -0.5698421113311132, 1.216825799588172, 0.24430306686875458, -0.5698421113311132, -0.32171937504393433, 1.2687693684365424, 0.8889280398312028, -0.5698421113311132, -0.2863636785319298, -0.5698421113311132, 0.9785332046378867, -0.395945938023398, -0.3261689513369118, -0.35883639506112014, -0.35680336474857394, -0.5521313091699732, -0.5368426369267324, -0.5542071352129765, -0.4035745637640591, -0.5698421113311132, -0.5698421113311132, -0.43492889959593817, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.2623657672109226, -0.5698421113311132, 0.27248278570661494, -0.46602259674349544, -0.26619058438925086, -0.5698421113311132, -0.16395429714512313, -0.5698421113311132, 0.8913540058599293, -0.5698421113311132, 0.07568461874069618, 0.12829692427724732, -0.5698421113311132, -0.33297968095064, -0.5298136198126613, 0.48013833032563663, -0.3115822754482266, -0.4133102790919851, -0.5698421113311132, -0.28612453421194967, -0.47580190798553884, -0.46901765165670634, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 1.0588188016645446, -0.5698421113311132, -0.36908105321931484, -0.5698421113311132, -0.5698421113311132, -0.4204631490233513, -0.35180301922304513, -0.5698421113311132, 2.722828038206224, -0.5698421113311132, -0.1796445238849192, -0.08051425035491797, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.2408320572527904, -0.4168967152691638, -0.5632098741759977, -0.2967308667105824, -0.4407280062331708, 0.224145690154724, -0.48639841275422824, -0.5698421113311132, -0.5698421113311132, -0.18883012921019257, -0.5698421113311132, -0.48074990545263185, -0.3783549780029138, -0.5698421113311132, -0.19917379329034052, -0.4609811794604364, -0.5698421113311132, -0.3573493805865899, -0.29752227220446475, -0.5123546532313187, -0.2668277821312067, 0.17508420503263955, 3.581253341766237, 1.3111203789340247, -0.30502205319616027, -0.258505767973768, -0.4844574491015391, 0.03684126644744834, -0.22701157998842383, -0.3061279980926942, -0.41257822163717794, -0.07682981444878949, -0.03871192731135325, 0.0785526157649309, -0.13622795499629958, -0.22297893191032334, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 0.40289983267791624, -0.2945474452402629, -0.5698421113311132, 1.4387576962949538, 0.2891808014805967, -0.3879171597339764, -0.43188303193602967, -0.5698421113311132, 0.9767467610039231, -0.10964881165716946, 1.898936943963149, 1.3762101022525959, -0.5698421113311132, -0.5698421113311132, -0.5335210788893121, 0.4840185575118016, -0.5698421113311132, -0.5698421113311132, 1.6071691462346887, 2.9607453578623644, -0.20209643700358074, -0.5698421113311132, 2.1228388971789593, -0.5698421113311132, 0.9295044034402813, -0.154169243663695, 1.4497343598634875, -0.03899539616797384, 0.6701272769673323, 4.221776655689051, 1.3057013703780982, -0.41590875517641573, 4.6094682327182195, -0.5698421113311132, -0.5698421113311132, 2.4669283147547727, 0.5884479291487192, 2.246950097898473, -0.561479168538425, 5.0, -0.44018177354321447, -0.5698421113311132, 2.3704326014721038, 0.6270244668143765, -0.5698421113311132, -0.5698421113311132, 0.622032084092105, 0.5905333855863983, 0.3903113173097412, -0.5698421113311132, -0.5698421113311132, 2.044709467670744, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.24388561014547017, -0.41566086738619457, 2.037715246619043, 3.275883063692154, 0.31499242773560987, 1.1126835746167842, -0.2598305425004962, 0.7521024455290964, -0.5698421113311132, 0.7147296616592091, 0.5006622388635721, 1.656670788751514, 1.6747554772701196, -0.3646198536623265, -0.02477771554123773, -0.5698421113311132, 1.9768923367780027, -0.3260144486663465, 1.2993599951043795, 0.5741313987334249, -0.08151971473630286, 2.848075334916082, -0.4294640919101755, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 0.5532735035108131, 0.36300920694915173, -0.34866498081434816, -0.5698421113311132, -0.5698421113311132, -0.12833506480687124, -0.5698421113311132, 2.2797894618411094, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 0.6756251155406728, -0.5698421113311132, -0.5698421113311132, 0.07960648149943424, -0.5698421113311132, 1.096065013393798, 1.050142364695556, 1.673508075515763, -0.5698421113311132, -0.3902964245287977, -0.5698421113311132, -0.2630618792880729, -0.5626752745083892, 0.5981632430460817, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 1.720098142442388, 1.0413543443920676, 4.626610430658974, -0.5698421113311132, -0.5698421113311132, -0.4618564893071353, -0.5698421113311132, -0.5698421113311132, 0.4597293359680069, -0.5698421113311132, 0.1941306752777402, -0.24434273403603748, 0.009780052570515885, 1.5301760902873003, 1.2488817208401801, -0.5698421113311132, -0.5698421113311132, 0.4380341493809041, 0.33659483638848836, 0.2539090179954881, -0.5698421113311132, -0.41397771466852396, 0.39090906534668485, -0.5698421113311132, -0.5698421113311132, 0.1097985169524825, 2.238390656888424, -0.5698421113311132, 5.0, 2.6905729601320663, 2.831371143198833, -0.5698421113311132, -0.5698421113311132, -0.5653805821591756, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 0.13370767511128606, -0.3507494831034906, -0.5698421113311132, -0.3686114039606644, 1.461757047800361, -0.5698421113311132, -0.4308793457405567, -0.24309439548129547, -0.5698421113311132, 1.2781097540028667, 0.3922883130808645, -0.1146989984327041, 3.781245928645382, 1.851655587746534, 1.230688779832876, -0.5698421113311132, -0.5698421113311132, 0.27522705568767714, 0.17913749741547677, 3.837333208461697, 0.17189263021687512, 0.3915787735315592, -0.5698421113311132, 1.1027944322039172, 0.13531536335366406, -0.5698421113311132, -0.5698421113311132, -0.4228657123906594, -0.5698421113311132, -0.5698421113311132, 0.6033125918769656, 0.3191347508511366, 1.0643602188038415, -0.328109238411546, -0.2691244003144656, -0.5698421113311132, 4.004910281527024, -0.1733144596084188, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 0.1910284781577686, -0.5698421113311132, -0.5698421113311132, -0.41243801384653067, -0.18811354630985958, 0.7113983994974535, -0.5698421113311132, -0.5698421113311132, -0.31939468754549755, -0.5698421113311132, -0.5698421113311132, 1.7197685274928323, 0.9149214053605044, 0.7540094935382885, 3.7320410089757754, 1.3880894250345643, -0.5698421113311132, -0.2038877381210163, -0.2844954730423165, -0.5698421113311132, -0.5698421113311132, 5.0, -0.5698421113311132, 0.987989198310728, -0.45817372749798785, 1.5172184061756255, -0.3805284242839702, 3.9622707365115937, 0.4651550062155498, -0.3605407645726495, -0.2665997232824251, -0.5698421113311132, -0.2983495536833824, -0.425138155919592, -0.5698421113311132, -0.5698421113311132, 0.44449245122093767, -0.5698421113311132, -0.5698421113311132, 1.0625075746094812, 0.5953460414203856, 1.0177766747835872, -0.5014372206018105, 0.5943701729918437, -0.5698421113311132, 0.4797226685260939, -0.5698421113311132, -0.5309178212195936, -0.28441615727656006, -0.05436908846726493, -0.5698421113311132, -0.5698421113311132, 2.1365028593867543, -0.5698421113311132, -0.5698421113311132, 0.4555983932423208, 3.6822165519862535, 0.23279471703843232, -0.5698421113311132, -0.5698421113311132, -0.23053748845197136, 4.531047909342967, -0.1670580209027559, 1.6382659226798006, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.4908793978822668, 5.0, -0.3306840516122297, 0.645554517174301, 0.33288538444250876, 1.4162350720955323, 0.7901276588212371, -0.5698421113311132, -0.3478830474132271, 2.022451368142417, -0.5698421113311132, 4.38588798369319, 1.9933572627381833, -0.419986404369208, -0.34118546246797243, -0.5698421113311132, 1.636322651722466, -0.5376008792533543, -0.28733262504653523, 1.472447119844335, -0.5698421113311132, 0.01438782669112641, 1.4267821953403343, -0.12568933234756788, -0.5599340344910625, 0.4454986442248421, -0.5698421113311132, -0.5698421113311132, -0.24850979562093536, 0.7004007793573847, -0.5698421113311132, 0.3694191421323749, -0.5698421113311132, 0.9025761805214154, -0.4304096704596734, -0.2191009946806507, -0.5698421113311132, -0.12304307944360711, -0.33150503571079537, -0.5362559960461838, -0.5642388192854999, -0.3351623044058182, -0.51449342488709, -0.11571129798725276, -0.24119321114857156, -0.23023122411936864, -0.5698421113311132, -0.5698421113311132, -0.41118691693510556, -0.5494139949693714, -0.2851025023423106, -0.5325959039388958, -0.38617821534905455, -0.20565690299236572, -0.46780523245738864, -0.2941117983658822, -0.40849836922867033, -0.27766111524115167, -0.14257019767777834, -0.17850832380564732, -0.38153111296051717, -0.3844468347598172, -0.46816230953668814, -0.5698421113311132, -0.5465114902958449, -0.5698421113311132, -0.546753301894693, 3.702074221970361, -0.5125926482360141, -0.22118197529427955, -0.5698421113311132, -0.3865805364172195, -0.2086218415080809, -0.18685202315713562, -0.5532179672549195, -0.1784987129276443, -0.26829432578255424, -0.5698421113311132, 0.03191529246343067, -0.5372943460243456, -0.2948633551471786, 0.0178799409482658, -0.3673101188361305, -0.5649152737342441, -0.23305744678578655, -0.5698421113311132, 0.29906355977233423, -0.4652433262842033, -0.4127843871140471, -0.493306196622445, -0.4038197278939072, -0.19136056582977284, 0.15539599182891464, -0.4402515218013557, -0.1307960394128713, -0.30253647890602997, -0.20926750514979375, -0.14860867416100912, -0.5226015449645004, -0.19252910287041194, -0.5698421113311132, -0.21960183592242224, -0.18231395392428035, -0.40774887687784744, -0.21884566453183235, -0.5698421113311132, -0.29623087552841754, -0.4514243583093426, -0.5698421113311132, -0.09004386959859528, -0.15940377193680527, -0.265513798157038, -0.20393929683838868, -0.26534468833976105, -0.3105015374212557, -0.5698421113311132, -0.23348108873674134, -0.5698421113311132, -0.36561869104841066, -0.483153761257505, -0.5698421113311132, -0.042433731143867295, -0.46726530582186176, -0.5698421113311132, -0.2632828600895167, -0.09237830676027428, -0.4417194966755104, -0.3748539988384459, 0.46579744310038995, 0.16713514151654718, -0.3679141989497342, -0.2473283168564876, -0.145891050946392, -0.3702640759695788, -0.385032734006729, -0.436599726449311, -0.43482741288778565, -0.19298976578464816, -0.4562466770658013, 0.2693542887832986, -0.3065502348430742, -0.5698421113311132, -0.5698421113311132, -0.5026292340335278, -0.2837168878351564, -0.5698421113311132, -0.45488557550200115, 3.332250412126659, -0.17295854485551992, -0.3846679196501924, 0.06581310205355351, -0.4508006921284737, -0.26766278353920653, -0.4162057555941202, -0.24139850921767875, -0.341511122038133, -0.5698421113311132, -0.24468924608879628, -0.359760201675792, 0.7946506698553457, -0.4053990172061578, -0.24720313256827778, -0.38135877638636567, -0.4531756892771058, -0.5597742352118507, -0.4333646077638926, -0.21714245734670404, -0.5698421113311132, -0.47736822955174757, -0.38784230244411677, -0.5698421113311132, -0.2173032747457767, -0.28216715977943463, -0.5698421113311132, -0.5698421113311132, 0.06413699268690828, -0.5698421113311132, -0.16068229628166467, -0.34691220994969985, -0.3899127353793599, -0.4576256212072656, -0.15449688092355288, -0.38268306516474737, -0.5629528363181475, 0.9039915124184962, -0.2569932517110356, -0.03178605799129866, -0.5677097620166247, -0.39613393998173074, -0.42947151692061813, -0.4955707814370536, -0.18734474546225502, -0.12114362992640691, -0.08420271103305908, -0.313319831980729, -0.37839402870035843, -0.32889032175306043, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 2.52280269800999, -0.41299542742253903, -0.035430419658825894, 1.4968422345277113, -0.33891115401235195, -0.5698421113311132, 0.20437947964503783, -0.5698421113311132, -0.5698421113311132, -0.18097713977781593, -0.5698421113311132, -0.332019113595015, -0.5698421113311132, -0.2735910298440438, 0.36309053510091466, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5658323609204747, -0.4820107346791463, -0.49603438486360285, 1.5424581678413158, -0.23427452396478635, -0.5448295888138707, -0.01286123301074107, -0.5698421113311132, -0.5698421113311132, -0.5605872890349525, -0.5698421113311132, -0.5698421113311132, -0.24572645759427036, -0.4318081139276268, -0.3618313111890896, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.27321648317241787, -0.5466558811604247, 1.2931965425108027, -0.5424238030267269, -0.5698421113311132, -0.09797149079481281, -0.5698421113311132, -0.297858479453011, -0.5512909244125509, -0.5698421113311132, -0.4125868783666428, -0.5698421113311132, -0.5503910062076441, 1.465926711608543, -0.32765001539419486, -0.24104190053857039, -0.3198348275920852, -0.5380278238593627, -0.3136767355784764, 0.13218506222220097, -0.03680633654719966, -0.061698545270814836, -0.30713773012026846, -0.3479156966413883, -0.34916922229454644, -0.48550684768606917, 0.04708687875418121, -0.3726610011864341, -0.4900171945668516, 0.32965050863126155, -0.5698421113311132, -0.5698421113311132, -0.19627037133310538, -0.24253776257227302, 0.9416646275518916, -0.5698421113311132, -0.2751069463452034, -0.5698421113311132, -0.4613968933044461, -0.04678725070128413, -0.5698421113311132, 0.20178912249725978, 0.02128128965718953, -0.5698421113311132, 0.06357970054798634, -0.32697178926509696, 0.2638253623157685, 1.6720669295636867, -0.06609710063923141, -0.5698421113311132, -0.07499771047022612, -0.5698421113311132, 1.0400983379527065, -0.2594386476736302, -0.06251290237407924, -0.5698421113311132, -0.5698421113311132, -0.043127102212491955, -0.29499481946758577, -0.326057819054446, 4.466649891670106, -0.5698421113311132, -0.36757377609946434, -0.5244271867552329, -0.5698421113311132, -0.5393765540199575, -0.13724004637298676, 1.3055745206669864, 0.977757117565086, -0.41050926329513027, -0.22436470255087432, -0.5698421113311132, -0.37811134051072653, -0.20036762394131877, -0.5698421113311132, 5.0, 0.8419536765697028, 3.6583790764049016, -0.20220552220372848, -0.22884403093008787, 0.11518858878547378, -0.1635504667874519, -0.11137158756140715, -0.5698421113311132, -0.5698421113311132, -0.3105486550108871, -0.17732094666841758, -0.5698421113311132, 0.4353183303744324, 1.476130063809112, -0.23898347252675314, -0.3125895093414464, -0.5575980522593049, -0.5698421113311132, 1.8871807236907625, -0.27268812775643597, -0.44316408623640224, -0.5698421113311132, -0.5698421113311132, -0.28277023370003385, 0.01605186174171973, -0.5698421113311132, 3.227919716796745, -0.5698421113311132, 0.008421449141070994, -0.351612345648805, -0.18062865003535972, -0.4050317741078877, -0.5698421113311132, 0.8543828664801539, -0.5698421113311132, 0.2614695522268308, -0.5120972109446, -0.5698421113311132, -0.42765060250218834, 2.14317065754946, -0.11077984198618152, -0.5147431212224947, -0.24393720355915294, -0.5698421113311132, -0.5142356790076542, 0.1312658181723569, -0.34148756324331747, -0.5698421113311132, -0.43009696996147684, -0.20758320745387704, -0.3296002776580922, -0.21294878369166825, -0.17083440203165504, -0.1460891668792297, -0.2362766398646955, -0.5394910496760205, -0.044550171386807495, -0.46752401018687434, -0.25035928245104505, 0.3851179041645516, -0.36553626996286653, -0.45703365010601976, -0.15442551061289655, -0.08047421081262023, -0.2000244080380557, -0.12705470155755677, -0.3153236306516961, -0.5698421113311132, -0.06612482299130691, 5.0, -0.2273478913259016, 0.1168665717528818, -0.5698421113311132, -0.14146883269422747, -0.22981583989030815, -0.2518273180437429, -0.2158905450719831, -0.5424146236840857, -0.2618488268810885, -0.5698421113311132, -0.22703336927140488, -0.2727499565817105, -0.3543908435401585, -0.5698421113311132, -0.0907875503174092, -0.3589192498505456, -0.3918985266651882, -0.028955845249178252, -0.10448600065782028, 0.373839174516979, -0.32267005395107273, -0.4223784721025961, -0.5698421113311132, -0.25431407200842965, 1.5406818555300066, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 0.037541993133891616, -0.3283674136578243, -0.2367682865841899, -0.3037075140810234, -0.3435166381764688, -0.24641191790410305, -0.08749063750302843, -0.011796125671642824, -0.027022740310811262, -0.18319586474404814, 1.7933724478325908, 0.17486964304863536, -0.39514145202046475, 2.179477154405688, 0.31296366506925377, -0.3389348342442539, -0.25439526137495155, -0.249349134067745, -0.256847041458675, 0.04487235204151476, -0.4015802198376978, -0.30264624068423185, -0.5698421113311132, -0.5698421113311132, -0.4441200650049662, -0.10231657914877892, -0.2864425258974942, -0.1734184097546153, -0.525293874568778, -0.35804505895985894, -0.26342313727278543, -0.18650676017155401, -0.04211639868822556, -0.22076339900465491, -0.5698421113311132, -0.3121439046259579, -0.5236864031783404, 0.9183890934150659, -0.5698421113311132, -0.28981009774816874, -0.520729093513892, -0.08925341825325112, -0.3235686363480256, -0.4303187487780616, -0.4526742235017454, -0.1767597338464121, -0.35586965233726053, -0.30813566540227966, -0.08979308466644896, -0.5698421113311132, -0.0496708263689262, 1.0951191919701264, -0.008022624336512324, -0.260765261104814, -0.38806434148303054, -0.41030351417398686, -0.5698421113311132, -0.05923070079534055, -0.4507272834095767, -0.15610488143272536, 0.4309590165331688, -0.037772108349394914, -0.5698421113311132, -0.2994246882562108, 0.0326021406256846, -0.3610171449155328, -0.33879211097109685, -0.4504705046897953, -0.510481672661976, -0.3255338180254294, -0.22260108908920168, -0.04247411764926834, -0.2913473524802731, -0.24416665026035403, -0.2506839705245124, -0.5698421113311132, -0.5698421113311132, 1.7906225570492262, -0.27484773020961134, 0.3635112625617893, -0.5440308732410745, -0.3255829826973789, -0.4479085551462221, -0.2899538792587958, 1.2148199364867296, -0.4288520403192394, -0.3628989687070092, 0.7899801301090777, 0.013519308647200278, -0.27930540809108567, -0.31723633415949964, -0.5698421113311132, -0.061907764023008655, -0.38998197186692163, -0.5390499272901423, -0.5698421113311132, -0.5698421113311132, -0.5305796189331947, -0.5698421113311132, -0.448681398113998, -0.20997534457988584, 1.5438103524533235, -0.4632487134614355, -0.21957650761577227, -0.40425587786478984, -0.5698421113311132, -0.10749264413873158, -0.4893545991256246, -0.5698421113311132, -0.3472482957611597, -0.44717094628173865, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 2.2807026687329275, -0.5698421113311132, -0.5698421113311132, -0.15516554821911413, -0.28798654641014243, -0.48077552867792084, -0.3641391015843226, -0.2676993187541414, 0.9905141182169415, -0.3382672425343182, 0.2792915896751091, -0.38459738205098776, 0.16771769256949923, -0.26555831352338327, -0.5266481062631032, 0.382772294790894, 1.1245970385682655, 0.4466640239012291, -0.5441909078046417, -0.5698421113311132, -0.3563829495544941, 0.6816687964704736, -0.044698220543624156, -0.5698421113311132, -0.5698421113311132, 0.03878453740478285, -0.5698421113311132, -0.5698421113311132, 0.036577574487801835, 0.9242155754412682, -0.49669897534268276, -0.3754936947147561, -0.556626719289094, -0.4023851915889771, -0.28689160024403043, -0.5698421113311132, -0.5698421113311132, -0.17497106964857306, -0.37875297938042385, -0.5698421113311132, -0.2914266855941845, -0.33714429644564936, -0.1952582799564187, -0.08830353736125413, 0.14539824996424613, 1.2443188784416406, -0.5698421113311132, -0.24435505122625778, -0.49065785326577793, -0.27143239888756204, -0.46408001103829155, -0.26478347551775505, -0.14776253523734564, 0.6897667765511482, -0.3636484263615218, 0.6234624047953108, -0.355263091437458, -0.2326542409617045, 0.7561127838795587, -0.3794679142060093, -0.31020099797988226, -0.5585320129660906, -0.5698421113311132, -0.36505003586780665, 0.9506992692302676, -0.39986904984931454, -0.32780597530979994, 5.0, -0.49254312066606937, -0.4720110411470146, -0.5698421113311132, -0.1345774168104794, -0.28567693445860876, -0.20318125184703284, 4.421195504378082, -0.13882830468149623, -0.5698421113311132, -0.04587466834305207, -0.39092696057914156, -0.15815734167914003, -0.36140910913501995, 1.760256068547083, -0.35598402872475593, -0.5237345356350531, -0.019653486839138402, -0.36409231360964095, -0.3214036039222604, -0.32915930490005313, -0.44698670019901476, -0.3882635503496483, -0.3813307764638088, -0.5698421113311132, -0.29934405403065606, -0.5698421113311132, -0.5698421113311132, -0.39832530690715034, -0.49783358806575023, -0.1066598979909155, -0.08500856754025672, -0.5698421113311132, -0.2253609030173619, -0.06410608755867704, -0.5698421113311132, -0.3361303141200409, 0.12784268018045025, -0.5698421113311132, -0.1054093041759898, -0.24756282921901845, 0.4733747703460042, -0.1518354310356021, -0.510305532504788, -0.43282997231571374, -0.3019197346391018, 0.28999866291122106, -0.17153384495461083, -0.5421177490405066, -0.5349318980975101, -0.4608103088054024, -0.5698421113311132, -0.5202300738284207, -0.5698421113311132, -0.055263385869874095, -0.22024229511756355, -0.2036035406418786, -0.329460746445499, -0.5698421113311132, -0.1644475051985892, -0.30270076593615053, -0.3189148549197213, -0.48895555685879993, -0.15191564890543097, 0.7075858301167239, -0.5698421113311132, -0.5698421113311132, -0.20230464956276809, -0.10914536819211389, -0.42407257150622285, -0.5698421113311132, -0.1946586583187119, -0.5698421113311132, 1.5884579811340664, -0.3201687795804505, 0.06311109217865052, 0.0006920479666227008, -0.5036926802867631, -0.5698421113311132, -0.5698421113311132, 0.11328993728341501, -0.41233689144963775, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.3388047230799562, 2.788006861650106, 0.3725617951503682, -0.33418529099902633, 1.0091286887891935, -0.3188190410583323, -0.5698421113311132, -0.5698421113311132, -0.38700122918178337, -0.32082186823260594, -0.13648349332298132, -0.5573818281051758, -0.5195553346785259, -0.2813604705607861, 2.442384699862548, -0.13584445667656977, -0.29048854940328456, -0.2836325931488467, -0.2231676104467107, -0.5698421113311132, 0.18532572317473894, 0.15501703872585448, -0.5698421113311132, -0.2514550613286088, -0.5423269808038145, -0.5459782340260079, -0.34042776443972095, -0.2893063940607823, -0.5698421113311132, 0.5157563829893311, 0.2187873307495129, -0.3667377511503058, 0.35854177940443577, -0.22053631165256674, -0.42904376345687173, -0.3807371572878149, -0.3420418541513828, -0.09042591067328237, -0.3070773238437236, -0.19639121858250574, -0.5698421113311132, -0.35722570558788586, -0.2720441642339365, -0.5069993210791964, -0.2343167146783294, -0.20875455489566486, -0.24777957707058382, -0.4609880753521442, -0.5698421113311132, -0.3075230152999881, -0.5698421113311132, -0.2930076576774935, 5.0, -0.2650678464784449, -0.5698421113311132, 0.4732134325022758, -0.5698421113311132, -0.39988414274437317, 0.3550756179875335, -0.35963395915011254, -0.3210195331134075, -0.4231177463899825, -0.29762089646700235, 0.08846646195085792, -0.4542227718829111, -0.2457856148036376, -0.4463374194669344, -0.5296047610346911, -0.5439974368403693, 1.5298563290899212, -0.43652244909179566, -0.27531370165935104, -0.3201175504780274, -0.04474412376238931, -0.4003203621078764, -0.5261730096837074, 0.4161849111752714, -0.4303563856008544, -0.38857925207870153, -0.28056183088616904, -0.2290349300303463, -0.23330070261855831, -0.37892914989688387, -0.18175804963777778, -0.510148193410841, -0.45490330531665585, -0.3106142136895381, -0.2137555769992482, -0.5698421113311132, 3.1281789269875437, -0.3030270673880548, -0.4610613713080319, -0.5698421113311132, -0.23499148852453494, -0.5698421113311132, -0.5698421113311132, -0.2830935686173922, 0.21342355871986649, -0.1230840557862834, -0.5698421113311132, -0.3325859645674738, -0.5186090448546635, -0.3820098006080477, -0.4709793116585961, -0.22810302182717723, 2.5760823523823038, -0.32115746829571884, -0.5698421113311132, -0.34830663731971573, -0.39803311192844737, -0.39151827245048826, -0.46800319225682924, -0.5698421113311132, -0.40207464226203066, -0.5698421113311132, 1.4406272722888311, -0.5698421113311132, -0.5698421113311132, -0.39420588335654033, -0.4325852765860573, -0.5698421113311132, -0.5501063143060823, -0.322511699990044, -0.2555771217988148, -0.25534195020638484, -0.2335830958895512, -0.4075401265258474, -0.4943755542595784, 1.1759930996372703, -0.27195794390239475, -0.3047737837465239, -0.5698421113311132, -0.3843415661538224, -0.5698421113311132, -0.44457612198398594, -0.3080904561097249, -0.4919911891071166, -0.26982679242381297, -0.1662870688839014, -0.3767875548288473, -0.23956234577079322, -0.33366947829928256, -0.5698421113311132, 1.4915511859648323, -0.1837349066236576, -0.47857242572548153, -0.5313585988108864, -0.5450287521415812, -0.5698421113311132, -0.5216591888348383, -0.5698421113311132, -0.41663774200774506, -0.5206594276594881, -0.28339886145330145, -0.5698421113311132, -0.10979085835227277, -0.36583281932853473, 1.7057427521593616, -0.21589828234922015, -0.38703569996624476, -0.5698421113311132, -0.34139190551532533, -0.15107395110950883, -0.5698421113311132, -0.31008363770968556, -0.3041387718721284, -0.16337844248009475, -0.4658951658691816, -0.3203100282604124, -0.20107095285104878, -0.3827437143154654, -0.067667941399881, -0.09691273288053134, -0.23454442656400643, -0.21299687277799284, -0.4333298507348696, -0.10246497526869902, -0.5402135417917321, -0.045239760557589305, -0.31790451570671374, -0.5698421113311132, -0.5101805260351691, -0.5698421113311132, -0.2949394962005261, -0.29957757754833847, 0.9851629756443127, -0.3343589113366654, -0.5698421113311132, -0.5698421113311132, -0.03811011980608876, -0.5698421113311132, -0.22843777183068342, -0.2944449176427962, -0.5698421113311132, -0.17063600852833313, -0.18653777867312293, -0.5698421113311132, -0.5698421113311132, -0.2373106593096054, -0.4831444799944517, -0.45741469366178306, -0.23363524444420156, -0.23724435466027916, -0.31297609563280854, 0.08750870499638472, 0.06944892842870143, -0.4432184033104576, -0.1712708816174869, -0.4628279946746387, -0.48535463497199555, -0.27642290800906993, -0.4287567555765853, -0.4148431273926588, -0.05122782330169435, -0.4027528683911285, -0.42201018811501123, -0.09145486445686343, -0.28148038100980327, -0.5269407262716096, -0.3598421023166788, -0.5698421113311132, -0.4834347666760784, -0.5698421113311132, -0.2790206034265146, -0.35019975476025317, -0.10290860229449188, -0.47822073524838415, 0.03223567819440041, -0.5698421113311132, -0.07448757061724588, -0.3886839308474183, -0.2941787448969526, -0.40028077361761955, -0.12949471959202769, -0.11046774867341663, 1.2572941882790394, -0.3243414099231804, -0.5698421113311132, -0.4268923059625814, -0.5698421113311132, -0.43435339189401495, -0.4920620910175818, -0.5698421113311132, -0.04218419527890224, -0.4019617057714195, -0.5698421113311132, -0.42783894274954887, -0.5506928033902724, 0.004682678812731439, -0.5698421113311132, -0.030920766704254293, -0.44493118667727816, -0.29696482393214557, -0.1231410271280906, -0.4942946077672297, -0.11627431501740355, 0.09042277872093388, -0.3691781855405021, -0.2427118339619488, -0.4149195113201791, -0.17143343383208334, -0.23498923326435345, -0.5059658914715649, -0.35217213592208124, 0.012991716550049822, -0.3044511601035305, -0.486480521572978, -0.3466873258133274, -0.5313462555984333, -0.4145840673904635, -0.16190287778802268, -0.5698421113311132, -0.4033058061430847, -0.5698421113311132, 2.0837575281958194, -0.5240872019458832, -0.37579936921008084, -0.4142634214371675, -0.1106564966024251, -0.32992036847042067, -0.5698421113311132, -0.17020043104657365, -0.4053236568197962, -0.4011371999973402, 2.3487626737990266, 0.3845761559727246, -0.1311087572592232, -0.05058597625413232, -0.5698421113311132, -0.5698421113311132, -0.25487112127317785, -0.13237458275444677, -0.5546128868788401, -0.40512370198250286, 4.502055672306265, -0.4897461903597737, -0.555509043786839, -0.3370652062059112, -0.3409968533242058, -0.5698421113311132, -0.27548482386263584, -0.060911077808173265, -0.2126305838282608, -0.3798007385642838, -0.4085735387853239, -0.5698421113311132, -0.33850885029234196, -0.4861744480700827, -0.055659374861375885, -0.5399618374073586, -0.48852443785293664, -0.10552421835630009, -0.06969070160452817, -0.5698421113311132, 0.8403001891974929, -0.3924570852194423, -0.49103799471746884, -0.08431214319631335, -0.4682320664689073, -0.5032167683440709, -0.45693435793950504, -0.4050869065452392, -0.2199274954925832, -0.08247309995565537, -0.5698421113311132, -0.5698421113311132, -0.3129902690756398, -0.3086329502722273, -0.10867700269694819, -0.3759363849401644, -0.3455162732901786, -0.36777704443440845, -0.21397374739954328, -0.5698421113311132, -0.3542814287250614, -0.2588314969365496, -0.24357570270026704, -0.3353715058098544, -0.5698421113311132, -0.5698421113311132, -0.45493219866920764, -0.5698421113311132, -0.14218298685282696, -0.5698421113311132, -0.13934979022800306, -0.5648319369913812, -0.38822024935416993, -0.08988128268768583, -0.5698421113311132, -0.5698421113311132, 1.4463732588747187, -0.2389260154365993, -0.5079456716216023, -0.4373753624700802, -0.38671968597039763, -0.1905961714135993, -0.38138341076680615, 0.02371377859228663, 0.23983112880367213, 1.2035421089432348, -0.5698421113311132, -0.22802034051930492, -0.1402892275305458, -0.5384095223079864, -0.4551055761326739, -0.27118199561483164, -0.20035183712005075, -0.4296373999810206, -0.29627856560717153, -0.01746598855234085, -0.5684683941346097, -0.2268686658855589, -0.5698421113311132, -0.12415717797310356, -0.4574411582726013, -0.4632881024479073, -0.41002759176489906, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5603427754609259, -0.11623496940132007, -0.41912838195920504, -0.31243323715904653, -0.172968155733523, -0.29927407157241903, -0.14179855173271433, -0.4523602392400614, -0.2332740211557997, -0.5698421113311132, -0.28983703943325606, -0.2985813423855407, -0.11032049753174436, 0.24815407976149273, -0.5698421113311132, -0.3037373182117255, -0.05986290226858792, -0.005163162604657054, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.476896732714564, -0.2301306395152885, -0.3777276860575995, -0.5698421113311132, -0.48014520947951733, 2.095751071231892, 1.8870613683827104, -0.10283116012950054, -0.461640331292848, 0.6331576642252164, -0.5110340205766541, 0.31375002224996, -0.021488921663507805, -0.2498883841252174, -0.5698421113311132, -0.5163442258399592, -0.4986951061290339, -0.38737475231225055, 1.2608785947220533, -0.31430720223619946, -0.5698421113311132, -0.48814922327733407, -0.13572274201940776, -0.5698421113311132, -0.1287659929830264, -0.4608636196864543, -0.48132143175292735, -0.04977692768636992, 0.4572688124140434, -0.27410800487018827, -0.23847805137199837, -0.36549572732407104, -0.5698421113311132, -0.5680661640087272, -0.5698421113311132, -0.046381269172364244, -0.5698421113311132, 0.3799893731199568, -0.5698421113311132, -0.45997351186333524, 0.4958880959342184, -0.27158534022415537, 5.0, -0.5698421113311132, 0.45895859212701623, -0.5698421113311132, -0.5698421113311132, 0.45538195765754946, -0.21348241294684325, 0.3012680939475824, -0.03261543859700056, -0.12036952054329898, -0.5698421113311132, 0.5306111225727844, -0.3373555969764694, -0.5698421113311132, -0.5698421113311132, -0.14140155654820774, -0.47970437550672007, -0.5415069703704614, -0.5207994359463504, -0.4484260245947909, -0.5698421113311132, 0.23688881228238995, -0.5698421113311132, -0.45295646931341854, -0.5698421113311132, -0.4481419659008955, -0.5698421113311132, 0.14838372869576522, -0.4594699122648807, -0.5698421113311132, -0.5457268354028705, -0.5698421113311132, -0.5698421113311132, -0.36971372309275286, 1.1009484497011646, -0.33911190686478626, -0.5698421113311132, -0.5698421113311132, -0.03925520214084432, -0.5698421113311132, -0.2141363690067608, -0.5698421113311132, -0.5350461075090115, -0.3762043618941528, -0.23225211072324706, -0.5698421113311132, -0.3290330970706836, 1.242038914487414, -0.17361187638184924, -0.35256593904602357, -0.008593274554971003, -0.5365262239233146, -0.5698421113311132, 1.171068860468779, 1.3247384032267466, -0.10587919630881479, -0.49189378788952326, 1.3436821723928254, -0.5698421113311132, -0.4379042036344091, -0.5698421113311132, -0.29645763326555635, -0.059309322634887994, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.568039978188185, -0.26775465936935605, -0.48386267627322205, -0.5667841379116266, -0.2081426160677378, -0.5395122209309712, -0.43074927794664636, -0.5698421113311132, -0.48399930166981253, -0.5612028650120514, -0.4100955791852836, 0.12184125935681307, -0.300740424394059, -0.5698421113311132, 0.7300274037348601, 0.6170750916065184, -0.2678413654492443, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5470048024382423, 0.7456268649264419, -0.33141787857887084, -0.3584839672874249, 2.9220606371006284, -0.5698421113311132, -0.5419286866761844, -0.5698421113311132, 0.2549417883732199, 0.3929032704878039, -0.5641356487220295, -0.5698421113311132, -0.2889835622399259, -0.5698421113311132, -0.2570009195956516, -0.49952251338207704, 0.9210500228583614, -0.5698421113311132, -0.48123357202071587, -0.43397587001376514, -0.5698421113311132, 0.36911659030499605, -0.5698421113311132, -0.4622830630963257, -0.5698421113311132, -0.5028882376542182, -0.23730590591506967, -0.5698421113311132, -0.5698421113311132, 0.6025240141323887, -0.4820101535159457, -0.15914032285133445, -0.2221844904892744, -0.16315073059441781, -0.33785078271963276, -0.3004141055939994, 0.2688968526259369, -0.26386718065430187, -0.30381803917805583, -0.5698421113311132, -0.09397281040466947, -0.5698421113311132, -0.542591028400641, -0.22071197907252435, 0.005693521122239103, -0.5698421113311132, -0.5263077614795322, -0.5698421113311132, -0.4385602588211105, -0.4302361802331982, -0.25751144110804686, -0.23012432478678163, -0.40498045826468854, -0.2623172964651829, -0.33622338697290227, 0.42030953917245345, -0.5698421113311132, -0.08732811998474409, -0.016308866597850524, 0.08065854302579561, -0.31575103715233777, -0.1395726793265231, -0.3022459146539197, -0.5698421113311132, -0.23183009949888495, -0.5698421113311132, -0.24389275758542883, 1.5103142567459331, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.4272511785759482, -0.39969274054761317, -0.5698421113311132, -0.5698421113311132, -0.03770507507755027, -0.03515156541150062, -0.4622532676397015, 1.1660077790517576, -0.5698421113311132, -0.34052734285079717, -0.4932175128528593, -0.45717603509014987, 2.0830286281052683, -0.174179022272947, -0.5698421113311132, 0.12244837539758421, -0.5698421113311132, -0.5698421113311132, 0.0013810473001219688, -0.22027116244788247, -0.43030811435889976, -0.5116561384346682, -0.5587690006935222, -0.4441265792372585, -0.5698421113311132, -0.4439953924873354, 0.038693008537739874, -0.5698421113311132, -0.46686228215340936, -0.13201977828348316, -0.5698421113311132, -0.5698421113311132, -0.48032326227082034, -0.13131981491587005, -0.5698421113311132, -0.5284354866974544, -0.5698421113311132, -0.5698421113311132, 0.5431509937136619, -0.5698421113311132, -0.23503617737243226, -0.5698421113311132, 0.3044932547918944, -0.32301805794518196, -0.15281095250104404, -0.152550556690895, -0.20185099530324904, -0.4707242157098731, -0.21167733739414735, -0.4544769397053288, -0.527554959393067, -0.401560841948295, -0.5698421113311132, 0.24181201056156693, -0.5698421113311132, -0.319219176258937, -0.5698421113311132, 0.5289231470679538, -0.15185968375662764, -0.4895433904250213, 0.5612118805632806, -0.1750588166177756, -0.5698421113311132, -0.11736593033770962, -0.5246819661001227, -0.385484809584122, -0.526146913721188, -0.2545134370084446, -0.5698421113311132, -0.5698421113311132, -0.14448168681471474, -0.5698421113311132, -0.2867786984497301, -0.14796866601790407, -0.055690844414981504, -0.5400076256945945, -0.36340128454197623, 0.8686019696556159, 0.016287657867741237, -0.0727953274662324, -0.3120965268139983, 2.804430152037713, -0.4899718031186669, -0.4828624944051072, -0.5698421113311132, -0.3845075186068456, 0.26283707260807126, -0.15202272171957057, -0.40929119727128194, -0.5698421113311132, 1.2459050549715234, -0.28392924660344604, -0.5698421113311132, -0.15813527482567485, -0.4974882383393925, -0.43409755864869426, -0.39885662885767814, -0.010773798883365736, -0.5698421113311132, 0.07844221210498707, -0.27732345074756537, -0.30443854799467124, -0.3978512685652242, -0.31490399612460174, -0.3321707711681209, -0.5698421113311132, 0.3467147092660446, -0.04970305924135927, -0.5698421113311132, -0.5698421113311132, 1.4411473005902962, -0.5698421113311132, 2.08209765670248, -0.4462457518146478, -0.30780820162397426, -0.07259918922309253, -0.45115139376072266, -0.2229968352065306, -0.4171787962733622, 0.6159700835103686, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 0.11627430573299873, 0.8747920690156457, -0.5698421113311132, 2.008111799376968, -0.5698421113311132, -0.5698421113311132, -0.4400467962213716, -0.5698421113311132, -0.47752387720055867, -0.4142904151667205, -0.05995661700319349, -0.23161793156030283, -0.5698421113311132, -0.12136037777797226, -0.10401187557512029, -0.40960218030210965, -0.5698421113311132, -0.012109572140513244, 0.12558277069368076, -0.5698421113311132, -0.32359479736612734, -0.5698421113311132, -0.5220086544110267, -0.5698421113311132, -0.30361237679768854, -0.37231865269093267, 0.07296415042862094, -0.5698421113311132, -0.5698421113311132, -0.24787610220633802, -0.4537732551584166, -0.381972554118748, -0.48406787892747566, -0.3777504641854294, -0.3033469326743653, -0.4333086252669338, -0.5698421113311132, -0.5698421113311132, -0.15209478595643633, -0.22033382398460827, -0.17026989306015322, 0.1361258691664651, -0.5698421113311132, -0.5698421113311132, -0.4458663216373213, 0.12526196860698707, -0.2828562111574019, -0.5698421113311132, -0.5698421113311132, -0.146165672243837, -0.5698421113311132, -0.43661908699055885, 0.9190012751171692, 0.4055787348100346, 0.49215990798057496, -0.47215278424940105, -0.5698421113311132, -0.3126460816756832, -0.5698421113311132, 4.944611831170521, -0.5698421113311132, 0.7655893177682015, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 0.11626812978973143, -0.5698421113311132, -0.12038728505426448, -0.5698421113311132, -0.5698421113311132, -0.36114127096627335, -0.5555646576354988, -0.408460654339179, 4.15599633700671, 0.4334492401289038, -0.5698421113311132, -0.3619521063940238, -0.16885796140150094, -0.5698421113311132, -0.42349133891307034, -0.4493163145735396, -0.5698421113311132, 4.383796767667959, -0.21353171640403462, -0.030354071865192216, -0.3104115351918721, -0.5698421113311132, -0.16191980958753688, -0.31247560135414226, -0.5698421113311132, 0.3038517894037484, -0.16414762498711477, -0.14572683330889258, -0.5698421113311132, 0.3580091216459535, -0.5698421113311132, -0.5698421113311132, -0.5003409299536673, -0.18467649509745032, 3.0778612272482455, 0.08515872388760644, -0.5698421113311132, -0.31786772026945026, -0.5698421113311132, -0.1814208361962276, 0.024156225943523502, -0.35105189614563, -0.5698421113311132, -0.47239332509587767, 1.7482458712819857, -0.12434661982832143, -0.46435311437215326, -0.08001823190030184, -0.5698421113311132, 0.796611844108887, -0.26389181503474246, 3.0734042779892876, -0.27545564426552244, -0.5159542262990532, -0.5698421113311132, -0.5698421113311132, -0.5653647289270007, -0.18482489121737095, -0.42087737092601113, -0.06267993041273005, -0.5698421113311132, -0.27485702882081997, -0.5098212240549598, -0.5698421113311132, -0.3029067752796225, -0.04006744276916682, -0.2931581702723533, -0.29561038405995754, -0.5698421113311132, -0.16063368675068287, 0.14307838525296795, -0.4364990551044548, -0.006859950972345216, -0.11234669267112642, -0.28147456937779786, -0.31925406339912427, 0.5560280435997805, -0.20694399732591334, 0.34476560932855066, -0.514913749003355, -0.3002638011770021, -0.18788937344785156, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.38407924469844235, -0.4049362378169824, -0.5698421113311132, -0.15238613087553268, -0.5698421113311132, -0.2554258805814348, -0.5698421113311132, -0.44270494995982673, -0.019687766793892794, -0.3233222751954662, 0.08737470784531161, 0.02115575840587497, -0.18197281979964572, -0.4839382014670583, -0.5422228116371579, -0.045848958376985154, -0.20230444138490553, -0.2078156727340898, 0.6233193172108925, 0.18469577696167033, -0.5698421113311132, -0.5698421113311132, -0.2460730737359602, -0.32479742353181235, -0.3545469422410058, -0.5698421113311132, -0.30182834455729884, -0.3223506744131088, 1.6741638357838273, -0.5698421113311132, 0.41095687111221973, -0.5698421113311132, -0.5698421113311132, -0.3752292394362818, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.14663445409472586, -0.20581497938291043, -0.389285825093461, -0.3484296010440553, 1.0768682387317017, -0.5698421113311132, -0.5698421113311132, -0.29231015774792424, -0.2930963067507684, -0.5698421113311132, -0.2236071086115547, -0.5698421113311132, -0.48722303129131644, -0.2623819009952958, 0.3317050159599924, -0.45230960864899433, -0.21495915731347134, -0.5698421113311132, 0.9861948439179711, 0.4955577870584514, -0.5698421113311132, -0.314410267626479, -0.353682709191427, 0.15197167416245194, -0.14819152042011427, -0.41792830597234054, 0.14539519668892278, -0.5698421113311132, -0.2102490984695692, -0.5698421113311132, -0.3668730667611755, -0.1421142534617671, -0.21288195859768475, -0.5698421113311132, -0.44996902156627994, -0.1843928527592803, -0.4777588145928928, -0.20918340129319163, -0.4230791120482638, -0.27858171244710433, -0.5698421113311132, -0.5613441814582448, -0.41588212575812233, -0.5698421113311132, 0.6943233736137996, -0.5698421113311132, -0.06375357304420762, -0.5698421113311132, -0.5659502744341848, 0.11583588315377928, 0.11235334507832952, 1.3960154502005016, 1.2150705826336345, -0.5698421113311132, -0.5698421113311132, 0.04265421691255973, -0.5698421113311132, -0.2457483856624932, -0.5698421113311132, -0.34727953978874654, -0.2318449148234595, -0.5698421113311132, -0.5698421113311132, -0.3507945362626481, -0.25298693813258893, -0.504977163722947, -0.2441672747939428, -0.5698421113311132, -0.5698421113311132, 1.5743866842412415, -0.3253430056659475, 0.5985823744766717, 0.4697692685462185, -0.488842967331294, -0.5698421113311132, -0.4004510457612977, 0.22495966559857247, -0.37335916034590244, -0.4075219109628457, -0.48338419680355454, -0.27293044678882455, -0.1358741567183404, 0.3643397410634223, -0.26327710050197695, -0.2685470190117764, 2.2582261212338257, -0.5698421113311132, -0.5698421113311132, -0.42287367519391444, -0.3754751321886496, -0.5698421113311132, 0.9525115269192362, -0.5698421113311132, 0.040411516795785744, -0.5612947749963817, -0.5458630899826429, -0.3261075215192078, -0.5698421113311132, 0.9226393914488038, -0.5698421113311132, 0.28335431945439454, -0.5698421113311132, -0.09487116727560409, -0.5698421113311132, -0.5698421113311132, -0.29179394604061, -0.31590257328835725, -0.3257887665148327, -0.5698421113311132, -0.006759331671957583, -0.5022792003052554, -0.35107771020062656, 0.17129363311275475, 0.6588309909866609, -0.10109027275119385, 3.0954866754013466, -0.16296031724250631, 0.2937469053323214, 1.045093773950306, -0.5251374289048258, -0.17814071639611703, -0.5698421113311132, 1.8557364289998879, -0.5698421113311132, -0.18124291351608854, -0.058713101235608314, 0.05367896956742135, -0.5698421113311132, -0.5527400440104793, -0.48964045335358736, -0.5698421113311132, -0.04981530180576225, -0.5698421113311132, -0.46945623036932255, -0.08461233567458035, -0.23128196718592978, -0.31957642681978915, 2.828871065850921, -0.5698421113311132, 0.2973806499288355, -0.5698421113311132, -0.5698421113311132, -0.547522961475982, 0.6022821114557251, -0.5698421113311132, 1.388269151922849, -0.34868808855712746, 1.7557216771231388, -0.12821390529067692, 1.7797315239749556, -0.5698421113311132, -0.1184469285870087, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.4780854543338243, -0.37441701615611195, -0.5698421113311132, -0.5698421113311132, 0.38436846385819445, 2.375492433821948, -0.5493871682158125, -0.008101072694510278, -0.38966720693825163, -0.21429847016932102, -0.5698421113311132, -0.5698421113311132, -0.5009654418571046, 0.043099023612908564, -0.2888724126093051, 0.9700104029317042, -0.4407239033944568, -0.3283232972990495, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 0.8451708572626055, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, 1.6285850969150544, 1.6535638035406977, -0.5698421113311132, -0.4629975728921073, -0.3169659805082433, 0.21150707331421711, 0.22498908806985676, 2.818248998575486, -0.5698421113311132, -0.4768581764395434, -0.5698421113311132, 3.3384752077971624, 0.1205103088868184, -0.39026726227983927, -0.5034119307534796, -0.5698421113311132, -0.23102205712412788, -0.5624155146165561, 0.6554140983306377, -0.2685274502926661, 1.076965943542012, -0.4158867924118821, -0.5403714880711123, -0.5698421113311132, -0.5230600653815646, -0.28361182740702456, 1.008813091149073, -0.4687824366938881, -0.5698421113311132, -0.5698421113311132, -0.4841266891737381, 0.5906235266010234, -0.5698421113311132, -0.5085366755631938, 0.705801051905656, 1.6995913738818322, -0.3727156825717496, -0.276846792834198, -0.4757020433299011, -0.50083287592884, -0.5698421113311132, -0.185563540971169, -0.44602789368114676, -0.5698421113311132, -0.5698421113311132, -0.5043282473021268, 0.2141877102618659, -0.248728729340061, -0.045250030665490076, -0.5698421113311132, -0.5698421113311132, -0.21248329799027557, -0.5483776075012712, 0.04861067131781769, -0.48080659054987757, -0.5698421113311132, 1.0315536081782997, 0.0742170342000335, 0.30390785864148095, -0.22089181004973973, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.25834488118207466, -0.5698421113311132, -0.5698421113311132, 1.123950160555689, 0.4792672447547408, -0.30342706380341755, -0.08328162807876026, -0.03501725599363662, -0.5698421113311132, -0.5698421113311132, -0.5133740481813617, -0.5698421113311132, -0.41144564732235106, 0.04862316198958928, -0.0037534168135655126, -0.18091444354477934, -0.46294394107018355, -0.5698421113311132, 3.466443527960065, -0.3446492992320722, -0.4389882204627198, -0.5616167638053196, -0.5698421113311132, -0.2437845050967328, -0.5698421113311132, -0.37700126675324563, 0.10076436102245562, -0.03769303545781544, -0.5698421113311132, -0.5698421113311132, 1.3305231108951294, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.327384120218835, -0.5030189473298723, -0.3401017579064557, -0.5698421113311132, -0.34032449087157896, 1.1982380145676097, 0.29123877844037954, -0.5698421113311132, -0.4916231046233172, 1.1966612754341799, -0.3848732871119207, -0.5698421113311132, 1.5445693689413744, -0.4878422476703665, -0.5698421113311132, -0.5210712294944918, -0.5698421113311132, -0.3614345762269117, -0.19755472465812499, -0.3679274008958714, -0.18446269643227553, -0.49916831175950827, -0.2742673303279101, 1.6135586799873516, 0.0892703060720469, 2.705375794035041, -0.5698421113311132, -0.4424167537309064, 0.15661959191428435, -0.5698421113311132, 0.5268449074628521, -0.29110170260207846, -0.5698421113311132, -0.18812961070161172, 5.0, -0.5698421113311132, 0.3574412124360228, -0.15487343998118713, -0.5698421113311132, -0.4711240212955284, -0.22433031850718946, -0.43414427723075477, -0.20143578455574077, -0.2563168818345483, -0.3564318366559596, 0.07205080475155698, -0.4632993093561922, 0.22853262225912974, 1.639224789916214, -0.25154235724577506, -0.35913929385160603, -0.5698421113311132, -0.2911849910953842, -0.5698421113311132, 0.04430423465372218, -0.2665548262566648, -0.5107536266805528, -0.5698421113311132, 0.894969083841409, 4.458609785035302, -0.5698421113311132, -0.3749377730800986, -0.4589760536555931, -0.5243776317497906, -0.5698421113311132, -0.5698421113311132, -0.16734187141878845, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.5698421113311132, -0.38293870758036, -0.41642349229053405, -0.3774525443154971, -0.4302808604070181, 0.6806269356593971, -0.3408166406875754, -0.526401849199475, -0.32752889057431095, 2.6084259754408112, -0.49656848251896896, -0.40893942872748545, -0.37018049255763347, -0.4579337417924784, -0.1575061613240608, 0.40755427333611927, -0.4514569641671155, -0.5698421113311132, 0.9346437597337421, -0.3027021711367249, -0.3252705424215111, -0.05376124380397449, -0.4438112591676209, -0.01513384134714871, -0.003632673653095764, -0.4559297956621921, 0.5078299414676696, -0.1806584541660614, -0.5569524916222637, -0.5295124818599322, -0.30546221059090295, -0.5698421113311132, 5.0, -0.5698421113311132, -0.44814491508728643, 0.5788999902531063, -0.5698421113311132, -0.3380833520887765, -0.2867195932848282, -0.4314133046106806, 0.16372046942439467, 1.8744849273305877, -0.5566219366195464, -0.39728086122094103, -0.13385351298863518, -0.05691659567160118, 0.22904467040918525, -0.5670166538809803, 5.0, -0.3640799617231104, -0.040945571691095126, -0.5698421113311132, -0.5698421113311132, 1.543860870281379, 0.9478132301245848, -0.5698421113311132, -0.5698421113311132], [0.20454175118145498, -0.37592835095633875, 0.9894950471064615, -0.04659054359829515, -1.1979245212610323, 2.1383198782421684, -0.19441081553869, -0.7944091887466115, -0.7680979463319497, -0.43725769081969995, -0.4359622101725428, -1.2240293943547476, 0.07342748388111249, -0.4577379421048502, 0.09982322435499234, -0.6513655768584042, -0.2599873255353118, -0.0715542314347151, -0.1006206262407311, 5.0, -1.2240293943547476, -1.2240293943547476, 0.7173111332125601, -0.5933838524312979, -1.1313168190020237, -0.5505070448231305, 1.6356996389687901, -0.5668772448783308, -0.6019903098637638, -0.3992305170846308, -1.2240293943547476, -0.17730017340562385, -1.2240293943547476, -1.2240293943547476, -0.39813200324957415, 0.35572960088276656, 0.14382737592660383, 2.423195924104572, -0.3766249618634089, -0.6867619818454652, -0.30655306135984756, -0.5356837491363678, -0.4350430056725852, 0.12557345122252792, -0.6960317666221448, 0.224879414433245, -0.7632851900214535, -0.8526226480268346, 0.8694593621500474, -0.706896310655175, -0.8295133468631142, -0.32543648293227834, -0.04670570785098813, -0.05297161201484374, -0.2957349658669996, -0.2674059660521067, -0.13942543213798894, -0.3215463688606274, -0.2900855107898189, -0.527205503738275, -0.334301005172513, -1.2240293943547476, -0.0779702241531273, -0.4007407782817582, 0.26775020599836546, -0.7695788695528993, -0.4137020695789707, -0.6813565280987869, -0.306923321463995, -0.03992578359319617, -0.4327882396152677, 0.4055841589955546, -0.3655197370431181, 0.03939136873226321, -0.44195934565982226, -1.2240293943547476, -0.5972290024409209, 0.1877352708093968, -0.32185303079537614, 0.22829183906054887, -0.34998686079803887, -0.05175129284061083, 1.2549436492176662, -1.2240293943547476, -0.18660613257103983, 1.1273374381900148, -0.23186466818403004, -0.09041780787811941, -0.8538191764853664, -0.8226161878962512, -0.3067999535162301, -0.5469087479046729, -0.5908716856748651, -0.450640495782644, -1.2240293943547476, -0.14934807478136675, 4.922569604054754, -0.4277893766223311, -0.06089466258278758, -0.5785085609438791, -0.5443603676942917, -0.08322488617138382, 0.05399628986931535, 1.891436159943405, -0.33693845407222667, -0.35514448482317756, -0.7165770224244208, -0.3192244106341658, -0.5826555678668548, 0.029689444551478723, -0.28204127992612993, 0.038088778216043985, -0.3111959621171844, -0.3985928946516377, -0.10944639578806972, 0.47178985333881085, -0.21814785563610906, -0.4748499124552182, -0.371747669818362, -0.33353313931397993, -0.0772011082077314, -0.20724444171453704, -0.7300875706391629, -1.2240293943547476, 0.03921690348378258, -0.5795462502397714, -0.2676941892055597, -0.525631800632607, 0.00807958352044047, -0.46100871626395135, -0.30021269889693286, -1.2240293943547476, -0.044518837136680034, -0.3766921540325479, -1.0744210782423804, -0.5316897997242628, -1.2240293943547476, -0.7691418079317542, 0.40533476666543683, -0.5037742661408867, 0.03740380874293345, -0.14963395402193705, -0.5475465265985239, 0.20987274662906935, 0.565699972845647, -0.6450803354133177, -0.01782096629294361, -1.2240293943547476, 0.046464047708405926, -0.03324961654542412, -0.2625839903509625, -0.31247769180879614, -0.2060563122771455, -1.2240293943547476, 5.0, -0.05844847697384295, -0.35892927907622, -1.2240293943547476, 0.35397119744238914, -0.063447965010211, -0.019871968190814153, -0.7263234809498696, -0.46640916966315854, -0.20115964388565047, -0.4194637980829644, 0.19789816452267397, -0.2837100677641778, -0.8248561482372267, -1.2240293943547476, -0.4254151491387149, -0.49882900062240654, -0.3922960508378084, 0.020765074402448895, -0.41463947846894256, -1.2240293943547476, 0.15952127898634424, -0.7740888704501067, -0.8322694758848361, -0.47020615226315793, -0.5364534901252, -0.02628077290974058, -0.48040014188727137, 0.6635478659859679, -0.3172627118169145, -1.2240293943547476, -0.48678910147717136, -0.37716070221667586, -0.5098514071877037, -0.3465133381750719, -0.44602447189296146, -0.2500704645436992, -0.2827559389623514, 0.06747753917309271, -0.6918191692038255, -0.04489823850105154, 4.0212994753440885, 2.3249800366425477, -0.28077494192907615, 0.380037696287466, -0.47868775726970936, -0.6277958140099851, 0.04191482533572292, -0.395129216462755, -0.603570068077701, 0.37185462765102545, -0.2883519528259336, -0.5865636519372283, -0.4910350996539879, -0.03704948997130862, -0.4737016295367424, -0.24406106257902876, -0.5295365250945215, -0.2739825949330303, -1.2240293943547476, -0.6456240841355818, -0.44962675346330905, -1.0035619257675374, -0.10967813064118136, -0.5996713987240453, -0.24980982143176608, -0.5054315688058377, -0.552226070527176, -0.4550276756450899, -0.5999618095295182, 0.3856132399785957, -1.2240293943547476, 1.2485818008867127, -1.2240293943547476, -0.38343926351006724, -1.1105061541316348, -0.58136172795871, -1.2240293943547476, -0.47959735172687457, -0.6695793815870706, 0.32869600358460693, -0.5174244334326711, 0.17984175354370613, -0.039015407831741816, 0.092099406381603, -0.6914566830773834, -0.8394956420892116, -0.641479108603768, -0.676678898365656, -0.8402928849891333, -0.07628120053390838, -0.24918454360659287, 0.033063194616310604, 1.3595673257030307, 0.08037390408361016, -0.25644536065633783, -0.6238539775941819, 1.0012305500993968, -1.2240293943547476, -0.2641064398950519, -0.5988441146740833, -0.05853754566317059, -0.18617078981933943, -0.19292399347033465, -0.4253383469267783, -0.5362852753110532, -0.9735162441614772, -0.08348787319618947, -0.12586738062227001, -0.8264446961244488, -0.063375616232743, -0.3382258872851698, -0.6431334423124049, 0.39438822474692403, -0.9020760649833185, 0.09481522010183673, -0.394518080245272, -0.5850934716502985, -0.12258191794247635, -0.5340952012491442, -0.13734036537297276, -0.6163584958002283, 2.215604936233637, -0.7700891784514532, -0.3110571243444329, -0.49834709213487766, -0.8151360977968596, 0.07905201535137188, -0.252202643957546, -0.1733941207264073, -0.3689991194482743, -0.397496568468601, -0.07722939142311665, -0.7616022215105, -0.1407711506511488, -1.1310897426757536, -0.2542112210323361, -0.5564853508769646, -0.3655103613916073, -0.680196134963778, -1.199772699006181, 1.4241424379881327, -0.36593460962236085, -1.2240293943547476, -0.8376389505688517, 0.02339596034610826, -0.7075140488939247, 2.3730243127099433, -1.2240293943547476, -0.476446273385364, -0.3189442349149268, -0.4361192523353086, -0.445110189610046, -0.6241793517667305, -0.7606832123366136, 0.10560518864016243, -0.32072295226690956, -1.2240293943547476, -0.9386998404158499, -0.1413747863474202, -0.9110293238585578, -0.016779097019086423, 0.36521869777431415, -0.22791494059487563, 0.9873447414330344, -0.2699229378299407, -0.8263141011119816, -0.5506255686842771, -0.5876397423390938, -0.27770425979924773, -0.35902827033006074, -0.5055118868870908, 0.1305875496491645, -0.5524111615140352, -1.030506063724224, -0.5288871049667162, 0.048920077751434844, -0.2799266017284319, 0.0655547493096003, -0.2715813343208967, -0.7936263609108835, -0.11570120543096817, 0.058025319844142054, -1.193633375903994, -0.2873946206765065, -0.34079606588531064, -0.43823330548957024, -0.2852666603058416, -0.7267659726358467, -0.17317535552454708, 0.030880777336466173, -0.11999962912580747, -0.28242247829037187, -0.6742922481437859, -0.9766510127758832, -0.5907885548981555, -0.6375650866207715, -0.3002387944602982, -0.8085088403977916, -0.27821109189370324, -0.07521620465299493, -0.17702609185986581, -0.339889049732315, -0.6175258816086532, -0.6596933039845739, -0.00975470264821347, 0.39852569975753616, 0.49791041844092293, -0.7485107649181786, -0.09626883946272725, -0.40147004770824307, -0.24610284508624627, -0.6045757629628215, -0.41470760820323865, -0.7258465728098143, -1.2240293943547476, 0.43270729376562045, -0.5078690038067079, 0.59463198331338, -0.6377754528014848, 0.06447240847339591, -0.30436673755854177, 2.768671806012555, -1.1060843234238202, 0.3900102642751259, -0.06158158531662624, -0.5389485072524117, 0.4391472725258124, -0.08350388993418384, -0.5221133530128289, 0.16461053888590507, -0.03274098745110344, -1.2240293943547476, -0.5776460400703278, 5.0, -0.5568137330710442, -1.00224277160032, -1.2240293943547476, -0.2928023402056338, -0.6862110451237101, -0.08024436655689775, -1.2240293943547476, 0.09142795347275141, -1.2240293943547476, 0.14456555222202627, 0.17262672092549508, -0.03433703585952854, 0.09731930035884871, -1.2240293943547476, -1.2240293943547476, -0.5050795130916994, 0.043298905889634066, 1.1913617309490074, -0.1537577562074326, -0.6284667981362635, -1.2240293943547476, -0.14196701500102873, -1.1748225960981467, -1.2240293943547476, 0.007392426395310022, 0.467052024109952, -0.5469144514260095, -0.26469609024449603, 1.4806151122397677, -1.2240293943547476, -0.781943283435967, -0.18403861040549246, 0.07418183317538704, 0.08999488513970491, -0.9965354609402889, -1.2240293943547476, -1.2240293943547476, 0.22030378397548087, 0.3427757319763317, -0.128220512889997, 0.47267553988463046, -0.3338090178596128, -0.18094066075586485, -0.1346994006039475, 0.13055832886863233, 0.17602008172806718, -0.09561801298719626, -1.2240293943547476, -0.2125648895542069, 0.36576295434437395, -1.2240293943547476, -0.49311243150651063, -0.5506432261612838, 5.0, -1.2240293943547476, -0.07008647319109197, 0.15310598944179224, -0.22261590049281565, -0.2590256962122787, 0.48656947411563045, 0.31092336232462353, -0.2814025636671271, -0.6707754021978134, 0.3908089135227748, -0.1565852183110479, 0.20374622715097288, 0.14985545106386727, -0.7581851871878721, -0.545487711657731, 1.0438938272444616, -1.2240293943547476, -0.850026686385046, -0.5317647268059001, -0.5063042075699721, 0.5874011683484665, -0.5421481827209075, -0.4290021952753575, -0.8706412829432678, 0.7431543352908898, -0.46945852218580086, -0.05175121471018188, -0.30671377565278285, -0.05879732934038064, -0.4031664937182397, -1.2240293943547476, 0.1762765057968182, -0.12705590071180614, 0.01604826225905539, -1.2240293943547476, 0.16957869662014957, 1.3143152749156661, 0.35088004514010257, -0.36591445197161865, -0.5973087345439547, -0.2617609644093945, 0.6133049996398753, 0.13666281556568258, 1.1019584871222077, 0.28134396312024207, 0.1461647258476234, -0.21408788601129888, -0.7025183111181599, 0.6154581180087586, 0.4162239608488897, -0.018754312400596496, -0.17027898238234648, 2.330652618326785, 0.6437624286080121, -0.29277952612029806, -0.14902422415218466, 0.01908058234812756, 1.520020663007422, -0.20455542673152888, -0.17663348645295623, 0.05631910753049506, -0.043914732657830004, 0.9560316280039153, 0.04102054444269186, -0.47928170479275933, 0.1632866968929337, 0.4948444241368549, -0.336613197095314, 0.5076296875769983, 0.5183904353347863, 0.3181251127698625, 0.18264194812751716, 0.7104833150016483, -0.273928919328145, 0.7751342138031104, -1.2240293943547476, -0.6987589873850517, -0.3538670523051717, -0.18957602644715246, -0.5402047664240943, 0.008884795724144025, -0.3855264397966692, 0.5119288925761268, 0.06420426484025603, -0.9668123212787214, -0.2987441593490155, 0.08891059104277253, 0.5473363530189225, 1.329598836961056, -0.22653140695396667, 0.00018708195032564944, 0.6625882680540914, -0.3112601071995854, 0.1792096783711865, -0.4775068158318088, -0.33429873939006427, 0.5046772949170345, 0.2607312807575368, -1.2240293943547476, 0.7876249255250384, -0.22011182023580905, 0.4904947468804369, 2.2308975614088227, -0.3840327422505386, 1.367437872622528, 0.4087789122470084, -0.19678496489188227, -0.5268934508039053, -0.08991652304414252, 0.2149107529670515, 0.3524203084220565, -0.2921544826864117, -0.29170210750113584, -0.26139406391370057, -1.2240293943547476, 0.1564463778133387, -0.14142471169170218, 0.4727707027474391, -0.6144633250434729, -0.013123608626432146, -0.5537647712005463, 0.5035417472585235, 2.401047822546521, 0.133291800065878, 0.9953815499059455, 1.3980615631440734, 0.03991249869526657, 0.4444748302345445, 1.236888332064703, 1.7426030051183985, -1.2240293943547476, 0.11890705047841149, 0.08357865803000603, 0.2323627469454538, -0.4337377587217725, -0.46473420952120087, -1.0065757289448793, 1.6802502347624761, -0.3537893906585119, -0.3211529821494234, 0.07986629068486532, 0.11506193953400556, 2.32629044020169, -0.27361772582850347, 0.13130197429409954, 1.0169432044621536, 0.5503354676755676, -1.2240293943547476, -0.9872295994379081, -0.10498764845244002, 1.7935259187205534, 0.17209605905012845, -1.0916805197779291, 0.36365812058076036, -0.08621704721982427, -0.16887075952580308, -1.2240293943547476, -0.38927857553029177, -1.2240293943547476, 0.5724518482793453, -0.7511130551247354, 0.33936486995761106, -0.5376013042611023, -1.2240293943547476, -0.3387446733352955, -1.2240293943547476, 0.220866166805121, 0.25798984025651117, 2.034894878802141, -0.352477424490787, -1.2240293943547476, 0.6665110406451624, -0.6969034287559153, -0.7273847265701798, 2.060114131272589, -0.4857641083760266, 0.08865291688715346, -0.11271490416471691, 0.1294595025118601, -1.2240293943547476, 0.803658539691092, 0.06855941122671848, 0.06963839245446428, -1.2240293943547476, -1.2240293943547476, -0.0990084048334539, -0.41464377564254834, -1.1066674010509034, 1.803902889809941, -0.5085501448887811, -1.2240293943547476, 0.17457779400437287, -0.5763672793350252, -1.2240293943547476, -0.6360025171012674, -0.5498596560864821, -0.8212221066473968, 0.1489336682597401, -0.025298829675102448, -0.2930116516255592, -0.6932021949969438, -0.28470826212809175, 4.449337344434114, 0.2896150066200001, -1.0620514979846798, -0.23733082927422686, 0.2296683409628246, -0.08626478491209143, -0.1602646927454767, -0.5459425088863135, 2.1773441525151522, -0.8655717509770882, -0.2447097795329739, -0.1788765329458853, 5.0, -1.2240293943547476, -0.4156440013976294, 0.4051780370243863, -0.5008093726122453, 0.7182347911469863, -0.11845850640913047, 0.17478968372846299, 0.6674053215381986, 0.35367227042013355, -0.346328872231644, -1.0431857924870795, -0.4004463828243951, -0.21951982597348707, 0.29916410768120083, 5.0, 0.033873875950063866, -1.2240293943547476, 0.34852128748147326, -0.7627031183236468, -0.12937449932980916, 0.2344253902772789, -0.22202882844753596, -0.5075345274391472, 0.2574882429008188, -0.6248813146081993, 2.511151098555913, -0.7920686745432093, -0.09708983401313832, 0.9884491931807146, -1.2240293943547476, -0.6306736311752388, -0.49979352077132466, -1.2240293943547476, 5.0, 0.16547153621608474, 1.963516168739183, -0.8548425288474968, -0.25928672997635643, -0.7546050555942148, -0.12125495073233816, -1.2240293943547476, -1.2240293943547476, -1.2240293943547476, -0.09230348578772307, -0.19957226795486588, 5.0, -0.8099735906198897, -1.2240293943547476, 0.18200409130323755, -0.11728834697046621, 1.9692237528557177, 0.011187221343294638, -0.9648833005134968, -1.2240293943547476, 0.057972034891406295, 0.3032118889590491, 0.7240114425629642, -0.5502885921429861, -0.13385160731630577, -1.2240293943547476, -0.11247176226893772, 0.09874221173608991, -0.5953460590963394, 0.3450880801599958, -0.015594483451011358, -0.3653752738794589, -0.5414853241592723, -0.12816410272008932, -0.005513470427576084, -0.8076848378258561, 1.0211578723368469, -1.2240293943547476, -1.0644250418270413, 0.12091437746633878, 0.47728601651383434, -0.09094729779704751, -0.4222619612756185, -0.6639070342941201, 0.1806191513146032, -0.023365023421086914, -0.1400137542701364, 0.08606875294018045, -0.26549934918746637, -0.20325072669371883, -0.011669679468783467, -0.3741295540840427, -0.0005510162146627541, 1.3909205981727817, -0.10855461506876912, -0.4285088797451658, -0.6404114953534731, 0.2415293214251158, -0.9219340464648206, -1.2240293943547476, 1.5081248363736963, -0.31008525993517067, -0.35166471176587677, -0.0010617548305793506, -0.18926381725192476, -0.6752368059680316, -1.0838456101004668, 5.0, 0.42039284429204876, -0.8370107428525815, -0.5560382104304464, -0.15350164466039706, -0.4287845238995071, 0.09885925111908164, -1.2240293943547476, -0.09949414171200995, -0.29716764354789627, -0.5551874481865007, 0.03434484617749347, -0.7218605145710624, -0.62498139968805, -1.2240293943547476, -0.1313833107958909, -0.6422598659831186, -0.11248996665894676, 1.2477583061625659, -0.4971537279587333, -1.2240293943547476, -0.48172281192380395, -0.6237115848868966, 3.3976783277914957, -0.07714719821155928, -0.5250937163664571, 0.015519475513987507, -1.2240293943547476, -0.28367529972316685, -1.2240293943547476, -1.166756923314785, -1.2240293943547476, -0.5062276397493173, -0.08941664455789115, -0.576542721213875, -0.3134786988681663, 0.5827760031985654, -0.2544204543218328, 0.10821662010693975, 0.005832630506045235, -0.46030780818327527, -1.2240293943547476, 0.06381126878120201, -0.3572768204978821, 1.7420929696763472, 0.1417812962457808, -1.2240293943547476, -0.6191750977741781, 0.5091030712115291, -0.3629054147504606, 0.12051091192976919, -0.3013359019476242, 0.06193051308863525, -1.0043658878843738, 0.1362207535970644, -1.2240293943547476, 0.08061493645780361, 0.07256203311646901, -0.5884078425889138, -0.2513300833238406, -0.6423069395667322, 0.6341737935496163, 0.22537304248515733, -1.2240293943547476, -0.7083344574661163, -0.25146704596628805, -0.0742308236794742, 0.6047689377241494, 2.9488321377439464, -0.6623839597065996, -0.35524746072891356, -0.08070525795895622, -0.3654741088724468, 0.06206849142666887, -0.48026802333143204, 5.0, -0.2854844879425497, 0.44069316119867397, -1.2240293943547476, -0.4760736693683388, -1.2240293943547476, -0.33246767465049265, 0.10260435511407098, -0.3156180662814992, -1.2240293943547476, -0.17185706079205434, -0.5597836269471516, -0.6172312908252204, -0.03284458840026574, -0.4883547571486252, -0.8590128967688161, -0.35204075352178954, -1.2240293943547476, -0.4631078465062285, -1.1648127794283514, -0.5432954499438073, -0.3626958689392483, -0.10276858800128545, -0.2205842749413982, -0.1212609667753902, -0.504177419155741, 0.0033769129847371873, -0.11320775091233516, 0.16827954384281818, 0.6285835613377941, -0.25773802860804385, -0.3729489251678627, -0.12698441136905642, -0.02829770994046053, 0.4937948199504992, -0.5073925644492235, 0.1339980991461644, -0.5773695755464802, -0.3406447272438812, -0.36271321389453925, -0.5352835650778226, 0.7017363009269844, 0.2183186460294577, -0.06826454971173948, -0.3973253846981451, 0.7911778286641062, -0.15956144075192819, 0.10737374903633988, -0.06410371370278937, -0.697295799771538, -0.6883379116683651, -0.3081039503801799, -0.26197355730734484, -0.16443490440593772, 1.3029516727658907, -0.01687324418631396, 0.06328107568840846, 0.09810029212948568, -0.7029802182158046, -0.34991779349859065, 0.03569056469065348, -1.2240293943547476, 0.6915257476518742, 0.9153922414977692, 0.12861006848520587, -0.5780628268450866, 0.7212496881503384, -0.0503150992903978, 0.06380540899900758, -0.827677477102146, -0.1234469780549751, -0.5425549297355072, 0.07329325580368728, 0.357669579440692, -0.38343731024933414, -0.2562699578427, -0.48955562184598145, 0.06127210796146867, -0.40049365173408363, -0.8183879253268682, -0.1197450801873555, -0.033436113880014044, 0.5578191127094916, 0.28976595460928517, -0.5816865161530442, -0.5405126784457162, -0.2713292074257563, -0.1687507511864969, -0.38681637318335277, -0.4529583130963524, 0.4794844505316677, 0.12362815979541587, -0.37232263164710855, -0.6434645200062898, 0.02573456035399534, -0.4340547338731792, -0.37386477005936664, -0.5744923052942238, -0.3987714226824424, -0.646451016598616, 0.04797438703596212, -0.6112304441425496, -0.04147518813536896, -0.24953261466884125, -0.5608951104334594, -0.6136168209079158, 0.47287242856630207, -0.24479900448315928, -0.09388382997987468, -0.3697913620007266, -0.34310607015609684, -0.49233011151857153, -0.33668156122089676, -0.19439792401786754, -0.29809169213446707, 0.2692035882430063, 0.3503618841334134, 0.0724294457780563, -0.3250086407017793, -0.3274617017884992, 0.23822252913813577, -0.4347254836081709, -0.6753214212228954, -0.5546201431398187, 0.10998705563342148, -0.6043253549371224, -0.0016979709158468927, -0.39987298360423706, 0.09590701471998125, -0.2625624263524946, 0.3065124308116847, -0.7542378425768067, -0.021727253363446837, -0.6560550433515696, -0.8352681608241207, -0.6058822990657189, -0.10116027311546437, -0.47305572527824863, -0.34396019200850636, -0.9255454302301722, -0.17787607279952236, 0.8396679169607176, -0.6347228578660297, 0.14187427145656936, -0.10121582385065378, 0.0192943472025167, 0.1759907046866716, -0.189142480695322, 0.34572656202771196, -0.6523642400048969, -1.2240293943547476, -0.10797996576173836, -0.024128670236438332, -0.00970860569496362, 0.12719778284634364, -0.7402264783106633, -0.6380478154778015, 0.09190204891735278, -0.2728064975817479, -0.4914580977978737, -0.2960110788039198, -0.07197957349147333, -0.5501548328481344, -0.8748115727341578, 1.3693233161408451, -0.5102367464646984, 0.07394111332290922, 1.5295350741580347, 0.1429421581633628, -0.5158736225427727, 0.003604663185958521, 0.28188931351630653, -0.32727301680189447, -0.44727096476098877, -0.7527078534462968, -0.20632125256268424, -0.3871198317705061, -0.26616978640074224, 0.5980217501162064, -0.16534324877623516, -1.1736640390282236, 0.2917451546426849, 1.0299630154508648, -0.4282006552018283, -0.6089248933062319, -0.10512922079021383, -0.2868073142399401, -0.6345388607051804, -0.10021700444330334, -0.010254659264893632, -0.22365198811491258, -0.3215663702505117, -0.8288038444352238, 0.1922951189204585, -0.09266647976195579, 0.39506842826385, -0.47224965363982185, -0.3827678887316443, -0.5377811605092037, -0.18337028271381264, 0.8951184889370882, 1.2048597001646393, -0.9278492621970481, -0.3545808519066749, 0.787962136457616, -0.7418425281089763, 0.8212485120075227, -1.0874064141791921, -0.9263745308126154, -1.1493452251052627, -0.34605049351228034, 0.5966169649985456, -0.052956142189852, 0.09521852937755394, -0.28946054548636135, -0.3661817361700352, 0.6280738384174639, 0.04132626881228863, -0.09561590346560543, 0.1669739843702845, 0.026571337251108704, 0.549012875769464, -0.38088572669135207, -0.7721495950660451, -0.37998152323380774, -0.707991347686127, 0.07647644575161029, 0.2377545278670154, -0.28350153764854646, -0.3271934800249305, -0.2265702377772967, -0.16305934006881428, 2.4723490272236766, -0.5573014232103334, -0.7549917621537175, 0.7203797839512268, -0.10061882924086087, -0.23367260631655018, -0.5169422124234315, -1.2240293943547476, 0.49196953686269335, -0.1830538544754033, -0.6954739544226197, -0.006136248079013614, 1.0797589757417254, -0.3793163988897237, 0.2811411365259474, -0.06356383243676914, -0.02826567646447691, 0.7820687581803618, 0.6689735555138167, -0.7563756473815565, -0.1241567148741544, 0.7393600091254784, -0.4614107754528005, 0.1519424710896113, -0.40517483640174823, 0.03700792185799915, -0.2401845432020654, -0.19494132115320426, -0.10079266944591007, 0.07475116961322598, 1.6937924258010586, 0.07116795186761568, -0.2714417933742846, -1.0662932478194098, -1.2240293943547476, -0.08975940275094758, 0.7099984375578101, -0.8973771837734335, -0.2669818740822159, 0.6613474005769717, 2.1147907432169495, -0.13339188787068612, -0.1692040639369198, -0.3887358815688205, 4.679054557342932, 0.47119168677258416, -0.8142700610539952, -0.2899576894075903, 0.542113646346226, 0.03932034817209194, -0.02986735026380961, -0.27228005474955275, -0.15139767033150653, -0.11956569272182747, -1.2240293943547476, 0.10921184551454448, -0.3336666642175446, -0.37808240689036915, 0.47890253509472214, 1.102824953582432, 1.0879831409839447, 0.5316552633495811, -0.24319803385768693, -0.18740384425353676, 0.23820940322602707, 0.01840389470051791, -0.6197949064693067, 0.26060220928844074, -0.15366235895333727, 1.2881454876431324, 0.6817877272127819, 0.5702040358302323, -0.19473622877646057, -0.12584456653693435, -0.5672390668961194, 0.043528921873304253, -0.6845662823926537, -0.5975292186152612, -0.48857336608962765, 0.3912747271418807, -0.7219894297793015, 0.1303533146223176, -0.7953103060522028, -0.941595744775475, -0.4033809617464943, -0.6944968162093778, 0.40500646260178597, 1.1402914633573078, 0.41549094116179625, -0.6577654356431815, 0.6685955604971758, 0.4265185824658564, 0.06808828473842604, -0.17253804561326977, -0.44985067527349826, 0.0042531457486169565, 0.5825322362593497, -0.05339203185455997, 0.3380229017050596, 0.7441440915684447, 0.8523312969312559, 0.7041906902309962, 0.7745199523684554, -0.6065333599325418, -0.00297313765140392, 0.4199773466693748, 0.2639740060925394, 5.0, 0.49127605117279494, -0.13597683312194844, -0.4312790722441503, 0.6008503841762551, -0.13418084894510865, 0.03348189558658568, 2.917578090919329, 0.4366749132230736, -0.10849757985543018, -0.0013575566356630268, -0.48899222332076037, -0.37588397287253544, 1.102831985321065, 0.26804022615168877, 0.4732465170614816, -1.2240293943547476, 0.5273024608759963, 0.04631309971912105, -0.328495758019434, 0.6192254110456471, -0.544509831205417, 1.2958849317023713, 0.49334666380840003, -0.8183517118729173, 0.45654176250829714, 0.028172542267868025, -0.35431513031684175, 0.2493604906082757, 0.14181473606948966, -0.1916556240821188, 0.36985151970628005, 0.1632460690697282, 0.46785364231390986, 0.4223417297189065, -0.925428976825396, 0.11013722231841211, -0.1987054889729258, -0.1361411414146341, -0.443996830993434, -0.30389420472252365, 0.19208619815268285, 0.4543052008409885, 0.23118438381171746, -0.7166475351368061, -0.0989186329702611, -1.2240293943547476, 0.43719432431663585, -0.1521138919763114, -0.507719071513004, 0.5862337434748249, 0.4508490231733178, 0.9380720987571972, 0.8038891807181932, 0.46136694155703695, 0.07745010716074739, 0.8072689468260773, 0.060627297528984755, 0.6606771977549823, -0.6114169024119225, 1.4018252621812215, -0.038927198577132414, -0.6987153124751084, -0.41810776635315167, -0.22142800544671587, 4.248460885651707, 0.3062616321338413, -0.1844311376819731, -0.029320671650443237, -0.2817107882104644, -0.26494657640062397, 0.03791110961996236, 0.1040446114466031, -0.04704479391387528, -0.05908563062426263, -0.4411287410666187, 0.229726938784752, 0.634614917953082, -0.4644221565868312, 0.1993699855486159, 0.41048074925662054, 0.055678594271616776, 0.24858684309798224, -0.24885233302148602, 0.6970547256071701, 0.11108603825105165, 0.10836913070480803, 0.11895033473621015, 1.064898724361932, -0.45442763394855895, -0.1860505470887464, 0.20403546600000178, 1.2245846645903677, 0.8472045344256621, -0.18696561067595607, -0.6591856515206173, -0.1358107278293975, 3.0982528333968116, -0.26765059242604555, -0.33064020391066673, -0.6051778360505145, -0.9567760379260222, 0.15202700821404647, 1.40417136271031, -0.3817578185424839, 0.3500462371992981, 0.22807104246753201, 0.26397666252713287, 0.4523911615855705, -0.43549436516228013, -0.018457573030360677, 0.3507440981932308, -0.22425796772406165, 0.5795267149075082, -0.48790730418039147, 0.27304088614449534, 0.35196933958450605, -0.015792778480413706, 0.20726647177062102, -0.3328755936215314, 0.27452411421311035, 0.5162299727055595, -0.7484295483369883, -0.25887631083157725, 0.4186842880655244, -1.2240293943547476, -0.7889107988543568, -0.44965402098311336, -0.11752555095362231, -0.10353567255551932, 0.5816004527602854, 0.22865639564336515, -0.6660144072966865, -0.39741046873558256, -0.11509467890881168, -0.6142107684309657, 0.5390271818696951, -0.45212442702511907, -0.42543866639791594, 0.06898076863158685, 0.33827995081724743, 1.9678817846031667, 0.11243972606799167, -0.07947900087210008, -1.2240293943547476, -0.08339356976810419, -0.14786679997348495, -0.1285603802571733, 0.8420618333125025, -1.2240293943547476, -0.7592424872215056, -0.209964161956232, -0.4203784710180295, 0.08317144223282774, -0.3681582797688418, -0.23556039374774496, -0.15880935724010237, 0.1268730727824382, 2.887231294638992, -0.07294518746640147, 0.2471565874603923, -0.12702160145337396, -0.5189243032827117, -0.47454840712879826, 0.40089586445883335, 0.9707443691333064, -1.2240293943547476, 0.3281306517986582, -0.37888769722450655, 0.4094417708086438, 0.27288837554662704, 0.004963507611227525, 0.45148281721527866, -0.4655751273310674, 0.001018936630401959, 0.4226481572623687, -1.162537792239319, 0.18597561728215165, -0.5758068888313355, 0.20984977628287607, -1.2240293943547476, -1.2240293943547476, -0.6697268918374678, -0.21409616783679963, -0.3619155803424714, -0.43239602486050266, 0.3932101741349087, 0.1715603968272849, -1.1414216325074662, -0.23598792345652325, 0.5393417349778005, -0.12364667943210311, 0.7083611362827436, -0.18902731644262902, -0.3220340589999165, -0.915029855759326, 0.970434035068383, 0.8608795471939442, -0.18188767968863412, 0.8690891801763235, 0.8966218746564452, 1.8981631899006055, 0.737928503401021, -0.606766344872521, -0.011488026220806743, -0.27405213101505205, -1.2240293943547476, 0.2515875203632155, -0.40682862319738267, 0.8275228542577318, 0.5726743637418088, -0.3503624337713732, -0.8013225597775411, 0.0719657416805414, 0.10407445727057175, -0.2579317920725486, -0.8061323861969406, -0.12343728988175365, 0.4860733458899825, -1.2240293943547476, -0.06995005746164686, -0.8611698044635142, 0.11490708502325964, 0.09950179576911684, -0.16876387709860588, 4.844192907705978, 0.5962419389382138, 0.3760038222260264, -0.2756651337266235, 0.17944985131065677, -0.47075259648523254, -0.013684116325767727, 0.40742678703865165, 0.8592020868782508, -0.7336994231870901, -0.3828796152454496, 0.744754290220781, 0.017623137321162396, 0.007336406877546936, 0.6995791197757822, -0.24651295170930454, -0.7959948458079522, 0.010711407029246734, -0.3030345356096406, -0.7960881726056741, 0.5501846759471457, -0.11019347895241922, 0.013633406952234172, 0.45217567786174023, -0.6196403254150644, -0.09502328415985205, 0.3837592048928308, 0.592016020281705, 0.40067225517035987, 3.9024930945612275, -0.4232733596820756, 0.11182124559015963, -0.8338944325520823, -0.14632895873483762, 0.42094694529619314, -0.6013619458866356, -0.14581579807561426, -0.49252051537462266, -0.40750609214928657, 0.33568805195777557, 0.13334524127947123, -0.4030725028118699, 0.03870858691117244, 0.3506670615900078, 0.7283293988651093, -0.2706451755177977, -0.02640031246646815, 0.34032978075867376, 1.3926810330043216, -0.6103604227477967, -0.07498962640821227, -0.07745018801613382, 0.2247695630497441, -0.2933403463413496, -0.21725318409092834, -0.3265092918561142, -0.16850284333452822, -1.2240293943547476, 5.0, -0.46334833196741443, -0.4248583916999825, -0.2728597044040547, 0.4633686431540622, -0.23591893428750893, -0.345508893376814, 0.5621726964873656, 0.5101265798345139, -0.408687111717616, 4.898874207476095, -0.0250154506082677, -0.050446280281085, -0.2061996816147948, -0.6848422781339277, 0.29827435835306215, -0.5635407630282452, 0.3595345527865514, -0.2168025277750938, 0.19422353417485852, 0.432461339174385, 0.1441964640743178, 0.3037177053579237, 1.1070344648488017, -0.8422949772383009, -0.557274311951387, -0.48992275673296193, -0.3818709514040149, 0.19284171940339098, -0.48951054058831267, 1.3587543004563996, -0.5297854486420662, -0.4988175154493099, -0.2974895409163502, 0.4407026931110375, -1.0196927537201674, 0.8650787452436506, 0.7243639670596762, -0.2160309116559622, -0.29966547337056404, 1.117837715560094, 0.2903978735209469, 0.9020783475734158, -0.1114660673838119, 0.6255150668599906, 0.5450476002248887, 0.30578581781979325, 0.08064595423821111, -0.9285187423125624, -1.2240293943547476, -1.2240293943547476, 0.2039657736571275, 0.2709894935944802, 0.4998675856932817, 0.550291089591764, -0.7141567761179834, 1.0148536842626688, -0.10918028354609201, 0.35134585875920843, -0.7905418887602981, 0.31709425988652334, -0.32870436626549426, 0.5277163958900868, -0.6177638278308917, -0.6246449309945493, -0.6845319440690046, -0.4482880666887823, 0.11257832944945656, 1.158570077277023, 0.13731129812834086, -0.03190491372785029, 0.7760614657372823, 0.3333753912523959, -0.27682974590481435, -0.3861822666196765, 0.4571519611606282, 0.16368828729920426, 0.4390832055738405, 1.0392711622683009, 0.9295440061452513, -1.2240293943547476, -0.37313135972012873, 0.05896444760356013, 0.35819555349030885, 0.7410315315285537, -0.4353852950830681, -0.6033069638572492, -1.2240293943547476, 0.5764485322564731, 0.1491639967651258, -0.5361321396697486, -0.8426068739118102, -0.27175626835195593, 0.18288196480612953, -0.8664766966737117, 0.21727201079941638, -0.6510386400772673, -0.6990472886689335, -0.5726874142484518, -0.11279951941958087, -0.29434033770513884, 0.8869408894306976, 0.9810944633550285, 0.3704157776662242, -0.12829958088438218, 0.19879869585004373, 0.4299321009191649, 0.2423303145856371, 0.5538422738613857, -0.4815349082414934, 0.3701360707295589, -0.47713804020581585, -0.5087823485244711, 1.0525306774139087, 0.7606588329177333, -1.2240293943547476, 0.1831591715690596, -0.44046760137442464, 0.10933607289702736, -0.07121639545870068, -1.2240293943547476, -0.7827494332048219, 0.0821684819127294, -0.8180568866981962, 0.4563730007811426, 0.7393917300797513, -0.13708011291318933, 0.07583788575347018, -0.2906317987510356, 0.9928196531313058, -0.6166615246700198, -0.04443187796894335, -0.6099878187307715, 0.021057829120799506, -0.2299285180171418, -0.4175897616073151, 0.12107782632430153, 0.28833554271083733, 0.3262569278447244, -0.12594426096464068, -0.02056943853260256, -0.10836030469126201, -0.687998786540266, 0.05337687182633147, 0.7505095338991438, -0.8200803476197592, -0.18295705087358233, 0.09767401250757517, 0.23381769179868345, 0.118420922947711, -0.6668733732357042, 1.1639137298541784, 0.49486864456991597, -0.3248659745379954, 0.3614153084791181, 0.7291271105476115, 0.04597862335156551, 0.21493622348698035, 0.45861190636132887, 0.19272624262898252, -0.2803038154407837, -0.6440482324431109, -0.6371656838665155, -0.343363822442145, -0.6310609237129616, -0.7123186015093529, 0.523371875242003, 0.6986820261872948, 0.6386070703653173, 0.12640819672848463, 0.9923861855099044, -0.2265635185603843, 0.343293736722163, -0.660730133845748, 0.12949403616158434, 0.06981067005093024, -0.11054865988372457, -0.09019794885024915, -0.2948440445824223, -0.07808765418826899, -0.2638978316489917, 0.12887305551001704, 0.7221799090408195, -0.1691944538941273, 0.4303779131483864, -0.07100559956062046, -0.38708904838138514, -0.1384111429056517, 0.36148421951770354, -0.10003331980416968, 0.24104335015526795, -0.7705257322248082, -0.10211573013458734, 0.20086555822505103, 0.34723526061625054, 0.4917278013146343, -0.10253927519147547, -0.03380707715802183, -0.4288670296327801, 0.45705117290691194, 0.3966377560654838, -0.17882973281877015, -0.5349532296230098, -0.3097383608293614, -0.010542804287912638, -0.24063691838734125, 0.5747627901152838, 0.11830075834754693, -1.0739942224085546, -0.5014805129993816, -0.2110021247086281, 1.1263711210412264, -0.29374482757350534, 0.056660381245397025, -0.005023748897124791, 0.08671809493755699, -0.2568185897167945, 0.5782850661260889, 0.48266670291444386, 0.42061254705906126, -0.7255329182016472, 0.5674369685484199, -0.11054115936251795, -0.4047240238250556, 0.16804015220763677, 0.04597667009083229, -0.13542812311743008, 0.216845574916648, -0.05234031814661849, 0.1244947825164979, -0.3831243197498174, -0.16427161180883812, -0.2848762425509519, 1.677319718622701, 0.014853491735180397, -0.8957369330746647, -0.49427298090237726, 3.8237273086749117, -0.03664524313044464, 0.5207588811666424, 0.2458657165085564, -0.6044791937522873, 0.06636113346974268, 0.4814455243054877, -0.1588670174968778, -0.588003283226329, -0.41653515707349353, 0.36188580992397407, 0.431059054230465, 0.7076853080698519, 1.3126320329482073, 0.27884644581928997, -0.2767055966527601, 0.006676282880934113, -0.2740300201035767, -0.1603085239162777, -0.003549115175731535, -0.02693503712415912, 0.04420717212950255, 0.10800504290457037, -0.14047269241146676, 0.5450957285693003, -0.1899139405535957, -0.20788823645144003, -0.20192415013572507, 0.1756645882750408, -0.42627442759944834, -0.016859727622055294, 0.14189521041160602, -0.34887693992031454, 0.010425684049529238, 0.005950919975910126, 0.2053621206884297, -0.025422275753296465, 0.6170655734598568, 0.404349229431053, -0.41728559984630187, -0.8631561924964051, 0.005164615336081052, 0.4078157203153869, -0.11279600355026424, -0.17479538997475177, -0.6068522492794646, -0.09844961600355948, -0.5856597610013996, -0.2526300955358953, -0.5317430846769984, -0.11313469896100187, -1.2240293943547476, -0.3455908521970845, 0.23407255325884596, -0.6511277478318117, -0.5891526209056026, 2.4567854457199054, -0.14564852082661955, 0.21375301626663604, 0.6682588183471664, 0.1285810039655316, -0.21691386363675946, 0.1790641995119515, 0.18013427387076497, -0.6703099792308523, -0.1952522802615639, -0.487379298739618, 0.16297901926260372, 0.22832606018855764, -0.708678036028684, -0.4876962738910247, -0.012288081816181318, -0.44663435802357665, 0.1718276028952728, 0.12033965002887909, 0.6470631267215057, -0.11723123362669324, -0.08168040384624793, -0.35629425221981276, -0.45581624606736765, -0.43262752532232746, -0.6930647635719177, -0.41303757027832316, 0.47883706179501934, -0.3886089196213101, 0.21707496585688169, 0.27139749069594754, 0.5483381413825874, 0.14304513406909908, 0.007824487668985879, 0.041071094830405094, 0.2832303442037112, 0.050637775238183434, 0.09134779165235607, -0.3133069681847081, -0.21551001608425063, -0.44848464284873824, 0.11161060595294284, 0.21939965864836566, 0.4528607254652797, 0.3475585643324303, -0.311390975668557, -0.6170094785366221, -0.23444594130512292, -0.5203695599627148, 0.3087441483923801, -0.5137099565659446, -0.1394041806612368, 0.31966459474752207, 0.5819309444759511, 0.5816715514508852, -0.6271886233791802, -0.20114159575649931, 0.09596795645478111, -0.18395977680239398, -0.38000675936245004, 0.19067766277441842, 0.10566831802698204, -0.15917766408352194, -0.40274318305264334, -0.12665165387094218, 0.3685923697087171, 0.5196803687214699, 0.7624583329638945, -0.34351813003988846, -0.4000136183768589, 0.7485942445568583, -0.7405098183122867, -0.45987652821389363, -0.13956739512791258, -0.5229070800434357, -1.2240293943547476, 1.606801380846487, 1.0327036746475962, 0.1772168836430991, 0.004596138332960219, 0.05022618413697056, -0.2987524411745164, -0.8479641993140797, 0.21946653829578888, -0.5751171924672525, 0.07853424499682216, 0.07750347024391718, -0.02724341792835456, -0.22491152876461998, -0.928971723008664, 0.19607272517401023, -0.3486631750659254, -0.47237341223973134, 0.06546200849009333, 0.3952771927707681, -0.4535428068374676, -0.0014467034554245654, 0.19490248760491702, -0.4284288741856284, -0.36248218221528794, 0.009168721703986334, 0.0691565620973693, 0.619754510312436, 0.47952085931169625, -0.14401465729044052, -0.1481233021726652, 0.45797889362365723, -0.35238038649767406, -0.8769913335794071, -0.05274573694392145, 0.3286906907154204, -0.6625756136495132, 0.3896472703008984, 0.5262825462527514, -0.568838748369507, 0.1258912858086632, -0.9686221931393613, 0.04684141768161541, -0.14372526218055376, 0.8528577397634464, -0.36397142632695006, 0.2305673096816111, -0.5966223977883355, -0.013593797549572599, 1.1685148308318714, -0.10724733672679458, -0.3369590023751135, 0.1830344754039978, -0.2655366955326418, -0.2797152589173494, -0.08415159119254802, -0.5065123470334536, -0.08492609813756467, -0.058582783181702194, -0.2893379588428908, -0.24582407571473294, 0.15907374788768158, -0.14706010329162184, 0.12429695626967431, -0.5591172525161997, -0.010430608991528867, 0.03634232873133647, -0.18480960148119277, 0.12902259715157088, -0.555506923511643, 0.3458287566291483, 0.3043650940945721, 1.1547015272038401, -0.08508939073466429, -0.18034843210225618, -0.6304380288658782, -0.2241697584694572, 0.7743925997688005, -0.04063848936868426, 1.0325006917924435, 0.3096440546763186, -0.06426044334383435, -1.019179983713093, -0.38970532393477564, -0.8935208806450351, -0.048422155250874045, -0.6789252263366096, -0.1166719760142253, 0.10039185761897106, -0.22011932075701568, 0.3306197310132514, 0.41850177538282957, 0.673773264042633, -0.5150174692992062, 1.5602234566749944, -0.8852100687567941, -0.3552325378169292, -0.0799611437509158, 0.33625277870029335, -0.5697151764594617, 0.40114353791951024, -0.1530097354779311, 0.831506724844466, -0.8654723300058859, -0.4139108340858888, 0.16604735747954938, 0.1175535189223346, -0.3117056850375201, -0.5817577320392902, 0.3925399713129246, -0.32311905627071447, 0.038254649117313036, 0.756499637647795, -0.008390389092894758, 0.3162188865573669, -0.24331437006681875, -0.05373533696062411, -0.45452607828939723, 0.004519961164454879, 0.2567239710420307, -0.12754702858998296, 0.17267359918303946, -0.8719283645692838, 0.10340831723090677, -0.016727296544500322, 0.3477681101436428, -0.1909374491765858, -0.5425711808647882, 0.27538120502182384, -0.8843714557945913, -0.019381465356073702, 0.1404472972970094, 0.8982729268870578, 0.35875652997222335, -0.4404218950733246, 0.3577780244764727, 0.4981934068556129, 0.09425080588103993, -0.8599699945269546, -1.2240293943547476, 0.014581207189297715, -0.10134942688464263, -0.2968530123093621, -0.06850441012949397, -0.26312996579046344, -0.36483875222189754, 0.7703882590096087, 0.07300456386766058, -0.2982315456027997, 0.06583000281179714, 0.7578806711149688, 0.26229670203770383, 0.0010047950227067867, -0.5921905663855772, -0.3760646885553549, -0.27745166412152866, -0.26094786103233464, -0.39065140530239295, -0.1791138150594753, -0.05191442917685255, 0.23069419349869266, 0.008076614564126307, -0.5989506845795597, 0.19289594192128384, 0.0005478101421095131, 0.026863623186880844, -0.006342278020909432, -0.188449776309718, 0.6365148937312389, -0.27726782322153715, 1.1694525522435588, -0.790346328295921, -0.6058958937604066, -0.18596179092113455, -0.06808055255089006, -0.27328848419970075, -0.5381512643524934, 0.41967060660419714, -0.176551293241399, 0.9296265118785243, -0.15918000799639961, 0.2415415097720725, 0.0904449164121031, -0.39114073618069456, 0.5681217036302386, -0.7786563753432313, 0.3019582080915306, -0.15619698820817304, -0.663146356435083, 0.09897769684980456, 0.9929874772933031, -0.6903953202614322, 1.5088011333691556, 0.14183551876366843, 0.24105053815475358, -0.6077551245197123, -0.5235250136082601, 0.3887298628008111, -0.13158215273829588, 0.22061599317070857, -0.0911779388241542, -0.40354394182187814, 0.39365411123382565, 0.5598406594355384, -0.5645120805245046, -0.747078673215501, 0.16292729691844612, 0.2552877774918229, -0.7430183520037605, 0.7136416594730733, -0.24796297434549217, -0.88403526055759, -0.07589922086537748, -0.8916740335587594, -0.057253393928252176, 0.5424557013654224, 0.48842272789710095, 0.5153052209451232, -0.1470098654256241, 1.0270926597415955, -0.2786697956437468, -0.033916147237238785, 0.11971273146469366, -0.14257947943580845, -0.13745201375634925, -0.7727170173083701, 0.07881387380305854, -0.44917500332146953, -0.5659146779901457, 0.0847874920311423, -0.21212321823773347, -0.6644957080132003, 0.02228760207696719, 0.35192496150070274, -0.20073688013305657, -0.7262178095443285, 0.2674767494960387, 0.2347005656490465, -0.01758766883124872, 0.05787609072430357, 0.21810660004451524, -0.04703909039253874, -0.8160907344464773, 0.42364510153942014, -0.2877779285623392, -0.043581975159715756, -0.20894221594183038, -0.3040741391010542, 0.16263290146108855, -0.8121587033995417, -0.5349923729680606, -0.1723991297100891, -0.9724498419328375, -0.49293312217141666, 0.8461568053696109, -0.0710111468210991, 0.6917332620719245, 0.2919273548036643, -0.3318259894351806, 0.39884665956083826, -0.4588745054589474, 0.6245857835346568, 0.25115311517666183, 0.1706415829794719, 0.38939740918820176, -0.47711725751164236, 0.502044768234363, 0.2199618852171479, 0.4442282505998722, -0.501827412105191, -0.30857281108602364, -0.22943004587861623, 0.5409546595589425, -1.2240293943547476, -0.09669379086734105, 0.35251500250229145, 1.0138565837247593, -0.6502917913042044, -0.3518410521446617, -0.5608510448713716, 0.3099062603968299, 0.301040175548012, 0.02574401413592996, 0.19292828791898278, -0.46603695629827785, -0.9021501912280557, 0.6072436409397661, -0.016861524621930628, -0.265540367662816, -0.1621594337848755, 0.4019989098587823, -0.43278644261539745, 0.4913107410833771, -0.20051545849660304, -0.8312798758681355, -0.26875871630389964, -0.012119320089031993, -1.2240293943547476, 0.09073321769598525, -0.7052591656409664, -0.4241299035777868, -0.14937752995318573, 0.9610843228625949, -0.30158177840843076, 0.3528904973451967, -0.8485509588376402, -0.9756517831837791, -0.4408216884797201, 0.2705769649281152, 0.9656315138441157, -0.5837395885072887, -0.9581253113737102, -0.4578266982724621, -0.09959180474855411, 0.1712802211080462, 0.17150961204828513, -0.35854675249468154, -0.3193106666280421, -0.8386292928246301, -1.160036295169628, 0.012368084650761292, 0.11963944512206845, 0.4761223419007955, 0.49057459617911653, 0.9849264483873309, -1.2240293943547476, 0.034034824634285823, 0.620127973764179, 1.5203325596809283, 0.12249808126694929, 1.3352550112551496, 0.5180085337966844, 0.11939208418310732, -0.5688799231057146, 0.955677384637757, 0.08155226721734636, -0.07539035737976502, 0.46251405251907896, 0.22954692627579273, 0.21437790343966454, 0.09997229721397831, -0.7446487387358385, 3.1731289739940762, -0.050943189811022055, -0.06724369752334775, 0.18876268595384843, -0.23976560784050363, 1.9231864912545342, -0.2777725457944017, 0.3754842548716063, 0.4039141992010681, 0.5712653595809714, -0.5364760698192489, 1.3887116946774272, -0.7026944171056582, -0.3850677360466255, 0.8573558648354083, 0.022458785847423113, 0.2980555931512019, 1.9344963396689903, 0.2647892189911851, 0.200068940368564, -0.02160747941542734, -0.13797369063236017, -0.03758366771599232, 0.2653605086897573, -0.31669986020470126, -0.44262665765592607, -0.2557218728816132, 2.0398202210611656, -0.6755933151166387, 0.9525198214706205, -0.41431648727448367, 0.18921756131285983, -0.15409051370554697, 1.0378910663662797, -0.29755509234647676, 0.8583562468513473, 0.36872816039473094, -0.48200830051222965, 0.9546921599250938, 1.1621932978024074, 0.3071882590245764, 0.1262395912621932, 0.5383207265285452, 0.3058511348586329, 0.6101063398669658, -0.3154723530309772, -0.3204952801961173, -0.10740351945483723, -0.04815158957442771, 0.3871872556059795, -0.36442012938205154, -0.09551730286390898, 0.030372538894290216, -0.14439194913322106, -1.2240293943547476, 1.901580614875381, -0.319796716028319, 1.0571417790865436, 0.3042461795812758, 0.37306361791302484, 0.2265785950082692, 0.12797861835612273, -0.2830564285931905, 0.8225248506995186, -0.2922956643720412, 0.03594706688983359, -0.8673166378532112, -0.38324620321942265, 0.5192051794508588, 0.46712015384424826, -0.3755868428501499, 2.0146525346740174, 0.9624758258072839, 0.08481249376849775, -0.0915042114966429, -0.10764345800302065, 0.5091333858180711, 0.12714590424132846, 0.38240942359735197, -0.5887864235837741, -0.7238919838616227, 1.1364236945884187, 0.02572729422407539, 0.8471410925171214, 0.5601425554141026, 0.4947033205816545, -0.00574247071566519, -0.1731739491768214, -1.0871582817022427, -1.0328364014392184, -0.16917820276484624, -0.16067081471664496, 0.9309986384767654, 0.5727288987814174, -0.2538709630130151, -0.19872470905851594, 1.2275215874253396, -0.4771088975557124, 0.2248258169587939, 0.2796114989823669, 0.6333324850876053, -0.749145418394861, 0.06608103588093264, -0.422352123790956, 0.2097691456799021, 1.5895508071146587, 0.1911144118738445, 0.40140886885719357, 0.20104307056027476, 1.114836569512287, -1.2240293943547476, -1.2240293943547476, -0.5868866821969041, -0.02108775580015459, -0.20124035261905338, 0.3935969197596239, 0.09657065458591071, 1.6689381986960004, 0.2211382169597221, -0.22210711513763212, 1.6516876249641723, 1.1139855728770496, -0.05683875574029634, -0.009321469418098638, 0.033547603277575166, 0.13759131758672197, -1.2240293943547476, -0.03607075008427163, -1.2240293943547476, 1.7258009000503804, -0.26911725684365867, -0.7936226887807095, -0.7501879908425835, 0.003983283246035782, 0.3272766862071115, -0.16949806874213819, 0.007533451820081657, 0.18800044548622252, 0.00031029363723268633, 0.923225754593812, 1.218136872787254, 0.4705674246429867, 0.5589098135016211, 0.5868659749082021, -0.17025898099246212, -0.10828326808803362, -0.05351094636785628, -0.02223689815335355, -0.06657419787522387, -0.6789700341377798, 0.059012966600116436, 0.6863852341907347, -0.01632992518141142, -0.48909801192194763, 0.34758184720034463, -1.2240293943547476, 0.18795372348954156, 0.24129039857250806, -0.426458112238582, -0.6590693153114854, -0.18957633896886794, -0.7737469326265564, -0.25842026351612707, -1.0817917173767162, 0.5640957988725787, -0.3860177239357038, -0.49934559902051234, 0.11868719145054661, 0.6926430127899421, 2.2670703875364104, 1.0320481603463099, 0.3803069337466158, -0.4149248107965104, -0.14755857543014742, 0.12897743776347317, -0.6647703364719607, 0.65485444938576, 0.22848669635106383, -0.31395576326908214, -0.42800321960714915, 0.0716928320912225, 1.058401710388401, -0.24379174698945005, 0.3037963045697355, -0.8643338524562765, -0.5998581695151338, 0.5229520023152893, -0.15072395164020594, -0.0026653037602161847, 1.0673156110599153, 0.5801151933005082, 1.1868090708374366, 0.07969393495797057, -0.4675215125841896, 0.29070508236869796, -0.35372087027207616, 0.14395269713510211, 0.2320094411444475, -0.17880504360313543, -0.27160438279752414, -0.17272766816502652, 0.5749646791444267, 0.9237850122062797, 1.2694029352346152, -0.16693648448920892, 0.7012804880028213, -0.25336358400555725, -0.39637055272245336, 0.4102727660539969, 0.8017352810450207, -0.31251542880612093, 0.10428181542976445, -0.6713816161982493, 0.26408276365003563, 0.015443532736769147, -0.020553343664179113, -0.21738467760333116, -0.5575038591524837, -0.5732006921033159, -0.4614067908009054, -0.3315958171906527, 0.3606216595789403, -0.4131623445738087, 0.41908665977608933, 1.4434475294871476, 0.0791146759556184, 0.8641063339213813, -0.3963775063306526, 0.015547914990230793, -0.00471505557121386, 0.2618637031988811, -0.7350254137668654, 0.14141189557635134, 0.1944258919865746, 0.7785283559099717, 0.366884126003903, 4.921483278566633, 0.19772830896951477, -0.5484582305772799, 0.2239987282349017, 0.213854742085499, 1.7276519661798362, 0.3292449479804171, -0.29455769655927344, 0.1515826023325506, -0.10023778713747686, -0.3626342240305829, 0.1663300333725236, -0.1264590623628762, 0.9127636213365641, 0.6890372934807121, -1.0059007406341038, -0.29706966798963647, 0.03640233290098956, 0.665462061502243, -0.9260196038052043, -0.08557309622206341, -0.14299474266719583, 0.44326505866825594, 0.42105460902767944, -0.720892283226758, 0.6437052371338103, -0.08763988046664146, -0.2217499028151649, -0.10526462082407802, 0.5571556291044201, -0.7191903290214998, 0.6450089214760392, 0.4126937155342994, -0.05549069331426377, 1.084674004784087, 0.05402910464959322, 1.1835572823726441, -0.5118938147383576, -0.6399566199944616, 0.21114861653849198, 0.34767216597653977, -0.2751000944623902, 0.30072187217930335, -0.06782092513454299, 1.3841274698724413, -1.2240293943547476, 0.017996366381623986, 0.5367434294231318, 0.2989695629124017, -0.27777770240273053, -1.2240293943547476, 0.9434012190745126, -0.40698191509954007, -0.32357463480358606, 0.8295170553335451, 0.07776544157314685, 0.3108739838933439, -0.06911046786907693, -0.6361270960706831, 0.20335760639595316, 0.046039799477657434, 0.6548171030405844, -0.9021497419780876, -1.2240293943547476, 0.07437215890100399, 0.42034940377339775, 0.9647508276457673, -0.7083068774245963, -0.04839668473093997, 1.031916432442615, -0.2580318771523994, -0.04212820226292496, 0.14307404232791576, -1.2240293943547476, 0.2611222454254342, -0.047229728639876706, 0.19995627628960133, 0.5331300533318373, 1.7843415305030326, -0.5048814524535888, 0.5087021058486895, -0.20034990011704948, 0.25135000385833867, 0.7870761373900861, 0.8811751762748138, 0.5999328204153099, 0.5419245707074766, -0.033852783459126956, 5.0, -0.03579760610366575, -1.2240293943547476, 1.4048989132673537, -0.07503408262244977, 0.49253301351833784, -0.5891732864041354, -0.6685921254832459, -0.07111506029198213, -0.7316132235308501, 0.006283052430593105, 0.9618489072430929, -0.1844893448517561, -0.31457869718137754, -0.719181031500421, -0.112049779820633, 0.5867801876968992, 0.2682577412666812, -1.2240293943547476, 1.4145073934547763, -0.45762918454735396, 0.13120696769214882, 0.13088241388910127, -1.06342234519714, 0.6210077223973753, 0.02369293410763062, 0.7662278136528028, 0.26411479712602437, 0.540821994090101, -0.1564370048867854, -0.4852936069311654, 0.1603804011862196, 0.31492270273634443, 0.13830011684074914, 0.3500676449369082, 0.08090542539370028, 0.049244865945768934, 0.18857907944514343, 0.18353685406398487, 0.2516920588775298, -1.2240293943547476, -0.032807242055090446, 1.5580673693498015, -0.8160637403831763, -0.0065776850041952915, 0.5117649749355907, -0.11150692959830383, -0.1209654774920172, 0.5013345626326101, 0.6740996929759794, 0.2806915740361226, -0.21126745564631666, 0.007506574952421923, 0.2809270591498425, 1.0465637002723087, 1.4997805065313072, 0.32061575459303926, -0.7762944534022185, -0.5886071923791092, 1.6413003406581272, 0.27598952854385583, -0.6856501858374416, 0.3777725388830617, 0.0704399325279984, -0.6634107888728313, 0.7529853309407706, 0.3063266366509655, -0.42654827475391954, -0.2688665362962439, -0.558781916713921, 0.6154270220979224, -1.2240293943547476, -1.0637978400400474, -0.5086040548849582, -0.34387104518874484, -0.43075044175994015, 0.44061846850832337, -0.6288414335444455, 0.06646965663595208, 0.2567391283453019, 3.683593820884451, 0.34305387630441375, -0.4699101941972165, -0.12053591639208198, 0.868916511927713, -0.6353288765403958, 0.27555574840073865, 1.4341337572788089, 0.017449453376970778, -0.4204769153588679, 0.39735843114475217, -0.307525316421259, -0.9280170863590468, -0.260730580308629, 0.32766686957071445, 0.7334535049361152, -1.1179856484865036, -0.5932459131584812, -0.6261130408251051, -0.5198512426951678, -1.1653298807910963, 0.4782623343575649, -0.031496604104661964, 0.4296059845075341, -0.04963778659935165, 0.6086493636225737, 0.7774884398968424, -0.31593394760690113, 0.14181442354777418, 0.8584523472793082, 0.7816002881266628, 0.7128009760544991, 0.0727500149292086, 0.19835804022915646, -0.46055962255670513, 0.41173052360267787, 0.07852291608458327, 1.1988678775465462, -0.4207235731239637, -0.4260446460070699, 0.4276305347347376, 0.7498179233395497, 0.028181449136800034, -0.31695745622989124, -0.05431529913684173, 0.30788768262709265, -0.5096966308073916, 1.2817912960942435, 0.4827557716037712, 0.3323748529756043, -0.6330075433573705, 0.6454589527484373, -0.25184793180881415, -0.09295470291540389, 0.01982446216488145, -0.5054743842810576, -0.6381521196008342, -0.13615520489189537, -0.3363723209819835, -0.1176922812896147, 0.7951248216882382, -0.1672575224229397, 2.71097529671737, -0.304151566356427, -0.2380055636611085, 0.34164424710013946, -0.22214688352611417, 0.2743687909197855, 0.14567656692576078, 0.49452596450728864, 0.09441925508647377, -0.4809400231532915, 0.3513467963243552, 0.6084604442446824, 0.0018317274857410956, -0.9607867463151983, -0.010786024314126006, 0.9478965314510234, -0.13153504008946496, 0.9673110055509658, -0.8808707047170375, -0.48847203092290914, 0.7922725922385596, 0.5270369736774552, 0.14233461594562524, -0.28364795407293375, 0.03888586485510949, 1.0997447395402398, 0.5224136836578526, 0.43783999418383784, -1.2240293943547476, 1.0251156473602154, -0.5370618136472268, 0.6053399149010058, 0.09205502829779444, -0.25135594449591414, 0.0057271544265788, -0.22423585681259142, 4.672791622135339, -0.17383758904275115, 0.23149034257260603, 0.2582848607573055, -0.46829992605066234, -0.7486151862368525, 4.452276298660222, 0.15271814999106692, -1.2240293943547476, 0.13087491336789464, 0.7082961317656193, -0.00011559533253325105, -0.5379623449745968, -0.0878788814496729, -0.7214031390383161, -0.06924578977251217, -1.0094171177975046, -0.7623181696988023, 0.9997484158567969, -0.39492349904257495, 0.24554866322672103, 0.09760713286015223, -0.3824596641883069, 1.231558274182241, 0.9581234921162725, 0.275978121501188, -0.032574178984682095, -1.2240293943547476, 0.12878023656008084, -0.7348088752822385, -0.3575004297863557, 0.3318291900578189, -0.05780530728037647, -0.5507860485859307, -0.8012578677821341, 0.0034445739364548067, -0.17197308447946544, 0.21220540872433336, -0.18902208170387125, -0.5509262145759791, -0.25733073468043677, 0.21856756957700235, -0.5200294582042517, 0.13572603171914738, -0.30662416005045273, 0.05869630397042025, 1.1187418408872092, -0.37952953870067646, 0.6099103887504412, -0.24346188031721594, 0.3842014231223013, 0.3020358697381904, -0.25825072048468856, 0.10429165986384874, 0.5455085697573812, -0.3796678295604257, -0.7578245371265196, 0.29617624380636604, -0.31257051075873205, -0.7020109321107021, 0.05172292876983929, -0.8354612992451915, 0.6540770516148628, -0.09503617568067435, 0.7262898821403406, 0.34241445687154537, -0.593820601530724, -0.2749193006491418, 0.05961746173111104, -0.2279065025085167, 1.1267558352747848, -0.37677887880900285, 1.2456081567499968, 0.41695838688370357, -0.6599627367697986, 0.3519218362835307, -0.1330453794170213, 0.7033181295972906, -0.14215421550947901, -0.72593239908633, 1.0262833847555728, 0.6537907817221429, -0.9499343320313094, 0.3852639969599082, 0.5109992967290772, -0.018415460729000983, 0.6048355048498572, -0.1709669208117712, 0.46781707727302896, 0.01423219856189733, -0.17532183280694186, -0.5227623824884898, -0.23973740275554734, 0.2560273601349658, -1.2240293943547476, -0.16078090049143792, -0.24462914892999993, 0.8028948928757405, -0.40853460111974776, -0.32656546763473504, 0.5105731733680299, -0.4474230847067123, -0.466406669489423, -0.39185055113030265, -0.7364524660568573, -0.5344178799218874, 5.0, -0.21331775437032177, 0.20486755507136506, 0.06877512934184085, -0.5960811492398018, 0.04876756715356657, 0.21798862309636569, 0.27427456562212915, -0.10569074418513064, 0.25755355993965845, 0.4389730416686186, -0.3799968367979368, -0.09432792333965476, 0.46853212696139496, -0.31992125593252274, -1.0315918032340992, -0.09481444152250519, -0.2987177512639345, 0.5945341640159779, 1.1525446585743584, 0.24855059057881684, 0.4086703109503701, 0.4617561873554932, -0.6555873936673767, 0.260389850781777, 0.016324922108977895, 0.6684452375513225, -0.4972584227339104, 0.1254328164499064, 0.5595464202390381, 0.32477182464581034, -0.01822240043835656, -0.08824265672819478, 0.10892838831727583, -0.2788815291069739, -0.2948392004958141, 0.20089681039674537, 0.46004919373754655, 0.1169367573139437, -0.11579714959807119, 0.4117561503834698, 0.4823279293732774, 0.1746374856523105, 0.09213706524849406, 0.2116900604130955, 0.032723014727418516, -0.14234235358307634, -0.6145759109920013, 0.1637186019057463, -0.10110323790212529, -0.5361250298006915, 0.4662818143385461], [1.0092921747934365, -1.767961681641035, -0.06979679274672536, 1.0092921747934365, -0.508057215075174, -0.4726607892154803, -1.588471395806511, -1.1912612569337557, -0.8350842131902235, -0.7534185753526135, -1.6198070202068462, 0.29748499476744755, 0.8210882041313128, -1.767961681641035, -0.017593912812649402, 0.5717331175502164, 0.31823533916930746, 1.0092921747934365, -1.6498221014198968, -1.7319993801374853, 0.8019004718479954, -0.32051962260887634, -1.1058690407464524, -0.20264336788842652, 0.1913838624523648, -1.767961681641035, -1.767961681641035, -0.13838004610982635, -0.6253826296996845, 1.0092921747934365, 0.21326544961156726, -1.40324654860639, -0.2963091019667439, 1.0092921747934365, -0.37842183970497517, 0.7049740410422355, -0.2049108709027519, 0.5906545155281607, -1.3268743389900917, -1.143640506842552, 1.0092921747934365, -0.7311845427455195, -0.29061857933112367, 1.0092921747934365, 0.6183413497742796, -0.5313934703065403, -1.2361271624068, 0.18505611736208427, -1.4129785654983535, -1.767961681641035, 1.0092921747934365, 0.02579837335646264, 0.8130181661920347, -1.767961681641035, -0.32286008278017253, 0.17546252243661972, 0.20340267261065942, -0.8694738845269596, -0.024114899443230822, 0.5679160207948004, -1.7343695702654949, -0.7445934715211172, 1.0092921747934365, -1.2648990648527356, -1.4681093937882763, 0.03149811734278364, 0.40277722477522687, 0.741201744545481, 0.8814175349736256, 1.0092921747934365, -0.5177286490491538, 0.07889830086184577, 0.9158514145504594, -1.767961681641035, -1.767961681641035, 1.0092921747934365, -1.2771104724128695, 0.10053226763326263, 1.0092921747934365, 0.21802163244880698, 0.188787374191173, 0.6609719252543518, -0.09577076110120936, -1.2530852602372835, 0.8510703410519438, 0.11955130344209178, 1.0092921747934365, 0.8686272503431967, -0.32066065503127344, 1.0092921747934365, 0.7423137309528425, -1.767961681641035, -0.08070849838920303, -1.4880576501897746, -1.270675800336954, 1.0092921747934365, 1.0092921747934365, -0.6026667815187641, -1.0319592368839943, 0.7905300040084291, -1.1574909077826834, -0.9684166043446516, 0.22352813489482154, -0.629026961737664, 1.0092921747934365, -0.451665536587804, -1.6078702698991285, 0.5423015495093277, 0.5695785760819043, 0.8629355072346875, -1.0644506660585054, 0.6546227540845148, -0.9538329704161567, 1.0092921747934365, -0.29068570533985794, 1.0092921747934365, 1.0092921747934365, -1.3471524281890657, -1.3245987333918803, -0.1321763824296383, 1.0092921747934365, 0.9068304926247888, 1.0092921747934365, 0.5077898308839788, 0.7281535333117836, -1.767961681641035, 0.6524039343775333, -0.32955410534439283, -1.0554296763287814, 0.3978480060043483, 1.0092921747934365, -1.460303486522771, -1.0901861675718512, 0.5839923608670811, -1.767961681641035, -0.47731051969543276, -0.006945558097378547, -0.2698431474310517, 1.0092921747934365, 0.3615821966254386, 1.0092921747934365, 0.012536308151498522, 0.004874586196676837, 0.8430464098661417, 1.0092921747934365, 0.44369642605274456, 1.0092921747934365, -0.24455983112201515, 1.0092921747934365, -1.3717051219656313, 0.8655177566455383, 0.37427430099257797, 1.0092921747934365, -1.3179908897742336, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, -1.767961681641035, 1.0092921747934365, 0.5892132726577416, -0.8146871956888992, -1.060737173890312, -0.1521884763434834, 1.0092921747934365, -0.5615742730914105, -0.5070177790004907, -0.7105084437775672, -0.07806427607735934, 0.4886817005544594, -0.9981745132744798, -0.5745818018955704, 1.0092921747934365, 1.0092921747934365, 0.26588247667833614, -0.19575732425678868, 0.6723385960671613, -0.7842644002523252, -0.22580618036186695, -0.8554232582294553, -0.8252079431835232, 0.8600448850079415, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.8326775434417915, -1.526097484712724, -1.319490579735088, 0.414390295502933, 0.2108900025508632, -1.5945930335381466, -0.28498189311058875, -1.005458837891288, -1.3470886584807658, -1.767961681641035, 0.3935591286743973, 0.16871384980872892, -0.7190744005329062, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.0609713690763474, 0.4763991326446543, -1.767961681641035, 1.0092921747934365, -0.5413472403415112, -1.0353832057619756, -0.31204276037422213, 1.0092921747934365, -0.313038395033106, -1.2345525150695216, -1.116134573799777, 0.02776184301404914, -0.40248549677647405, 0.36398300240055165, 0.13292199073392966, 0.6924460224742256, 0.8670799619397827, 0.40482233050808, 1.0092921747934365, -0.10052151961451629, -0.2715947972388401, 1.0092921747934365, -0.4893119720171247, 1.0092921747934365, 0.8521264569227402, -1.767961681641035, 0.003244712461304327, -0.4268110130860995, 1.0092921747934365, -0.819782534380387, -0.35996259412657805, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 0.7079123973196388, -0.6040375081779847, -0.42331666360501535, -1.5704889652533072, -0.9634726720950917, -0.5530541518733507, -0.2714902433949313, 0.5744195139806835, -0.0027947298116529785, 0.30943586526841715, 1.0092921747934365, -0.5586220847879699, 0.9360440028433558, 1.0092921747934365, -1.0747097577271518, 0.2628664169605131, 0.5508524537657404, -0.3662564371922439, 1.0092921747934365, 1.0092921747934365, 0.19818745636013974, -1.767961681641035, -0.6351842474481846, -1.3194726116620423, -1.767961681641035, -1.3903689662625782, 1.0092921747934365, 0.9003340510600255, -0.27101208923976583, -1.0074453609256127, 0.23177514140258548, 1.0092921747934365, -1.6968596943101986, -1.4475386962148524, -1.4983317435043144, 0.10908818938931553, -1.767961681641035, -0.5097623513051939, 0.5404689416667566, -0.573569894264877, 0.17793452246342642, -0.5598288612561513, 0.14386041117180093, -1.767961681641035, 0.15689953666290446, 1.0092921747934365, 0.4035515470174206, -0.3611859147827769, 0.44485967232132895, -1.7271925052979378, 1.0092921747934365, -1.2944898368012148, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 0.7998302786169247, -0.6111546280093962, -1.1256329718401237, -0.30421112147203444, -0.3888753255827636, 1.0092921747934365, -1.767961681641035, 0.29011794921057943, -1.2342035954321875, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, -0.47747962299421354, 0.14170586970348886, -1.4999923324739908, 1.0092921747934365, 0.7448767240137122, 0.8957442593595919, -0.6167864323383866, -0.15404373073849428, -0.48238063528060715, -1.3183900522120464, 0.5150559840155936, 0.9850731108411039, -0.6997212263694744, -0.17276537798741182, -1.2312244889211974, -0.6493639726554217, -1.767961681641035, -0.6047103955625425, 0.26690970802415814, 1.0092921747934365, 1.0092921747934365, -0.2632094704706483, 0.0018224547246693302, 1.0092921747934365, 0.8576375700441023, -0.8724570592809023, -0.2025477641790159, -1.767961681641035, 1.0092921747934365, -0.47970698601139516, 1.0092921747934365, -1.0737034778325405, 1.0092921747934365, 1.0092921747934365, -1.0833473155584825, 0.9845694623634282, 1.0092921747934365, -0.5611947060238274, -1.767961681641035, -0.12330327333128771, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, -0.8020746932755466, 0.30740852419645937, 0.03353834118409222, 0.39942729791899845, -1.6934163843271723, -0.2756089325613193, -0.43821904436893605, 1.0092921747934365, 1.0092921747934365, -1.3328026165243372, -1.4896290937857264, 0.24833261900820316, 0.8940171546176218, 1.0092921747934365, -0.7004945993549818, 1.0092921747934365, -1.4726178884336838, -1.7084440796873304, -1.767961681641035, -1.0278302415021234, 1.0092921747934365, 0.07665968237248931, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, -1.31459763613055, 0.3218187831710762, 1.0092921747934365, -1.4474526528763803, 0.9389758499320331, 1.0092921747934365, 1.0092921747934365, -1.6675519618897217, -1.767961681641035, 1.0092921747934365, -0.026465530221919737, 0.060124173278827506, -0.9285190744809163, 0.3553644297030053, 0.5719956548288324, 0.9805760750800161, -1.767961681641035, 0.6517299621281935, -0.5678137373095973, 1.0092921747934365, -1.767961681641035, -1.480212721693938, -0.8036891076877005, -1.767961681641035, 0.8183529887854005, 1.0092921747934365, 1.0092921747934365, -1.5135018994096572, -0.5485941371231449, 1.0092921747934365, 0.08644516275727014, -0.5268591423183735, -1.767961681641035, -1.282729902502875, -1.767961681641035, 0.4303654719337634, -1.4040189384331865, -1.054409564408127, 1.0092921747934365, -0.6935411584984128, 1.0092921747934365, 0.5957726363801896, 1.0092921747934365, -1.2752952563089257, 1.0092921747934365, -0.33150306493544146, -0.2288748560218864, -0.3271419084890092, -0.6509257033213202, 0.1976210213328749, 0.09666119885465461, -1.084583112159734, 0.4887754057504916, -1.5183208179434493, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.3009859732477567, 1.0092921747934365, -1.767961681641035, 0.5394472702529687, -0.9659166690495681, -1.3699779155175877, 1.0092921747934365, -1.4126118812001214, -0.8398357175480677, -0.9543186508207823, -1.767961681641035, 0.32280601012785565, 0.8535240339854557, 0.1574624458796038, -0.7847929328160694, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.6499836010362422, 0.7939229186318661, 1.0092921747934365, 1.0092921747934365, -0.7238672653607829, -1.3093882171262343, -0.017524752682435456, -1.767961681641035, -0.5848200777211077, 0.27884972987725104, 1.0092921747934365, -0.017771423813534637, -0.1297075013890934, 0.33592907703190233, 1.0092921747934365, -0.06056269489027766, -0.6157437416693348, 0.7085570782197116, 1.0092921747934365, -0.8545141415373881, -1.767961681641035, -0.8631568524764546, -1.0472249795477366, 1.0092921747934365, 1.0092921747934365, -1.0484451134136203, -0.49426410855664554, -1.1841736318637661, 0.9143637937103672, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 0.6516279848381525, -1.7291341293384104, 1.0092921747934365, 1.0092921747934365, -1.358374439062845, -0.45192658217733983, -1.6563492412679488, 0.001036198969805704, 1.0092921747934365, -1.767961681641035, -1.4664287009180037, -0.10638114554891734, 0.1186226591838465, 1.0092921747934365, 0.6436970808078931, -1.767961681641035, -0.14622077075460796, -1.3706412764332232, -0.31625393426375903, -0.923620028511949, -1.5291754834295155, 1.0092921747934365, -0.6924097801329744, -1.6288850246664621, 1.0092921747934365, -1.767961681641035, -1.767961681641035, -1.767961681641035, -1.4171159346803042, -0.8337077909908676, -0.41031347426000614, 0.44208513062686366, 1.0092921747934365, -0.36054896354431354, -1.6270715629922918, 1.0092921747934365, 0.22479674865590005, -1.001002620167839, 1.0092921747934365, 0.6905106236930229, 0.2755788625424268, 1.0092921747934365, -0.28793869208938255, 1.0092921747934365, 0.5268085954766165, 0.003304786848918759, 0.4149673079618776, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, -1.661733908313004, 0.3429491014648174, -1.767961681641035, 1.0092921747934365, -1.6386103374330576, -1.1404800923039267, -1.5494495721895856, 0.9316242636983894, -0.9464191400653176, -0.5987473006490146, 0.47243422306192395, -0.19447108144291056, -1.1631881430191786, 1.0092921747934365, 1.0092921747934365, -0.6066909518405291, 0.8017051961862148, 1.0092921747934365, -0.15627407713384756, -0.5514899124576267, -1.312391122858504, -0.056724578879603436, 1.0092921747934365, 1.0092921747934365, -0.1896636387444479, 1.0092921747934365, 1.0092921747934365, -0.028261795094098312, -0.8363282140814302, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.4893915931522885, -1.4639567008911998, 0.29461918882271676, -0.7506686465280197, -0.29819039311666445, -0.6387751498953713, 1.0092921747934365, 0.657364478619153, 1.0092921747934365, -0.2764042740587825, 0.4796516928861893, 0.4258780643476633, 0.974565381723932, 1.0092921747934365, 1.0092921747934365, 0.005652163033244663, -0.11595358561101675, 0.10896804061408111, 0.39762059122323024, 0.745301177361888, -1.767961681641035, 0.24877320972009273, 1.0092921747934365, 0.432543473603106, -1.5359662115189463, -0.21616241043997267, 0.5187420833478984, 0.6640410077386695, 0.5678232648554546, 0.4003052247484202, -0.799005610791229, -0.5237557509851486, 0.3351799778960164, 0.43698816463818885, -1.3604941292498525, 0.657088651746888, -0.22117706231288026, -1.0612419750368232, -1.767961681641035, 0.32831590277633443, -0.7437899257336987, 0.26157746198466025, -1.254145003624714, 1.0092921747934365, 1.0092921747934365, -0.917075988504624, -0.35503486704478526, 0.4551280531447185, 0.6564838396277621, 1.0092921747934365, 0.9734680409912041, -1.091165122434622, -0.8258830681016985, -1.5145231300971251, -1.175367038537708, 0.31059667059122376, -1.726617480345189, -0.06661217216252091, -0.30655931130494557, -0.9733536883852352, -0.6173075742607607, 0.1659203229804794, -0.8846183935506798, 1.0092921747934365, -1.767961681641035, 0.16453237409275168, 0.44671980860788435, -0.6583121408362651, 0.44537538991976466, -1.0187042911041924, 0.486484713751327, -1.3501641823497605, -0.7995875051417183, -0.5320134705326935, -0.962043769561635, 1.0092921747934365, 0.08191558105255216, 1.0092921747934365, 0.4249254174559936, -1.1355468052900943, -0.35200456847662687, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.050267328055292056, -1.0406600558932546, -0.08169002980585277, 0.17186077134155628, -0.8172678178025685, 1.0092921747934365, -1.1113156044129482, -1.6757146540622714, 0.652881274884108, -0.903402556132984, -1.2090606335050529, 1.0092921747934365, -0.5892886357815192, 0.9053501946220134, 0.3604881104870737, 0.9394274248999006, -0.1529718843282766, 1.0092921747934365, -0.013743863289310819, 1.0092921747934365, 0.20728526807763364, -1.5792491975607035, -0.08223246219968762, 0.1993159869555076, 1.0092921747934365, 0.05472751339256451, -0.3111165570617491, -0.7678111374703829, -0.6037049971205639, 1.0092921747934365, 0.9267873940425639, 1.0092921747934365, 0.3065642281754554, 1.0092921747934365, 1.0092921747934365, -0.6879887527110714, 1.0092921747934365, -0.6565236734297437, -0.15879557411658887, -0.06285108155176568, 0.23708284237625957, 1.0092921747934365, 0.8068802724395964, 1.0092921747934365, 1.0092921747934365, -0.41945685029858215, -0.17371694001429938, 1.0092921747934365, -0.28330374289215937, 1.0092921747934365, 1.0092921747934365, -1.1604908979408348, 1.0092921747934365, -0.5511142780249016, -1.058356370309723, 1.0092921747934365, -0.5144968368466857, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 0.07567638805056795, -0.3090089359955038, -0.840562170131514, -1.6301105065767272, -1.2837300461310333, -0.9512682144500043, 0.20187558981391862, 0.7067434555109248, -0.6675159980867592, 1.0092921747934365, -1.2759771277300005, 0.08747035998161802, -1.3233316452219064, 1.0092921747934365, -1.4524377760858456, -1.767961681641035, -0.6020515275760596, 1.0092921747934365, -0.3575075451120815, -1.0839674513927315, -0.5429600274564779, -1.2323589184688535, 1.0092921747934365, -1.1557633284123672, 0.9643863666374239, 1.0092921747934365, 1.0092921747934365, -0.16561774633384987, -0.7394735199597579, -1.5163801304464066, 1.0092921747934365, 0.7677397069814575, 1.0092921747934365, 1.0092921747934365, -0.5001871990811197, 0.9922692901939141, -0.6731693641034018, -0.8457443658100631, -1.767961681641035, -0.20671093280169844, 0.8543916545993946, 1.0092921747934365, 0.11715388786944295, -1.767961681641035, -0.562092702851821, 0.4794166840515576, -1.6393397225416304, 0.3321666303401681, -0.994689317340043, 1.0092921747934365, -0.9820661018869151, 1.0092921747934365, -0.8532322381826551, -0.6229016795383796, 1.0092921747934365, -1.186744422390293, -0.9389080787078863, 1.0092921747934365, -0.49144535862207717, -1.6081218737748069, 0.7337660812907928, -0.4184439934111968, -1.1792702464356424, -1.6839444044395095, 0.5209983308900544, 0.7141579639022534, -0.03738591478269877, -0.14755013694380154, -0.5719984676199374, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.9809419457296576, 1.0092921747934365, 0.4241525869028746, -1.767961681641035, -0.10990139617680988, -0.8636305315643736, 1.0092921747934365, -0.7888282908059561, 1.0092921747934365, 1.0092921747934365, -1.5314873133410272, 0.3111885999409988, 1.0092921747934365, -1.767961681641035, -1.1849260533980628, -1.767961681641035, 1.0092921747934365, -1.725840526458329, 0.6769061480394477, -1.767961681641035, -1.767961681641035, -1.767961681641035, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, -0.3495103287216729, -0.9199125709041356, 0.22867541148802176, 0.08000554098576394, 1.0092921747934365, -0.05686995076115118, 1.0092921747934365, -1.1868589434294456, -0.10856524958269338, -0.919601824946516, -0.1417298373579535, -0.8547273174681652, -1.767961681641035, 0.4357457232401157, -0.1698601100860323, -1.3339475217975998, 1.0092921747934365, -0.571372500637452, -0.8806846060265415, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.817893988197203, -0.08594215734112422, -1.130347862011384, -0.29531360291596126, -0.10054579346413761, 1.0092921747934365, -0.3842125767253592, -0.8636316164291613, -1.6219896834045766, 1.0092921747934365, 0.11693664369571208, 0.5546795855204423, 0.7701915014015911, -0.5933444027902225, 1.0092921747934365, 0.02686221888887403, -0.4757371945371147, -1.767961681641035, 0.17368795486019456, 0.26147616273511437, -1.767961681641035, -1.767961681641035, 1.0092921747934365, -0.6593516447150017, 1.0092921747934365, 0.637587664756131, -0.3555813676815739, -1.767961681641035, -1.1723031769651795, -0.10643959263935582, 1.0092921747934365, -0.131641137265019, -1.140705269551416, -0.8474188546098312, 0.4951717685385923, -0.1490841357535665, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, -0.35120814211437607, -0.23517208929001096, 1.0092921747934365, 0.059717213375350124, 1.0092921747934365, 0.5851360795694819, -1.767961681641035, 0.43210383214790843, -1.767961681641035, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.13891054499099684, 1.0092921747934365, -0.3785608380058926, -0.7582650731834266, 0.2571101243971376, -0.8808107893621561, 1.0092921747934365, -0.8130112830040985, 0.7486949056339157, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, -0.2685402248210604, -0.7459235157508003, 1.0092921747934365, -0.18132563920262093, 0.04275480998774029, -0.9421428064844726, 1.0092921747934365, 0.10346967465397407, 0.9906588084166184, -1.0411497367367861, 1.0092921747934365, 0.07836197083244432, -1.3252666371788138, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, -1.08853493556097, -1.1561536085197313, -0.07612928412044917, -0.21782076187602153, 1.0092921747934365, -0.7176278689466496, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, -1.5758539097955435, 1.0092921747934365, 0.6762327182225016, 1.0092921747934365, 1.0092921747934365, -0.16380208950358338, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, -0.3214500297724044, -0.47914326314610506, 1.0092921747934365, -0.13873520371968695, 1.0092921747934365, 1.0092921747934365, -0.4767598152075947, -0.49788538721788705, -1.682263279318423, 0.4516689617692336, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.661674045813041, -1.767961681641035, -0.8219197858161441, 0.9354172222122795, -0.24383717556533144, -1.767961681641035, -1.767961681641035, 1.0092921747934365, -0.9242703371481092, -0.5844980084872655, 0.7784551877054683, 1.0092921747934365, 0.21684319807320077, 0.8479752218127221, -0.08457509210055913, 1.0092921747934365, -1.3747351154155683, -1.767961681641035, 0.13680689153857492, 1.0092921747934365, -0.7028994055690009, 1.0092921747934365, -0.5009678949039493, -1.6312009991004832, -1.1103859430939687, -1.767961681641035, -1.2310541651495333, -0.8303231484614337, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.10059284947430557, -0.15118063695573825, 0.9273935622426743, 0.36479746463988916, 0.11177282291449991, -1.5378821844400448, 1.0092921747934365, -1.2211436879999982, -0.9081021903931692, 0.1684622967860852, 1.0092921747934365, -0.8437691660519613, 0.3165754960441728, -0.5987304852448058, -0.5521436791002989, -1.2563579243794119, 0.2354177105352878, -1.767961681641035, 1.0092921747934365, -0.24947182766438672, 1.0092921747934365, -1.2375509796365667, 0.19653466485612492, 1.0092921747934365, 1.0092921747934365, 0.45710955867939723, -1.1061936865341626, 0.20879743398354955, -1.5509015789528195, -0.12366263479219775, -0.07130800939594927, -1.767961681641035, -0.0791799239033764, -0.29294886889503824, 0.822282911478734, -0.6190520368393336, -1.3655474633328433, 0.15607246287040755, -0.6795584040541857, 1.0092921747934365, 0.8184197079698422, 1.0092921747934365, 1.0092921747934365, 0.5351550027205535, 1.0092921747934365, -1.6741404898288443, 0.12555684369043996, -1.6334208104416845, 0.8440629281721882, -0.24832444754332475, 1.0092921747934365, 0.017722097444655444, -1.0881953728824294, 0.4512948190255832, 1.0092921747934365, -1.1955005016996765, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.0064447923687330705, -1.767961681641035, -0.6138874024095362, -0.29272009803294113, -0.058676657456913854, -1.767961681641035, -1.767961681641035, -1.3110297870601013, -1.3269424481575423, 1.0092921747934365, 0.7304466662567204, -1.030242709573704, 1.0092921747934365, 1.0092921747934365, 0.5883670781233592, 0.6853276821699308, 0.32338505670827433, -1.3784005345128585, -1.1279694993765672, 0.40748797889948013, -0.41659999448834967, 0.8290166672157999, 0.23370633633273882, 1.0092921747934365, 0.9664693070297499, -0.3249202410119573, -0.3585457607138814, -0.3901216996156949, -1.0864953219560975, -0.2352108732061757, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 0.0712094572873379, -1.6745860471873424, -0.42860741356637927, 0.4678901312906681, 1.0092921747934365, -1.472899512552158, 1.0092921747934365, 0.12409322548377227, -0.05346347532786828, 1.0092921747934365, 1.0092921747934365, -1.2110691589533542, -1.283819716986139, 0.1156183973705977, -0.7365924581039518, -0.1508939614355965, 0.17376131884145793, -0.37678613482136614, -0.8179432139369408, -1.5364329406918165, -0.2785118951250222, 1.0092921747934365, -1.516850504086923, -0.4928036093362396, -0.6302319753005682, 0.22908996544500726, 1.0092921747934365, -0.16710970663309266, -1.3794043734616988, -0.9138102742775412, 0.9622996292183412, -0.8775620939514313, 1.0092921747934365, 0.2593164681590609, 0.08919298965633629, 1.0092921747934365, 0.5503070379937395, -1.2331321219442408, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.41184059203571227, -0.23199221498925535, 1.0092921747934365, 0.18297724521271216, 1.0092921747934365, 1.0092921747934365, -0.49653310326005673, 1.0092921747934365, -1.767961681641035, -0.437727465012026, -0.7859498733080713, 1.0092921747934365, 0.09277073811797533, 1.0092921747934365, 1.0092921747934365, -0.04466034000832237, 1.0092921747934365, 1.0092921747934365, 0.001212082673503878, 1.0092921747934365, 1.0092921747934365, -1.4784633433217962, -1.2216553034534576, -0.4541016004685164, -0.26644304557839915, -0.2812585015512106, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, -1.767961681641035, 0.8657607663579763, -1.619020052509466, -1.767961681641035, -0.34476567257279944, -0.9406033833507693, -0.9711907392148245, -1.767961681641035, 1.0092921747934365, 0.6649775172666254, 1.0092921747934365, -1.4653330552865065, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.9190222359337035, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 0.42906390540475664, 1.0092921747934365, -0.6252954336923728, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.9334179848417881, -0.6555183427918186, 1.0092921747934365, -0.23553429852099694, 1.0092921747934365, 1.0092921747934365, 0.7642638002017639, 0.2760269116997344, -0.6894949518606496, -1.767961681641035, 0.16113742534783498, 1.0092921747934365, 1.0092921747934365, -1.3998650589652484, 1.0092921747934365, 1.0092921747934365, 0.27350785566276536, -0.1442604200832888, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.8051876449797172, 0.23317556623537142, -0.7037579404403402, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.9641861063010857, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, -1.4688363888041134, -1.767961681641035, -1.767961681641035, -0.11855088752079929, 1.0092921747934365, 1.0092921747934365, -0.898360647032289, -1.3670096237524494, -0.07017337643614242, -1.3936617343053037, -1.767961681641035, 0.5464462754306199, 1.0092921747934365, -0.7266342808057825, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, -0.9481975046685052, -0.3439212409436998, 1.0092921747934365, 0.5610650996606662, -1.64666692474407, 0.5284882373841262, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.2369602176762931, -1.3739276708953208, -1.767961681641035, 0.9401401810653996, 0.5336733486367935, -0.3704206906797141, -1.4906285254713671, 1.0092921747934365, -0.4066700914787131, -1.4474054951601416, 1.0092921747934365, 1.0092921747934365, 0.4046052219424503, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, -0.1652464513602699, -0.21268569001168816, 0.5003563373588659, -1.767961681641035, -0.581511511334912, 0.8739851263133004, 0.45511354307818064, 1.0092921747934365, -0.8134624511476679, -0.22019241190996874, -0.38238512199052954, -1.2334224927850652, 0.23186315105848798, 1.0092921747934365, 0.15298236113082606, -1.2281676450677657, -1.4519127693326628, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.021285707685089444, 1.0014486023785845, 1.0092921747934365, 1.0092921747934365, -0.5623057431745024, 0.800305449393924, 1.0092921747934365, 1.0092921747934365, -1.3859323778113783, 1.0092921747934365, 0.5325472589871924, -0.25760912722050033, 1.0092921747934365, 0.2741216179163895, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, -1.767961681641035, -1.2908831699125825, 1.0092921747934365, 0.44595131751391603, 1.0092921747934365, 1.0092921747934365, 0.6486305034298211, -1.767961681641035, 1.0092921747934365, -1.5720224555327031, -0.8951851799947319, -1.767961681641035, -0.5289785612891875, 1.0092921747934365, -0.35729504722179944, -1.767961681641035, -0.156725923317912, 1.0092921747934365, 0.034563267192248746, 1.0092921747934365, -1.6843158011191628, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.4009406842977977, 1.0092921747934365, -1.767961681641035, 0.8932390353486656, -0.5315395202285831, 0.7896781139339115, 1.0092921747934365, 0.846293952608031, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, -0.22632311843319156, 0.6530071191994776, 1.0092921747934365, 1.0092921747934365, 0.6246075287878599, -1.3412701218001977, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.1942507532618777, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.19808422361824454, 1.0092921747934365, 0.6594344006340269, 1.0092921747934365, 1.0092921747934365, 0.4491512618132491, -0.1339367111557281, -1.767961681641035, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.9537861527971032, 0.41264732461344594, 1.0092921747934365, 1.0092921747934365, -1.5871709310933042, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.6236170472367174, -0.019318034176453495, -1.0423517669215243, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, -1.767961681641035, -1.243860485437605, -1.767961681641035, -0.3823494570606377, 1.0092921747934365, 0.45439739671022294, -1.3365466544167082, 1.0092921747934365, -1.3450197874286554, 1.0092921747934365, 0.3189471460781145, -0.9583215306710925, 1.0092921747934365, 0.26157095279593423, 0.5282666537512446, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.7743035107921923, 0.4720832693031128, 1.0092921747934365, -0.9270859680964046, 1.0092921747934365, -0.16996615561902703, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.3381172493086322, -1.3220825590270031, 1.0092921747934365, 1.0092921747934365, -0.012866750108479853, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.24872991575772185, 1.0092921747934365, -0.434690657255136, -1.7536407809872345, 1.0092921747934365, -1.767961681641035, 0.05226812491891726, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.264182613366554, 0.3464587746610246, -0.17115218404814694, 0.6520879675081245, 0.9768094245372267, 1.0092921747934365, 0.11255053535916343, -1.1938461507025278, -1.0546615242550634, 0.2503508743375614, -0.6205822386223417, 0.9311987254854258, 0.9345241072758305, 0.613199361896922, 0.542014873989186, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, -1.3818697625937029, 1.0092921747934365, 1.0092921747934365, 1.0085986749779186, 1.0092921747934365, 1.0092921747934365, -0.4894131356585804, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.3353441993032527, 0.2056445456943789, 1.0092921747934365, 1.0092921747934365, -1.029950338513427, -1.3553276980127478, 1.0092921747934365, 0.864556295227466, 1.0092921747934365, -0.31665669031618143, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.18812370815732163, -0.45209107480077304, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.7219751255629913, 1.0092921747934365, -0.11935111090980693, -1.767961681641035, -0.027886025053271993, -0.5040819992769552, 1.0092921747934365, -0.06927334548667471, -1.767961681641035, -1.2604820378697383, 1.0092921747934365, 1.0092921747934365, -0.8509502929058453, 1.0092921747934365, 0.9030798438376176, -0.0654684534601201, -0.5253233806033314, -0.11584021724070526, -1.767961681641035, 0.2627569812250597, 1.0092921747934365, -0.5744689759576528, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.8348312712615127, 1.0092921747934365, -1.5605792339483138, 0.9133724985106341, 0.6179236768310268, -1.4370247291251514, 1.0092921747934365, -0.5670593494578686, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.8112452259127855, 0.3278591747007255, 1.0092921747934365, -1.6924847397397487, -0.8674075561266936, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, -0.8748026047558921, -1.1326844573518755, 0.9814382713700166, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.897975113208368, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.5727772999083485, 1.0092921747934365, -0.8518533072334791, 0.2822385762577343, -1.767961681641035, 0.03029378182037458, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.2874614871909036, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.2830791272584314, -1.767961681641035, -0.8181355740246029, 0.3688905238756713, -0.8279009844108118, 1.0092921747934365, 0.3700502443336902, 0.6047075827714373, 1.0092921747934365, 1.0092921747934365, -1.2878151044890036, -1.216337906500744, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.3846937142586907, -0.18837576863338826, 1.0092921747934365, -1.180668230322656, -1.2364903547964967, -0.8724152241825291, -0.4551403585027101, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 0.02154624582119119, -0.5304340430099477, -1.5303532058626046, 1.0092921747934365, 1.0092921747934365, 0.9173048621497398, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 0.4324863825936577, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.4912572701895177, -0.13522349640200007, -0.2754772570977187, 0.8802591705965913, 0.6361640509385115, 1.0092921747934365, -1.0410307406303874, 0.7157209828450886, 1.0092921747934365, -1.4403990315370747, -1.4513921359406552, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.8159839153053268, 1.0092921747934365, -0.2983095926352069, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.28445030936463056, -0.6525441859764222, -1.4038548526340513, 1.0092921747934365, 0.45217559362507537, 0.3997188553306847, 0.13114308369834268, 1.0092921747934365, -0.9166959468086948, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.1667492794887524, -0.5921652903741212, 0.7276417483482003, 0.5399821085932899, 0.1425554544403355, -1.070616834099471, -1.767961681641035, -0.15346034469893047, -0.79215184188703, 0.4876463327227244, 1.0092921747934365, 0.540550035309635, 0.09787760349783484, 1.0092921747934365, -1.0606157368381408, 1.0092921747934365, 1.0092921747934365, -0.6386029954143767, 0.08023634596933513, -0.15841058272506736, 1.0092921747934365, 1.0092921747934365, -0.8616002749182976, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 0.6215376326549514, -1.713858351675381, 0.08079600059167702, 0.35207064459954435, 0.6618135091133865, 0.3866987149733654, 0.2959514027819752, -1.1398258510329082, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.8654969736275059, -0.9925567443836812, 1.0092921747934365, 0.5427531244771953, -0.85977980400054, 1.0092921747934365, 1.0092921747934365, -0.09936329084557763, -1.2369430824332013, -0.004989818101401411, 1.0092921747934365, -1.6615778403426902, -1.507904624292737, 0.488747063657911, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.8904379144669025, -0.4195340113066024, 0.8774789333619908, 0.3295169837043805, -0.4516005803086451, 1.0092921747934365, 0.3634165673732868, 1.0092921747934365, 0.6354751617983412, 0.30155405136979974, 1.0092921747934365, 1.0092921747934365, 0.6706239672702492, -0.5490552046579045, 0.7674107217345968, 1.0092921747934365, -1.401652950037353, -1.767961681641035, 0.6896286286206473, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.8417936272736147, -0.18531550067546768, -1.767961681641035, 0.5286344229142647, 1.0092921747934365, 1.0092921747934365, 0.5051103504665357, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, -0.00715317409611606, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.28812220482556533, 1.0092921747934365, 1.0092921747934365, 0.8317095728349931, 1.0092921747934365, 1.0092921747934365, -0.8469086969434295, -0.006200120380148215, -1.1096797639212435, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.9848202345625637, 1.0092921747934365, -0.8351772403457662, 0.08854112152704803, -1.767961681641035, 1.0092921747934365, -0.3555636030206786, -0.4035938217651799, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 0.10636450073177503, 0.17509624496268553, 1.0092921747934365, 1.0092921747934365, -0.9613834259261889, -0.6713956779796099, -0.8823007833439726, -0.6531448620485464, -0.3051108812053108, 1.0092921747934365, -0.13099076082481098, -0.9391034221737146, -0.7269922183816656, -1.767961681641035, 1.0092921747934365, -0.2275971565182084, -1.2340175072190778, 0.27556814950265135, 0.7754134980570393, 1.0092921747934365, 1.0092921747934365, 0.6738631023100341, -0.12132366630998184, -0.9933017752766133, -0.3378835615760252, -0.46303776733265306, 0.5823615378750165, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 0.18719479268287387, 1.0092921747934365, -1.0233757866839515, 1.0092921747934365, 0.7747704444541481, -0.737203169175362, -0.21668423040284182, -0.5784513789850927, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, -1.4083888416019692, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 0.5182362651406474, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.16888430918848873, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.11079685142989533, 1.0092921747934365, 1.0092921747934365, 0.7291711364826177, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 0.30341337400776996, 1.0092921747934365, 1.0092921747934365, -0.3405272414554751, 1.0092921747934365, -1.4694299454510673, -0.001132988173139892, -0.5779621049658537, -1.69334933459799, -1.7476514448472196, 1.0092921747934365, 0.1099639464891619, 0.26281583513978524, 1.0092921747934365, 0.4412245616340391, -0.4081908006948291, -0.2307901848045173, 1.0092921747934365, 0.28139699239869953, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.08949159868914794, 0.26698456369450735, -1.1298990670095335, -0.21977840038537153, 0.578806164749626, 0.30792166524102715, 0.575031920153323, -0.6768721432318198, -0.5112060351213853, -1.767961681641035, 1.0092921747934365, 0.17019672436537217, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.6927044915098879, 0.7575832028392937, 0.053630579484129186, 1.0092921747934365, 0.541926186292794, 0.5350562800248755, -1.2641433209200252, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.48783862500633884, -1.767961681641035, 0.6684265736428242, 0.5943435982386316, 0.7935570479822246, 0.8783755741089998, -0.38892712787637485, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.2634794661946768, 1.0092921747934365, 0.9297981650445443, 0.031089394534029077, -0.8990485191117195, -1.3209521299182514, 1.0092921747934365, 0.8241328771579078, 0.3985754078444808, 0.038082161739151146, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.44193524869909867, 0.009989723670539545, -0.0028539905506822154, -1.4954408839633966, 1.0092921747934365, -0.8609429824650712, 0.38928760918104344, 1.0092921747934365, -0.013359821154475739, -0.47341422781051695, 0.31457853118626417, -1.2397750541573638, -0.005651043189486102, 1.0092921747934365, 1.0092921747934365, -1.1162232614961691, -1.767961681641035, -1.767961681641035, 0.32761969079884184, -0.7354219568021094, 1.0092921747934365, -1.010793592680606, -1.5063919159544301, 0.19237732738167335, -1.767961681641035, 1.0092921747934365, -1.3889287743549221, 1.0092921747934365, -1.767961681641035, -1.5802715639659957, -1.0060300192019962, -1.767961681641035, 0.4672222614057562, 1.0092921747934365, 1.0092921747934365, -0.8615734245148028, 1.0092921747934365, -0.7389659388472242, -0.49372154055470946, -1.767961681641035, -1.3244022372572137, -0.5473675618725831, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, -0.3969015621062368, 1.0092921747934365, 0.29961282144036044, -0.4751375355257303, -0.2639243963657227, -0.47376599521791884, -0.01408234110306377, -0.34968485634439206, 1.0092921747934365, 1.0092921747934365, 1.0037935376171325, -0.5721074965310983, 0.5060867287754385, -1.5959371471080448, -0.10992648367502196, -1.7382523013405649, -1.1002390671267925, -0.4729367516958466, 0.8261840852551944, -1.767961681641035, -0.9761711500428669, 0.8111847447008729, 1.0092921747934365, -1.767961681641035, 0.7257980206415556, 1.0092921747934365, 1.0092921747934365, -1.0940933081046436, -0.4983686944807939, 0.797010986249968, -1.767961681641035, 0.10795545494289266, -1.117456549347606, -1.107141587142389, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, -1.767961681641035, 0.7240522019819982, -1.2869259899914587, 1.0092921747934365, -1.2038317547386126, 0.3060466120636357, -0.9213323876949983, 1.0092921747934365, -0.0908951075292303, 1.0092921747934365, 0.9477602713339918, 1.0092921747934365, -0.8310261408438437, 1.0092921747934365, 0.5474047534705261, -1.767961681641035, 0.5622901832221422, -1.0224188003331256, 1.0092921747934365, 1.0092921747934365, -0.9233606780236482, -0.4779585907979697, -0.9237746217441919, 0.012857834952946913, -0.5619427202949256, 0.18507781465783765, 0.04651237478793559, 1.0092921747934365, -1.767961681641035, -1.7674274931005547, 1.0092921747934365, -1.5762660228067595, 1.0092921747934365, -1.767961681641035, -0.1741571239018908, -1.1029847921003368, -1.6558725279488293, 1.0092921747934365, -1.5025563086935743, 1.0092921747934365, 1.0092921747934365, 0.09303029201842532, 0.9059617871460622, 1.0092921747934365, -1.1708049786934076, 0.17811705096395183, 1.0092921747934365, 1.0092921747934365, -0.8764803481500233, -1.6655975864502408, -0.5771812735349283, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, -0.8433558325678591, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, -1.767961681641035, 0.839054649879911, 1.0092921747934365, -1.767961681641035, 0.591343404668331, 0.5680462045693209, -1.767961681641035, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, -0.46986197367138816, 1.0092921747934365, 1.0092921747934365, 0.5717127763354476, 1.0092921747934365, -0.02223849018486037, -1.767961681641035, 0.6281165239435775, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.98969436362038, 0.6050916249062724, 1.0092921747934365, -1.3885448678281855, -1.767961681641035, 0.970279080947849, 1.0092921747934365, -0.2255386255836051, -1.7368656894639356, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.6907915008900161, 0.4524865429948384, 1.0092921747934365, -0.3988669302772017, -1.21523449730561, 0.17792096165358054, 0.1588423938895197, -1.2412027023159127, -1.767961681641035, 1.0092921747934365, -1.767961681641035, -0.6495847426397124, 0.8320361171360817, -0.7757361425483579, -0.6686456135469203, -1.767961681641035, 0.6808108476264679, 1.0092921747934365, 1.0092921747934365, -1.6826342946003, 0.28686145633419186, -1.7098445807996692, 1.0092921747934365, 1.0092921747934365, -0.9973586949541522, -1.7642118782856027, 0.19564127870347892, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.8425754757652798, 1.0092921747934365, -0.7141664044294403, 1.0092921747934365, 0.028290578989942448, 0.5657886009461801, 0.6778741186462459, -0.24027230987304876, -0.8900771619460369, 1.0092921747934365, 1.0092921747934365, 0.675660180830809, -0.0322650817687008, 1.0092921747934365, 0.2831478285578972, 0.2654264266432167, 0.3867365496328381, 1.0092921747934365, -1.767961681641035, -0.7078804944375384, 1.0092921747934365, 1.0092921747934365, -1.0236080833566086, -0.9159560690235041, -0.9726773429941766, 0.10710559898984912, -1.7436275987135674, -1.767961681641035, 1.0092921747934365, -0.6519297456823084, 0.46263491065109474, -0.7074795690944412, 0.4081498820280599, 1.0092921747934365, 0.8317486279673493, -0.6498506023167394, -1.2933102836587964, -1.4453726958622206, 1.0092921747934365, -0.25879244348765107, 1.0092921747934365, -0.403168961592706, -1.48180465906377, 0.4325240816450292, -0.4770845966034005, 1.0092921747934365, -0.8033917191277776, 0.7851192408799265, -1.767961681641035, 1.0092921747934365, -0.3034945682797786, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.6052833589598936, -1.5319458890769775, -0.3864388548777587, 0.4354293495464087, 0.4784426110803314, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.1916862335329624, -1.1671110140913923, 1.0092921747934365, -0.14203359949850103, -0.4917214567105391, -0.7599306118486966, -1.3164244128248874, -1.3702124158218474, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.2831183666215691, -1.2145870364395193, -0.06059212184764597, -1.554518755469083, 1.0092921747934365, 1.0092921747934365, 0.5869098334973218, 1.0092921747934365, -0.2578651553103904, 1.0092921747934365, 0.04368535275936954, 0.9567369850195648, 1.0092921747934365, 0.8845625579930801, 1.0092921747934365, -1.367120890197235, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 0.639512486105654, 1.0092921747934365, 1.0092921747934365, -1.1564647613016434, -0.4823981287253056, 0.7496392804315822, -1.3686353953428465, -0.850556826008166, -0.4959730418134167, 1.0092921747934365, -0.8751584404062477, -0.929549831637304, -1.767961681641035, -0.17755410676828717, -1.6167952490951398, 1.0092921747934365, -1.0198043439988895, -1.432645468997575, -0.4255215156778528, -1.5767419394283002, 0.2254848241474851, -0.29335542197421743, -1.767961681641035, 0.375649095894758, 1.0092921747934365, 1.0092921747934365, -0.009383791707666232, -0.08493445356147473, -0.644260497478021, -0.6232542605943723, -1.767961681641035, 0.09886564410319948, -0.6092435030778204, -1.2829690473845075, -0.513215069100054, 1.0092921747934365, 1.0092921747934365, 0.4985763454584968, 0.5235480343572751, -1.1807946848744673, 0.4723094636113419, 1.0092921747934365, 0.665770010994018, 1.0092921747934365, -0.34895799693665336, -1.767961681641035, -0.6775857808499574, 0.42773291191838714, -1.1789996404751724, 1.0092921747934365, -1.339942077789967, -1.0783558526704142, -0.6664484911356923, -0.7126404064974873, 1.0092921747934365, 1.0092921747934365, 0.30082298811100605, -1.767961681641035, -0.12820903190113017, 1.0092921747934365, -1.0067094157752743, -1.6570308075708022, -0.5991604985250155, 0.9869016504407212, -1.767961681641035, 1.0092921747934365, -1.0610856188992974, -0.8529433929329381, -1.767961681641035, 1.0092921747934365, -1.32815020778444, -0.5852481924879391, 0.2603131876827324, 0.020278445708703446, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, -1.2204582907683632, 1.0092921747934365, -0.6181602779838691, -0.4155663895619029, -1.1765451338930697, -0.08592222295064801, 1.0092921747934365, -1.5634550579413153, 0.4476167205710903, -1.313392080135252, 1.0092921747934365, -1.0208216759535322, -0.29545097391969716, -1.767961681641035, 0.2503634858907209, 0.5341653348180018, -1.3934046552526504, 0.18414496654854295, 1.0092921747934365, -0.42787065476745034, -1.7010933537175614, -0.45038512492216237, -0.34960674607967984, -1.061235940476443, -1.5825209972012044, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.4747714467432822, -0.873052650049333, 1.0092921747934365, 0.19774130571620502, 1.0092921747934365, 0.3514452200494528, 1.007398543306559, 0.09645344724781586, -1.5696715874398475, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, -0.41536718126526423, -1.0357117163804905, -1.3317957602953057, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.06940817491550802, -0.6611973387390727, 1.0092921747934365, 0.31514483060542775, 0.5222917609331537, -0.8239987935736174, -0.5036454768080194, 0.9028663966906436, 1.0092921747934365, 0.1329714876898643, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.5563698399150687, -0.2969453751647122, 0.5354465601322397, -0.5567169266127207, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, -1.47157560458893, 0.3781323513937339, 1.0092921747934365, 0.5582262797275315, 0.4363139211726521, 1.0092921747934365, -0.06380779668639469, 0.15371667898398275, -1.0909113318783605, -0.7505230034302697, -0.1298450080009361, 1.0092921747934365, -0.6315712408809464, 1.0092921747934365, -0.38726050434631726, -1.2352950033106076, -0.638434841372288, -0.09902142282936599, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, -0.10922403372500582, 0.9560424003392592, 1.0092921747934365, 0.8538505782865443, -1.767961681641035, 0.6852400793383264, -0.034861298813695665, -0.27584733159840974, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -0.8755304134203228, -0.047998604568077766, 0.6083801212938963, 1.0092921747934365, -1.5396529888917434, 0.07989122335876048, -0.30808707214218145, 0.3672725836529576, 0.47579445613362964, -1.767961681641035, 0.33793933148345434, -0.698549301182589, -1.4614557824373995, -0.29605375191734895, -0.5009144653131565, 0.711906327035445, -0.681746101702575, 1.0092921747934365, 0.20134183633838512, -1.3389496638234217, 1.0092921747934365, 0.3926864905608127, -0.0899945341473632, 1.0092921747934365, -1.3507729271037412, 1.0092921747934365, 1.0092921747934365, 0.7608782084156436, 0.1444069118085951, 0.46214970487481505, 0.47157311163670557, -1.3595834530646533, 1.0092921747934365, -0.7116573155877094, -1.1501646124594005, 1.0092921747934365, -1.1765306238265316, 1.0092921747934365, 0.8706388608757332, -1.767961681641035, -0.8194262919057388, -0.3659128062707495, 1.0092921747934365, 0.3318887693464234, 0.022352707182727943, 1.0092921747934365, 1.0092921747934365, 0.8831714901190907, -0.46888206955193107, 1.0092921747934365, -0.14044684913843838, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 0.1818232202948285, -1.4515362873493167, -1.431128794122388, 0.9076316652704828, -1.767961681641035, 1.0092921747934365, 0.8193871361442466, 1.0092921747934365, 1.0092921747934365, 0.29279824327661313, 0.10333054074495543, 1.0092921747934365, 1.0092921747934365, -0.8910433018435047, 1.0092921747934365, 1.0092921747934365, -1.3880036559072368, -1.5997563457889874, 0.86994319133064, 1.0092921747934365, 0.45854808938784725, -0.8919727597503406, -1.48755128955013, 0.9895460083606662, 1.0092921747934365, 1.0092921747934365, -0.9619400293663113, 1.0092921747934365, 1.0092921747934365, 0.7111927572213552, -1.5348878898220268, 1.0092921747934365, -0.3763557147168582, 1.0092921747934365, -0.3046656798180681, -1.767961681641035, -0.11330800721818847, 0.8882196371923148, -0.42897247056743015, 0.6254211773786121, -0.8785725098930444, -1.712774796353412, -0.9293650656031497, 0.07018968438692837, 0.30197619938029896, 1.0092921747934365, -0.1933341431454327, -1.7585673628162584, 1.0092921747934365, 0.6139132029272087, 1.0092921747934365, 1.0092921747934365, 0.346743280451591, 1.0092921747934365, -1.767961681641035, 0.9936972434706843, -0.251682375277365, 0.18790198891633886, 0.012851868196614729, -1.2488427947790268, -1.767961681641035, -0.7625910393283076, -1.767961681641035, -1.767961681641035, 0.7993306983822028, 1.0092921747934365, 1.0092921747934365, -0.1420171909185903, 0.37298927865158316, 1.0092921747934365, -1.767961681641035, -0.7624206477525954, -0.4210446855234325, 1.0092921747934365, 1.0092921747934365, -1.363861447844706, 0.9799140363433406, 1.0092921747934365, -1.767961681641035, -1.767961681641035, -1.0680359407696047, 0.7188424100554113, 1.0092921747934365, 1.0092921747934365, -1.3566186193060261, -1.0245026221780957, 1.0092921747934365, 0.14083323158990982, -0.41591449555064364, -0.5684599098987503, 1.0092921747934365, -0.7945190168537254, -0.5683682388241922, 0.13949857668487917, 1.0092921747934365, 1.0092921747934365, -0.24439981356583387, 1.0092921747934365, 1.0092921747934365, -0.9765303758956813, 1.0092921747934365, -1.0163916983971308, 1.0092921747934365, -0.6294183267098159, -1.1227043793458091, -1.767961681641035, 0.4474124947748115, 0.976397989566503, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 0.6698667316484558, -0.43788015973088495, -0.24868570751761876, 1.0092921747934365, -1.2626405119729056, 1.0092921747934365, -1.3602714607521833, -0.7763899769950723, -0.14499690766602086, -0.29324571502256713, 1.0092921747934365, 0.900325914574118, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 0.8823271940980867, -1.1933702340809857, -1.3681344929291643, 1.0092921747934365, 0.6133512429671958, -0.9648237355800386, -1.1228867722382334, -0.4434125633237079, 0.9342914037788753, 1.0092921747934365, 0.9901909604769358, -1.129427693259291, -1.534441959541258, -0.5825900025419569, 0.9906571811194369, 1.0092921747934365, -1.767961681641035, -1.0502544644673042, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, -1.3122070009628215, 1.0092921747934365, -1.767961681641035, -0.5190920528710522, -0.2220713977222127, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.7109805613649516, -0.7959359180704698, -1.5583691609636827, 0.7025371635129324, 0.005077320303875394, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.3792515250303109, -1.2044799614492454, -1.5347685885974083, 0.9419559735037618, -1.2489876242281808, 0.6025218514404798, -1.3191794269531747, 1.0092921747934365, -0.07828287633207479, 1.0092921747934365, 1.0092921747934365, 0.22421295579203807, -1.767961681641035, 0.04998882400002319, 0.8279006125654848, -0.5552189995571457, -1.0539441574142168, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.4560252883305713, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.2027718757430808, 1.0092921747934365, -1.5185011428123742, 1.0092921747934365, -1.767961681641035, -0.3625544717124222, 1.0092921747934365, -0.28180093394504546, -0.30766397487499025, -0.43708007194997855, 1.0092921747934365, -1.2683848710236167, 1.0092921747934365, -1.7358461178567972, -0.5171334651050158, -1.767961681641035, -1.767961681641035, -0.15115202364696068, -0.0025258189524121266, 1.0092921747934365, 0.37047876592481976, -1.767961681641035, 1.0092921747934365, -0.09456032321437244, -0.33530605844861766, -1.546452802723771, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 0.3086582884318549, 0.46117386899830615, 1.0092921747934365, -1.2487849579250347, -1.3019029213075102, 1.0092921747934365, -1.4711920370824398, -1.767961681641035, 0.6424180252232304, -0.8475380541283737, 1.0092921747934365, -0.472697267793963, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.3952957779897062, -1.767961681641035, -0.11837771597906473, 1.0092921747934365, 1.0092921747934365, -0.5862085690412293, -1.6991990738544631, 0.14874650656736965, 1.0092921747934365, -0.97181467207583, 0.5232019624900085, -1.0507303132847987, 1.0092921747934365, 0.8322552598231909, -1.2946888416857034, 1.0092921747934365, -1.4324184271387304, 1.0092921747934365, -1.4102102278743927, 0.42315491812251665, -1.3855302997994483, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, -0.489495720990539, 1.0092921747934365, 0.8303806134700977, -1.7300399193943123, -1.1644338390116205, 0.47123978693069957, 1.0092921747934365, -1.280452093273064, 1.0092921747934365, 1.0092921747934365, -0.6780379660542666, 0.7640451999470483, -0.09875902115884559, -0.9348095951481713, -1.767961681641035, -1.767961681641035, -0.20490300563304686, 0.2579325875142925, -1.2286516303711648, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.0726023400730558, 0.20174201583693957, 0.8648673802053303, -0.9696721319242303, 1.0092921747934365, 1.0092921747934365, 0.04314400523032236, -0.5470476623683217, 0.5911153118467235, 1.0092921747934365, 0.6960152276256589, 1.0092921747934365, 1.0008893545805406, 1.0092921747934365, 0.10816537627930675, 0.24778286377704598, 1.0092921747934365, 0.15690862240549844, 0.791499601912409, -1.767961681641035, -1.6255541083705387, -0.12349787095257318, 0.9507173415289825, 0.41283324331643007, -1.767961681641035, 1.0092921747934365, -1.767961681641035, 0.8509884337604747, 1.0092921747934365, -1.016423769712415, -1.295788589462179, 1.0092921747934365, -1.6827835482636657, 1.0092921747934365, -0.42952683647392936, 0.756534409805814, -1.239058229748911, -0.12152138291754021, 1.0092921747934365, -1.1103239023889224, 1.0092921747934365, -1.0311166359642197, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, 1.0092921747934365, -1.1314570684527285, -0.1319900569023505, 1.0092921747934365, -0.5156716098036308, 0.25301543786417946, 0.360194654562009, -1.767961681641035, 0.0792099282721039, 1.0092921747934365, -1.767961681641035, -1.5942878305615533, 1.0092921747934365, -0.34219657714750185, -0.6625536231358089, -0.22165914910289822, 1.0092921747934365, -0.8243850054380278, 0.2890908534728531, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, 1.0092921747934365, -1.3006194923616723, -0.03308456150768403, 1.0092921747934365, -1.767961681641035, -1.2397337953934078, 1.0092921747934365, -0.45702951492234123, 1.0092921747934365, 1.0092921747934365, -0.8353703462779714, 1.0092921747934365, -1.767961681641035, 1.0092921747934365, -1.4143084402179138, -1.767961681641035, -1.2281077401902714, 1.0092921747934365, -0.35867255428593753, 1.0092921747934365, -1.4452223742850792, -0.8473875291390845, -0.5651105254749212, -0.21793819848929233, 1.0092921747934365, 0.44475905111226705, 0.7472929891120496, 1.0092921747934365, -0.8386197875332391, 1.0092921747934365, -1.3106966657662373, -1.678444029784444, 1.0092921747934365, 0.5838190537172508, -1.767961681641035, -1.767961681641035, -0.6128848517376337, 1.0092921747934365, -0.8354302850574902, -0.8041103742455611, 0.4935581677750348, 0.5606533934737455, 1.0092921747934365, 1.0092921747934365, 0.5314537152812213, 1.0092921747934365, 0.8988952491353785, -0.03980828224546957, -0.3936009965978529, 1.0092921747934365, -1.767961681641035, 1.0092921747934365], [-0.5246649418386555, -1.0960653235994933, 1.0814809043909954, 0.2926907389022743, 0.8469211462759791, -0.7674948731370053, -0.3900368153342049, 0.8950583242319525, 1.4183616812861042, -1.1397556146009282, -0.7877356992311167, -0.45321246495183776, -0.0388482329326901, -0.23635338318777235, -0.40476454118677985, -0.5679548083713354, -0.8619644270857296, -0.2891749425221354, -0.1293418042352828, 3.076051502367359, -1.1397556146009282, 0.4880252312954774, -1.1397556146009282, -0.858988292131989, 3.4364151185691276, -0.5794204636954629, -1.1397556146009282, -0.7915476111319172, -0.022733748060274547, -0.8231139765138786, 0.4867461258788162, 0.07487370642206603, 1.085358525389542, 0.7837156958595831, 0.6712943451129382, -0.23582894616460526, -0.4925946720412887, -1.0614272628675285, -1.1397556146009282, -1.1397556146009282, -1.1397556146009282, -0.8626349450578441, -0.6107583087577366, -0.1540923419542876, -0.6176364471817385, 0.14963939523999473, -0.36678278152234217, 0.044588965503553325, -0.0911300508464403, -0.9954463397737355, -1.1397556146009282, -1.1397556146009282, 0.512296484716709, -0.24120212048660217, -0.34676885975563526, 0.5545487891489993, -0.6159661765756046, 0.3569445880731568, 0.7132723110915684, 0.19184730741384218, -0.4218094573774403, -0.3346263413132489, 3.092065035251637, -0.6267160423792556, 0.22459672173033285, -1.1397556146009282, 0.07396418794505843, 0.33168967064689936, -1.1397556146009282, 0.8955011061159298, 0.24950591186761822, 0.0976627146915444, -0.42020168764908933, 0.13193496408346136, 0.36058161633912666, -0.25003228252320053, 0.3025329873963076, 0.9088339929872825, -0.8421572572721473, -0.08307499475272233, -0.6019670731233464, -0.11741796757136311, 0.4726810994474803, -1.063394317584766, -0.21740615891163295, 5.0, 0.03776491529165868, 0.6674226177332859, 0.42366814873558584, 0.1493765588490104, -0.8472495103484096, -1.1397556146009282, -1.1397556146009282, -0.5545069484023757, -0.8483600535117937, 1.7112308134507968, 1.234106431946018, 0.4525900378141265, 0.14020542244190118, -0.5342665500709242, 0.598699789448739, 0.2745789826334963, 0.21710764316714654, -0.5753733536245387, -0.3776315555592033, -0.7497803657933318, -0.9846757987747695, 2.522306843260535, -0.9643085806964397, -0.45139157435962346, 0.36860197612806306, 0.1362167732680677, -0.18849330037817166, -1.1397556146009282, -0.07892987950310175, 0.21153237475212136, 1.0170047136944325, 0.46552662634406267, 1.2884621383017483, -0.4628627430691637, 0.5188960070604299, 0.5496907361299834, 0.04996404099293351, -0.8023128526267987, 1.751594688319518, -0.8931575457808187, -0.14538138311272916, -0.1916240477694988, -0.3801354880636836, 0.4315888873535489, 0.17814759029554544, 1.5225737912641062, -0.7932515324007687, -0.2635425483115774, -0.11686738949665282, -1.0051738171691904, -0.34861284953157984, -1.1397556146009282, 1.6956195675852042, 1.0498981414403394, 1.312581108215438, 1.6706661753062177, 0.9201189423514565, 0.2239521309284308, 0.3454887237610663, -0.692116247954137, -0.010591277147072416, -0.5453994535734821, 0.8876515662165382, 0.13559024355632449, -0.3285189361471477, 0.7086878360592587, 1.2361155856385382, -0.00020519972254651712, 0.30957576691585303, 1.1804840058506996, -1.1397556146009282, -1.1397556146009282, 0.33840468890926567, 0.7934433990186658, 1.4091805637502242, -0.7466451506586463, -0.7950149364441779, -1.1397556146009282, -0.8125169170387981, -0.3057586355051813, -0.6759006209768365, 0.7579339649509306, -1.1397556146009282, 0.12967932403946994, -0.7332165875386437, 0.011907422862711046, 2.02673828636969, 0.26860646529336274, -0.7532672018358813, -0.4393204922817306, -0.6913075864069073, -1.0598170453861686, -0.22947800145647995, -0.5757029685199202, 1.3128280698587536, -0.15417380697673658, -0.07188462846595307, -0.030806104777193997, 0.35358246861106685, 1.0839086951417047, -0.6333393768444764, 0.5818676138884663, 0.871645067651593, -1.0154250424146343, -0.03436756163960584, 0.4202276061188628, 1.363679354373624, -0.2642227860019465, 0.4370861128474197, -1.1397556146009282, 0.9617904401476136, -0.0707369887739684, 0.7202682268350711, -0.12280502041527017, -0.6858710081526203, -0.6103293103373006, -0.07073974546667797, -0.7929014324268131, -1.1397556146009282, 0.1752594318625474, -0.34004885092888504, -0.3044917926181565, 0.39470538455826915, -0.39218765352609497, 0.8695591067967169, -0.7539085368886358, -0.8166092035997066, -0.5208918375171038, -1.1397556146009282, -0.08031421453452418, -1.1397556146009282, -0.7955190309763243, 1.1013463925141154, -1.048196023098649, 0.026044313421196872, 0.45663904905243763, 0.5757815968554464, 0.7585147715870607, 1.2674013862436473, -0.18820612904465872, -0.8716117821582009, 0.589271139919324, -0.28379739551515537, 0.08493468422374709, -0.4862630241821204, -0.3609961032940994, 2.579038058263876, -0.7127781350948531, -1.1397556146009282, -1.1397556146009282, 0.1961688509967985, 5.0, 1.3673077323279896, -0.9442883494304742, -1.1397556146009282, -0.4152576068058974, 0.24598380917007726, -1.1397556146009282, 0.007869153220125288, -0.22411984635682566, -0.7488004803584853, 0.3995617265266391, 0.45271551486153977, 0.7514108695360872, 1.0098892145224072, 0.2327697452602928, -1.1397556146009282, -1.1397556146009282, -0.6533973581653321, 0.44093350528454334, -0.9067687397927486, 0.2005968599533176, -0.09453076400644764, -0.38739557101533806, -0.36496036999621984, -0.040418597192740845, -0.026372297260152267, -1.1397556146009282, 0.009894181660311112, 0.3786566800773742, -0.9637952655024763, 0.6222875731950447, -1.0222690667663694, 0.32029549921645295, 0.09612210370106915, -0.46392554316659235, -0.006104997410200316, 0.12971088341806017, -1.1397556146009282, -0.188660412991315, -0.7478832621535686, -1.1397556146009282, 0.3763480925217081, -1.0661533332819861, -0.7277560545753035, -0.637071938771543, 0.2402592040569545, 0.6893982115370729, -0.024562385909585305, -1.1397556146009282, 1.2576738732013053, -0.6256088500233873, 2.8263776536579477, -1.1397556146009282, 0.28407797535615675, -0.5561106781500345, -0.6852238507747495, 0.2990681098370559, -0.9030446380605447, -1.0140817963633197, 0.4671458506059117, -1.1397556146009282, -0.8754269973373334, 0.5243757418143584, -0.5782699722523998, -1.1397556146009282, -1.1397556146009282, -0.3538690070010265, -0.0764841227206054, -0.5941361646643268, 0.17261794989776144, -1.1397556146009282, -0.58565491437207, 0.8944349314463942, 0.11281511380875628, -0.4608995025689945, 1.0769669626686718, 2.6104472446322995, -1.1397556146009282, -0.23744864571829838, 1.5679542765117553, -0.04415325040393175, 1.3076300881112912, -0.8445259692463648, -1.1397556146009282, 0.15766678934825493, -0.09635702539652444, -0.7252618655536721, -0.30594628072608654, -0.7180383800741794, 0.7349695739901806, -0.10764311546113127, -1.1397556146009282, -0.43266298433276323, 0.3530670621329793, 0.23039604272168732, 0.12449113330403744, -0.09716226484246243, 0.6752677849476914, 0.8687881834220788, -0.04812611988846862, 0.009792564263582172, 0.6943142501613317, 0.9923075987789498, -0.4397492055270569, -0.675795058657781, 0.11431047701546877, -0.40308652332355244, -0.5298432465036825, 0.4000490907857967, 0.16618449452512324, -0.5917011494775556, -0.6243251342758176, -0.9490908645972549, -1.133172716332173, 1.2929251287381491, -0.9096431385267968, -0.09464664015856517, 0.6639328348812894, 0.2497040135091418, -1.1397556146009282, -1.1397556146009282, -0.5923826704559135, -0.175849396567161, 0.994086330984402, 0.12088366819090562, -1.1397556146009282, 0.05201530554303443, -0.9816218110166108, -0.18574088529646438, 0.19180766807386407, 0.27740231125866166, 0.4378180622906623, -0.7143182707934839, 0.9440519780948867, 0.9272274072041542, -0.2811459324215951, -1.1397556146009282, -0.6079088866102091, 0.47145066391587637, -0.9068992074045477, 0.18555662971182188, 1.0379827649712834, -1.1397556146009282, -1.0553985779134638, -1.1397556146009282, -1.0460662284532511, -0.7889297274072964, 0.2052519633539789, 0.8417589064753553, -1.1397556146009282, -0.5837915326887992, -0.06957965312831926, -1.1397556146009282, 1.025327073922487, -0.26070591151471495, 0.5148366344598727, -1.1397556146009282, -0.9003952424865169, -1.1397556146009282, -1.1397556146009282, -1.1397556146009282, -0.18254530809730474, -0.0674068089239471, -0.725505167449774, 1.3411161097311175, -0.763595293655161, -1.0660425546349184, -0.323557459622382, -1.0760107732916533, -0.28671378628382105, -0.9156139210516906, -1.1397556146009282, -0.4875330990537023, -0.8958838673401643, -1.0456266547892357, 0.25545333379826873, 0.41980231497482834, -0.5740239050146291, 0.8432254669961842, -0.5680830896406425, 3.21701051626405, -1.1397556146009282, -1.1397556146009282, -0.8995514806364397, -0.3689976415259261, -0.2742505884327604, -0.4818248439800924, -1.1338595308734662, -1.1397556146009282, -0.21013096167926398, 0.7305446069014776, 0.010724231340625065, 0.41823822456714715, -0.8786786114451678, 0.5992861094702883, -0.5731389115968909, -1.1397556146009282, -1.1397556146009282, -0.2684143847941344, -1.1397556146009282, 0.5005020224933382, -0.6863015750361487, -0.9194720313199484, -0.5073691666115404, -0.7271171672755581, 2.3979552869392284, -1.1397556146009282, -0.65254739375666, 0.29972648410249597, -0.6727262893232048, 0.05157661116893412, -0.4401561028766449, 2.4026104853982684, -0.11620045997797751, 0.09989839247799334, -0.8881541247506228, 0.1932773655208777, 0.8571771838513677, -0.193069220157246, -0.31554594026178734, -0.7345015865741963, 0.2925874104548997, -1.1397556146009282, -0.8799127304885802, -1.0187465006592766, -0.8489785745559273, 0.9271563035439552, -0.794271508702847, -1.1241718079277336, -0.9208165131300627, -0.6577991785411204, -0.03688461219904243, 0.09973413161592508, 0.21728987006100475, 1.8327475390842591, -1.0178760868189205, -0.46430962650755664, -1.1397556146009282, -1.1397556146009282, 0.8267775173644288, -1.1397556146009282, 0.28428501248438753, 0.3549192744578648, 0.15268478021573403, 0.25404685016680767, -0.6248492385946935, -0.07978797140234252, 0.8021412398052646, 0.31345795071612376, 0.10288655231544674, -0.3513575173561903, -0.011224651061402132, -0.2504346646002458, -1.1397556146009282, 0.006129204829328142, 0.40157658372131266, -0.9973673981225509, -1.1397556146009282, 0.5318484703380315, -0.1403836893492804, 1.8520181519325933, 0.6426787341001298, 0.19374914020747644, 1.428046037828808, 0.6059352522827584, -1.1397556146009282, -1.1397556146009282, -0.20616351052177415, -0.1497264061128914, -0.3738667688449581, -0.5235991474025984, -1.0608941280035757, -0.26099840611690284, -0.184263298004804, 1.2610187870985599, 1.957443967169211, -1.003053599654495, 0.3470850389559223, -0.7581859733882559, -1.1397556146009282, -0.0747340030842961, -1.1397556146009282, -1.0810577191726707, -0.4483678626920721, -1.1397556146009282, -0.9698074340648835, 0.18360384563226828, 0.21271166888106835, 0.45108279231125936, 0.4898098571198207, -0.32682756258303897, -1.1397556146009282, 0.7349414367128818, 0.15771859615950035, 0.503887811489375, -0.9790385998321751, -1.1397556146009282, -0.24302011179855346, 0.3312871935114851, -0.3900699907050721, -0.23046071487781108, -0.036253899919053555, 1.04899774856678, -0.35483869742577057, -1.1397556146009282, -0.7959211754074473, 0.1526901985427809, -1.1397556146009282, 0.723511048043749, -0.034435528373620294, 0.3900516119747749, 0.734937254144633, -0.6172707101060395, -0.6534228338082901, 0.41243205937320654, 0.03086538873457545, 0.562717915285817, -0.901572183920824, -0.030388133127589662, 0.26300058808343596, -0.9492168882302913, -0.3527615294700485, 0.677953183879076, 0.5631875036299256, -0.3698121016336783, 0.7123363663879075, -0.013215553547025789, 0.5309868612791306, 0.12258635370095582, 0.2745461874961044, 1.6159032388966075, 1.2423799321722735, 0.39136303723698335, -0.15935752996881367, -1.1397556146009282, 1.470475531061385, 0.5421773226242684, -0.6599873271429448, 0.3770524750378713, 0.0729575198146741, -0.6877555878522345, -0.6527305237050256, -0.35748816429357533, 0.12012671839654948, 0.6205577009913907, 0.5972301870600945, -0.8367046141534562, -0.16463745203057267, -1.1397556146009282, -1.1397556146009282, -0.3093147690989186, -1.1397556146009282, -0.15962949196324286, -1.1397556146009282, -0.453720029114463, 0.9833675492674938, 0.500770657444848, 0.9747776947883625, -0.23700006527379563, -0.3145930751683974, -1.1397556146009282, 0.33770391861113486, -1.1397556146009282, -0.3760877601133587, -0.6197333397490775, -0.9630787749265323, -0.6951603496418935, -0.5054954710952047, -0.40757432399432947, 0.07599140272773777, -0.0002698394136381943, -1.1397556146009282, -1.1397556146009282, -1.1397556146009282, -0.34861503587407305, -0.4904675033833423, -0.5116262606201428, -0.10803998415276067, -0.3293686629098943, -0.9224550342408676, -1.1397556146009282, 0.463543708761458, -0.623049023197788, 0.5966953886746809, -1.1397556146009282, -0.9244498341196304, 0.1859785938129341, -0.5159587834447467, -0.6406085853995822, -1.1397556146009282, -1.1397556146009282, -0.8762868240518141, -0.7830177384837875, -1.1397556146009282, -0.45441604649412887, -1.1397556146009282, -1.1397556146009282, -0.4599855638778161, -0.0761184331740908, 3.0037326159739903, -1.1397556146009282, 0.09391865070179875, -0.7419229122846998, -0.14513014384279613, -0.04923649669970952, -0.9511913456180343, -0.7890360739578998, 0.2484760494951377, -1.0121731787785804, -0.7700522759741892, -0.5582625144548006, -0.8042138774242947, 0.45719076782757717, -0.4641815828841747, -0.33999229119918106, -0.7289543128489165, 1.3204277963637518, -0.6177815062532186, -0.09292446768281698, -0.29031754412055166, -0.43654626130428215, -1.1397556146009282, -0.47354107744995544, -0.45968603495630106, -0.6963330847433639, -0.4090495348267589, -1.1397556146009282, -0.5767311198417548, 0.36914989256843606, 1.6796605982048836, -1.1397556146009282, 0.5878182678036707, -1.1397556146009282, -1.1397556146009282, 0.6723639418837684, -0.19415602249290909, 0.17783731977830539, -0.15585025637687466, -0.6001476559358556, 1.4689988943534162, -0.07481328176425196, -0.25708010013631777, -0.25632495645097614, -0.8344585274755746, -0.65261692895377, -1.1397556146009282, -0.1842054074579298, -0.2887240806767704, -0.24257343252143737, -1.1397556146009282, -0.31661297045664594, -0.7347353826333745, 0.02054471146809826, 0.1378681272587233, 0.5048224253758652, -0.24475055435242696, 5.0, -0.8681912255636123, 0.18035094823645031, -1.1397556146009282, -0.28275536567140735, -0.899303544644837, -0.22129442644753264, -1.1397556146009282, -1.9835902503322268e-05, -0.4711615763508277, 0.0570704145615101, -0.5206269098419951, -0.6338424732637464, 0.8169870756816379, 0.023286765187552603, -0.9137208336280277, 0.6636969000088055, -1.1397556146009282, -0.03333769926712568, -0.5135419719356875, -1.1397556146009282, -1.1397556146009282, -0.8197588200773342, -0.07522764119582381, -0.7454500293112183, -0.7190745638282142, 0.8845667320175553, -0.06669235022064733, -0.838053349825595, -1.088512951015255, -0.6145884481008431, 0.07902404988199921, -1.0025982938303681, 0.15305892995711176, -1.0569989271478657, 0.35178653084077877, 2.6280813325955785, -0.28756588950579837, 0.40523110272722496, 1.30802838267846, 0.31822341688349, -0.10979029390580758, -1.0589749054695168, 0.07780948909806099, 0.553719499935639, -0.39731353350047893, 2.1540039520588, -1.1397556146009282, -0.4410491762557708, -1.1397556146009282, -0.265182115064444, 0.8683874173373103, -0.2859330718971493, -0.1013159353453182, -0.9470284306887687, -0.44945271633116424, 0.9544815922525299, -0.09655788373075437, -1.1397556146009282, -0.1791096134574123, 1.6765820378582743, 3.329136425599034, -0.3734574475069577, 0.7064398957431763, -1.1397556146009282, 0.0668330041421089, -0.6678757459153604, -0.4914155204998983, 0.39297608270482826, 0.007603465078065883, -1.1397556146009282, -0.18236849953049675, 0.6193833498976433, 0.8151752631636876, 0.1599083607535984, 0.7324710598127505, -1.1397556146009282, 1.967649623808894, -0.3254219344769006, -0.10706924808595289, 0.136641779236996, -0.7834409858728825, -1.1397556146009282, 0.6533146249190497, 1.178817632637705, 0.8020604401914011, -1.117876559997554, -0.37531550592155016, -1.1397556146009282, -0.6114987659250297, -0.07272228281580741, -0.4052357930523499, -0.4966960129118705, -1.1397556146009282, -0.23118553494336078, 0.19948211045709394, -0.007176970640261619, 0.21588272102095854, 0.37373132573292617, 0.1646878955596124, 0.04888683955256633, -1.0501296766813901, -0.2566225842051044, 0.7061339979109226, 0.027722759047087316, 0.2227616199119145, -0.6618783708116666, 1.4607265348275895, -1.0002230465932642, 0.5100586205877666, -0.039157267691131994, -0.027138087482846948, -0.24988209029978337, -0.06111955332322184, -0.09184051709823235, -0.8547734753331115, -0.5674428239945423, -1.1397556146009282, -0.35222644590952834, 0.2724814246575721, -0.7431030619389695, 1.4002711230336664, 0.6254638535452473, 0.9859628328648222, -0.010254295228072955, -0.3423969352369758, -0.2733373626793516, -0.20497395008894628, 0.41730437114761093, 0.4562827702844776, -0.1432095845504177, 0.4406167707981925, -0.1272031810438415, 2.3003584789942444, -0.6273918598554569, -1.1397556146009282, -0.8339374174953325, 2.0493022914791754, -0.7505816840815374, 0.9560010052266614, -0.8556250557340598, -0.5998377181229068, -0.5422513105005781, 1.5941453287584106, 0.1331738598099282, -1.1397556146009282, -0.5967805934385629, -1.1397556146009282, 1.7067280886160487, 0.18296476821578536, 0.5300944533085867, 0.3023326994122937, -0.3470056976826265, -0.5786714988041223, 0.5736414527300974, -0.6056593778310344, -1.1397556146009282, 0.4802169467283406, -0.26305109654254305, 0.3516757878406016, -1.1397556146009282, -1.1397556146009282, -0.39505366335905756, 0.5300834265377552, 0.48344018591295146, -0.929891307879934, 0.1271960192011169, 0.9310981840001147, 0.16373255894862618, 0.4866767332692594, -0.5308528614435142, -0.2482015533897685, -0.2140978424865374, -0.2365355150232583, 0.6966078184946553, -0.028555312710033035, -1.1397556146009282, -0.7997891004523294, -1.1397556146009282, 0.0072721866612197985, -0.4025638448802156, -1.1397556146009282, 3.1793666415731026, 0.896173739136762, -0.6601181749882207, -0.8385473681706, 0.8160845915239574, 0.8898696582046759, 1.1848781740277639, 0.697370566849537, -0.4287820838204785, -1.0339383608820252, -1.1397556146009282, -0.8421398853551662, 0.7170649499080022, 2.7161160290607187, 0.8752095663818213, -0.5523934681496016, 0.05827214246559907, -1.1397556146009282, -1.1397556146009282, -0.19255134216155856, 0.41589826774962846, 0.7306742665171393, -0.38082456618239435, -1.019681173957248, -0.8067105379635259, 0.2990738133392093, 0.5550193280767997, 1.9658018792273675, -1.1397556146009282, 0.05578636610964956, 1.3033798383052748, 0.2574687613431588, 0.9732702591687576, 0.26304203353243166, 1.4005196056108933, -0.7013482217175676, -1.1397556146009282, 1.882357931646906, -1.1397556146009282, 0.1222019376557006, 0.5486217097093695, 0.05011756025927677, -0.014159293036964277, -0.8780292201956196, -0.2545640952189451, -0.3428220362642728, -0.3979947693037273, -0.439609802428549, -0.003689944480974632, 3.717508419950819, 0.6766394772160051, -0.8354571631737564, -1.1397556146009282, 0.23324351617264388, -0.5486110481078608, -0.5016132397657496, -0.815635592017233, -1.1397556146009282, -1.1397556146009282, 0.35834964582907874, -1.1397556146009282, 0.4972188965360975, -0.40739917894898275, -1.1397556146009282, 3.1334515480567684, 0.7305039219194389, 0.3308343354403681, 0.48784138840934244, -0.2936371724915854, -0.16447366646034856, -0.7970731402552339, -0.9595354148011658, -0.8644064765918257, -1.0097713508449744, 1.7963791575919565, 2.0116184922731506, -0.19088943669191574, -1.1397556146009282, -0.47805482905554114, 3.290953760071172, -0.8722756222798757, -1.1397556146009282, -0.20850698449895305, 0.21189863464884917, -0.47547969783248956, 0.9314518011337374, -0.602966611876035, 1.0996505512066514, 0.08819433076378554, 1.0971389189742617, -0.537125430526191, -1.0203546506211054, -0.032031597273595024, -1.1397556146009282, 1.075094883144616, 1.6843673183000527, -0.1844435286729067, 0.3345839128155297, 3.563182298169871, -0.6602659907524071, -0.23867974665848743, -0.9293046789186847, 0.21656466976197644, -0.4506742163760607, 1.5985144015259922, 0.5211384339910964, 0.43608704938657555, -0.6434765439291127, -0.8160538963711284, 1.226321911971193, 0.46647816062028236, -0.23248964071113573, -1.0977847572059762, -0.11971096555447039, -0.4088040941173482, -0.8255178125555349, -0.6639347209845204, 1.1273385826522933, 0.32747069504436993, -0.03595532158123032, 0.33394968337587727, -0.5984384589275105, 0.03789086763091625, -0.5803742318433569, 1.3939989817136498, 0.774034951534912, -1.087451149030705, -0.3378626034944504, 0.8164480947279789, -0.3269288948046612, 0.24034589728971276, -0.7095314164930362, -1.1397556146009282, -1.1397556146009282, 2.1703585543719797, 0.5685849178360792, -1.1397556146009282, 0.44370521721520745, 0.8167115965275453, -1.1397556146009282, 0.7099566751720423, 0.24971427981301964, -1.037687047084977, -0.13207311635901514, 1.769434862827346, 1.9339936378248457, -0.9857345232446152, -0.3739273210261732, -0.07458143440164802, -0.0313183743290966, -0.6779064000972496, -1.1397556146009282, 0.47258375967736577, -1.1397556146009282, 0.5667443976906137, -0.4975337147909091, 0.07693057941595197, -0.511626070503402, 1.759936820688377, 0.2929203999223883, 2.1218464662076526, -1.1397556146009282, -0.25182270690807285, 1.171980654487589, -1.1397556146009282, 0.4955403558518382, -0.8912600143783933, 0.5226848435420938, -1.1397556146009282, -0.7245772076491321, -0.76812204449274, -0.8977699442090946, -0.07419312096325047, 0.21007161279181852, -0.16561370148279303, -1.034368678237335, 1.556960776107708, -1.1397556146009282, 0.061049177664941334, 0.2758432589445523, -0.015616727954341322, -0.2575397073516522, -1.1397556146009282, -1.1397556146009282, -1.1397556146009282, 0.47820874361951227, 0.10809128320712669, -0.7200208698941245, -1.1397556146009282, -0.27504508628297336, 0.2689975354244667, 1.8681885311261317, -0.8949217340557752, -0.681923756898598, 0.016522981981763316, -0.23373500040671352, -0.5829524999925902, -0.9179380268861365, -0.7648682202778211, 1.237988045396072, -1.1397556146009282, -1.1397556146009282, 0.9443922870568123, -0.4010048400952907, -0.437054110642011, -0.08182735365628564, -0.07750067692138879, 0.6642048919340907, -0.06579034135481103, 1.0012820594200744, 0.7344030261094359, -0.158679098387456, -0.27151718502490374, -0.04380913910723959, 0.20940116611347964, -1.1397556146009282, 0.3570651220853707, 1.8204093429887636, 0.4633315384812865, -0.3357045883956802, -0.5169553278588035, 0.49423235269092425, 0.4121735956672089, -0.0018308879535029064, -0.2726902053014808, -0.12036354125938804, -0.822111823656034, -0.11793622580052596, -0.22702064755293233, -0.27910236759940626, 0.42970188366551937, -0.6436806817770842, -0.6156002969123492, 0.9207695218306187, -0.6295963584967913, 1.717403523716578, 0.028684559627184657, -1.1397556146009282, -1.1397556146009282, -0.8818551769704774, -0.739241434511048, -0.48510825511244304, 1.3441285094527307, -1.1397556146009282, -1.1397556146009282, -1.1397556146009282, 0.5507320055067743, -1.136106452653975, 0.2398864801911161, 0.621434519389372, -0.46306483716219526, -0.14775527576807226, 1.5265280293082715, -1.1397556146009282, 2.6338669651817606, 1.2589621042214147, 0.4797038216511151, -0.3255106239354144, 0.7752096828621347, -0.8006219543545374, 0.7190111749600765, -0.5802199996392441, 0.1573080390626984, -0.5208677877496818, -0.5988927904033512, -0.9261303472650525, -0.35501327212090095, -0.7859119806524177, -0.3875055535485642, -0.9509093906125354, 0.12082387647664777, -1.1397556146009282, 1.499810543812696, -1.1397556146009282, -1.1397556146009282, -0.7475820697105925, -0.9840414861590437, -0.6221493907911827, -0.9598755811755357, 1.302997323427403, -1.1397556146009282, 1.9119488415282433, -1.1397556146009282, 0.15606771746069223, -0.23958536774235623, 1.0275520101132105, -0.10306557968977999, 1.0206688335956369, -0.11244945672727359, 0.060952313186674316, 0.6205421114188315, -0.5773770414608274, 0.8373269050673284, 1.8175290744004162, -0.8568453437847459, 0.21716515348054552, 1.2422981819747185, 3.270349668418994, 2.013079539408557, -0.7734601185118894, 0.35818053699017666, -0.8525110386157181, 0.45348235072629833, -0.3078408890836594, 0.3188515625875103, 0.9491520497220218, 1.0663529352746808, -0.1485597547470564, -0.6729612736119969, -0.9847295067533971, -0.6004244183779315, 0.38738256308290325, 0.6382062378268019, 0.5096428352806553, -0.280579004307375, 0.5832995731628855, 1.3742736096268104, -0.26993760010303586, 0.8612492942734024, -1.1397556146009282, -1.0816532004445567, 1.6063089976879563, -0.7797919802523893, -0.8936486886101539, -1.1397556146009282, 1.376882011279098, 0.6413876513289417, 1.702322323317934, -0.23353395195574242, 0.9618117332223262, 0.7569809097408065, 0.023347507485505105, 0.8600517489375622, 0.004969872957927009, -1.1397556146009282, 0.2835359525346781, -0.09867255221314562, 0.9040019859614411, 0.585805882126597, 0.7803759151142695, -0.6436539228461371, -0.9492028790031227, -0.49282057825581704, -1.1397556146009282, -0.9869353718587892, 0.5358285642586333, 0.5160552827536907, -1.1397556146009282, 0.955130080447571, 0.6488449803968002, 2.3105555803807105, 0.6802583493334472, 2.333851725050151, -0.14212782030832624, 0.019127106007433392, 0.5408003070872766, 0.1059091232825653, 0.5032670803381539, 2.2594111358550673, 0.5630553724966639, -0.9071879234365596, -1.1347343957476985, -1.1397556146009282, -0.9883821602388118, -0.36177049629921376, -0.19241559881026443, -1.0518581883621365, -0.0984140885071478, -0.6631144147870583, 0.3961871544181748, -0.2561185847313303, 0.11927014743121675, 0.376489444316787, -0.33037048306344796, 0.894310975332889, 1.437989713602832, -1.1397556146009282, -0.7592679277470883, 0.034305265942713214, 0.08336869264868302, 1.0680090421837984, -0.8768741421862405, 1.7107325174791754, 0.6374012835559703, 0.7944787747765618, -0.7788964591202542, 0.10744992438977835, -0.6639631434369289, -0.4414413870873072, 1.510481986461717, 1.7084722195750917, -0.9751558100348002, -0.5589099570077811, -0.4735774372761951, 0.6295294999981745, 0.6235349291163744, 0.8340525244800572, -1.1110898900040795, -0.4527414982613774, -1.1397556146009282, -1.1397556146009282, 1.116213901698676, -0.36460727568362944, -1.0818297297774064, 2.132999854788775, -0.18991024043024804, 2.2693975878952544, -0.5625182301170514, 0.8645936378204436, 0.18701767684723158, -0.6048133108155046, 1.241618134401084, -0.378052949310099, 0.42701791060967403, 0.3982318599407961, -0.3462530255148878, -0.9762456661205758, 0.12297875464922998, 0.18348720901319676, -0.3603201432303448, -1.0184067620475685, -0.10077429275731854, -0.9398884302220696, -0.8941186096585535, -0.9869489770878883, -1.1397556146009282, 0.97990286182498, 0.6792389433815823, 1.571292916556643, 0.7872674567683338, -1.1397556146009282, -1.1397556146009282, 0.5636504378881861, -0.6186355106425827, 0.15264799262683457, -1.096194861421618, -0.3872367284803198, 2.208611943326549, 0.5145522198190693, 0.3389584039101609, 0.6386222132506507, 0.8521898514501688, -0.99403619639506, 0.13776090141820652, 0.5057595107799553, 0.6545686349262282, 0.5511641408533953, -0.0748918950356257, -1.1397556146009282, 0.26993832810496116, -1.1397556146009282, 0.2786617395928904, 0.0923664425902754, -1.1397556146009282, 0.3906567535534368, 0.11845739837410744, 0.9670642784737404, 0.18934955370336579, 1.3585808036803966, -0.3744081737870357, -1.1397556146009282, -1.1397556146009282, 0.43483741206438337, 5.0, 1.1734388498719233, 0.34822516903673567, -0.8689079419031838, -1.1397556146009282, 1.0045712691129474, 0.3077596767712852, 0.2082551424137719, 0.06757084720424583, -1.0346595449649516, -0.013243120474108297, -0.5480809075825401, -0.20340852886409827, 0.9983848704419971, 1.2747360900151676, -1.1397556146009282, -1.1397556146009282, -0.88591737755752, -0.4867033820776823, 0.3301150287602342, 5.0, 0.36035870446323015, 0.8674115481185652, 0.1531530377426724, 0.37399815457541835, 0.2684127363368255, -0.24323323266241997, 4.923950838921952, -0.5281362833670179, 0.29221364094699726, -0.739927518291127, 1.834666957676205, 0.14963939523999473, 0.26268746581512065, -0.6961427303589337, 1.1439871054431716, -0.08546799414028462, 1.9828933740189474, -0.9118734217507907, -1.1397556146009282, -0.4241147178901808, -0.8610463058263047, -1.1397556146009282, 0.20918614408223285, -1.1397556146009282, 1.16955305385362, -0.30099421497987877, -0.5621713621276464, 0.6245020529651502, 0.6054804930442546, -0.015284594012172496, -1.1397556146009282, 0.9858316523152556, 0.5087829372724, -0.28892978698783456, -0.42858056007766326, -0.6036857759686154, 0.09486619252650752, 1.3544263727105867, 0.7450012738141301, -1.1397556146009282, 1.3225293467911832, 0.3809557617961136, 1.5918152580112943, -0.19293737419909407, -0.36509611334751074, -0.9335195907759313, 0.28815502881339394, 0.13107088350695395, -0.597323661902102, -0.7543977785505865, 0.19518936956002111, -0.8795134140439429, -1.0694892701044953, 1.6900670181204276, 0.12198330340641816, -1.1397556146009282, -0.25469793740285257, -1.1397556146009282, -0.7859758836411461, 1.079672133740858, -0.9393534417199167, 0.27451624410978787, 0.49861093129543205, -0.848232033653003, 0.5846142304096446, 0.7236920391788058, -0.9198908109656897, 2.409683588537621, 0.1302146927750998, -0.044779494940568765, 0.033682823740849833, -0.21366057398797605, 2.3584049215945706, -0.4847665202749785, -0.8704930164458765, -1.1397556146009282, 0.4777633001011977, -0.5084715585197594, 1.8102928510994387, -0.25090463317783, 0.15369857772381107, 1.152946927095432, 0.0619540382818561, 1.7987902180696775, -1.1397556146009282, -0.11026625116065185, 1.4295006209951069, -0.23521886155074365, -0.038674941525542676, -0.09223538956410621, -0.3123477964866558, 2.955315205945462, -0.7637188220060064, 0.3698336474184685, -1.1397556146009282, -0.30024477479669415, 0.9818682886676425, 0.3085949546619054, -0.46317928743877673, -1.1397556146009282, -0.23242946876339926, 2.765271472268115, 0.6948787067579522, -0.4815214176654385, -0.5841518039082638, 0.6486522020239547, -0.6481872564757896, -1.1397556146009282, 1.641524131044489, -0.3518202139685285, -0.8827934506041839, 0.7386179142020884, 0.11042867344867364, -1.0588256460063463, 1.0454418050897838, -0.020416129959528923, 1.0940335521675235, 2.1110915623104365, 1.673721921644206, 0.6767554484264914, 0.8192658149093598, -1.1397556146009282, -0.8246291831551708, -1.1397556146009282, -0.5550720704075813, -0.2133811023823754, -0.08948991374335737, 4.581984819505329, -0.4981349589764322, -0.9322630379573754, -0.3033157304737634, 0.6489826249154778, -1.1397556146009282, 1.4436825692206237, -0.22999350299293644, -0.9835240953374987, 0.4559474043577549, -0.15513703343237306, -0.07070267270266879, 0.41954423150230574, 1.212100609580811, 1.1490250088968113, -0.13787700015209373, 1.023694541488944, 0.945910559330511, -1.1397556146009282, -1.1397556146009282, -1.1397556146009282, 2.161993037644262, 0.8910092179352731, 0.3460725722650155, 0.6127994171264814, 0.09789703357175121, 0.9691732434539746, -0.6390637918408615, -0.9375626133369772, -0.390772519583033, 1.36231906910962, -0.04717810277191572, 0.037066046160914544, -1.1397556146009282, -1.0580968631950278, 0.09159894131692868, 0.15732828649534725, 1.1519668753084389, 2.080451968499512, 0.05712982604229271, -0.8711971137869291, 1.4566205836260995, 0.763498301653493, -0.4856624929343701, -0.6819530348763262, 0.9781378180247001, 1.1854814144390424, 2.112637971861443, 1.0906093595903108, 0.3420450442181549, -1.066943179213253, 0.38823894393150155, -1.1397556146009282, 1.0849693564258214, 1.4522543626095932, -0.04034093450506211, -0.5640519493757528, -1.1397556146009282, 0.7444691370630573, 5.0, -0.48341845001142675, -1.1397556146009282, 0.20105123895834298, -0.37129648559874034, -1.1397556146009282, 1.3057536359022488, -0.5279713095671801, -1.1397556146009282, -1.1397556146009282, 0.6482727290138989, -0.4099026361616157, 2.1986342366563103, 1.1132902864939493, 0.2843221803067658, 2.39000232353409, 0.6562869100088372, 3.022523374174349, -0.31502530557339037, -0.5060201457642939, -1.1397556146009282, 1.4451618675629303, -1.1397556146009282, -1.1397556146009282, 0.9332731194886111, -0.15693202061896616, -1.1397556146009282, 0.19558186556666401, -0.6053646493571688, 1.7480391250760012, 1.4457249933423797, 0.008120677665168021, -1.1397556146009282, 1.8624222904472758, -1.1397556146009282, 0.4418405522439511, 2.2503091068823897, 0.36053703396394604, 2.096406945428315, -0.41545523315557364, 2.9050399751482794, -0.22046162007451214, 0.08111105637893587, -0.7318429941029433, -1.1397556146009282, 0.6577141163647948, -0.4525659729825521, 2.407933373842937, 1.2600223852720565, 1.8540261649246847, -0.24129442216314506, 0.03324118255730182, 1.1318922587729634, -1.1397556146009282, 0.5963537488955881, 1.8603920337967843, -1.0743061806730703, -0.1297632930445507, 0.31012796098284007, -0.38756534526282527, 0.6618752014204498, -1.1397556146009282, 1.1691032376503194, 0.107525495793336, 0.25307126612317243, 0.7119479578911412, 1.1361936499816363, 1.0492952812625427, 1.5062016982110153, 2.287145365668167, 1.0191570252910458, 0.11891073173707192, -1.1397556146009282, -1.1397556146009282, -0.7128898286787251, -1.1397556146009282, -1.1397556146009282, 0.6350757756105779, 0.0037516048975872215, -0.8197655929861453, 0.2784165840585864, 1.9334130213054501, 0.6579388343497059, -0.9301168338609855, 0.05110188967288801, 1.2369091329050557, 1.5627116173307432, 0.14490216140829612, -0.33154863649196237, -0.15060826260444776, 0.1723726042467196, -0.353352744997616, 0.5964115443840937, 1.1832912696114655, 0.3890343923654062, 0.3291637796591246, 0.5050093101298166, -0.6605057754888455, -0.36908923026469964, 0.6777324583456692, -0.4221672095501207, 0.02494524855590056, -0.6185955385983106, 0.16698792786204686, 1.5649257168673731, 0.37511128807936545, 2.507678881166481, -1.1397556146009282, -0.6846262188072588, -0.7033337058761442, 1.3127054445624189, -0.3053040663834185, 0.22272749395735233, -0.8829522218454279, -0.17271351602389332, 1.7935755060492233, 0.39536043178078667, 0.4389312908529781, 0.5815311072613112, -0.7442137714544982, -0.742854650655521, 0.34235636037745887, 0.19304152570676286, -0.02588768969370089, 1.6368558145305, 0.8053336800782395, 2.9154290944405967, -0.08971605760380774, 2.114132669659577, 1.6241619100172617, 1.1847871081100223, -0.3686657452296794, 0.16070533012141108, 0.30141671696617534, -0.25745871762105066, -1.1123638058278942, 0.14197531421901177, -0.39710982341517054, 1.470980291002116, -0.07443437910441233, -0.03145383250528101, -0.1395100078774838, -0.22263646050463967, -0.5468805580248028, 1.1510813115404808, 0.9964443488920797, 0.2383543293955038, -0.7458617271084527, -0.3274244340835755, -1.1397556146009282, 1.1706108633866614, 1.9817000112513565, -1.1397556146009282, -0.9124411103319664, 0.7067047283599129, -0.08828942159806673, -0.20617805445226942, -0.6360022944715313, -0.5304369810780342, 0.7235011619733468, 0.4568502687489141, 0.18930097887667777, -0.12913600286585314, 1.018101307042129, -0.4760879763373364, -0.63071876019174, 1.1599439835393648, -0.3127491329216406, -0.9251810468605127, 0.6958285299835227, -0.048926986649420294, -0.1847410613686694, 2.6289946534073407, -1.0303240396840119, -0.2164706894998166, 0.019537187812391013, -0.1183972588914029, -0.6661830415340814, 3.847223169465341, 0.5760998522757023, -0.48181115557492005, 2.371257193350973, -0.7601241184789457, -0.498150548548988, -0.5934700906709773, 2.3012866289116487, 0.5701400727570496, -0.43801980861524714, -1.1397556146009282, 0.8230445752038839, 0.2802442713242055, 0.7363233952850735, 0.29926060303479163, -1.1397556146009282, -0.27857365294962494, -0.3514926903572682, -1.1397556146009282, -0.47251525505816727, 0.5272947942173614, -1.1397556146009282, 0.2546103561797395, 1.476050704418041, -1.057007054638437, -1.1397556146009282, 0.5538425054654528, 2.241363734102271, 1.8228308598871004, 0.3035043888716973, -0.3722971650518614, -0.0827005598362381, 0.6429144788558758, -0.22639411784118896, -0.1736252208433909, -0.5115814881282246, 0.5078852060331783, 2.245768738933423, -0.11574142311285611, -1.1397556146009282, -0.5879296136190962, -0.19790512457622636, -0.33346102076458417, -0.5974102125473069, 5.0, 1.0485230270707342, 0.007925522833094834, -0.31667989154859966, 0.16736854157253198, 1.3105424864284494, -0.7496474266639318, 0.23014290228436782, 0.5837993900684142, 2.2454759591561095, -0.07954547750237895, 1.0947645510270745, 1.9436116436258086, -0.19678372099415378, 0.4484336106185645, -0.8812768180873533, 0.026855826719504823, 0.5557372088813943, 3.8070933283017525, 2.001209600839998, 1.4334329956143457, -0.09915164639417805, -0.10462643811290372, 0.9642946578272006, -1.1397556146009282, 0.2288661733269374, -0.5668396311124513, 0.04237743254289487, -0.5771505173668984, -0.2881362397213132, -0.6303859133118015, 0.9959295127642048, -1.1397556146009282, 0.20685046489132838, 0.5203618071143045, 0.4000774181798333, -0.15157215446866618, -0.9755883018503068, 0.5050768015719834, 1.0717845704937654, -0.16498631624572674, -0.36577910773058936, 0.3650390933901119, 1.3078127902969934, -0.005892637013290837, -0.36038948831071393, -0.3339750964255015, -0.35216617890341995, 4.5212721797642095, 0.16282750821497363, 3.0772450552517006, 0.21522482204736273, 2.3274790119754654, -0.8152130813304984, -0.9723865220925528, -0.71928925315517, -0.2685712311034034, -1.1397556146009282, 0.9664026722237432, 2.8621040109243254, 0.27544876671215707, -0.626066080779494, 0.5777439818302929, -0.4127468776280184, -1.1397556146009282, 0.7396396015548158, 0.03921930834122, -0.26840392837351906, -0.0707031479945163, -0.9562482132163426, -0.6673899025901107, -0.921345821894653, 0.03653894750341015, -0.4044802691335298, -0.11727471460889768, 0.39824754457172395, 4.099641163178356, -0.49134517730664984, 0.08401613520166032, -0.0471166000070092, -1.1397556146009282, -1.1397556146009282, 1.067264164802334, -0.36412262058799677, 2.5994759878866414, 0.10137559953617845, 0.09761575585713281, 0.05859923831419646, 1.2702921112526138, -0.7097805169496636, -0.3068436317318298, 0.3685883827812596, 1.8392907868733819, -0.9969781935119428, -0.09353170054560334, 3.666624055123451, -1.1350051216120078, 0.9530716865197774, -0.5419750233503468, -1.1397556146009282, -0.4679025476901933, 0.45275448879293256, 0.27269188388709453, 0.6183171752281076, -0.9915269762687909, -0.39631708414479083, 1.648514723519314, 1.004829257527101, -0.8925982223361373, 0.5228614619921673, -0.8517965799124165, 0.12983512470667188, -1.1397556146009282, -0.6138705672962484, -0.3114650844697765, 1.3795721631289442, -0.6550316016495205, 1.3043163533591515, -0.10561171811020677, 0.7580524076790167, -0.46940214099433575, -0.5911339361882287, 0.24110959622828637, 0.15472739445423103, -0.4231692673495965, -0.5013052031201871, 0.2631646588287666, -0.34765142918496117, -0.7649113054836842, 2.172196983233299, -0.6419873595164044, 0.42718207641337325, -1.1397556146009282, 0.2759794775876939, 0.9587500932654427, 1.2334606053853172, -0.2766868393783299, 1.1045477682738003, 3.17441219936768, -1.1397556146009282, 0.8922656994600511, -1.1397556146009282, 0.5256113104979027, -0.5485057709639118, -1.1397556146009282, 0.12101171181429066, -0.657301785624007, -0.187273511383924, 1.2195849352255321, 1.0047773556574866, 0.17431331591337795, -0.07013555447170769, -1.1397556146009282, 0.17934969843311283, -0.011641482010573667, 0.8374839414933353, -1.1397556146009282, 0.6581582290659423, 0.41002204453754926, 1.373627402832631, -1.1397556146009282, -0.8243353577358095, -0.699197953875894, -0.9142453181803782, 2.0137333508722635, -1.1397556146009282, 1.0732836409768793, -0.9502756721116176, 0.5886686599750025, 0.22521355548841193, 1.5311292346135656, 0.04170004660360108, -0.7717538683129912, 1.149508665879568, -0.8002009646017078, -0.1292239318574129, -0.662722536659813, 0.6321181295096577, -0.12146013460708449, -1.1397556146009282, -1.1397556146009282, 0.31229091911681, 0.5425710543897098, -0.5658283526511584, -0.9252473738376586, 0.605181439414587, -1.1397556146009282, 0.4738881506202506, -1.1397556146009282, 0.42969266300370224, 0.3585832993007006, -0.9319934286575833, 0.3173855724168979, 0.5263712071017062, 1.1174344511598777, -1.1397556146009282, -0.3313064277671053, -1.1397556146009282, -0.8224421752537787, -0.9105609033173373, 0.5102276343683001, -0.33110766071699965, -1.1397556146009282, 1.2489994167735405, -0.4963929668306951, -0.6731914574531427, -0.48934662262230155, 1.1875586299239451, -0.28932266322795286, -0.413517420769178, -1.043468574337837, -1.1397556146009282, -0.4630557590879314, 0.6125224170384773, -0.9777716737690744, -0.22086980071208312, -0.6836061949759962, 1.8062505890053493, -0.052988545592470786, -0.570696339269764, 0.34822345798608983, -0.8132413568708692, -0.41634402890808503, 0.13258278686991726, -1.1397556146009282, -1.1397556146009282, -0.6876498829456258, 0.6304538475807869, -0.8809688527355675, -0.4008847813749245, -0.194330739775596, 0.03669541357919723, -0.8352137662192853, -1.1397556146009282, 0.30682677393544044, 0.1873342212168448, 2.9947716536213225, -0.9289076914040941, 0.26516002905774533, -0.35888352609583263, 0.16151988528753528, -0.5110460718634102, -0.7433971012396592, 0.3151575943583579, -0.15935581891816467, -1.1397556146009282, 0.8516978293309145, 1.0146025887034216, -1.1397556146009282, 2.0000453259334097, 0.0041547474415864006, 1.0991570081534925, -0.9774708140303903, -0.790457006461484, -0.1863369963300471, -0.42409641915409985, 0.2677393428490428, -0.44700277698042234, -1.1397556146009282, 0.6312599425520479, 0.6770031705367643, -0.8458647713189166, -0.8759524087087841, -0.26877655718098875, 0.1193223344759344, -0.5386195104449176, -0.45380672234722125, -0.21671175752424085, -0.9884904554859827, 0.4973320159955087, -0.8761355624217412, 0.20867653616466755, -0.5147496885170397, -0.05752263968907741, -0.43703866365700833, -0.0012692831079609283, 1.4849413235774858, -0.8727363226664576, -0.5492840613621682, 0.2098890056644847, -0.6054193554486739, -0.22425368854073313, -0.5462626310954789, -0.09019144450843897, 0.07377397614818479, -0.3262011279296643, -1.1397556146009282, -1.036585237409268, -0.7841477686128672, -0.30062757484967256, 1.0926869553086926, -0.1400722781316109, -0.8755432774875215, 0.5449410496519139, 0.3418360108641716, -0.29952556317492907, -0.5157785052474595, 0.03309184585920743, -0.9029705400617124, -1.0917197688665794, -0.3375620289308716, -0.43777284697193153, 0.5090658309792954, -0.6655076042913585, -0.20913560549482085, 0.2923321787334556, -1.0427902259325552, -0.8020060755046283, -0.9436860358382981, -1.1397556146009282, -1.1397556146009282, -0.23028286066893935, -0.054074967694658464, 1.6843538200116184, 0.2816539869402171, -0.13478959937714236, -0.3499352540354358, -0.9047245333265667, 0.9238157623316843, -0.8099519808258492, -0.13650492765030434, 0.12497574087048581, -1.0695453664246506, 0.2746430519743714, 0.41558609606500513, 1.286792913337672, -0.5014641407135741, -0.8328181051973844, 0.6022279758819121, 1.9313958827099142, -0.2794790839167525, -0.26730790537603566, -0.44906663676444747, 0.6468343057703719, -1.1397556146009282, -0.20764271380571142, -0.47375481619321946, 0.010201600426472703, -0.942149037065855, -1.1397556146009282, -0.27430942956332643, 0.7081378283347646, -0.7800480199699716, 0.39344823762490544, -0.6937368505623405, -0.1392003077104568, -1.1301532161959653, 1.0264911587123502, -0.6281300831510724, -1.024042844054324, -0.24709041611157695, -0.46602428937213347, -0.8949074753003874, -0.5369911130504392, -0.34791345757980385, -0.6106557883065004, -1.1397556146009282, -0.1703854415025292, -0.48010176844983704, 1.0737017076848518, -0.44903279598499196, -0.5126336892174782, -0.8242292725957251, -1.1397556146009282, -0.3336982864542383, -1.1397556146009282, 1.035047742762242, -0.6196510192013057, -0.4142822604081843, -0.5399791778295204, -0.5702705728338818, 0.6698582032702733, -0.48275218590133656, -0.9847085820298654, -0.7320882446956162, -0.3992834756156842, -0.6009347392332632, 0.5108793545478915, 1.2518728411593019, -0.49826000826118244, -0.2629235282110054, 0.2859276211050702, -0.8364687505747489, -0.13597041443999738, -0.8853177493642754, 2.0371184701753404, 1.0075707408963392, 0.6095609686027866, -0.12328535035510074, 0.1119878208211549, -0.9117634629821579, 0.898213121390702, -0.20377516899430467, -0.4490836522125425, -0.24483068855770554, -0.07213463197708794, 0.3368751997479912, 0.979371485540858, -1.016005789639286, 0.27260148337793827, 0.8180526800009605, -0.05153367725106232, 1.3871431820064237, -0.49689525525382366, -1.1397556146009282, -0.33903172637788526, -1.1397556146009282, 1.5376032799098767, 0.19039243907243336, -1.0897979738154022, -1.1397556146009282, -1.1397556146009282, 1.0762644813198985, 0.3329723882815928, 0.6400845912032306, 0.3830012277856889, -0.6755754262956257, -0.5429839253524057, -0.055571281485062775, -0.5029827456915671, -0.24312800304765536, -0.2729340300186146, 1.8769960692708512, 0.3695148216479965, 0.008907000495624423, 1.9627242694644491, -1.1397556146009282, 3.7679041847602366, 1.8548548837878283, -0.5279874219607678, 0.4165915284365879, -0.9946739429943746, -0.49416921886958814, -0.20695458627069227, -0.5175542906434645, -0.04275389615016672, 0.004952287159615302, 1.204274073806778, -0.42214910093078056, -0.9098203035624913, 0.43592668591764616, -0.3364727550776088, 2.105343572838486, 2.6618224908784645, 0.09500735420484513, -0.2344772161538368, -0.7520176120428734, 0.29454447216106777, -0.8254346364824371, 1.0552276839708479, -1.1397556146009282, -0.8728330445571721, 0.27761837893197533, -0.7183057792668847, 0.13564290589289266, -1.080404495882612, -1.1397556146009282, -0.3605480456706254, -0.7024690549494238, -0.16540324225327055, -0.65666955241011, 0.34949058604822447, 1.050232176549895, -1.1397556146009282, 0.04252524830708458, -1.1397556146009282, -0.48585037580119744, 0.16934528036113913, 0.09445905753100009, -0.07954870948693601, -0.6430095696901601, 0.3879147948923482, 0.7454121160860417, 0.029977543565759008, -0.8630638008907269, -0.21833079166934885, 0.3237489697713974, -0.6129772562711974, -0.20764280886408013, -1.1397556146009282, 0.14867246150795688, -1.1397556146009282, 0.981925323689194, -0.3117490238187357, 0.14105381838748068, -0.09155172977244247, 0.4490839049226203, -0.32843024668863396, -1.098743946651492, -1.1397556146009282, 0.1620095309475549, -0.2224644999146625, -0.4679542119138822, -0.27748523462168173, 0.38253867376090767, -1.1397556146009282, -0.5820259660674878, 0.6126235591433619, 2.2954002344540356, 0.910201122453869, 0.22916266038063637, 4.3193990023836015, -1.1397556146009282, -0.033855577262813116, -0.272951425700185, -0.6129171793818298, 0.28522742115715577, -0.12709766625397376, 0.7371648519696977, -1.1397556146009282, -1.1397556146009282, -1.1397556146009282, 0.7386829341266589, -0.04165416587628547, 1.898532683525427, -0.4639389939258424, -0.5176200235058012, -0.9284399329335951, -0.8660800980054769, -0.44197266831305726, 2.4351200674491427, 1.0546113255046161, -0.06166756482196018, -1.1026184099298353, 4.619608541821971, -1.1397556146009282, -1.1397556146009282, -1.1397556146009282, 5.0, -1.1397556146009282, -1.1397556146009282, -0.2751695176883227, -0.1616594634386314, 0.1886679851958233, -1.1397556146009282, -0.48269462805875335, -0.34404039938298137, 0.009151205446233834, 1.013043821564422, 2.7371627124801687, -0.4911241665981398, -0.002501714865317031, 0.8223025495734984, 0.08270803698237732, 0.07353851656754519, -0.3811187718352311, 0.3748200292359759, 0.9599529618699641, -1.1397556146009282, 0.17340864541320417, -1.1397556146009282, 0.9012260914625282, 0.999684318349679, -1.1397556146009282, -0.1415216330876038, 0.9814171416471711, -0.5445688335429517, -0.9104774183045413, -1.1397556146009282, -0.9382032354519618, -0.7203136496714221, -0.38256175788048197, -1.1397556146009282, 0.547072068173815, 0.4832850506543314, -1.1397556146009282, -0.6219554717179077, 3.6888966112727806, -0.005229129595910569, 0.8444785264196677, -0.6296153701706417, -0.32366829768093114, 0.5280191389910669, -0.09222673925250548, 0.9262589525382119, -0.9869486562658921, 0.5425558450506293, 0.19927421780353968, -1.1397556146009282, 1.6188994786954451, -0.4410698514510826, -0.8636399734313581, -0.3952779535813089, -1.1397556146009282, -1.082637244683058, 0.15660555771392198, 0.04959236276915884, 1.9423791168100801, 1.0404231034267326, -0.5182437489956506, 0.7021348923164706, 1.9552720735485307, -0.8314973404503987, -0.2913246875427803, -0.29969105979579885, -0.026137027796250288, 0.8450511580360446, -0.3529570645356005, 0.850528611389111, -0.46264662786666877, -0.02889970918183525, -0.7956337664280123, 0.757753734282828, 0.07496239588057983, -0.04484603579904372, -0.6243823594141099, -1.1397556146009282, 0.2581778017194149, -0.2408956523041322, -0.10681097449669588, 0.33774545911849946, -1.1397556146009282, 0.520399640345268, -0.41216906533051667, -0.16296670613259132, -0.679615834751517, 0.2198596780153752, -1.1069934624629578, -0.5339864130567384, -1.0574893273336912, 1.915954220975065, -0.5173142682611008, 0.22011177281063116, 2.280872653997943, -0.5893084827942872, 0.7968175908936513, -0.6780460883708639, -0.06941881436754586, 0.41674704392868356, 1.2076290638911749, -1.0248923094065567, -0.6552984304920124, 1.5672103497139858, -0.5208624169518191, 1.735171263747033, -0.14248134238357668, 0.39180325254499204, -1.1397556146009282, 1.2248068716820482, 0.8607519488854735, 0.854779811778819, 1.0768576455440337, -0.6550374477392303, 1.501449540215346, -0.04962271885397945, -0.14177924126827868, 0.6368202868030991, -0.3511113161798257, -0.4742273988759598, 0.43372399338532974, -0.1443543724913273, -1.1397556146009282, -0.6054725406062708, -0.5780710150855533, -1.1397556146009282, -0.6124301002977818, -0.28639343957943775, 1.709670905611364, -0.2858363975356199, -0.6746014582442642, 0.27999246170405284, 0.215388322442477, 0.18845543468217638, 0.04677407223756172, -0.8120124898023577, -1.1397556146009282, 0.93262900397856, -0.4371222674927661, 0.07515679024569917, 0.3684963662798264, 0.7483585452993897, 0.35493039628706524, -0.5142820963986864, 0.015063550838630728, 1.0431520390912303, 1.7482060475724062, -0.5155594907647019, -0.9345052272421179, -0.19971608156885387, 1.9280703607199832, -1.1397556146009282, -0.9471348010039622, 1.50852948755727, 0.5212751279260821, 0.6321626168264692, -0.9304816678821765, -0.6450899221012516, 1.0757848167886501, -0.5599067865969476, 0.7166006848325718, 0.2432693223777024, 0.054347562632644224, 0.775448849719172, -1.1397556146009282, -1.1397556146009282, -0.04715215183711033, 1.6819172838909393, -1.1397556146009282, 0.07572961197881702, 0.989477521009564, 0.6656809582918429, 0.36568701123493674, -1.1397556146009282, 0.026517228808228422, 2.243874415750975, -1.1397556146009282, -0.3333269884639357, 3.120148699630117, -0.6640553025259186, 0.9801830938975348, -0.33757932955407643, -0.6375231808503864, -1.019836154746018, -0.6521134523010245, 0.7156424964705069, 0.2230729360712151, -0.6921219989854781, 0.6927737342292255, 0.1901020357543669, 0.4102491389816947, 0.7740876138714767, -0.5761985553280189, -1.1397556146009282, -1.029433010059824, -1.1397556146009282, 1.1423348008688248, 1.2424510358324765, -0.937956701571306, 1.6159960158649977, -0.057930915385013916, -1.0826050971308065, 1.8221342721572185, -0.5762939939307469, 0.9991873531952253, 1.0250913291667407, -0.39920310376448026, -0.46490549989521707, 0.344771128131578, 2.114115939386557, -0.16864843992117926, -0.0925368196530079, 0.030689245576349392, 0.3128421626001056, 0.4243451544414044, -0.7621712717545762, 0.5472899419561431, -0.6000695654855139, -0.36305625580172335, -0.4636685053361337, 0.41031967229167754, 0.5118318394078029, 0.17213277198109686, -0.6149838909169334, -1.1397556146009282, 1.4326109308370476, 0.04732522066248504, -1.1397556146009282, 1.3499312525453762, 0.11450582196428312, 1.0583216437732785, -0.5305085600300808, 0.7633387937098867, 1.271112845212742, -1.1397556146009282, 0.18251761364682176, 0.10523848648748897, -1.1397556146009282, 1.0826297798417817, 0.4274437721039251, -0.5998708459645924, -1.103309721920224, -1.1397556146009282, 0.09058219699940749, 0.5949244512555066, 1.0743863180602078, 0.07161035260562992, -0.9466953223983158, -0.7135173089741602, 2.071845763980855, 0.48041447801964793, -1.1269111554542406, -0.893923668707809, -0.3981695341155986, 0.5297807606900554, -1.1397556146009282, 1.0041047226366582, -0.5682220649764905, -0.7701213121148579, 0.5176859140198468, 2.3335775767132034, -1.1397556146009282, 0.6740675779775104, 0.28089722726259875, -1.1397556146009282, -0.08801650901994254, -0.934313589569705, -0.8157836929565261, 0.42367889033131423, -0.38531369767034174, -1.1012616358843466, -0.446519690347882, -0.00734189691091518, 1.0885452621603602, -0.42534268190418484, -1.1397556146009282, 0.8100616932481212, 0.35410291318272286, -0.19921493384615485, -0.7970962869681456, -0.5605712921272045, -0.03399664388278201, 0.261792776443715, -1.1397556146009282, -0.7523321839513218, -1.1397556146009282, -0.03872380152734074, -1.1397556146009282, 0.5338144675309134, 0.3418581594642069, 0.46556788167632074, -0.6470239796820615, -1.1397556146009282, -0.28448837480124944, 1.0938133969843333, 0.6974568798488164, 0.6387841927118569, -0.5561335396878395, -0.7173676482207341, 0.6213717808656671, 1.765078908114721, -0.044421315005225476, -1.1397556146009282, -0.7372537640099811, -0.1408704832582219, -0.7851486381827258, 0.4663196032603678, 0.7134825802043531, -1.1397556146009282, 2.158788810133492, 0.8815374119062195, 3.3544067424811095, -1.1397556146009282, -0.09717376690514162, 0.1626492737726233, 1.3020058646360986, -0.1930468814404729, 0.48811496639605173, 1.877219646555333, 0.44793598005552576, -1.1397556146009282, 1.467078525177779, 3.3114913108649295, -0.035887259788847145, -0.5418662290467345, 0.26027155736056906, -0.8582437236902267, 0.12971478081119897, -0.0031959261359683247, 0.04242201491807551, -1.1397556146009282, 0.6279848014978227, -0.3602980896886782, -0.05415586236689107, -0.28904148057170653, -0.5313878024164841, 0.8970380098300037, 0.567292694364462, 0.08331108727691496, 1.0172328537806383, 0.2982273185610166, -0.9021654432033287, -0.701076022077213, 0.6268397283818068, -0.31759910597926855, -1.092215721055284, -0.8468790441188402, 1.4469780527658669, -0.10726316715923111, -0.6797079938405067, -0.06738855771705063, 0.7262977791967558, -0.3401253729161345, 5.0, -1.1397556146009282, -0.6545186666890326, 1.283944204127914, 1.2672814225816498, -0.6121059512586285, -0.6180179639467343, -0.24314216674467523, 1.3719952506325672, -0.6963864124885141, -0.24848264098764608, 0.3411782069489445, 1.4373602370816418, -0.9655365565927395, -0.1648257626600597, -0.019235314896673898, 0.1474611327085725, 0.3696023704060778, 0.2747867802286811, 0.45230334177246106, -0.5633073096402142, -0.8789273554329093, 1.9596930481857266, -1.1397556146009282, -0.8267585143910166, -1.1397556146009282, -0.6818419591718549, -1.1397556146009282, -0.2570430273723084, 1.5677443876324457, -0.11014647761539532, -1.1397556146009282, -0.13327351344593688, 0.43796578299647976, -0.9440853760475275, -1.1397556146009282, -0.2886879584964563, -0.8541171210580156, -1.1397556146009282, 1.0288959453377016, -0.9101397234477717, -1.0026813748450947, 3.8188315159705, -0.13445062123238735, -0.5163928674879386, -0.1981795580882586, 0.7007704244842214, -0.4181385408028338, 0.10459798319546657, -1.1397556146009282, -0.7324705219275659, 0.20679846796334853, -1.1397556146009282, -1.1397556146009282, 0.7199182219194843, -0.6249817024322463, -0.6113960553570527, -0.526747147887946, -0.08031202819203084, 0.0797985854746669, -0.07950099018557057, -0.4612079669772168, -0.416119786215018, -0.1629356220458454, -0.30288863322071086, 1.1307424327384856, -0.9669181349314547, 0.03589131483369186, 0.5148446193628913, 0.9127981171018464, 1.3074169672474283, 0.3191278022085571, 0.17446797588015367, -0.649443215179536, -0.8953725483719551, 0.20785599232128027, -0.741959985048709, -0.5806064119102551, 0.8352145179857994, -0.0009583471821357564, -1.1397556146009282, 2.092417916020997, -1.1397556146009282, 1.2926652391566125, 0.9370146169023882, -1.0728253376322627, -1.1397556146009282, 1.2012479856799925, -1.1397556146009282, 1.2838436323732454, -0.34785784843379147, 0.9107811686230483, -0.46713690005504876, -0.7451500013332654, -0.837504625389085, -1.1397556146009282, 0.870486876480621, -0.9223742108624106, -0.5373494355733358, -0.06845273616083092, 1.2271447372154423, -1.1397556146009282, 0.23226603096162182, 0.416128499119959, 0.25119814095704973, -0.34468527535999005, -1.1397556146009282, -0.15721291810010596, -1.1397556146009282, -0.18429172045721265, -0.289502608720949, 0.07087231942675201, 0.9938150343985547, -1.0910354822837933, -1.1258953839997141, -0.6988315513916097, -0.23036270969911143, -0.4391083220015591, -1.1397556146009282, 0.9022861823964317, -0.8148156898178371, -0.21367435745151714, -0.49390547942409657, -1.1339238831615197, -1.1397556146009282, 3.2769463390116296, 0.3520237965304329, 0.3260028037063711, -0.32385090480826473, -0.9931003467497693, -0.8474079013561765, -0.1518272911317382, 0.975816112414078, -0.45615233513770914, 0.049112603179541116, -0.6100038304809802, 0.1768407278350643, -0.45977767122426205, 0.109710032177125, 0.08214605190335673, -1.1397556146009282, -1.1397556146009282, -0.6339977986391042, -0.2653717565111014, 1.3974189917226174, -0.007418894190008615, 0.28428292120026327, 0.1385959891920889, -1.1397556146009282, 0.6512497670221483, -0.1986224350306046, -0.4275572092034748, -1.1003012760326591, -0.7635581971265611, 0.1914130807830969, -0.5727874808057619, -1.1397556146009282, 0.4691576659327694, 1.7423226949826345, 0.15082258676207733, -0.6295736870757239, -0.21887804270113653, -0.17295201747234581, 0.020526270144460977, -0.271487716930438, 0.18811873793828343, -0.034925649325487605, -0.4336041097175487, -0.13219193932057985, 0.24814790800447978, 1.9904476626234604, -1.0337754189548303, -1.1397556146009282, 0.629813914638978, -0.4843385674966062, -0.7482590991809984, 0.5884102913273737], [-0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.931268615191792, 0.5189145585808634, -0.3691694616489993, -0.3691694616489993, 0.09840772427089786, 0.45572368921147016, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.0837298523096064, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.35656027790860506, -0.3691694616489993, 0.19680503461879026, -0.3691694616489993, -0.3691694616489993, -0.23355075037137063, -0.3691694616489993, -0.3691694616489993, 0.1406529454436569, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.04633594068275384, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.025196676880013723, 2.0011771308965605, 0.13701972818591368, -0.3691694616489993, 0.8957853591953938, -0.19566148928869298, -0.3691694616489993, -0.3691694616489993, 0.67142225795732, -0.3691694616489993, -0.1634026914459312, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.1978895648895519, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.7048628144749546, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.0030305569976348183, -0.17745504287392402, 3.181247901456851, 1.0439785868861056, -0.3691694616489993, -0.218629399008885, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 2.2823234479454184, -0.3691694616489993, -0.3691694616489993, 0.735636636913094, 0.5032471573803406, -0.36900236563415106, -0.31040913559383987, -0.3691694616489993, -0.3691694616489993, 0.6346392898505632, 0.23178630348828844, -0.1135480875140727, 0.05082194290421879, -0.1501738058645318, 0.023775597315337745, 3.0791313668094467, -0.3691694616489993, -0.3691694616489993, -0.33869638380229644, 0.367217930108135, -0.24191196136514942, -0.3691694616489993, 0.8230161808696619, 0.1652594053612126, -0.18821357927032287, -0.3691694616489993, -0.004874321844096519, -0.300756307886394, -0.3691694616489993, 2.024578783025712, -0.3691694616489993, 0.8020615386832772, -0.13876539729469486, 1.03612164375319, -0.3691694616489993, -0.058263321974265564, -0.3691694616489993, 4.9788500056641825, -0.3691694616489993, 0.04465722377847221, 0.08235032562231027, 0.1984459380822907, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.2533854182306083, 1.6001729735672972, -0.08324701367701294, -0.3691694616489993, -0.3691694616489993, 0.05678447456143627, 0.6732004245332219, 1.172836219491741, -0.050958106922325275, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.20672047312644953, -0.15151499026096352, -0.3691694616489993, -0.3691694616489993, -0.27482301688400856, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.5085269839660478, 0.1146391034309109, 0.31980226087019165, 1.8821284273285444, -0.3121473369410902, 0.640748239792548, -0.3691694616489993, 0.01102524679079238, -0.3691694616489993, 0.5077657507259574, -0.3691694616489993, -0.3691694616489993, 0.5955249764434204, 0.1429136605234516, 0.7757669810334223, -0.06316082340424066, -0.11351227273767867, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.9787082747797164, -0.1864336235674265, -0.31154361537904, 0.8245537340423279, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.008482007776095351, 3.116762735712884, -0.13720348942935065, -0.3691694616489993, -0.3691694616489993, 0.3842751767356592, -0.2768511938094294, -0.06396477003651904, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.33682235588267206, -0.3137864794845527, -0.23413955045311205, 0.03875900398345487, 1.9641167352779856, -0.3691694616489993, 2.235701183996936, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.08376080242365358, -0.0053789846023601364, -0.3691694616489993, -0.3691694616489993, 0.17294336731489984, 0.6264889298907098, 0.08936811984048111, -0.3691694616489993, 0.4085251007154075, -0.3691694616489993, 0.25713716918123797, 0.05931313961546897, -0.3691694616489993, -0.13756779436905772, -0.16065504369519681, -0.3691694616489993, -0.3691694616489993, 0.06544913599975127, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 2.0259278170153543, -0.3691694616489993, -0.3691694616489993, 1.189179233728844, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.363389459225991, 2.221997309376139, -0.3691694616489993, 0.060949433256262966, 0.31791107304673333, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.14635216918586502, 0.1077048340422915, 0.300757826055485, -0.3691694616489993, 4.463014068735863, -0.3691694616489993, 3.351483560546008, -0.3691694616489993, 0.8811094889510274, -0.3691694616489993, -0.3691694616489993, -0.2536543322479808, 0.16501637421879586, 1.7933668391834012, -0.3691694616489993, -0.3691694616489993, 2.5740851228764203, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.11021750978121095, -0.17481672528892894, 0.7049381834643391, 0.3595879965660003, -0.3691694616489993, 0.3542554955026804, -0.3691694616489993, -0.010319811918448536, -0.3691694616489993, -0.3691694616489993, 1.2974822149181087, 2.141375314192376, 0.602134366159234, -0.3358194091680182, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.6890901287922548, 0.04327318092550326, -0.3691694616489993, 0.310600796860775, -0.3691694616489993, 1.3476975616539495, -0.3691694616489993, 0.20499704416559258, -0.3691694616489993, -0.3691694616489993, 0.8136579184152658, 0.15103433064616847, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.11230746800182244, -0.3691694616489993, 0.5439553089282699, -0.3691694616489993, 1.8515888354622052, -0.3691694616489993, 0.0980688861838906, -0.3691694616489993, -0.3691694616489993, 0.5268019329909304, -0.3691694616489993, 0.5567455360310303, -0.29764689382209164, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3381604717651268, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 5.0, -0.21793621706759359, 1.2196347527447489, -0.3691694616489993, 0.7051072962608801, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.01268036350813498, 0.2566093283633666, -0.3691694616489993, -0.22422100112104074, 0.19572975317742478, -0.3691694616489993, -0.3691694616489993, -0.014993914248151876, -0.3691694616489993, 0.6340585166629007, 0.17775324987697572, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.07123742620082968, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.14867313432603452, -0.3691694616489993, 1.4462330055003512, 0.6261592792125885, -0.3691694616489993, -0.2576912877714648, -0.2063818737608245, 0.3823670969744618, -0.21394267608065953, -0.3691694616489993, 0.21590382021027438, -0.11176874430510056, -0.3691694616489993, 0.09192276753157204, -0.3691694616489993, -0.3691694616489993, -0.33503760096750274, 0.35081979141771746, -0.3691694616489993, -0.002451360347034528, -0.027799260279922158, -0.3691694616489993, -0.3691694616489993, -0.2633926713606733, -0.3691694616489993, 0.6006635425879472, -0.3691694616489993, -0.3691694616489993, 0.6424068088703261, -0.3691694616489993, -0.2547342557485743, -0.1696017585863013, -0.056020240272226324, -0.04258631429006508, -0.3691694616489993, 0.4906592466921961, -0.28076871301739986, -0.3691694616489993, 2.363172904031308, -0.3691694616489993, -0.3691694616489993, -0.3106953838241073, -0.3691694616489993, 0.054075284981933355, -0.24196320131751328, 0.15345687306844077, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.11300548542147405, 0.37071946117185123, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.12654601453069428, -0.14407926564806253, 0.21565972526261842, 0.8623701405843678, -0.3691694616489993, -0.3691694616489993, 0.5317764797094544, -0.3691694616489993, -0.3621594621212069, -0.3691694616489993, -0.3691694616489993, -0.12842209954340497, -0.3691694616489993, -0.3691694616489993, -0.1658196085950433, -0.3691694616489993, -0.19088630934298606, 2.0911871750814295, -0.3691694616489993, -0.21205654939121982, -0.19524955488713064, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.23480110030679296, -0.3691694616489993, -0.3691694616489993, -0.17767146276709525, -0.2528609591950522, -0.3691694616489993, 0.22108925825837736, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.21903218129062024, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.27971221240287, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.4127968267724421, 1.5533915901442075, -0.3691694616489993, -0.3691694616489993, 0.0369816433206121, -0.30220751553379616, 0.16999446695478485, -0.3691694616489993, 3.8723104848192955, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.01782176951917001, -0.3691694616489993, -0.3691694616489993, 0.05185818591695239, -0.32428813915216115, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.7524728699430052, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.16137109744913516, 2.220785474025877, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.7756424191108454, -0.3691694616489993, 0.5432625460617678, 0.9126825837256963, -0.07268968153521083, -0.3691694616489993, -0.3691694616489993, -0.15322334864759732, 0.1406380844068274, 0.08446945789569996, -0.2237368085545058, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.27387436050265124, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.9922113739616504, 0.23070399448503764, 3.5069466398235924, -0.3691694616489993, 0.29742411832741245, -0.3691694616489993, 1.961890352094537, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.30326817771225234, -0.3691694616489993, -0.34989911328527246, -0.12011212044285921, -0.08391946753439804, -0.3691694616489993, 4.340856732839224, 0.5267136049195368, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.20295692055608364, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.8498134993229599, -0.30464197338066246, -0.3691694616489993, -0.05780778767614986, -0.3691694616489993, 0.03457618625521465, 1.404917517870296, -0.3691694616489993, -0.2517723076560172, 0.20332055158135848, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.17985816584398348, 0.0887262584428606, -0.3691694616489993, -0.1298282082959601, 1.9136825670280488, -0.3691694616489993, -0.183991175092569, -0.3691694616489993, -0.3691694616489993, -0.13380174652074156, 0.3046973869856505, 1.1034741836921231, -0.3169833713819686, -0.3691694616489993, 0.2920549965746394, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.23050528856092675, 0.10562905989153958, -0.3691694616489993, -0.3035126393503514, -0.275126257791149, -0.3691694616489993, -0.3691694616489993, 0.06415338898165134, 0.27486254997214565, 0.1858297882005203, -0.15698962215156942, 0.09316745189818122, 0.7247457212374363, 1.5101987763953313, 0.011294196097223017, -0.078002582792906, -0.3691694616489993, -0.3691694616489993, -0.25774974064571693, 0.5691213304017432, -0.3691694616489993, 0.5878315369521467, 0.3694432172498051, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.7009830845303743, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.049271105231785545, -0.1788802195294835, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.3807045369452255, -0.3691694616489993, -0.3691694616489993, -0.2077986044475136, -0.3691694616489993, 0.3459627790598852, 1.0479524474761097, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.10608009414224256, -0.3691694616489993, 0.8421871117982902, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.18299961495242537, -0.3691694616489993, 0.043042786499868556, -0.3691694616489993, 1.219972849391742, -0.3691694616489993, -0.3691694616489993, -0.058651546413598966, -0.22593553280171444, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.06045785547356188, -0.3691694616489993, -0.3691694616489993, 0.37367806472520876, -0.33981926448377847, -0.1682192953229295, 0.02394058383701076, -0.3691694616489993, 5.0, 2.4546704703060693, -0.3691694616489993, -0.3691694616489993, 0.37233728328530635, -0.3691694616489993, -0.3691694616489993, -0.04048645945707538, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.38302820357596024, 0.5014139308241672, -0.3691694616489993, 0.6743176134537165, -0.3691694616489993, -0.3691694616489993, 0.11767130296491923, 0.5990548756468538, -0.19851788694776296, -0.3691694616489993, 0.5924533516425087, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.19223337995729334, 0.4200145841390968, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 2.007909406235778, -0.3691694616489993, -0.2691127198963548, -0.3691694616489993, -0.3691694616489993, 0.7560214663294333, -0.3691694616489993, 1.189180007405383, -0.3691694616489993, -0.3691694616489993, -0.31843947092164576, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.2749638098956157, -0.3691694616489993, -0.3691694616489993, 0.7833875659840597, -0.2142702958578695, 0.41156616529307904, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.73373584260596, 0.10084548233174472, -0.3691694616489993, 0.5963535195422952, -0.3691694616489993, 0.6527217223636368, -0.3691694616489993, -0.3242917496426706, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.43732747276662, -0.3691694616489993, -0.19944346197907767, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.6126431500982933, -0.3691694616489993, 1.2589086369377995, 1.4046708440008473, -0.3691694616489993, -0.3691694616489993, 0.2443725378772663, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.06154716285471123, -0.28530581818600953, -0.3691694616489993, -0.3691694616489993, 0.05274984812669685, -0.011078788601971286, -0.3691694616489993, -0.12906697505587186, -0.3691694616489993, -0.3691694616489993, 1.3785128402599016, -0.3691694616489993, -0.08873051061128005, 0.14566272668117203, 0.6967842774870229, 0.3814369443569663, -0.3691694616489993, -0.3691694616489993, -0.14681706514120274, -0.3691694616489993, 0.7673762010894668, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.09181657737423168, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.05568272388263859, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.671694082691566, 0.9101179749491826, 5.0, -0.3691694616489993, 2.682686356370987, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 3.5342875949907353, -0.00568600524175218, -0.3691694616489993, -0.3691694616489993, 0.2691018189451878, 0.4648270897197286, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.6489889973385472, -0.3691694616489993, 0.34148422347509505, 0.5724329238754451, 0.0005952811490136992, -0.21888087612017254, 0.37304352101817384, 0.45022246218988066, -0.18354602095466754, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.3095082430207192, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.34282239674849174, 0.3320911455764974, 0.019428373322827444, 0.17974553143469854, 0.18935833347001185, -0.32203639388472566, -0.3691694616489993, -0.3691694616489993, 0.3068777364150873, -0.3691694616489993, -0.2344482473916698, -0.3691694616489993, -0.3691694616489993, 0.1339469428701937, -0.3049183773829002, -0.15512812416524782, -0.3691694616489993, 0.06684729844953528, -0.07714750903609235, 0.10405617549031577, 0.4053136983533444, -0.3691694616489993, -0.24236905107547144, -0.17872815985329546, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3548228673331823, 1.233600774765739, 0.20236557684160858, 0.2747567497056102, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.0013201193553069287, 1.022752513181065, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.6124895108325071, -0.3691694616489993, -0.3691694616489993, 0.8566814259484654, 2.126233690672276, 0.07962466317985789, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.24584598567259167, -0.09945395755304107, -0.3691694616489993, 0.2241687487707577, 0.06718600759045347, -0.3691694616489993, 1.1819622500387283, -0.3691694616489993, -0.3691694616489993, -0.25099224022771144, 0.27293699801580423, 0.05320789687356039, 0.8298258238626597, -0.3691694616489993, -0.3691694616489993, 0.15311487580223804, 0.05254895011906295, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.31622329767965685, -0.3691694616489993, -0.3691694616489993, 0.9724055124877176, 0.5526828960583189, -0.22475696554255917, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.11928976980882404, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.07861217848413717, -0.2668875617007734, -0.3691694616489993, 0.19663998362407267, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.15850220813763283, 0.7203756093140187, -0.26741665168388895, 4.650091118698516, 0.03327960108753138, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.6190851677897754, 0.5600361112921234, -0.24506925472435495, -0.3691694616489993, -0.3691694616489993, -0.15632098832208963, 0.16396243335525998, 0.43349680043182043, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.3953262498319503, -0.3557814334230054, 1.858731675150804, -0.3691694616489993, -0.11441346083979403, 3.629862694511564, 0.1623540887793913, 5.0, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 2.1667281785496937, -0.3691694616489993, 0.4065788529116818, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.2509668472779132, -0.3691694616489993, -0.09402348969812978, 0.004955722115709046, 2.2772380720628567, 5.0, -0.3691694616489993, -0.09223065550453224, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 3.2036914841401183, -0.3691694616489993, -0.3691694616489993, -0.2595102254890801, -0.3691694616489993, 1.1299987811658676, -0.3691694616489993, -0.3691694616489993, 4.756383443512297, -0.3691694616489993, -0.3691694616489993, -0.3408349345508694, -0.3691694616489993, -0.3037417604333504, -0.3691694616489993, -0.3691694616489993, -0.3472142804132285, -0.3691694616489993, 0.2599951947846893, 0.2608740268585159, -0.3691694616489993, -0.3691694616489993, 0.23021464407491743, 2.1530106356434233, -0.3691694616489993, -0.3691694616489993, 0.3503589380934055, 0.2943742854156464, -0.3691694616489993, 2.359680786032119, -0.3691694616489993, -0.3691694616489993, -0.05343109950216091, 0.7259512382293223, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.9790624833106017, -0.06971657154676904, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.1786035203919495, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.650448725168805, -0.3691694616489993, -0.3691694616489993, 1.018645838118748, 0.7244468242016912, 3.3237588618161467, 0.643730762845532, -0.3691694616489993, -0.3691694616489993, -0.29226003392286565, -0.3691694616489993, -0.1294985898543611, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 3.572885027997618, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.1965210308563968, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 5.0, -0.23367231429736265, -0.3691694616489993, -0.3691694616489993, 2.431353406811711, 0.3553323887701681, -0.2335448672060316, 0.2509295110076475, -0.3691694616489993, -0.14210732533597895, 0.3677365512806003, 0.34717364731448963, 3.644372997976869, 1.0727612882813304, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.060563655740097415, 0.07366290519917702, 0.0495992116093668, -0.3691694616489993, 1.9914579483373025, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.4457792378336463, 2.6073147880644822, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3170432507223373, 0.6709900306649034, 1.040307878552804, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.293337596098193, 1.4925813879544847, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.057210609151117905, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.22802926574798485, -0.3691694616489993, -0.2981409991192661, -0.3691694616489993, -0.11410598888908796, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.34221791964294773, -0.3691694616489993, -0.3691694616489993, 0.4523816644606193, -0.3691694616489993, -0.008218796570652822, -0.3691694616489993, 0.03346563805833579, 0.03160884660428512, -0.12182932775489205, -0.3691694616489993, 0.4563976259488861, -0.3691694616489993, -0.3691694616489993, 4.2058305771981965, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 2.728296135623759, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.7341163625164383, -0.3691694616489993, -0.14547196400729895, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.5631389410467249, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.4276398819993232, -0.3691694616489993, 0.10616347695998235, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.3507226305391873, 2.575280711019406, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.6537135820623383, -0.3691694616489993, -0.3691694616489993, 0.025873453483937988, -0.14375730338053627, -0.3691694616489993, 5.0, -0.3691694616489993, 0.4597537702965522, -0.3691694616489993, -0.23391658654589245, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.10949525049671005, -0.3691694616489993, 0.2360372047518498, 1.690290043006562, -0.3691694616489993, -0.3691694616489993, -0.1567700753157252, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.9187774849212376, -0.22145591341168505, -0.3691694616489993, 0.18197449353992268, -0.3691694616489993, -0.3691694616489993, 0.7119226773548658, 0.1311770841555223, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.16891808947165562, -0.3691694616489993, -0.18915588505676612, -0.3691694616489993, 0.02151974995042527, -0.3691694616489993, -0.3691694616489993, 2.727345287158873, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.26789907429422793, -0.3691694616489993, 0.30351321057159636, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 3.373027099523717, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.44450163997766046, -0.3691694616489993, 0.23469255492925775, 1.3581519948162335, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.0985295108000112, -0.3691694616489993, -0.3691694616489993, -0.29603686488792674, -0.3691694616489993, 0.7344663222036746, -0.3691694616489993, -0.3691694616489993, -0.0012819160237207284, -0.3691694616489993, 3.9576521647754603, -0.3691694616489993, -0.3691694616489993, 0.5033712679916016, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.25994819894161564, -0.3691694616489993, -0.24479181109426962, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.011427716720490363, -0.3691694616489993, -0.3691694616489993, -0.16806241628664167, -0.3691694616489993, -0.3691694616489993, 1.756999915634814, -0.29414909413584434, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.1284648935268977, -0.3691694616489993, -0.08661666512756648, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.24277869973647997, -0.3691694616489993, -0.3691694616489993, -0.11608408637695115, -0.3691694616489993, 1.1116865022480404, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.2966316156605898, 0.25646497321603323, -0.3691694616489993, -0.36309573161882974, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.09612560108768915, -0.3691694616489993, -0.3691694616489993, -0.28944746987513686, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.12485124689079247, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.02047882958940538, -0.3691694616489993, -0.33819541011106674, -0.3691694616489993, -0.27075589603468325, -0.069400718100238, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.15436226498419323, -0.3691694616489993, -0.3691694616489993, -0.3608993671858004, -0.3691694616489993, -0.05398917817804977, -0.03199626207801996, -0.3691694616489993, -0.3303789318729008, -0.3691694616489993, -0.10594199288025563, -0.3691694616489993, 0.04969185937476179, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.05474773883931636, -0.19628889260601545, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.202547500603269, 0.044661027688115314, -0.3691694616489993, 1.3604119039829667, -0.3140081901969638, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.1885293360072875, -0.3691694616489993, -0.3691694616489993, -0.345698990588849, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.40601252168605706, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 3.043643855592079, 0.5252759204932846, -0.3691694616489993, -0.22830451424200923, 0.4238091451914813, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.12084221320230426, -0.016879041605397285, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.20271430848845767, 5.0, -0.29298788624400457, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3168601875707254, 0.3454816167264563, 2.2255693739508837, 0.10502130473462408, -0.3691694616489993, -0.3691694616489993, -0.3548794363856565, 0.3393350145263015, -0.3691694616489993, 0.08609140628402302, -0.3691694616489993, -0.3691694616489993, -0.22594062617225463, -0.3691694616489993, -0.193376387279698, -0.287623624146985, 0.060797502526165725, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.08984086844156283, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.14285756592192955, -0.3691694616489993, -0.17642566624046258, -0.3510095083586701, 0.14650168217678122, -0.3691694616489993, -0.3691694616489993, -0.3460136774762263, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.14526104044119775, -0.3691694616489993, -0.10323726805910563, -0.15431355559883694, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.049037132552163555, -0.3691694616489993, -0.3691694616489993, -0.35299980132591624, 0.19180772891544803, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.0018215584613284672, -0.3691694616489993, -0.04078097232577458, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.1711687789929832, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3584855094841429, -0.10394292553456787, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.05777271739230784, -0.3691694616489993, -0.3691694616489993, -0.045599494275855815, -0.3691694616489993, -0.3691694616489993, 0.026060941098251023, -0.3691694616489993, -0.251681537668053, -0.3691694616489993, -0.26000414542625094, -0.3691694616489993, -0.3691694616489993, 0.15136591551563458, 0.24376462153773726, -0.3691694616489993, -0.3691694616489993, -0.09210776988112189, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3507262399919426, 0.9463162370125426, -0.29526431662847225, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.18498256098437516, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.05271947827005274, -0.002613026506898611, -0.3691694616489993, 0.5108222243613393, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.31669981795385943, -0.3691694616489993, -0.1874877739683567, -0.3670261771685894, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.3392075513167093, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.28267801776644924, -0.3691694616489993, -0.36450289863597335, -0.3691694616489993, 0.10589591382401384, -0.3691694616489993, -0.3231035839589689, -0.3691694616489993, -0.3691694616489993, -0.22563052694497227, -0.1125969166839659, -0.2907555070674043, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.14897609011106777, -0.33509923719834256, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.09687632522147596, -0.3691694616489993, -0.3691694616489993, 0.43681587277871947, -0.3691694616489993, 0.6807293932871811, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.03420965394292463, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.13183135356173348, 0.3981700849882237, -0.06712053216090957, -0.3691694616489993, -0.3691694616489993, -0.0888367621891295, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.29349445095708904, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.005870368965927505, -0.33879365750865587, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.17489533404881544, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.28177328669940593, 0.8428838075205223, -0.3691694616489993, -0.3691694616489993, 5.0, 0.05825346065094511, 0.2316802453295726, 0.06589461250287747, -0.3691694616489993, 2.89386523572945, -0.3691694616489993, 0.574438422407353, -0.3691694616489993, -0.1066865114834784, -0.2654022800491884, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.5052428560094371, -0.3691694616489993, 2.744889176328636, -0.3691694616489993, -0.3691694616489993, 0.10137451590094655, -0.3691694616489993, -0.3691694616489993, 0.19327539330753726, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.31545610165994986, -0.3691694616489993, 0.12786700579837565, -0.3691694616489993, -0.3691694616489993, -0.1723600927442129, -0.1915914832706125, -0.3691694616489993, 1.015455711861472, 0.39074227444157367, -0.3691694616489993, 0.6373316197288493, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.27869634787889147, -0.157769939412924, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.8341916869424282, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 3.3998174548881632, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.09374986914848812, -0.3691694616489993, 0.3836973048350139, -0.2495105207118523, -0.3691694616489993, -0.3691694616489993, 0.543356612234149, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.10634175799461174, -0.3691694616489993, 1.4518397104232532, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.24250069196725255, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3330676633493732, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.10562676804591213, -0.3691694616489993, 5.0, -0.3691694616489993, -0.3691694616489993, -0.3122252687340062, -0.3691694616489993, 0.028596021220241515, -0.3691694616489993, -0.3691694616489993, -0.1729836115605856, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.20582669637195214, 1.6869331894554043, 0.0007969850697064808, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.2953727441715841, 0.24093709168448155, -0.36915265431048677, 4.721315264978372, -0.3691694616489993, -0.3691694616489993, -0.15839760062242608, -0.3691694616489993, -0.3691694616489993, -0.0004995033884099363, -0.3691694616489993, -0.08809064787804893, -0.29707099640844303, 0.1656205188852019, -0.3691694616489993, 0.5223632217478332, -0.3691694616489993, -0.3691694616489993, 3.7627914130587867, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.008174600298433839, -0.35883356217960144, -0.33589693196005627, -0.3691694616489993, -0.3691694616489993, -0.3552486473211178, -0.3691694616489993, 0.33549577365386163, -0.3691694616489993, 0.19909144220694283, -0.10449339639116842, 2.3984484278773253, -0.3691694616489993, -0.3691694616489993, -0.26287459014995945, 0.7108782140289186, -0.3691694616489993, -0.3691694616489993, -0.08173308987527074, 0.12393979145629169, -0.0516141846263277, -0.3691694616489993, 0.347798262172624, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.01957059780714675, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.2798394821933286, -0.3691694616489993, 2.3527432285182215, 1.7521421296004343, 0.2961608334873752, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 3.003728593549237, -0.3691694616489993, -0.25261082795857515, -0.3691694616489993, -0.3691694616489993, 3.8580918574087235, -0.3691694616489993, -0.08780674082522004, -0.3691694616489993, -0.3691694616489993, 0.028005609312379064, -0.3691694616489993, 1.9837864296812595, -0.23534351203279255, -0.29664929434059184, -0.3691694616489993, -0.2899777364913201, 0.2488863602175675, -0.3691694616489993, -0.12385360406110144, 0.15958522939691472, -0.21392160951326744, -0.09699244117518134, -0.3691694616489993, 1.4879353313992734, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.0034903142801873655, -0.011204124201084957, 1.5927570260608925, -0.3691694616489993, -0.3467176929038287, -0.3691694616489993, 2.3259961990398668, -0.2353224374062698, -0.3691694616489993, -0.07675299847489019, -0.3691694616489993, -0.0687613066783187, -0.3691694616489993, 1.4284392188088972, -0.25982252485901686, -0.3691694616489993, -0.3691694616489993, -0.3045859704821129, -0.046642506958294444, -0.3691694616489993, -0.3691694616489993, 0.005273251861406694, -0.3691694616489993, -0.31776324539113987, -0.3480137381097614, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 5.0, -0.3691694616489993, 2.6662774506820814, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 5.0, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.27973910266915103, 0.7356799627992073, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.2858488746424572, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.2364297230259806, -0.3691694616489993, -0.3691694616489993, -0.32871817474116527, 5.0, -0.30214588333252174, 0.05790462924199283, 0.4977519263519174, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.4882309984054603, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.784672262252283, -0.3691694616489993, -0.3691694616489993, -0.29376834856970957, 1.6381430838481676, -0.3691694616489993, -0.3282177228786419, 2.7886924208657935, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.12940047799842064, -0.3111080233995972, -0.3691694616489993, -0.26395783401236067, -0.059012724410632836, -0.2703227419422475, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3279525130088095, 2.3852907688921614, -0.3691694616489993, -0.21922448521249577, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.00017862104438106665, -0.3691694616489993, 0.23651501448694742, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.10981739006510981, 0.035818001571330804, -0.3691694616489993, -0.052089415439632976, 0.24817490016807278, 2.169226637982231, -0.24773829371520265, -0.24679046742429728, -0.31372068071275716, 0.5112002298230696, 2.505071628357063, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.3769999157903543, -0.3691694616489993, -0.3691694616489993, -0.23155292413179482, 0.1241169311469105, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.1823165361083723, 0.2151491632207553, -0.3691694616489993, -0.27594258324803056, 0.1906120762994179, -0.06477042520448428, 1.5457492133044248, -0.3691694616489993, 0.6979311240081297, -0.3691694616489993, -0.3691694616489993, 2.2342737507848027, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.24595844583354162, 5.0, -0.3691694616489993, -0.26331581949125793, -0.14455344877439064, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.08702004073242987, -0.3691694616489993, 0.8986468018702212, -0.3691694616489993, 0.089512539460859, -0.3691694616489993, 1.2321047422339324, -0.3691694616489993, -0.3691694616489993, 0.5264524890880504, -0.06884699135487302, -0.3691694616489993, 0.18309174693346192, -0.36757353644523477, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.2119405623836038, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.22086432487075533, 0.3189786821957682, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.23948380172884817, -0.12281344431089568, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.15039346552820507, -0.3388344427538471, -0.3691694616489993, 0.10629745194710132, -0.3691694616489993, -0.3691694616489993, 0.009629727735845469, 0.10608137053741525, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.23811366893529654, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.1911191376260618, -0.3691694616489993, 0.07721066343602194, 2.3370551314703145, -0.3691694616489993, -0.3655133987707835, -0.20979726883667194, -0.3448284150943239, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.21896433647668107, 0.3705191434216204, -0.3691694616489993, 0.501754670865997, -0.3691694616489993, -0.2754660226781753, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.04045203085114553, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.1586903757714525, -0.3691694616489993, -0.1703103334670416, -0.3691694616489993, -0.3691694616489993, 0.15092266333255588, 0.19623077320865456, -0.013033127772821543, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.1579574592637589, 0.28262742559706944, 0.5670331774263874, -0.1981228283656802, -0.17159835983802565, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.30737952304075306, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.47498733237853813, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3260216823219237, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.33529664560242495, -0.3691694616489993, -0.10765591206700388, -0.3691694616489993, -0.3691694616489993, -0.2969891317597935, -0.3691694616489993, -0.3691694616489993, -0.20287279935086575, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3180046324709143, -0.3691694616489993, 1.2468147831920489, -0.1083607313928849, -0.3691694616489993, -0.24460995681224812, 0.4165304607974802, -0.3691694616489993, -0.3691694616489993, -0.26251587824688905, -0.3691694616489993, -0.2742835547998091, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.026019288458764642, -0.3691694616489993, -0.16115242099939575, -0.061079440098589885, -0.043316020211242846, -0.3691694616489993, 0.15990927092013701, -0.3691694616489993, -0.3691694616489993, -0.046550536159871356, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.25670526120150855, 0.10603881832783854, -0.3691694616489993, -0.3691694616489993, -0.19715434652304334, 0.2311104325595297, -0.3691694616489993, -0.3691694616489993, -0.36809230243020197, -0.3691694616489993, -0.3691694616489993, 0.4214482712365722, -0.3691694616489993, 0.07282833387061398, -0.31680641302178725, -0.3691694616489993, -0.28858382926249415, 0.36171051367424156, -0.20771622401450565, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.2883160112868829, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.24563616620738293, 0.04656382065964065, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.10901569998940114, -0.3691694616489993, -0.2356524023904848, -0.0649876026559319, -0.3691694616489993, -0.3691694616489993, 0.4019090702759801, 0.6179439948966096, -0.3691694616489993, -0.3691694616489993, 0.3083190313318489, -0.23160529236244293, -0.3691694616489993, -0.3691694616489993, 0.23595899894849254, 4.8193328613288475, -0.16564985106805427, -0.3691694616489993, -0.0938430941187486, 3.9399396141204597, -0.3691694616489993, 5.0, -0.3691694616489993, -0.3691694616489993, -0.3027123233564094, -0.3691694616489993, 2.7334728053377635, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.0613992586373775, 0.9420111139182952, -0.3691694616489993, 1.5061460007984782, -0.3691694616489993, -0.3691694616489993, 0.38689632837247334, -0.3691694616489993, -0.3691694616489993, -0.004904817594294128, 1.8117419148468799, 0.726301842647008, -0.2721945878522614, 5.0, -0.3691694616489993, 3.281181120914767, 5.0, -0.26706655499143156, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 3.0195858678667293, -0.3691694616489993, -0.3691694616489993, 1.6035588399886191, 1.3789956144194506, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 2.539906672360927, 5.0, 0.29850075370272194, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.43620569988262287, -0.3691694616489993, -0.3691694616489993, 0.5850383712317763, -0.3691694616489993, 1.5491773740431467, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.03276704038127894, -0.3691694616489993, 1.2469693895535072, 2.4296796865683925, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.2817751564177063, -0.14891643642635616, -0.3691694616489993, -0.11644442622440376, -0.3691694616489993, -0.2869805135841203, -0.3691694616489993, -0.137525919126453, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.5932070415363553, -0.12698626871718885, -0.3691694616489993, -0.07359572123394634, -0.3691694616489993, 1.428508978643385, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.6511904230763172, -0.3691694616489993, -0.036313667287304494, 0.05129823752276533, 5.0, -0.3691694616489993, 0.6701844399699829, 5.0, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.8099477589558481, 0.44426502390320144, -0.261480207432428, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.11209106422691148, 2.6704705196244514, 0.8184406578254751, 0.0345367287517889, -0.3691694616489993, -0.3691694616489993, -0.334431755824539, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 3.247412718964265, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 5.0, -0.03165474835965338, -0.3691694616489993, -0.19989701373106591, 0.18690932486284503, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 5.0, -0.20941400882178973, 0.48879571780496284, 0.515829201021406, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.06417137390861649, 0.5831286151714123, -0.3691694616489993, -0.28344264390052254, -0.3691694616489993, 0.8271391031392724, -0.3691694616489993, -0.11835007212815982, -0.3691694616489993, -0.15568961991251248, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.2101983425827197, -0.3691694616489993, 1.0247889587744825, -0.3691694616489993, -0.3691694616489993, 1.0069206412432277, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.2469215505542568, -0.31679672191723907, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.04831552105064794, -0.3691694616489993, -0.3691694616489993, -0.34551221620759515, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.1843714723999262, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.18423517638319517, -0.3691694616489993, -0.21795304453228936, -0.3691694616489993, -0.3691694616489993, -0.1528406688901182, 0.08392001860781632, -0.3691694616489993, -0.28809203693580226, -0.3691694616489993, -0.24998912830088013, 0.5901212971386307, -0.2999986206637686, -0.29694969037463004, -0.2996669229664743, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.19240809885619564, -0.012138467566492988, -0.3691694616489993, -0.2862203602675308, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.31601756920025664, -0.3691694616489993, -0.3691694616489993, 0.7602616005945109, -0.3691694616489993, 0.1918029579101303, 0.9525592908877355, -0.0635061087957301, -0.16082866960487452, 1.4667260206858828, 1.9795520979902101, -0.09174317481271228, -0.343241515864985, -0.3691694616489993, -0.3691694616489993, 0.060746407638152686, -0.1370072979539899, -0.3691694616489993, -0.3691694616489993, 0.11460960701290793, -0.3691694616489993, -0.2103957076386129, -0.3691694616489993, -0.2652864381059232, -0.057789316148810985, -0.3691694616489993, 0.16703676602405543, 0.21079832873773557, -0.29069740879489836, -0.3691694616489993, -0.3691694616489993, -0.3064039693110134, -0.3691694616489993, -0.09827036139638994, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.2182578663997548, -0.3691694616489993, -0.3279563854210637, -0.3691694616489993, -0.08454475935950222, -0.26442192710717555, 0.08256228075712845, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.05329051602795051, 0.011845182738182, -0.19528013122863255, -0.35960705537211896, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.03522010773773366, -0.3691694616489993, -0.3691694616489993, -0.03947684381184974, 0.9053617984334322, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.34791008560153075, -0.3691694616489993, -0.07703290819894017, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.11968008962211381, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.08895884495201842, -0.3691694616489993, -0.3041099337557468, -0.3691694616489993, -0.3504020393008903, -0.3691694616489993, -0.3691694616489993, -0.11426662348023506, 0.0595299624651694, -0.3691694616489993, -0.3691694616489993, 5.0, -0.3691694616489993, -0.3691694616489993, -0.32453426097116383, -0.3691694616489993, 0.3495259463544402, -0.2918232129260061, 0.2937481232044366, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.26316699958557155, -0.3691694616489993, -0.034963698438518334, -0.1252481076655936, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 5.0, 1.5851806696189963, -0.3691694616489993, 0.5617692756827469, -0.3691694616489993, -0.3691694616489993, -0.36206088938373365, -0.3691694616489993, 0.7406370373225893, -0.002330376678444737, -0.3691694616489993, 0.048640465196498194, 0.08558661457967236, -0.266438523061922, -0.3691694616489993, -0.3691694616489993, 1.3586333505687958, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.24594165561196135, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.10829305081409336, -0.25316033171950403, -0.3691694616489993, -0.3691694616489993, 1.3661605785505462, 4.671187214745206, 0.024999392415426907, -0.11517114806241947, -0.2553742071322433, 0.1151364162620645, 0.1165457003120773, -0.3691694616489993, -0.3647920965080409, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.2797243947558035, 0.07550054815891889, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.9209720120432092, -0.3691694616489993, -0.15676823783394928, -0.3691694616489993, 3.2406884382826093, 0.16758891317982053, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.23355291021837166, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.1253605194717582, -0.3691694616489993, 2.652913735845737, -0.3691694616489993, 1.0383981869654866, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.40223801175060914, -0.3691694616489993, -0.3691694616489993, 0.22139653678994972, -0.3691694616489993, -0.3691694616489993, -0.2982221223279003, -0.0627447466095486, 0.0898948968531154, -0.3691694616489993, 0.8044541333762348, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.15460224977524353, -0.31114357222468025, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.07123849000606895, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.12255655451638175, 5.0, 0.4415899083278813, 0.6254447889299876, -0.3691694616489993, 0.6125854467231867, -0.3691694616489993, -0.3691694616489993, 0.4833588993551404, -0.3691694616489993, -0.3691694616489993, 0.29511121231784304, -0.3691694616489993, -0.04717598916758913, -0.3691694616489993, -0.3691694616489993, -0.23424814723796653, -0.3691694616489993, 0.4537037487175246, -0.009459773737185708, -0.3691694616489993, 0.004914008055715607, -0.3691694616489993, 0.6565942958002429, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 1.5514784170124702, -0.3691694616489993, -0.3691694616489993, 5.0, -0.3691694616489993, -0.02047882958940538, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.42958335108480444, -0.25042698086645687, -0.2607983646878928, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.6133074803520316, -0.3396370636591409, -0.3691694616489993, -0.3691694616489993, -0.3115257764934538, -0.23873557592554895, -0.3691694616489993, -0.3691694616489993, -0.3655928905091665, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.005714602089662778, 5.0, 1.1710365189188712, 0.5142807519041671, -0.3691694616489993, 0.07423213771181911, -0.16980183456261275, -0.2650122745419926, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.7482475644782348, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.15865082155845994, -0.3691694616489993, -0.3691694616489993, 0.27407165913144094, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.20423220043499282, -0.3691694616489993, -0.3691694616489993, -0.11884772344279831, -0.3691694616489993, -0.3671302869065576, 0.14022516679133296, -0.23429036902318748, -0.3691694616489993, 0.22337444085867933, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.18979840730309688, 0.1598462485188341, -0.3691694616489993, 5.0, -0.033441167485293126, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.31513135899236483, 0.24895960159647343, -0.3691694616489993, -0.3691694616489993, 0.31150387079945074, -0.3333104849543948, -0.3691694616489993, -0.3691694616489993, -0.09531843080317072, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.27038648160617423, -0.3691694616489993, -0.3691694616489993, 0.2463304553021037, -0.3691694616489993, -0.3691694616489993, 0.10365180055325768, -0.2805785417125975, -0.3691694616489993, 0.3614876948313728, -0.3691694616489993, -0.3691694616489993, 0.8126894043361058, -0.3691694616489993, 1.8689730893730305, 0.5308169918565693, -0.3691694616489993, 0.1897347915786668, -0.05647387261551943, -0.3691694616489993, -0.17588462456666537, -0.3691694616489993, -0.31178787553887394, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.2957650868266542, 0.3093864470617501, -0.3691694616489993, 0.020360718023848118, -0.3691694616489993, 0.5161395097860827, -0.13143787456924827, -0.3352000770699931, -0.3691694616489993, -0.35888304725627695, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.6676997777690356, -0.07161836518609968, 0.07188012880057115, -0.023800545331143504, -0.33618960533219566, -0.3691694616489993, -0.3219084753342541, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.23497707447601202, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.6348354168528795, -0.3691694616489993, -0.3691694616489993, 0.3781813134861618, 0.4302054514941911, -0.275518544032305, -0.14629417262952038, -0.20304463613354984, -0.19970108014788351, -0.25141721430258696, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, 0.12536129314829694, -0.3691694616489993, -0.21295793091246903, -0.3691694616489993, 0.15531717830343408, -0.2335626617663994, -0.3691694616489993, 0.1635699536949695, -0.13993490609105325, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.1754408404809662, -0.3691694616489993, -0.3691694616489993, -0.03498903634512903, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3691694616489993, -0.3515479449185006, -0.3691694616489993, -0.284797415991148, -0.3691694616489993, -0.24118995191369652, 0.13468593290982428, 1.2209561922712067, -0.3691694616489993, 0.7351021553716066, -0.3691694616489993, -0.3691694616489993, 5.0, -0.3691694616489993, -0.3691694616489993, 0.43019532922615483], [1.240681263389971, 0.5965581890441753, 0.683259618026411, 0.25691771352046233, -1.1694588194079838, -0.45654543477207, 0.3718260582463494, -1.2890750818211207, 0.3976749561083871, -0.2811174000409189, -0.8537902670642424, -0.6898391150425494, -0.852212434042176, -0.6910208614740934, 1.8455825144432794, 0.6584260460384502, 1.49564888496252, 1.293639060022132, 0.3996417960035553, 1.3137265782450058, -1.1806635577798696, -0.49462204297489626, -1.495783148834957, 0.05412704294689934, 0.6134124475200181, -0.9508817949340319, 0.26378220752970755, -0.8441347596560492, -0.57288992377541, 0.23793085536562747, -0.575190831936514, -0.017297866185322038, -1.1800606490444847, 0.5195433238305568, -0.7376164464488111, 1.19145551619606, 1.8455825144432794, 1.8455825144432794, 0.4579526141741688, -0.8841561190356935, 0.6662684850138091, -0.49572251425047453, -0.1876132121853413, 1.8455825144432794, 0.12343294545756492, 1.8455825144432794, -2.0208871585309436, -1.405417541305467, 1.8455825144432794, -0.8730141541582599, 0.3698393951424047, -0.27150352137115386, 1.2077094146347829, 1.8455825144432794, 0.8278585984744565, 0.5377806759013238, 1.757968085102726, -0.7235579211835327, 0.02968899117207144, -0.21015295572961082, 0.6412062853513419, 0.14231464620967674, 0.19375115316289096, 0.6539922550096553, 1.8455825144432794, -1.7706761867005478, -0.42685895248412264, -0.45927527941251955, 1.0045188816214075, 0.94841391460602, 0.20467317481918512, -0.4772908947337325, 0.682726468106661, -0.7010633934345051, -0.9644379434512701, 0.9233953260028563, -1.115313329381645, -0.9270608113294224, 0.45221483359306375, -0.273978968165687, 0.14150699204654277, 0.896941725877019, 0.2422946043900965, -1.6228013030075406, 0.42443930863079254, -0.6177458805859953, -0.6614295305882546, 1.2610931270668573, 0.1382820391679419, 0.9183660835410185, 0.36544411777636787, 0.016286047739777505, -1.2198294041066269, 0.05175750872494725, 0.09528096832107935, 0.6067763923928109, 0.9979438064602378, -0.0028903580494237745, -0.3384668869822948, 0.34141045946049275, 1.8455825144432794, 1.4733827016993082, -0.462397906775361, 0.5770438447435255, -0.8566566086565224, -1.0241205276689458, -0.7636399773405158, 0.8667691029929787, -0.6163700555009448, 0.07776121640788328, -0.9173237455765729, 1.8223387637988828, 0.012705409858049596, 0.0025391244371555663, -0.3697014674791477, 1.8455825144432794, 1.094127336972017, -1.7739725267297877, -0.8478284842240092, 0.5392136107068763, 1.2078260883778442, -0.042533377330200864, 0.6835516799689897, -0.6021465256216928, -0.15496835197866046, -0.6464687661351314, -0.29574352985071667, -0.9985141337275572, -0.17016708933329275, -0.25049507350643785, 1.7135323803181266, -2.0208871585309436, 1.8455825144432794, -0.6774002403302263, 0.8138824811199308, -0.6341935744895264, 1.8455825144432794, -1.0498529405803902, 0.8589785819453614, 0.00933074455510355, 0.8153001237358704, -0.4069675896318688, -0.848681259786155, 0.390045852617914, 1.8455825144432794, -0.2996471916392014, 1.5911133049770123, -0.5728678350570671, 0.9642698385295754, 1.1427495146569233, 1.4161136403478094, -0.13250148232568817, -0.5810179113533318, -0.12797272868724552, 0.06881056566590535, 0.3048970528637398, 0.5296450422285915, -1.6781635840666398, 1.072821540975724, 1.6641272802829399, 0.5756871820936312, -0.3257556791399315, -0.3454831701329987, 1.8455825144432794, -0.44108134960858764, 1.0398104233879117, -0.7046033465401313, -2.0208871585309436, -0.20614073827404208, -0.5185530925863057, -0.6018259560169706, 0.3452639024534203, -0.6355811047073683, -0.9938387827404317, 1.7124860924798637, 0.8999197382120453, -1.2108819628365495, -0.660642360407517, -0.45889656172873117, -0.6468661742729013, -0.2155244789295846, -0.8046228567418581, 1.8455825144432794, 1.8328881091302527, 0.5679631159935105, -0.6164698323184314, -0.9170558490694425, -0.8801571170526398, -0.7367144904496571, -0.42636242830249355, -0.32117802825317926, 0.29873769870940853, -0.769520296232315, -2.0208871585309436, 0.24820324215157863, -1.0384771562356745, -0.3635938424600819, 0.014170250590114352, 1.8455825144432794, 1.8360262174751831, -0.562017743329744, 0.20454102009403463, -0.8970559305500969, -1.6866563658840878, 0.6479831796570589, -0.4237368914986785, -1.284549396060226, -0.01373308687062766, 0.12364363784794768, -0.8289415916791215, -0.404193661950964, -0.7323987891074095, 0.8725557808223934, 1.443399437657166, -0.33147967787112415, -0.34014506319923765, 0.4821184272151867, -0.3307086494461033, 0.4096693189630452, 1.2132599130911033, -0.9590481073822437, -1.026358095958208, 0.6587568104362554, -0.2329619173282661, 0.9132698197542868, -1.3543368609497208, -0.83041983667617, 0.59445749529168, 0.5614101295506914, -0.9560561244048367, -1.8203135486651862, -0.5697276499950308, 0.7732915348748918, 0.11525294555567882, 1.8455825144432794, -0.8361704551448612, -0.36147464704606547, 1.2606071752632324, 0.4775313367052095, 0.8816282027039704, -0.8178462585404238, -0.24554474629476902, -0.9921607009197192, -0.12626547843076963, 0.25921607298329374, -0.14605300542754804, -0.5697610662612437, -0.3007984480877189, 1.8455825144432794, 1.8455825144432794, -0.27608929033386803, 1.593470567688768, -0.7708984812231701, 1.8376475671603152, -0.43408045304374254, 1.6260939055544879, 1.8455825144432794, -1.0758042583544254, -0.5752495463929775, 0.42802032409744173, -1.1242434961412267, 1.8455825144432794, 0.4388194418593498, -1.128225412406245, 1.4093967820458038, -0.344773688051405, -0.2947140445417905, 1.8455825144432794, -1.0334942623238734, 1.2883185107875734, -0.2831635327711774, -0.6718537065156566, 0.9235033152925507, -0.33142077462219993, 1.8455825144432794, -1.1502678765990197, 0.9341283664021814, -0.18999143086065268, 0.6079984460155278, 1.1986741848687086, -0.8528336556466134, 1.8455825144432794, 0.36746778420334697, 0.8094060229941586, -0.0965480341786443, 0.804857634939408, -0.2632767009380716, -0.8112961039845682, 0.31123387193470176, 0.4850484862642375, -0.8294127232742852, -1.6380139638064257, 1.2547330865227577, -0.7728237867761562, 1.8455825144432794, 0.42152038833714345, -0.6452169776992536, -0.33598634279121636, 0.5692374651288902, 1.130656602135788, -1.5123627614730595, -0.16259235807259587, -0.23231907898663737, 0.3307886178227624, -0.5482385365157036, -0.6209277887826827, -0.4591803168028796, 0.5087613861829143, -0.716294319904333, 0.4127066121319324, 0.12598881784198304, 1.0248956298998964, -0.5613419607030694, -1.3531154681006332, 0.23769845184182326, 0.47316834285060616, -0.08853379406058208, 1.51388132842921, -1.0878485568159422, 1.6285172456288188, -0.8623935396715391, -2.0208871585309436, -1.0526122368453021, 0.7838961963983565, 0.6552494240307616, 1.0129705538797138, 0.9299645485976226, 0.3866579718424452, 1.3584987112013456, -1.533256234726887, 0.8904383918523597, -0.6012419265280358, 0.19876227154813675, 0.19387556739700076, -0.5341942650814896, -0.028712636173970765, 0.7775448403076318, 0.6336672358664318, -0.06989185973839387, 0.7376624321818523, 0.2743206028981363, 0.8514838986896051, -0.8435925476980033, 1.8455825144432794, 1.3862138225749765, 0.4685129094684797, 1.0066858415289464, -1.2625882542215312, -0.8547273384617936, 0.00021546678408101847, -0.1303615197405767, -0.9242866004598191, 0.27987940822289475, 0.5152692512267216, 0.8800419684172355, 0.12077172687796313, -0.6061120169422957, 0.3923853688380066, -0.06666294221804236, 0.8165308618119465, 0.41339476066503356, 1.4262748283721658, 0.02691959451031462, 0.8166369631770036, -0.7933743185182159, 0.43963578047585083, -1.2021860875254093, -1.3805267180026506, 0.26631202655401687, -0.7066339038920707, 1.0700213711422497, -0.8766183910980387, 0.6437523405275983, -0.13146765479008238, 0.643788777473243, -0.1960416629705103, 1.8455825144432794, -1.6347986157444565, 0.6710047215707419, 0.9058176148030469, -0.7912583325760921, 1.8455825144432794, 1.3298766408282532, -0.3365259116547671, 1.0452383955347753, -0.6226363605864214, -1.1164066265435726, -1.005071179208365, 0.7172877606204768, 0.557338442468801, -0.13486705190588189, 0.9679384536997528, 0.3581773070252678, -0.8203639004507668, 0.8557592928406955, -1.0262772927834016, 0.7550600353705204, -0.13917321922867437, 0.5753388599966236, 0.3137198911072469, 0.9151033721695174, 0.9922622860335617, 1.8455825144432794, -1.1099237765013175, -0.13667492854594054, 1.4188809602924606, -0.15962605087036097, -0.4689220079711154, 1.8455825144432794, 0.05982196763855892, 1.8455825144432794, 1.8455825144432794, -0.9801238597605445, 1.31291212755315, 1.1830765290365903, 1.1610595518265192, 0.2606063406918769, 1.3609533908247835, -0.4841154591367339, -1.091179516663362, 0.43662038723284574, 0.3870053499771265, 1.405122898234437, -2.0208871585309436, 1.8455825144432794, -1.1790798721913998, -0.8554632514884173, 1.8455825144432794, -0.07108804879347028, 1.8455825144432794, 0.3180732565461723, 0.6203815325545889, 1.8455825144432794, 0.26934082406199766, 1.6867004400934298, 1.3017110706343236, -1.936621854412752, -0.4888110109175649, 1.1253509675059288, -1.0918294347224116, -0.6600855170334703, 0.22842194530611712, 1.8455825144432794, 1.8455825144432794, 0.5321973275561726, -0.15633879647847487, -0.004291575720940193, 0.1011271157768156, 1.8455825144432794, 1.8455825144432794, -0.36195946609490326, -1.1438287320122984, 1.8455825144432794, -0.6081677780882476, -0.3512064136943411, 1.8455825144432794, -0.07463281610693531, -0.7607504142750986, -1.0706431443561435, -0.5485055834567382, -1.426498391080312, 0.7213556718530771, -0.5116525392163446, 1.0213771047390008, 1.4035876379131174, 0.2430877215334678, -0.7779564875085325, 1.8455825144432794, 0.21507016463170675, -0.9689728328448148, -0.008762370072785007, 0.0009596866791427561, 0.32088267721040326, 1.0303679682759135, 1.8455825144432794, 1.8455825144432794, -0.18988079847645525, 1.356219986154822, 1.821324193094656, 1.1494650514116735, 0.3392795589136773, -0.6945097462180663, -0.31443303987395904, -0.5410818861676419, 1.8455825144432794, -0.274623316847024, 1.8455825144432794, 1.8455825144432794, 1.1722047261758533, -0.4360321895417507, 0.7961969694229031, 1.8455825144432794, 0.0425638820811608, 1.8455825144432794, 1.8455825144432794, 1.8455825144432794, 1.8455825144432794, 0.6942881186326836, 0.4141527624100077, -0.6658718172779559, -0.2698147727761913, -1.1162139638335515, 0.014429462643869937, 1.8455825144432794, 1.6912205092785055, 0.979134602014502, 1.175105333600442, -0.40047463919276094, 1.8455825144432794, 1.0396278610747436, 1.8455825144432794, 1.8455825144432794, 0.3385323183391835, 0.22498271298031183, -0.0331724805628668, 0.6282579541735579, 0.7846090767443111, 1.8455825144432794, 1.429597953332307, -1.4698386747877616, 0.18932038281352803, 1.3171754389865045, 0.034287220437450354, -0.0709849681078529, -0.6886413212515267, -0.11157194971114119, 0.508812926525727, -1.9294064896082326, 0.5044034897248487, 0.5624409364068652, -0.13203403218358448, 0.6910710950375918, -0.026986884255966046, 1.8455825144432794, 0.592710976202588, -0.27287094519152855, 1.8455825144432794, -0.47708275104162245, -1.1030602264543907, 1.0855353919125905, 1.8455825144432794, 0.31330756836477736, 1.8455825144432794, -0.9876684786231515, 1.8455825144432794, 1.8455825144432794, -1.20223460718879, 1.8455825144432794, 1.1067955001324743, 0.7213475537770997, -0.5799516115138318, 0.8511610635753166, -1.382078261674033, 0.4558853366878862, 0.3422254765297461, -0.6839125419969436, -0.9073098156745271, 0.44406353014578176, 1.8455825144432794, 0.6148814416862941, 1.8455825144432794, -0.5635496053867101, -0.15426056902925123, -1.0486968699240262, 1.8455825144432794, 1.8455825144432794, 0.6010858099278387, 1.8455825144432794, 1.396108435639458, 1.0650721766853601, 1.8455825144432794, 1.8455825144432794, -0.02650621864134728, 0.5890382075981837, -0.3323639817748454, -0.41260606537664657, 1.0208973830867007, -0.7603151532481982, -1.1382709650460967, -0.1953814557221475, -0.15910347332862304, 0.4231534431550822, -0.10312915069867014, 0.93155399235625, 1.8455825144432794, -0.9278608193977462, -1.0111108389402106, -0.3264591198626533, 1.8455825144432794, 0.18179266087648796, -1.8715023835040343, -0.6485192410920694, 0.7634828223817621, -0.09079892604966915, -0.6498190772101526, -0.377933951686165, 1.2429328023216064, 0.28429696309974267, -0.6108590146697012, 0.5226804882131609, -0.1502700627071039, -0.45379708847010675, -0.07540422211688515, -1.028238940885802, -0.5600918713993761, -1.478568957525551, -1.0885580388975435, -0.012679058541316415, -0.4576188143289905, 0.24529243993389918, -0.22980776162384914, -0.7559779295649893, -1.7702989321583593, -1.2838418962995102, 0.2928856986872766, 1.176207881593126, -1.450856158859611, -0.11076977052947388, -0.7262069626491762, -1.017739719953759, -0.940013390337656, -0.4801126813043902, 1.8455825144432794, -0.4830426459572107, -0.34681377942279956, 1.416788007031006, -1.1503034639785839, -1.3687115191968036, 0.7469793403049694, -1.140053071514753, -0.6701718488456541, 1.8455825144432794, -1.042122738725183, 0.053047338842416, -0.1951041195917921, -0.2948677216079018, -0.018798011108252292, -0.6083882876867844, -0.42689048082569814, -1.128188881064362, 1.0922501734974828, 0.4516465682749166, -0.40100457964061825, -0.6982996605466835, -0.9288886999707263, 1.7192818660320306, 0.015411372251741917, -0.7885088535193343, 1.8455825144432794, -0.7535961238328486, -0.1806815080587338, -0.14417867383998514, 0.08279442351147179, -1.8525789596172717, -1.0144586957131976, -0.9869917520341508, -0.9574424274716693, 1.8455825144432794, -0.07638745327200477, -0.7394680285444036, -0.11554244403205144, -0.6002422704285085, -1.0890741974954805, 1.8455825144432794, 0.6484230660993455, 1.8455825144432794, -2.0208871585309436, 0.8732360000719854, 0.16175989246831926, 0.38276733673401486, 1.3671797663040164, 0.584419777539107, 0.3149107939733173, -0.1758912768569538, 0.1621472946054747, -0.8709056255184779, 0.867832948530444, 1.5156707034077477, 1.6782950219889299, -0.2678894672232132, -1.376834692566875, -0.07065741318194033, -1.2340120132191976, 0.32069388474590255, -1.7341101778033698, -1.8486595926556495, 1.4917518309102966, -1.4276167032437812, 0.41686589891735104, 0.6331894021387845, 1.02009935733926, -0.6236005237026228, 0.34623939311749924, 1.5403798611615986, -0.974808596714992, 0.0405524871643704, -1.7388708393853933, -0.08750544150645066, -0.6836038663174809, -1.3694326592130805, -0.7897914151269217, -0.3870286510785608, -1.07892197711319, 0.6773098235076678, 0.2265393068501162, 0.5210283653563115, 0.020717384466537803, 0.7234008606210093, -0.41752392028442903, 0.10906432856934606, -1.725704382113941, 0.06878942090988127, 1.8455825144432794, -1.1158237298094247, 1.8455825144432794, -0.9401327071752205, 1.2199152250496816, -0.07296351313582017, 1.4157915604033713, 1.0867884074994854, -1.2149029591417155, 1.8455825144432794, 1.0984436990879003, -1.0784116710816485, -1.8565549879173011, -0.6169646573678841, 0.38801538966221294, -1.0316655241164896, 0.29944057305474076, 0.20933615989989166, -1.07349919675911, -1.420508383766634, 1.8455825144432794, -1.567260353479849, -0.427405506668856, -1.8547706277386016, 1.8455825144432794, 0.38764290212974917, 0.5141544317238489, 0.26672378291909676, 0.5080122576837756, 0.8008454174838392, -0.36787263487552563, 0.4676042513368417, 1.010092035173468, 1.8455825144432794, -0.9526632406290605, -0.2228930488190467, -0.09252637709984277, 1.009789023267948, -0.6151190222349253, 0.9501966818482962, 1.170474632031169, -0.36850471204667395, 0.5859338931044026, 0.6728352533065407, 0.1803538735045243, -0.9708988935676509, 0.6856933416862856, -0.057220487106036264, 1.1520885114983752, -1.1593763578413279, 0.609857862998399, 1.161818875118741, -0.5119890617843151, -1.163470794415181, 0.011502801859187908, -0.30498076755380665, 0.6453570764758542, -0.5568280272730881, -0.3024077150551228, -1.3247606806591576, -0.5898147906329683, 0.57870163137431, 1.3059966595784893, -1.3622078075872193, 0.2186929032330067, -1.5257993099640386, -1.3697837188008188, -1.3661192098667445, -0.33321203752538253, 0.112313824468332, 1.8455825144432794, 0.4848525196860858, 0.016196748904064806, 1.8455825144432794, -0.34928941500979327, -0.3152635379253015, 0.5439796764732003, -0.9675381045108399, 1.8180716765162381, -0.9146588455439114, 0.6634239489511733, -0.09018969276672154, 0.5368242532761556, 0.5363205549808677, -0.8214396399134918, 0.20665341897932904, 0.30789545478493985, -0.15628121477680604, -0.06947557235416597, 1.3121690404128752, 0.3055336610540361, -0.8388334672528698, 1.8212120503707427, 1.8455825144432794, -1.9897143338191583, 0.6598969281293791, -0.07143486055076192, 0.08232810612415507, -2.0208871585309436, -0.1861304361691451, 0.4270459661881498, -0.7609379795885819, -0.6234421268249103, 0.21444545036667007, 0.6176882192560298, 0.44286167731677034, -0.1020754999542879, -1.0542925841755886, 0.018567227088335525, 0.09559474139708725, -2.0208871585309436, -0.459398372099374, -1.3577504646984735, -0.3093496139748211, 1.8455825144432794, 0.15900805350575714, -0.5945459297933556, 0.5241764797018644, -0.36234422513755565, 1.1384510878251715, 0.543630032828945, -0.9184198746254639, -0.8350448744715, 0.9703127077333136, 1.3405335978643884, -0.2098397490310003, 1.595407578374545, 1.2091261132883961, 1.367319472727747, 0.24011046436828412, -1.1184115081203396, -0.6845258343178722, -0.7751428190138445, -0.6794647803257676, -1.4996113880338695, 0.01800556950644983, 0.29391518399620276, -0.6083328770984515, 0.9074557670175234, -1.3962898504299042, -0.4117895379676772, -0.4643652186516888, -0.8947704089748515, -1.1321808033299952, -0.9140264851840644, -0.7734675690800955, 0.7770688945046217, -1.4402827896871326, -0.08297498873582364, 0.9539957526114475, 0.42208053557932085, -0.3664829335443399, 0.1046435642205978, -1.3266846174667686, 0.2594667893761507, -0.9011097767440941, 1.1971053194887078, -1.4259628812547551, 0.9123345418851503, -2.016102325244964, -0.15907402170416093, 0.1891100680080665, -0.5288049953898603, 1.3884812200736298, -0.5578238131270951, 1.2717651875001525, -0.34040465283793, 1.4356094829869381, -0.4246655616315613, 0.5562687443649479, -0.5787406966465244, -1.3273152314963166, -1.2797685572835589, -1.6196495072089336, -0.019924346951455698, -0.514293557002241, 0.414329660949241, 0.2531294039277914, -0.10198072613711628, 0.006938366444950749, -1.2969731673753915, -0.28536560807711353, -0.9100659024675385, -1.8406364910912925, 0.2414718468298025, -1.0056781469817386, 1.104719349400364, -0.9747925493555133, 0.16576380305545, -0.36661282275991636, -1.44598120703939, -1.1580916251203968, 0.5496277806336715, -0.5341212023977315, -1.698159490746115, 1.7890897677058075, -0.7271594206325862, -1.7021545044883561, -0.4574444644880297, 1.5113579283486938, -0.4428579810957697, -1.0761417248847225, -0.181110255745611, -0.006325625733478411, 0.5712339454409889, -0.09140551623810601, -0.9785560327391004, -0.17149599949090927, -0.5227114354093979, -0.6422859746878842, -1.0242121864104627, -1.3815352001498975, 0.015018872718048842, 0.15827289564899144, 0.17232773946121013, -2.0208871585309436, -0.4011775135381009, -0.13283583378031505, -0.8780467004882208, -0.6628802118854779, -1.1616754724740097, -1.2356951452383362, 0.476382345766266, -0.9338098587466315, 0.08749176882071744, -0.430669350795144, -0.7202560353756458, 0.03863114625314296, -0.9615791535575703, -0.7987259241131829, 0.5053187555927481, -1.1477102106862023, -1.2414193327619973, -1.4262792030290266, -0.651846991467589, -0.0680966321934529, -0.29084814124621367, -0.18306406896073255, 0.24523127117540094, -0.21379230806778685, -0.46353981799689176, -1.1941642957087748, 0.23607917887380467, -0.9259127643527978, -0.07515898070549488, -2.0208871585309436, -0.9977715185684495, -0.8877555417676334, -1.0814304625890145, -0.5785197150668207, 0.0452556850400117, -0.3143388324341771, -0.5025794565611398, -1.2280507495582427, 0.28056094901974227, -1.6829940280633546, -1.4286932450744803, -1.723578744157069, -0.6826573552967127, -1.0487813545518845, -0.361072896681608, -1.0471367833936227, 0.5783134740672966, 1.6984067056472598, -1.6026554479131359, -0.8400724178011616, -0.1599143369636574, -0.37083006883193287, -0.03053863689062148, -0.3068392405743515, -0.609459684922822, 0.1510502623345845, -1.0083755193182864, -0.9127807381070585, 0.03965836605249511, 0.11194341365298939, 1.80445520880659, -1.023504969838443, -0.7832950664234528, 0.4776942646020774, -1.0969172972444672, -0.7428489239986821, -0.8628363523970275, -0.48369473512959604, -1.0516210764066736, -1.8146585299807072, -1.305407753915656, -1.3387939549323076, -0.03986781652391943, -0.6778115247141392, 0.031200841227793, -0.08001755477942413, -1.0100173529858225, -0.29982541172569005, -0.5717504668559217, -1.4912630324517655, -0.7419035457326929, -1.3958375508830767, -1.0051623659687228, 0.4363432398949587, 0.5658414662774517, -0.917739655375864, -1.5736662233947054, -1.1259784044937577, -0.5995900868598926, -1.13844786358533, -1.5568744080265042, -0.4048064822907255, -1.2088381900120952, -0.4192336248429473, 0.06243126829042688, 0.4674262200428137, -0.8788063069691412, -0.7120496989249677, -0.9962350310961048, 0.006103903751857679, -0.16646581306675276, 0.8742526474933255, -1.1074429491215403, -0.6023849705043609, -1.533521629733859, -0.696661508332207, 0.9738905137280701, 0.3866662787108832, -1.3433519714027478, -1.3795203597706294, 1.736234674174335, 0.34424895416426454, -0.1583662387547517, -1.5164860832939873, -2.0208871585309436, -1.324993084182958, -1.3057323353602488, -0.09181047607445614, -0.3023278558426429, -0.30807922948119204, -1.0543902842759698, -1.9907439695720757, -0.46142213292259115, -0.5143883308194203, -1.4934063933012411, 0.5476346985859337, -0.46106663671193265, -0.318221727051559, -0.4269050178454608, -1.3887737392294344, -0.5485426811760106, -0.30462017394661034, -0.6331616348785656, -0.8475142391668419, 0.9854232790070202, 1.0100495568689591, -0.9188926109565736, -0.868898572828375, -0.697804363516064, -1.1787151251499843, -1.5272442802892108, -0.0796297750573397, 0.14924559516642624, -0.6461355474352836, -0.8236015968207234, -1.4825840068680873, -0.6957531333892678, 0.017823007193273788, -1.2395586886281091, -0.45530431311044983, -0.4051583914445548, -1.2296233435894144, -0.4416230895854743, -0.7577345490509342, -0.3481039871251973, 0.9632058041996494, -0.6938621880648289, -1.7971691500552338, -1.2032390774961639, -0.8219844949660408, -0.772354259916939, -0.5200471017541338, -1.5029366369092363, -0.34928224089615, -0.822403142256073, -0.5148997696057566, 0.7749519646001716, 0.25731380011098476, 1.0489477898772848, -0.15672129001155327, -0.14145043393548948, 0.36663426547258027, 0.07969784950873139, -0.6897889906432225, 1.1598769558288868, -1.8004026929909691, 0.42648053275697406, 0.7129623364662975, 0.23789177532547195, -0.5440789665415865, 0.5310691037883164, -0.646866079876671, 0.5910058026632177, 0.64831167854529, -0.21089056788841892, -0.3927811574718893, 1.4360331332772778, 0.15140613613017218, -1.100598844698461, -0.7657962704738125, 0.6723281567468841, -0.025134263801816863, -0.930516751788342, -0.11992073007629091, -0.5539850959464063, -0.8091171557555314, 0.6634686927652639, 1.8455825144432794, 0.11148276003960769, -1.3153416358127537, -0.32726413093128426, -0.19248877758106786, 0.09098631733861756, -0.43419448369230096, -1.0835876052883995, 1.4050602191362227, -0.37035166872688813, 0.488165449853144, 0.046575721951800556, 1.8455825144432794, -0.36030413376616116, -1.674282577373899, -0.3698577876397543, -0.33379767175026365, -1.5091600389071538, -0.37921169908590574, -0.7984019562440997, 0.3079792786391781, -1.606159577648617, 1.3559590749688821, -0.8738187876419619, -0.7330193499382193, -1.127508567418532, -1.1418717093252841, -0.1460229874256963, 1.8455825144432794, 0.9649813973282746, -2.0208871585309436, 0.7066813999648278, 1.8455825144432794, 0.18929263032124255, -0.20055795630628817, -0.2861513623143654, 0.562106018574841, -0.9343860533482876, 0.47897031286964153, 1.8455825144432794, 1.4637659911425718, 1.8455825144432794, 1.6735533104505305, 0.9794600802233012, -0.1994114196693793, -0.6529664363858477, 1.8455825144432794, -1.205483725502847, -0.406190897432913, 1.8455825144432794, 0.2837328512158146, -0.27682293785092543, 1.0496066755783922, -0.5826951436079559, -0.6627129417619303, -0.3954939163943036, 0.394389212056217, -0.6971701152315799, -0.15780042773863925, -0.5906672830064229, -0.8354065064372532, -0.6784322743374174, 1.8455825144432794, 0.09024436295313756, -1.296207189148796, 1.8455825144432794, -0.07779792177429333, -1.1280967503416859, -0.13646933355210314, -0.6517483474048893, 1.8455825144432794, 0.5986383044180518, -1.5078666217328596, 0.07183785283417786, 0.8170060524450986, 0.12104472078163886, 1.107688677282031, 0.13613999986571704, 0.6164350148766664, 0.32084737301954547, 0.8957536548979123, 1.4531702028649347, 1.5988522856818246, -1.2495214557722774, 1.2358228781085103, -0.06784610459306435, -0.6437110746061657, -0.5169190938060559, -0.320935807521221, 0.7471741741283341, -0.4936522160847525, 0.9137217889143014, -1.7473613556932672, 1.6848102499388489, -0.45186083295418766, -0.7133390570612774, -1.7741277141356073, -1.4546282794984509, 1.8455825144432794, 1.515224020436739, -0.673074438591118, -0.04531277999258783, 1.1559304381509643, -0.15267131406308437, 1.8455825144432794, 0.014673382508004835, 1.8455825144432794, -1.0773767107912557, -1.3421551215740462, -0.7459247308303274, 0.47450253919722873, 1.8455825144432794, -0.26818303950551564, -0.17442643612489678, 1.8455825144432794, 0.11906787488584822, 1.824293143391394, -0.9720495836387788, -0.22518801001751715, -0.6219706783565845, -0.3941812423886264, -0.5152912307809004, -0.8329728771736089, -1.093779755276934, 0.15012045944692246, 1.138310626231583, 1.1836984114146556, 0.9893648880808656, 1.172685769375401, 1.0291209940478825, -0.24623478275252292, -0.3694299839151957, -0.09774158013920996, 0.04425300826105238, 0.6685196463605154, 1.776778611095717, 1.8455825144432794, -0.8249922421142355, -0.6632789415705034, -0.1538501342114267, 0.5246612987507022, 1.8455825144432794, -0.5250120603818034, 0.04424356863781961, -0.7150839714144229, -0.1637345524828251, -1.3860781604212935, -0.2942590547023516, -1.4466141809747441, -1.5514591793709989, 0.18468552781002823, 0.24938791486631662, -0.6567150051647432, 1.747601113292064, -0.08481005149077038, 0.9166422195476588, 1.2793750341592465, -1.0442571319325897, -0.2704221181344939, 1.2083596158825232, 0.49894814267063664, -0.6299833137386925, -0.7398183329622868, 1.4371991155380341, 1.8455825144432794, 0.6540636185612289, 1.8455825144432794, -1.220496502279942, -0.3989512727967087, 1.8455825144432794, -0.7643930704814131, 0.23977271464929625, 1.8455825144432794, -0.48860645428227645, -2.0208871585309436, -0.7854981800879377, -0.3841238902197454, -0.04862080155556126, 0.9982347356480373, -0.6429706305603939, -0.6844876038438127, 0.23701256881829608, 1.5438800734534415, -0.29521321181793037, 1.186546912119042, -0.5683754239680389, -0.6509894960938268, 0.011744267421280428, -0.10191181688756966, -0.4483570336055154, 1.1294551268917057, 0.10361842113836676, -0.8459853033930851, 1.6007885411977438, -0.8055431256100727, -0.07945872908450206, 1.8455825144432794, -0.6592923054938765, -0.755340188619906, -0.7580058438224256, -0.8375814900245313, -0.034441732301701104, -0.2505904137010146, -0.3836851365322458, -0.4446701055662852, -0.0841977975283985, 1.8455825144432794, -0.4530476767822693, 0.40263661086792596, 1.200680293596493, 0.06421309157038443, -0.3958917021170027, 1.0611439718764903, 1.8455825144432794, -0.612723906634039, 0.6417849342550405, -0.39151549278987663, 1.8455825144432794, 1.003813364181572, 0.10631399994649994, 1.8455825144432794, -0.6017627105413665, 1.6853101723848467, 0.23715321920434523, -0.014264726450661616, 1.8279538292780624, -1.64650629724177, -0.7263146687501719, 0.09933320977912226, -1.8559838435140708, -1.0146553230649769, 0.24127833455369316, -0.08987440935100538, -1.3258940490216722, 1.7039606023679412, 0.9449221979750836, -0.3490498373723458, -0.77308016694294, 1.4971422333567206, 0.03722294326043615, -0.005647671993452549, 1.0251593729728, -0.8488422053621478, 0.17983677094426076, 0.9721570213190169, -1.675600631964811, -0.1548008930626522, -0.8776804431070894, 0.13961604672210381, 0.7926750459976387, 0.9255269817195299, 0.22173453862858125, 1.8455825144432794, -0.7993125966966208, -0.34673297624799326, 1.8455825144432794, -1.7781157425566623, -0.1347609505408325, -0.04730793875743117, -0.7592539508052357, -1.534232055777775, -0.2685098392615625, -1.6406718549188404, 0.6805968891070932, -0.38249102419428277, -1.5950703330668914, 0.7984611574496561, 0.23747133450703278, 0.35278237355969594, -1.3895123897467931, 0.3804051654181822, -0.5127122313195831, 0.20329763292283307, -0.9773983573467822, 0.7947598811831238, 0.20494409200574748, -1.3637637406834013, 1.5466266262269976, -0.2563833216817539, 0.4515653875151813, 1.8455825144432794, 1.8455825144432794, -0.5092858368813639, 0.2581074836317457, 1.1155194111245907, 0.3406683162825444, -0.941079784573386, 0.6427143595577735, 0.19828821366977165, -0.6663371907029463, 0.5491571210196673, 0.8301903742035007, -0.7107527890900783, 1.0591119985810733, 0.9693064438975248, 0.22563895558691624, -0.09808820310403323, -0.9584181069282087, -0.12158965546247705, 0.00972796390041301, 0.25016781653716513, -0.26839127759385606, 0.30613194437403496, -0.4052325868831074, -0.24224371005297823, -1.722993322323711, -0.8250637000620471, 0.247413712065029, -0.3613221027347489, -1.1902879144314162, -1.143655137341188, 0.16642344392641542, -0.23294568117631131, 0.26471805177624136, -0.2812790063905315, -0.6444176304045576, 0.8522351039058572, 1.8455825144432794, 0.9893616786089731, -0.13275200992607675, 1.0324862197276112, 1.8455825144432794, -0.33754369183088645, -0.3508669648431611, -0.16383159180957843, 0.29377113534578486, -1.2888962009610059, -0.08951664763078043, 0.7935123405777031, -0.7340872545136655, -0.5618765265662975, 1.8455825144432794, -1.2953615877002966, -0.33445901175341347, -0.40195533849184373, 1.1467928828691307, -0.7802979860495004, 0.6944383974344261, 1.574518069762472, 1.4515401687264358, -1.1571556864776327, 1.8455825144432794, 0.22719819255123136, -0.7521389291956021, 1.423053273757926, 0.5219787466226157, 0.6366139086523587, -0.15668013325429214, 1.8455825144432794, -0.23505770247668445, -0.3768334804105866, 1.7455591339960244, 0.28039367889619465, -0.28813613749366507, 1.8455825144432794, -0.7263893361698839, -0.9512030253123818, -0.03927991678946427, 0.06754924321058008, 0.29798007454936337, -0.35376530675817575, 1.7829362661178718, -1.0355097162786526, -1.1489496332156455, -1.1306189232711847, 1.0320746521549997, -1.0196461462602793, 0.6857799974274875, 1.8455825144432794, 0.8458601487570584, -1.1162958053669068, 1.8455825144432794, 0.9260025499376032, 1.2818723808796617, -0.27707214390406637, 0.6731696047611675, 1.0841534310724454, 0.8006281173572027, 0.8515407252214237, -1.1465944472210032, 0.8832901427689661, -1.277710058646876, 0.05013294956792264, 0.2714026265668136, -0.4820406299518713, 0.7117274449560024, -0.4998549925059265, 1.6256347622808223, 1.8455825144432794, 1.421982442899278, -1.506097305953675, 0.8730366352294727, -0.5887179064142266, 1.8455825144432794, 0.7462598522227534, -1.3699299385645753, -1.3345936057858643, -1.8195464140847462, 1.2310792786454658, 1.3516768842890774, 0.38828498530151995, 1.0753993132860087, 0.885166739866103, -0.6527667883546363, 0.4041295816771975, 0.006518869588830206, 0.9590636975285042, -0.71563335748612, 1.7162649624493096, 0.3514372272501324, 1.5204618785718462, -1.0406006938763783, -1.896814001611165, 0.36507181903637254, 0.9860661173486489, 0.6500921802779922, -0.4483340953210842, -1.2209065595128377, -2.0208871585309436, 0.845380049519837, 0.8734763328792987, -0.7742571935628756, -0.3779945540672736, -0.8022537001048429, 1.270268440841591, -1.046186590919787, 0.7132102209721908, -1.2396610613419874, -0.6989907353629864, -0.24799036387991102, -0.45196721750793556, -0.8526726156743983, 1.8455825144432794, 1.798493897947516, 1.8455825144432794, 0.028314959615435384, 0.1915296322331074, -0.5382383884635628, -0.9958564078085544, 0.8702353326412114, -0.17966958044901007, 0.7404652451098375, 0.8254798134217478, 0.661878682629239, 1.8455825144432794, 1.8455825144432794, -2.0208871585309436, -0.11634065857196037, -0.9883114113610106, 1.0209840388279026, 0.3019345215107949, 0.3866951639579557, -1.4340394228860947, 0.47965600710070805, -0.9607362895998088, 0.7186266767787157, 0.312561649337539, -0.5591753783804594, -0.622137665291441, -1.267456220720566, 0.10736255329434453, -1.1274019940723232, -0.48233203112083006, 0.9867015927841505, 0.13653231060694945, -0.9151621662542703, -0.8297537768614116, -0.2651882246411373, 0.30072379543595584, 1.2994621747971913, -0.22874788072814223, -1.0744389112511565, -0.7808589828577662, -0.46047873697748487, 1.8092169323462266, 0.6534051104450505, 0.3667964381995825, -0.4866008175356589, 1.2752586032632733, 1.262381824429539, -1.1354142518695025, 0.2050186650292214, 1.0838236106369665, 0.062419185572698835, -0.7008243821744553, 0.22599766126946758, 1.8455825144432794, -0.4946023141623579, 0.036109634097271685, 0.6201906633729827, 0.3023109736850093, 0.589430895924345, -0.8386300433723762, -0.5414596598891038, 0.00868431915665317, -0.8853875178853972, -0.28450622477870635, 1.1668214978430804, 0.1474794416610261, 0.6457559949533404, -0.05079172610485862, 1.8455825144432794, 0.07038736032941514, 1.8455825144432794, -0.8780669956781565, -0.4915860713532569, -0.31313037186890424, -0.2971687241652363, 0.6121654732919871, -1.485320176056096, -0.7962841767735612, -1.5858594319125994, 0.05854591937100259, 1.27134644581389, 0.39924268873360086, 0.43357724149755517, -0.17626282042709115, -0.5644013425902993, 0.09703164084439816, 0.5912521768293871, -0.3351035492272111, 1.8455825144432794, -1.8295838486486218, 0.7855624786900474, 0.32565591709037817, 1.8455825144432794, -0.1789525466688287, 1.2400333276518047, -0.0013856821073455032, -1.5076509735402839, 1.0853024220113965, -0.6757856871738164, -0.8053217664454477, -1.152854616551378, -0.9010420946455646, -1.091972067429336, -0.3114397353493044, 1.6809917335518578, 1.5880148430496268, -1.7532032553185442, -0.5911537067912072, 0.8049199364526932, 0.9673915219300981, -1.0168987439206347, -0.9890511946331547, 0.05137426002201858, -0.28817974855296086, -0.9540870190000944, 0.8376518299855049, 0.9800664816192775, -0.540225240359968, -1.0146345558938819, 0.9335310270445013, 0.045110881219743534, -1.2292496761040521, 1.584772898849221, 0.14909248447772003, -0.24184158210358403, 0.23528851603247575, 0.12379995800855426, 0.8925258701323401, 0.23545068875948572, 0.40959757782653494, -0.7562268524294316, -0.25911439347322096, -0.5644574139522598, -2.0208871585309436, 0.7773301832754906, 1.8455825144432794, 0.943273095797666, -0.43851443286500585, 0.15322458514824286, 0.2616647112478678, 0.18468439505524897, -0.0542126455616112, 0.5072138543514061, -1.4709691168670755, -0.9211952182498544, 1.8455825144432794, 1.1843316213405908, 1.7639660216999131, 1.413540021471736, 0.4764034905222901, -0.7694581835114983, -0.6505446066512328, -0.25054774660403745, -0.20820442870350303, 0.8908365551599878, 1.8455825144432794, -0.39770543132346475, 0.24474947280599518, -0.8975982369043812, 0.4583685239734677, -0.38062141241832853, -0.8095450538763201, -1.276066478649049, 1.6650591598877151, -0.3337999372598377, -0.16339925706587186, 0.19759496774012508, 0.23652359633523928, -0.49853571076399567, 0.5878614641669547, 0.7047745960733708, -0.23659277400554346, 0.02384737473549095, 1.8455825144432794, -0.8217354777053683, -2.0208871585309436, -1.3641981521442181, 0.7315774622585344, -0.6307139405763103, -0.2584651361877992, -0.8982564618318607, -0.1230662013273331, -0.8859088682761179, -1.043679615783686, -1.3968169117926732, 0.3581259554749236, -1.7624614725842513, -1.3972479721872446, -0.11023869732683729, -1.413758581179572, -0.7024739563330242, -0.16334658396828003, -1.1277884522471602, 0.3963468011206208, 1.354296946111418, 0.40465046008675876, -0.4427677382977457, -0.08345848623741378, 0.34509814266958866, -1.0686106046833213, -0.30551486143588297, -0.9027065834088329, -0.07150433617769818, -0.8324982529178542, -1.8836684649046844, -0.07160175308938053, 0.07912864022825794, -1.1709597195007642, 1.4232405558827106, -0.7901535190738341, 1.266164092663346, 0.3413036029255931, -0.2430602374619399, -1.8623305505903645, -1.506236823584941, -0.9641727844348809, -0.5135691603159557, -0.9579225267088906, 1.383361168436371, -1.3993280875611132, 1.3164006347121937, 0.7271372522859464, -0.15770508754406254, -0.1394239356215313, 0.048885597754962686, -0.7592724524667568, -0.6431812285545464, -1.3659773323296727, -0.7731422796637648, -1.1441723342976897, -0.32583761506951703, -1.7362746834088696, 0.26657086102284344, -1.044607625142941, 0.5477723282925586, 0.6136354114205895, -1.203708132374214, -1.161725313684638, 1.8455825144432794, -0.902213740680256, -0.41506546481169326, -0.07320950971706845, -0.9111417363264938, -0.1571088809411771, 1.0027491410591778, 0.7623806519739993, -1.2152274933881884, -0.6140871770202024, 0.3396652619186483, -0.7873692078073778, -0.9189784171316873, -0.4815381588076083, 0.04516865171387301, -0.6146628052444612, -0.3361991118987125, 0.4994652452309002, -0.10518510063708271, -0.04195850427580012, 1.2853401208676105, -0.9292267328784126, -0.7724967038314028, 0.017291933990637203, -1.5990682966913905, -0.2202031337848408, -0.4955310786914634, -1.312037956476456, 0.2676890787900849, 1.8455825144432794, -0.3499211145960203, -0.36758453757470533, 0.5009476436621596, 0.6813943484771441, -1.5767270212254234, 0.2840724888594552, 0.6763870059411884, -1.06481464899584, 0.7304275273572645, -0.24488057440465558, 0.15207257352985964, -1.0234592820620338, -1.6897540962406732, 0.5702061592642471, -0.9958930335466598, -1.401017496929698, 0.5735745944158608, 0.19480027288811744, -0.42725447269725547, -0.4027518538995683, 0.7101904855025061, 0.16678705821304377, -0.808781765942348, -0.2442456653465436, 0.679554565910581, 1.6664365897087123, 0.23302715989268644, 0.12070168487363724, -0.3555694075489444, 0.4999617694125447, -0.744100712434552, -0.054399927686395885, -0.8626036656845324, 0.41449409918582497, -1.700122743584458, 0.7523344385605277, -0.0767387960484367, -0.5382685008616525, -0.6904489147028866, -2.0208871585309436, 0.3005750269739293, 0.1718895521511079, -0.7539989125558629, -2.0208871585309436, -0.40256513815217326, 1.0317187783594122, -0.6949245232625704, 1.8455825144432794, -0.37902215145154705, -1.335063746220587, 0.3754274632991646, 0.12708891153262472, -1.7579936517137267, 0.2914421915037043, -0.6454412631470804, 0.6408877924637332, 0.08799036971945991, -0.9969535752159945, -0.9676462825930027, -0.2920633983402008, -0.25781852199688815, 0.8923854085387516, -0.85955381781675, 0.08638940962049402, 1.5781493040246786, -0.3432820387893812, 1.8239661548428787, -1.3157285659687485, 0.962356426901857, 1.3405796632257265, 0.9276208789433031, -0.09023821243009435, -0.882016534035511, -0.7376492963376342, -0.45218121376644144, -0.0793135476793049, -0.15884237335021473, -0.7777771346672568, -0.8027025541891952, -1.3478904006549959, -0.16669179764676395, -0.6462509940273278, -1.1566112090100127, -0.6080401543822451, -1.0089047989925162, 0.08220199275786862, 0.028213200477073378, -0.4885138515784408, -0.07918026019935967, -0.559432324924641, 1.8455825144432794, -1.403716851587129, 0.2304982848307035, -1.1738800557378912, -0.516661203299548, -0.8073835689502558, 0.5477687412357293, -0.9562283975286916, 0.5667748562219431, 0.6528965035456933, 1.2436033931555128, -1.523252122032995, -0.9367351979840659, -0.4828609332101307, 0.688520697634648, -0.26478326480478714, -1.3064024542129944, 0.6577361983731648, -0.6816076691940888, -0.13021690471276143, 0.4295620033625544, -1.271271338843196, -1.2102253426450083, -1.0961477791591623, -0.6928629095502228, -1.3475956484197944, 0.4232357566696045, 0.5056523518775169, -0.7955872493908548, 0.4207788115365847, -0.6575784475011311, 0.5762352466180729, -0.7371011374169546, -0.7093287275303455, 0.373091722928362, -0.6865071168365807, -0.27282582379251674, -1.9843107542486889, -0.4681235102425078, 1.8455825144432794, 0.17786181297311512, -2.0208871585309436, -0.8052655062910185, 1.089574606690579, 1.0391179326281232, -0.6501124606999948, -1.3978380430350419, -0.20255217110881288, 1.0858140495901933, 0.19917969168714392, -0.3861165946825541, -1.146000128542755, -0.9515686219198854, 0.24754020301625218, -1.0266648837130254, -0.6452677628722081, 0.05072764583109983, 0.42782303597203464, 0.5320495030564724, 0.2570036140918063, 0.38891158749119387, -0.614361964452285, 0.08978880673629352, -1.0031218970123992, -0.06961018138135884, -1.5616044144321046, -0.5058868173504933, 0.43013234539780715, 1.2712543150912137, 0.3671321112014647, -1.1377959632054129, 0.7079906757061439, -0.24724010262598525, 1.0595732185718445, -0.2839675998774897, 0.6031859373029445, 0.19326010396272852, -0.2076603288208043, -0.4325442487601043, -0.9511021157401082, -1.0094029279100993, -0.8612994873397617, -0.1522382241495198, -1.448683110395091, -1.3757746228787036, -0.6717614813967498, -0.43981464656801844, 1.4807897852515284, -0.8328376073727961, -0.12667685721091276, -0.5411856276268794, -1.1194425981652043, 1.8455825144432794, -1.7647073241428939, -0.05106169932909461, -0.9303418355699841, -0.42537447733575756, -0.23166698981425196, 1.4575460346071318, -0.30467473496884717, 1.8455825144432794, 0.3205347326983323, 0.30770420801839676, -1.6358559243428346, -0.4359157045911499, 0.6589331425980991, 0.7868887457531608, 0.6263934397941491, -0.48914054816435276, 0.5578434623113443, 1.3777238254463802, 1.8455825144432794, -1.4585457231368404, -1.6415291143020223, 0.2727521151030646, 0.34084313810467204, -1.34585045087795, -0.2632938810523373, -0.27393951054060245, -1.9664324087484633, 0.410145831143445, -0.5295832923247625, -1.811106989737578, 1.8440393248384506, 1.8455825144432794, 0.12266229461748081, -0.963727894992287, 1.8225007477334243, 0.11860892040464317, -0.31052862291562405, -0.7793810210494244, -0.13857436953127816, -0.30089341069736664, -2.0208871585309436, -0.6193473126661208, -0.8010611925028261, -1.1628169117143887, 1.6716091256511023, 0.35710723133647787, -1.8334280644098437, -0.20770733814446884, 0.6657272170180818, -0.7008959345184971, -1.8219571522620712, 1.8455825144432794, 1.1882660563007854, 0.5882022345653746, -0.21644163272212896, 0.2012413053994915, 1.7355969332292518, -0.1646116822728953, 0.6579706786140747, -1.037237828102454, -0.9661617130483995, -0.585820602857761, -0.8357400083257996, 1.1034034659227943, -1.4434780077525755, -1.419070304366416, -1.1273046715568713, -1.6262324408564337, -0.5328259916950265, 1.5982141671518124, 0.4642456333933666, 1.8455825144432794, 0.11698945864416395, -1.053040229362329, -0.3738086475443642, -0.3850718171840073, 1.1467245399969814, 1.728072043179183, 0.49041075863344685, 0.4101307277462849, -0.6715668363658537, 1.8455825144432794, 0.7985959552693173, 1.0288449794647903, -1.2357421545620009, 0.1603331878140914, -0.1874506618734023, 0.7362378042447378, -0.14595067991178867, 0.7062277316726288, -0.7060175908917022, 1.6028958426865005, -0.7475584464218782, -0.30361145580877924, -0.8887322595827297, 0.7741896206285255, 0.6688132186428178, -0.7855660509789278, 0.02635132919215979, 0.17790523523995802, -1.7160696182777864, 0.8818232253198034, -0.5668700872523482, -0.2164584352514734, -0.20118323694871446, 1.5552185712864242, -1.4443040219828818, 0.1917097402442488, -0.7157682497020038, -1.0513946198455109, -0.9591201317074526, -0.12462732621629322, -0.38783403973211306, -0.10143794780167292, 1.0373510239528652, -1.470898650079701, 0.19182131659076485, 1.491571345314234, 0.9536834898751634, 0.7299831098958222, -1.3451073637376754, -2.0208871585309436, -0.9673403444042735, 1.8455825144432794, 1.8127851099252896, -0.16939001954940788, -1.8132827992918907, -0.7298325331374474, 0.019389795856168922, -0.3818083506426483, 0.548250917190064, 0.3322972584065836, -1.0695137878334926, -1.460865463346276, -0.5933198171326577, 1.094704286743531, -0.6086075701343038, 0.1612899880241809, 0.34465051573626143, -0.5731648999999609, -1.4524132719086957, 0.6523121908680598, 1.6479809935489824, -0.44369008388305825, -0.6748053823018906, 1.8455825144432794, 0.7299583780829764, -0.4385725809440721, -0.4372941727707037, 1.0263121397610488, 0.9149451640842658, -0.49667695455475214, -0.29448409532003644, 0.10565737975497426, -0.05178798394002491, -0.6557799160880674, 0.13019530274351915, 1.6675338515123903, 0.534770191262388, -0.7134273175384255, -2.0208871585309436, -0.452415222026192, 1.189271942551645, 0.1476098972539922, -0.0797205842327684, -0.07743355231779925, 0.062059535927821145, -1.2867070579388884, 1.8455825144432794, -1.4478746538639833, -0.8216069100370395, 1.2231216762667616, -0.011305970947006732, 0.15280527708458297, 1.4601978135635085, 0.27784535821036427, -0.6592201867724292, -0.9593612196846162, -0.12114693713322679, 0.6027957032788176, -0.08946378574072024, -1.6234465484530878, -1.2274017754615194, 0.11711708235016642, 1.468706312353626, -1.5567495690093534, 1.293414396989376, -1.1791853127828291, -0.7398125747921135, -1.0974721582976386, -0.6592933438524253, -0.5532922276016887, 0.2307911019431402, -0.07678335107005886, -1.6479266065512665, -0.45846111190936223, 1.4436150386516255, 0.2712817993895332, -0.5795084212034145, 0.15171934282877497, -1.9366794066156026, 0.06811278871711078, 0.18330186783770652, -0.5502725865282267, -0.2742159027086315, -1.0434993189800916, 0.6117048196786055, -1.0552193663838265, -0.2832913452696405, 1.049839267894657, -1.9583265511872454, -1.3147672819376268, -0.720901988792937, 0.13876308236748966, 0.6001161718301632, -0.5781793222533297, 0.9797104190312291, -0.14401593473558555, -0.8243834808124549, -0.6792553150864101, 0.13631010187622827, -0.47556127257020747, -0.687760604404627, -1.8502026760647177, -0.5336016455354257, 1.0365901903209274, -0.4211230598276703, -0.9329850244692242, 1.8455825144432794, -0.842244852690167, -0.3622760710578671, -0.8041659789777664, -0.4705884790552592, 0.8575214817043373, -0.7302815760142605, 1.141591839264605, -0.7003309730684807, 1.8455825144432794, 1.8455825144432794, 1.0641933477631056, 0.5038140796506775, 1.1950233161901942, -1.6722664626454962, 0.13622401251241598, -1.6225001318285457, -1.456454516205682, 1.5903230197206124, 0.35683990120674486, -0.6361123667024813, 1.8455825144432794, 0.7598802845741521, -1.0375171465536845, -0.8765380599043997, 1.8455825144432794, 0.5482579025112544, 0.17146741220048434, -0.6391263440020005, 0.20767346466503017, -1.4073924520784928, -0.5080001601981141, 0.4342850244469644, -0.5867470074810698, 1.5205827057491268, 0.3279038689651918, -0.41874729545439354, -0.12101610395532393, 0.6577239268629683, -1.3511395189690527, 1.8455825144432794, -0.6429042700091201, -1.246177658037273, -0.15363302287725092, 1.540490871130725, 0.056851318209644355, 0.657529659417001, 0.8133334726331627, -0.7084937928560934, -1.614024294134787, -0.17858553411783934, -0.5842501327418139, -1.517799890054447, 1.8455825144432794, -0.09328928744889395, -1.0483134324286214, -0.48463312807439485, -2.0208871585309436, 0.5324529525531142, -0.713847947149333, -0.7154056737739322, -1.3887567479076295, 0.46523226281285496, 0.13947199807168592, -1.3635329890936654, 0.793198945086632, -1.5950142145068187, 0.4628406398725602, -0.4720728598074015, -0.3811441787525348, 1.220017172980512, -1.37828060685437, -0.4594269741577478, -0.9082149811455736, 0.8967372636379609, -0.5623575697658453, 0.44773592116524924, -0.4833256458615009, -0.30059153154662616, -0.5156388921042729, -0.9019851130057495, -0.17199271246501446, -0.7113164289928471, 1.8455825144432794, 0.15512629164316225, 0.606968394329212, -0.6508970821824597, -0.5245033590862082, -0.7386280908698362, -0.11246493806822948, -0.7272990326600784, -1.4793284224121215, 0.25042230877931204, 0.768255118299403, 0.5020673717691171, -0.4481424709696123, -0.9257628631359842, -0.39233862793509966, 1.8455825144432794, -0.39740392975766103, 1.666085058139812, -1.1149681223603076, -0.43259597789536974, 0.17967308787754252, -1.4601513086511857, 1.0380644706762094, 0.7847272608270962, -0.7883618785857225, -0.2671544981589159, -0.9822054854741292, 1.2255216060754943, -0.31211919942903854, 0.278049254072025, 1.3735375413385418, -1.0869607602516296, 1.1162942153989015, -1.077020553806977, -0.013651906110884625, 1.0154250447106836, 1.7487878627239153, 1.354853128711837, -1.0685093175261187, 0.4288368515064111, -0.2248853756969264, -0.3976378436211735, 0.45215385362702615, 0.8501555549093782, -1.8178081782650302, -1.063051138584943, 0.6095514528285105, -0.3437232467789232, 0.645306102510439, 1.546756137857645, -0.8558918103828339, 1.8455825144432794, -0.5454915117609808, -0.3057402796384891, 1.022856671283289, -0.8362747629814957, -1.6310477578569307, 0.02412716516788098, -0.6737408759908055, -0.03960331828115009, 0.3942011747615743, 1.8393281976793003, -0.6863404130904225, -1.801628947246017, -0.5578468458077641, 0.19519163966703124, 0.2914661681466998, -0.19507938777894637, -1.485147383752962, 1.8455825144432794, 0.7569251161273266, -0.4287085522588398, 1.8110214107219242, -0.8333285621767282, -0.5923981323209653, 0.1370073124476332, -0.26648032026818, -1.9543085460626868, 0.23617848371013203, 0.17714685591005486, 0.3475796308229858, -0.8603241854681429, 0.8294495525728001, 0.32912441224818495, 0.4324488289372384, -1.6787985403228725, 0.30608493505037815, 1.361611143771104, -0.19403461028039953, -0.06776983243740607, 0.2699891373851008, -0.9743110341747985, -1.4548515737858385, 0.5693796258546554, -0.5855316559908447, 1.8455825144432794, 1.8455825144432794, -2.0208871585309436, 0.0660760956100773, 0.5418417906051944, 1.6269536664378241, 0.002959942840523746, -1.232182944624996, -0.3797350317975016, 0.5647009709994069, 0.1666713284323087, -0.5886227550121182, 0.8673560587651075, -0.20572577243706955, -0.1125491395073968, 1.401571711977179, 1.036228086374015, -1.0085025766468994, 1.3448293816016372, 0.6312002847328051, -0.8308628381941189, 1.5034860377488728, -0.6735304667891214, 1.8455825144432794, -1.3351850925771442, -0.3826144944660662, 0.611569266689094, 0.11101077887835595, -0.49951459969242806, -0.7242115206956341, 0.03380013587903856, 1.8455825144432794, -0.8949814789501633, 0.2601996817233424, 1.0042304067356502, 1.8455825144432794, -1.1990304214812841, -1.6495002625400546, 1.3070829714192265, 0.47217132984557414, -0.17665154411149422, -0.718816870418761, -0.8434377378771127, 0.8484345228029899, -0.30233389720150694, -0.7579425983468139, 1.2722715288899433, 0.7197503695274239, 1.5270209063735294, -1.3750578250891103, -0.03377793799651666, 0.22452092661214312, 0.4061734488978897, 1.8455825144432794, -0.640533697428619, -0.03843412654850115, 0.6727095175251755, -0.7676578585700197, -0.363344636406941, -0.6487018034052456, -0.4703910965336293, -0.19633957747948466, 0.4316985676833049, 0.741705989186536, 0.5942088556159287, 0.6792054886437153, -0.907623116769368, 1.8252012351456424, -0.1874431101748223, 0.7946877624616845, 1.8455825144432794, 1.4607351169174776, 1.455142706534038, 0.3299987101512915, 1.8455825144432794, -1.4953138579663243, -0.8014501049796976, -1.619214954153769, -0.6975586501235143, -0.8998520413455824, 1.6819866698397765, -0.833916273118723, 0.918950396218652, -1.3547029767365033, -1.0946599057464361, 0.7774621492081728, 1.8455825144432794, -0.6455962617604393, -0.537986350523458, -0.594797023771149, -1.0203087134144464, 1.8455825144432794, -0.3752668805401676, -0.6653399889054535, 0.9940106930472987, -0.808431178335766, -0.38647813225207683, 0.4996228869387621, -0.5087263504128141, 1.8455825144432794, -0.1301091042155354, 1.6496793705596307, 0.20885870375716553, 1.8455825144432794, -0.5649405338689133, 1.8455825144432794, -1.1044202873686537, 0.47841526302400944, 0.6309522114344512, 1.8455825144432794, 0.14443705109559354, -0.799539242050252, 1.5109422073418632, 1.3066377987879338, 0.06519179170635604, -2.0208871585309436, 0.5500231120543282, -0.6700301601010482, -1.7081373612874413, -0.5743791187353915, 1.8455825144432794, 0.09130820849059511, 0.04273794873343044, 1.8455825144432794, 0.8841406528215456, -0.7894861377118203, -1.2508654693270571, 0.5258622076173872, 1.8455825144432794, 1.8455825144432794, -1.871779625238153, 0.46912440826100127, -1.241051140258102, -0.481425544102528, 1.636181842102618, 0.6890721604234584, 0.0940513629997902, 0.00846380955811636, 1.6518353805042285, -1.2657095128390055, -0.9814588112770328, -0.10741058620861689, -0.39058568990221454, -1.3730300052279083, -0.061211937390509945, 1.8455825144432794, -0.7892173916386014, 1.8455825144432794, -0.11749191502049335, -1.4541004157677069, -0.8517921820161974, -1.2662672057791404, 0.06776408903517413, -0.8472085841668193, 0.200386264327764, 1.3933475346385997, 0.6792836487240264, 0.7173187225846549, -0.3713709592427312, 1.8455825144432794, 0.2217422791196219, 1.7139499892496022, 1.4283156749134183, 0.5744020717877711, -0.04076118246593671, 1.2546239644782764, 0.5979701678861798, -0.28097372897543, -0.042389706264719704, -0.5866251419452327, 0.6279724999672329, -1.405766476977981, -0.9860754478077025, 1.7083073600706054, -1.1743769575044571, -2.0208871585309436, 1.5881704080403753, -0.24440311826192945, 1.0547792115207824, -0.754373382409194, 0.17505012679931015, 1.1926675638181545, -0.30356520165498047, 1.8455825144432794, 0.3931445033377678, 0.8232743398514507, 1.8455825144432794, 0.27698748525167316, -1.5748741647806976, 0.03489248907863958, -0.1334031551361435, 0.32519507468453585, 0.4428322256923082, 1.440974587243119, -0.413005172646601, 0.9982894854627424, 1.8455825144432794, 0.27481618311745454, -0.4127399192339814, -1.26303031177716, 0.4937285974045898, -0.7636723552481797, 0.41033972100449106, 0.0757309422446428, 1.8455825144432794, -0.7511259632273215, 1.8455825144432794, 0.6364489040383928, -0.46071265084099755, 0.46043693421453735, -1.44955660593022, -0.3366184199623647, -1.8627980361310552, -1.9871006909406108, -0.30691022654100375, 1.564670277229187, -0.4357053897857039, -0.32905954726869363, -1.1650497601920344, 0.30097205752677036, 1.7208888674898606, -0.5407228972963919, 1.4853827283279013, 1.2393604713083244, -0.46847683533982276, 1.4761670129657645, -0.4187803341356773, 1.5792152262792494, 1.0873483659491867, -0.939736242999769, 0.31067259193774505, 1.092198255569749, 0.6410882900610251, -0.6530270387669485, 0.8439635396586922, -1.6081502997905444, 1.0611114995725963, 0.2078514959590582, 0.6556287080919474, 1.3747552527345712, -0.20626798439511554, 0.07127411853517104, 0.7729318852300141, 1.8455825144432794, 0.4115474263998981, -1.7256568064128868, 0.8376735411189187, 0.18138543553055608, 1.5590408635227053, -1.1755731465595336, -0.33579566240207837, 1.368928362110222, -0.8650529647227262, -0.1649394259912685, -1.6624641218980398, 0.6574898242069874, -0.33660369415014135, -0.5269191474619591, -1.3978329456385004, 0.5550699122153607, 0.5632548207213316, 0.4998820989925177, 1.1331311049680024, -0.5176422633413239, -1.1792875439023505, -0.0656219405687778, 0.044177680067712735, -2.0208871585309436, 0.31091273595258995, -0.8556800796338945, -1.8093194318865116, 1.8455825144432794, 0.1354282522745494, -0.2675826794684035, 1.3827815755703539, -1.249657055959905, 1.2499951508336484, 1.8455825144432794, 0.4273710668120277, -0.07190080035314964, -2.0208871585309436, 1.126608136527035, -2.0208871585309436, -1.4137017546477575, 1.6972830128985517, -0.6603695552963095, -1.2077558428131088, -0.14628767446091853, -0.9428147873221555, 0.5220844704027361, -0.7013490364332987, -0.015014798912119006, -0.1907390490200754, -0.9438871285205195, 0.048662822646851865, -0.7288834734184065, 0.2292016581845127, -1.3260473485028468, -0.09060560256602045, 1.5734782008680024, -0.7296835758829524, 1.8455825144432794, -0.23074473862516995, 1.3838727960151678, 0.22006806754442976, 0.10395881395185765, -1.077391530999717, -1.1133786786016802, -0.4733517399619218, -2.0208871585309436, -1.5621209978130952, 1.8455825144432794, -0.8294288650300019, -0.5255154754884, -0.6124673376747864, 1.7334862334761338, 1.0479356734751004, 0.8503985308111944, -0.836403425046047, -1.0983676009567616, -0.10378520451280618, 0.43275901495640917, 0.7631137331136594, 0.23424638162843192, -1.1103246772996789, 1.3252312134467492, 0.12967536829628423, -0.25432756053580197, 1.1145595902350691, -0.9309174637942427, 1.0789720218842198, -0.11948008846414629, -1.6166414296739275, 1.8455825144432794, 1.557068359853602, -1.512897327336293, 1.8455825144432794, -0.3448008741662931, -1.1342316558718701, -0.24577696102610488, -0.19280991356317967, -1.1003273611345168, 1.8455825144432794, -0.5376253793313327, -1.7531028177274297, -0.2330614109570541, 0.44837875950687023, -2.0208871585309436, 0.7621914819245773, 0.36131730329484335, 1.804447279523081, -0.6896678802772432, -0.31456613856143595, 0.5163899232959978, -1.0298605737596247, -0.7674477325570345, -0.4364879345510554, -1.0791529646935085, 0.6071990987208319, 1.2051301319847743, -0.9251170041149234, -0.7727190069583543, 0.4491837705755012, -0.7187975191911515, 1.2890767013250082, 0.6577010829747676, 0.2267016683695868, 0.21464726951122517, 0.6106777886717216, 1.8455825144432794, -0.5666988524870424, -0.28738379952262594, 0.3800049253934407, -1.5343605762479842, -1.901380737933559, 1.0021155535483135, -0.33542298607714627, 1.378461626397649, 0.38385289340490164, 0.4508151262612556, -0.35952781915213433, 0.3500139208602578, -0.8924757309650798, -0.31976472786392707, -0.007528422524808467, 1.8455825144432794, -0.7194235550034359, 0.0206350709520155, 0.8762495053903455, 1.0410772208247192, 1.1533617278789678, 0.7733795121633491, -0.44848720600979053, -0.666191254127891, -0.8863214742072861, 1.4101719639050436, 0.9255145214168727, -0.0271095993578915, -1.3959474752955319, 0.17413391696909217, -0.7550912657554558, 1.2057569229669167, -0.7023281141541993, 0.41367134162553093, 0.9794106165976021, 1.7030936673709542, -1.1878507925071806, 1.1111316854571263, -0.07232237392637582, -1.7312756949394723, 1.8455825144432794], [0.8159671088522251, -0.7418569763463504, -0.7418569763463504, 5.0, -0.7418569763463504, 2.1226197126608226, -0.5527844936236792, -0.7418569763463504, 0.12162894910890547, -0.023560406042021264, 0.6607898950045706, 1.3797561321630398, 5.0, -0.44629810017518945, -0.7418569763463504, 2.721389669017056, -0.5275232416456596, 2.6758102790788447, -0.7418569763463504, -0.7418569763463504, 0.08026719459480064, 0.12932867452442467, 0.31280984242881926, -0.7418569763463504, 0.2890463288311034, -0.681154899627901, -0.5562335147892857, -0.20954181404430416, -0.7413194385247032, -0.7061601388447314, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.30856127772845654, 0.05328614161213374, -0.7418569763463504, -0.7418569763463504, -0.04262951576116988, -0.7418569763463504, 1.9806038544743536, 0.7501671404667803, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.7166200425388484, 1.0706295627385878, -0.7289123098566281, 0.2682535690218179, 0.8802462443444294, 0.23422602484357025, -0.4026278196288738, -0.6706781376795528, 4.542366550481043, 0.95156002769226, -0.70180427637643, -0.7418569763463504, -0.7418569763463504, -0.44499512922165024, -0.14204502813583456, -0.7418569763463504, 0.09236812720388023, -0.6040036820531509, -0.41054327888394176, 0.23374222440600378, -0.033714071498256684, -0.7418569763463504, 2.0132008712266014, -0.7418569763463504, 2.6655080537269233, -0.7418569763463504, -0.7418569763463504, 3.2064703716312457, -0.6088434536771763, -0.7418569763463504, -0.7418569763463504, 1.994432730384309, 0.1914638693994942, 0.41650450157453217, 0.19693378998313546, -0.43647673293105993, 0.7469441235370988, -0.6017782166950532, -0.4614516351549919, -0.08381887565790934, -0.7418569763463504, -0.25436219393251674, -0.7418569763463504, 0.05878885344329952, 0.723975594134522, -0.7418569763463504, 0.9413642443582726, -0.4286507464083825, 1.8269107591660485, -0.14981244564134205, -0.30189899188341923, 1.0889973986900685, -0.7418569763463504, 0.4870880689926527, -0.7000570043746318, -0.009528416851670945, 0.4902526834521343, -0.7418569763463504, 0.0834587526527033, 2.256251078319181, 2.5092825562506302, -0.7418569763463504, -0.7418569763463504, 3.607686903536853, 2.7404820212908865, -0.7418569763463504, -0.7418569763463504, -0.6428580719601672, -0.38255754056788366, -0.009390219878454623, -0.7418569763463504, -0.6600838583398811, -0.7418569763463504, -0.44852015132043743, 0.9009537321059683, -0.7418569763463504, -0.3919183314239117, -0.47336553551872274, 5.0, -0.3427179143123231, 0.2864832080000871, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, 0.21705244168579285, -0.565554593445994, 1.8504878882010642, 0.3783211294026195, 0.4301714938313417, 0.08615074382671295, -0.7418569763463504, -0.7418569763463504, -0.7059323904919464, 0.6638459208407478, 0.00935800934852101, -0.12644342629576974, 0.3338065297481187, -0.5982659446919474, 1.1289135995405868, 0.5997587954977228, 0.2836129005387295, -0.4613696200257356, 0.42859995663888106, -0.24552014136695086, -0.7418569763463504, -0.12568582264239186, 0.4989834456324702, 0.07597346571141751, 0.5524948384912595, -0.03421800561375857, 1.114862809048042, -0.7418569763463504, -0.7418569763463504, 1.7298384516034262, -0.47715540430747366, 0.30528791515452164, 0.10570261769117559, 0.5853527048062324, 3.1507782497805508, -0.7418569763463504, -0.7418569763463504, 1.8153549162788447, 4.017336189580933, -0.4463860554796471, -0.7418569763463504, 0.03069667310931145, 0.136990279189433, -0.3592199430836544, -0.11435026587853925, -0.2301552212739943, -0.6084647998922373, -0.3707924406676799, -0.5847110292921652, 0.33650148175712186, -0.7418569763463504, -0.7418569763463504, 5.0, 0.8292192141058876, -0.5942931518163956, -0.4021454255879306, 4.287226069785338, 0.2010469819529267, 0.34816687553899794, -0.4627570858078357, -0.7418569763463504, -0.239722456349786, -0.7418569763463504, -0.7418569763463504, 1.720431582752846, 1.7735760541353536, 5.0, -0.3189106543776128, 0.13450680481967914, 0.4290063312414243, -0.7418569763463504, 3.6500934626984862, 0.2351143493618081, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, 0.6157421229890331, 1.7297743495258666, 0.05435633541970913, -0.7418569763463504, -0.7418569763463504, 1.512159491508788, -0.4864148050702712, 0.146411730152343, 0.07199062450211409, 2.453951064101868, 0.3977225188286541, 3.880482547201644, -0.7418569763463504, 0.5079982259093342, 2.7498921470599584, -0.7418569763463504, -0.5108682302313762, 1.066177355162299, -0.7418569763463504, 5.0, -0.7418569763463504, 1.2704820755598827, -0.7418569763463504, 1.8177514161207335, 0.8719841823432036, -0.16828117204514728, -0.5587428224443375, -0.011646450162632417, -0.7418569763463504, -0.3040106964095886, -0.7418569763463504, -0.48462753403826364, -0.7418569763463504, 5.0, -0.6091351791972945, 2.768339333389204, -0.7418569763463504, -0.5016347552799707, -0.7418569763463504, 0.8546513062629015, 0.35009541541052186, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.013802456182355902, 1.7477075349006375, 2.645204719941688, 2.330255964590518, -0.7418569763463504, -0.7418569763463504, 0.24959120400958978, -0.7418569763463504, -0.24257022445477072, -0.7418569763463504, 0.1233414960678223, -0.5007405090917497, 0.2099066144762561, -0.7418569763463504, -0.7418569763463504, 0.8494199549586797, 5.0, -0.7418569763463504, -0.7418569763463504, 2.289328046423498, -0.7418569763463504, -0.7418569763463504, 3.7958861619997406, 0.2221868256440566, -0.7308209924719179, -0.7418569763463504, 0.4380827709069848, 0.493674150347104, -0.48861200370681196, -0.46408172637246664, 0.04647659123671943, 4.532155222763352, -0.7418569763463504, -0.7418569763463504, -0.4295521726214568, -0.7418569763463504, -0.7418569763463504, -0.16406683054996837, -0.7418569763463504, 2.4075906058929735, 0.8065879238088111, -0.7418569763463504, -0.02731067366276198, -0.36579362594157977, -0.7418569763463504, -0.7418569763463504, 1.9612254855403735, -0.4564559848212884, -0.7418569763463504, -0.3781914932898429, 0.6096043120522489, 3.92237066415631, 2.004974191203516, -0.7360106220257279, -0.7418569763463504, -0.7418569763463504, -0.7364249070309757, 0.5340836263071609, -0.2932388826280612, -0.5660448892153198, -0.30095244994716586, -0.6859831887637261, -0.7418569763463504, -0.04559923325735269, -0.41871170447857103, -0.7418569763463504, -0.444424446782313, -0.7418569763463504, 3.2273392248997994, -0.6934117710886217, -0.5647131981623665, -0.380234950569465, 0.4532336596405104, 3.789046633170046, -0.7418569763463504, 5.0, 0.19895552213600914, -0.7418569763463504, 0.267677760636903, -0.6277590718598592, -0.06822289940432899, -0.7418569763463504, 2.9289104483820956, -0.7418569763463504, 5.0, -0.26097906797087755, -0.7418569763463504, 3.095881408208493, 1.6062958350941248, 1.6034532854608123, -0.3581525250588851, -0.7418569763463504, 5.0, 4.283207032368255, -0.7418569763463504, 0.3917107654416234, 0.7144847856119456, 0.6301246750423429, 0.30637254303267336, -0.7418569763463504, 2.5056173386150133, -0.7418569763463504, 0.6876840474802424, -0.23093247746962584, 1.1395699407574582, 0.12551126997025686, -0.7418569763463504, 0.015026527939194637, -0.21222895685101378, -0.7418569763463504, -0.3489749358679383, -0.7418569763463504, 0.7333827590685997, -0.7418569763463504, 0.5763915896635826, 0.17238580315449992, 0.4695844267542287, 0.010355736719687317, 0.7795722290567484, -0.6348215238065681, -0.48847839602783355, -0.17151473694948804, -0.22715926337770007, -0.5860544526537714, 0.30981421762645783, -0.5915731529938907, -0.7418569763463504, -0.17734750786130052, -0.3950196950458935, 0.19119539568666938, -0.7418569763463504, -0.7418569763463504, -0.5045889654028896, -0.7321080281190079, -0.11429748899481869, -0.27919134905400717, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.3414378343143099, 0.29836659325818604, -0.40892251780975253, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.4828593048762938, 0.6958925183681286, -0.4341620816714611, -0.7418569763463504, -0.7418569763463504, 0.021245169671237598, 0.08426335956156328, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.23583569423594672, 0.05836863693717566, -0.7418569763463504, 0.14352284345141902, -0.7418569763463504, -0.3576757936148628, 0.569955770684936, -0.69197404975885, -0.21930575959482163, -0.7418569763463504, 0.403879427151131, 0.002587690036744395, -0.7418569763463504, -0.5727373385668307, 0.5242552825955814, -0.6951866112399708, 0.15934228872596257, -0.7418569763463504, -0.5105893750908601, 0.4619597585057349, 0.48181304537231, -0.10947258631401467, -0.6425188435436586, 0.07495782528855989, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, 0.43318680818639166, -0.7418569763463504, -0.5490514913719784, -0.7418569763463504, -0.31654502124050904, -0.00940487601165933, -0.3172553625653383, -0.3775241951036987, 0.3682145412227408, -0.7418569763463504, 0.5957336883689182, -0.7418569763463504, -0.11818832225676884, 1.0060587849997453, 0.6220651341545107, -0.6138490413133187, -0.07453762023183622, 0.1408516521432247, 0.48359287730639827, -0.028745124195128424, 1.7112062130872314, -0.3144183644976343, -0.24864804147254135, 0.19899712186763513, 0.15575945632397295, -0.15061142696372237, -0.15161792580854566, -0.7418569763463504, -0.7418569763463504, 0.051560418937506715, -0.7418569763463504, -0.7418569763463504, 0.08093501092706898, 0.5699633208141616, -0.7418569763463504, -0.7410095373016686, -0.027741697216607894, -0.6712819305814401, -0.14598308671589508, 0.7751577721266033, -0.7418569763463504, 0.23540118025158077, -0.7418569763463504, -0.04860596119092938, 0.24916847079371926, 0.367608236237415, -0.6813971283143146, 0.2072978227654984, -0.5280929803188437, -0.28121678225062036, -0.39530474943467253, 0.06663188327239818, -0.505284650594512, 0.07854221212891825, -0.7418569763463504, -0.1767820623988511, -0.03796982767287298, -0.7418569763463504, 0.40754923408098537, -0.45157116224235017, -0.2479908841462413, -0.10743530977743766, -0.07709815033223606, -0.36094659101921683, 1.8559763880242723, -0.7181316991567638, 0.02052324407950817, -0.7418569763463504, -0.7418569763463504, 0.452100992214624, -0.3903254021986398, -0.7418569763463504, 0.44378511703743023, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.5579500773806593, -0.7418569763463504, -0.7418569763463504, -0.37989552784815994, -0.7418569763463504, -0.7418569763463504, -0.24039364063185528, -0.5184482453871586, -0.009742337179782954, -0.3412375708375918, -0.07703079133618546, -0.02048824365514004, -0.3421280419611988, 0.30490641156589987, 5.0, -0.06489891800144329, -0.09217746087985122, 0.4056051498257581, -0.7418569763463504, 0.28530612804933037, -0.6579567574717576, 0.2139523734291222, -0.5912362654875468, 0.2206256513740616, -0.4733553206380032, -0.3239250134874167, -0.5523149422045107, 0.46983942866785006, -0.7418569763463504, -0.7418569763463504, -0.32286795838511634, -0.3536070881908142, -0.5176134009509491, -0.20592348863285492, -0.7418569763463504, 0.026486883897929855, -0.40889150306321953, 0.011893446372371302, 0.662225455850059, -0.010010662850863718, -0.20634718412009856, 0.45157307533568986, 0.7166981578096214, 5.0, -0.3086386665530391, -0.01727766223241912, 0.6051666125674208, -0.40316691365989865, -0.2673689569967234, 1.2744771302135285, 0.7560156778249194, 0.8833152978545732, -0.49110611857731534, 1.0561758026037351, 2.2339234216504518, 0.7643878828878234, 1.1690936107888235, 0.25110411666922194, -0.7418569763463504, -0.3182644521407804, 0.07239004114243212, 0.06983883767225514, 0.30638882762512615, 2.7118238033274533, 0.7530280472770405, -0.7335594820559155, -0.09913956827818397, -0.7418569763463504, -0.6107628427180573, 0.42161364441449234, -0.16135870282525966, -0.5848712474756271, -0.12268842133903818, -0.7418569763463504, -0.014510169766132338, -0.3726095791226612, -0.7418569763463504, 2.638738552404385, -0.7418569763463504, 3.408273482544751, 0.35758247885280003, -0.7418569763463504, 0.24834691310453127, -0.6135698993419125, 0.45174295324331337, -0.6731018772033586, 0.43250685243066045, -0.7418569763463504, -0.7418569763463504, 4.372487458526289, 1.843943554619988, -0.7418569763463504, 0.18005658640798208, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, 4.195779792831274, -0.24879834085878072, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, 4.328590118946561, 0.7456665232383897, -0.37836662667957316, 0.8991788595704845, 0.7652213579378457, -0.6566124921227005, -0.7418569763463504, -0.20450698816262441, -0.3885598562933801, -0.1330557110398925, 0.16454269930452675, -0.7418569763463504, -0.7418569763463504, -0.6432846820193542, -0.17830711448195105, -0.3845651717441123, -0.7418569763463504, 0.4355986303493557, -0.7418569763463504, 5.0, -0.502420801454481, -0.5507221425157695, -0.3863116202636784, -0.7418569763463504, -0.7418569763463504, 4.869568425359868, 0.307405430319357, -0.397950995708068, 0.2577579271240963, -0.7418569763463504, -0.3519928039431684, -0.7418569763463504, -0.6975235566617922, -0.022854691021865412, 0.4403057658183865, -0.7418569763463504, -0.7418569763463504, -0.4900581125269574, 2.705471331853808, 0.2432715978043476, 0.029174581861200453, 5.0, -0.41816624465231533, 2.284205505805205, -0.11017193553894135, 0.08597531435348421, -0.7418569763463504, 0.924797780415445, -0.7418569763463504, 0.08819734699351295, -0.7418569763463504, 0.2429261423817466, -0.7418569763463504, 0.9446491427392693, -0.3913584005166361, -0.7418569763463504, 0.04042893772542171, 4.76981552583793, 2.5635567342240355, -0.7418569763463504, -0.0965731165078017, 0.12351255830943748, 0.5346546233352155, 0.4002181326218708, 1.268611420012438, 0.7027056957664072, -0.42030455968296837, -0.7418569763463504, 0.6790348563039149, -0.3474248647291643, 0.8495796920064564, -0.7418569763463504, -0.7418569763463504, 0.017985290345916036, -0.7418569763463504, -0.2857322036539675, 0.47832177679242227, -0.31373678028265733, 1.916626131984252, -0.5176118095021416, 0.009465635700452241, 0.19460087407268403, 0.3063493004779954, -0.7418569763463504, -0.5559485529266002, -0.25790868208499107, -0.01376137459685615, 0.5488974239769401, -0.720657652256032, -0.7418569763463504, -0.7418569763463504, -0.4148386732370045, 1.2970733346159575, -0.09747853984811658, 3.8366533068267357, -0.7418569763463504, 0.765588945602008, 4.23709617254917, -0.7418569763463504, -0.4644648954307666, 0.0522092859258313, -0.7418569763463504, 1.3079173927712686, -0.7418569763463504, -0.5308373412617602, -0.5554160097429937, -0.4064512198739001, -0.7418569763463504, -0.7418569763463504, 0.7881927001336623, -0.7418569763463504, -0.07865843635172777, -0.0691657032864053, -0.6035660151257938, 1.1247564391711768, 1.1328682387965983, 0.1254196321272805, 0.41526317150446723, 0.45165072323333644, -0.1373886709869038, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, 0.0880623329179137, -0.7418569763463504, -0.5617005115483712, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, 0.4308420489359755, -0.54256974244053, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.4620212813020822, 0.029607900062164832, 0.4179681903524382, -0.2484204642930277, -0.31952225185548494, -0.7418569763463504, 5.0, -0.12085425808285583, -0.7418569763463504, -0.2522460851642966, -0.7418569763463504, 0.2590043646345244, -0.7418569763463504, -0.7418569763463504, -0.23151350432621326, -0.4118770610266074, -0.3694699837188553, -0.6866223867752815, -0.7418569763463504, -0.16427630962559722, -0.5173683918554262, -0.5305763066468475, 0.23454016943613643, 0.6164143805737847, -0.07041399131870013, -0.19564180407368506, 1.5825765859795253, -0.7418569763463504, -0.1170506954322733, -0.7418569763463504, -0.7418569763463504, -0.30979775943122373, 3.458542835109041, -0.7418569763463504, 0.9795849230510717, 0.3102684837349865, -0.35082009122402413, 0.06812481029583912, 0.307173004772548, 0.2767172638859491, 0.7032738800012217, 5.0, 0.6617811825596283, 0.21847475279469644, -0.2525798822991214, -0.7418569763463504, -0.5008166580666802, 0.33899939019745706, -0.7418569763463504, 2.4884317640755222, -0.09509277303307039, -0.7418569763463504, 1.9747150497603339, 0.41366024946109725, -0.7418569763463504, -0.7418569763463504, 2.0688213408705067, 0.21969565310332326, -0.3620213741210267, 1.8777876750705342, 0.17950039355488118, -0.5924207660309998, -0.7418569763463504, 0.4267895540835027, 0.07965452381424086, 0.5795867747443493, -0.1294068150071581, 1.6343883855324897, -0.24881103543880934, -0.005230986924549349, -0.7418569763463504, 0.02234956112296203, 0.0854986939407713, -0.7128498887474647, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.41818541605888304, 0.16398591428442993, 0.13156839815352617, -0.49812459287179567, -0.7094141126921393, 0.35121971847755823, -0.7418569763463504, 0.18601171382580486, 0.5285717358875213, 0.8719655290827576, -0.7418569763463504, -0.1480356485631171, 0.24898208623101944, 0.3460885174169164, -0.13677899805177718, -0.24748835642735934, 3.3684218278970386, 0.5937306834973649, -0.020548274584583547, -0.5430360369412084, -0.7418569763463504, -0.7418569763463504, 0.029920860320739488, -0.09298428841495515, 0.4077184458007337, -0.595942540463906, -0.0265306416843303, 0.45229389061430225, -0.277698459041001, 0.31075813182165607, -0.24413354533013049, 0.9190167500951004, -0.740996507603699, -0.7418569763463504, 0.47412464515062946, -0.08202490573673778, -0.7418569763463504, -0.6341579544219909, -0.3402132329619447, -0.7418569763463504, 0.29825911494800866, -0.5487888282978204, -0.4261482486738104, -0.30230381204759266, 0.7183141815478273, -0.24457659727612494, -0.7418569763463504, 1.1767552154538319, 0.5328263077281409, -0.4471624234247799, -0.17839712386568388, 0.03787395919063204, -0.63043488022012, 1.5791167022505468, -0.11214681247807705, -0.7418569763463504, 0.17328389842820754, -0.7418569763463504, -0.32196160978386945, 0.0006790617805325078, 0.9934713872016084, -0.022577260783189983, -0.7418569763463504, -0.008246153237850436, -0.5107831802462537, -0.7418569763463504, -0.6123026989761117, 0.1616807562020239, 0.2259932751087583, -0.6621552122366865, -0.7418569763463504, -0.7418569763463504, 0.01767469875533435, 0.7367807613462629, -0.5754162835616602, -0.22946386630354512, 0.06693218596137906, -0.5662726144365815, 0.7273361418495498, -0.7418569763463504, 0.10173694932482368, 0.9384842401623199, -0.2950902187271911, -0.5191643788454391, 0.4520213457533618, -0.3046565285420466, 0.052467914862311844, 0.1687393868210725, -0.7418569763463504, -0.4152898304687902, -0.2253771367964886, -0.7418569763463504, -0.07190721442564378, -0.4169514510658582, 1.5492309220997549, 0.03308251394522733, 0.4233173828893077, 0.7158532835448812, 0.04650368287688957, -0.4228897017242323, -0.5192430445301119, 0.7036758133512768, -0.09921292296509153, 0.9040467683795342, 0.4580005299554866, -0.6987260303989027, 0.2165026886488006, -0.12892360673659234, -0.7418569763463504, -0.02644729417932466, 0.1212014045361745, 1.262646965964392, -0.44377078694234723, -0.030735175413599873, 1.0235145357321835, -0.11427328416876774, -0.5833244702657809, -0.7418569763463504, 0.42937229044633807, 0.7431415231578843, 0.12948367423621515, 0.5562524341786076, 0.6658360460800941, -0.7418569763463504, -0.7418569763463504, 0.7267839461236849, 0.09774071033718638, -0.2559786617959693, -0.7418569763463504, 0.06387393949895778, 1.471860306652153, -0.040525620437286886, 0.10307228590585765, -0.05875888643842003, 0.25262021222647135, -0.42394897745277565, -0.43889579063453593, -0.03955690924903694, 0.15151302677957967, 0.29048862557619826, -0.7418569763463504, -0.7418569763463504, -0.6964979372997505, -0.3961407782048784, 0.8565771813829346, -0.6009823905124625, -0.7418569763463504, 1.095267706992705, -0.7347741264440465, -0.7418569763463504, 0.19963162880625315, 0.19194870612930812, 0.9651618075583838, 0.28614700518683445, 0.11356918615845493, -0.4138708873096894, -0.7418569763463504, -0.3671474677413112, 0.034496756778779024, -0.7418569763463504, 0.2230915827964917, -0.0201505604243929, -0.5910111124916843, -0.7418569763463504, 0.0509034096529556, -0.7418569763463504, 0.28121181140260837, -0.7195392060907111, -0.14417372045276444, 0.1573153010909814, -0.7418569763463504, -0.14188976935098097, 0.6120293839518027, -0.7303401239549409, -0.06367476077432517, -0.4325680606382866, -0.5016807407484281, -0.1469470975785988, 0.4927790159083851, -0.27506520343112967, -0.2135071493167186, -0.03942833498954633, -0.18779055792749033, -0.7070253989210186, -0.07462207804995902, -0.628209377851585, 0.8654595383148206, -0.3649595957349929, -0.060111025758028305, 0.11682706692015606, -0.7418569763463504, 0.5567726528865621, 0.041556571731824116, 0.7386962735438306, 0.4577689186383019, 0.2477748057633548, 0.997250596984391, -0.7418569763463504, -0.09500750098532348, -0.7418569763463504, -0.4467095081972179, 0.43238908521888225, 0.7994255159233239, -0.11248123879033743, 0.9914658656203081, -0.4546293531891169, -0.7418569763463504, -0.7418569763463504, -0.6273131978680108, -0.3166071987753245, 0.5248598851007843, -0.2724976413476253, -0.5115886569003943, 0.3283297992440011, 1.8690277486655333, -0.7418569763463504, 0.024222363275776673, -0.7418569763463504, -0.67989258926614, -0.7099516731031649, -0.07141571581710264, -0.06454643059573789, 0.07758186529951819, -0.4253660700900072, 0.21344333187325734, -0.0661819218240087, -0.07243957255706115, -0.01292627108758545, -0.19626731747601756, -0.6840710398896593, -0.4706774674510763, -0.4297716075047431, 0.1268101882809025, -0.14712211993701538, -0.5630355150354711, -0.12602698485425395, 0.3697264175901303, 0.3843678946634185, 3.2240257544611337, -0.7418569763463504, -0.7418569763463504, -0.0366022179904359, -0.17567556135220172, 1.2961138760370556, 0.6036866391970617, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.7214662285343038, 0.2924800091704102, 0.016010191344152, -0.7418569763463504, 0.41174244261641607, -0.7418569763463504, -0.31100248617871035, 0.1988165849540482, -0.2646052025846143, -0.20198202509255395, -0.31483328851121495, 0.5485621094141859, 0.18583843095794572, 0.179592919648356, 0.797561374212857, 0.16907595973869752, -0.5995104761648468, -0.1155035111076126, 0.3671908325245311, -0.7418569763463504, -0.7418569763463504, -0.6764133259468813, 0.030510140504862632, -0.7418569763463504, 0.207984366379087, -0.521057240655321, -0.7418569763463504, 0.6137918209803209, -0.19064576513039133, 1.3996273320813064, 0.057500594138626904, -0.7418569763463504, 0.3997258197837104, 1.5802655062271371, 0.12707074176012914, 0.01822104683209099, 0.07795811340602779, 0.0819004651968275, 1.1937209479952287, 0.5533370480045091, 0.690644586387956, 0.4650166725924155, -0.15462791066060896, -0.5275190964766718, -0.7418569763463504, 0.5302231416038676, 0.5270309173580947, -0.2531081322719884, 5.0, -0.7418569763463504, -0.623935653109614, -0.7418569763463504, -0.7418569763463504, -0.23060782191284004, 0.2088099952163858, 0.5086176325894957, -0.7418569763463504, 0.04198737322304666, -0.10953565209932638, -0.577691333653251, -0.2639544480639831, -0.21431860315649923, -0.48123130826159444, 0.010383272485104482, 1.2636894759647965, 2.939864353515582, -0.1557585795228795, 0.09846300603329303, -0.7418569763463504, 0.39636038669094786, -0.3128569681650186, -0.6187535534449484, -0.27268013981439604, -0.4465244930207047, -0.062339868318537946, -0.7418569763463504, -0.7418569763463504, -0.3273154286254156, 1.105481107294891, 0.3633695048639964, -0.018790426850302286, -0.7418569763463504, -0.3945734972127181, 0.5569260241391096, 0.1136181139566832, -0.7418569763463504, -0.30745381441043124, 1.18173252711581, 0.6036032916920611, 0.2172819804184875, -0.7418569763463504, -0.43461914206801083, 0.4544288747055916, -0.7418569763463504, 0.32600909677789186, 0.9720935663980592, -0.7418569763463504, -0.14568855765514271, -0.010969455241890077, 2.1561556101887858, -0.7418569763463504, -0.7418569763463504, -0.13528892083201086, -0.7418569763463504, 1.026398537055373, 0.1334595574832888, 0.14077992591556054, -0.3301517975156842, -0.511478347291753, -0.7418569763463504, -0.11993069962822599, 0.20796016155303107, 0.6583319578366132, 0.35674300811191595, 0.5471878378530117, 1.157256636619211, -0.4899113291322678, -0.1981069952873703, 0.2667952097468986, -0.7418569763463504, 0.7149441591608277, -0.7418569763463504, -0.44817998839038475, -0.7418569763463504, 0.6414217409513071, 1.6010311743962524, 1.2118796009545783, 0.9220900968159781, 0.9304991642745223, -0.4358446686813109, 0.48125566818521265, 0.5811290736912703, -0.1928304172286539, -0.11142059367560857, -0.6630546398861416, -0.40404842825765713, -0.7418569763463504, 0.5724840276839277, 0.4943033277827352, -0.6304164582749087, -0.5505708438477188, 0.17832368370849683, -0.7418569763463504, -0.5603486683122584, -0.5875525241280124, 0.3847764898922057, -0.45628736526853936, 0.3246859736411903, 0.3352789529892518, 0.008299806922664441, -0.14639756660422992, 1.1978101572015871, -0.7418569763463504, -0.7418569763463504, -0.29557786825024407, 0.10636466039521052, -0.20038091656062085, -0.7418569763463504, -0.00372147922515762, -0.7418569763463504, -0.41539901125909123, 0.7615821956501463, 0.2765590812765415, 1.083478254224701, -0.18286343241861616, 0.14721752139520428, 0.2600595322045177, -0.3433138193647416, -0.209233369059092, -0.7418569763463504, 0.014696098754175414, 0.2965963840378187, -0.7418569763463504, -0.29183670519709837, 0.4199511355669259, -0.5625537501719634, -0.7418569763463504, -0.1974293341787577, 0.342316783742485, 0.06572172259609724, -0.7418569763463504, 0.5784951148830884, 0.003979060419985676, 0.09038111084128167, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.2470833512109965, -0.038416913756548425, -0.13554592130924803, -0.5212505091593723, -0.5392366934804856, -0.6441555838741913, -0.3570077922304077, -0.7418569763463504, -0.2600163524734849, -0.7418569763463504, -0.20727281515922333, -0.7418569763463504, -0.7418569763463504, 0.17337975546104842, -0.7174953208779066, -0.4818478651380769, 1.0953241108992897, 0.6937361422440278, 0.9665067668531435, -0.2377921769876998, -0.08635830980900067, 0.3935610652485097, -0.1888631574134933, 0.4731064139971507, -0.7418569763463504, -0.18408814480229066, -0.6333311690085232, -0.7418569763463504, 0.524941160021295, 0.7838769870504722, -0.44898788922817434, 0.11478742171558594, 0.6332573865047938, -0.5995710807560735, -0.562386222427117, -0.19985651567323637, -0.7418569763463504, -0.7418569763463504, 0.37488929958517936, 0.34216185805156896, 0.5340519453727536, -0.07964254388193202, -0.04177279815645975, -0.6400988513266385, 0.11476225461816202, 0.1549919338733765, -0.45899088519379616, -0.6651913588416826, -0.23645117780974154, 0.6942431852362723, -0.395883185560643, -0.7418569763463504, -0.7166350664632765, 0.3025896322061523, -0.7418569763463504, -0.2854500360793054, -0.40968955912466304, 0.44593645974204693, 0.12691433565171864, -0.7418569763463504, 0.2644487480163644, -0.6000204614868645, -0.37996336797989616, -0.47175770959240143, 0.2646055242291471, 0.18059190537439315, -0.7418569763463504, 0.3545251206408724, -0.7418569763463504, -0.7418569763463504, -0.6565024508397305, -0.49630950849608957, -0.5093817430240385, -0.3655619035930799, 0.3549850863567602, 0.588559437143466, 0.3045210588917954, 0.9043860800695296, 1.9842444971795474, 0.06491852208385726, 0.1616534424992304, 0.20147400837953627, 0.5023627206288134, -0.32272546820116427, 0.6765114846826528, -0.5633810444789458, -0.7295614347614378, -0.6042308243600235, 0.2398148969729814, 0.18781034706209268, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.6921925871390294, 0.4527805038451085, -0.04268436522938041, -0.09787610596656304, 0.9873818378751823, -0.7418569763463504, -0.009047355186474657, 0.07280744485531598, 0.5732637635788665, -0.20082048952550038, -0.23159074510904298, 0.19231510945946864, -0.7418569763463504, 0.12113034449638543, 0.7927757766165602, -0.7418569763463504, -0.5345347024622548, 0.5977172997712813, -0.02395945257796209, 1.0598830640962347, -0.39575897853276165, -0.030020577888467903, -0.10136108277209119, -0.7418569763463504, -0.7418569763463504, 0.0456006282045725, -0.7418569763463504, 0.12518269130710452, -0.0016320919927304688, -0.6675441586096208, -0.06941944684515089, -0.21655025851024878, 0.21195913931303853, -0.5084307783405174, 1.2409755783714638, 0.5217563378629988, -0.4140654881894872, -0.06468588592382506, -0.7418569763463504, 0.28295167206431887, 0.02430674707302496, 0.8222439309918449, -0.6221777868701129, -0.6051529671654271, 0.12458956203749376, -0.5595543873154288, -0.027570116828866627, -0.7418569763463504, 0.1259455504425942, 1.2074648479409302, 0.9699958148067873, -0.1064061235344925, -0.24943636378895326, -0.23538076193954774, 0.4781242890985072, -0.4739312215490124, 1.5343863317460673, 0.6031476191869122, 0.4913677339098221, -0.22678867786810972, 0.004692473611121159, -0.6051637279500984, 1.4926203492347838, -0.40298004796151576, -0.7418569763463504, -0.0783545066398781, -0.7418569763463504, -0.7418569763463504, 0.8044200004282485, 1.088989256393842, 0.06532186183053713, -0.7418569763463504, -0.11927235796792951, -0.7418569763463504, 0.5909436495201387, 0.0005160678142645133, -0.22247248364923303, -0.44289084528817757, 0.7754950112321034, -0.242385616393068, -0.42804836452942063, -0.2889659906209317, -0.03764813295108087, 0.01791467443137385, -0.0644194847954905, -0.7418569763463504, 1.1455654835729103, 0.17429657801607656, -0.5377395657723985, 3.0686870270647097, 0.6418936980489091, -0.7418569763463504, -0.7418569763463504, 0.19315169338623853, 0.6095296990104703, 0.2398106777831167, -0.3376675810573759, 1.560802161328908, -0.4761493495878976, 0.06222305192873252, 1.0063230395227103, -0.5636797002034655, 0.3399296105308189, -0.12300467552653918, 1.007197078012116, -0.21318959976391186, 0.2371618407791067, -0.3111404980997385, 0.3481202423878833, -0.3338569494132492, -0.7418569763463504, 0.4079181541208927, -0.4288656660183072, -0.6520953034709683, -0.7418569763463504, -0.7084037161856267, 0.18154218536482075, -0.05757262789918915, 0.2722697196247719, 0.526425278560639, 0.9290180065701666, -0.19492013755501378, 0.2151646132953963, -0.07607296121652724, 0.2276776941352575, -0.6004729881048337, -0.7418569763463504, -0.3273471095598214, -0.44462509886862384, -0.7418569763463504, -0.45809700910994905, -0.7418569763463504, -0.36088933587257405, 0.25168555064062154, 1.0612377941464646, -0.04698579228373835, 1.3025144610793056, -0.6945031626242104, -0.5986173773001855, 0.2053202070539924, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.01822986676559279, -0.1421157920921257, 0.2031713810591223, 0.6752096055370181, 0.38910256589786646, -0.5560840111274483, 0.8731184782283379, -0.7418569763463504, 0.49226109184754874, -0.2465249377316564, -0.7418569763463504, -0.23314703400130316, -0.7418569763463504, 0.5410303373635392, -0.5787666349011842, -0.6799437978325739, 0.19773314140988824, -0.15945344251884855, -0.5302527243927456, 1.1771581850961392, -0.7418569763463504, -0.6131061863192424, -0.5128833005055203, -0.6139771529423447, 0.1232752473848938, 1.165859490727927, 0.03212342547069826, -0.7418569763463504, 0.011452874125679007, -0.47238831192987346, 0.7252209213318281, -0.03395930265640352, 0.25258379395607833, 0.4535240435322773, -0.17797328033669133, -0.46294161984866294, -0.6373115305185211, -0.7418569763463504, -0.36542422476598874, 1.345152113412002, -0.5044203643553588, 0.9294973657552449, -0.3351192644013148, 0.4020084755201832, -0.7418569763463504, 0.14588166666804409, 1.3678891055182636, -0.023903492796624605, -0.06095649218976935, -0.7418569763463504, 0.4969375826744151, 0.4037259078568349, 0.507621903781955, -0.7418569763463504, -0.7418569763463504, -0.4814451915792721, -0.7418569763463504, -0.6304615647454781, -0.04954299144477212, 0.2136746471069441, -0.7418569763463504, 0.23520354451591685, -0.6984677160511382, 0.47317673382819486, -0.2527144892599087, 2.2297101534579595, 0.5377790444596908, 0.4699426877881677, -0.033198220021910765, -0.12643265625848712, 0.008575830764719874, -0.7418569763463504, -0.7418569763463504, 0.039723740851392075, -0.7418569763463504, 0.9165854604420665, -0.1406676476979229, -0.3581572253844338, -0.7418569763463504, -0.4389779167951044, -0.5624511202290808, -0.13581913235806367, 0.6513624483508039, -0.11479091214610604, -0.7418569763463504, -0.008784877164502089, -0.25389234642984987, 0.1489480554266919, -0.3683057093794359, -0.10915059550871985, 0.15188172475685877, -0.7368136716047788, 0.07061916573418484, 0.983035628191581, 0.48335667669497645, 0.19542021113562805, -0.7418569763463504, -0.7418569763463504, -0.644920423068077, -0.4900047434762407, -0.3438112026328279, 1.14878598379285, -0.7418569763463504, -0.15875453741917364, 0.9221604166470228, -0.7418569763463504, -0.3302008733556634, -0.7418569763463504, 0.11968782568866711, -0.5205576182557727, 0.3884501459075521, -0.3531495651637973, 0.9724085992411241, -0.7418569763463504, 0.6241483776543273, 0.213504399094953, 1.5894411338648995, -0.08042168760987006, -0.7418569763463504, -0.6381129545297672, 0.24005272604365127, -0.3902954237443539, -0.7418569763463504, -0.7418569763463504, 1.056274398408946, -0.7380710211222095, 0.29331274401168794, 0.2539790134248118, -0.5430789320381435, -0.7418569763463504, -0.5698258754990971, 0.20334384969735736, 0.054442569738828994, 0.06346549231191945, -0.7418569763463504, -0.5880078820444419, -0.40747415135292625, -0.2827954624574972, -0.20169067892941872, 2.2738171201550417, -0.5640621845686739, -0.6333755075125164, 0.46355209556401084, -0.40153075624375506, 0.35574357826063163, 0.4446668536978154, 0.08059843800944383, -0.08083953544800564, -0.4063271238773309, 0.4406009610670092, -0.06744634640700743, -0.7418569763463504, 1.4071083258118533, 0.028364497407604942, -0.0405328004621403, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.7147983957499624, -0.27286534004309654, -0.24386014922912624, -0.32469342418851077, -0.7418569763463504, -0.7418569763463504, 0.8921908448659782, -0.7418569763463504, 0.1958285843017919, 0.4025890212410841, -0.6293138803346191, -0.3391280499272282, -0.46140844397455744, -0.7418569763463504, 0.5167631857338194, -0.4278619429562865, 0.45296192900919396, 0.48253474890141607, -0.24675084944148212, -0.5733155526301769, -0.4500616915533934, 0.06157536927440442, -0.43847159550638876, -0.7418569763463504, -0.3258874549195917, -0.03311205972367009, 0.6874369658002288, -0.658798735669774, 0.2844419343362688, -0.44872287599124183, 0.042654967492691626, -0.02854682227159409, -0.7418569763463504, 0.39975727865548927, -0.3655639391671367, 0.32264070285013574, -0.45078348760859466, -0.6349208135574765, 0.11385572096472517, 1.112449432446709, -0.02189530646383833, 0.23617269982941852, 0.2276375008002514, -0.034780934366465996, -0.11905362628295224, -0.03735789710106762, -0.7418569763463504, 0.06817144344695374, 0.8826652465322521, -0.26251755484274836, -0.7418569763463504, 1.1947742650433502, -0.7418569763463504, 0.14650107334820556, 0.6160744767167936, -0.020369144067616345, -0.7418569763463504, 0.47138002513464844, -0.22288548312007345, -0.067943766685531, 0.7050672577553976, 0.04394692784110738, 0.1349188050087068, -0.7418569763463504, -0.36609455780799904, -0.03747729277208437, 0.17490710219126676, 0.5401586675421265, 0.19965901652992105, 0.15215996922515831, 0.4138678780148593, -0.072684951756957, -0.29966115578662367, -0.10819350559781123, 0.8766010123449987, -0.37499231108183895, -0.717266668082558, 0.33295255091577874, 0.17507520359789308, 1.282666651757471, 0.05276000123419667, -0.548395000233552, 0.875639777265105, -0.5904979072616137, -0.3271691633768498, -0.7418569763463504, 0.6966795083087951, -0.7418569763463504, -0.2922860119070149, 0.03112414366116791, -0.7418569763463504, 0.6172326073236065, -0.32738808011401227, -0.30827144899325437, 0.1235660013810283, 1.00596907169951, -0.6981878431235939, -0.7418569763463504, -0.5035161438542611, -0.5642029907777245, 0.5332905666547629, 0.1982528419717215, -0.47022910450731353, 0.32704457479519183, -0.7418569763463504, -0.7418569763463504, 0.27230058632955506, -0.09139587446304584, -0.4996470542242767, -0.2169157735899156, 0.7206100130000104, 0.5136365439830999, -0.6218236062368984, -0.25817308464970606, -0.05925127329745963, 0.12633416003519019, -0.438859538911112, -0.20172639400150186, -0.25550052395532713, 0.8659667293488138, -0.7418569763463504, 1.323943800411699, 0.7018603773764148, -0.6773496206182819, -0.450306867195884, -0.7418569763463504, 0.17008049703034003, -0.4111346316525615, 0.02906991634426291, -0.2594521653659095, -0.38461754151301925, -0.022681630216629643, -0.32709096032264456, 0.06772154457003858, -0.3040945620607146, 0.7976075632387198, 0.5974061160137035, -0.15758193573134455, -0.7418569763463504, -0.05896422034505863, 0.3405890625042373, 0.0281207466669573, -0.572176241830777, 0.35352147159972863, -0.29048600928454477, -0.09318148002537233, 0.12026481840757851, 0.019724632861500297, 0.6010056031125234, 0.20142907770854437, 0.2375028549492198, 0.19439013664218427, -0.010790620808420892, 0.8360078165737377, -0.08341331528499032, -0.17007229216264416, -0.23862146985830218, -0.17586083560177465, 0.28554469732874505, 0.5748029536490447, -0.0497401090343148, 0.032929586817931934, 0.6240259471274426, -0.7418569763463504, -0.7418569763463504, -0.3684962761215578, -0.7418569763463504, -0.7418569763463504, -0.3000779673325119, -0.7418569763463504, -0.5972659504314936, 0.07223548555588839, 0.3172234851293404, -0.4830382873515124, -0.5510283113590796, -0.41061245139142394, -0.04947481821910223, -0.2390425376044897, 0.7798270089077466, 0.1289639736743819, 0.1190141617072907, 0.43040643608789253, -0.04844274516203787, -0.7418569763463504, -0.7418569763463504, -0.13964060806034723, -0.07583328162399045, -0.13147344082058898, 0.32193306328723864, -0.7418569763463504, -0.2797116417828377, -0.7418569763463504, 0.41449194801013217, -0.7190715236986305, 1.0423491473200286, 0.05205258373392294, 0.4880111833220355, -0.49385331081869255, -0.2538094800605307, -0.10771444249623566, 2.1648684593174203, -0.33557782372057865, -0.22294281228759127, -0.4189456844637517, -0.17064080949139157, 1.0015913291232559, 0.5297205398641114, 0.30013191710082326, 0.19725592883017928, 0.46937702026309486, -0.4416305843793873, 0.3680592454274523, 0.46756336078923005, -0.7418569763463504, 0.3779201583239326, 0.6020390825662025, 0.19159829130809766, 0.397073577819455, 0.0011787767061745321, 0.8969771826710196, -0.08278310155711147, -0.45800427945906835, -0.7418569763463504, -0.2608913162238255, 0.062434603588856524, 0.11906294146377008, -0.13323817249622563, -0.666396936829229, -0.7418569763463504, -0.4493691522489487, -0.6488292989182558, 0.5200902760134426, 0.3399903076481423, 0.10468638510131724, -0.5620861047903203, -0.28974646672461507, 0.09575561851732908, -0.7418569763463504, -0.34455433520518475, 1.5774157025480968, 0.28222530522009653, -0.3104636142103098, 0.2833546417066215, -0.617013137626677, -0.10362464112287141, -0.47067852224854234, 0.3140253392135849, 0.44527863622787656, -0.42788744314764815, -0.7418569763463504, -0.7418569763463504, -0.24826490942467608, -0.03940420418436961, -0.0640724749345205, -0.7418569763463504, -0.2255534915306507, -0.7418569763463504, 0.20187468337472048, -0.29396817329683417, -0.03229020595098424, -0.3795117296124244, -0.7418569763463504, -0.3658572838938906, -0.4512671400044091, 0.5019187434218806, 0.36685611012877284, 0.5829092757297355, -0.420237089655606, -0.33097846264523045, -0.6535662833050394, -0.3205571747162253, 0.019120326439795235, -0.5179751409660002, -0.7418569763463504, 0.761644965351965, -0.7418569763463504, 0.027354704633855236, -0.264308637949807, 0.04099016399800657, -0.45872315168971556, -0.19885486519571305, -0.07001450065751227, -0.07303610678691717, 0.1844181184126579, -0.3557236780947195, -0.5988522177780353, 0.2581138194900424, -0.1323111720709157, -0.7418569763463504, -0.46016737297755367, -0.554052452703447, -0.7418569763463504, -0.7418569763463504, -0.11843932704314908, -0.26976690024566824, -0.3854734448881038, -0.7069057649953072, -0.7418569763463504, -0.13502699796660403, -0.6870108529524336, 0.17979862365937194, 0.4260272871150183, 0.0058119653212970485, 0.43214748108359935, 0.13456876029187356, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.3617987933505621, -0.5195856131385954, 0.9174651245179565, -0.055387753738298455, -0.6997108966430732, -0.25784894723904306, -0.5638491154806188, -0.33097775944692004, -0.3782998598505213, -0.7418569763463504, -0.7418569763463504, -0.08574423263182102, -0.2669358238479466, -0.23328708149638622, -0.29031409580286793, 0.20558016836622311, 0.2580529003100955, 0.04342567284090043, -0.7418569763463504, 0.9690391690211252, -0.2596970264196829, 0.15443315028965912, -0.2178653133715984, -0.7418569763463504, -0.2301653621338365, 0.882366202198137, -0.7418569763463504, -0.21443274334540857, -0.609844197398987, -0.4255949056243905, -0.5261211197303527, 0.44938686879905365, -0.7418569763463504, 0.38915016132034924, -0.7418569763463504, -0.18206178634474499, 0.1644173079426484, 0.15102796798714235, 0.6739257874848288, -0.7418569763463504, 0.446468595810841, -0.26220537180336245, 0.02260249045208353, -0.05210485392091747, -0.7418569763463504, -0.7418569763463504, 0.22021113447529198, -0.6278072687019505, -0.27793058850431196, 1.0958814880863823, -0.604839738581185, -0.7418569763463504, -0.1749796170875157, 0.5541811820605049, 0.6512742154680631, -0.2472424960917771, -0.7418569763463504, 0.2647252159836667, 0.05676156972482047, -0.7418569763463504, -0.7418569763463504, 0.03459261381161978, 0.6366457660687365, -0.3084811501315067, 0.16930024298928015, 0.20434964534387554, 0.058461014988901466, -0.10779882629348396, 0.31698750658054203, 0.34457316206841176, -0.7418569763463504, -0.24268547495680204, -0.7418569763463504, -0.7418569763463504, -0.44979938007839027, 0.8035885979627162, 0.20738161439575079, -0.22177524401924117, 0.3312424466457294, -0.3895830468454679, -0.7418569763463504, -0.29083990308686936, 0.48002751383085807, -0.4183376769983062, -0.7418569763463504, 0.0052204645109298065, -0.47983529306845674, -0.07537753509796737, -0.4832859797037459, -0.7418569763463504, -0.7418569763463504, 0.38809965706546734, 1.2427785788393653, -0.5354080007429123, -0.05233772359297805, -0.1934461968859514, 0.0848853569723411, -0.14579111357715033, -0.39635843658716996, 0.7930786700361625, -0.03646616762258917, 0.08385824331389102, -0.3571247082021231, -0.49550736278131396, -0.38001251784075024, -0.045853124857852125, -0.3960011748350427, 0.5216306504176224, -0.19638922985678098, -0.7418569763463504, 0.5338378770028879, -0.024766502175689542, -0.543741918508332, -0.7418569763463504, -0.7418569763463504, 0.6507843453187704, 1.5292124206406725, -0.6713888953718026, -0.43558405968642816, -0.44675591928570524, 0.2836365131977849, 0.2765675936771403, -0.10589286278876775, -0.5422161632269232, 0.24234574470259446, -0.02625846692776234, 0.28658898383014675, 1.1937837176970423, -0.7418569763463504, 0.07898952027521706, -0.4578157667962212, 0.6846779117136663, -0.07136789833199154, 0.1907283239668027, 0.9100397944852496, -0.408861117494122, -0.7418569763463504, 0.3843099363184653, 0.7338332501125107, -0.05630028308259237, 1.5546941067837898, 0.12182036709108895, -0.6531232128538231, -0.7418569763463504, -0.052836994393373186, 0.4098180479138775, -0.3252276698522376, -0.6598770902787922, 0.19373527396300277, 1.0777129163298136, -0.299481766196594, -0.6602106375931612, -0.7418569763463504, 0.2996278349435677, 0.3584961925310855, -0.7418569763463504, 0.5563850795862139, 0.6185162773340469, 0.8695398650162081, 0.3821179561535957, -0.38873965299822133, -0.6560143479388202, 0.8802142673265243, -0.3286568719286212, -0.44794478706077034, -0.33792780144266593, -0.17666399910357986, -0.3173124326597939, -0.7418569763463504, 0.016392435141518665, 0.6362074144482881, -0.7418569763463504, -0.06279998207617472, 0.6045848084916491, -0.7418569763463504, -0.07617348156447956, -0.7418569763463504, 1.0234157918852238, 0.2187890454290166, 0.7391581638024597, -0.5793193302679498, 0.11751790374448381, -0.6980161285730176, 0.35774369631807085, -0.24128392670327414, -0.1819644488944098, -0.7418569763463504, -0.29323296095807877, 0.7410055767952217, 0.610560217629161, 0.7933124279587167, -0.2565115010630733, -0.06206221601723914, -0.11114679045979724, -0.6227920861099142, -0.33467410286038596, -0.7418569763463504, 0.40156768121086756, -0.7418569763463504, 0.08329812735442828, 0.27171959648340716, -0.7418569763463504, 2.4199138972098995, -0.3209074785061231, 0.47641381472408545, 0.22671534874223673, -0.7418569763463504, 0.8059457186992187, 0.03301086173844248, -0.26218945731528487, -0.18463804588103674, 0.5437919081598435, -0.36977535683776125, -0.7418569763463504, -0.302421135134119, -0.09582099039915944, -0.13405651027735688, 0.7652016683851575, -0.6605280668620472, -0.14825471334202708, 0.3866733488293274, -0.7418569763463504, 0.927859283796358, 1.083927560934616, 0.1422474637789539, -0.18706248860315014, -0.4275508332195849, -0.4868830241136942, -0.7418569763463504, -0.7418569763463504, 0.11329227406590103, 1.002173133199028, -0.5605861087733351, -0.09194089016405216, -0.5234555169982024, 0.28676759620099246, -0.7418569763463504, 0.5882042849862696, -0.7418569763463504, -0.7418569763463504, -0.31936488347570186, -0.7418569763463504, -0.7418569763463504, 0.6290515203997737, -0.7418569763463504, -0.1610068816074292, 0.9706683684750413, 0.3136077874589472, 0.9968562137635616, -0.7418569763463504, -0.7418569763463504, 0.6754806699804644, -0.7418569763463504, -0.6064948730991003, -0.08247532275977447, 0.17297012394001374, -0.7418569763463504, 0.8447932061596609, 0.6097945457004361, -0.15428441679119365, -0.24805013785650526, 0.14961416927883753, -0.6200055980366382, 0.11187077718661687, -0.20545201267094482, 0.8126832467634709, -0.7418569763463504, -0.6527300879878651, -0.47390122458950756, 0.4291884225933849, 0.7666832702147598, -0.7418569763463504, -0.4993599642614413, -0.7418569763463504, -0.7418569763463504, 0.04584067790148636, -0.6526975928238369, 0.3386977551327258, -0.6359261928365705, -0.7418569763463504, 0.3485761369556554, 0.3221985761650746, 0.14073825216306018, -0.3279111856360847, -0.08230403845553094, -0.564560770675975, -0.05328896585477862, 1.1664805258673316, -0.7418569763463504, 0.12049539343252078, -0.7418569763463504, 0.8206517419753175, -0.7418569763463504, -0.7168065335065527, -0.11586554720616439, 0.05642980816405576, -0.45384935822111955, -0.7418569763463504, 0.3532006651284303, 0.2288370830969415, -0.1822231888622045, -0.510750407503945, -0.11679428712203188, 0.09961218011425553, -0.43768379133610213, -0.6232907832485282, -0.3339608007005656, -0.1813252416302408, 0.12828268554290534, -0.36762149742340444, 0.1913632750306675, -0.7418569763463504, -0.7418569763463504, -0.3501741850706912, -0.08635423866088512, 0.11286043628243103, 0.5891785477401246, -0.0030866762030418394, 1.1042294143023559, -0.45766716989010003, 0.1256045362724811, 0.7337920945061367, -0.7418569763463504, -0.5114660968369765, -0.5698795221280943, 0.7919415613577883, -0.4194736753635595, -0.7418569763463504, -0.7418569763463504, -0.3421798195631075, 0.9476314437841664, 0.5389506468657121, 0.00473052034075754, 0.06779608359094261, 0.014550055568235278, -0.5832306673122155, 0.6515084175158693, -0.7119441577578913, -0.7418569763463504, 0.3372111939045142, -0.05794754362995353, -0.49594277207199033, -0.7418569763463504, 0.37974743763875946, -0.7418569763463504, 0.2705221607920868, -0.7269306472851097, -0.7418569763463504, 0.49665030765939544, 0.2595049678106602, -0.7418569763463504, -0.07550677554533307, 0.21575537389701877, 0.15352136115411494, 0.5351554485739796, 0.3078793119597046, -0.2504159560457951, 0.4287569549142873, -0.011783684864475629, 0.2741536249088065, 0.2358240615092003, 0.5236271414521978, -0.1391628403240774, 0.14574376577832565, -0.03442630035539086, 0.4326637766851923, 0.5839440875591653, -0.4905994826998815, -0.7418569763463504, 1.2989319987816887, -0.7418569763463504, -0.04779254579796779, -0.597771513006243, -0.023639904461534744, 0.45022981852105287, -0.2665630917329906, -0.7418569763463504, -0.24602688827569727, -0.4548498428698687, 0.28378137204972836, 0.6077460920117644, -0.194993122137549, -0.7418569763463504, -0.7418569763463504, -0.2665055405028489, -0.49726047317961064, -0.09625623314287003, 0.03194977249846673, -0.7418569763463504, -0.5896535603956042, -0.5392376557518577, -0.05335965579019545, -0.7418569763463504, 0.9624408002014624, -0.5294562597801097, 0.7373609369627917, 0.6137457799962067, -0.16630385241714418, 0.2086966692570955, -0.04178367922505631, -0.33568630131256927, 0.17408206552096384, -0.48843248458025124, -0.40324940992484104, 0.31114859193612365, -0.4954373760442092, 0.4019007751473775, 0.4411043030155152, -0.7418569763463504, -0.28041043585120146, -0.6084912901127997, -0.32602787251904963, -0.7418569763463504, -0.17917915440773607, 0.08527004345857525, -0.33922005787458015, 0.35406545100848746, -0.34852237223953175, -0.7418569763463504, 0.24766362640943398, 0.14723595259302183, -0.7418569763463504, 0.9874320240282813, 0.025668139001986567, 0.9188645631765546, -0.6191870752033178, 0.569909729700822, 0.3788418662566956, 0.34669645086148526, 1.3080285721251894, 0.19712898302993206, 0.6234479921371581, -0.7418569763463504, -0.7418569763463504, 1.3145595819488016, -0.6969894960502524, 0.14702269845278007, -0.5737881203999926, -0.1580189549760474, -0.7418569763463504, -0.7418569763463504, 0.6478024883991197, -0.317668954203173, -0.3193446387664494, -0.14880180162752857, -0.19287571800402303, 0.29618031270067535, -0.7418569763463504, 0.012785916059599346, -0.3996945204030802, -0.09533467325185596, -0.5898091152639547, 0.7759434296915194, -0.028644973951553448, -0.06402880261839958, -0.7418569763463504, -0.2715818180744065, -0.5443703372299978, 0.03977851629872825, 0.3422304754024906, -0.7418569763463504, 0.476021504087751, -0.7418569763463504, 0.05155516345539938, 0.3719661412192318, 0.7608141550534285, -0.7418569763463504, 0.03463724839911395, 0.1979686758334397, -0.7418569763463504, -0.3502996504534441, -0.34230695041554293, 0.8442506331475222, -0.3881297580004695, -0.40195278626131475, -0.7418569763463504, -0.46149900851485126, -0.586502778587097, 0.2895675838313057, -0.7418569763463504, -0.1032999855660856, 1.065679046633282, 2.236425327218028, -0.010839178502276763, 0.08459541720582588, -0.12024336380329793, 0.41482844690688286, -0.559448667001024, -0.7418569763463504, -0.7418569763463504, 0.07411487556656068, -0.32378811187951057, -0.3497213253587857, -0.32260955151125875, -0.10155346302564792, -0.14234037142620617, -0.7418569763463504, -0.5730278334899056, -0.1236471767196297, -0.347150210273292, -0.33020901565188937, 0.22780797087487084, 0.9801103232202639, -0.5038014573161016, 0.30798567995676, 0.0617570905219928, 1.315485435050555, -0.7418569763463504, -0.3477611045528537, -0.7418569763463504, -0.6138325994265078, 0.2019871951043865, -0.7418569763463504, -0.7418569763463504, -0.6640709094864378, -0.7418569763463504, -0.16718203607553503, -0.36594122356589154, -0.7418569763463504, 0.7832578764538087, -0.4640081866333723, -0.33617291454337495, 0.7966233816876411, -0.7418569763463504, -0.7418569763463504, 0.07685113122368716, 0.027517846641872103, 0.5155299979599811, -0.5944089112119426, 0.027573806423204898, 1.3565573978398984, -0.7418569763463504, -0.7418569763463504, 0.09963549668981285, -0.06642641277341077, -0.10437906187863213, 0.6943212032382912, 0.14764506596793525, -0.21317327816102405, 0.5590046783446889, -0.31181131227743486, -0.7418569763463504, -0.4650079495785926, -0.08508959201526288, -0.7418569763463504, -0.33404363005944504, -0.049048532001242255, 0.22473736292635849, 0.20231629191366038, -0.5371058360529668, -0.15291540071213186, 0.24914730082353154, -0.276889558921402, 0.3513483667579283, -0.03424450508693295, 0.3411964037818105, 0.5495424418797723, -0.7418569763463504, -0.7418569763463504, -0.6049273978021437, -0.016302881332437735, -0.4872512224500699, 0.3793016839308343, 0.3514724257440612, 0.09015542119407449, -0.30714337086160276, 0.7103964646560805, 0.2306504464873084, 1.4986974630542444, -0.4803135419404122, 0.24420374268045553, -0.7418569763463504, 0.728203814543721, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.1118273383825242, -0.3291322709968976, 0.1602227670314769, 0.3398759453966047, -0.7418569763463504, 0.5483359016208573, 0.29219687932437605, -0.5463000799407389, -0.7418569763463504, 1.178246736080658, 0.0023586694501711394, 0.07925073994231878, -0.7418569763463504, 0.004479737617000671, 0.2374468211470078, 0.8776445586376506, 0.4255761298832322, 0.479539346161683, -0.7418569763463504, -0.6605234868204203, -0.4924880698042446, -0.4047057706361434, -0.7418569763463504, -0.16685486380900738, 0.19922532822458427, -0.33404344500725786, 0.4955835928329351, -0.7418569763463504, 1.1965901451434593, -0.5976961782609352, -0.7150981247771665, 0.1968374148041733, -0.12904862799409839, -0.5226088847376841, 0.036130175422554894, -0.040580321863753384, 0.36945912821129717, -0.4365719052708085, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.22940831363702444, -0.09856309370539865, 0.5708558645222642, 0.11766601951491891, 0.6584083473793889, -0.05648074597530479, -0.7418569763463504, -0.37380001984131545, 1.054333126946959, -0.5107561626269589, -0.5681778747429888, -0.38672454571364046, 0.41126426776533426, -0.5493592886745333, -0.7418569763463504, -0.338010889874607, -0.5163638360585644, -0.7418569763463504, -0.7418569763463504, -0.5301594765957411, -0.7418569763463504, 0.025418318549602806, -0.7418569763463504, 0.2872685694815055, 1.35310654465764, 0.4321613229871848, -0.08891587907440696, 0.03825997805261153, -0.5796457253152937, 0.22105260377979666, -0.7418569763463504, -0.02881958919515795, -0.24982271574486553, 0.06995171950629371, -0.708237430603585, -0.7418569763463504, 0.6083619456899364, -0.7418569763463504, -0.7418569763463504, 0.1259496215907049, -0.4507549340561479, -0.259055783581461, -0.22625891046730875, -0.7418569763463504, -0.6034227199648282, -0.7418569763463504, -0.2811978329066766, -0.6642989261648936, -0.7418569763463504, -0.46879030524855303, -0.1368376595950405, -0.6184394643680372, 0.6888116814866445, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, 0.33226349059244814, 1.440018302822666, 0.6146993169051259, 0.026359938097682622, -0.47088096934106616, 0.37747003738439405, 0.13439096215065185, -0.7418569763463504, -0.7418569763463504, -0.02526688328920666, -0.7418569763463504, 0.40735900043280293, 0.6133790805825432, -0.12055328920599971, -0.7418569763463504, 0.005406627011001412, -0.03191603042896959, 0.3902917852720858, 0.6665963885058371, -0.3539759342098447, -0.7418569763463504, -0.22539312530543873, -0.6195605845374593, 0.26166156599738427, -0.3310719139996406, -0.7418569763463504, -0.7418569763463504, 0.16031396074920623, 0.4085969995635018, -0.6813015627386686, -0.14981137233865482, 0.10363010721820193, 0.5852369361580746, 1.1249401589823806, 0.9509190069166591, -0.39455880406907423, 0.39276881982573597, 0.6739179412721054, -0.7418569763463504, 0.16837823897301932, 0.05153088460846896, -0.7418569763463504, 1.0200956595678303, 0.18889527102374715, -0.4923053492748494, -0.44823346847241363, 0.9999619816275911, 0.06417823931517984, -0.5676623748658001, -0.7418569763463504, 0.20658448359524212, 0.6650323274217277, -0.21748214431329838, 0.6119152437628882, -0.006579943346545384, -0.32866915939383484, -0.3762176526429517, -0.5616208095714513, -0.7418569763463504, -0.682501260692975, -0.2284861245685751, -0.7418569763463504, -0.2786831957486403, -0.10616259485646354, 0.7959391327211708, 0.5319133342586002, 0.4430362478472794, -0.45139267940803646, -0.7418569763463504, -0.5702436123059201, -0.3380300612811752, 0.6677629574923746, -0.5821754997422225, 0.06514465585631132, -0.14501840966532098, -0.4621026302434657, 0.1570261755540903, -0.078022374974741, 0.7207836659722469, 0.1780131661387943, 0.6769538334303423, 0.12330922296641933, -0.04485576759106303, 0.4195475737576225, 0.46821903769803086, 0.5084120025993593, -0.0922631030319705, -0.7418569763463504, -0.060774326816938916, -0.12114060783694683, -0.4950110713211308, -0.6201011589859797, 0.541678612184868, -0.7418569763463504, 0.44022389873088, -0.607081488531734, -0.5957419531458605, 0.16759443192996984, 0.4524271281889043, -0.7418569763463504, 0.33198280343528597, -0.5992793182255175, -0.2702142824128406, -0.7418569763463504, -0.13187903820394778, 0.6609059597362261, -0.008774958367283184, 0.5437245491637929, -0.7418569763463504, 0.6774607283808377, 0.7909043808603654, -0.22614354893396318, -0.7418569763463504, 0.46573933839289466, 0.1449920097740606, -0.7418569763463504, -0.110684382055042, -0.007890112830155442, -0.3810588769266445, -0.7418569763463504, -0.5193024092716856, -0.7418569763463504, -0.7418569763463504, 0.06570566006627267, -0.5900402361928473, -0.6579203021909281, -0.40365693185094403, 0.08627761560608582, -0.7418569763463504, -0.22019930258473214, 0.8924337813770064, -0.7418569763463504, 0.19411677755161982, 0.021592327573956613, 0.937908801881777, 0.09059362477277381, 0.7031250980429115, -0.07355010774139152, 0.029987997254161902, 0.2244027885723539, -0.7418569763463504, -0.4226757443856801, 0.5222285910440984, -0.7418569763463504, 0.2992713504106258, 0.5173399563901074, -0.7418569763463504, -0.39301306315147466, -0.7418569763463504, -0.30674006812536203, -0.6941768508503509, 0.047801120770041006, -0.7418569763463504, 0.6612776925693735, -0.6458348399446753, 0.8112145245660809, -0.26074223818201786, -0.012726636788300797, 0.03797026034871954, -0.20867991497836122, 0.15432219299836678, -0.010560711971353859, -0.7418569763463504, 5.0, -0.7418569763463504, 0.517196355893035, -0.26105286678303347, -0.7418569763463504, 0.7728733398891331, 0.2710049989582753, -0.7418569763463504, -0.7418569763463504, -0.7418569763463504, -0.2496244878422057, -0.7192929363271647, -0.06855799190445964, 0.10798246063440857, 0.47714528900866127, 0.6998131080217396, 0.6759632860840343, -0.2673934579062757, 2.260331405020569, -0.7418569763463504, 0.9520050411914356, -0.7418569763463504, -0.7380488316301298, -0.04860544304480798, 0.467878393632295], [0.7798876417603033, -0.09900656679536503, 0.8768478373658415, 0.001471819548075042, -0.6145047916755895, -0.8304095660395715, 4.510569344111766, -1.0475622669370428, 0.6653415443482125, -0.6734823308390208, -0.43444498433119544, 0.7383510599374841, 1.6321452029896066, 0.40461802436780564, 1.669594217146238, 1.0223413241301764, 0.7369072615001084, 0.47215204173584124, -0.2823202325302279, -0.24901138505663847, 0.5357637177279391, -0.13435533489742627, -1.575463793176556, -1.1636696933580906, 1.7825320327546788, -0.5600078269568596, -1.575463793176556, -0.6445223373907856, -0.21009673049798772, 0.06650886946316835, -0.20167004111041673, 0.23998815347786942, 0.5276854596808666, 0.6557544077242531, -0.20913003783219306, -0.9099901698241615, 2.6525227433207754, -1.0189414554259202, -1.267529386698528, -0.5145840440617461, 0.9401201456898349, -1.461383249068351, -0.8801125909843398, -0.36294494165797614, -0.18206115734183267, 1.287537840730821, 0.12489615553485463, -0.7987647939595557, 1.9998242176269343, -0.6847911937563943, 2.144698254387626, 2.0885031883576217, -0.29206561195914554, -1.0402756315229584, 2.2808075713557674, 0.25582669811415815, 0.5482384512266498, 1.3950377500707258, -0.016446317856511707, -0.3100415488483583, -0.8052788998866035, -1.346913951421338, 0.30410858380255024, -1.0149528823783351, 1.6932331662659523, -1.2634238402723457, 0.17767109679058254, -0.34825228294831845, -0.07247853495295944, 1.6826652214208353, 0.261169658699702, 1.005230002153696, -0.12248905612764187, -0.801338133996292, -0.45205272810238956, 1.7127913826199932, -0.45341458202621227, -0.18837333653466792, -0.24527403174846985, 1.023881256928867, 0.6626014921732833, 1.3426633934179795, -0.7251910276173761, -1.1138742115256337, 1.2543080403673033, -0.06642712207252814, -1.0167529128578678, 1.6179292042971336, -0.3939988663070723, 2.333780427556304, -0.14727582277630946, -0.9449309240835679, 0.17877107001605788, -0.30035486041283305, -0.21766296534702936, 3.4420010005705506, 1.6242939825068352, -0.11514911591893748, 1.2373979022010797, 0.011107097645080943, 2.2565484293084457, -0.4955484747184626, -0.2847974382056398, 1.6488300866090373, 0.7448495644612254, -0.4758767395822784, -1.2893832938297483, 0.6469723035108912, -1.4903436046920209, 0.6001538294526149, -0.7080019957939586, 0.5747758439110421, -0.4461840002254349, -0.39906211601905445, 0.019095610476957604, 3.4098190201700245, 3.201646375576924, -0.9718496596402011, -0.42495843961236446, -0.676618287195931, 0.40648380361841124, 0.7540231896051751, -0.48475089207514876, -1.5318471310415853, 1.119095284042476, -1.2433814975152453, -0.6638685232446507, -0.6518963035171856, 0.5686137353595376, -0.6775442676283426, -0.25645325443361505, -1.1411502935103723, 1.0053583794151855, -0.9163515305836024, -0.03643869897683442, -1.0446722927055911, -0.1190949336922243, -1.2716295283528503, 0.29842447253138077, 0.027073870958068992, 0.576618146764298, 0.2983464655148412, -1.0473116786829897, -0.48022143323342276, 1.9595696254014912, 0.4929592618631065, 1.0815737605066575, -0.05276445315065471, 0.3908907210608042, -0.4478402006249654, 1.4703824242729397, 0.6120636435668473, 1.3937869632799678, 0.1774504483724002, 0.27995835440876865, 0.25257997179377184, -0.022775584300577773, -0.16835510166028914, 1.3637701604887456, -0.25809199611991945, 0.1516195763805719, 0.01101244913169403, -1.0172926471198596, -0.3690350608770816, -0.778088551327652, 0.4349232302429962, 1.2457207308180676, -1.5303528648504765, 1.0172395166643091, -0.22641743278882662, -0.5523913704476457, 0.13775542647887326, 1.7163972383860018, -0.5964073867177772, -0.4733724914744683, 1.0720476922327848, -0.47820045716611703, -0.9475109504360063, 0.3616606747505772, -0.805061148871889, 3.18790198501868, -1.3232023071914505, 2.6203318478326594, 1.4693221231873028, 0.3652874809724634, -0.5118578845650074, -0.03729068418214351, -0.39019933026287834, 0.5393190546641948, -0.4996595930743977, -0.10268983523873941, 0.8266398470007335, -0.7466346364147475, -1.575463793176556, -0.1336974014322917, 0.9197010290428937, -0.29046015326656066, -0.45045447577228126, 3.645146724433664, 2.423711076586516, 0.08817609837459248, -0.5389946683059408, -0.34311682102674934, -1.575463793176556, 0.6852994537964685, -0.1798016283887353, 0.001370633303766755, 2.3930271280729505, -1.575463793176556, -0.5904628805961931, 2.7809427972309475, -0.2426801870102492, 1.477042886221483, -0.6494878926011128, -1.575463793176556, -0.3561124928110945, -1.575463793176556, -0.4518420348653615, -0.3318227422963162, 1.6471941680338102, 0.7000187091841353, -1.575463793176556, -0.6117723173251322, 0.8123770440983514, 2.2178848830506195, -0.8160553834892558, -0.14460203941923847, 1.2647143249572232, 0.23826798732478685, 0.4697727534392645, -1.1675885429913766, -0.7285069201590835, -0.006988301418018021, -1.098053645649346, -0.5790540201128694, 0.18246696816685498, 0.8779234426851888, -0.5156167083758123, 1.0753150718394553, -0.5854157523342935, 0.08164327076357489, -1.1219091571054338, -0.7878386111775617, -0.46184350018568715, 0.8859256253180453, 0.9934424733244147, -1.0997653796154065, 2.5714352668540243, 0.014695568990265879, 1.4363921669368538, -0.24071975924624453, 1.0360233090751847, -0.8395678869498013, -0.31388573462296576, -0.873194185834476, 0.16391660246639966, 0.09592657836745094, -0.25363608675092497, 0.32176922376018124, -0.1527923304005338, -1.575463793176556, 0.8652112706866454, 0.15437047524541608, -0.9450906527364636, -0.8035622254761623, -0.12025434083504381, -0.3277969859041912, 1.3642090799684161, -1.2382080721789634, -0.16495102404369918, 3.4010543003774982, 1.8782785877677883, 0.09562272246496974, 1.7482713510946093, 0.788914019374, -0.46562282869797966, 0.696749100805573, 0.954716818622957, -0.4223243283951319, 0.05978748774934085, -0.1532013843367357, 0.202891582451161, 0.1910236692486587, 0.12506925681915163, 0.6949449842442276, 2.1594045828982766, 1.5189381517355418, -0.9336449432243777, 0.6710131744967366, -0.6686392094984472, 0.15350184854325966, -0.21103340903552348, -0.121931714567642, -1.009393322310228, 0.9164859512835088, -0.5835894223463312, -0.6180039635599435, -1.575463793176556, 0.9887757221335955, 0.21669005787418757, -1.0910360972960915, -0.03629620615998175, -1.2057756521091836, -1.090133667553432, -0.7421065148361613, 0.21085617313128016, 0.21583346654029248, -0.8403302755246904, -1.575463793176556, 0.7976399585354659, 0.058358250621711426, -0.726472348583182, -0.1022639912208752, 0.3815915417664422, -1.575463793176556, -0.012949671913648392, 0.7901438557089048, 0.19109721872137778, -0.9299217054715904, 0.07041115189199472, -1.2721758746381477, -1.2106221166076092, 0.17190481812867128, 0.048231751197749355, 1.1160068005270602, 1.125492156567538, 1.346099565349942, -0.3410477777787731, 0.6191508410420093, -0.9846033239423074, 1.4512054764987459, 0.9667771491329038, 0.37145553291570343, -0.16275390070383813, -0.9722070432145049, 1.4206579288255317, 0.7652178651088329, -0.2934663208064439, 1.259516828884412, -0.6799739261698694, 1.1400507917935518, 0.2504506031196973, -0.8116059375587718, -0.22676021790718232, 1.1870130959318306, 0.3878954002108354, 0.6094319097063089, -1.575463793176556, -0.7285733375617283, -1.033248833766316, 1.549258364674874, -0.30446575589158015, -0.39713905733059424, 0.931850510428875, 1.3796072192770943, 2.189015452033955, -0.24526645392400387, -1.575463793176556, -0.3941859345619504, 0.023056583899164214, -0.14722129215714416, 0.9744319405188185, -0.5835625284987268, 0.8060923530923026, -0.9738503538832091, -0.19268140403423553, 0.028944256337272736, -0.1679149935022716, -0.1437094905653489, 0.7679819880202853, 0.5823850197653828, -0.5789243055882387, -0.6920115974988245, -1.575463793176556, 1.5892517448335424, 0.11957786002501976, 0.2636175931708189, -0.9123424899807274, -0.16956695923518472, 1.0502268266450008, -1.0783255597302666, -1.575463793176556, -0.22304619241158516, -0.8494998888792179, 0.5264077790424958, 0.4570784116159285, -1.3825161308885239, -1.2815575370659436, -0.9334127051923086, -1.5456791889495618, 0.6687604804441294, -0.19240488773373823, 0.5848438009264142, -0.005304835708893849, 0.5186691858331083, -0.4911413011616978, -0.35216348046474844, -1.284623881447151, 1.2630329394352127, -0.24803191409860614, -0.022681381541574074, -0.3588133186005541, 1.0891619859051334, -0.4590625871925844, 0.38265704331983846, -0.15172712601671798, 0.6440598929756404, -0.6934838499241371, -0.11409579831858076, -1.1903061549534795, -0.19165899207091627, -0.8127646017776334, -0.4167537359061173, 1.3958704192529001, -0.5832904697420288, 1.0668481159728722, -0.7807355151295126, 1.0208168441499743, -1.0588420072349105, -0.8516895086870215, -0.5487783083191566, 0.14580545341519519, -0.6462328455323009, -1.2959804958024994, -0.21021812427418496, -1.575463793176556, -0.6514597613942034, 0.7881086897938333, 0.49984690996074166, 1.4436237888311794, 0.16692143274313295, -0.6190502976750017, 1.2359129457759257, -1.1364896714422799, -0.49180592094253445, 0.2711627289792052, -1.575463793176556, -0.009796554013104673, 0.1700898548774117, 0.26976989512595345, -0.4192212092775617, 0.2451514750482068, 1.5535982293202335, 0.26727901964954964, 1.9940303021934584, -0.6679828361736428, -1.0545809668224462, -0.43079901067097115, 1.115760744109205, 0.043897235604952116, -0.0571329946611354, 2.7927668779194095, 0.40685155098205655, 1.336477214129952, 0.1541845956688811, 0.4951716894367023, -1.575463793176556, 1.0687606994333991, -0.18176086747439288, -1.2525034151510952, 0.18028381179756686, -0.8176526700182086, -0.5139509242571069, 0.6784635132069337, -0.8825313285435534, -0.49878680599802, 1.1721685835633326, 0.7730695313459872, -1.530448219141635, -0.5105884503826724, 0.12098748395992158, 0.32707786125844873, -0.9379865165948613, -0.7213146732349995, -0.40810751248630733, -0.03587244232921893, 2.206572231221015, -0.3718957639042358, -0.39040534307891417, 1.4472290502580145, 0.6721009637691481, -0.19048636088147586, 1.5151492395040755, -1.575463793176556, 2.465921341862563, 0.5104062368878604, 0.006271256959389138, 1.181193029574718, 0.7602870787401494, -0.9656061266219185, 0.09785728917276527, 1.4695943305287948, 1.4753154394135153, -1.5258847901015202, -1.0506854450017218, 1.7720232246573129, 0.7265501584768038, 0.710894521721182, 1.5564465998095416, -0.28471943118911264, 1.2204726083859367, -0.3175948568203841, -0.16644043801264882, -1.3077464798367384, 2.4486034870232753, 1.323736662435868, 0.054588208659008985, -1.1086951399672031, -0.3520030831802754, 0.5849194305862471, -0.7098150274429135, 0.022522718736514014, 0.19078771659674135, -0.15992514340725744, 0.5951309205120284, 0.7161180201328277, -0.20105906043999364, 1.2333516411074608, -1.575463793176556, 0.015903860530120092, -0.33198618556904613, -0.31831801900982026, -1.575463793176556, 0.8239828537253127, -0.6068335073776153, -0.0963665121863968, 1.179245677272544, -1.575463793176556, 1.7030403569689327, 1.03830408565374, 1.213302203426476, 0.9674065543177195, -1.575463793176556, 0.6472127137065915, 0.6712099007631744, -0.1610720694274443, 0.35090818759206266, -1.0868952248352814, -0.45222530933991206, 1.0268755376852787, -0.04739712465899478, -1.575463793176556, 3.2999283815044556, -0.4000697437954349, 1.0065639964287647, 2.4629734195616892, -0.16348033175872284, 1.6222542104631659, 0.047575154995764424, -0.17815426878442034, -0.30505756912365883, 0.008934936550509559, -0.255648816362191, 1.8669210633305864, -0.7710402087759682, -1.0594584855426898, -1.0775401405124028, -0.15276944834234552, -0.11507942965084023, 0.04681692679508798, 0.4217890774312233, 0.6610732975732615, 0.5420717365465473, -0.2775759200772527, 1.5239995441376069, 2.5421001710948676, 0.39885263721464864, 1.3720704042171379, 0.8787156968035603, 0.27281989517989, 1.1657339705007557, -1.575463793176556, 0.07759403797410022, 4.510569344111766, 0.23640993448343758, -0.14867861181072142, -0.16155556434514415, -0.10995771182265228, -0.9192779823818318, 0.07518072375984029, -0.9614490955648263, 0.11744878852052562, -0.3512868301837425, 0.07906428450469333, 1.6106761861925596, -0.9805615946848866, -0.765964626526134, -0.5759559528782731, 0.08108370043167112, 0.13626289222925297, -1.2453643987292435, -0.25998793808358645, 1.1337855653954403, -0.5969511327691913, 0.35254395758249923, -0.08010138060829214, 0.17316868038125974, -0.6282543827015974, -0.4383533587365478, 1.4668998938854516, -0.1364673191506896, -0.8288189658263221, 0.7898084998302244, 0.33053052610248085, -1.0696618775972342, -0.8374021150013367, -0.1255102307316667, -0.693288460920829, 0.06094496328986149, -0.6733042519641419, -0.5315839274431775, -0.45053010543211663, -1.0329780379803613, -1.0359038211470195, 0.9966004945231495, 0.03829648040288433, -0.7299195157898491, -1.4265413222696484, 0.41260832021719085, -0.29700709643294126, 0.09239516358292808, -0.0884620983475976, -1.3873304267791806, -0.4050846291571678, -0.14584168235050118, -0.16012825881982576, -1.2234251110611214, -0.7965878781515872, -1.1797778822481848, -0.9312689237932658, -1.4110836933243165, 0.6807254195167253, -0.6576713486819061, -0.5446271463614037, -0.3007691148168067, -0.12915278694163373, 0.18083773590732785, -1.2388828700181485, -0.07107158554433256, -1.3020928470213162, -0.28352347218711293, 1.8197929385628713, -1.1216225370389823, -0.6739928681891116, 0.38040598369997375, -1.203178241335919, 0.0969338346818504, 0.3288940131880679, -0.8034562845184753, 0.9640232785722043, -1.429426318910521, -1.0653876131381574, -0.28002326020919605, -0.16637268334686262, -0.7625832823829382, -0.9606638992241527, 0.4792038760301572, 0.2673805030634386, -0.9596071270273591, -0.017222970571568613, -0.3782321624183882, -0.12639713336341352, -1.575463793176556, -1.575463793176556, -0.4721605596071761, 0.7447100433402403, 2.8177618118636145, 0.37893900603482916, 0.0846708345137064, -1.575463793176556, 0.1202515434782474, -0.48512762881879135, 0.04945014650355415, 0.7175951015639348, 0.7971728079450452, -1.575463793176556, 0.34146963576149403, 0.08359210891370117, 0.16809658987407045, 0.515230339374871, -1.575463793176556, 0.35273176876134527, 0.9934528742599581, 1.252204376862482, -1.1160477841757523, 0.3158186999544654, -0.3109624773978007, -0.6317802255563651, -0.520368450068451, 0.6442769753587816, -0.5192297705043, -0.6685143982719989, -1.2778727084822488, 1.4284410974729238, -0.4729016262642133, 0.5223844000070653, -1.1966691501456481, 0.6802569316631552, 0.2013449633367592, -0.18343408083276394, -0.9019775119633714, -0.2599747140369777, -0.7112003577640933, -1.0538024196512763, -0.6312150090023065, 0.06387654126345643, -0.659953536815993, 0.47151921910078637, 0.41263194519933055, 1.8069355992211884, -1.575463793176556, 2.1357570158605395, 0.3322914044889461, 0.002148771866763655, 0.5246678511118955, -0.7469810618605385, -0.6308275741535397, -1.133557461983307, -1.3890816100078867, 1.134723729780916, -0.9122315714324616, -0.6324897179448058, -0.27884795449348065, -0.10010713436001394, 0.5510868217159456, -1.0637440424460642, 0.25907654471520236, -0.657838952328851, -1.575463793176556, -0.15592197190372786, -0.5565653401711832, 0.09461828926164774, 2.1425024683108904, 1.779137167395285, -0.2646899038704361, -0.6595204121432593, 1.139512023332723, 1.946203531727238, -0.3101584850807599, 0.234914874292333, -0.8402842142387378, 0.43385564850248637, -0.5280236129163427, 0.21137072227079592, 1.343913585869576, 1.3980938421011884, -0.041542289460222585, -0.1415364379619989, -0.6616661994370119, 1.6513578111142142, -0.3481704127271571, 0.6972071877235999, -0.25147536668542947, -0.0984820624747015, 0.40061990474724524, 0.5042242179740355, 1.5026309706608922, -1.575463793176556, -0.6577021800265351, -0.816295050760996, 0.6231095856923242, -1.5095453846998101, 0.39604884216336983, 0.8982571230759391, -1.190249544147197, 1.5278764185667604, -0.7040179917287709, -0.28431765790778385, 1.0806240065073034, -0.9031361761822317, 0.14754448983704144, -0.5111373226094582, -0.2133716879291119, 0.09964729017874763, 1.4375047698697645, -1.3393508182798517, 1.484347611834157, -0.7477069728686484, -0.6080923920396186, 2.0337761400863315, -0.1278244388887319, -0.7665233796416798, -0.5749485479790832, -0.03737255440329273, 0.22657109521948043, -0.6362149615923044, -1.2052862137997542, -0.19686154002669665, 0.4988161772489925, -0.32709031662681226, 0.2967019290216042, -0.054874802971187686, 0.3497793889166631, 0.5428812265009405, -1.3275155565856944, 0.7010699465973782, 0.2916261238945707, 0.5032024003498898, -0.2293571829260611, -0.9162909822802967, 0.6684551386937201, -0.05719584602874277, -0.33097439741844975, -1.0479463957741568, -0.44523097736062617, 0.4844080584186804, -1.575463793176556, -0.29656936563161795, 0.7254484022338078, 0.21795748616181743, -1.4894954455451477, -0.1110226190368874, 0.47005209285083926, -1.575463793176556, 0.8130734610249774, -0.9367418217806258, 1.3996747843028667, 0.48919204301148184, -0.2779432216865148, -0.3876513239334161, 0.47997934006686727, -0.6063173238053755, -1.575463793176556, -0.7788484139610526, 0.36187983732083173, 0.7389410901520421, 1.9418039359949295, -0.9729501529124499, -0.14848619450327724, 0.6355936800330216, 0.4764256375633419, -0.5685365198050955, 1.5670739785720151, -0.4977256134036227, -0.7065205311114557, 0.21795288003321928, 1.0590762397697777, -0.06121461893558754, 0.3800064391905489, 2.043226132945988, -0.010801730140390582, 0.7654584238893355, -0.191312195163136, 0.8480625053422303, -0.22489027828236177, -0.3937459006963235, -1.3348551439055232, 0.43118617410443283, 0.006060415137564509, -0.22862183678357295, 0.8775423226901441, -0.20702503706422215, -0.16653181766058725, -0.7942929117252688, -0.8312292340523116, -1.487538100915612, 0.4496069738650514, 0.19859034985208332, 0.2736720289699895, -1.2641726890579361, 2.1377875756470246, 1.7871307321101186, 0.587346414601499, 0.20297969323363874, -0.7163518668433496, -1.3414029042882738, -0.8702743460595534, -0.2948176995023244, 0.3401490141178363, -1.575463793176556, -0.5791386391527046, -1.2054422278328145, -0.9703238423968701, -1.350103416876968, -1.4294628057638477, 2.3999773303686003, 0.08069574553612462, -0.8766420216727145, -0.569058349599484, 1.5180998363312368, 0.041001020812178095, 0.34825119431664175, -0.13165852089737665, -1.3157027869146358, -0.7492528490590866, -0.7858001763970324, -1.2787397193247827, -0.6371295009956242, 1.999473557514532, -0.6017146869529035, -0.3253692589649754, 0.10621354936827511, -1.3959408041175831, -1.0877354346957078, -0.5146535074526553, -1.244198230978316, 2.6928311232414326, -0.2871233845613737, 0.670716004909955, -1.47903492750564, 0.6130105744551364, 0.09073190540570507, 0.6943708526025654, -1.386700185804914, -0.07799593408593802, -0.2825272111474183, -0.5864868258174523, 0.04926099806157067, -0.49423520802207793, -0.7288048326698312, -0.8763064429168403, -0.9681769035709685, -0.16905642188509384, -1.575463793176556, 0.9432603367133506, -0.055994686558971316, -0.5142231315985989, -0.21676432451660163, -0.8065637125950534, -1.2836207483607704, -0.3821464802154762, -0.8711781130653529, -0.5616650674499432, -0.8825052519123129, 0.3320386617553914, -0.27218140056841134, -0.39254236386985775, -1.0685112369572156, -0.14894413283650168, -0.4164024071621448, -0.7569510272046668, 0.4595486338060477, -0.9896889356656962, -1.067355247264635, 0.20186114690899257, -0.5342661801334687, -0.1590792501784865, -0.5258877808037467, -1.0711866176008127, -0.6416420211709036, 0.43602216337492744, -0.35431454251866423, 0.2637697439992511, -1.3715398378849581, -0.5542910270311469, -1.5150744291659737, -0.8919220360706465, -0.4687411034644773, -0.677026226746186, -0.033418713051168884, 0.31769547447978796, -1.0950508212673138, -0.8241886922022806, -0.5003315678025073, 0.509488725788669, -1.0451551561379133, -1.575463793176556, 0.2870299504806153, -0.015278738550052668, -1.1860994222829984, -0.8307583688420556, -0.8842582553047379, 0.14363878995796375, -0.6018881596991875, 0.12943200352269948, -1.0061545824224907, -1.3504568815273452, -1.2349127586311417, -1.575463793176556, -0.4988960158211614, 0.6476810529753594, -0.4306149141119609, -0.4348322705951696, -0.7629128434546804, -1.051864539629675, 0.3239722904917901, -1.3520918900207186, -0.7529509759817916, -1.1501684618142358, 0.5679892334729254, 0.20115254602931476, -0.3518637849364697, 0.16346282450737798, -1.0982283813663736, 0.21136581897261708, 0.06417252217189097, -0.3186514432861893, 0.22916687156001184, -0.22619856738816496, -0.7408081809115137, -1.4135265573393552, 0.15979931784153373, 0.5994609785610303, -0.8475454045069549, -0.06990608642498708, 0.3865340663337947, -1.1157910667989714, -1.248567032512189, -0.9572562184263294, -0.7811126976275361, 0.5962554102284102, -0.5401087570867863, -0.4445826276146649, 0.38891409755432294, -0.5979862487323481, 0.39328145038645623, -0.8368553229616584, -1.1918224999162317, -0.8436172683240809, -0.36615771635306876, -0.5511575223233283, -1.1167090236525399, 0.3998790609673925, -0.24693684417130965, -1.201595738993909, -0.4543108454999457, -0.4099479580296438, -1.1465941060244262, -0.8174087680798572, -0.011121336030977296, -0.4875309878518875, -1.3896657339769036, -0.48174754764633915, 0.040374290153661674, -0.33020755129976276, -0.4004817694275066, -1.5585108231220004, 1.274788968288295, 0.8599335388254031, 0.5595179686473247, -0.901946457741552, 2.5245005994873106, -0.9303664940506061, 0.10254083044524698, 0.7844481548238452, -0.15959632525948658, -0.9142231277106758, -0.2612021730151763, 1.5415919836750809, -1.4168726868865167, -0.01665181062577427, -1.5427564749875415, -0.44297390005662335, -1.410306019088808, -1.575463793176556, -1.0286064504816128, -1.357871021267258, -0.4200015766124503, -0.12109339916332486, -1.575463793176556, -0.346929803994739, -0.5872117710244056, -1.0080568763860744, 1.1297746674826423, -0.38310046888144184, 0.006480612933273771, -1.0611198864099898, -1.1786378282746959, -0.737468886264847, -1.5164573310544363, -0.5359484571642397, -0.7275134079380758, -1.527925402577927, -0.18575274653362478, -0.5496068171271039, -0.24914689438821092, 1.283904942532409, -0.49405274589579395, -0.8336267239860697, 0.8831221274363588, -1.2134055555421988, -0.567537287069543, -0.7669169064669764, -1.575463793176556, -0.23612492309543873, -1.575463793176556, -1.2167942174864694, 0.30232051439887864, 1.1808619826550433, -0.9046504038116783, -0.13857544019930648, -0.16205347198778766, -0.5555212348280266, 0.5931391413566277, -0.047526096259658014, -1.3823024288094294, -1.3097864376113997, 0.6432547119802527, -0.5777634868898733, -0.12457875266189047, -1.3346625222939914, 0.005492821226811545, -0.4154614196656002, -0.908362497704962, -1.1176063643660246, -0.0787867023563701, 2.740782704934113, 0.20998294030052558, -0.7853581366366952, -0.025068396247394684, -0.6552141276612051, -0.8813347752023764, 0.8112803397383368, -1.0894580153516864, -0.7044190963785285, -0.1343703419615557, 0.4317898741199704, -0.4693690228013458, 0.028725985275784655, -0.896491612806588, -0.5887398913320331, 1.4221280267713343, -1.0897825988328484, 0.030024467785230144, 0.5218283957101905, 0.22046678615260173, -1.0517620532684333, -0.0662602613495472, -1.084248112448627, -1.475881521722056, -1.182725173063687, 0.30772216597781515, -0.6890023839706771, -0.4357384149576636, 2.188208636605849, 2.008880163614531, 0.9962067448206576, 0.3711185426042803, -0.4303286655074925, 0.43862700338785265, 0.4818996499366503, -0.17187373815257428, 1.4064350952325686, 0.7029762894965886, -0.5772730827792859, -0.4713387371149324, 0.8473965482982586, 0.19397084862555639, -0.21538159442931268, -0.5800642481231332, -0.03882883396332537, -0.6219032000005021, -1.2469960826378652, -1.3096850099168118, -0.3375565551808731, 0.37440731842119923, -1.575463793176556, 0.32854543326277935, -0.0590403776539026, -1.575463793176556, -1.0144673444197319, -0.8171399781886126, -0.8430657958634118, -0.5804449966561968, 0.6070385058543821, -0.9896514551515634, 1.1702687783950436, -0.6178828669533308, -0.014560479658795316, -0.4572797182566884, -0.6536915049909336, 0.3852189423274895, 2.67916191658865, 0.04762017618815271, 0.353702027462181, -1.5550760232777454, -0.44935940584498973, 3.4318574138953455, 0.39149397532197094, -1.236753278466873, 0.4518153896492226, 1.271025612641292, 2.5865258356403777, 1.8474496204958857, 0.5799673965921176, 0.16548209184956542, -0.7998543662494911, 0.9811075581162817, 0.35463395128632824, -1.575463793176556, 1.426543669661317, 0.8643322430489452, -0.8625065559382701, 0.9169100122838405, 0.11299585084738648, -1.1340306674040581, 0.6480664819294213, 0.5628901005333325, 1.343472586202792, -1.1544584391152142, 2.819293423913887, 0.3887451566442406, -0.9568164817302887, 1.0264805993044521, -1.575463793176556, 0.37293543745787605, 1.0844016262944718, -1.33471382119391, -0.18749906361034413, -0.6809996069986471, -0.020813967858238146, 1.236471030259914, 3.1244131886507187, -0.7876444108525993, 0.3650076958065051, -0.473185126050003, 0.2240647669245512, 1.0187116947972132, -0.8610336348813875, -1.272478318985095, -0.2742777834183595, -0.42657385348610954, 0.6236844602579503, -0.4350597539138504, 0.3243031888266745, 1.4598427105385607, -0.19916921045285263, -0.6275968206984459, -0.48199895311675645, 4.442563272855131, 0.23051260403374954, 0.8697963002410934, -0.8534786924766374, 0.4160736147686456, 0.37021915884988893, 1.4893183675122597, 1.0339232116053927, 1.2773428437170964, -0.43419885362094396, 1.0754470151359863, 0.27899433626924897, 0.029059706721734364, -1.575463793176556, 1.5059233125128524, -0.2680235522949528, -0.8167119796912505, -0.3435552204596476, -0.6228736815785345, 0.6043293593164778, 0.7697745149677523, -0.6241411098661582, -0.5881892360877267, -0.4484354313072889, -0.6032192565707802, 0.017648691758911633, -0.17620097309049843, -0.52612239619251, -0.018179559471424852, -0.9114396144836885, -0.4929518068691645, 1.8774738525267836, -1.0504420631101477, -1.3360318797498811, 0.43977749544308087, -0.8737686889381213, 0.1340301085389784, -0.7255719247352336, 2.196333847447633, 0.59909754015639, 0.10036569765479532, 0.07239951359715686, 1.9096359225649888, -1.3391569522706752, -0.29141005585070523, 0.6451239086811094, 2.0441363633903062, 1.4658779276765035, -0.6488689626442432, -1.575463793176556, -0.5246222841184361, 2.4691708912940267, -0.9335824633187572, 0.39195785704694347, -0.8055250305968551, -1.575463793176556, -1.0458084463282538, 3.512504485034498, -0.6790038160538215, 0.031149700425575844, 0.8839807989573555, 1.5842937674476771, 1.7944571511026337, -0.46067027465707316, -0.10836087104807801, 0.7901389524107256, -0.4078736400215113, 0.7401993061824756, -0.7268111962045096, 0.36809112743895156, 2.2421220345485313, 0.05602888681572646, 0.48886367061809444, -0.19592694167627442, 0.6720757043542656, 1.1884763589771434, -1.575463793176556, -0.6895066064670491, -1.575463793176556, -0.6808731613394707, -1.3390584776988559, -0.532649726166169, 0.022932961351063045, -0.43890958591060675, 1.6663256488612326, -0.2086177174645815, -1.1993938237944528, 0.07558175411720519, 0.15057547103742397, -1.575463793176556, 0.8532439542573552, -0.5690850205698981, -1.1745198378720678, 0.29380407979609957, -0.11694936927566074, -1.0491836242025234, 0.014316974936706047, -0.31312542623518796, 0.5609500288860316, 0.4471862304111407, 0.8883977791104877, 0.25683454876773115, 1.5928965298154132, -0.2010811995742058, -1.182070657048801, 0.1004740159691742, -1.25665676873455, -0.697636497729824, -0.7941557679609684, -0.23549715234335336, -0.370476036203387, 1.0320626328225588, 0.8823637506508919, -1.575463793176556, 0.7469627373928358, 0.4111781915807947, -0.7590292084174272, -1.575463793176556, 0.7743415657622034, 1.8270346642231596, 0.7310195890619999, 0.7773027121096862, -1.1176197741436278, 1.3995770155088216, -0.551627347440029, -0.4369197383575168, 0.8006419657011342, 3.60826619569654, 0.44666974966930145, 3.4239045614138948, -1.2817438252506574, -0.008262861775718456, 0.035941708597226486, 1.41356241060194, 0.12061215877181027, -1.1207523501964891, -1.087059113862391, -0.9495125361877746, -0.5358061129321713, 0.5877746359760453, 0.6240691462880361, 0.42854091902769287, 2.0572700704477085, -0.724557016303978, 2.4999139765553435, 0.2568179072708714, -0.18854257461433097, -0.6154398357803988, -0.8371205468178603, -1.1016082768078321, 4.510569344111766, -1.3429529037067287, -0.45183772590635224, -0.6368792099111577, 1.6248856471541113, 0.09276216802259735, 1.2925189973444429, -0.010992067260721187, 0.20516166092458, -1.2549243443360094, -0.687477755405693, -1.457380978360125, -0.5661917774729919, 0.2744165873696742, 2.274021703841614, -0.7174657327470035, 1.3912027765533146, 0.7341722612081605, 0.5609446798334695, -1.575463793176556, -1.1569030304284778, 0.058693012161230095, 1.9274304374214744, -0.10075169519373726, -0.09365721706371452, -1.575463793176556, -0.05833772016594824, 0.6481009536014879, 0.19100479897989475, -0.44981348097359214, 0.30997144258015913, 0.7833102924760641, 0.23751971430527064, -0.19363398114466718, -1.1394695394737338, -0.033512618640591886, 1.2654266404567327, 0.41081861638080164, -1.0206003303517317, -0.348550195459064, 1.3980037997163994, -0.00796494926497289, -1.440534267327581, 1.6722066349836295, -0.14775812901566218, -0.6929154387970203, 0.6840294995673541, -0.3358193017765475, -0.4815997057769161, 2.0661789174898297, -0.17550782502933326, 1.1849082437486622, 1.654265021181693, -1.1120419381459357, -0.09732116948392983, 1.15672319429035, 2.0978503605402645, 1.4560606332075845, 0.1821232915397453, -1.109330897151925, 0.16462535193086783, -1.575463793176556, 0.4046790927178926, -0.9434144676822211, -0.8510554230812257, -0.5064625478397959, -1.22419492887568, -0.8091432189007145, 0.8318954397277516, 0.21013390245061067, -0.7118530164690621, 0.021326462564921413, 0.9883510667940907, 2.1432837271545453, -0.5805020532168589, 0.22521392171664226, 1.5456236834589538, 3.3345001997218784, -0.6998354040872157, -0.22641728420403628, 0.6656583271277218, 0.7854967177108132, -0.18041587792461908, -0.27104517265334865, -0.5606813618252996, -1.0100551189799918, 1.823745888406253, 0.5916494302180973, -1.4107246195979875, 0.3101739636535539, -1.1329054347637102, 1.0831924432458635, -0.14355139634518105, -1.0158426452673575, 0.8563664636904665, 1.9545153650695086, -1.1283583314777692, 3.339322370606579, 0.45301342883833584, -0.1544471192445244, 0.23580430286557658, 0.3455343213694935, 0.3795721258394644, -1.0919978495175129, 1.376954980715074, 0.1310019504496606, 1.2474071682230596, 1.2308316430115522, 0.7028970938017141, 0.7122864640656673, 2.2733501005754877, -1.5606927792047576, -0.7353836472744012, -1.575463793176556, -1.2596816579584007, 0.3862787976587432, -0.2260068930046969, 3.357826229266706, -0.5450135411166164, -1.1947138485570212, -0.834946305536173, 1.4209663908565988, -1.575463793176556, 2.110324053945418, 1.1182346809191563, 0.11576888884644283, -1.0395671420818728, 1.0446736185768057, 0.8620741999437875, 1.2807965486546729, 0.7893389718831094, 1.0498978599124273, 0.8974887911093121, 1.044480161175817, 0.7921491560805074, -1.575463793176556, 1.7262213677554104, 0.03924281695198747, -0.15895592479997822, 1.1281007112003072, 0.3642790359797165, 1.5486661056884121, 0.7334244339430275, 1.7838767251348595, -0.48676317593203994, 0.6801584199451459, 0.6918869606114421, 1.2394623393204458, -0.9486722148887525, 1.6415482430545396, -1.4880328697045042, -1.553308147476157, 2.6246434813672677, -0.4449393054111994, 0.5497581764934512, 4.510569344111766, 1.4425637849151354, 0.3747527780658299, 0.4623964099561702, 0.7496053179432887, -0.2026845780796893, -0.6264379336023937, 0.7340945513612143, 0.25570188688770984, 0.40605038177609326, 1.6380493683397845, 2.827627544975184, -1.224638120168166, 4.510569344111766, -0.29333720062099033, 3.6798460284038113, 2.230152637932152, -0.9324514358714662, -1.3425322787297376, -1.575463793176556, 1.0692121000357264, 1.0875040767804725, -0.6812119346684018, -1.0813039047675883, -0.12203230647276454, 1.1613117898798517, -1.3179016375527288, 1.5318471985853368, -0.9707177406841497, -1.3103579875922764, -1.3808187539281254, -0.12927373496345995, 1.605901265272152, 1.77762516853774, 1.3649499237482565, 3.1227998549640756, -0.11586663188621873, 0.311091771922326, -1.575463793176556, 1.8752893588943578, 0.9765635379647973, -1.409634192945491, 1.4156657769371805, -0.8369995987960416, -1.3068456102344104, 1.3852650310398364, 0.6009557415825421, -1.575463793176556, 0.3460050379949557, -1.1249144331365555, -0.5194518304780221, -1.575463793176556, 0.35195556180067156, -1.4598178432641313, -0.05281437764123403, -1.0473578514075352, 0.24597938951698048, 1.734028904308931, 0.2850261359569402, 2.2651773425998187, -0.8293026093288085, 4.049089938085143, -0.9683498934166734, -0.414882310433359, -1.575463793176556, 0.17775281842695356, -0.21553463676651133, -0.6993738254265471, 0.496390827666471, 0.03724999770302968, 0.925815887630106, -0.6766357459091548, 1.3587616642731153, 3.5713375254863573, -0.6655720479008774, 0.1164303883466188, 2.4515707253472843, -1.05188374421422, -0.730831529251682, 0.16650494956726788, 1.1572476986110256, 0.5558676860280889, -1.4411371594133136, 1.1784433193882335, 0.4980416047210492, 0.15236666072175373, 0.6858013732285367, 1.819398594521218, -0.3944890475404677, 0.5146725520604881, 2.0412888844097523, 0.5540592605077386, -0.216853772562229, -1.204695403515034, -1.1629515830516335, -0.7026468512553603, -1.575463793176556, -1.205073366083222, 0.7417371587940765, 2.560001072663421, -0.31444471061570817, 1.0727787294162676, 2.8000585280702768, -0.05005040331458393, -1.31642435181754, -1.2687745829864405, 0.7322255032451599, -0.20872915605961853, -0.20709190022124194, -0.24979769578325056, -0.2195519238254161, -0.9475594633710479, -0.5337635920698244, 0.2988387269353544, 2.114728701560696, -0.12407103842287705, 0.5099976287060295, 1.414183197868733, -0.9801510549007486, 0.891129510536975, 0.7355545455410784, -0.9711176938017597, 0.4492077265252196, -1.387290457469758, -0.26336556760694674, 0.8468149874169209, 0.08626366349885609, 1.471250159466342, 0.05544732593440085, 0.055128314382987695, -0.43905980513672543, 1.0216153388296627, -0.6602917158057505, -0.18817690743779916, -1.0365793619101717, -0.12920568312809302, 0.2225483105232108, -0.8568182100004933, 0.7496906056147008, 0.20288727349214328, 0.059248124949338225, -1.575463793176556, 0.4767290477114396, 1.232817627360008, -0.25223864676908725, 0.012032335153528674, 0.29089880133093204, 0.7289673358956859, -0.6738328423666302, 1.5352976346574647, 1.6510119057152004, 2.610286029951511, -1.575463793176556, 0.2677754414442778, -0.7799245393271854, -1.5691402733654531, -0.9025196978744539, -0.6378869119799343, -0.6636622132590281, 0.6793792412886044, 0.0033419077576859165, -0.18124111786710567, -0.4646575475877166, 0.23800335780776083, 0.3707365311004819, 2.541728411941797, 0.4013583711703916, -1.448861785652116, -1.351181380979919, -1.0134138039421945, 0.24305360635031864, 1.4467048431069316, 0.5587634550664922, -0.07175403550038577, -0.16511625033394978, 1.8779490266960415, 0.36168415114793906, -0.8725537853749616, -0.4678528635695858, -0.03821086980760987, 0.5398659952886634, 1.2671258561539624, 1.9536627855250381, -0.27445222196580643, -0.9851907167767803, -1.0078823264000392, -0.6466757768013981, -0.6524475531006656, 0.32478178044618333, -0.4442240925082136, -0.2220170941325542, 0.3299540171041244, -0.9198200197081216, 1.1875818785209429, -0.1852913907501493, -0.4991228305082724, -0.8484653672552345, 0.43476275866613406, -0.6305173291049397, 0.5387031706955805, 0.10346532502971835, -0.18955101960707754, 0.061135894749365656, -0.3564850691805175, -0.13434954009048097, -0.5548764511171067, 1.3921855163768075, 0.6586460163884289, -1.2556021510172601, -1.575463793176556, 0.0054271467481388875, 0.3599651736731912, -0.4814771976147655, -0.9200045620215129, -1.2107882715528182, 0.011449882763436628, -1.543194804771319, -1.0158638557466135, -0.6459711134187425, -0.2562678206114633, -1.5683606559194436, -0.9034207160615758, 0.7515773353211718, -0.8940323858911771, -0.7840283770282437, -0.3216989173986291, -1.0363322653987623, 1.166928295070025, 2.520848385265764, -0.1877781058523382, -0.6823947439161905, 0.2849570440280168, 0.3691129450630973, -0.9896516408825542, -1.3214403701383228, -0.6737479261572069, 0.372583885836707, -0.47812222727239717, -0.6916209680769995, -1.392625227318563, -0.46616048277286537, -1.2562367566698331, -0.3979680118929207, 0.6002077657326063, 0.501443750735316, 0.02098070575069791, -0.3183896368802286, 0.10710996142679893, -0.43837973253737506, -0.7538581604378396, -0.7353018513456385, -0.8002264225721418, 0.9820317555311726, -1.086086663535847, 0.5442895131727048, 0.599058610940528, 1.0613249220329484, 0.1819368176240365, -0.49612290352971267, 0.10126597291794094, 0.13480720700840607, 0.40979561007829635, -0.16354244020235412, -0.20081018091106095, 2.528053261897291, -0.3568823849180383, -1.0256018802282594, -1.2113960576501832, -1.575463793176556, 0.3754123459636948, -0.31125667528871453, -1.1382197184841265, 0.06941593094586904, -1.2392903266678241, 1.351487844297467, -1.575463793176556, -0.12341355071212569, 0.6370581317566816, 0.5480836258719429, 1.1151643247485283, -0.9135363687956234, -0.6844949899707693, 0.31010665474215116, -1.091170232218325, 1.1015295897678123, 0.33605059976173407, 0.8765133729959157, 2.4089105453168496, -1.5001230193251747, -0.9549344324448044, -0.32586805811638536, 0.2855842204409289, 0.44294651191652046, -0.9404337824344047, -0.7328727128508891, 0.31327894008103896, -0.7865485237089462, -1.0927772510512437, -0.3922026990321674, -0.6446461828160759, -1.2959246464932836, 0.9059957162853142, 0.9154896902438145, -0.06772813052345823, 1.1933689590539167, 0.5526052097196098, -0.9437527209643749, -0.043244476853307914, 0.19001136105127758, -0.9072192120122153, 1.0039043286270568, -0.08404452385529185, 0.017651812039569795, -0.7856241034168647, -1.0384533876168134, -0.3830950455364832, -0.2857448148482997, -0.8997695419335837, 2.5168101477509817, 0.5129121194283937, -1.192102656544169, -0.2385138694035704, -0.15269396726731516, -1.0073428521614345, -1.575463793176556, -0.3626369996736726, 0.2658607777966372, 2.6512573952202714, -0.012864235657445622, -0.614436145501043, 2.5356180108984048, 1.0688239965553774, -0.7676232042823588, 1.2355346488919587, -0.40746562617885895, 0.6188194969527536, -1.575463793176556, 0.19831101044050856, 0.7913311967928937, -1.2830293437368767, 0.413080968444964, -1.575463793176556, 1.1484134411351807, -0.6033464451539228, 0.9168480524249996, 0.7714819028285974, 0.24394169766041257, -1.575463793176556, 0.1867255569302389, 2.8541157560929618, -0.20828206441630856, -0.7432610929732058, 0.15829296520614358, -0.7702657848328152, -0.6018265713023274, -0.6958444908291342, -0.9153339476260657, -0.5433152169281603, 0.07486379239554071, -0.6246488983975719, -0.4520433672604051, -0.1645596516979138, -0.7601473089876927, 0.30202899103423947, -1.5034132066976245, 0.2700171402221558, 0.06991889047149394, -0.4254046397469182, -0.5301928766074525, -0.28951173653034395, -0.2731535908715706, 0.24055559880383204, 0.9822712742181187, -0.05384407025942638, -0.0818720655911276, -0.8918645337556035, 0.17451084681995604, 1.349749699384387, 0.17774286324579336, 0.3840969785525923, 0.25197077414088215, -0.8021380402315119, -1.575463793176556, -0.4243213080183046, -1.575463793176556, 0.021624077906086284, -1.3336883075230255, -0.3840814256874082, 0.21010953454449458, -0.9246456823354724, 1.1392472452308944, 0.5295708521241997, 2.9854079540593843, -0.9122392235493215, 1.4265204904335602, -1.3371022846014688, 1.6147979283612213, -0.1856728079147866, 1.2267645800468585, -1.1847986738554568, -0.4842060316377838, 0.007793062413291912, 0.07279608641071394, -1.0124605210539974, -0.8868862002530444, -0.4347285584093817, -0.8803762547002129, -0.37625984787091726, -1.438124305557727, 0.158425057087465, -0.5084579673226385, 0.08875216161857785, 0.9411159609751342, -0.24750592392999043, 3.723301137078893, 0.13703835626596275, -0.1539998790164241, -0.8262335904213216, -0.06132041130848181, -0.05069971886169576, -0.24348313923373324, -0.43511837061484265, -0.5133493787210646, -0.9875311130036768, -0.10837364934031571, 0.25634927083251036, -0.07916574216430096, -0.3939703380267413, 1.059490494173739, -1.575463793176556, 0.22746319831898626, 0.19986684181209452, 0.5745611388845954, 0.9326620805703696, -0.6327526387367113, 0.15007236292699655, -0.01326467167563695, -0.4192301986575613, -0.9651621181130686, 0.20443968741349064, -0.8200197000693208, -0.08394304044140287, -0.7996583086146116, -0.397437415595723, -0.6045282143081557, -0.5912441394398421, 0.015618726311612227, 0.1878885301080995, -0.5618730861606903, -1.031813467515962, 0.2596231881700902, -0.3991159037142619, 0.3728015625590215, -0.48041771374549125, -0.5566689037721775, -0.44191463906453915, -0.64930810500111, 0.8660623643831881, -0.30749658850716016, -1.0657156883619645, 0.6849675153680274, -0.8418254100081851, -0.8912389917754294, 0.32240442375193007, -0.5355011426437356, 0.29103431066250446, -0.23160913405470468, -1.575463793176556, 0.3121507357448255, -0.7985062564190556, 0.6804845635666416, -1.0973591603250372, -0.5382272278480776, -0.6879059024878491, -0.19716881337942888, -0.9045093968427511, -1.1939768679818028, -0.11869672644593689, -0.6569010108205718, 1.4101345594184196, -0.987371532935575, -0.54374529561263, -0.15807273678806313, -0.5266148804902049, -0.15247495328185098, -0.7535598021727108, -0.15630338906835298, -0.09163884123029352, -0.7976879999618529, 0.24861067762313563, 1.8940508635862188, -1.308626919029976, 0.7878231098209303, 0.9230325972802969, 0.15101349900834013, -1.1450851531551467, -0.6507531664092329, 0.05817133095163185, 0.7395709410912289, 0.012011533282453959, -1.0253279270154447, -0.19998731832525646, 0.9332968348077353, 0.9815815436072045, -0.648785383697961, -1.0179437085383003, 0.5115913491999456, 0.42128374054890444, -0.9706514347200993, -0.4083349958049893, -0.686827696934609, -1.4048135636280163, -0.23182547351388172, -1.27738256439505, -1.387971514443364, -0.249354170174982, 1.1152181124437297, 0.38138055135982724, -0.7818879387870519, 1.2962770039388958, -0.9341077848557895, -0.5672763721723486, -0.07171228317343381, -1.20767679454062, -0.30713716189194473, -0.9931976169768272, -0.3019973167189692, -0.3345564053251146, -0.8027210869607775, -0.45093210159063607, -0.6936663120504211, -1.1633486387657719, 0.05408628922694086, 0.7294933260642894, -0.07573090749548823, -1.24424176632278, 1.4856218750222767, 0.31631586467315714, -0.2212963092998244, -0.18626432397727244, 0.3712338444039516, 0.39284490826348034, -0.8139229688269083, 0.09684587248416304, -1.233888377919307, -0.5109960184709443, -0.6734239370152186, -0.9754221581200937, 0.22189438884750082, -1.2736902137061887, -1.1425352152233696, -0.41450601944409715, -1.5280941577570206, -0.7600675189536423, -0.3781455374838408, -0.4750520939789582, 1.086337091813187, 0.024085533593392654, -1.0333493513790444, -1.4720329991287915, -0.17679263773777462, 0.8331028397588514, -0.05643494330179138, -0.18881032441202733, -0.13896235500130838, -0.6648430909045021, 0.3290269965781557, 0.35844292246490544, 0.4826248923131876, -0.7701874063543013, -0.4426745016979397, -0.6265191351919828, 0.16939551813788697, -0.18628765178983175, -0.23292292079786028, 0.2367137903859188, 0.26720606451600415, -1.575463793176556, -0.46746698886115035, -0.25198114932213184, 0.4604410340751469, 0.3909963648489081, 0.695308274064065, -0.05210711402469369, -0.8048745263713901, -1.3086852014151833, 0.7279198131022744, -0.33118197037481356, -0.33652381657441155, -0.009450202859707608, 0.23633163029731757, -0.775153481611406, -1.4154075293850887, -0.5847416974190764, -0.9220294755858431, -0.07660488325020699, -0.18507207959510444, -0.28707955204733254, -0.42637333830742863, -0.14899866345567916, -0.7003315287123468, -0.25233166084974384, 1.039797065657731, -0.5710687761464585, -0.16035128459470235, -1.330221564269829, -1.5187403039019627, -0.37266610176556997, -0.643200229899194, 0.504856149100336, -0.8758697522090653, -1.1270170936940278, -0.67437354242978, -0.43432626508127714, -0.23616251504816357, 0.2151793962797797, -0.4999792732573771, -0.9886103586504713, -0.6768244485967612, -1.107768565195618, 0.7258639939009189, -0.01139725799230102, 0.20362900878075027, -0.7989924258630304, -0.5729983725658294, -1.2386458772726894, 1.2117379027216573, 0.07348343966493383, 0.2252549311196181, 0.08728399527507394, 1.5113597329334358, 0.40253100235983197, -0.40558914882312674, -0.37639892323753105, 0.7415957060707685, -0.16915656803583318, 0.16399980995069852, -0.3654284621871066, 0.04119715273945399, 0.22466995278804147, 2.0313066608201757, -0.434610656375827, 4.051324059038568, -0.1849358273395681, -0.21283024494199573, 2.2348419740115664, -0.3504199864990942, -0.6097898990117118, -0.611721872787777, -0.2722463321231201, 0.5979691872353864, 0.33025044376692975, -0.4902676225765597, 0.07570611958927026, -0.8397438113451761, -0.6334272136987057, 1.3909992153863753, -0.35109344707514256, -0.030160842871275493, -0.5346308072164498, 0.6733398637764347, 0.048800236617268754, 0.15238300504902036, -0.6490282455427582, -0.3607547275109975, -0.02425251714689478, 0.9069372981210406, -0.49706173654675245, -0.19573601021677026, 0.14715519767835747, -1.2097456520575942, 0.3110773591973701, -0.7020857950755166, -0.17976760247105186, -0.14940103107618152, 0.07673997258167756, -0.5359814429883725, 0.4148934057547517, 0.69351262683594, -0.27305329613602874, 0.7206242997467848, 0.6747312117817464, 0.22789453997420314, -0.40155432875859826, 1.6626909676453, 0.3009401616682715, 0.5698472863142744, -0.5270541714318647, -0.7035554472669447, -0.08726658509996892, -0.17008433148577767, -0.33501159483967496, -1.3545049442115837, -0.300349511360271, -0.41889885456829984, 1.8044117379206457, -1.1523031795408827, -0.5811163027527365, -0.23923316838837233, 1.1291060359123957, 1.1459692212838954, 0.7567296616167921, 1.2734597287266145, 0.3870921508177707, 0.14338753307234928, 0.9031565580532022, -1.368895771486569, -0.11877725940394863, -1.382087835221575, -0.8809089311845182, 0.0817539664346602, -0.0528041252904931, 0.2097129617309375, 1.1281836215150254, 0.2773059672619459, 0.91420294593305, -0.12889811260576794, -0.9773715906093814, 0.8552455400091261, 0.006973022938577064, 0.198404321690758, -0.7328272459041114, -0.06108802469161855, 0.30276017680252515, -0.37269024679449597, 0.6736553092928065, -0.5326225351489794, 0.5032153272269179, -0.6613277232776676, 0.08995124090123574, -1.575463793176556, -0.6523292053127289, 0.3122461271821763, 0.5285714708038594, -0.08125023823077784, 0.5511750810832261, 1.2571858306456967, 0.5171406940635063, -0.6837774740034844, -0.6327767094732406, -1.1683162741632067, 0.7536851592002082, 0.6151237473867347, -1.0222931197566345, 0.10227679526738206, -0.9194529409760498, -0.5715235941990283, 3.4494837307657127, 1.745685975689609, 0.08055206404091264, -0.09208905315426164, 0.9653697539699059, 0.09326943650723972, 0.1256999992671051, -1.2046590373868522, -0.6229363843613455, 0.14674436072463487, 0.061734245712353565, 0.4140221045263079, -0.38099153061644875, -0.10846413747948767, -0.43380480674887145, -0.5529077026046783, 0.6245288676387935, 0.050195596411992886, -1.4055840129279467, 1.0896012025543966, 0.14426730363401333, -0.9281068908051148, 0.0819606478822577, -1.2893241199357808, 1.6353267005856789, -0.36928616917791324, -0.1780281202948224, -1.4565795026980255, 0.6860587220906896, 0.13913785939658152, -0.23246230793834874, 0.6349119730009445, -0.2673038075557676, 0.13535147310659973, -0.14349092233426794, 0.46357335010462836, -0.03813360571504664, -0.16593331811280898, 0.3279965610359873, -0.26288504438511473, 1.2195903118827758, -0.1644496989508046, 0.33118771664363905, 0.06029505340356391, 0.2546921046318258, 3.405849428829807, 0.7121396622897855, 0.1607513006127918, -0.5110597613473081, -0.7177589648367607, 0.6020432336853726, -0.06986269966530478, 0.002580559276351313, -0.10310349530353947, -0.8428418785797712, -0.28137478748987904, -1.0111432425681903, 1.2181781620063894, -1.5028581124826155, 0.4270134673516352, -0.310989965584575, -0.25730018775594277, -0.6898352760300296, 0.28691182556986655, 1.3140385329712425, 1.3352121631990284, -0.7384917439825494, -0.83950429265823, -0.02025083149128082, -0.19228334537273845, -1.2750032946715824, 0.355899745141228, 0.49660018364035535, -0.6941739519970418, -0.26227094343403345, -0.2394009206201197, -1.270648608693082, -0.28595907412037536, -0.3885689836173979, 0.5419550974837385, -0.1827661921864691, 0.7963557401661978, 1.475051849990046, 0.12661973913818822, 1.3113851057308752, 0.15678423521404702, 2.27854789381788, -0.3216278938673944, 0.20204346045048616, 0.18838435756365413, 0.09721837456118472, 4.510569344111766, 0.14845427452697652, -0.34384102330973043, -0.23952840637284295, 0.22188502800551413, 0.4158464286195541, 0.8055292167253454, 0.8017428304353758, -0.3789369743858365, -0.3472096634530982, -0.21979010524922465, -1.575463793176556, 0.6523324999324565, 0.6767244767850874, -0.5012754527025222, -0.1930357787664696, -1.4274308994276785, 0.5286934589192299, -1.575463793176556, 0.07071099600505132, -0.34648159796548317, 1.7305861946460595, -0.013295428727871894, -0.6523154612193404, 0.10761262378284314, -0.09037037284911906, -0.6604482498855881, 1.192229610858208, 0.8118571459062739, 1.9478219172968387, 0.6261668664011338, -0.8092780596007171, -0.40087878799544685, -0.13051902411686545, 0.509927496683549, -1.4782466294574041, -0.40133264024685916, 0.7729365479558997, 0.07508310355058556, -0.5200284880611727, -1.4111845081066319, -0.1779521934654088, -0.7609790866610945, 0.012089986053364315, 0.538902125733934, 1.161463643538691, 0.34221746302662703, -0.20600232793131004, 0.17718923630561276, -0.2797760151129937, -0.8220047186166246, 0.43620863729062354, -0.6255389956023792, 2.751642470313462, 2.3321097401394053, -1.2004011915474446, -0.2680277126691677, -0.26878757530257447, 0.06198386816525016, -0.8030675124065673, -0.035539760976826, -0.15837495825781397, 1.010124088078409, 1.1132912648430373, -1.1244674529318375, 0.913907113609406, -0.4194799696952522, -0.055461712905075365, 0.6130371711331439, 0.10942283232072665, -0.40278409080109856, 0.9649133014846092, -0.7174909178694837, -1.0142384123993156, 1.098481224146606, -0.3290706547531252, 2.9012519044395133, -0.04621572696675343, 2.359341469563322, 0.3899791533533484, 0.2602218363026588, -0.5023965992610531, -0.08061667267175936, -0.20753810035579764, 2.1861266664808565, -1.575463793176556, -0.25044879434789524, 0.5175167621755817, 0.46445163481835217, -0.40434289386856076, -0.49435682467546815, 0.08857623722320311, -0.10391461969065087, -0.28184476119137725, 1.2551216906959113, -0.322415839026749, -0.39838456936119226, -0.271965358278815, -0.6625984947231437, 0.1763812321991598, -0.10625141273631147, 1.7379524343632031, -1.2014543977091967, 1.0992199877393452, 0.2918858501134179, 0.4243954032920888, 0.521377589447049, -0.5679031028308712, -0.27366189944975755, 1.1190186142890863, -1.575463793176556, -0.21850588687994468, -0.19318614657738112, -0.6979653158775987, 0.4325473593966832, 0.012528756948244386, -0.02008293067475527, -0.08502444056770742, 1.426694631811402, -0.6460999364346117, -0.04158389320237202, -0.309324032881077, 0.6697970079628238, 0.5550822668102313, 1.2272228155496758, 1.0370821243128938, -0.7075768204076703, 0.23103220505624666, -0.41169836118818404, 0.4115295946171734, -0.4600875250973954, 2.2953798763827855, -0.03200834619230314, 0.8514233447839404, -1.0871173591014003, 0.294610598054625, -0.13065780231389856, -0.7677981628765768, 0.6005034494714604, 2.193236151675021, 0.36797003083233504, -0.6834329058676116, -0.80438397367601, -0.17822410363730795, 0.2481716095586627, 0.5870655893419843, 1.718819467687853, 1.359670408869506, -0.9091045301631545, 0.40361329399489076, 1.7449953535699283, -0.9165006354237705, -0.7032883661008242, 0.13464732977071756, 1.66139679409486, -1.4288118464974529, 1.0915622246575627, -0.4619634824063504, -1.095486694758726, 0.8193637982531808, 0.31703546082755224, -0.678348557114968, 1.0969002819449276, 0.3898605826882286, 0.07888226813279262, 0.34311981847689893, 0.7571873027804358, 0.7499345818454427, 3.9254947295859584, 0.47071359235101523, 4.510569344111766, -1.5664079313483275, -0.5895343742222947, 0.8634454890019888, -0.7649821095798374, 0.20011988171524242, 1.5778053666898744, 0.49781575583509513, 0.5742838796601217, -0.24099790997947215, -0.4009032301939608, 0.3698772652402997, 0.8115246131386713, 2.3939718301893356, 0.46032409784274503, 0.41306462411768463, -0.9695788010966101, 2.04754787024656, 0.7590200962069147, -0.6855666577931002, 0.43803444723181, -0.42596123838296013, 0.2946782041356084, 2.0941336605183802, 0.7038591803389108, -0.48013517976085957, -1.183348449125764, -1.2779236359201829, 0.5404508250354497, -0.031119511958245295, 0.05782914017244973, -0.6262842226336313, -0.331097277042587, -0.4563546293330371, -0.5055205202496981, -0.9380312406176714, -0.36919605250072074, 0.3527650517550648, 1.5478786062834529, 0.8210055116353533, -0.8260301035467726, -0.20152205065619944, 0.5110219722716719, -0.662626205787111, 0.8415090244449405, 1.1192301990348748, 0.8110259625720517, -0.27132406631055234, 0.23940629542695094, -0.9901141481981812, 2.2773271211553805, -0.10893084231552523, -0.5015885208621974, 0.4447253690629955, -0.5288828044841247, -0.39312890234176817, -0.9804316201368685, -1.0558785578231273, -1.4158905971215006, 0.5296730784620526, -0.5992789364348483, -0.06102814501987901, -0.05458030791068098, -0.16470125300601224, 0.5619002286397565, -0.46814847301603685, 0.07102867029332699, 0.6048531207131771, 1.6795758463966532, 2.3179647649781914, -0.3595765986842022, 0.3535146620377185, -1.3307425954209526, 0.586412707759831, 0.6556588677020997, 1.0628642604924774, -1.575463793176556, 0.16869464366746548, 0.964291622709062, 1.9077283909874434, -0.42036605511063857, 1.5777328573106995, -0.4923218073451874, 0.3993810047399464, -0.6940173436248067, 1.4955544712908668, -0.4549979758769827, 0.4678157431255233, 0.16710864958281815, 1.1452601746498465, -0.4694864790805222, 0.4249627000332613, 0.1536863908566447, -0.7736946018174984, -0.971121111252007, -0.22662946328899838, 0.7898027050232794, -0.48090024286202837, 1.0486521250046386, -0.8263643450395056, 4.510569344111766, -0.7491356899494983, -0.6345625501050042, -0.31456625297669577, -0.3884610367649985, 0.14955811095707394, 0.7245817071339622, 0.09491248715254941, 1.2131533214634922, -0.018878502339535308, -0.9831944429313756, 0.9359478846914205, 0.044892902305461016, -0.9485726630771807, -0.5587484965404754, 0.8506671967703775, 0.7933993485320917, 2.0027459890041714, -0.7901478417440456, 1.067601143705777, 1.8278875409372228, 0.6899904243086131, 1.0451259106878996, 0.01892444079497137, -0.07448873862274091, 0.9288660362688329, -0.16597477327016807, 0.8155072799407191, 0.8700245264837417, 0.3108629513405041, -0.39663290323190836, 1.1797172854067604, 0.009871912257626033, -0.1706189395723918, -0.13252937637144943, 0.22229304184817172, 0.2210143211162439, -1.1794092433757828, 0.15488145834989017, 0.4071592700891596, -0.20147836672693645, -0.26132267528261927, -1.575463793176556, 0.2414794990491426, -1.575463793176556, 0.6639580713369475, 0.7920348943743926, -0.37667402798249433, -1.3004907500596792, -0.08303860480404203, -0.6736428767082805, -1.3366025010757994, -1.4212823863847697, -0.6574188288255394, -0.6374135951205874, -1.3824101342115396, -0.13972147471073906, 0.31827153772376116, -1.0336729319128513, 0.5757052417937047, 1.722996186230075, -0.538842888939493, -0.2932009483654418, 0.2386560908051237, -0.3294729480812385, -0.05762243297057088, -1.3045166178904062, -0.7571462676231809, 0.07225776370425592, -0.47751154377156096, -0.7113653611771534, -0.03684166093651035, -0.41283132023778857, -0.729191227425045, -0.4066246362482669, -0.40798626729490045, 0.11436134509865456, 0.8828074248439511, -0.2609332345391328, 0.8209789149573333, 0.02815229938850571, -0.48510979864358444, 0.7211009597639825, -0.40847332824763666, 0.2569079496556599, -0.7804270530984332, 0.6611664602387206, 0.326964639645891, 0.06749205504103241, 0.2033707684098434, 0.20613459415170313, -1.2650422444150577, 0.4042531001152378, 0.502734358250715, -0.7388930715094986, -0.6072453844248946, 0.048482859498585947, -1.5725887119587998, 0.6906496950368854, -0.8079279438755717, 0.5578446067041632, 0.5448841495158488, -0.6259236073400724, -0.767136366206814, -0.15198284044614055, -1.3557569753999936, 0.8787445222534723, -0.33160811156225845, 0.7221260462535889, -0.1782512946545015, -1.050224014925846, 0.5732399229017641, -0.5149893833781162, 0.6610498211759118, -0.5944274943458439, -1.4119217115590406, 1.098646153267276, 0.3640771092454953, -1.2768492935715707, 0.7747296692425402, 0.8065321640807395, -0.14100762468233008, 0.6607397247121022, -0.27809091497115135, 0.22623648226475157, -0.36287428958871826, -0.3567527446858124, -0.3470519406949121, -0.6357824312587429, 0.13811678469639974, -1.575463793176556, -0.22103658308097726, -0.9871864334292084, 0.7505375389370169, -0.3305625203711704, -0.9827251378614512, -0.05759123016395272, -0.8501393235375756, -0.7650370116609957, -0.684090319285969, -0.9319414928605488, -1.0061253483643913, 0.669255267806127, -0.32832297607278255, -0.1552215431876774, 0.6417190881405554, -1.575463793176556, -0.13282268275359682, 0.6977403099622862, 0.040809049259117144, -0.2682385544909923, 0.3480430270211043, 0.4850126499429846, -0.41423433214938243, -0.5443414920961103, 0.322149155076891, -1.3305087043830566, -1.4666391111053159, -1.2434073512692954, -0.37588950027339074, -0.1198427609573573, 0.6746659830574567, -0.6288614258749957, -0.31705475109640535, 4.510569344111766, -1.4462378896394286, 0.9171262031582271, -0.09972556861058629, 0.1651577312455902, -1.182352522401863, 0.3330444322218509, 0.9245713414006644, -0.6630053198874466, -1.0038552327447667, -0.10173755529788846, -0.5005442669342467, -0.050941169150952814, -1.1844233858135498, 0.472934489257831, 2.432142669272266, -0.5351145993037303, -0.31952541904090803, 0.16151784956189813, 0.49876922445428107, 0.6447843924282024, 0.1725129756880166, -0.43018840146253157, -0.07374744908851712, 0.1050529535470963, -1.575463793176556, -0.34150995077862606, -0.3439930998457736, -1.3146592944837516, 0.5286952419367507], [-0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.21642809503587582, 0.1735600715407957, -0.6132730941970369, -0.6132730941970369, -0.24052498425680233, 0.3487590275663993, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.1438156493336885, 0.2714533344649095, -0.6132730941970369, -0.4698254220550142, -0.5142557658721135, -0.6132730941970369, -0.6132730941970369, 0.33345143664988675, -0.032291322114071715, -0.6132730941970369, -0.27791674733444344, -0.6132730941970369, 0.05638848989086013, -0.07577871794385994, -0.6132730941970369, -0.5308978638251735, -0.6132730941970369, -0.35006360594175273, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.6882650435937274, -0.6132730941970369, 0.1431004726040393, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.4604056976499851, -0.6132730941970369, -0.3083666959266893, -0.6132730941970369, 0.7176042774796393, -0.6132730941970369, -0.6132730941970369, -0.4796961581491324, -0.6132730941970369, 0.10403478473557833, -0.5500313537968174, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.025436029568387215, 0.02278872351426498, -0.4835658096376603, -0.2198324590533456, 4.4994711863975185, -0.22577959423842014, -0.6132730941970369, -0.32813253576043666, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.2713840370019237, -0.6132730941970369, -0.6132730941970369, 0.35229210489345686, -0.38908671876089684, -0.6132730941970369, -0.6016403069021495, -0.6102976669026927, -0.6132730941970369, -0.2957675509375902, 0.01817173799340683, -0.46725256451922526, 0.31590420891690185, -0.4288623902542254, -0.40170390295607705, 0.1373339817763597, -0.6132730941970369, -0.23585526874893875, -0.6132730941970369, -0.4683607352349587, -0.07743563373966687, -0.6132730941970369, 0.3215547274127154, -0.23886693312634594, -0.6132730941970369, -0.5354511970192144, 0.09037153683487903, 0.17007745353144785, -0.6132730941970369, -0.030956589061829708, -0.6132730941970369, 0.850489815751365, -0.3543668816794775, -0.6132730941970369, -0.6132730941970369, -0.4535273147318927, -0.5948030102206915, 0.3930076442532442, -0.6132730941970369, -0.2619997129835953, -0.05552586159536631, -0.4590286628697309, -0.591197697226628, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.9780449157992711, 0.5631784133681006, -0.1054965649103091, -0.38276019258080446, -0.11094844189207913, -0.5168039929534453, 0.5832507094580602, 0.6411770810994482, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.05532833962581262, -0.6132730941970369, -0.6132730941970369, 0.0741590001047035, 0.06823886065460247, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.04905855915342656, -0.5853373179028483, 0.5213713548674226, -0.11582331657585607, -0.27256812273153364, 1.0728263526003268, -0.5887469197026199, -0.042145017676105956, -0.5575497448297115, 0.2350753621541698, -0.6132730941970369, -0.6132730941970369, 0.9566074428687251, 0.3294029173924416, 0.05226945373691758, 0.2978265696559405, -0.17909984762440004, -0.24344233175952595, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.5865742965177659, -0.0992499957240686, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.5891161715284855, 0.2656771722680022, 0.9696429348077019, -0.19711449683708804, -0.6132730941970369, -0.6132730941970369, 0.9468232129673989, -0.19459014332044713, -0.4916449245824062, -0.5854103104596202, -0.5656760602612302, -0.6132730941970369, -0.4059026438072828, -0.5726378482265513, -0.5669721761668883, -0.5254665595277277, 0.4903962299014146, -0.6132730941970369, 1.1669183469237607, -0.4009234234594275, -0.6132730941970369, -0.21473253581259055, 0.11830266141071558, -0.47024408721898053, -0.5673312362618128, -0.40194324831973977, 0.9710186240061534, 0.3279169745848018, -0.33334485713138773, -0.6132730941970369, -0.34725432547778684, -0.31894687951542616, 0.016394855169748226, 0.6117396197417293, -0.6132730941970369, -0.6132730941970369, -0.20701116691803592, -0.5215597731350742, -0.5130691204049873, 0.15469955596559531, -0.507470921914222, -0.6132730941970369, -0.39374445018080423, -0.6132730941970369, 0.38977547265745316, -0.6132730941970369, -0.6132730941970369, 0.07391990703762971, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 2.664698069509618, -0.6132730941970369, -0.6132730941970369, 1.6357264486769112, -0.5626917490389641, -0.6132730941970369, -0.06675448946608403, -0.5896466724115021, 0.012992635673280488, -0.49383095888617246, -0.6132730941970369, 1.3642743257504444, -0.31050558230547304, 2.4183667815086647, -0.5491370412331257, -0.3988027655091668, -0.6132730941970369, -0.6132730941970369, -0.06210933082617173, -0.6132730941970369, 0.6375420759506203, -0.6132730941970369, -0.6132730941970369, 0.3184360892817671, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.502408706501095, 1.8442371324738585, 0.9428518964660437, -0.6132730941970369, -0.09459949680636545, -0.6132730941970369, -0.3190529281814756, -0.6132730941970369, -0.6132730941970369, 0.6751902774857966, 1.5645291923794467, 0.27247723812006963, -0.34849814765929177, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.4759860579503406, -0.08514169664118261, -0.6132730941970369, 0.3498745148831993, -0.6132730941970369, 1.6641967731118943, -0.6132730941970369, -0.43085940185138494, -0.4532869391571602, -0.6132730941970369, -0.22760458161162705, -0.11919580712430676, -0.6132730941970369, -0.26784079950262035, -0.6132730941970369, -0.35044755930008065, -0.6132730941970369, -0.4540094219755189, -0.6132730941970369, 0.20341029011736653, -0.6132730941970369, -0.030068084575853624, 0.39360390519082866, -0.6132730941970369, 0.4888149189833057, -0.6132730941970369, 0.06654729612730116, -0.23365591528776916, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.5143134997414578, -0.6132730941970369, -0.45381740324692366, -0.6132730941970369, 2.3968976874056747, -0.6132730941970369, 0.5407666551114664, -0.6132730941970369, -0.2592473674497778, -0.1633601567505812, -0.6132730941970369, -0.6132730941970369, -0.44573957080983667, 0.12211461056697294, -0.6132730941970369, -0.6132730941970369, -0.28188118875375734, -0.6132730941970369, -0.2719128874663782, -0.6132730941970369, -0.6132730941970369, 1.0267973629870144, 0.20958743569232738, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.4251483321743217, 3.0656215691728286, -0.2911029234109288, 0.22252158850157686, -0.14160348658609306, -0.6132730941970369, -0.21404258874179538, -0.14796375743490237, -0.6132730941970369, -0.6132730941970369, -0.46826757471964003, 0.17160838923071103, -0.6132730941970369, -0.33176222165618907, -0.5958866923987987, -0.008359603059777744, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.43822336109119836, 0.08092218860541221, -0.6132730941970369, -0.0912844457812396, -0.36865641381179726, 1.2123117173316735, -0.48800607191060374, -0.6132730941970369, -0.6132730941970369, -0.3374071686023397, 0.2692945166556328, -0.6132730941970369, -0.6132730941970369, 0.19982322132036215, -0.1383929704474847, -0.4753925985777462, -0.41346895542346224, 1.2605375374402803, -0.19417969882032207, -0.6132730941970369, 0.6113415798238758, 0.017214861131935117, -0.6132730941970369, 1.3926581965544138, -0.6132730941970369, 0.12324683355747976, -0.6132730941970369, -0.37638753817444065, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.1609246116331051, -0.6132730941970369, -0.6132730941970369, -0.23814296806552948, -0.6132730941970369, 0.030884122101329684, -0.29335061269352, -0.6132730941970369, -0.46271339147121704, 0.13644413170857658, -0.5123431790208938, 3.736702237472402, 0.16339319181352155, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 1.3882435108481304, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.5696877521010167, -0.13607848564307823, -0.6132730941970369, -0.6132730941970369, 0.5684491413992978, -0.6132730941970369, -0.403702155011464, 0.08890876326395229, -0.6132730941970369, 0.18036131477694237, 0.3731514822407999, -0.6132730941970369, 0.345012759622025, -0.6132730941970369, 1.7139289720517994, -0.6132730941970369, -0.6132730941970369, -0.549028212048423, -0.6132730941970369, -0.6132730941970369, 0.15944332052219526, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.2978743325754815, 0.812851537881997, 0.7523046456743111, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.2299535469498015, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.15246149076824314, -0.6132730941970369, -0.6132730941970369, -0.2630976446627763, 0.27902963282105225, 1.5106840544531452, -0.6132730941970369, 1.80343976492052, 0.15590351528611016, -0.5262593069459952, -0.1366598190325066, -0.6132730941970369, 1.9256068190235642, -0.5719883632211433, -0.6132730941970369, -0.6132730941970369, 1.2699532461246084, 0.22803973538727018, -0.6132730941970369, 0.038156318969418374, -0.3337416986404452, 0.283368629550771, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 3.766228675427005, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.3097278780712971, -0.4744493352196993, 3.273624968629084, -0.5676179030043629, -0.6132730941970369, -0.3624247721737116, -0.6132730941970369, 0.3247199563136802, -0.6132730941970369, 1.026814519155042, 1.212503294541242, 0.5323084119806503, -0.03417051120438314, -0.6132730941970369, -0.4124059668217942, -0.6132730941970369, 1.3094314389153285, -0.38161178055919975, -0.6132730941970369, -0.6132730941970369, -0.4929900648689251, -0.6132730941970369, -0.18055395901245175, 0.3150428683636243, -0.6132730941970369, -0.6132730941970369, 0.7590051384727663, 0.3816989542650976, 2.9582367403900998, -0.6132730941970369, 0.8119084532340433, -0.22681316926280815, -0.13513670452748783, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.3103343412305575, 0.5627265501780236, -0.5725408296758997, -0.10010881331146015, -0.03071295465616291, 0.09853270073268908, -0.06547063622586395, -0.6132730941970369, 0.0476508703376648, -0.4219819258892764, 0.1543585350767512, -0.6132730941970369, -0.11463710211540246, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.8501984972904637, -0.6132730941970369, -0.014118903434683085, 0.3578532262980636, 0.39132322812928577, -0.3234533170810718, 0.049649017269473496, -0.6132730941970369, -0.06532190738691962, -0.07041093982493656, -0.43318326367899906, -0.6132730941970369, -0.6132730941970369, 1.0107647557739, -0.6132730941970369, -0.6075097932129442, -0.6132730941970369, 0.5034772193251938, 0.0027308083298510236, 0.20053503409549747, -0.3795895393031862, -0.585216239193154, -0.20588192943716171, -0.6132730941970369, 0.3595124127631693, -0.31997036267627105, -0.6132730941970369, 0.6076844566741191, -0.4271065321462779, -0.6132730941970369, -0.6132730941970369, -0.1606591115230981, 0.5670132374150522, -0.08462217591594703, 1.1232025806319228, 0.07930151941949116, -0.6132730941970369, -0.14716494438615146, -0.43608869016791474, -0.12725701952362495, -0.3813164463775973, -0.1691226528822754, -0.5259457863853023, -0.6132730941970369, 2.2871651547677074, 0.2174417648890411, 1.6399904292209733, 0.23590020380097124, 0.13449303809053073, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.002426286347481731, -0.6132730941970369, 2.5267954453770414, -0.30660945018750635, -0.5829563082698401, -0.6132730941970369, -0.6132730941970369, 0.3552554965235892, -0.10313637237394507, -0.5917551570513658, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.5341104929477106, -0.6132730941970369, -0.6132730941970369, -0.23859609273854804, 1.0812096636443544, -0.6132730941970369, -0.6132730941970369, -0.1628414349645421, -0.6132730941970369, 0.17619951435124373, -0.6132730941970369, -0.6132730941970369, -0.2917441351907054, -0.6132730941970369, -0.1577320926511467, -0.08587987440981996, -0.2656326997597147, -0.6132730941970369, -0.6132730941970369, -0.4449025558526384, -0.6132730941970369, -0.6132730941970369, -0.18169623181706898, -0.36261729549548455, -0.6132730941970369, -0.6132730941970369, 0.6624566163655736, -0.6132730941970369, 0.009774844983036808, -0.6132730941970369, 0.5036164029432054, -0.6132730941970369, -0.6132730941970369, -0.47311438140794265, -0.6098052342240727, 0.24021043871959716, -0.6132730941970369, -0.6132730941970369, -0.12038332511713629, -0.4704928096058508, -0.6132730941970369, 0.2856374486726513, -0.6132730941970369, -0.13757443621539575, -0.6132730941970369, -0.5435798934997875, 5.0, 1.0423319367343535, -0.6132730941970369, -0.6132730941970369, -0.3300098746757662, -0.6132730941970369, -0.3019219477701506, -0.25710234185400654, -0.6132730941970369, -0.6132730941970369, -0.5136191690174368, -0.4289549200280726, -0.13036615448307054, -0.6132730941970369, -0.564557739863988, -0.6132730941970369, -0.6132730941970369, -0.14023633342222416, -0.09546621968686524, -0.5077111818530176, -0.5189337440932512, -0.38614716915838165, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.49441747486802406, 0.3068558440654886, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 1.9289598406852693, -0.6132730941970369, -0.5224062912637742, -0.6132730941970369, -0.6132730941970369, 0.7575792422532001, -0.20752744983705276, -0.5524885070658652, -0.6132730941970369, -0.060905161258499235, -0.00879737969032623, 0.35691695365799064, -0.2942443943831402, -0.6132730941970369, -0.4222171083592273, -0.6132730941970369, -0.6132730941970369, 0.7017384383115505, -0.6132730941970369, -0.11605513509129328, -0.6132730941970369, -0.5230382206315629, -0.6132730941970369, -0.6132730941970369, 0.5998936221188552, -0.1788128182055042, -0.0832510701055241, 0.3268338653301975, -0.6132730941970369, -0.3908703715430143, -0.6132730941970369, -0.2077302121953768, -0.6132730941970369, -0.6132730941970369, -0.39979445929985635, -0.18589877814181818, -0.5659293292428722, -0.0983517357700023, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.09559655713411894, -0.6132730941970369, 0.4603246631178309, -0.09670650971612989, -0.6132730941970369, -0.6132730941970369, 0.7078879153606339, -0.6132730941970369, -0.5966562732084413, -0.5006374057394578, -0.2778102571493631, -0.2344047315625571, 0.035488240496172586, 0.3653349134335042, -0.6132730941970369, -0.6132730941970369, -0.5284276857447426, 0.35392202495429026, -0.6132730941970369, -0.37593714671446443, -0.3456314907461481, -0.24399473514013495, 0.9273763601204263, -0.3957840999014273, 1.1553751052071377, 0.08245043314106433, -0.6132730941970369, -0.3429507974434746, -0.01727904435444575, -0.6132730941970369, -0.43026110151637786, -0.6132730941970369, -0.6028252822184214, -0.6132730941970369, -0.6132730941970369, 0.0886496967169528, -0.6132730941970369, 0.9736853989470151, -0.6132730941970369, -0.6132730941970369, -0.3781417773792781, -0.5545950626880621, -0.5395349169069399, -0.6132730941970369, 0.4393036477560953, 1.4231546307930951, -0.6132730941970369, -0.020692533098535745, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 2.451661184914249, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.42230780898280806, 1.2731897067623978, 2.466070011283524, -0.008235599286509583, -0.6108140439401631, -0.5273819531784951, 0.6152396462156885, -0.6132730941970369, -0.01689887544494701, 0.3520245023118774, -0.14747674092015614, -0.6132730941970369, 0.43470116928907815, 3.8752675606442115, 0.25169237236520786, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.5543379409056447, -0.6132730941970369, -0.16188930968882115, -0.6132730941970369, -0.6132730941970369, 0.6226054451181252, 0.3502312622593961, -0.244644735251079, 0.9720846611915925, 0.00045029946603324236, 0.12815854354318446, -0.02903635972644904, -0.6132730941970369, 5.0, 0.47889327154009126, -0.19495719280734186, -0.6132730941970369, -0.6132730941970369, 0.5759787648865602, -0.6132730941970369, -0.43135991623361786, -0.6132730941970369, 0.03618420063566005, -0.6132730941970369, 1.4226756036703199, 2.8338622593350666, 0.9351906582584291, -0.40648563814925254, 1.4385149516966158, -0.19123670116443048, 0.1913179669252129, -0.18063301194352774, -0.46407728580415014, 1.7611962333216749, -0.11356547235557651, -0.15666353249981452, -0.6132730941970369, -0.2976292474644296, -0.27299389424941173, 0.07354915720076982, 0.9027147049860492, -0.23551693902370568, -0.6132730941970369, -0.6132730941970369, 1.5821103960530116, -0.6132730941970369, -0.6132730941970369, 0.7119414805498497, 1.1774788093291664, -0.40573009396543686, -0.3063244811907488, -0.6132730941970369, -0.6132730941970369, -0.182560473781114, 0.15586667998418405, -0.4890941955599049, -0.6132730941970369, 0.12856802090638522, -0.6132730941970369, -0.6132730941970369, -0.4489224709843571, -0.6132730941970369, -0.3158167408649838, 0.06729371558449812, -0.37230155287359784, -0.15484455819530132, -0.6132730941970369, -0.6132730941970369, 0.37524604851886334, -0.14537271352002284, -0.3956035186181794, -0.6132730941970369, -0.6132730941970369, -0.31133845539367516, -0.38299848670868164, -0.6132730941970369, 0.3251232944598935, 0.8406788424116638, -0.1964125236289054, -0.6132730941970369, -0.3288383144421626, 0.8705758199559732, -0.6132730941970369, 0.9515774898818475, 0.07290996379370276, -0.1800955361110749, 3.0445887799702946, -0.6132730941970369, -0.3473052263145258, -0.6132730941970369, -0.47607542878227327, -0.36488924730000555, -0.6132730941970369, 2.287391548906498, -0.6132730941970369, -0.19895260363289896, -0.6132730941970369, -0.6132730941970369, -0.09827301923437769, -0.6132730941970369, 2.920545648434871, -0.5553159003224167, 0.6830885062889183, -0.6132730941970369, -0.007331746758063253, 0.7359918210501912, 0.6440942183550153, 2.404159792410222, 0.21643880185073075, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.21417191700269486, 1.059131525576631, 1.2590350271566628, -0.23776418678726746, -0.6132730941970369, -0.49479088433142165, 0.4653805185544559, 0.5448150902700488, 3.31342996960083, -0.6132730941970369, 0.18951900815005804, 3.0065232798776784, 1.3231928722383988, 2.546087724514098, -0.6132730941970369, 0.44671570103309877, -0.6132730941970369, -0.6132730941970369, 1.4509521643253038, -0.6132730941970369, -0.16779561487598413, -0.26453579829160484, -0.6132730941970369, -0.09559480684815769, -0.6132730941970369, 1.445538888721581, -0.6132730941970369, 0.0618592470673377, -0.48999025843117966, 0.44002950504132654, 2.537192419593073, -0.21070079427828353, 0.08186821671357568, -0.6132730941970369, -0.6132730941970369, 0.11531563800012344, -0.6132730941970369, 1.0234583017365448, -0.6132730941970369, -0.6132730941970369, 0.13347544185008442, -0.6132730941970369, 1.7160862760815525, -0.6132730941970369, -0.6132730941970369, -0.2931140425923323, -0.41316125870902104, -0.3935989801727955, 0.2397278794445814, -0.5203051232249783, 0.24127252325848897, -0.6132730941970369, -0.4463764304734595, 0.3209681378443586, -0.6132730941970369, -0.6132730941970369, 0.26568171360659654, -0.6132730941970369, -0.6132730941970369, 1.1690840608397917, 1.4064451959317896, -0.4273324847660321, -0.6132730941970369, 0.42850518556884104, 0.3804326776872137, -0.6132730941970369, 2.3724531755351714, -0.5088970388933046, -0.37853914450622894, 0.4817871134106491, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.3684995273831571, -0.6132730941970369, 0.11899933639053849, -0.6132730941970369, -0.16922983688297272, -0.6132730941970369, 4.345320998358398, -0.6132730941970369, 1.3698241779074163, 0.016491989356336674, -0.3587263354575825, 0.31147278753691415, 2.7908450181980173, 0.12239188451777853, 0.2753105288093778, -0.5601684888075401, 0.7192942441285464, 1.3476185459636243, 2.3363676990694064, -0.6132730941970369, -0.3597885461447695, -0.4361856351320625, 1.3876450633401052, -0.0903371982395644, -0.405243582043867, -0.39866501157182316, -0.5168863993266773, -0.48996060306966843, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.31161085161043633, 0.15222604021154515, -0.6132730941970369, -0.6132730941970369, -0.4160475527066389, 1.5933439857566363, 1.017081589560049, 0.8484273752389031, -0.44217816267835874, -0.12817748157748288, -0.6132730941970369, 4.713609429700729, -0.11263037709958393, -0.35933384461807216, -0.5479128456237383, 2.048081843162343, 0.48982772158857024, -0.33116837856091247, -0.0018693153690065795, -0.6132730941970369, 0.9334107899251325, 0.3204552188798555, 0.08591383456025194, -0.6132730941970369, -0.36736431888301896, -0.6132730941970369, -0.5266807053230048, -0.6132730941970369, -0.6132730941970369, 1.0579945089509422, -0.6132730941970369, -0.20336543916419644, 0.8608824168265216, 0.10548162157199473, 0.3109143710876114, 4.53459322629051, 0.4716801961725843, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.05631242246941394, -0.6132730941970369, -0.02208794348032109, -0.3550682661956198, -0.6132730941970369, 0.7067412273657186, -0.5441518708907244, -0.12097411962863477, -0.6132730941970369, 0.5501086931919419, 1.2849739758199503, 0.5993780960896034, -0.1566765678235561, 0.369124828687695, -0.6132730941970369, -0.6132730941970369, -0.06638462266728301, 0.03311076564349276, 1.5176000085382078, -0.5819019871072243, -0.6132730941970369, -0.6132730941970369, -0.24550128216917336, -0.6132730941970369, -0.6132730941970369, -0.530324551364789, 3.892774252725305, 1.2760337621061615, 1.0174887962539496, -0.6132730941970369, -0.6132730941970369, 2.1116124789249713, -0.36259032078522535, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 1.4603562673665484, -0.6132730941970369, -0.6132730941970369, 0.0716949454727235, -0.31566328146500433, 0.5154405348617412, 0.04938423199980057, 2.241055430246076, 0.4577787382428701, 0.14494551755603421, 2.515680603267763, 0.20153522187133419, -0.4606766116242884, -0.6132730941970369, 0.17103248021793613, 0.11698710289920256, -0.6132730941970369, -0.30876812082377375, 3.024779461024449, 0.8502289410788108, -0.6132730941970369, -0.6132730941970369, 2.69489998953062, -0.27012952903028087, -0.11745264794465089, -0.6132730941970369, 0.4022368216597787, -0.6132730941970369, -0.6132730941970369, -0.39986882371932864, -0.6132730941970369, 1.7671645614201867, -0.6132730941970369, -0.26726930568014473, 0.6467996787727964, -0.2788659922241113, 0.8236010545310822, -0.4592120719772423, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.12733723404862196, -0.4799945619392287, 2.3254281189902946, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.1669491177719987, -0.6132730941970369, 0.6163671596698758, -0.6132730941970369, -0.39351687865794005, 1.5054103829617407, 0.793027417536304, -0.6132730941970369, 5.0, -0.030806598739943687, -0.39024259455657895, -0.6132730941970369, 1.1118115578570353, -0.6132730941970369, -0.6132730941970369, -0.033174276075100616, -0.6132730941970369, -0.21007724325970537, -0.6132730941970369, 0.4511909379206292, -0.6132730941970369, -0.49539379959152824, -0.6132730941970369, -0.4398944895948262, 0.6143862109555192, -0.6132730941970369, 0.6684063586153971, -0.06214553538662783, -0.39045721485456397, -0.24292377817121327, -0.6132730941970369, -0.6132730941970369, 0.8693044133474518, 0.157587426816892, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.17819368237722533, -0.6132730941970369, -0.09657712361563953, -0.6132730941970369, -0.6132730941970369, -0.47326045062035005, 1.6196171433008804, 1.5363404309372675, -0.6056951473717778, -0.5473404319699505, -0.6132730941970369, -0.6132730941970369, -0.21982409121649218, -0.6132730941970369, -0.6132730941970369, 0.16176915867308644, -0.6132730941970369, -0.41540192573656437, -0.0005199070651987465, -0.6132730941970369, -0.6132730941970369, 2.187618003606856, 0.1318626779572716, -0.5392306787582337, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 2.179077427689315, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.12218787646667102, -0.6132730941970369, 0.684161355482255, 1.0359279765262883, -0.6132730941970369, 1.6962254886316515, -0.6132730941970369, -0.6132730941970369, 0.6583638611062724, -0.548066757055106, -0.6132730941970369, 0.2060171866678925, -0.09769391446481389, 0.7074399207182501, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 1.0208818489743772, -0.6132730941970369, 1.8665938059753304, 0.12984977167503303, -0.5791985818554035, -0.3098060269395971, -0.49883361127968817, 0.4643559421083928, 0.5816664550797528, 2.0663477797772236, -0.23762597030617852, 1.3583517474333067, -0.6132730941970369, 5.0, -0.6132730941970369, -0.6132730941970369, 0.2922487966764907, -0.008352664903592334, 0.6901712284190121, 0.8348309438847485, 0.3729831163173815, 0.6233765475915671, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.7804401725362973, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.4949432609585423, -0.27301292161713003, 3.3624451416361, -0.5655655438430917, -0.2249566448160333, -0.6132730941970369, -0.09614649538843272, 0.861977552218516, 0.605168386895469, 0.3087461342056959, -0.6132730941970369, 1.344145094730322, -0.23166336093034018, -0.08040129603909654, -0.5993779975578707, -0.42515615336856616, -0.6132730941970369, 0.9470810600808838, 0.008013099954689296, 0.22355903207365502, 3.730510879189627, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 1.4556418533130862, -0.6132730941970369, 0.4533926461499573, 0.4348492673865525, -0.5908200723077301, -0.6132730941970369, -0.21579188713844008, 0.4201706518652714, -0.40304790790794714, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.48764552429542135, -0.6132730941970369, -0.6132730941970369, 0.693917496363387, -0.6132730941970369, 0.3751856655353384, -0.6132730941970369, 5.0, -0.5352265163947613, -0.6132730941970369, -0.17189202843581994, -0.6132730941970369, 0.3907851636047928, -0.6132730941970369, 0.3565545716579842, -0.3380678913182955, -0.16094551020052378, 0.2705512059631515, -0.6132730941970369, 0.30237329057689005, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.33816223445225074, -0.6132730941970369, -0.3920679603746685, -0.540473407654521, 0.7641838623480103, 1.2480848506208286, -0.6132730941970369, 2.019762223889581, -0.15027159842914356, -0.4775140449548465, 2.6271637378347354, -0.2867456562032584, 1.0075385551973741, 0.41975007345217474, -0.3654999101678529, -0.6132730941970369, 1.759986050685306, -0.1322014860164079, -0.6132730941970369, -0.6132730941970369, 0.33693834370124165, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.5443801940471745, -0.6132730941970369, 2.0268122315620323, -0.3901290610917364, -0.6132730941970369, -0.6132730941970369, -0.47989864718615194, 0.8682435902914988, 0.22246768113049237, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.4598308924347854, 5.0, 0.9835641559701742, -0.08264820740720687, -0.10096430899376918, -0.3144790433278262, -0.6132730941970369, -0.1824702357012797, -0.6132730941970369, -0.6132730941970369, -0.37762110029467755, -0.279788199329373, -0.6132730941970369, 1.1859480694110132, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.3876056747120171, -0.6132730941970369, -0.6132730941970369, -0.10040315933142396, 5.0, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.4082211022829592, -0.11590594370860367, 0.3297421722051663, 0.8647455821902523, -0.516104216828055, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 1.222933740104676, -0.17325110810885547, 1.3815751438152744, 1.3477699239167487, -0.6132730941970369, 0.27884839977161713, -0.6132730941970369, -0.6132730941970369, 0.3580613709836099, 2.6753813162547733, -0.6132730941970369, 0.6541811200637238, -0.6132730941970369, 0.7137436350817948, -0.36277641054399073, 0.49320967325909065, -0.15914507969526673, 0.28476391378426125, -0.6132730941970369, -0.6132730941970369, -0.039830238525679115, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.36487680066830425, -0.11855186213148917, -0.38471237948406695, -0.6132730941970369, -0.2656871537734082, -0.11137999520677624, -0.6132730941970369, -0.37453265365549154, -0.6132730941970369, -0.6132730941970369, -0.4440871437908329, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.3190936951052404, -0.554086706086869, -0.4190606047152829, -0.43776052299952084, -0.6132730941970369, -0.2648622070030286, -0.41657933084113524, -0.5412715479123684, -0.2485999888696259, -0.24795284812002086, 2.5934394210422647, 3.130654210625907, 0.31193583587574947, 0.45923810580985014, -0.6132730941970369, 0.5558355734552205, 0.2585407109645488, 0.3166070231137123, -0.24151209465946613, 0.12519506781418818, 1.0846220591032263, -0.3866891653047133, -0.5926415130742055, -0.6132730941970369, -0.47013198343480606, -0.6132730941970369, 1.8942613226655811, 0.02353072778116272, -0.6132730941970369, -0.6132730941970369, 2.3230124632538898, -0.43333611336222394, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.5203374487253851, 1.6558539977197693, 0.3539926679990816, -0.6132730941970369, 0.1787700801930185, 3.3906831850119037, 0.5715620608075728, -0.6132730941970369, 2.0980944277109828, -0.6132730941970369, -0.6132730941970369, 0.11245837913490299, -0.4841873633082453, 0.8144100580082808, -0.5229824841102112, -0.6132730941970369, 0.5663917468186137, 1.7364308001905482, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.41133564059434263, 1.82104098412346, 0.33202831569279373, 0.07817606638744327, -0.04242649657005452, -0.6132730941970369, -0.2154304302259238, 1.3669836547159027, 0.05367192842318198, -0.4644571498552717, -0.0612498404478774, -0.28306172654096884, -0.21128166512396532, -0.6132730941970369, 1.0907473156798069, 0.5595706562508351, 0.2647736140855761, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.936454495969284, -0.31791309424388203, -0.31036969956782823, 0.1685517319616805, 0.6558538464457454, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.37958283241887414, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.48748760242115313, -0.6132730941970369, -0.6132730941970369, -0.4745545954589094, -0.48381545711202095, -0.5253144141724799, -0.6132730941970369, -0.6132730941970369, -0.038984540360891745, -0.6132730941970369, -0.6132730941970369, -0.47822161073740815, -0.6132730941970369, 1.2362746791135262, -0.6132730941970369, -0.4193447747728427, -0.14636314582777074, -0.6132730941970369, -0.4021612325722387, -0.43019691305930974, -0.5758091453860888, -0.3923450030536022, -0.6132730941970369, 1.3164661405947378, -0.010458836824727674, -0.6132730941970369, -0.2521043464350217, -0.6132730941970369, -0.09056523230617373, 0.11887411318375991, 1.9874733064881864, -0.6132730941970369, -0.6132730941970369, -0.4716009698092243, -0.6132730941970369, -0.6132730941970369, -0.56616825411222, -0.4653757932712204, -0.2813025255032245, -0.369158315825267, 0.608218652650922, 0.8601704358536639, -0.04166224815393396, -0.6132730941970369, -0.45965107855366105, -0.6132730941970369, -0.6132730941970369, -0.35222721738621277, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.8225158428049071, -0.6132730941970369, -0.6132730941970369, -0.5190049022435775, 0.26049029080306274, -0.08751412556209172, -0.6132730941970369, 1.9846452299283672, 2.9747110348308925, -0.6132730941970369, -0.17147893482151644, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.4196880242815513, -0.25245049735449915, -0.5110210713104368, -0.3666399964020354, -0.3444365300039582, 0.4840062301045879, 1.8849544379097667, -0.6132730941970369, -0.544264347863603, 5.0, -0.6132730941970369, 0.4339498300484054, 3.1426467084678613, -0.6132730941970369, 3.642441204434649, -0.6132730941970369, 0.3710414417719745, -0.6132730941970369, 1.0832305593185527, 0.7079720142234807, -0.3783282455829247, -0.4012417376553022, -0.6132730941970369, 1.4928184284254145, -0.39585518446524953, 2.840578394522005, -0.1817283155332445, 1.8105758898285262, 0.9234773686411263, -0.6132730941970369, 0.1402659204317867, -0.06533099006410707, -0.6132730941970369, 1.3576944307213106, -0.4941491153966798, 0.44718791614798403, 0.24172177938381595, -0.6132730941970369, 0.6553583359458522, -0.6132730941970369, -0.40993190442513505, -0.49709091464377675, -0.13991183795992923, 0.7144205468288485, 2.076954496557185, 5.0, -0.6132730941970369, 0.40434492785476, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.549924926685885, -0.6132730941970369, -0.4177386126407624, -0.6132730941970369, -0.29869745019559474, -0.6132730941970369, 1.3350287779977286, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.9432293321625002, 0.9986454368467658, -0.11784866948979618, -0.6132730941970369, 1.5032192711891408, -0.6132730941970369, 1.6763419944887783, -0.5477374364205556, -0.6132730941970369, -0.22673449477661473, 0.4462400378648373, -0.6132730941970369, -0.21136744596406906, -0.6132730941970369, -0.3516350562681932, 0.09339695137636049, -0.6132730941970369, 0.5785131682173115, -0.6132730941970369, 0.7647446335654727, -0.6132730941970369, -0.2871997059637673, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.43281137850749113, -0.4734938775265387, 0.45464613970068996, 0.0009779357315347907, 0.5114182544495043, -0.5744240108341073, 0.4340254349261052, -0.6132730941970369, -0.18992391791539118, -0.300869534600485, -0.6132730941970369, -0.6132730941970369, 0.24600905531288345, -0.20878649391273263, 5.0, 2.282143779864857, 0.008541787455976273, 0.5038823235475279, -0.6132730941970369, -0.26876983964048934, -0.2753455507511972, -0.3646977752140194, -0.06272342072267979, -0.26158657731986057, -0.6132730941970369, -0.26453600853876114, 0.8258254694533768, 0.0722288471035062, 1.1195012214803024, 1.2681198909145481, -0.5730049423909671, -0.6132730941970369, -0.49527966692228725, 0.9561205104528386, -0.1903801121969049, 2.8173267409221214, -0.6132730941970369, 3.2888414804771333, -0.6132730941970369, -0.6132730941970369, 1.427119387583145, -0.6132730941970369, -0.6132730941970369, -0.3281011668845951, -0.6132730941970369, -0.36439855146001116, -0.04332870917067502, 1.2691613712320429, 0.03385701690296332, -0.09064079513444073, 1.7608204796024685, -0.6132730941970369, 2.756793725026798, 0.23735713250093082, -0.6132730941970369, 0.4928858085382687, -0.6132730941970369, -0.6132730941970369, -0.1369908321566716, -0.6042190717260301, -0.6132730941970369, 0.11244416642708219, -0.6132730941970369, 0.3749574212215731, -0.43056577067175517, 1.6541977547148607, -0.3457526561827943, 0.6172454040945837, -0.56177974943318, -0.6132730941970369, 2.54260434961499, -0.03768491858388922, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.3602071692593046, 0.4100213488003302, -0.6132730941970369, -0.05881501017073676, 0.49326871066081, -0.27710021045034855, -0.27026522254548363, -0.5630946456661474, -0.18064428119114992, -0.6132730941970369, -0.6132730941970369, 0.6525843349548509, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.3667813297756069, -0.6132730941970369, 0.6647967513231499, 3.0243643490374508, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 3.54175400908904, 0.7413142698820397, -0.2712920065866969, -0.521272302197148, -0.6132730941970369, 3.750906871802678, -0.6132730941970369, -0.46589525092231054, -0.1452093094295126, -0.42864844274714314, 0.7872697570892286, -0.6132730941970369, 2.9801512220707265, 2.075034183122931, -0.4276572535496301, -0.23471593940452146, 0.5979726358937075, -0.35413863736571055, -0.6118678734857935, 0.5137119668347871, 0.3715886730725176, 0.48854403654607664, -0.33126397794325335, -0.3483667011366619, 0.9733313427344336, 0.6912313786840598, -0.6132730941970369, -0.6132730941970369, -0.579980112587839, -0.6132730941970369, 1.693692599080428, 2.772180452973249, 2.4642427111915888, 0.10663579436570425, 0.9898796441745316, -0.08941459166470299, -0.6132730941970369, -0.6132730941970369, 0.22486433052389995, -0.5355458292646327, -0.6132730941970369, 0.261241125450559, 0.05633777827656311, -0.1414075782850905, -0.6132730941970369, 1.5389495140582268, 0.4251221406131022, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 1.035956401941941, -0.6099205912544928, 0.4554883057132369, -0.28579504470706946, 0.7336654783061217, -0.6132730941970369, -0.3297601010531105, -0.6132730941970369, 1.2462763886741708, 2.7423657241168007, 1.5126147961463856, 2.2742653983933687, -0.6132730941970369, 0.4132832913935696, -0.6132730941970369, -0.6132730941970369, -0.49334404749500527, -0.41610389894474703, -0.6132730941970369, 0.7964148356329052, 5.0, -0.6132730941970369, -0.5959821051867877, -0.558406160343333, 0.11314908309546347, -0.03575363024804404, -0.6132730941970369, -0.1630782573623187, -0.23307311016824153, -0.25253875911105633, -0.6132730941970369, -0.09475100090778484, 0.2230542706988493, 1.0130545996114995, 1.7878700378485144, -0.6132730941970369, -0.034254862363818875, 4.584125438134569, -0.2952185325362107, 3.5206643690552144, -0.10946725067018856, -0.4021233460345257, -0.6132730941970369, -0.054684242225428184, -0.45701120473654216, -0.5245653929067138, 1.2876419281448954, -0.18663354990651038, -0.6132730941970369, 1.1905886446628928, -0.6132730941970369, -0.6132730941970369, -0.045096677514872494, 3.1435129267551902, -0.6132730941970369, -0.4247294357384821, 2.308602291302823, -0.3208530853654267, 0.22403435884646516, 3.247324226657826, -0.6132730941970369, -0.5266363431728531, 0.1485876711082036, -0.6132730941970369, 0.16548414184048052, 0.34243227011443494, -0.30895826835267004, 0.4239799939567802, -0.6132730941970369, -0.06119946522903186, -0.17933141384324816, -0.49813310980160574, -0.5329217607775499, -0.6132730941970369, 0.41755492493414686, -0.6132730941970369, 1.9643605842097183, -0.454488953691472, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.21334347489494881, -0.24341764874328098, -0.46511027213649775, 0.0754448717176305, 0.06005881656208214, 0.7785154859611819, -0.6132730941970369, -0.08551702986606836, 0.058446977756760936, 0.29035917932718475, 0.35592963300816916, -0.08854126702347061, 2.1871800167291497, -0.22439482236278546, -0.4251945655241711, 0.5460988594114063, 1.041507767878455, 4.948682234734669, -0.6132730941970369, -0.6132730941970369, -0.49571436343198444, 0.594899327049834, -0.6132730941970369, -0.6132730941970369, 1.9847814700861859, -0.6132730941970369, -0.20531476670612286, 0.2902158748648938, -0.41832267924323313, -0.4631575596153419, 1.6461343557451094, -0.3224842458844877, -0.4048113769629827, 0.005897845356366502, 0.06266352654217333, -0.5590591985256961, -0.4728853802044104, -0.6132730941970369, 0.36607599261291024, -0.6132730941970369, 0.06914532024779728, 0.9557143129452852, -0.6132730941970369, -0.005899122629467725, -0.41217305502114043, -0.13792857652684404, 0.2286156444000451, -0.36347548234140464, -0.6132730941970369, -0.6132730941970369, 0.42857069858299757, 0.07126372855347628, -0.35656638231365645, -0.6132730941970369, -0.6132730941970369, -0.20234649734194457, -0.3732711707127895, -0.6132730941970369, -0.6132730941970369, -0.09326795951091232, -0.6132730941970369, -0.38848764051140744, 0.7306254726119354, -0.5829685788195474, -0.5424301306401986, -0.20131229157608654, -0.6132730941970369, -0.6132730941970369, -0.20197196305625545, 3.5679370126522985, -0.09034829928946017, -0.6132730941970369, 1.019728853564744, 0.5500352748846756, -0.6132730941970369, -0.296864893924731, -0.21135071029036365, 0.03171926585883025, -0.6132730941970369, -0.15907002146017613, 0.14061787417280167, -0.04550031000710447, 0.20006778081352064, 0.1917816880549508, -0.6132730941970369, -0.20179859325049732, -0.17146089561543526, 0.6219791608865046, 2.0862031848999028, -0.6132730941970369, -0.6132730941970369, -0.4716408852320041, -0.29783167342730216, -0.6132730941970369, -0.3835302227937453, -0.6132730941970369, -0.6132730941970369, -0.040784760618991195, -0.5707059633143977, -0.3366415746044137, -0.44892154589686684, -0.6132730941970369, 0.1388581895665936, -0.6132730941970369, -0.5389419042879334, -0.6132730941970369, 0.16079840549924548, -0.5938178721991698, 0.19109073179780148, -0.6132730941970369, -0.2397674637497095, -0.26448470823242526, 0.48484713463419354, 0.11523591227814467, 0.3851586132848903, 2.904648272193214, -0.6132730941970369, -0.06264832043815659, 1.1888271098817071, -0.4880451358323961, 0.03659350980113576, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.35527181170298205, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.3209940771089906, -0.441411811790666, -0.3003723421233347, 0.5660635089569221, 0.05755851532021612, 0.08378676407169924, 0.4108842031331384, -0.6132730941970369, 0.33142642013139806, -0.28152770020849627, -0.28368958762626817, 0.7464793697415012, 0.17463056596597376, -0.6132730941970369, 0.28571170796854534, -0.1577316301074016, -0.22558797497942465, -0.6132730941970369, -0.23483998522722088, 2.0089915143270654, -0.6132730941970369, -0.22919283068592128, 0.6878295796819056, -0.48623394067269593, -0.489920162028997, -0.6132730941970369, -0.6132730941970369, -0.5256852586205608, 0.31546454006193875, -0.601849257097116, -0.6132730941970369, -0.6132730941970369, -0.3962655238417937, -0.6132730941970369, 0.02063133538565492, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.5631188188330369, -0.15519689038119897, 0.8025408490992567, -0.6132730941970369, 0.7647015749476952, -0.08768047311280183, -0.39931728235206293, 0.20884593601860602, 0.929847689304039, -0.6132730941970369, 0.06745291473186821, 2.6871194991354783, -0.6132730941970369, 0.0928740246471797, -0.27091545392829947, 0.5727058053422892, 0.37271114059493404, -0.486364104687667, -0.6132730941970369, -0.4536304514748163, -0.4790707990050036, -0.6132730941970369, 0.04777537870410925, -0.6132730941970369, 0.4253132973283525, 0.12877608149306902, 0.09545880319677666, -0.6132730941970369, -0.6132730941970369, -0.0072500447128075836, -0.6132730941970369, 0.20540755401111493, 0.3060885260408744, -0.6132730941970369, -0.24365047644507212, 0.3468948921725377, -0.2500083925257217, -0.6132730941970369, -0.6132730941970369, 3.321051344947459, 0.3705969792818281, 0.5865912003891992, -0.6132730941970369, 2.54419751847276, -0.059862797902945394, -0.6132730941970369, 1.3447391690974861, -0.6132730941970369, 0.2710733758025684, 0.8250076921110614, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.4696889926747604, 0.00020948237227267445, 0.98196022245796, -0.6132730941970369, 1.956293821285453, 1.1877826020051567, -0.02011536260281782, -0.362030642852981, -0.6132730941970369, -0.5177532483554705, 0.17957911125360473, -0.6132730941970369, 0.6893281373189734, -0.4793076108904224, -0.2055006251930136, -0.6132730941970369, -0.45059332616668174, 1.2745045083841413, 0.357880474329626, -0.4192297065037526, -0.489567546009438, -0.6132730941970369, -0.5219979387228638, -0.6132730941970369, -0.6132730941970369, -0.5014111993765114, 0.16939028172312628, -0.6132730941970369, -0.6132730941970369, 0.5137749568830592, -0.40753184902778233, -0.6132730941970369, 0.5605186186328444, 0.04009391471997738, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.592366353399751, 0.6738705140311418, 0.03402260756390977, -0.3754178993105333, 0.7846564690251164, 0.4136676231967786, -0.6132730941970369, 0.27348449020038545, 0.05070403750388633, 0.10728688776186483, -0.05520212302283809, 0.4051133391645908, 0.6866373942021893, -0.48190835771160184, -0.5510907629406355, -0.6132730941970369, 1.4916361666115179, 2.1191983645514885, -0.6132730941970369, -0.6132730941970369, 2.4307942386692556, 0.27459585667290626, 0.8103751627666204, 3.145306587301987, -0.4532096838392777, -0.6132730941970369, 0.07442534120333971, 0.4798221434802337, 5.0, 0.2569381230341401, 0.18803752258214876, -0.6132730941970369, -0.6132730941970369, 0.3462131026914385, 0.9224009031966872, -0.6132730941970369, 2.5556672577832584, -0.6132730941970369, -0.30915991640106033, 4.385868424091362, -0.6132730941970369, -0.6132730941970369, 0.5665882017622238, 3.0316200625284146, 0.4271600242576059, 0.11242457139203936, 5.0, 1.0421126069000493, 2.206590202471914, 4.141787621660176, -0.14233375906162204, 1.6066353064364032, -0.6132730941970369, -0.5581908409735503, -0.022195253629313613, 2.4104958007370927, -0.6132730941970369, -0.4789565191627527, 0.7344153037672638, 1.1888831197243734, -0.40113615153299786, -0.24943685665381482, 1.6215236645216209, 4.561251220231141, 3.8276797145091708, -0.045703829255195144, -0.2305731453218255, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 1.3768090930600203, -0.6132730941970369, -0.4056143739301597, 0.5265041607635513, -0.23461413773104633, 0.3540305124873633, -0.6132730941970369, -0.6132730941970369, -0.23295070427336784, -0.6132730941970369, 0.7962580753525587, -0.6132730941970369, 1.3251528803359172, 1.9501863936678023, -0.3626028935652219, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.4618089239482152, 0.49353866801054735, -0.6132730941970369, 0.6844441799580088, -0.1200401176578574, -0.4397869481739618, -0.6132730941970369, 0.8638083844626875, -0.6132730941970369, -0.3508325849189083, -0.6132730941970369, -0.4461778099841317, -0.43554705144175004, -0.3801781051948187, -0.6132730941970369, 2.01597693407285, 0.5831010134821942, -0.6132730941970369, 1.2639088926540831, -0.6132730941970369, 0.10107711182811942, -0.5193589374314469, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.15833363602693137, -0.6132730941970369, 0.5238619426906311, -0.6132730941970369, 0.2354975384456623, 0.3566463235173502, 5.0, -0.6132730941970369, -0.2976300674283431, 3.7522934938532964, -0.6132730941970369, -0.3889887646103963, -0.6132730941970369, -0.6132730941970369, 3.2635183036876065, 1.0483542563028097, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 2.4901239680349736, 0.24837610190657036, 5.0, -0.6132730941970369, 0.02496944907731315, -0.24052889485392376, -0.6132730941970369, -0.6132730941970369, 0.9521100038814003, -0.13185785806281666, -0.6132730941970369, -0.6132730941970369, 3.952010127760079, -0.6132730941970369, -0.3252735108190967, -0.385933957516349, 3.5103925339471127, -0.14519396138704252, -0.6132730941970369, 0.06058191148898926, 0.6191208087360675, 0.5826140810663106, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 1.5011364787518733, 5.0, -0.17277523469343778, 0.7320850083766424, 2.2203314520679016, 0.6160123465675249, -0.6132730941970369, -0.6132730941970369, 0.5922698920040668, -0.20864941276629165, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 2.3820801405629703, 1.2563990323995926, -0.4211378466275989, 0.48657696414408896, -0.4767607924650434, 1.3919182947590842, -0.6132730941970369, -0.6132730941970369, -0.030169802150467693, -0.6132730941970369, 0.12825138868776734, 0.17851223307953082, 0.9381998837688168, -0.1483815605855253, -0.40862971763281514, -0.6132730941970369, 2.3110172742483246, -0.554307602262494, 0.6781038825891252, -0.1332192925040119, -0.14707500065233736, 1.744595117795716, 0.12198442552728608, 1.0062587387025612, -0.6132730941970369, -0.6132730941970369, 0.5708585738198582, -0.6132730941970369, 0.4329576316645395, -0.37464498871153934, -0.6132730941970369, -0.04971235950335644, -0.6132730941970369, -0.4868189008255847, 0.804779056235065, -0.17996833658101788, 0.3284555437024727, -0.24417100635666186, -0.3100175776290884, 0.335194049186935, 0.13014218342115091, -0.6132730941970369, -0.3262741401139643, -0.24099177499503258, -0.6132730941970369, 0.37343767067106803, 0.26705841199139807, -0.44915400566613245, 0.001902812975691961, -0.531281790902606, 0.28923738459567233, 0.2712206329114121, -0.5068361752345278, -0.4467519739455028, -0.5086618984727849, -0.6132730941970369, -0.047715558153353134, -0.6132730941970369, -0.3233587268850851, -0.49530479145756273, -0.6132730941970369, 0.07310503110607616, -0.6026816728977527, -0.6132730941970369, 0.14233811641233193, -0.6132730941970369, -0.579432129653708, -0.31105331819919396, 5.0, -0.6132730941970369, -0.4900282816295444, 0.11269688350993652, 0.8305553576976032, 0.05295414462878421, 1.5723096827745744, 0.422238558803811, 3.13539974125862, 1.1990219104314481, 0.5995347722710874, -0.6132730941970369, -0.10865506590224602, 0.7656155613891211, 0.07042593568179573, -0.23861980861787008, -0.6132730941970369, 1.606483928483279, -0.6132730941970369, -0.3655830629184924, -0.5780436968494492, 0.0053446009871296685, -0.15817226609928758, -0.6132730941970369, -0.20017565339528043, 0.9724509958381463, 0.04074328408944842, -0.6132730941970369, 0.142613456089293, -0.6132730941970369, -0.6132730941970369, 0.9474642145000207, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.1894748720372205, 0.46500989486588956, -0.6132730941970369, 1.2423832841152598, 0.15683591937849298, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.22042567664170962, -0.13204380064857124, -0.2269408313366088, -0.6132730941970369, 0.38335595415976864, 0.11718507162234472, 0.11820947987068131, -0.3375661785272664, -0.03858237959875911, -0.20752509506889305, -0.585297959635036, -0.6132730941970369, -0.6132730941970369, 0.28511502653664694, -0.42632994222203563, -0.6132730941970369, 0.08235990071520849, -0.5072901829456065, -0.6132730941970369, 0.006487378384923454, -0.45059495558215035, -0.5644160122553754, -0.6132730941970369, -0.6132730941970369, -0.05010854924622663, -0.6132730941970369, -0.15959437787002634, -0.3929697524809751, 2.884699349135049, -0.15954063869666682, 0.06200070135464688, 0.19049312527841147, -0.6132730941970369, -0.6132730941970369, -0.365585838180966, -0.5555620997434008, -0.12896847343198936, -0.6132730941970369, 0.9974019510607164, -0.6132730941970369, -0.6132730941970369, -0.5258232543421345, 2.0524008243627097, -0.3671851462557233, -0.6132730941970369, 4.3948481642706785, -0.21835374874790997, 0.1344736953520766, 1.626791785488067, -0.6132730941970369, 0.10545252336545036, 1.2030024778077197, 0.4061887954226757, 0.09605136378439445, 1.2557383517330682, -0.1979331992669006, 0.38418643043038125, -0.1726068267205865, 0.9319636166932647, 0.3073789389923957, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.6481212083035705, 4.227322220293499, -0.6132730941970369, 3.3707164329948087, -0.13637737300163505, -0.6132730941970369, 2.614971757490102, -0.6132730941970369, 3.388140035399416, -0.2062125220670114, 0.1707474691717488, -0.575251929973671, 0.33519959971188357, -0.45065574854763035, -0.6132730941970369, -0.6132730941970369, 0.5719444583369361, 0.9758062040702962, -0.5496218028471115, 0.4054568830193195, 2.90870183738243, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.2297022858068883, -0.6132730941970369, -0.4098214826182175, -0.5112214789006009, -0.051665387395246655, 1.9351241191342112, -0.13729648947368744, -0.6132730941970369, -0.6132730941970369, 1.3910253330333802, 0.6221322208168858, -0.25655708687673906, -0.6132730941970369, 0.15834019573823266, -0.2951293877415931, -0.6132730941970369, 0.5844684609920819, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.5511997235298114, -0.6132730941970369, -0.6132730941970369, -0.5550363136528825, -0.22226489251289536, 4.083772189323033, -0.6132730941970369, -0.047234302410711755, -0.22735964367358588, 2.642505725186159, 0.23353879183109694, -3.9324113460141156e-05, -0.6132730941970369, 0.7144279475287789, 0.25944864228784287, -0.3790507809630732, 0.35321635139614227, -0.5142614635700713, -0.5008981752884301, -0.3864241277384514, 5.0, -0.6132730941970369, 0.26501607110716374, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6103303557364678, -0.6132730941970369, -0.12224392835875897, -0.570699813585052, -0.6132730941970369, -0.6132730941970369, -0.2721912126529706, 0.4226937018495379, 0.8715466572286767, -0.6132730941970369, 1.7342213548658372, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.10362757804167473, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.3813200888879732, 0.35384566318682537, -0.2616433230275668, -0.4358641251793988, -0.6132730941970369, -0.6132730941970369, 1.444666615316127, 3.154010483211166, -0.6132730941970369, 0.31627096405777644, -0.6132730941970369, 1.3141064947009857, -0.6132730941970369, -0.6132730941970369, -0.12790512741015436, 0.5501696648675057, -0.26676040243634414, -0.4735530726136243, -0.6132730941970369, 0.6991606399675703, 0.017129584885009323, -0.5664239619608847, 0.45302799348065353, 2.421317978803678, 0.22521157472859393, -0.594720875854719, -0.6132730941970369, -0.33566714210532306, -0.16645549949651992, 0.17293673076937677, 1.001702935104431, 0.481291602910757, -0.6132730941970369, -0.07951754313887115, 1.8843612045312423, -0.33995786608776696, -0.6132730941970369, 3.7206817404955372, -0.46930018260710366, -0.06538287906248323, -0.48576578332794346, -0.5652786826219212, -0.6075978834866643, 2.140693865697409, -0.6132730941970369, -0.0935660058808414, -0.6132730941970369, -0.6132730941970369, -0.26062391866156986, 5.0, -0.6132730941970369, -0.15166688266263526, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.46723943981882166, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.03577177981225933, -0.4799226468991368, -0.6132730941970369, 0.42831621542402376, -0.6132730941970369, -0.29398061829982136, 5.0, 0.04045137693650685, 0.05990912058621483, 0.8665128356941184, 0.41390209082639545, -0.5087272117521432, -0.19504150191734484, -0.4438073153370685, -0.6132730941970369, -0.019894308741825076, -0.6132730941970369, -0.431634288773656, -0.4846208719215049, -0.6132730941970369, 0.08775105831800382, -0.6132730941970369, 0.17339044413443416, -0.19844216558485084, 0.038905051145343775, -0.30816260901127673, 0.5019169331227973, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.055529183500449, -0.520670585345837, -0.5285206465252619, -0.10241190271995067, 1.4092164216603174, -0.07193788082821446, -0.6132730941970369, -0.4664508921091383, 0.3411177207892764, -0.6132730941970369, -0.6132730941970369, -0.5220391051162274, -0.6132730941970369, -0.6132730941970369, 0.381772540770089, -0.6132730941970369, -0.6132730941970369, 5.0, 1.8734241474180187, -0.6087806186851794, -0.26521453918892474, -0.11420832406317748, -0.6132730941970369, -0.037016374673687694, -0.6132730941970369, -0.20803931756577038, -0.6109650779420788, 5.0, -0.6132730941970369, 0.03513170336713341, -0.08614978971012771, 0.16659433092892226, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.23120964756528134, -0.6132730941970369, -0.46008699449686913, 0.251711462807073, -0.5870956989766807, -0.5197118477970255, 0.7067735213290518, 0.19169035668989856, 0.13501091888794198, -0.199150193911157, -0.090615733673313, 1.0022036597338175, -0.6132730941970369, 0.014949069569117329, -0.6132730941970369, -0.2617307648202119, 2.674571276007833, 1.9411196952642786, 0.430588482599282, -0.23102694278574684, -0.6132730941970369, 0.21300142902959382, 0.3943660931848097, -0.6132730941970369, -0.2513627626624379, 0.04039200313933787, -0.6132730941970369, -0.3146889330647762, -0.37591040327607983, 0.020847259216014245, -0.6132730941970369, 0.09636152039057347, -0.2844179258279527, -0.6132730941970369, -0.2760331640785483, -0.6132730941970369, -0.595779112870636, 0.002014832661003903, -0.02433771420976758, -0.6132730941970369, -0.07972720160394783, -0.5031433310927776, 0.6809725788996928, 0.6660423395807729, -0.6132730941970369, 0.17139654419519962, -0.6132730941970369, 0.059127085260602015, 0.04353528223709999, -0.6132730941970369, -0.18151138251653243, -0.6132730941970369, 0.4850958990704938, -0.6132730941970369, 0.7042762896956779, -0.6132730941970369, -0.6132730941970369, -0.26096151252175187, -0.6132730941970369, -0.33663982955300986, -0.19815538846254255, -0.6132730941970369, -0.6132730941970369, 1.5832569999490755, -0.37989361976652464, 1.1406313971660167, -0.6132730941970369, 0.05522826197902422, -0.6132730941970369, -0.33915184156152756, -0.23262238231281393, 0.6952841869835104, 0.27200611629040117, -0.38001156842166633, -0.43938811982926884, -0.6132730941970369, -0.6132730941970369, -0.2707233511008417, -0.6132730941970369, -0.6132730941970369, -0.2654548096400777, -0.5795774840257809, 0.6393380912655766, 0.48229237937863273, 0.678856567411603, -0.027958044107027957, -0.5216992510991055, -0.11737809430273666, -0.3320967459078773, -0.6132730941970369, -0.6132730941970369, -0.6018635460195316, -0.32153575788458655, -0.042335880045337636, -0.5779739972887755, -0.6132730941970369, -0.42372531634080696, -0.07831270078029728, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, -0.6132730941970369, 0.3601968934078783, 0.9411943078793298, 0.8405086263132481, 0.21724379616590034, 0.8676064573065714, -0.3894305779863615, 1.452026779594757, -0.6132730941970369, -0.6132730941970369, 3.064954496992721, -0.6132730941970369, 0.1492512111360655, 0.9612626513227436], [0.587673075207687, 0.8894447885791408, 0.8585916060289716, -0.6016280750031381, -0.7220726384934915, -0.5151788665872992, 0.1830386358044013, -0.6701792872924395, 0.26744739926599875, -0.17188230129904922, -0.39723859174855736, -0.694251294212369, -0.738282771351741, -0.20768138607251402, 1.055074408037527, -0.3120672814811197, 0.8296046564509951, -0.17412424113746008, 0.4334731362251903, 0.5747548615834006, -1.2268540556048955, -0.4479599808052852, -0.08748150966779532, -0.6762596290793108, -1.2268540556048955, -0.6506264835044665, 1.345669065487725, -1.2268540556048955, -0.047702144982578173, -0.40256288102241083, -0.7971806812393035, -0.11498095693750979, -1.2268540556048955, -0.04896430563832008, -0.797373310898349, 0.08941003821592712, 1.2532824240884395, 0.6461024682559535, 0.2670192569984784, -0.5029305616024631, -0.3199664719555229, -0.08768224860253417, -0.27672149147435676, -0.029010127064881753, -0.37892551066282154, 0.792425826524242, -1.2268540556048955, -1.0743074467463138, 2.8304147697945705, -0.36427335521641746, -0.5008240741571967, -0.7120626310452712, 0.3779404039435307, 2.062798704526308, 0.35761773438478933, -0.3259597764740457, 0.9750361318384054, -1.0012818900513971, -0.22138413775875965, -0.5539056747766349, 0.7076581932518935, -0.3112815064110044, -0.47431519553018414, 0.13294021779985346, 1.3231673373385369, -1.0341241301753057, -0.4504466420906683, -0.6497870016635532, -0.027216740128574047, -0.47217077316811423, -0.12137725122436946, 0.36242378596371955, -0.2910516124640032, -0.10517512455779868, -0.49450523032547056, -0.1232386048866134, -0.8671458625742265, -0.7325673469710547, -0.506083008166776, -0.11255772668148704, -1.058118600736757, -0.18935675957731482, 0.254266939912522, -0.8024328804266977, -0.5527009662774987, -0.7238274032862426, -0.7720798271464931, 0.4560518337707931, -0.7909293230747859, -0.19844066025232396, -0.5850058466220629, 0.5348921362929658, -0.8065518426973345, 0.5226979847763181, 0.3212998621349985, -0.003946829914157247, -0.3006703817213732, -0.6429857246507708, -0.6410301522006032, -0.7224702678931489, 3.049935336820156, 0.8692778446027742, -0.46769747678329776, -0.6712596421105045, -1.100461639055437, -0.5491162540851446, -0.34965796640133345, -0.02091294656275425, -1.0454579596997362, -0.5849725161245127, -0.7423600189584335, 0.38816496358423813, 0.14866437825926618, -0.5869276762386274, -0.5532204409805779, 1.0470504859073344, -0.057559175755435586, -1.0103832462859488, -0.3839729850003063, 0.13197067829581444, -0.3706159770938166, -0.5540049790425372, -0.30886191845677685, -0.406343040503502, -0.5541211203639023, -0.09028800628432458, -1.0315306566717375, -0.9109995541524317, 1.6016258452101004, -0.4262862921715571, 0.007249743246900774, -1.2268540556048955, 1.4181459231618807, -0.8466831018417547, 1.2988161445499438, -0.8907115208220739, 0.9866805019521385, -0.8648588750221141, 0.2996053505306348, -0.4082049439471465, -0.053397880316774324, -0.33009846215251265, -0.5001136878619534, 0.09053159227787308, 0.6899381888545482, -0.8770024810110312, 0.8097587848139336, -0.9312607512780593, -0.016753163022951517, 0.9186534375078423, 0.0371883644333225, -0.3397465072695875, -0.5589793324534341, 0.2815880518396647, -0.37345223062877836, -0.5793121729681283, 1.4630182565956673, -0.8424840089316445, 0.3087796902464247, 1.221448431515459, 1.2402817432537045, -0.5804969518914095, -0.7798715353566253, 0.07142119071255858, -0.7536753105411836, 0.9670654010589483, -1.2268540556048955, -1.2268540556048955, -0.5805702789860223, -0.287907343898059, -0.6917139843152427, -0.07050652779407644, -0.740215974571079, -0.8624368817742496, 1.1338319684585798, 1.1132580487986838, -0.8319836308333621, -0.6778540638704386, -0.821395115903928, -0.4137703123661767, -0.5834226823496962, -0.3301501416043866, 0.26848098830347833, 0.6911954014776636, -0.4263428509333799, -0.7588262812277662, -0.5240141286228385, -0.2613174412367929, -0.9299973879754989, -0.37531722659281747, 0.044031493555401605, -0.2605076132302996, 0.060360138667318, -1.2268540556048955, 0.5785982459258272, -1.2268540556048955, -0.7061922713929758, -0.07921980708084611, 0.8217267012832798, 0.134728244367482, -0.627563394181558, -0.1838049295253321, -0.7840490493466736, -0.37513765424208956, -0.4931359310188377, -0.36463682944641906, -0.8720175099467912, 0.2835011536764578, -0.42306759694819196, -0.7199823695996098, -0.42656420667072936, -0.1319647353136753, 1.093648995500937, 0.8128963872803674, -0.615234889834574, -0.5328678770580515, -0.19468221713664896, -0.8073227736695734, -0.6872736404532658, -0.19224757891651523, -0.5897524530868031, -0.8607237285614301, -0.2525553688505162, -0.23418909641404562, -0.220486276005125, -1.2268540556048955, 0.4122529485261917, -0.23366989660166895, 0.07072351811225984, -1.1453428463046857, -0.7751002574514313, -1.0192113611632514, -0.16396221913133524, -0.21815705836900065, 3.1744484544987714, -0.2377860412426161, -0.35224125176827936, 0.07069451714325557, -0.03875129140707438, -0.400446153898514, -1.0319062432732724, 0.6039754682576136, -0.9010878544913207, -0.6408013744143156, -0.01677323004415688, -0.8849296759756455, -0.7224187602479626, -0.7227364995375096, 1.8358698330964593, 0.9302525881011858, -0.4645263376512858, 2.5811447063851625, -0.8807184878746692, 1.139400979179387, -0.9318559583693907, 1.161675372718487, -0.1427262939396776, -1.016153253651545, -0.9372304495575947, 0.3360955792502386, -0.7738016394164094, 1.189356591464523, 0.5249963459312039, -0.9036694217913829, 0.7670909373604774, -0.5768755417904105, -0.7476350340740476, 1.6763392136312907, -1.0943363096872039, -0.12259900294699612, 0.1946494692525591, -0.5047105476170757, 0.20490344219831838, -1.2014710648635438, 1.98770433759291, -0.8814929924260257, 5.0, -0.2419265824333167, -0.09246136089272132, 1.7489117332695308, -1.1709502423521052, 2.85411914476264, -1.1303943672724455, -0.057506121850055596, -0.9157360927452295, 0.02570549260669384, -0.5066720302173251, -0.2680906106753516, -0.2387322837597074, 0.5574390839625496, -0.7702205695258482, -0.9117662930414703, 0.616336615875397, -0.7994233426658053, 0.4113364629275309, 0.18263812005237923, -0.527464625430206, -1.2268540556048955, -1.0822692951199802, 0.9777902617763076, -0.806749454750346, 0.42269178546868336, 0.6030523852821219, -0.37939742927454756, -0.5904775460345726, -1.0031109096948816, -0.8063304182373124, 0.3342720917821231, -0.7137915561120877, -0.5381756041671424, -0.614479902523022, 0.01811328632314476, -0.688168581493196, -1.048418738722458, 0.09852280241458826, 0.04597084745418213, -0.7906560817175373, 0.9486727391151399, -0.9896225383944353, 1.22857084959023, -0.7591815774593993, -1.0683821433150633, -1.0780225430345036, -0.37586274718985907, -0.4675043660655245, -0.18765016937999227, -0.3605496857744763, -0.5923288661862115, -0.3331185488440732, -0.9900315929388713, 1.3017423560669514, -0.7550303842540181, -0.16996308314414904, -0.8421838626469907, -0.6295764187883314, -0.7447346279216348, 0.026826221996536708, -0.5590167175888323, -0.7491760026237424, 0.6810245829690944, -0.5706195792066442, -0.32117392936167355, -0.5044456217035458, 1.4557292547558245, 0.2712521614648685, -0.7806884761600189, -0.397910355900244, -0.6712463786341594, -0.40246055295879346, -0.6575875407374695, -0.5089747896234321, -0.8159080569734743, -0.6065041549882635, 0.055823067639765835, 0.5896265859775928, -0.6921971047230547, -0.5571681463442056, 0.060849306670561855, 0.48223118716943214, 0.22561590677172627, 0.3921231147945209, -0.14728803640768592, -0.5280189425296965, -0.11288230387723434, -0.0546522065875229, -0.03566633050996986, -0.691986091748348, -0.9434570503783113, -0.4142031964982981, -0.5805605203661224, 0.39263990931326065, -1.2268540556048955, 0.7939733237280943, 0.01631673814376978, -0.08722689215557058, -0.4556974668245563, 1.425204566593891, -1.2268540556048955, 1.0063236416968793, 0.4137139926044365, -0.17398102308199978, 5.0, -0.13924370364291322, -0.40096212374514845, 1.4152298826008212, -0.33911501460566373, -0.48746692880535675, -0.5422464605650231, -0.5039540484066651, 1.0349036155913374, -0.49246416686715105, 0.44028534014335624, -0.7413823701786989, 0.39842127310096154, 2.015463625298183, 0.18550151904410914, 2.2633399928511913, -1.0683323537367617, -0.5892581996055828, -0.7748402452091904, 0.6557098982718856, 0.4099254489569514, 1.6564264061084164, -0.6644593959378527, -0.41313668929931874, 2.0416961700475498, 0.10990410212702766, 0.8709387342209792, 0.6980445781951747, 0.10587406699831305, 3.6929912780998455, -0.15227544712690277, -0.27922553959660795, -0.2936243145389436, 0.11112791552991576, -1.2268540556048955, 0.0680085600993169, 0.52890185557216, -0.6346758474683902, -0.7806759342717647, 0.4861101698576982, 0.7262105666932476, 0.5995981087276069, -1.2268540556048955, 1.9073323440822034, -0.9707420485395516, -0.18146169246343472, 0.971066297773311, 0.010780301971068672, 0.6939429340387313, -0.5208894460193739, 0.11011975388232044, 0.8092079038482131, 2.6023874351216754, 1.2173223220865956, 0.7899530472192817, -1.2268540556048955, -1.036062762485996, 0.34967916581740427, -0.4473983103795316, -0.383783035525598, 0.4861240518381211, 5.0, 0.4703238840997559, -0.08785597952585521, 0.14072663436398394, 0.9332592051483738, -0.3687491943402209, 2.693437008149072, 0.9819809705200238, -0.810977960965513, -1.026195612299191, 3.5284911845337423, -0.7484893600128394, -0.2947805048292732, 0.4346021123360746, -0.5481684309465198, -0.5118337216412636, -1.1795683407334945, 0.0812174706403952, -1.2268540556048955, -0.32363035266989637, -1.0013049808703194, 2.3750816885400994, 0.7096831756041787, -0.30735592974884113, -0.2387663702066881, 2.2554720711940903, 0.5630384701058857, -0.575828964167286, 0.3445051730345741, 0.19139792459036914, 0.6229798994575182, 0.7202507988403019, 3.342317333611241, 1.5627975336292395, -0.7020446174053746, 2.132922497795989, 1.269866305216654, 0.5605278933294768, -0.08081870884587224, -1.168180585384739, -0.7048972269370716, -0.39331191552359057, 1.1396065974240772, 0.5934947104831506, 4.106816688106368, 0.7983223695158519, 0.574629373978186, 0.36860140469757147, 0.6948062282866573, 1.8560561568672667, -0.12769025362868858, 2.191191079783891, 4.5841770361593, 2.4344874933599474, 1.955663902103129, 0.38070731629905036, -0.491175479258719, -0.3267196430955492, -0.2508740685977257, -1.0534897162149168, 0.6155801166649864, 1.6043456138103083, 0.39412844246165374, 0.11518571461947653, 0.11184015733739071, -0.27186623445986696, 1.9633710126999058, -0.119828654457709, 2.176759592848076, 5.0, 0.9496095666257066, -0.46181749595645005, -0.5617091345642558, -0.09472116862672587, -0.022175794445249288, 0.792715561323578, 0.745279322317293, -0.5309527822636745, -0.7490895151367971, 0.8991383968299826, 0.18067141452880317, -1.2268540556048955, -0.4813994725201153, 0.07072159387734836, 0.1260019764950701, -1.2268540556048955, -0.38357721111288273, 0.08351074631730232, -0.6575879530735222, -0.08711590503485706, -0.5397650909256438, 1.0373387348702172, -0.396742482755103, 0.24973014377567007, 0.292869978563527, 0.5680409310910064, -0.08713267336764467, 1.3696026993008212, 1.4928282289338115, 0.64722443465395, 2.510258091418954, -0.29895320823204546, 1.1740102682742808, 3.114267457900815, -0.4411611090861395, 0.5134271584243203, 1.7856725918847367, 0.09512570312597841, -1.1249865971286943, 0.041210427731693824, -0.3775346324361226, -0.6719556653665945, -0.21281813116529613, -0.9619021477234239, -0.23799124715125336, 0.9229497042809176, 1.1270567373397549, -0.6225610019191125, 0.8529200610765036, -0.7409806174185185, -0.9456810707791212, -0.6650616127420693, 1.4550975559238641, 2.652151448587901, -0.10249226003424998, 1.0302723944985435, 0.8559696985184714, 0.20905525390778013, 0.7479717392927162, 5.0, 1.0299261696600668, 0.15640571274835766, -0.7774398522115338, -0.22567325737359972, 1.3356721153478426, -0.8863043356509576, -0.6798459562545361, -0.17609891849137724, -0.763037812942118, -0.538263156855556, 0.6508391099327641, 0.0840528307805762, -0.31992778108929354, -0.3925221545383047, -0.9784186978104568, -0.7509274343667409, 4.130313795485527, -0.09283878582582122, -1.2268540556048955, -0.768390450319558, -0.24391067479376083, -0.0437532026107922, -0.8493157644509504, 0.1891814808645196, 0.7709170035887106, -0.01794646355797682, -0.609709861625984, 1.4913548147740003, -0.4387729961172306, -0.5160633961419138, -0.04720541748504604, -0.8374208314628381, -0.483243370622816, -1.0282675666000882, -1.1030286371483211, -0.31502792305849014, -0.7145689470158091, 0.3743176193890259, -0.014598982040981817, -0.33825646222233846, -0.9800829720204223, -0.5983973533115838, 0.02428856848603273, 0.8544282489100485, -1.2268540556048955, 0.3271500860434158, -1.0273206024949053, -0.958595298488237, -0.58996700527929, -0.30817263002287204, 1.6085481428541881, -0.6426597042788423, -0.48142943560657525, 1.2751920376666996, -1.2268540556048955, -0.8630726008827067, 0.8289128940007779, -0.6985619927472728, -0.8966307766578913, 3.8307461557583466, -1.111420010833349, 0.3070992833884147, -0.44957922448221893, -0.1983750300973519, -0.42091066705920743, -0.7468409779215512, -0.49298480985571125, 0.3873490879823127, 0.9193223840298369, 0.2698113218531817, 0.2299920292935772, -1.2268540556048955, -0.8521407818284887, -0.7040586384909391, -0.5436034585127666, -0.6703562825428405, 1.6542932542651074, -0.6765215999178009, 0.08436936742330253, 0.3724183995326556, 0.011320324754081111, -1.2268540556048955, -0.9802830752704156, -0.5026695528814288, -0.7006781357284292, 3.103432091121476, -1.2268540556048955, -0.10634237919886154, 0.8328564760038848, -0.26485363522034017, -0.982692973327416, 1.946763216080659, 1.260992558482915, 2.16931582754333, -1.2145684943396786, -0.143290507104418, 0.17855874204275224, 0.21997020154519792, 0.3043422670981477, 0.7339788404710816, -0.4795590105511844, 1.1784200649070482, -0.44033403168813057, -0.6062975059034427, 0.39501070416798134, 0.19474650567017227, 0.720569259717942, -0.7539334672711885, -0.5731546212554838, 0.12701797252765645, -1.2268540556048955, -0.4944688760302032, -1.0912641054367134, -1.103167869288609, 3.4443740801064036, -0.9233359616070841, -0.32713424699602184, -0.0961700487914337, 0.27668221493610695, -0.2734825917844361, -0.34892125932142776, 0.6693998675405138, -0.7971528141944427, -0.1700926253872117, -1.0260441303420194, -0.008321577982501927, -0.8138043871578974, -0.7820869826036837, -0.8873492295685355, -0.5607773238089904, -0.8136880740298422, 0.5226780552004627, -0.26475701113877714, -0.4850365513910985, -0.18090950576688075, 0.17383103431373864, -1.013600068816409, -0.6192001882030973, -1.0887678831091203, -0.24455577454740493, 1.9858691672699806, -0.9919303832785208, 3.273328289157198, -0.5133043181713852, 1.72836337844491, -0.5243413860029228, 0.5148726711779329, -0.26773167214192334, -0.8862630333230639, 0.9849192772279023, 0.7744191111252772, -0.6950991258583386, -1.0199596823752934, -0.48610353964880343, 0.0013732672764956517, -0.40229733660480305, -0.2012527234055576, 0.5107678657784219, -1.095550373060525, -0.6863634773407394, 0.473635629825564, -0.8643052795107165, 0.2963263167983014, -1.0112990790191914, 1.4731512776327766, 0.2095123971443047, 0.36290085877609957, -0.1311178657851592, 0.4572555801524738, -0.2935795760772823, -0.44975061883457834, -0.39009961150903505, -0.12834256926324583, 0.15746472917572157, -0.872750712170254, -0.38391085970177696, 0.35965494937329123, 0.11032317300139886, -0.7283589077770931, -0.35851611308776987, -0.38486163791544165, -0.08020419068276358, -0.34993100159055446, 0.28985264077898093, 0.11743624479230907, -0.7405375623304464, 0.4433584807402988, -0.5818017893285512, -0.267595738690051, -1.0559770303657159, 0.924151526427689, 0.10953148778120173, -0.5596648411401913, -0.7508246596057333, -0.3917522544061966, 0.2592959278503329, -0.6156409034006276, -0.5380035225880279, -0.5560511279788332, -1.0034118291096334, -0.013977316719635266, 0.06041099344708633, 1.6166398255422865, -1.2268540556048955, -0.4735101093882895, -1.213759853946919, -0.7054584163040972, -1.2268540556048955, -0.7640864866068414, 0.14578214925448466, 2.2941096086281285, -0.2156697785795394, -0.169460582941885, 2.47758568220654, -0.9220263479440016, -0.1881576863375579, -0.31839993857059135, -1.2268540556048955, 1.4971253203789927, -1.1466661014188262, -0.335839417007098, -0.6433644553147039, 0.7448595642161662, -0.1319232955404292, -0.8698972436051143, -0.5404806314215362, -0.18843821229839447, -1.2231909732547264, -0.4281653762840421, 0.8627390194872102, -0.29057756344934066, -1.214373283285139, 2.2865022833559867, 1.4605104287262662, -1.0167218650675096, -0.05438652472456515, 0.13929431636404097, -0.16988652608379368, -1.2268540556048955, 0.101276107680385, 0.6474968513390956, -0.5576099644241239, -1.2077035328826697, -0.5968592023915786, 0.10991399819228012, 0.2610806557295465, -0.5231395638561512, -0.9764987237061286, -0.33214674149174755, 0.1731310251424783, -1.2268540556048955, -1.2268540556048955, -0.7620579306754364, -0.8833348632098025, 1.767104824564088, 0.03949387274644421, -0.24618443323086345, -0.46470281748162373, -0.3957022276181134, 1.176894971295363, -0.07824545698952877, -0.6998111991787078, -1.1747831636672068, -0.02131359976012884, 0.35552911483511646, -0.4339978697422138, 1.0441333457834692, 0.41600232024871736, 1.1990159758230383, -0.03260652211204945, -0.8961372791261015, -0.8689473931475653, -0.9882528267517494, -0.0810949740008356, -0.9487542113760642, -0.5204424050161269, -0.5156563517357293, -0.9005141919587178, 0.36465672313165653, -0.6719596856431025, -0.9185248245501757, -0.8042772595881262, -0.6556183955589191, -0.3999469523846675, -0.8054052392202196, -0.9566068594185771, 0.7682993568840838, -0.62466261005443, -1.0056917038648452, -0.28944879350648156, 0.265288545142103, 0.13200490218814537, 0.4889455299978792, -0.598722549011409, 0.5194464401141302, -0.6077271437190461, 0.14422997890870654, -0.9900194805673396, 0.8176712387646817, -1.184743566229314, 0.22968209002768328, 0.1761571594294707, 0.11052068197039545, 0.31653944241251253, -0.02953695509422424, 0.9794697065168623, -0.41326258924058623, 0.8246529128002951, -0.5698280314317972, -0.14520305915980825, -0.5585920801777547, -0.6908870787239215, -0.8814364680255381, -0.1645707584216868, 1.4955543200201584, -0.3706123347920238, 0.5735777795997602, -0.3405928957393734, 0.14324683231494487, -0.3193190356309146, -0.869062572351475, -0.1652222493841407, -0.7558643339195646, -1.2263711534452681, -0.0790248408508366, 0.04057721700088863, -0.09754271550915929, 0.003574866904468793, 0.750279859067502, -0.7704206899565091, -1.1581446608975738, -0.8653094552431414, 0.03226727109583314, -0.7866908177103539, -0.6081049122655234, 1.2049923745634168, -0.8224413155523369, -0.7299557135005201, -0.7756823728731054, 1.843628073363673, -0.4735385605758909, -0.7583845318705256, 0.04726929368251641, -0.6129238149847458, 1.0783661720627145, -0.2631203806249754, -0.5201745240275573, -0.32316874245947336, 0.0821057799421528, -0.09361707012432323, -0.14983950317593775, -1.0220087176639565, 0.31141932820716806, -0.18937792616132806, -0.7004618654690584, -1.120139775822605, 0.0071099613252102265, -0.7382288240515803, -0.40284203252974127, 0.09114212452581111, -0.9142476283195142, -0.8421509101241533, -0.21283833563185378, 0.6221501418751674, -0.37841510735288925, 0.3026001472776636, -0.38654499984849144, -0.7131936688364192, 0.4100161628884323, -0.7501508337737852, -0.14226976920723075, -0.639089148957614, -0.6151659609911844, -0.49946831321760904, 0.04886146062535734, 0.23258864685954328, -0.3566053478219387, -0.36820999622931183, 0.37123733163384487, 0.4290632021470616, 0.4092780813550183, -0.7959016835280989, 0.11104421131132276, -0.5387929399599383, 0.583406634075719, -1.2268540556048955, -0.4154716796401724, -0.7944835223992791, -0.3671658238998266, -0.5322100636094654, -0.4191774811865178, -0.520721762691485, -0.1693365385128515, -1.1331378194246615, 0.2549595270348443, -0.9698092241248254, -0.7000301839837578, -1.2268540556048955, -1.2268540556048955, -0.6805013644094855, -0.21690761140820308, -1.0046693166234497, 0.6563792571299353, 2.527843949153974, -1.2268540556048955, -0.5623021425299731, 0.346445901386863, -0.38991289200007156, -0.1294422007917502, -0.5075008256822178, -0.5798683455798528, -0.7267093574003214, -0.8638325362268849, -0.5712231704643694, 0.5341800319308408, 1.0020213273283696, 0.9563566214476256, -0.6322387352319445, -0.7732163971130054, 0.28704779350666043, -1.1193169850014713, -0.7530432680958569, -0.3278627760775589, -0.48293432475170284, -0.6597567376240081, -1.0241042438425036, -1.0338407178621032, -0.6543331440842548, -0.06687343483826598, -0.2792194232785009, 0.25111861670873237, 0.581608024216082, -0.46127871018159367, -0.17144206384066452, -0.5105603591894381, -1.1369893817654557, -0.3876311617326255, -0.8288441384933565, -0.7238743752348554, 0.9897080106926389, 0.9391130026359095, -0.4632127724343724, -1.087066730593486, -0.6669144104312296, -0.4068875989830876, -0.5077900794228261, -1.2268540556048955, -0.1805325618925089, -0.40319354901422894, -0.13810593102958255, 0.11363024558528093, -0.2440565730335584, -0.6490090609784289, -0.9112987726809675, -0.8043812026346148, 0.2636573437196551, -0.576261710854055, 1.3213632296648667, -0.6288724237018979, -0.3410388371798123, -1.2268540556048955, -0.3936859730456001, 1.2407479578833762, 0.1700251725520607, -1.2268540556048955, -0.6857024339264107, 0.4233647179058509, -0.5175772192348382, -0.15613422534861074, -1.0923162066448693, -0.8701186337037989, -1.2064685498974514, -0.5956940781534523, 0.16566306945598536, -0.3248964305181339, 0.6776413656609079, -0.519220928184203, -1.2268540556048955, 0.12556435049835002, -0.6169723365131344, -0.7911287906400314, 0.18652438734423293, -0.4623699575437042, -0.07151647623123072, -0.21910818019604306, -0.9729849333147484, -0.15794699207937068, 0.03538947968298565, -0.2058165275538274, 0.21618962972805378, -0.16394819970556207, 1.2775385046943395, -0.6458034917860586, -0.6105777602931587, -0.13952422960375224, -0.40316365465044635, -1.112726265675671, 1.0720232065719397, -0.008512489574663284, -0.00988556862844169, -0.6825195775782477, -0.22372778715671, -0.2769135713520015, 1.9000482902749982, -0.9550072188847882, -0.4247481412515519, -0.5118915861339197, -0.8247550018638272, -0.5795391639648569, -0.37093546881158745, -0.5496420512743563, 0.8132673522819823, -0.3780155537183228, -1.0220417560901378, -0.5720170548101783, 0.10767116495908864, -0.6672091619858669, -0.07061373516764481, -1.167420521185544, 0.18100361994151387, -0.6735161511560914, -0.3245921952342969, 1.2665434264174376, -0.11705864958179962, 1.6182600313366873, -0.573501533320723, -0.07625497342027743, -0.022284238826973696, -0.4096804197872193, -0.334966570307297, 1.0520280692839874, -1.1773314863730606, 0.2637319765451013, 2.1498936999225515, -0.3139131725414069, -0.5643872572232034, 0.6882181977355306, -0.796596607221383, 1.096586752427417, 1.1383396261810659, -0.8256104273654248, -0.7132211922679024, 0.8402361917752088, -0.7877411407192836, -1.1991611432661125, -0.6914260363054656, 1.1231227765111933, 0.15604670549225438, -1.0628823535089997, -0.21337560950785164, -0.40566935211690397, -0.584871287623699, -0.18122776047649325, 4.0561103493155235, 0.034708850306177264, -1.1406511234865593, -0.6999481634707087, -0.9019414588420219, 0.07319698464397302, -0.18453132820393262, -0.9009700294644093, 0.8996551913487224, -0.1034992533963645, 0.1694491390871561, -0.049853851948236036, 1.8416122998498918, -0.21954546257938776, -0.9345980618391015, -0.25004094360428475, -0.44094373926396296, -1.2268540556048955, -0.7437283217862733, 0.5063150487508654, 0.03487763319687207, -0.6821625976410683, 0.42004307611479036, -0.19947067571068577, -0.2392979401006315, -0.8081747973987387, -1.2268540556048955, 0.16470040221948176, 5.0, 0.6068682805544002, -1.2268540556048955, 0.48598701882344536, 4.308725007889592, 1.759222058809097, -0.05601044154342491, -0.39271423441594694, -0.6946440786634152, -0.305716825218727, -0.20382315763220896, 1.0557757916623094, 0.7174287708991408, 2.4740470142066626, 0.9320422640130239, -0.22429708579942687, -0.33211657223726226, -0.5482278760607097, 0.6468487965104093, -0.0037724117640830753, -0.08050402771537742, 1.6659175573576397, -0.3360506017884922, -0.7081095653129644, 1.9401982763484436, -0.7641841415285349, -0.344447275709858, -0.7925054776342672, 0.16148033254261043, -0.660078840803441, -0.7324986930183656, -0.36669479868287896, -0.38214049486171425, -0.8219086460955877, 0.5412926913856986, -0.0547966616511395, -0.3524068734159069, 1.26051040019257, -0.35951534078756847, -1.1158549943266487, -0.6598017853377097, -0.8875127208132263, 0.9724139494372048, 0.7856475716077068, -1.1256171792171688, -0.34557047911601274, 0.279959049542831, -0.23248023836843656, 0.2405067360696731, -0.10532926951863998, 0.5580849396656243, 0.4727016886673619, 1.1354967065466053, 0.6372234985988814, 0.5922810680362174, -0.8866383278532293, 3.5461639077304237, -0.051102680404955726, 0.8310218554623587, -0.4319638159967797, -0.8608941607963336, -0.2801943918738939, -0.36719551209558404, 0.9105291802716194, -1.0473237459745401, 1.8127416290386442, 0.5523925030198457, -1.0208084245967117, -0.8941575850168809, -0.7317423312533051, 0.8304804582258403, 1.441115240394242, -0.3700738926305427, 0.26309477989912317, 0.07455810595223956, 0.6491933393031399, 1.9750054867483864, 0.2117405237249654, 1.8979011190059092, -0.5980654915122509, -0.30040188222872566, -0.6311890650884303, -0.6039089805984785, 1.89657559604347, -0.5070339238257932, -0.8335025394042651, 0.694646654234462, 0.07572171829150746, 0.8384658956578236, -1.138771094437286, -0.6611260369306433, -0.42999319328070823, -0.15364131029976805, -0.3579925837468449, -0.998925355151817, -0.9690636002777906, 0.9471767839178091, 0.2536992906140139, 1.2984257997538744, 1.833059075674041, 0.26753000392178616, -0.1710470459026716, 0.26245112332166026, 0.18558467348130175, 0.21468597759108213, 0.0834910916321476, 1.1871599398691943, 1.324559108960021, 2.3999268599192054, 0.12087911338271107, -0.6588553366525908, 0.35310636563782394, 0.8647486079602131, 0.6395802740278241, 0.1582366222654138, -1.0584838961176561, -1.0435324362393716, -0.2094231622796227, -0.6905744592736884, -0.6524129638118991, -1.2268540556048955, -1.1695631567580531, 1.1094783016536567, -0.16073383401074523, 0.0952608119057452, 0.4190547065976997, -0.6727611294832019, 0.43052342155320306, -0.4086172112766573, -0.8659038033010297, -0.8112484190544096, -0.08299343790777511, -0.7967237785321439, -0.4091704975360171, -0.6753905621266529, 1.0253180393861725, 0.9721382340636442, 0.8866795255678299, 2.063272341204925, -1.104217066963731, 0.706275493023561, 0.9146064966009876, -0.39925237230475874, -0.3259559967269007, 2.668254545879272, -0.6968246147913876, -1.0499381627134254, -0.2781898201561917, -0.8263593670815449, 0.36010920625744874, 0.20355785221468595, -0.9304355293922844, -0.8982494705534246, -0.5439337396905682, -0.18570146919736258, -0.5470581474033324, 0.4494097871968283, -0.8925101650430457, -0.05675127198385117, -0.04525987854548092, 0.21479126072974156, 1.4441357394218552, 1.0284890410728478, -0.34018049096451236, -1.2268540556048955, -0.3069379584372759, -0.1898247609965453, -0.33423584210014595, 2.2567659817258328, -0.5317051581135621, -1.0944907209484134, -0.8492181782519317, -1.2268540556048955, 0.8043182854960396, -0.3752994961425717, -0.11278430534216313, -0.7430495822830387, -0.48819483938281577, 1.985187988111758, -0.020218710096223218, 0.025754010815502854, -0.18009617290394447, 0.15591214649389049, -0.22881168451213707, 0.4737270309837978, 1.3279141499713023, -0.18542252385805733, 1.757467706352385, -0.3027287632938858, 1.441329105359987, 0.6082531799083424, 0.41723850373317256, 0.2448967405719443, -0.5543854277733542, 0.07540628121158696, 0.17730551533480696, -0.5096232567881711, 0.8167290508854357, -1.2268540556048955, -0.4665611473461505, -0.8307724280414036, -1.2268540556048955, -0.8376784384114424, 0.5490028257801742, -0.5738722921543127, -0.9515066919697553, -0.1300699824312038, -0.02694446088878106, -0.5737014475833587, -0.5173333911826467, 0.5326549383191556, -0.24731471507258104, 0.298655190821048, 0.583767428121381, -0.7434593412348978, -0.43093318203434217, 0.5858388670022135, -0.9235333331307285, -0.6480140253618285, -0.6392869328173109, -0.552306498120906, 0.15398708691158344, 0.22939084332949103, -0.15055641812533851, 0.3729628205668916, -0.13328675341965762, 0.38830268382566674, 2.4391949966223985, -0.9551829943077031, -0.3297549862210412, -0.3632458824970449, -0.6089805765950165, -1.1736623655546898, -0.5675621761023605, -0.7779785349023773, -0.32608677597811914, -0.7019908419119018, -0.3633638793306464, 0.3392095411163474, -0.18065846183377637, 0.43225935633290463, -0.9226933015084146, 0.08511789480337216, -0.6225062986695236, -0.6858857173016066, -0.5494865318600066, 0.20575766505309784, -0.4516286721069349, -1.0134502533841148, 1.1128025549063747, -0.5922308676511425, 0.0799513240694801, 1.3594760007498286, 3.65591017181747, -0.514356599776564, 0.6990238763191163, 0.49692739385074464, -0.42574778128740104, -0.5685474530990587, 0.6450349302168437, -0.3447095901617236, -0.7892549294508728, -0.3286104787855229, -0.3641299997156066, -0.6103942020272602, -0.23800870271079425, 0.36102665397356337, 0.31871561465059906, -0.05146086298895567, -1.0631117497993656, -0.07036372207466884, -0.02610480724118037, 0.21974740263166495, -0.6021391655398212, 0.6187629386518121, -0.7339075078633331, -0.3358354310919274, -1.2268540556048955, -0.6995819059723547, -0.1883010418383684, -0.8495910331271206, -0.45187978476271673, -0.9146626101947021, -0.2312090063195454, 0.055490862227052844, 0.07980425754420171, -0.5036485761146697, -0.2564148342989773, 1.1360877215547274, 1.3675753803775677, -0.06815923609433092, -0.6033083444157955, -0.028574562748423103, 1.7378372115799356, 0.15980033802065338, 1.3722757364817926, -0.40637025468294496, -0.044337207906037554, -1.081725544131829, -0.1667489923400348, 0.004619726460709434, -0.7656270771818209, -0.7087573452509481, 0.36060882010734824, -0.9216462428265624, -0.7907557639581548, -0.8387091754578926, 0.10640433116142299, -0.6510469631936835, -0.001307466844116359, 0.7412234474626409, 0.746584915703865, -0.3478520719381086, 5.0, 0.2533881143399642, -0.6622455636736655, -0.06699452419225743, 0.13955642464787874, 0.34348271707050276, -0.37648544335133377, 1.2748981795068248, -0.6729973293184278, -0.1567323187923045, 0.2659247796706252, -0.026043506614754106, -0.1624633775816396, 1.995237167484928, -0.9786858915722733, -0.9456813284891539, 1.0472255912841801, -0.05376870787304156, -0.018347254200701626, -1.219258329968712, 1.2872688108538195, -0.6332651771111862, -0.5631678420715386, -1.1422187993859672, -0.015246761978965278, -0.5666350384890189, 0.4083637948819732, 2.3169269113025894, 0.15474660991971134, -0.8147420393405694, 1.8588278798100666, 1.0220842251742326, 0.8527253010145222, -0.765753801795194, 0.4997825461214331, 0.777532798100686, 0.4454112270534298, -0.06166535560845516, -1.1811487174423432, 1.1999437319404624, -1.2011357690780249, -0.35868434619706174, -0.025096645593584797, -0.6387095936215753, 0.6415380456036033, -0.5939115493998527, 1.004275843416373, 1.0016293331880912, 0.6243135316956387, -1.2268540556048955, -0.1804883732122481, -1.0409461098940416, 1.8053473440601375, -0.3902469529250162, -0.954047180290619, -1.2268540556048955, -0.6730674264473004, 0.607991483960555, 1.5108255980489085, 0.5780956082782127, 0.8760301223480225, 1.0710891279683763, -0.6236043495764942, -0.3040077610050907, -0.4676888864488786, 0.5020168577428784, -0.020117275427386484, 0.7540270316644185, 1.1462388853781442, 0.46467515507550794, -1.2268540556048955, -1.2268540556048955, -0.6907197390094102, 0.7695487351222065, 0.2208421548502206, -0.4390171677827997, -0.9090489297348904, -1.2268540556048955, 0.7672946313702562, -0.00517779047528323, -0.9934022683588036, -0.5913286763689595, -1.0038134616051313, -0.39662482953487926, -1.2268540556048955, -0.26492964249929224, -1.1413594051498674, -0.5418172874573719, -0.47127036867549005, -0.18178826261676606, -1.0485452056257971, 1.1849220546686356, 1.3742472525926446, 1.468161461619923, -0.20455711580510005, -0.1429822171827331, 0.006704497540561925, -0.30350855949124417, 0.5782348404185006, -0.345554260564628, -0.050260140404989995, -0.5636885537827738, 1.1353958216591649, 2.200331195607359, 1.9924343818928925, -1.2268540556048955, 0.14337493138182397, -0.7335476759351268, 0.3308843387773628, -0.41359204574628233, -0.03927262162238746, -0.8236832030188461, -0.11413779843346372, -0.9203630186708219, 1.4498809550823137, -0.046702504946729055, -0.8150053159098885, -0.875608132289227, -0.4859428660338022, 0.12489705332056156, -0.6523425230696509, -0.5788039687838099, -0.1963934117532199, -0.3975775319834554, -0.44274798438297874, -0.9040417612465061, -0.31960684619534147, 0.13045520585867906, 0.6488080799850472, -0.6595144558320104, -0.8047801377651056, -0.7901575674304462, -0.7949124206162277, 0.2985471587753765, -0.03700216187370233, -0.8136011742068443, -0.7015603630734196, 0.7514003135666422, 2.1097214477022708, -0.312135935433809, -0.8673641601525213, 1.6324092055220996, 0.31060262793313725, -0.46271824406245193, 0.2933695924134262, 0.46299708478846185, -0.3279739006436251, 0.1297366415650696, 0.7844357159503303, 0.24712555437936046, 0.03420291397014323, -1.1767207737281011, -0.4834918718169335, -0.8056621589420684, 0.40098352932924647, -0.9029946338419813, 0.6713797678177601, -0.048572998724795036, 0.823152147015688, -0.2830731160222301, 1.5340453407103032, -0.6281706277410785, 2.7069173732578444, -0.9781409379373023, 0.13280098565956583, -0.19280251452008365, -0.3833529003004935, 0.27819411379412234, -1.0432215176753545, -0.37577705001367934, -0.73316736464966, -0.00022274813616312273, 0.9147018836743914, -0.3452073484993889, 0.06596667196889176, -0.21940032028901826, -1.1274749936616306, -0.1940248160241132, -0.044620895109941536, -0.4497343315605161, 1.0769781114657029, -0.9780599310837164, -0.30436463785825973, -0.6530883015427057, 1.5396627321945895, -0.14200126971458307, -0.23149557987581634, -0.25267920711152214, -0.6116057827939341, 0.9406445561790793, 0.5073638942222741, -0.6976267458582401, -0.9364409634630092, -0.44554781489999573, -0.721271572628107, 0.3097064842463863, 1.1688799831129768, -0.4505946020107274, -0.9039504631722849, -0.5770890631427665, -1.2268540556048955, 4.930396926612186, -0.46583234337391083, -0.8452771733491515, -0.7592751090205699, -0.12310988731565395, -0.36402471657694985, 0.27326985921356545, 0.17635027014724394, -0.4026586804318678, -1.0490638556567717, 0.8675060365865327, -0.36708796110863795, -0.755484091356773, 1.9966165690248527, 0.2954621978782697, -0.6328326365924449, -0.15094779376153877, -0.3173192057778135, 0.25077995136453696, -0.13042534738551417, -0.177923505522301, -0.6468171512476831, -0.727212201215963, -0.6753998053264899, -1.2268540556048955, -0.15118220680720565, 1.480918864183851, 0.384588910448978, -0.18444150766723233, 0.030613391190515805, -0.14365226326753575, 0.8170154869963542, -0.043712793677678996, -0.4280277934879632, -0.5930819979855295, -0.15300521321659574, 1.0540662463899404, 0.30782540717631474, 0.8717217603840826, 1.2118778368535201, 0.7087462106482596, -0.42837690467881406, 0.2580344544213462, -0.3866126916837249, -0.39936459643363076, 0.8374936072467705, 0.9832711700273138, -0.050243921853602984, -0.41929753970038075, -0.5439219881130818, 0.2498817459975243, -0.7962428228886061, -0.9638557787580125, -0.353250238087978, 0.780464507431727, -1.0828862529380636, 0.13562397571818252, -0.24800400350648585, -0.5481974319155217, -0.17663639853540247, -0.2114478010185323, 0.5586765044551606, -0.04050138305790435, 0.052647392811178084, 0.08022044206620814, -0.7952124638168689, -1.2268540556048955, -0.7756612406504296, -0.1094593648626875, -0.6277696996530036, -0.433565123055445, -0.6721666783412988, -0.966884404241987, -0.6189171882259464, -0.7549175416210682, -0.625659776073967, 0.27207477188898144, -1.2268540556048955, -0.7735150658601406, 0.043198849620686285, -1.1651188140954023, -0.4696127777457023, 0.018586235775001608, -1.041218818650556, 0.056520190458661655, 0.70308909745762, 0.5899190696839434, -0.07571000260463875, -0.8329769827444163, 0.9164521127705719, -0.5950456797113908, -0.3380403294083156, -0.6604835142773239, 0.676616160789822, -0.485235366090926, -1.0537765646618875, -0.3687496066762736, 0.4143579240725995, -0.8985258044310631, 1.2855485448440882, -0.5749552927953795, 0.9468735794741027, -0.28365828960295886, -0.6309142431096479, -0.9192592294204569, -0.8241853596077325, -1.0809159051126926, -0.5474387335794995, -0.5534395975923133, 0.478307672187533, -0.24334955414941012, 0.09462856329239332, -0.08181511891597885, -0.3672311791640985, -0.1569341572898516, 0.08459683947875925, -0.4504159230547801, -0.19348864171092117, -0.794425967158661, -0.50983375434281, -0.7911232584646646, -0.276943946774512, -0.8469066223433781, -0.1442628642381489, -0.3081669260408177, 0.4568108069975158, -0.3847202753722176, -0.4495318058362183, -0.9401305464579697, 0.07926464709724224, -0.82926303756104, -0.0006717820969944609, -0.06650947954953647, -0.9935629076124697, -0.27064613208144933, 0.5190192599640655, 0.7150172922206071, -1.0373369839712636, -0.566253421472721, -0.18214472713387997, -0.2599246387751847, -0.837355441837229, -0.4537635420171276, -0.3650699197465656, -0.5770407511019875, 0.1911004928513923, -0.32254467184449004, 0.008952416251727557, -0.03642104293082151, 0.9572053464883759, -1.0994597397616348, -0.7142927505835208, 0.2851102263974389, -1.2268540556048955, -0.32546366748059163, -0.026305202562541496, -0.6503150667010517, 1.0804822806825218, 2.3202742553742306, -0.40940944627825737, -0.23336325602419278, 0.3133984038123084, 0.3442733027278941, -0.9620869601781482, -0.49205533567140775, -0.42842459821551765, -1.048578381497329, 1.032963024684408, -0.27868895294736323, -0.22362600887449552, -0.42617310592523183, -1.2268540556048955, 0.9104401156843472, -1.0076498877766764, -1.2254745610477675, 0.16818175550808775, 0.39143396380596884, -0.5148834965285815, -0.4813451128839017, 1.207098587117994, 0.2857148484952948, 0.5219123471515551, -0.3589331222818795, 0.027338205928000497, 0.12768801861245924, 0.34766916500834816, -0.7076836565323934, -0.23944981721318603, 0.6216872259339132, -0.7614459208899799, -0.9039221837913735, -0.6047349584336841, 0.5578341019005453, -1.007596868232633, 0.7972479592092067, -0.11124388657387116, -0.2451138713940383, -0.38556673256467855, -1.2268540556048955, 0.01202541940332022, -0.4316085197651466, -0.474788832208794, -1.2268540556048955, -0.04053505716883211, -0.08384931010676319, -0.27668932926228756, 1.7553111887994577, -0.23123580816293812, -0.8122785719581215, 0.08436180792901425, 0.047447972638463676, -1.1827802624781678, 0.49059817289504076, -1.0121936764457469, 0.5010257393187737, -0.21910309471806663, -0.5238316699197457, -0.49443485830589745, -0.29715452964973377, -0.5382216483596347, 0.41440135680342977, -0.6800008228034702, 0.02213191348774838, 1.360556596097263, -0.613180013118504, 1.6716589245482891, -1.2268540556048955, 0.9376828837615758, 0.45585501202854967, 0.1725863292175398, -0.1770445425043905, -0.3592095248821955, -0.5791624949811854, 0.08278503486545492, 0.10157120284839997, -0.26776149778303093, -0.6457144959214616, 0.24448330495695247, -0.5007658660511628, 0.22974407788086268, -0.7344064688478169, -1.1170055493575983, -0.9144929682705643, -0.7082587278798422, 0.9702430001224447, -0.05793522623502923, 0.016459131527124686, -0.6080131674939118, 0.03708280640396288, 1.9091194085323715, -0.5970585668728114, 0.6026766096932288, -0.616028430567005, 0.4822698093129887, -0.06933741764077965, -0.008012875724764052, -0.7243581828694203, 0.8588912368935601, 0.5086230310803013, 0.6378400784422492, -1.0996174926629336, 0.17655671306403714, -0.3043037495678864, 1.1104263996829773, -0.05641645510947869, -0.28995067520466766, 0.27814325901435377, -0.2680760414681731, -0.46232831160243293, 1.1107543442898329, -0.7550933685859883, -0.6748670671470656, -0.40089951738789115, -0.341232085342938, -1.1068300920684402, -0.11986995678560258, 0.6094126688870894, -0.7703655056481926, 0.3356282650577611, -0.8762380786929546, 1.4474410252161785, -0.5920626345418506, 0.7569755093282501, 0.09035263843122562, -0.7531336384139625, 0.13144549961068094, -1.04368560190209, 0.3594064481791738, 0.41712676066302834, 0.10184197018933674, -1.2268540556048955, -0.8476310280643921, 0.5474296262957348, 1.0102963621143408, -0.034636315051610474, -1.2118368603400413, -0.24559554862566682, 1.2280576286506035, 0.30101911340823095, -0.38005146297599085, -0.1479986288709542, -1.1335951172872047, 0.46287874434148524, -0.5606107400439072, -0.5596762491043025, -0.05449167041787181, 1.1678868030086171, 0.4012852218740941, 1.2054140568994636, 0.24801468835322601, -0.8074099483832718, -0.1527679138185641, -0.7511076939442218, -0.39053352648128725, -1.2268540556048955, -0.20570196685399594, 0.9656361068567229, 0.6040953206034491, 0.6376833907424185, -0.7251054388799939, 0.5793976280856651, 0.21352841284724397, 0.30808627845199676, -0.5498489752498774, 0.8980290754042507, -0.593744690744067, -0.41913452951441527, -0.0949053453967023, -0.2499085150088573, -1.2268540556048955, -0.8612125529512962, -0.37960868277861703, -0.5715780543599497, -1.2268540556048955, -0.6791638149788712, 0.25200610133838663, 1.0808874695764812, -0.34930583141276533, 0.09605332179804545, -0.07979357269746155, -0.6042580230666544, 2.156033108848911, -1.2088262487873462, -0.6497955919979747, -0.6049846966359574, -0.45271971330101785, -0.057358230652668984, 0.9886565537595666, 0.3082417291436714, 4.2277037225420315, -0.37336770173808204, 0.20323320629626354, -0.866982886749601, -0.7207011400612444, 0.7186424133460765, 0.04639569103328497, -0.2247775947455743, 0.9364376288839761, 0.7150339231080444, 0.31127556037030485, 1.1323467339986, -0.7554326867955992, -1.1991239750366585, -0.23640842649226199, 0.15323979653967243, -0.5377515165374677, -0.28614598172847283, -0.21225089420284057, -0.6772706083565958, -0.8407436759007171, -0.45370444051631315, -0.6038546896849425, 2.107528369686056, 1.6991743842013634, -0.24432301084594682, -0.6509844255591014, 0.9374591227305916, 0.20920300765981395, 0.032872855311142646, 0.07611783579230853, -0.32476187151977, -0.6077030907826679, -1.2268540556048955, -0.10234196354322908, -0.8066869171157639, -1.0943638073476842, 2.7232252641217953, 0.41999442046063135, -0.9654154398754063, 0.1373138663053923, -0.36200275802237986, -0.15875132227183486, -1.1376904045961787, 1.4728912310292093, 0.33162750578875294, -0.15432963661621724, 0.3270397174267804, -0.00743134444583053, 0.6756939024864337, 0.15688044898977346, 1.9061942965781702, -0.6138523270515935, -0.8722047105144847, 0.04248564569575572, -0.14044951170485764, 0.1251256249388241, -1.1030920681776823, -1.2268540556048955, -0.827964247719328, -1.2268540556048955, -0.34151859017653136, 2.967845276425352, 0.5065669860787508, 0.8675203309030085, 0.08231167307754539, -0.23240560554299036, -0.4353524623963206, 0.34199748261052976, 0.6135778127955711, 1.5877336938305564, 1.2046234712420723, 0.6846736195855897, -0.15953029379708975, 2.937687842240566, 0.06016001823665706, 0.25606596210820914, -0.8970971287329155, 0.3638143205770408, 0.38614437948317415, 0.5448258615715309, 0.001577373622329521, 0.15142551791005396, -0.15699827554596513, 2.077765678548562, -0.15831644518212934, -0.8202580992400252, -0.7065674972004639, 0.452975531930783, 0.72411315064113, -1.018924581438956, 0.16358585787042346, 0.03554273124904889, -1.2268540556048955, 0.4971319125326289, -0.03382841128002606, 0.2992937619205347, 0.00508374196476943, 1.0504676522171565, -0.863573692270127, 0.5542882867424455, 1.0233400633438425, -1.2268540556048955, -0.09310982805745817, 0.9910758668230907, -0.6222426097641497, 0.8498866421859229, 0.7315118338708534, -0.7800051322375336, 0.12410481831896406, 0.4797421893130874, 0.3443390016055414, 2.069242142568468, -0.8651159665506529, -1.2268540556048955, -0.6084683864955251, 2.786837171564636, 2.290118470533664, -0.504591726111371, -1.2268540556048955, -0.7888203959745429, 0.3609689269262573, -0.15178442361142472, 0.2835610798493755, 0.2763152358496624, -0.681136980433932, -1.2268540556048955, -0.24253182303525078, -0.4510292729324077, -0.6712910827344831, 0.9313715307014679, 1.3501264182118615, 1.0279799434937487, -1.2268540556048955, 0.3907901697831557, 1.7740427909781753, -0.7486134388032105, -0.693462495344539, 2.075660290666118, 1.0377424118652934, -0.3495740560147127, -0.41194455704977223, 0.22709605575372513, 0.5798913317854826, -0.7853880763148088, 0.06277216712725495, 0.4363208664469384, 0.6827430621892532, -0.18082724472447118, -0.20532481681159648, 2.795726312177657, 0.2019454808052874, -0.3661010347677311, -1.2268540556048955, 0.1021492979935635, 4.6104631845954565, -0.2800660179163143, -0.7204573120090529, -0.5233127449980693, 0.9411744080061363, -0.8522018762868874, 5.0, -0.8925872718848064, -0.9916056858180935, 1.1178116132683416, -0.7309018872949362, -0.35772401553152, 2.5011253976444308, -0.27964103689186126, -0.6410050684240943, -0.4349061773425041, 0.20843028989801865, -0.11270987868474446, -0.6516994849962681, -1.0657947689489338, -0.9803686693625826, -0.38280346251095426, 2.3009986444973456, -1.0862768751145204, 1.8919186726700874, -0.8274535007960202, -0.39770535615963426, -0.6306228589661032, 0.21379148324853992, -0.3721563271394335, 0.6681961211588336, -0.25488809134308094, -1.2268540556048955, 0.8734772124035871, 2.332151457912103, 0.3667655471478868, -0.3757615874117228, 0.9942406834689709, -0.9298674333963857, 0.27433121221189355, -0.07463992182653928, -0.6754990752310547, 0.3088644940278235, -0.9123160057217099, 0.7796051990989714, -0.6721533805036162, 1.3578261067596928, 0.8611700808086414, -1.2268540556048955, -0.6141063260597401, -0.2839655486845132, -0.7679969099190859, 0.6725887371227715, -0.5302173809145998, 0.5555941550197204, 0.22630766922194545, -0.7618346163418406, -0.6541723330239012, 0.4365565852234383, -0.6892197978969066, -0.6311153256577646, -1.2268540556048955, -0.2382270346504288, 1.0794107567282525, 0.29810032394015684, -0.3932780352446374, 4.765874841789988, -0.12016821319668508, 0.1183777454447992, -0.9224886453811777, -0.7105451656505516, 0.3162696371890316, -0.754550012753221, 1.3995319742033867, -0.8133137072557971, 1.674452913637879, 2.1659223018338216, 1.1929389670859152, 0.37791978714092295, 0.8654249765311481, -0.10881811357886122, -0.43727442945823536, -0.9440155767416674, -1.1340419349417548, 3.100759878612615, -0.12664498173639538, -0.37030926779366763, 1.6787255398106362, 0.9642164338290444, -0.7678225261303471, -1.159471712939528, 2.374531082465075, 0.6592093943467902, -0.013449664018187384, 0.0877637178048978, -0.2536344522990854, -1.020012392667298, -0.306755224843483, 1.0241856271415253, -0.6043806243195043, 1.0287368550401916, 0.935442661990051, -0.32849928549678403, 0.1634077286958791, 0.879113433900918, -1.2268540556048955, 2.7439107894064727, 0.428757798577741, -0.8172910320925073, -0.5587310374273419, 2.4738298505525225, -0.34442823952878365, -0.09928023091039719, 1.5502056152676, -0.14274354333119313, 1.1770656784209623, -0.06768834832273576, -0.11905263800749595, -0.9804811855628225, 0.8152337829148574, -0.3492265254453953, -1.2268540556048955, 0.15830630705823373, -1.2268540556048955, 0.16843712896974267, -0.6116664649162799, -1.058215448167014, -1.0925373733948607, 0.8611948209717726, 0.2556862006041476, -0.5018543645062588, -0.6323403073461337, -0.8088693774786475, -0.20208955942346873, -0.38782372266899573, -0.38438490871643965, 1.8382998668973423, -0.12381986127484443, -0.27903215398813225, -0.6600733086280745, -0.22604312281240893, -0.30638728363958284, 0.17443345728598061, -0.4655908518926812, -1.072543713644426, -0.6224750985749075, -0.3704597704527137, -0.27778442509421836, -0.8685468430342033, 1.9318611162639494, 0.11997444808421596, 0.21503508878193295, -0.8484228850912792, -0.704002457703829, -0.027821362226429985, -0.10967941486920346, -1.033304492006904, -1.1246865023860473, 1.4281896047210219, 0.22793763363623754, -0.28783078683770363, -0.3911475635856679, -0.873077247962248, -0.08387673045423369, 4.402337386926681, -0.33256801149173043, 1.7547253967146466, -0.810383269294247, -0.4156360642796439, -0.08630374045740186, -1.2268540556048955, 1.3175109113746548, -0.2180758968893968, -0.3671911138443607, -0.8905256259852137, -0.31203491310102255, 1.7229601268170642, 0.13490499908852033, 0.5122778404015256, 0.7011006755686275, -0.750324358529081, 0.6060823680389352, -1.2268540556048955, -0.3894835127243952, 0.14776342398523923, 2.0305834385504236, 1.8761872276070866, -0.5597209188432887, -0.6200263034836505, 0.0958140294424276, -1.0219548906284774, -0.14269131409791624, 0.35143076936709045, -1.2123277839928819, -1.0263927776548112, 0.41801135894032015, -0.5357965625913781, 1.527423223712207, 2.500396112613447, -0.23170690210256079, 2.6405771756030223, -0.5572796832463223, 0.15270004864736272, 0.8935779077209035, -0.4857275578918872, -1.0191182762994704, 0.4164813172960065, -0.48311589006001493, -0.03860917291442196, 0.669498965638391, 0.6761311161471013, -0.7728221007631031, -1.2268540556048955, -1.0683751679635138, -0.19199722221016383, 0.12101326004502225, 0.11292061523946803, -0.7266056892445356, 0.6805910803328952, 0.5581995690881311, -0.4804232669165663, 1.8453892980879159, -0.41856846083744076, -0.5900662408225172, 0.2896294295293976, -0.8030935458663135, -1.2268540556048955, 0.4614799630071203, -0.18276254398540584, 0.573137129805323, -0.7829354327537312, 0.6950918397254705, 0.7770323595786811, 0.7743968449784606, -1.2268540556048955, 0.024332001216862992, 1.6074944867955077, 0.06223200689889229, -0.5641902980356098, -0.5692470499342689, -0.9490811423234408, -0.894592015409196, 0.29214715346404413, -0.22630310069331233, 5.0, 1.3324394006987044, -1.2268540556048955, 0.3439060487507471, 0.6712501568520247, 2.1938047405733476, -0.13242400895313425, 0.020246025830401044, -0.42428075833639944, 0.793759871098413, -0.058082017869607455, -0.865256470060434, 0.8224557114235447, 0.2851111885148945, -0.7907165920331977, -0.1080325446767715, 1.4600739022923521, -0.9837710259358565, 0.5948633912857056, 1.0613397169051426, -0.15068135594915036, 1.6568376425977966, -0.5338720527904764, 4.561032888440812, -1.0790672479647232, 0.1876298603001444, -0.05579437745207944, 0.10943637559849748, -0.204389982258614, -0.4468673589896661, 0.18685618042089092, 2.836470062166273, -0.8606424639978112, 1.0419379311962835, 0.2804315866586349, 1.1563336966077677, -0.9280960377161945, -1.2268540556048955, 1.4589322812092054, 0.0030146396548987276, -0.6246876251082638, -0.7486381446050042, -0.2903377900349946, 1.124495305783564, 0.7285038423701572, -0.6055715195608926, 0.3908166967358456, 0.14265609219751174, 0.6082414970535313, -0.4513935031118374, 1.0597347675446867, -0.4201243422076893, 0.23676299960652428, 1.8943561285199153, -1.032031267000429, 0.24849148627490328, -0.0662781590242596, 0.4156319050285054, -0.08141034235808342, -0.6579942415302762, -1.138938717632834, -0.03945033846088143, 0.7614496303851698, 0.7328658080208823, 0.5985775769984468, 1.3438718300816082, -0.5208482811368305, 0.9379076069100172, -0.3780062761571482, -0.37896310196624483, 2.1664737325809567, 1.4175384147116485, 0.9092428292341519, 1.2478467353578107, 2.2574045528253244, -0.9196426675876535, -1.0279049685841972, -1.2268540556048955, -0.8071271545741483, -1.0868456669275077, 1.1664779881636538, -0.41927094402501336, 1.0929466497587077, -0.6289970866350094, -1.2268540556048955, 0.2736119606915309, 1.7945578840279255, -0.4774243468090169, -0.4443321794954764, -0.6504146114963191, -0.9735717906010233, 2.3114807767253165, -0.028551197038798205, -0.9910989935326313, 0.6408901282202699, -0.9438723930475446, -0.21791481093834278, 0.06758605309117595, -0.23946397408431172, 3.1857585575195326, 0.19505314624764847, 0.48399598547278827, 0.3940015804029304, 1.2306031165460987, 0.1870909370799355, 1.9011022212243742, -0.5019783402126149, 0.3421956788062795, 0.9013193796553454, 1.0870348503331775, -0.3001932401863185, -0.6494180296195223, 0.8704998712161036, 0.44908143025393826, -0.5196742229509049, -1.2268540556048955, -0.30317195582731027, -0.4059100876487054, -0.8774334752695788, -0.4286187397734215, 1.774266826899846, -0.10269313641433904, -0.18049407719430488, 2.6036197701363144, 2.1574144346237287, -0.5784725193205275, -0.6869346658570301, -0.36932763309876215, 2.8546922918751725, 1.7022366666155757, -1.0900275267968764, -0.06732246879909476, -0.9975958806355567, -0.5055570735322141, 1.7565481969560157, 0.020433638734147472, -0.3445544143607514, 0.4891391904970552, 1.8750082213885417, -0.6974884071127307, -0.6398546508384965, -0.1922909429246705, -0.519814898267376, -0.5387340446271512, 0.32275637051667205, 2.090626440016238, -0.5406737421393093, 1.349181069089544, -0.47843443269152125, -0.6566753159446839, -0.8848860370767899, -0.32940621864356806, -0.16532828847222802, -0.3857384705304156, 0.023552823523582667, 1.508565996482929, 0.43033951967392653, 0.2585403907573779, -0.6270643988357392, 1.6519492612537752, -0.6902954795730476, 0.9432264670925171, 0.653204406973453, -0.0007909472160767311, -0.062269427924908444, 0.648354922663693, 0.07460401269938191, 0.17917724612103128, -0.406048014058162, -0.27442945280560543, 0.3792095743121608, -1.2268540556048955, -0.8907937818644838, 1.7192911606247074, -0.6440455657502401, -1.2268540556048955, 1.4634091511731284, -0.31249741670622416, 1.9851599492602208, -0.6126879587628954, 0.1218883745931122, 0.22076985859573603, -0.6899201163202071, 1.3443553628254548, 1.0754520557365705, 0.769735248463147, 1.7069361980476903, 0.09683511095299013, -1.079427062712262, 0.84006837100197, -0.3352506698472514, -0.4528107021232015, 0.37608874017851407, 0.5619805532413279, -0.5900015727849985, 0.7675642991483869, 1.1743898923329879, 0.7072798062013357, -0.959242288115455, -0.6110138743910202, -0.02582029536517074, -0.05890339128556199, 0.17993539467565062, -0.12714260262871058, 2.4244209958725795, -0.7255261934599115, 2.2154496344060988, -0.10742194370616079, -0.4650537841847085, -0.170035791734684, -0.943453511160531, -1.0627945602912217, -1.2268540556048955, -0.5175152313816589, -0.7603039561934509, 0.9968481592176427, -0.6376419868597901, 0.1349695984033641, -0.4534718142602051, 0.3490631357554368, 1.2053299403448288, -0.4561930947592827, 2.0312016677379954, 0.7915342185340644, -0.36116104269451743, -0.15020565759027882, -0.7284941883635475, 0.8806256076496366, 0.8164338182720705, -0.46387230394984486, 0.3143574974696944, -0.32877713127328345, 1.101755797177621, 0.18276635656460857, 0.19024530787915953, -0.9526292425104946, -0.5079512340965551, 0.005145042591193138, 0.2146178046971207, 0.6432245000570457, -0.4059006039195059, -0.16369048967294517, 0.34226550104444964, 2.508877315425528, 1.283361789314012, -1.2268540556048955, 1.2715282943976762, -0.4639863148682734, 0.9896743365817114, -0.6305426596039527, -0.011272529662645227, -0.30637690651560245, -0.46075043897606777, -0.4243237100085018, -0.394525764138551, 0.168494443680996, 0.02858084934393765, 0.10809573364748874, -1.2268540556048955, 0.8723347666483303, 0.04242461996003219, 0.6540112111822318, 0.21533155840345417, -0.37335890523563536, -0.11600389396030651, -0.4598165665405432, -0.4574486580381897, -1.2268540556048955, 0.966459129616886, -0.907325433759428, -1.2268540556048955, 2.042567573571158, 0.11414360397025303, -0.03993991880017593, 0.7653677849983928, -0.3441494316348285, 0.8218763792702254, 4.22025803300237, 0.5468447963283836, -0.2169765402515926, -1.2268540556048955, 0.8913364489412205, -1.2268540556048955, 0.26152666589266027, 1.6163509154150717, -0.8328053478626944, -1.1495525053261346, -0.5811294753954617, -0.6567921101314668, 0.13130393089942913, -0.21578323971656513, -0.19200491914980464, -0.33767479349805474, -0.49276517218524557, 0.02882481484148181, -0.9304688942511744, 0.7423324939976703, -0.8887721669232913, -0.06484391678940539, 0.20082681309570852, -1.03606403385549, 1.0722029850906813, -0.2592075176577562, 0.3634333220648209, -0.08800414561393956, -0.1983293295182349, -0.34831457554331013, -0.4261401877637319, 0.17826777023526016, -1.1564439121276573, -1.2268540556048955, 1.268533085314597, -0.7477522062355436, -0.5800890828131219, 0.2043676802211793, 0.40351815904203364, 1.3475138569852108, 0.40966265344635816, -1.2268540556048955, -1.1840627564554826, 0.3607780153340955, 0.4196824195144783, 2.359202077389008, -0.03895979600413157, -0.9625535699632027, 1.685408957435163, 0.18988203981718313, -0.3885352085270426, 0.16177941362579604, -0.5241680674156546, 0.4783838169118352, 0.43149887120732366, -1.2055822228153596, 1.5329083927690754, 0.8898711440571022, -0.9383001867223165, 1.4006433573093844, -0.5118924795287003, -1.2268540556048955, -0.050031706232077915, -0.32305308219683593, -0.6824892365170748, 1.9166231000100702, -0.3189179013748144, -1.0084290654699575, 0.05236246859911806, -0.07756716418368458, -1.2268540556048955, 1.1915590157646219, -0.14993688320692888, 1.7956725658223407, -0.5047165264898327, -0.19069781386437382, 0.7222268506477277, -0.8086290886442361, -0.5411123302534852, -0.2997514221064026, -1.2268540556048955, 0.1856466613344786, 1.3632081918035093, -0.5754099620155899, -1.0403996099988753, -0.1490353791514989, 0.714842874070533, 1.5907280782415256, 0.08095330067629342, -0.10448700440937468, -0.41961648163674625, 0.14309742921870228, 1.7283969151104763, -0.5766532239356077, 0.2692416108744121, 0.26913426605549123, -0.5344114570694107, -1.0341291641112762, 1.6877620218396379, -0.26720456922187835, 1.3821168235939654, -0.45593270454232865, 0.8629211345769247, 0.6658583131882899, 0.6284619072713304, -1.2268540556048955, -0.023684532060197404, -0.22095180340804352, 1.9992769612335453, -0.9727896921940387, -0.19912644382978378, 1.0658880584514667, 1.4815978442164621, 0.9370595690960234, 0.3923081162366032, -0.10286281269981448, -0.8682784466255684, 0.1641737116354895, 1.0012304667802778, 1.2744866681267488, 0.3434704844342887, -0.6862488822795705, -0.08152668984747614, -0.6564570870890644, 0.28106850841391284, -0.5519659085418017, 0.6976322421429888, 0.27337871593134255, 1.0775721502715463, -1.0446287347181211, 1.701160744410083, -0.1689014552551208, -0.4357392336132722, 0.6781418041829103], [0.9250649740971973, -1.6405621661663643, -0.6754661847926445, -0.1243790134606809, -1.2454397111708082, -0.08770962524107584, -2.0135806580822413, -1.4363858052283733, -1.274497138027377, -1.1942196339009066, -1.9045517151461602, -0.7998840175510898, 0.10656052796247438, -2.0135806580822413, -0.23417281942048263, -0.2833894739016286, -0.45272205107153474, 1.4812855307881352, -1.1828136435104342, -1.3726547878713384, -0.47791990757183034, -0.4473639403458583, -1.9444406390853783, 0.11732901112701698, 0.4394395395781286, -1.9147308189821155, -1.8940242355868544, -0.3975717216201508, -1.616388253707285, -0.5560676183735604, -0.9747320903108139, -2.0135806580822413, -1.2381373790396686, -0.15214540465166693, -0.6315007187124926, -0.2465247468196228, 0.02656326656359199, -0.12619532218124918, -0.5461596543028568, -1.9492869384309564, 0.08238974263868935, -0.5079354372785007, -1.0237193929785129, 0.815831482242703, -0.9801005677041861, 0.6794522284600362, -1.7070730782902042, -1.371047397491105, -0.6683718714149669, -2.0135806580822413, 0.12088640597113784, -0.44079712757160744, 0.09510921552892919, -2.0135806580822413, -0.4959214118413379, -0.41137806679478006, -0.30170763274807355, -0.5810568563958148, -0.6563557897792593, -0.6332464312827897, -1.0131144632737665, -1.0720302919976779, 0.07866613841164857, -0.9287037430337787, 0.255469227619235, -0.6662129486107456, -0.9306991980531558, -1.1023533090627484, 0.2349876051967552, -0.22085979054835844, -0.9959272993056251, -1.3377678239336737, -0.7251120707214308, -1.4832443426706043, -1.6850530552326475, -0.2474109683953567, -1.6315726374487056, -0.3350987550769321, 0.4632962405731552, -0.4058924717589052, -0.0186002778726109, -0.34142841961823334, -0.320778531614282, -1.1604587385325211, -0.6962639477424273, -0.5926091795832017, -0.7551963117296965, -0.13148934805206788, -1.2754452169095345, -1.0120891912709797, 1.006709764585535, -2.0135806580822413, -0.7103475370217621, -0.9559906115875556, -1.0871340127834204, 1.1217537308470549, 0.2124772002033765, -0.25547195211709395, -1.0404451973966367, -0.15130270594528197, -0.6134381282110235, 1.276691033307185, -0.8167681492576858, -0.5392259814370306, 0.1671099207606837, -1.202211563621283, -1.2070611079052003, -1.1779797777404746, -0.5262546242242284, -0.2827700440879596, 0.2939849107882751, 0.1884093961570536, -1.3505728860886195, -0.43108364561391166, -1.386250158507081, -0.6410542455578679, -0.189896010609648, -1.427785497761542, -1.4255935901055505, 0.25527937195297185, 0.9354765354631568, -0.7226763321871935, 0.8503206145981089, -0.3593656676829933, -0.11038469746845729, -1.8869085891492092, -0.7822751615299974, -1.1323885440055346, -0.767779818490711, -0.672699141266788, 0.29385794052771813, -1.1192801068892932, -0.15994250955928385, -0.6004914453808335, -1.5694060016522, -1.2142811064193386, 0.5689019127831334, -0.7746114525034129, 0.21139872406307625, 0.7252842087753876, -0.43464378205610127, -0.7250718034997921, -0.4219208821682825, 0.3825434975564475, -0.36260023935452207, -1.2298196275237967, 0.5552446420034942, 0.12633190513525674, 1.0752617107966442, -1.3482356308975125, -0.588737957435143, -0.46695625689476983, -0.1573960790030265, -1.0262312965340896, 0.051569553898838424, 0.1781439962381396, -1.0084742228674073, -1.4080067097064803, -1.3952268788212614, 0.08731108252203645, -0.07732907820327296, -0.8751242636008693, -0.8926660361442144, 1.2075671211989762, -0.16803981945543248, -1.2340373191278047, -2.0135806580822413, -1.0884603465241318, -0.8286763661443798, -1.207110713695259, -0.8554947641281464, 1.3461689542660256, -0.4120794018507539, -1.4188770603742624, -0.9074479618566337, -0.5421372158863188, -1.2629879093346288, -0.12778921875848753, -1.6177103465384857, -0.9085386038383674, -0.45769119757120275, -0.3701915530570975, 1.49566486995914, 1.3460469531519648, 0.4398913892098363, -0.6200486352044923, -0.46347802569488505, -1.1535558229700236, -1.175230640277003, -0.5636041001147672, -1.0001377085397576, -0.6257829445901713, -1.1293218095407809, -1.6177330503974925, -1.3903216886640413, -0.7895924867755775, -0.45054402275577, -0.9196316236743023, 1.1000108019630594, -0.045161394012608484, -0.8331749002005551, -0.9753462082782212, -0.8724571170546404, -1.9893968608770005, -0.6361249379051354, -0.5593575360560993, -1.1571112472905378, -1.0730635317698503, -0.05313002014940713, -0.8910032569154979, -1.5323822190447387, -1.3478273898100837, -0.5051050799722415, -0.1862359771878236, -0.34567412692749433, -0.3605046303306966, 0.11890765756499419, -0.8565549058313722, -1.4034007821134566, 0.3870028781652048, -1.4627820399470184, -0.7845763047340437, -0.3883304799298028, -1.0583636826496188, -0.36957966263812464, -0.6803789571820197, -2.0135806580822413, -0.02951577923358493, -1.0023375839651345, 1.49566486995914, -2.0135806580822413, -0.8884133891648365, 0.523761671930508, -0.42698941159794385, 0.2611102369956304, -1.47498694914972, -1.4714357229012511, 0.13239700546292044, -1.1307554939808782, 0.6816261443787048, -1.6453834377201966, -1.2033541246164479, -1.2402871346253526, -0.3539791128773532, -0.9087152655639282, 0.5892898068216331, -1.7359811094707578, -0.9762920596119511, 0.20447704568879385, -1.2097820583135288, 0.1919056190942683, -0.07820210583830435, -0.8223058346568675, 0.40291202905858303, 0.0686233219859403, -0.8295637871692724, -0.058718767812619914, -0.9612742707906786, -0.6754740668870923, -1.7921478864061429, -0.7609230817206865, -0.3304795050307855, -1.5798526469059462, -1.4106216802144609, 0.6842794972596447, -0.6478438988501454, -0.8363665487273142, 0.8991736646353756, -0.13086923283888166, 1.295174544787157, -1.238916763965658, -1.4698650870701269, -0.4240043253506742, -0.8197413266883425, -1.7716039140463367, -1.3819581867304023, 0.4850374559583577, -1.423651510573577, -0.033001378478290086, -0.3694341865905964, -0.9047181012545815, -1.1735848246863336, -0.5481665040892055, 0.9394306052778582, -0.21134181880293917, -1.3860381558689179, -0.9011130711440155, -1.4766335358148432, -1.4460482677595075, -0.9825192569254242, 0.12792597306237788, -0.47854602003079555, -1.3315573332334252, -0.3400812668671784, 0.5739622174185883, -0.5480002947062926, -1.0625007541354112, 0.17139623799134907, 0.4668983577357766, -1.2530037802425786, -0.8473663542289105, -0.8078288260546624, -0.6636874227397557, 0.8915098699338532, 0.02207646997415392, -0.6950570448675838, -0.4188958713991398, -2.0135806580822413, -0.10826184381382678, -0.6798583962487097, -0.6702335878535528, -0.993418908422572, -0.8026135354533762, -1.0631681619152769, -0.8361350550403777, -0.8256427022063342, -0.8765725984556486, 0.7590404776970356, -1.2237718335339458, -0.8070005207381316, -0.8223039498081918, -1.8509087291642339, -1.0169168027703468, 1.49566486995914, 0.6328877274106856, 0.3546359140649122, 0.16839127515808786, -1.083557512427756, 0.724017761817493, -1.3079541443848244, 0.6728023109943289, -0.9902600733976934, -0.46266325701882227, 0.6880524502519305, -0.9038697480021762, -0.15421068474686003, -0.9732873538035034, 1.0788350411795433, 0.3219711438744051, -1.4548108435620337, -0.5913195147166601, -0.2991085977788679, -0.6892729583419702, -1.8956315617108834, 0.5739457678301756, 0.19332233989631153, 0.12291673069094694, -2.0135806580822413, -0.8651265121934201, -0.7909536902167279, -0.2920517243498222, -0.22094837843595247, -2.0135806580822413, 0.5636293056472236, 0.6450436305479078, -0.6797528447230615, -0.7906726764146778, -0.18848425895410792, -0.509499518976741, -0.38428268173112146, 0.005121228067645395, -0.11347464984185779, -0.88616604982289, 0.9644984072197693, -1.3340243859581, -1.5019232358504464, -1.7851923021744978, -0.6560339947059293, 0.7381757169444435, -1.5726046326865424, 1.49566486995914, 1.49566486995914, -1.5474423741236676, -1.12491837466762, -0.7927375281351673, 1.327031571646649, -1.3987082371564465, -0.5717836579529794, -0.11151183697449245, -1.0919811581690275, -1.6749282693084293, -1.850585424070099, -0.24689143556132245, -1.233458584910471, -0.5704747162250116, 0.22453988900626715, -1.4456708268128815, -0.8568418312042564, -0.9883248478608916, -1.9919031139025785, -0.259308647264479, -0.6757274933585719, -0.15955988527881293, -1.7247500030508467, -0.4823110909286267, -2.009741558347198, -1.6267460968860847, -0.5161861053166253, -0.4244342421978387, -0.43787115703269947, 0.5669332740198718, -0.9160786839270361, 1.49566486995914, -0.7307393721074823, 0.027208570209038652, -1.8425058488864574, -1.4003114723021068, -1.9060454148814783, 1.3652970839919198, -0.9804684558950373, -0.21965023175038403, 0.781135359233104, -1.5734138753290012, -0.7768454265547741, 0.40049582441059284, 0.9905233695874442, -0.5106283719815621, -0.4178617748775674, 0.07730253607218796, -0.7106045618407105, -0.3745630311777709, 0.38258513557711366, 0.5362015018177321, -1.9193795519168622, -1.161067201953908, 1.0554564063477607, -1.5505613274641366, 1.49566486995914, -0.25375074257954006, 1.49566486995914, 0.10038644911157657, -0.40068292137857736, 1.3976037329346922, -2.0135806580822413, -0.5338358282839287, -0.8707515860310443, -0.35531050143951265, 1.49566486995914, -0.8954906532295152, -0.8972014960993804, -1.0423231063988074, -1.9965752320798367, 0.14930341265382527, 0.5312416082115463, -0.5357731100192751, -1.274192220917163, -1.9644436705856052, 0.4772364100035204, 0.9651673571485522, 0.6316543509794921, -0.07485975509269306, -0.6137409891226792, 1.49566486995914, -1.3427739391698006, -0.15829549451946287, 1.49566486995914, 0.6408644069918077, -1.2088235270887309, -1.4193705908641137, -0.6955277429860212, -1.1894040168930904, 0.6754200231003746, -0.7979891449108576, 0.4688222741805446, -0.7834623591687181, -0.8203983678005122, 0.8680931954288661, -0.18094349346592212, -1.0302872338520395, -0.5283776492287348, -0.047933321010030235, -0.7439669830647846, -0.4474129464113378, -0.42623855642685604, -0.7347768036384609, 1.49566486995914, -0.16849098368762996, -1.1243197638642874, 1.160577158399323, -0.6794284794015523, 0.3352946250891701, -0.14614507457838521, 0.4088938533449145, -1.406453294538226, 1.49566486995914, -0.7069439286943068, -0.9116887000193983, 1.49566486995914, 0.4004536723402853, -1.2961299317764523, -0.1529728532188048, 0.1865680703541147, 0.23122407644783427, 1.49566486995914, -0.09287685220121333, -0.9733256505015285, 1.2994298476896657, -0.09465632069773587, 0.5542532116018708, 1.0155065246889818, -1.5309916290992882, -1.019931960921428, -1.6216659156646311, 0.3760136963561252, -0.8170872027329403, -1.7707365409573257, 1.2904613950071615, 0.31501930792137317, 0.1057968215504357, 0.02125450460316063, -0.19671350825730965, -2.0135806580822413, -1.0011523568500276, -0.5536808859048097, 0.6863147911259639, -0.6450482398944425, -0.577428779726478, 1.49566486995914, -0.19376474818445846, -1.6867067314990265, -0.47439781080284504, 1.49566486995914, -0.39407498463329477, 1.49566486995914, -0.7328833874722148, 0.0830523526219417, -0.3724131042422112, -0.9508458314616028, 0.48969731592588767, -0.8063042405035987, 0.13222428478458717, 0.4869742236440696, 0.39503147675975103, 1.49566486995914, -0.30367404396290765, 0.13661375464258346, 1.49566486995914, 0.37158036092902136, -2.0135806580822413, -1.4879055305997024, 0.241224740803235, -1.6823504606801403, -0.5734740245122595, -0.876032760660912, -1.6678009924977273, 0.3531023326451941, -0.4321319641754623, 1.49566486995914, 1.49566486995914, -0.68448809863749, 0.8646661978428882, 1.0968531663873395, -0.32209090033982873, 0.340547526988957, -1.0360165740912153, -0.6436537945767081, -0.08849492173790618, -0.9860925873083307, 1.2475101488625833, 1.49566486995914, 1.49566486995914, -1.0640066625496278, 1.49566486995914, 1.49566486995914, 1.49566486995914, 0.39127908575298803, 1.49566486995914, 1.49566486995914, 1.2130324969490938, 1.49566486995914, 1.49566486995914, 0.7046535119579248, 0.3085482797296469, 1.49566486995914, 0.22661699224312135, -1.144994154900975, -1.4520231523757205, -0.5852354802273356, -1.149353210155401, -0.9459342585213792, -0.13559986030656557, 0.20219826364399435, -1.117875294903856, -0.25139194014110444, -0.9783281245527182, -1.2366577728319192, -2.0135806580822413, -0.6155123184999333, 1.2447150896314596, -0.6441621039936465, -0.9722947239527213, -1.2575063410209124, -0.03461635109067866, -0.37699191571683627, -0.5524540207690295, -2.0135806580822413, -0.5936096915284312, -0.0015907180543681327, -0.6992199901851538, -0.8926582397247117, -0.8118571760420418, -0.19501200395587864, -0.9559655088302329, -1.5591761568332376, -1.211156969745023, -0.6337605665956244, -1.1130158123269394, -0.7961482474826154, -1.3482866074866047, -0.8936420450567009, -0.7724882561490238, -1.3195892724013842, -2.0135806580822413, -1.5286604139914275, -0.7493648469624514, -0.31855783717856834, -1.4389908802808238, -1.1883203145814594, -0.6230632793059392, -0.3141364962430224, -0.41188560513726336, -1.376278623631161, 1.49566486995914, -0.05348848409690043, -0.7268929956919254, 0.03971197090147204, -1.1838535659278957, -0.4361151634696444, -0.932441483625867, -1.40465369243089, -0.6809704569653595, -0.9450105113220825, -0.9642899429913941, -0.878786610246066, -0.046767285081397734, -0.4657622909358151, -0.7882927122661539, -1.5179835173373732, -0.34991092404304586, -1.6502392362747087, -0.21861802007748748, -0.5394807787075516, -0.8146520639232824, -0.8784104115860635, -2.0135806580822413, -1.537532268179477, -2.0135806580822413, -0.8558094481814769, -0.7063400917196575, -1.5799106488400887, -0.4952673693520505, -0.6135031554902124, -0.12561393204079155, -1.2669641689586941, -0.1539214461506035, -1.0041888480610797, -0.47124497302374535, 0.911678778826609, 0.32600283518443235, -1.3112983799790974, 1.1454767789362283, -1.3803930340954156, -0.6883677169296308, -0.3534349056606999, 0.84509667082792, -0.7069261939817976, -2.0135806580822413, -0.06420710444656354, -0.4434898909247931, -0.6198794271986828, -1.5526821249202183, 1.49566486995914, -0.10737545088821711, 0.10878139374807087, -0.9837005429933181, -0.30044975328414386, 0.4220406728341187, -0.2716430969759307, 1.49566486995914, -0.4375829465357187, -1.5654539880360503, -0.5666015235533394, -1.9367178411238561, 0.08522215614350713, -1.8535088564889197, -1.2706672112002262, -1.456850549687738, -0.9578154021271438, -0.4324443350054207, -0.7614744856322629, -0.8280180399081134, -0.8745283943956055, 0.7561143358082448, -0.04999654490667174, -1.3461583991482426, -0.17201993445178723, -1.3736386788782728, -0.3055654039306089, -0.5532192693299715, -1.149195568266446, -0.14384384569939404, -0.2919975777879637, -0.8330535844860114, -0.09516762873756378, -0.32058901864777745, -2.0135806580822413, -0.6527780899744364, -0.316180871652934, -0.9359650368688316, 0.2440963934304087, -1.8761207220295748, 0.7673437501480945, 0.5792478471453248, -1.043015702610941, 1.49566486995914, -1.2795280561585305, 0.17273345244939767, -0.452686067596882, 1.1838286516206658, -1.261232601171091, -0.9824915839199229, 0.6889289048845479, -0.6362281762074111, -1.87483990310055, -0.7862202354760373, -0.5327606077913247, -0.26937253972533753, -1.0672110766424, -0.14477324744471123, -0.7521695017868157, -1.040398076179826, -1.7339769370262725, 0.16392846755174462, -1.7334395623860568, -0.7431511006145013, -1.263791368918658, -0.5708496297609176, -0.6820413937109776, -0.6985071746872704, 0.613546781134702, -1.592580644452678, -0.5112143885687643, -1.0141234570380162, 0.6327892012300922, 0.3225372838756087, 1.49566486995914, -1.0868937802526435, -0.12405670433772319, -1.7118472928834345, -0.188999679391039, 0.162875008493815, -0.19837217508892296, -0.17550673314564397, 0.26441437671815454, -0.15592384084009037, -1.4713743368069916, -0.6536650826246254, -1.340933384441311, -1.0839304554400484, -1.2414151308807737, 0.3511141599956855, -0.17907886407938453, -1.0331475773871726, 0.45587473460096145, -0.5896007040774164, -1.564483590832111, -1.494865934046702, -1.4637728277865951, -0.2773973686225392, -0.40232530997166077, 0.4451343528166309, -1.6073441928905403, -0.5130555430218274, 0.05759164540680162, -1.0238034400943072, -1.1643988433320578, 0.1656229465081349, -1.5400590791745574, -1.2327897206566258, -0.42868611810276147, -0.35571043205778924, -0.5209660815495473, -0.722035140938857, -0.8784490509838472, 0.012291021067152592, 1.214045517435509, -0.6287167972235269, -0.26500243240369853, 0.3008495296527545, -0.7402773061138381, 0.9531992534790416, -0.03067187686921809, -0.002281258067942682, 0.1660586892511885, -0.8128893877149382, -1.6916378597442248, -0.8826878186230053, 0.18207956026587663, -1.4229168479660836, -0.3292692608333009, -0.3358117419246913, -0.8661256533396084, -0.9426361160446342, 0.713707125530437, -0.7989942833028323, -1.1584824746996254, -1.2928121269010568, 0.6317114104892951, -1.0839020970350226, -0.2676754905207613, -1.4515880521947102, -1.288249165290265, -1.2319460795259032, -1.6631759165556916, -0.10806462010275024, 1.1295535773527408, -0.5079380075266937, -1.3556621488536764, -0.3651997883733621, -0.28170441918859623, -1.07626323374094, 0.5320066854226194, -1.2338596293029682, -0.4703863387785821, -1.4892771435460195, -0.330462027343104, 0.6321589763740239, -1.5189889555916298, -1.7060719452016653, 1.1833461303605601, -0.32904136549383334, -1.0389067325053534, -0.40655165474457156, -0.44688741633153156, -1.1424084852223546, 0.10863780254921138, 0.7263613141166675, -0.15149170486214514, -0.570964262830165, -0.19597516162741424, -0.47078095755060395, -0.03624211874546659, -0.8743183194435923, -0.9798683886177325, -0.49436332738886957, -1.1714231602840366, -0.9101346422891025, -0.8480147421721774, -0.5528997018050825, -1.1913047154292118, -0.3223340458185574, -0.5891115858469527, 0.679955140355782, -0.9723207691343748, -0.8445681250250144, -2.0135806580822413, -0.14966408704954312, -1.401096468936645, -1.670909622007968, -0.40968564403694135, -0.7961096937597696, -0.6008778393586491, 1.49566486995914, 0.3301697215492229, 0.14395249862307938, 0.28994362388501416, -0.8229659600668647, -0.4266354027473123, 1.49566486995914, -1.0646963458138095, 1.49566486995914, -1.3924501111897523, -0.17144008646023975, 1.49566486995914, -1.3630567528948196, 1.49566486995914, 1.49566486995914, 1.49566486995914, -0.3038707536243428, 1.49566486995914, -0.3802492769223083, 1.49566486995914, -0.05264458594134985, -1.3896683744117442, -0.0024224503684849717, -2.0135806580822413, 1.49566486995914, 0.3490050143313989, 0.8480060204285395, 1.3140226888102768, -0.22811028934100488, 0.5094436760162924, -0.6532695214282657, -1.4885515196446593, -0.6101062298080532, -1.4729458722249822, 0.016231382891509993, -1.6772872430967378, 1.49566486995914, -0.7359363282716799, 0.33706604014136904, 0.6992943731329725, -0.6077950626360696, 0.8535212589935295, 1.49566486995914, 0.5185870769255643, 0.42614827214067186, 1.3646113417749657, -0.581968437753685, -0.5188778405705281, 0.7217809604931251, 0.16111713008209114, 0.6157616496745195, 1.1349199128726235, -1.1360525184745864, 1.4205947743395007, -0.2876960104180442, -0.10810797162221637, 0.5109189984770629, -0.3415524769308457, -0.2521825484841966, 0.4507207015815265, 0.5548923466516557, -0.5648367911464365, 1.079425855563366, 1.49566486995914, 1.49566486995914, -1.264276803126715, -0.7826991668063208, 1.49566486995914, -0.8503347338629395, -0.4973060902159558, 0.8882751269124486, -1.1716743592070888, 0.021794942122462323, -0.5368488445615205, -0.08067005814984282, -0.2051661978031312, 0.8854046737344335, 1.49566486995914, -0.5520631716943453, -0.05143211419543087, 1.49566486995914, -0.9898439502158177, -0.9762563331621118, -1.4642139680508495, 1.0499224906459235, 0.25270792431432976, 1.49566486995914, 1.4679260660987175, 1.0792435392917918, -2.0135806580822413, -0.9545871704011526, 0.37967081682999804, 1.2157984267007367, -0.6335043128511381, -2.0135806580822413, -1.8651276741388474, 0.9338027898421651, 0.9649398045088433, -1.035360732428197, 0.5139925012620437, 1.370135661883562, 0.7128421513397362, -0.37992062785381303, -0.9704814138550425, 0.4449261627132792, -1.3268156108610565, -0.9954003984267844, -1.5838300631417017, -0.10614464470520962, -0.4975153084185763, 0.0028690052541407115, -1.0352198828274133, 0.11849830270335264, -1.238698635569314, -0.672988893912679, -0.19809201803627277, -0.5291423837400492, 0.6900738647780161, 1.339384527145065, 0.9802471746261309, 1.49566486995914, 1.49566486995914, -0.9607897790069592, -0.41941077778642943, 0.48502751766535834, 0.16186507230522731, 1.49566486995914, 0.23527667244313594, 0.1650919332321841, 1.2223052670172327, 0.3526833821903048, -0.501654778802679, -0.1556368297922612, -0.6783894994084216, -0.14065862279311037, -0.3975574995801655, -0.5625254526245772, -0.863682461085627, 1.315682383741166, 0.14346860656393928, -0.3261522351789782, -0.2788454464524977, 0.4870487608415681, 0.6370693498650958, 1.0258992375682183, -0.09133076224030291, -0.45967782807179414, -0.6608227097826989, -1.6637236792823398, -1.4220700797000578, 0.3050676496314519, -0.7480209498591138, 0.05779606581280169, -1.4994998773449917, -0.03204987259853981, 0.3487125200874322, -0.28115695632423976, 0.03208947152086418, -0.7505894845498042, 1.093874762785366, 0.24184125766895243, 1.49566486995914, 0.8253261504045376, -0.4038126269239752, -0.4799486901427293, 0.9369638524154712, -1.0928475888337008, -1.2195859273325496, 0.051221884993737456, -1.0770374781705503, 1.4874208845663115, -0.7960175931996518, 0.3088534538646817, -0.7332268583052679, 0.5429201305850418, -0.2119619340161254, 1.49566486995914, 1.2523305636670197, -0.25646252576931733, -0.9274655688059722, -0.021135742036600166, -0.09320464452031564, -0.45624483324003723, 1.49566486995914, -1.3328327332225165, -1.1717949895221154, -1.3534316874748422, -0.516946384731071, -0.28135932053169527, -0.682052959827832, -0.8809534151447419, 0.17964553523043933, 0.16886642837338017, 0.6702202396631773, -0.8422965396751525, -0.6993592119620826, -0.8027310814705826, -0.7009013608757726, -0.9683017577154227, -0.5150075608468004, -0.31131196483265944, 1.49566486995914, 0.4616925770527934, 0.18168494149384776, 0.5519905364457254, -1.3760619517087873, -0.9846430530043998, -0.23675694695019278, 0.3593761371258368, 0.38562779538382763, -0.09413815866273602, -1.8071423716438306, -0.7283832255921846, -0.027837749865614356, -0.41896132705303196, -0.8226211184347775, -0.1502872865605497, -0.7789734207057833, 0.578917998627671, -0.09282716073622369, 0.42782664420840805, 0.6215760651287725, 0.2066579869525102, -0.9045859048227005, -0.3162105151820563, 0.288202195061696, -0.013857313213617469, -0.008508626731305953, -0.06739558300055738, -0.1157679966263942, -0.14659880905876868, 0.27047844894653544, -0.2808605210330527, 1.2376873456818946, 0.134450805116197, 0.5739925463472207, -0.7115765440310318, 0.7593084689082591, 0.23955733512777394, -1.7145034301999171, -0.5828118218595941, 0.03802623078893653, -1.047514236667109, 0.03922962099124916, 0.11747465852441402, -1.0859339639037489, 1.49566486995914, 1.359641852575539, -0.3836889543993543, -0.6396676823345813, -0.06358750328301874, 1.4637502695402034, 1.49566486995914, 0.8134940985391902, 0.11694638684653903, -0.1709723012897608, -0.19742615240531727, -0.40764212537642974, -1.0909348958060285, 1.4482958812264775, 0.789211079044468, -0.22085482140185528, -0.20671845635969638, -1.3300695022314721, 1.273943266642748, -2.0135806580822413, -0.06071585065584503, 1.315040849793071, 1.4577907207381877, -0.6121954988863479, -0.7941030153233037, 1.296436365298314, 0.6994415626792938, -0.9728696027977727, 1.49566486995914, 1.2751159852166696, -1.1637622785304658, -0.8539991367066877, 0.3125907660820664, -0.42513968965091575, -0.08530918478198113, 0.34356945346027234, -1.7351316424441332, 1.49566486995914, -0.9129958425736354, 1.0679221100667553, -0.9691071878230654, -1.0415976110098633, 0.02273856590776485, -0.3129301930927582, -1.739127671560528, -2.0135806580822413, 0.8553567589005792, 0.307072443219249, 0.9829915142929819, -0.9486829676101542, -1.8783368007279149, 1.49566486995914, -0.8116839413140668, -0.714507483716436, -0.8414041495037639, 1.49566486995914, 1.49566486995914, 0.6637570935658987, -1.4080809470416864, 1.330409905866906, 1.49566486995914, -0.2775673477028037, 1.2721482053072128, 0.682744716390768, -2.0135806580822413, -0.6744855494334134, 1.49566486995914, 1.3589427450679996, 0.8353048819753881, 0.2781374458514445, 1.49566486995914, -1.017936420227113, -1.0100706896928386, 0.2994247554063807, 1.49566486995914, 0.2378892440528027, 1.1549901242349032, -1.0327421635727514, 0.8890520272651898, 1.49566486995914, 1.3261909291388085, -1.1906965090326385, -0.6439656513570321, 1.49566486995914, -0.037800888597445126, -0.22068124397412198, 1.193713140757902, 0.8501857622430972, 0.7149963620222819, -1.7574697337151388, 0.44416811084726093, 0.830718359756191, 0.9325084128539414, 1.49566486995914, 0.6297619629125151, 1.2895004648840533, 1.49566486995914, -0.6526876172381666, 1.49566486995914, 1.49566486995914, -0.8347334987026578, -1.2774997019623282, -0.09177301627877688, -1.159161876971049, -1.420433645515284, 1.291225272769076, 1.49566486995914, -0.05203852141827317, 0.6408414461079817, -0.6174286098750742, 1.49566486995914, -1.363951884664277, -0.2564788040078543, -2.0135806580822413, -0.1094544389737471, 1.49566486995914, 1.49566486995914, 0.4535615112304264, 0.20222636502419936, 1.49566486995914, 0.9897132273581191, 0.7499637318908146, 0.5438370237891667, 1.49566486995914, -1.2605030790599743, 0.28161996079831525, -0.9458239091991107, 0.5803964053862619, 1.49566486995914, 0.2633389848756747, -0.9200702793653075, 1.49566486995914, -0.22145848702662177, 1.49566486995914, 0.07953968009631435, 0.3518112113046734, -0.3230203020851459, 0.921773000216107, 1.2483004145059098, 1.3975865979467623, -0.9633598558465597, -0.09503568933050363, 1.49566486995914, 0.16786557372839886, -0.3552087196112021, 1.1309415113750618, 0.8378329780945569, -1.177698078538907, -0.6369765468052508, 1.3029552001063611, -0.4464583562337672, 0.14429622648095294, 1.156930490268084, 1.3651339589068272, -1.347926901252486, 0.8175711975672212, 0.7100554882527017, -0.7551785770171873, 1.4633356028323001, -0.8678764207313466, -0.32810785135141296, 0.7909208081401053, 0.7960746698096646, 0.057375915908760795, -1.4358344013167894, 1.49566486995914, -1.1175495587833124, -1.511955428583638, 0.2499594722503755, -1.0767762552795608, 1.49566486995914, 0.8038904518541216, 0.9596862172095392, 1.49566486995914, -0.5221381147239518, 1.3217584504611049, 1.49566486995914, -0.7534766443410528, -0.3130425986135783, -0.5640156825248362, 1.3200853902396303, -1.1625962426018333, 0.15532790306009164, 0.05808667520809262, 0.06982893973668733, 0.05446365336019677, 1.49566486995914, 1.307958616581889, 0.0146326885176513, 0.4836119963124737, -0.42370806140936995, -0.29890314927358497, -1.2437032514939932, 1.49566486995914, -0.3948577108819321, 1.1984814651990316, 0.1864303050511584, 0.4059726806026269, 1.49566486995914, 1.49566486995914, 0.08431811418032616, 0.42557339329562055, -0.5689080642785783, -0.9957846505311104, 0.07527152595286166, -0.4699110142134, -2.0135806580822413, -0.5540522010932468, -0.2596496335242768, -1.435213729216499, 1.49566486995914, -1.490702603191907, 1.49566486995914, 1.49566486995914, -1.56105740715806, -0.015854396056842586, 1.4197376822432477, -0.22402239527057466, -0.600469683946166, 0.177863325135848, 0.6941178932793529, 0.3457495379745957, 0.8245961999187242, -0.24366320383533124, -0.9219001247263441, 0.357144476297848, 1.4471324155460379, 0.10828961959447603, -0.5607598634682814, 1.2912053961830774, 1.49566486995914, -1.8768936170788877, -1.0125046290533382, 0.6146360523174016, 1.49566486995914, 1.4158792256611952, 0.6874520402748673, 0.46967182688210857, 0.38767508374169085, 1.49566486995914, -0.2887498121757324, 0.06239800952112862, 0.2725819400648087, -0.9774280236367576, -1.2679573985340555, -0.0700328289928502, -0.4914863629154481, -0.28885176535391177, -1.218754023668557, 1.2607191683579764, -0.32318753956734164, 1.49566486995914, 1.49566486995914, -0.41206209551294126, 0.2664798281632164, 1.49566486995914, 1.49566486995914, -0.4265761156890749, 0.9847855475292414, 0.2747246703054449, -0.4356139650726987, 0.9668376757719579, -1.5555540774096772, 0.521710956575059, -1.177587472191818, -0.19854335361834607, 0.23915620506033874, 1.49566486995914, 1.37222818660956, 1.49566486995914, -1.424029465569841, -1.4001795757325166, -0.5353383953754972, 0.409316059447507, -0.23457566298671081, 0.5777764657317818, 0.05800768291373934, -1.7272821901483908, 1.49566486995914, -0.9414495181304928, 1.49566486995914, -0.27065457952225186, -1.7379439651755964, 0.4414306251755818, -0.557598286845334, 1.3771126862688545, -0.7831861431632883, 1.0271610580793755, 0.4672446558418432, 0.3969461403110369, -1.2155415561314613, -0.6273476260129907, 0.8151549929192309, 0.7344361771786244, 1.3545870311362216, 1.49566486995914, 1.49566486995914, 0.9816981654040339, -0.14510994995753707, 0.7407355127912932, -0.30130513188160396, 1.49566486995914, 0.28195717736077547, -0.39156607970060736, -0.3665174689451776, 1.1148616960018947, 1.49566486995914, 0.2548306066190845, 1.49566486995914, -1.2765243784493587, 1.49566486995914, 0.6151507873548154, -0.5332083450259292, -0.0660282109637522, 0.42296767568112575, 0.7126235088937508, 0.9720566503956436, 1.49566486995914, 1.49566486995914, 0.6227988178674494, 0.07442025975250476, 0.2335138248849089, -0.29767165769106735, -0.5866661660445436, -0.6000168918901134, 1.49566486995914, -1.2742622173428548, 1.1406142120614844, 1.4647273065519657, -0.007960649817301064, 0.026435268203759226, 0.894675387604021, 0.24457668714208, 0.5397076630479462, 1.49566486995914, 1.2359042788379104, 0.7788363579025542, 1.49566486995914, 1.49566486995914, -1.4057485324846697, -0.3423466836213926, 1.1493537413052453, 1.3757312635419467, -0.29056577819654217, 0.7187196235495711, 1.49566486995914, -0.3044571129113036, -0.5945695078773258, 1.49566486995914, -0.4918480825106446, 0.8238621370358078, 1.1504620323245505, 1.49566486995914, 0.15650901777810244, 1.49566486995914, 1.49566486995914, 1.49566486995914, -1.132251806801854, 0.5273619042444607, 0.15552392732200956, 1.2072268203386887, 1.49566486995914, -0.7950699426921839, 0.37779710589986815, 0.2425754919017517, 1.49566486995914, 0.4233228839809159, 0.3761847035356655, 1.49566486995914, -0.12503665429743005, -0.05638258355825877, 1.49566486995914, 0.600728610713986, -0.6999794128502065, -1.3419865864744223, 0.6652721691986596, 0.6127428075010316, -0.8863848636187583, 1.49566486995914, 0.8523283211338505, -0.2964076096314759, 0.4169459268729282, 1.49566486995914, -0.36970663289868866, 0.40968960218437855, 1.49566486995914, 1.3591452806253308, 1.4088052172442196, 1.4876285606200217, 0.6063637941944923, 1.49566486995914, 1.49566486995914, 1.49566486995914, 1.49566486995914, 1.49566486995914, 1.377125708859681, 0.26160183979933543, 0.6596356149191259, 1.3067721900176235, 0.6630559298598077, -0.2060495064309135, -1.5268422204221863, 1.1562608549397837, -1.4528886834535293, 1.49566486995914, 1.49566486995914, 1.2788243393044563, -0.667807787612315, 0.8084245410102461, 1.3901901090569462, 1.49566486995914, 1.2037761764693675, -1.1589866717194677, -1.7676162168178224, -0.9579229241764058, 0.6865904930817524, 0.9653016954539225, 0.5688189794415527, 0.4779326045631083, -0.8780055974962216, -0.7642663748906214, 1.49566486995914, 0.07638392936927009, 0.7497456034944635, 1.4310416337805958, 1.3913066248704578, 0.2043773200590419, 1.49566486995914, -1.2189600718984122, -0.4899197109690148, 1.49566486995914, 0.4158114193220867, 0.7097079906974836, -0.05819512258148249, 0.2084729248740441, -0.7479359603189816, 1.0666095699913258, 1.49566486995914, 0.31377667859669756, 1.1714911176113867, -0.11205433069234573, 1.49566486995914, 1.49566486995914, 1.49566486995914, -0.6875378694641897, -0.15240482836893246, -0.5399710107122222, -1.2146066711900065, 0.3363885227186142, 1.49566486995914, 1.49566486995914, 0.4157903432869364, 1.49566486995914, -0.037700991617817384, -0.5037755762587649, -1.384657161516709, 1.49566486995914, 0.6247542626900083, 1.49566486995914, 0.8132542087081718, -0.7801688431387175, 1.49566486995914, -0.010775071584788935, -0.674444254112506, -0.47931692313775776, -0.5056316381513305, 0.995453448314632, 1.4144015043021214, 0.45628306136333424, -1.3446338992721196, -0.3647625034813913, 1.2381928278258265, -0.9677440138583013, 0.7417108363042625, -1.0638657272739063, -0.8620667173987763, -0.225305291816889, 0.6250251668491764, -1.0201250722353943, 0.6595701592652268, 1.49566486995914, 1.2934452818052724, 0.6218420001414443, 0.17366748064145945, 0.72186286573543, 0.2704063106473541, 1.49566486995914, -0.9815715207430257, 0.665771140047178, 0.32101312669924853, 0.37175685130470626, 1.49566486995914, 1.49566486995914, -0.23128351775574466, -0.5669459368107301, 0.6527046836513614, -0.48829856976097147, -1.601695344257163, 1.4421327687678547, -0.20966892993134056, 1.49566486995914, -0.13074671767518645, 1.3647833770537816, 1.3264373302652404, -0.6640344062453395, 1.49566486995914, 0.6915688924749025, 1.49566486995914, 1.020082594565538, 0.0007382695050624558, 0.44222431781649424, 0.9394282063795479, 0.18443253680840904, -0.6987452653445512, -0.33748720104447594, 0.6484120264751655, 0.09591113296404802, 1.188696358991789, 1.4906710490768529, -0.6260836636283372, 0.968569680351911, 0.8205744469016965, 0.23803729034851695, 0.04344619882103638, 0.692197232482288, 0.36946144832161826, -1.0608569090683555, -1.2407257046414129, -0.7560074820582975, 1.261694149171187, 0.7745383888800965, 0.6087373327225406, -0.7022860392503835, 1.4083590221585252, -0.8500349572491042, 1.2347041442833009, 1.4444483910367, 0.47461578494951606, 1.1232903965646075, -1.5630116525314641, 1.49566486995914, -0.2199017733731948, -0.14995401104531686, 0.6202323393753035, 1.2512472897300921, -0.043379355267899974, -0.4438565796664927, 1.49566486995914, 0.4727730883475428, -1.0221040776663588, -0.7397348123959778, 0.04616106630864808, 0.9429415643046924, -0.3232595065166472, -0.7251124990961273, 1.49566486995914, -2.0135806580822413, 1.3798631945313602, 1.4881833915291915, 0.14516051527213658, -0.4352942261979199, -0.7512851650597577, 0.17417347683502557, 0.9419151785276921, 0.7816069141009345, 1.49566486995914, 1.3956520578094778, -0.08466645138472746, 1.354397518169717, 1.49566486995914, 0.9556540118498775, 1.49566486995914, 0.28872566894295765, 0.5545945405614342, 0.6620656989073359, 1.1605559110142898, 0.8518403166776073, 1.49566486995914, 0.6984074661577214, 1.49566486995914, 0.767478773852982, 1.1198037692206335, -0.5102572281430007, -1.2364496684035124, 0.6337981093194041, 0.8458931050669012, 0.8323307621203936, 0.46070371689936296, 0.7706235581877582, 0.7234810939955288, 0.42088765949632, 0.3693872538238783, 1.2852646958677847, -0.8037034063606622, -0.042743133166066684, 1.4531313748202923, 0.46820695676398577, 1.49566486995914, 0.6645504435070526, 1.49566486995914, -0.5028189298826357, -1.613506405762297, 1.0561277551748538, 1.49566486995914, -0.22407551373315732, 1.49566486995914, 0.6257311283518878, 1.49566486995914, -0.8325645519304924, 1.49566486995914, 0.902520127778083, -0.010385421959263246, -0.3565126921926737, 1.49566486995914, 0.8597614788978366, 0.09894008478041108, 0.9907930742974607, 0.9245293343745089, -0.15965224286375856, 0.997584355413593, 1.49566486995914, -0.01211776923897508, 0.7330364200146352, 1.49566486995914, -1.0718348674603393, -1.2453782822390813, -0.25989500655143283, 1.49566486995914, 1.0213968481397606, 1.49566486995914, 0.47039903576985304, 1.49566486995914, 0.5462832146660377, 0.6226711622073682, -2.0135806580822413, 1.2859967025521495, 0.186114507223607, 1.3874293198016823, 1.134562477024406, -1.0099964951950988, 0.44382318354023576, 0.01566747043873382, -0.01770051965641591, 0.6198668500827624, 0.2631117749357173, 0.9920226810313095, 0.16216013679738, 1.49566486995914, -0.08539400297223759, 0.17459602563737667, 0.1449401593273582, -0.10184530488371753, 0.03330674106340353, -0.5514567644715099, -1.0916617619940145, -0.15881742625181433, 0.19718525157522585, -0.2802724482472989, 0.5993694634713872, -0.47677426227884495, 1.49566486995914, 1.49566486995914, 1.49566486995914, -1.583976181751274, -0.2444024072146267, 0.3861289937807804, 0.36921624664433805, 0.8632038979729514, 1.49566486995914, -1.3111136648092132, 1.49566486995914, 1.1711189456735496, -1.3685359651476907, -0.044244329458600795, 0.9005530311637316, 0.7506768900884495, -1.4247305436009925, -0.13410963040630658, -0.7244150194124429, -1.193045972902647, 0.9402619948922164, -0.9763173337191422, 1.1596090315812841, -1.462306415519555, 1.0708275186201475, 1.49566486995914, -0.585797507831436, -0.5112575687383477, 0.7240958973624533, 0.7029165382314754, 0.9673506973105788, 0.12147704900508464, 1.0052515771127015, -0.2642373551926325, 1.49566486995914, 1.49566486995914, 0.764453249034205, 0.08746255581533667, 1.49566486995914, -0.7069904501865382, 1.3561480285366345, 0.5240752422096321, 1.4282900974188142, -0.024063768774059694, -0.5353630697581163, 0.6591620038527438, 0.34231997014042476, -0.3073755440555224, 1.4538034090469025, -0.644013372298415, 1.2335824879734103, 0.03348306008919859, -0.36007094378618754, -0.05157039354802859, 0.30019034666708816, 0.9373387659513772, -2.0135806580822413, 1.49566486995914, -1.7877438518084026, 0.20252040141707625, 1.0257851185486053, 1.49566486995914, -0.321837645218232, 0.5136357508133433, 1.49566486995914, 0.11787835884004222, -1.4178418500784784, 1.49566486995914, 0.926430289935451, -0.08882922535242185, -0.17426873026770592, -0.08516353738457706, -0.6264916476909514, -0.26359085209803423, 0.8202038171127694, 0.07212108707206515, 1.49566486995914, -1.0581711710602246, 0.25992877957786104, 0.3087297392518279, -1.1564548915778852, 0.47422373642568016, 0.647742733846624, 1.49566486995914, 1.138871241089256, 1.49566486995914, -1.1326332316331733, 1.49566486995914, -0.4867427128569375, 1.49566486995914, -0.9452748185108992, 0.3701514742855514, -0.19930825947953634, 0.9345238301342549, 1.0908740836990838, 0.8766935885706363, -0.14113309060888551, -2.0135806580822413, -0.7004056456749574, 0.9381084696091878, -0.6873301077355415, -1.4112929433666146, 0.6393152327330629, 1.49566486995914, -0.40481382426871515, 1.49566486995914, 0.3428078032467922, -0.16646117301745525, 1.49566486995914, 0.44374059289840667, -0.9539614863168981, -1.4243888719416706, 0.5929904501648479, 0.6354720262902714, 1.4250094326297575, -0.03225069465707811, -0.7439742654346532, 1.3302399267866416, -2.0135806580822413, -0.517085349483186, 1.2406736313783158, 0.5840365622220876, 1.1541104139545826, -0.5308406323937841, -0.2991839917257594, -0.08250727155568559, -0.3881664980953173, 0.27214157087501756, 1.49566486995914, 1.49566486995914, -0.6594729011085201, -0.7135729414747465, -1.7908804541864385, 0.2500768469176917, -0.8661504133971726, 0.6682524576493089, -0.29962915871217793, -1.2128052699089336, -0.738200117202039, 0.9510974758595613, 0.3148409326970195, 0.4398852206141815, -0.03820236136464595, 0.022851314128343524, 0.9323195852869539, -0.48580217336946235, 0.5679797077327468, -0.7371972920334439, 1.49566486995914, 1.49566486995914, 0.13776111343436886, -1.8654877444914588, -0.7776338073494319, -1.315439306837174, 1.1434942608327403, -1.0009307157811527, -0.3792693269626014, 1.49566486995914, 0.2646174263251202, -0.9589672160157984, -1.3262736311928343, 0.9469699999670095, -0.07193841100052971, -0.2694088658997489, -0.7914360401269506, 1.2796793752021578, -1.2237530707221609, 0.8505108129641237, 1.49566486995914, -0.4569338311047016, 1.49566486995914, 1.49566486995914, 0.7608441065265288, -0.7811829773993463, 0.008824098959301549, 0.6054362772978509, 0.22117457737683685, 0.33738766386480956, 0.41530833607646517, -0.8069790163282778, -0.23367059292426107, -0.6085739335124245, -1.0439852002280068, 0.3353575104948763, -0.7141107230709245, -1.3054280187892553, 1.1506909557632938, 1.49566486995914, -0.36040678954961336, -2.0135806580822413, 0.453344582283234, 0.7511724339393819, 0.4890278519474704, -1.0289675827566174, -0.026188849977117575, -0.7266502785878934, -0.6513586275743244, 0.9813965896164678, -0.33036007416491764, 0.2054659058422313, 0.45353598009841434, -1.3274579587210784, -0.721982450850971, 0.719574316747514, -0.43999880848395034, 0.08277425176783608, 1.49566486995914, -0.8653392430685642, 0.40509742541916816, 0.32223228109045665, 0.5624257440950281, -0.6326632419685942, 0.08916525956593331, -1.5575548442753115, 0.47795967784403753, -0.3247512785658304, 1.49566486995914, -0.04766498709904816, -1.3445503233684923, 1.3703070117628608, -0.5421930759469703, 1.49566486995914, 1.49566486995914, 0.8391768751979017, 0.5302676554976113, 0.7461858097520325, 1.1328503490304513, -0.830967228355668, 0.7061233512225507, 0.35415973275034407, 1.06919181267236, -0.9857341233608374, -1.593270413391795, 0.01285459082016315, -0.2398074888513475, 1.49566486995914, -2.0135806580822413, 1.49566486995914, -0.6973800351812356, 0.6448709098695745, 1.49566486995914, -1.9746063569612506, -0.3629323154206033, 1.49566486995914, -0.21893261845588025, 1.49566486995914, 1.49566486995914, -0.22681077185640205, 0.9647886739153017, 1.49566486995914, 1.49566486995914, 0.4437813741696868, 1.49566486995914, 0.46327242293992915, 1.49566486995914, 1.49566486995914, -1.3797070776911127, -0.28248080549170307, 1.49566486995914, 1.49566486995914, 0.015537929929983854, -0.08525949331698444, 1.49566486995914, 1.49566486995914, -0.9329011296770844, 0.050765066215533616, -0.00775057486528764, -1.6309999861520887, -0.04078957319218349, -2.0123031589734612, -0.16897144874918407, -0.8569092573817623, 1.49566486995914, 1.3523495444123366, -0.8536302204165609, 1.49566486995914, 0.8841130383442785, 0.07404363271779875, -1.9699251371603257, -0.3713922016613484, -0.05654382379467552, -0.9384397575006042, 0.3003646094943316, -0.43860779016380896, 0.47818980073193945, 1.1124583425948484, -0.6834725079028819, -0.7221579988023178, 1.4490217193151875, 1.49566486995914, -0.35243559316462875, -1.297340175973937, 1.49566486995914, 0.901116772266625, 0.41612002045470753, 0.3741838509950958, 0.7525751040513297, 1.49566486995914, 0.6552853841834856, -0.4925052092977523, 0.3029283463884087, 0.6518237739218823, 0.7709666006461146, -1.429090027230115, 1.49566486995914, -1.146155564382863, -1.3499361927746152, 0.8376556309694861, 0.07457533139326673, -0.44003582005787895, -1.4520234522380087, 1.269422371427326, 1.49566486995914, 1.49566486995914, -0.6488264190580453, -0.6322926978546121, 1.49566486995914, 1.1565497508362816, 0.6812986947593611, -1.0151547262865748, -0.6324669606818625, 0.5856282312508986, 1.49566486995914, 1.49566486995914, 1.49566486995914, -0.2452421929730741, 1.49566486995914, 0.048558593819798226, 1.49566486995914, -0.206158142254389, 1.3871702387841824, -0.8427083791100493, 1.0457672560729254, -0.7651948342116005, 0.08820655699125247, 0.9396009270578812, 1.49566486995914, 1.442145448658923, 0.5785648465264325, -0.2817777569369362, 0.9132706192052957, -0.8297894549603054, 1.49566486995914, -0.7896890424325641, -0.6550659535628353, 0.20144980737121676, 1.49566486995914, -2.0135806580822413, 0.24131418544022903, 0.4025768686946744, 0.48552785931291115, -0.2969310835127375, -1.2404199307818058, 0.09643683439373703, 0.41428160759970617, 1.4526396006667044, -1.0090748041943536, 0.7676672587202108, 1.0959388434314006, 1.0995094322162309, -0.016786025350594192, -0.8560193517836218, -1.0314062342387993, 0.15781624600727723, 0.8228223859682221, 1.448727340222552, -0.4933857763274729, -0.07287141109330868, -0.5667968624157401, 0.25213852866541603, 0.5516084262148958, 0.4635510378436762, 1.49566486995914, -1.1936929043719349, 0.8424287532072361, -0.6012574650162374, 1.49566486995914, 0.08825607710636635, 1.49566486995914, -0.5621145556140185, -0.7406373978851865, -1.0557713303257021, 1.49566486995914, 0.13137130508543726, 0.18054546479651712, 1.49566486995914, 1.49566486995914, 1.49566486995914, 0.2195491524218005, 1.1905603029788023, 1.084652369581741, 1.49566486995914, 0.4119298305063253, 0.28284082868831634, 1.49566486995914, -0.6568533898287433, -0.7426240283857779, 1.1865853284788264, 1.49566486995914, 1.151120358560817, 0.2962379903511798, -2.0135806580822413, 1.278556348093233, -0.3275569614894635, 1.493239926467302, 0.714236253957712, -0.24562104755620043, 0.6768031593260753, -0.19234408633518782, 1.49566486995914, -0.5244425992506391, -0.5257858109544666, 0.7450727209361069, 0.20995081758299355, 1.49566486995914, -0.3316830665829809, 1.208410848004644, 0.010517549816409023, -0.2754295866086707, 0.460259749362103, 1.49566486995914, 1.0047179935885646, -1.614583768128388, 0.043818199408990774, -0.11829575004581151, -1.5790640090864734, -0.6595251628217097, 0.0754958229448604, -0.7926922060920945, -0.7406739810844117, -1.0080395938985676, -1.582542840010939, -0.15172576879726743, -0.8845427667413501, 1.49566486995914, -1.6600307895211603, -1.7009340619083584, -0.3438002446474816, -0.2021715159626209, -0.6812141164937225, -0.37194274882353223, -2.0135806580822413, -0.19991792235008182, 1.49566486995914, -0.2121339692949415, 0.6817908116127075, -1.529137237868046, -0.5263281333224441, -0.21364544658023354, -2.0135806580822413, 0.6410689987476906, -1.9271066282706828, -1.481364377469876, -0.7982435138066822, 1.1585274711431495, 1.49566486995914, -0.09226016398562012, 1.49566486995914, -0.7438877337456038, -0.01618921372099965, -0.8327219367946267, 0.838999356722948, 0.8593860513122892, -0.8078194018112975, -0.8734344967661613, -0.7102295626298665, 0.28155244894586445, -0.4271033592676811, -1.3114322470722988, -0.6066259424096166, -1.3942954208773926, -0.7841209424298051, 0.3326088870810462, -0.8649806934461333, 1.3404143399196513, -0.5278970128173048, -0.6568360834909307, 0.4525227882621165, 1.1942837358559673, -0.12859781883889548, 0.9341341805087292, 0.5243201011871467, 0.38726195918270473, -0.4562402067932997, 1.1961761239229443, -1.5480667730838327, -0.7935348191235485, -0.03756493981365406, 1.49566486995914, -0.6060488360161379, -0.6371054875894215, 1.49566486995914, -0.5089479437152743, 0.41536882258386115, -1.1881733820599587, 1.1562797034265067, 1.49566486995914, -0.3218480975608657, -0.6971241241365078, -0.9976904038886728, -0.4875742738211715, 1.49566486995914, -0.9461141758946431, 1.49566486995914, -0.036009425609378684, 1.2051051661332097, 0.12152022917466797, 0.8039852083373703, -1.0822282657390931, 0.527567866799378, -1.1810268069691054, -0.5903864289489364, -0.0077447489693844565, -0.2118371913039958, 1.0437562938894736, 0.9299241139743554, 0.8719101853401283, -1.0876639979600955, 0.29447599954235276, 0.6212780876886682, -0.9324315453328677, -1.68922309015147, 1.49566486995914, -0.43558243669490765, 1.4747324260042283, 0.137216563517964, -1.6730217448764104, 0.9995754410110462, -0.180775741934085, 1.165440410673584, 0.41132051033553846, 0.5928074484937567, -0.46158066848140483, -0.3252050130462139, 1.49566486995914, -1.4464631486547597, 0.5338229941431877, -0.9333968448778998, -1.1444398380414467, -0.8976337261699101, 1.3648916701774987, -0.9136152723872973, -0.14017113238650852, 1.0835701237440891, -1.6973777380009791, 1.49566486995914, 1.3890694808463313, 1.49566486995914, 1.49566486995914, -0.18055641408858242, 0.4867766572332415, 0.5549896733830975, 1.49566486995914, 1.0199462000616162, 1.49566486995914, 0.12704300713434716, 0.5006676492482444, -0.4321616077045845, 0.31518003410815554, -0.3744000774425612, 0.3413108907012371, -2.0135806580822413, 0.6418808544758088, 1.49566486995914, 1.3372543054456212, -1.3627945875794925, 0.7688816153148056, 1.49566486995914, 0.7965964301921261, 0.9732708356403555, -0.178850111990524, 1.49566486995914, -0.26705520395769927, -1.1369251177349142, 0.7607651142321755, 0.920695894874834, -0.07672969632548543, 1.49566486995914, -0.8946415289026549, -0.4275032898859577, -0.8389899153793803, 0.9271222007480598, 0.6109508304633238, 0.002786414612325665, 1.49566486995914, 0.41303897827503055, 0.6942565153317092, 0.8313460143640664, 1.2326911259012976, -1.8512647942134168, 0.29231613431378667, 1.49566486995914, 0.4241287424632551, 1.103446709742761, 1.49566486995914, 1.349598008050555, 0.6027647613296983, 0.04061241451719125, 0.7039600589963986, 0.7014528675624971, -0.4591653205828076, 1.49566486995914, -0.5003931296414047, 1.164958232113237, 1.2523792270327405, -0.9319629890879266, 1.49566486995914, 0.47216650977482466, -1.0145586857314353, -0.41184430981635584, -0.7861236798190506, 1.0326699566988349, -1.7542853889769832, 1.49566486995914, 0.6432533670089929, -1.7901061240818867, -0.2865373425342251, 0.752955672133249, -0.21701555600628422, 0.2608365912383936, -0.8470518415254554, 1.49566486995914, -0.2520680867648249, 1.49566486995914, 1.49566486995914, 0.04675239474210506, -0.020768367895383333, 0.49515857927890206, 1.49566486995914, 0.17669146331132635, 0.16071548596501453, 0.8490474849949111, -0.6612528836546769, -0.0032577810300705983, 1.0714471197836921, 0.7279675478852082, -0.5513320217593803, -2.0135806580822413, 1.49566486995914, 1.49566486995914, 1.49566486995914, -0.2567219494865829, 0.8686089585655558, 0.4754063932926082, -1.795388947954346, 1.49566486995914, -0.052394757817339085, 1.49566486995914, 1.49566486995914, -1.6206711439403607, 1.067789485260178, 0.10603911027977135, 0.01805848665447763, 0.5811191591771446, 0.17315617260163155, 0.819887162535825, 1.49566486995914, -0.4276300887966389, -0.8927340620462996, -1.1987216806295988, 0.37320441508502333, 0.762334165076912, 1.49566486995914, 0.12731408264339802, 0.833633192552948, 1.49566486995914, 0.4214095912286574, -0.9707122221424618, 1.49566486995914, 0.8769355346002063, 1.49566486995914, -0.827396382546017, -0.5783885960753725, 1.49566486995914, -0.24059741179491542, 0.15459966607307835, 0.13498610213912676, 1.089071825668618, 1.49566486995914, 1.49566486995914, -0.15228454075365763, 1.4764462674969758, 1.49566486995914, 0.600128714786564, -1.1349623905424797, -0.9842352402916684, -0.3528057089039144, 0.7992974183395182, -0.4794791914734503, -1.0537749328819943, 0.142334784412615, -0.12017580092147899, -0.014133700568930098, 1.381964629451082, 0.5683076714017248, 1.49566486995914, -0.3646674042983839, -0.18853652066729057, 1.0975772909772565, 1.254597522570144, 0.4101035834927647, 0.4609614271178285, -0.6375008774359054, 1.49566486995914, -1.0788375943275266, -0.3162639763443975, -0.5221693004019772, -0.504102683178343, 0.8185867883018292, 0.4924339448481738, -0.4837463175176342, -0.16841062059423528, -0.5709346193010498, 0.16617297962067734, 0.4340601814674191, -0.25425828092201636, 1.49566486995914, 0.9753475961774583, 1.49566486995914, 1.49566486995914, -1.3205005967344348, 0.26042723637674503, -0.6069826928583102, 0.5214345692197533, -1.027426547617141, -1.6706958844522768, 0.07021636181377862, 1.49566486995914, -0.09163696447460652, -0.7185075609737341, -0.35221318102130583, 0.26923067912548787, 1.49566486995914, 1.49566486995914, 0.6837029049158074, -2.0135806580822413, 0.06199756485321061, -0.46356798438152047, 1.2130849300121593, 0.6190957756259174, -0.6817057192974345, 1.49566486995914, -0.7363380580636945, -0.15082875217913422, -0.5795609719495355, 0.6525761712418873, 0.8560846531878409, 0.6723434360175664, 1.49566486995914, 0.39368261050991016, 1.49566486995914, -0.5733467115519368, 1.1534054805511469, 0.7081579596893458, -0.8570267177240163, -0.6966625075616766, 1.49566486995914, 1.1114919292756027, -0.25020894057442483, 1.49566486995914, 1.49566486995914, 0.6968132268807246, -2.0135806580822413, 1.49566486995914, 0.42297367292689775, 0.16603624241700385, -1.1011715089452203, 1.49566486995914, -1.1083360757734106, 0.858497602188128, -0.6616194867214387, -0.20884850670925745, -0.3611148072508764, -1.4794081187353902, 1.4398486748768005, 0.004238433489497485, 1.49566486995914, -2.0135806580822413, 1.49566486995914, -0.4240286570335417, -0.6348745978358878, -0.026890527732850063, 1.49566486995914, -0.5184722554062242, 1.49566486995914, -1.3102008840021915, -0.5832578455954057, -0.00836794848039805, 0.07944423821354837, 0.5646241630464399, -1.5241838127198037, -1.563082163006795, 0.08103607859222808, -0.8241333667945318, 0.006070506398961276, 0.7907755034424598, -1.5479776711465973, 0.9207613505287262, 0.1173413483183265, -0.46500081207221083, 0.2840579268809799, 1.49566486995914, 0.12407111482778711, 1.49566486995914, 1.0075538340909613, -0.24231707918355913, 0.6284725550707944, -0.00106673012347211, 1.49566486995914, 1.49566486995914, 0.5414777073011037, -0.4316837128912164, 0.283083117417645, 0.02335936652046826, 0.79777840165953, 1.0080857041163052, -0.08556586690117086, 0.16366904383448608, 0.9094628821875157, -0.7154994281677006, -0.37602481699807333, -1.0677970932296021, -0.3184735330379533, -0.5752586335051609, -0.10102539571127582, -0.6906949909902752, 0.9098617847065235, 0.4429655773943413, 0.1067735158624394, 0.024737362249782957, -0.39472885577269934, -1.3084573989803217, -0.6588404487040314, 1.49566486995914, -0.7622289391508197, -1.5645897420823371, -0.9436409974117879, 1.49566486995914, 1.49566486995914, 0.9259947185422731, -1.4765120059129506, -0.3278506551825888, 0.42112669257793844, 1.49566486995914, -0.7865813553466543, -0.8909757552598722, -1.5632576681206676, -0.584850971098189, 0.11402470005461708, -1.536275459652289, 1.49566486995914, 1.49566486995914, -1.1579854743747209, 1.49566486995914, 0.32878161617702606, -0.2781442827464066, 1.49566486995914, -1.140592433526607, -0.887324889056592, -0.905161554742207, -0.14678558042719747, 0.2974436081019268, 1.49566486995914, 1.49566486995914, -0.21865400355214026, -1.1450001521467539, 0.7205487835110833, 1.3588471318353508, -1.2710691980170612, -0.4251491138942737, 1.223387170155126, 0.23378250149564958, 1.49566486995914, 0.5415313398133208, -0.1553313129574748, 1.49566486995914, 0.13810329914333228, -1.0049227395941205, -0.926548761276778, 1.49566486995914, -2.0135806580822413, 1.2929202657751007, -0.7358536519549199, 1.49566486995914, -0.21510466215234292, 1.49566486995914, 1.49566486995914, 0.146210718682356, 1.49566486995914, 0.949002552235253, -0.34847518340439687, 0.03509100735653942, 0.44472259905667216, 1.49566486995914, -0.0917663336334807, -0.10467120709311492, -0.8573053326277635, 0.6359430671084606, 0.8413327993792404, -1.4357305204524644, -0.8332808801008996, -0.6130891741818262, 1.49566486995914, 1.49566486995914, 0.16448329846091445, 0.509634045732197, -1.2491612591993044, 1.3223167083678606, -0.6682359909606863, 1.49566486995914, 1.0859272126837247, -0.8306187027011741, 0.4038758721296428, 0.7217350387254731, -2.0135806580822413, -0.46178200458958457, 0.3767505008371105, 0.19839206877513146, -0.512258423383329, -0.5450640431746268, 0.03806735475996826, 1.49566486995914, -0.04914750625474221, 0.4157754358474339, 1.49566486995914, -0.7707176978462248, 0.9214741660266097, -0.9085047622372113, 0.3574830636593426, -2.0135806580822413, -1.3204967841996207, 0.8678920306705692, 0.893761064648082, 0.024252956141008492, 1.49566486995914, 1.49566486995914, 0.357489574954763, -0.16301378479583728, -0.2696674328676074, -0.307154331361351, -0.9261593686760731, 1.1400179144815241, 1.1029796099717921, 1.2791934269444662, -0.13424242656276675, 0.3047124413316688, 0.4748010141690417, 1.49566486995914, 1.49566486995914, -1.0050195522759207, 1.49566486995914, 0.860606405152663, 1.49566486995914, 0.051085833189581153, -0.22923879964607444, -0.180529512157536, -2.0135806580822413, -0.9748146809526287, 1.49566486995914, -0.06931761459664959, -0.24491114500626862, -1.4253566132224802, 1.49566486995914, -1.0444058641816893, 1.49566486995914, 0.045909524685837304, 0.19170856673308156, -0.8173485112988677, 1.49566486995914, -1.6366307573732002, 1.49566486995914, -0.8246236844741401, 0.5779685489464723, 0.5936602568430308, -0.9338452675120287, 1.49566486995914, -0.7523402519415425, 1.49566486995914, -0.9585677137722111, -0.36322138266698406, 1.49566486995914, 1.49566486995914, 0.7189296985015915, 1.49566486995914, 1.49566486995914, -0.008925178287878059, -0.18644845103815424, -0.15156692745915384, 0.514055215317867, -0.5367689955177603, -0.06761525354581857, -2.0135806580822413, -1.1602553462257967, 0.7882815059492679, -1.680814180499817, -0.20000085569166248, -0.31159572023277843, 1.49566486995914, 0.7383893902439327, -0.4225555621212056, 0.9356310930542844, -1.6340937082228308, 0.1218233471111442, 0.11586277020985282, 0.14052036054072248, -0.03751387754962299, 1.49566486995914, 0.05360656126394369, -0.4126206961194556, 1.49566486995914, -1.7923600818129193, -0.7062573297279527, 1.49566486995914, -0.8038661030710584, -0.20012714055270928, 1.49566486995914, 0.363547649937372, 0.4893434784251389, -0.23838734105171827, 0.0864347992393019, -1.74471911798434, -0.4964522537674059, -1.0536561874156367, 1.49566486995914, 0.22406987628734676, 1.49566486995914, -1.3529883624996262, 0.03518165144269205, 0.10003758075732402, -0.45978800604418685, 0.9805405256194906, 1.1209836844894856, 1.338684048838491, 0.10588746563658831, 1.221169217317481, 1.49566486995914, -0.959274103649619, -0.4249296146988883, 1.49566486995914, -0.7780878845295667, 0.4638769453140957, -1.9976688552817397, -0.023028472803328745, 1.49566486995914, 0.4432585856879424, 0.6576078604474958, 1.261811009788869, 0.6559166371388228, 1.49566486995914, -0.38526914298624876, -0.21042629639784166, 1.49566486995914, -0.5592082903112264, 0.4286895622005573, -0.46663103482386753, -1.0804519672153428, -1.3383494282614836, 1.49566486995914], [-0.8347561996405085, -0.41780272250525397, -0.8347561996405085, 0.18963210224139268, -0.3369535465196679, -0.6232900497835911, 0.5987949453567453, -0.604034792586888, 0.13834726419457946, -0.008989517100074408, 0.07542834883347257, 0.06985400822673031, 2.9278541902643647, -0.06255103488534094, 1.355923125525755, 0.7369044123930353, 0.47152983373598667, 1.525470724381765, 0.40722753062026906, -0.8347561996405085, 2.5360850916777817, -0.06415761262638374, -0.8347561996405085, -0.8347561996405085, 1.5967425493702345, -0.8347561996405085, -0.8347561996405085, 0.2780065582403639, -0.5890743021782026, 4.945526427448397, -0.8347561996405085, 1.3109242290555527, -0.022892825619306587, -0.04773173408964535, 1.094746682235304, -0.7418838325112307, 1.9197696641733462, -0.6192351435094018, -0.20165128988882486, 1.452686847089501, 1.8109359487385794, -0.058372939620825105, -0.6048486557148129, 0.03418360192847406, 0.4720727786255102, -0.6006624468691453, -0.8347561996405085, 0.418074723572381, 1.857667161289436, -0.8347561996405085, 4.572019359583323, 2.259706546172696, 1.408283833300585, -0.4253555354907445, 0.9090343468807152, 0.34483666308165467, 1.5271851285127616, 1.5169939385481928, -0.16200203659761314, -0.395745176255603, -0.8347561996405085, -0.8347561996405085, 1.7583620710283627, 1.0597602109252802, 0.8117919683655422, 0.8428349732168278, -0.028752959363225254, 0.6335360584258282, 0.2559282181679812, 4.37444417052788, 1.1905378381370548, 0.8902195285646676, 0.5169306849970229, 0.7895737022706818, 0.885456014034996, 1.4536764379709475, -0.8347561996405085, 0.39830152727724527, -0.5887534388623854, -0.7151832174007248, -0.23079819959512363, -0.2504652542876528, -0.8347561996405085, 0.051618313391575486, 1.819391275701787, 0.427989697085726, -0.6075540251590318, 0.9215281977780405, 1.8316636214000106, 0.09170951300475214, 1.3323525959056244, -0.8347561996405085, 2.5351377091529206, -0.8347561996405085, 0.33047988074811196, 0.14471132670008235, 0.18697687738888108, 1.6820484755795673, 0.3621380103256078, 0.1613250146890514, -0.2436955127245689, -0.8347561996405085, -0.2095023545705278, 1.8578578082782344, 1.1795246492951519, 0.6130630546722378, -0.8347561996405085, 1.1161761131615997, -0.8347561996405085, 1.1257152017514125, 1.1135879251107272, -0.8347561996405085, 0.02113093367140387, -0.8347561996405085, -0.5927488233732066, 1.668064740632957, -0.1890408339727726, -0.5834254540680418, -0.29698241017293114, -0.8347561996405085, -0.8347561996405085, -0.8347561996405085, -0.8347561996405085, 0.3830638671823854, 2.2565763886355117, -0.8347561996405085, 1.7955972900761679, 0.5005086194000615, -0.8347561996405085, 2.2041149483121765, 2.9990064840245094, 1.4698133311418475, 0.18145813476445713, -0.44814933380926975, -0.8347561996405085, -0.5780655026506926, -0.8347561996405085, -0.8347561996405085, 2.667448138154724, -0.013823438006093577, 0.31426344788000865, -0.8347561996405085, -0.6029130789085468, 0.9373987172027237, 5.0, 1.3207156810547565, -0.5749662033237828, -0.5092005958959381, -0.8347561996405085, -0.0194386568741569, 0.09172662689723544, 4.2483401434054695, -0.8069641305190703, -0.03451360198089164, 0.09072852340605621, 1.0361712373173804, -0.5091954971973992, -0.21523524253354628, -0.3965753330505934, 0.7535247508583702, -0.8347561996405085, -0.8347561996405085, 1.2051373185210097, -0.8347561996405085, 0.5146349405596901, 0.24521749299064818, 0.3996570717041859, -0.41466440705040186, 1.874293884212056, -0.8347561996405085, -0.7013438975481445, -0.8347561996405085, 0.17510657515450023, -0.028284411135845098, 5.0, 2.1088192972352857, -0.8347561996405085, -0.7077808936109936, 2.815468588418557, -0.8347561996405085, -0.2769371650584158, -0.8347561996405085, 5.0, 2.467101739939166, 0.08051383509170139, -0.8347561996405085, 0.9287915820325988, -0.8347561996405085, -0.8347561996405085, 5.0, -0.8347561996405085, 0.030868738494682597, 0.5552138417721458, -0.8347561996405085, -0.18914205422287844, -0.29464361498533354, 1.0217790744496247, -0.8347561996405085, 5.0, 2.090014055605195, -0.8347561996405085, 0.6959936967470445, 2.0864226210281, -0.8286133236654384, 1.4753486556206625, 1.6767756232341975, -0.6683436796741951, -0.8347561996405085, -0.8347561996405085, -0.4449128129869262, 0.27764326488541047, -0.8347561996405085, -0.8347561996405085, 1.1185332193274138, 0.47264542897608297, -0.8347561996405085, -0.8347561996405085, 0.8107167193486698, 0.661056704981082, 0.8274814174873695, -0.8347561996405085, -0.8198467599509328, -0.01017418862123241, -0.7421137838152907, 1.2581297328764258, 3.2839196301709284, -0.8347561996405085, 2.0564020160749505, -0.6309150204375198, -0.8347561996405085, -0.8347561996405085, 0.8187073996972913, 2.646757885506914, -0.6971676422487538, -0.8347561996405085, -0.3440744332342328, 0.7054982028598284, 4.431858885639524, -0.6159782722294161, -0.8347561996405085, -0.8347561996405085, 1.1422160089884077, -0.3694850609884541, -0.41289675477206866, 3.4477210401112033, 0.28064662000679, -0.5170002523954275, 0.5845387182256729, 1.0549019936123085, -0.43406358055539873, -0.8169527649856128, 5.0, -0.8033408152209579, -0.11358488395456111, -0.8347561996405085, 1.6631859511798122, -0.11141124226308344, 1.699784497958006, -0.8347561996405085, 1.9804482557334013, -0.8347561996405085, -0.8347561996405085, 1.0686005561328678, 1.832845455384591, -0.8347561996405085, -0.6648233719417084, 0.6196070347313608, 0.5582900861143625, 1.1400321698998612, 1.1005648736416895, -0.2349139133914391, -0.46255519665830314, 2.2281290203686077, 0.9556240372947699, 5.0, 0.9484833764971792, 5.0, -0.8347561996405085, -0.8347561996405085, 0.37615411092379886, 0.3964381524759262, 3.4339107495879078, 0.2366054808045416, 3.542351820898752, -0.11209105395596859, 1.6047713591166215, 0.8682101761003275, -0.7580347027666122, -0.28766859538546163, -0.5585876096739197, -0.8347561996405085, -0.8347561996405085, 1.7964675270753074, -0.664330804410564, 0.6511521948838621, 1.805969550343593, 0.14914205139302295, -0.8347561996405085, 3.1071020852570137, 1.8273988039238418, 0.12819819391358053, -0.8347561996405085, -0.8347561996405085, -0.8347561996405085, -0.8347561996405085, 3.852674397713651, -0.8347561996405085, 1.7458208687394094, -0.8347561996405085, -0.8347561996405085, -0.2507756541873394, -0.2665492096667875, -0.006803461186069634, 0.7829177281897528, 0.8175197132935232, -0.8347561996405085, 0.8307506143168718, 0.15039305033168457, -0.726601010139866, 0.5775416190443065, -0.8347561996405085, 0.443873606136138, 0.7735359455339512, 0.5164798713732528, 2.827917570768738, 0.6956969968286358, 0.7743081101751298, -0.8347561996405085, -0.046715452629766056, -0.051664825805286634, 0.2034726302638433, 1.3397702712115982, -0.8347561996405085, 0.3150928066178368, -0.8347561996405085, 2.2393465118441, 0.8766050280652279, 2.5624745365417496, -0.2533737736162263, 3.9149675475863885, -0.7054804162513212, -0.8347561996405085, -0.017300129697827328, 0.493788091361994, 0.28473834775172374, 4.103333156987088, 3.0853959945144007, -0.8347561996405085, 0.24311665184699116, 0.1975766726206308, 0.4994042856332562, -0.48073143623485454, 1.4466398792965522, 2.9552889126651216, 0.3886511540497641, 1.1908923528632254, -0.8347561996405085, -0.5450246060297126, -0.8347561996405085, -0.04579706618181329, 0.33338924247035606, 2.18887808627448, -0.8347561996405085, 1.4649841985788112, -0.389159874570063, 1.3175174226396944, -0.8347561996405085, -0.38390196362823614, -0.08894588880341668, 2.195513310869174, 1.2890228803271946, -0.8347561996405085, -0.4523718099193199, -0.36581661389518655, 2.5857207002618687, 0.11686782168611053, 0.07306521290242095, -0.8347561996405085, 0.7508473577513349, 0.657008249668957, -0.8347561996405085, -0.8347561996405085, 0.686289498997603, -0.8347561996405085, 2.981879822626101, 3.1170132458305755, -0.7438095389021752, -0.7014970801868272, 2.102049466999187, -0.8347561996405085, 0.5634163619608944, -0.1638346418616668, 1.3015647920002924, 1.0149693413554066, 1.0541230898217508, -0.45294188875236774, 1.8766642913305955, -0.8347561996405085, 2.2041670880467974, 2.3510936679599417, -0.6585025597007598, 0.8392337846077436, 1.040422221802726, 0.7080855041805095, 1.4126465457886819, 1.0509893853638446, 1.3812804164596266, -0.49671723058300804, 3.8995512113601576, -0.5354546592296036, -0.6642710387963972, 0.5803503368910627, 1.0372665264363432, 3.5536296100265186, 2.3718335774978603, 1.618584487176495, -0.8347561996405085, 1.897584207095161, -0.8347561996405085, -0.29743951958098325, -0.8347561996405085, 2.4718900829139066, 0.9185542820986435, -0.8347561996405085, 0.17702058224912548, -0.8347561996405085, -0.5825444211289454, 1.5198343126623943, 2.5155718303739794, 5.0, 2.3424860007517196, 2.478672859410637, -0.8347561996405085, -0.8347561996405085, -0.586768027819974, 1.570529209120112, -0.8347561996405085, -0.8221395324566461, 0.47326356858491486, 5.0, -0.6656299860504068, -0.19579350597988204, 0.521559416539272, 3.0881860023543637, 3.7156841615112004, 1.156437387623394, -0.8347561996405085, -0.42006259870678575, -0.2956082887487079, -0.8347561996405085, 1.157912551951679, -0.3014071494371547, 1.0824424142505822, 1.4920548295674558, 0.3845013454780066, -0.8347561996405085, -0.8347561996405085, -0.010635465661133063, 1.3804844874496032, -0.8347561996405085, 0.30855485632393687, -0.8347561996405085, -0.4712494530686519, -0.19609463954918388, 0.5367423653819934, -0.34624922767494476, -0.4938821103451263, 0.18750430450024694, -0.8347561996405085, 0.787651980623486, -0.6350707922697414, -0.6260923166682846, -0.819810180945471, 1.1648881035896705, 0.4303295120130312, -0.8347561996405085, 0.7928182480011478, 1.5193324233802197, -0.8347561996405085, 0.6150683063024363, 0.12696572763569433, -0.13786763525568557, 0.7618619653615267, -0.8347561996405085, 0.6966064273017643, 0.7561961142001561, 0.4832993147488443, -0.8347561996405085, 0.13055467936827966, -0.3234786173506392, -0.24714032646631318, 0.8515843399078988, 0.4764785862003807, 1.567736186397553, -0.8347561996405085, 1.2576849490178832, -0.46288288779650993, -0.8347561996405085, -0.8347561996405085, 5.0, 0.4370159896121653, -0.3531630628923624, 5.0, -0.8347561996405085, -0.8347561996405085, -0.8072485547665318, -0.6103529224690399, -0.8347561996405085, -0.41376637106009273, -0.1641583870505704, -0.8347561996405085, 3.6377366770317914, -0.7256498035911084, -0.3938967428578251, -0.039419702723603456, 0.313428325396006, 5.0, -0.18062292702317892, -0.8347561996405085, 0.09088893289571118, -0.8347561996405085, -0.8347561996405085, -0.8347561996405085, 2.6148824183621753, -0.15446616015856912, -0.6081777733362559, 0.4093124992936958, 0.4773989234547283, 1.166189646148608, 5.0, -0.043857432584972045, 1.287285421211512, -0.8347561996405085, -0.8347561996405085, 3.4818754038198527, -0.8347561996405085, -0.8347561996405085, -0.5814593737435663, -0.7731271663364765, -0.8347561996405085, -0.7308377182693128, -0.8347561996405085, -0.5548496872710076, -0.34262746692567997, -0.7975127811095725, 0.249750280327367, -0.4745152359869528, -0.3781567057792009, -0.8347561996405085, -0.6410755073695924, -0.550205615296636, -0.5481292700742143, -0.8347561996405085, 2.054640792590423, -0.8347561996405085, -0.6535829363227954, 0.16185793952753721, -0.6311641029452241, -0.7018725549976359, -0.3711380147179392, -0.41423780116055936, 2.4881374626653017, -0.3021981127581674, -0.6659149478780403, -0.10223766385366047, 0.32106919068842216, -0.5823917483601158, -0.5525658028498381, -0.24937852211493178, -0.5548496651027532, -0.6345565331015559, -0.8347561996405085, -0.8347561996405085, 0.48772090612092683, 0.9330730700361685, 0.12320448422903622, 0.7151401521505946, -0.8347561996405085, 0.14676419574097407, 0.06137190201206791, -0.8347561996405085, 0.7320295245526773, 5.0, 1.2133716723232422, 0.4908456546040173, -0.09935304190345123, -0.8347561996405085, 1.284261671295974, 0.19767492232463235, -0.12042387914474233, -0.8347561996405085, -0.3707637702452547, 2.0151123119498, -0.17727999857917456, 0.273395561301725, 0.9931047032565252, -0.44848704499851577, 0.001562306028910191, 0.8094047133735837, -0.8347561996405085, -0.8347561996405085, -0.8347561996405085, 0.20384736243812673, 0.14515398240619168, -0.14725132438137922, -0.3634028013343171, 0.013674862948607171, -0.8347561996405085, -0.8347561996405085, 0.31306441132992574, -0.22737293825385932, -0.7267147443696435, -0.12702336851317045, -0.8347561996405085, 1.0892498418463346, 0.6905640705057611, 3.332743703293815, -0.8347561996405085, 0.8936096753907984, 0.13587763196884922, -0.8347561996405085, -0.7054150753211451, -0.8347561996405085, -0.6390324588654487, 0.2065813289306674, -0.8347561996405085, -0.8347561996405085, -0.8347561996405085, -0.8347561996405085, -0.11272231717147221, -0.8347561996405085, -0.33885425266158453, -0.6333769159424264, -0.19494122526688862, 0.9503882502709418, -0.4830991388263374, -0.19040121107919905, -0.8347561996405085, 0.7694293207219849, -0.28426231007006086, 1.1897908566329953, -0.37463266269582735, -0.8347561996405085, 1.15352855793925, 0.46252154183221045, -0.3254346997923299, -0.8347561996405085, -0.2840843876593414, 1.9023283909069153, 0.6172749343566303, 0.8448419983073848, -0.47520189767048343, -0.8347561996405085, 0.960211269864564, 1.2885463515281863, 0.6541027895595026, 0.7287370953924567, -0.8347561996405085, -0.8347561996405085, -0.2746733429075794, -0.11542742059663795, 0.5600964441650743, -0.8347561996405085, -0.25066707407673633, -0.8347561996405085, 0.1097697239371842, 2.857026794442358, -0.3926669367704797, 0.10032533813063507, -0.8347561996405085, 0.8726266244373666, -0.43721142835969146, 1.0412741921601576, -0.18201535942563016, 0.03600148747153213, -0.8347561996405085, 0.5181972017138422, -0.43270289309341037, 1.9221343962187305, 0.5766250060567145, -0.8347561996405085, 0.665421545621612, 1.4548529515744375, -0.8347561996405085, 0.18680219154332176, 0.4046438648933249, -0.8347561996405085, 1.411940353872918, -0.7008630126871283, -0.8347561996405085, 3.040806235349488, -0.8347561996405085, -0.337667275641958, -0.2649447600781781, -0.8347561996405085, 0.9447014722773039, -0.2920399534928193, 0.35902106506810544, 0.21460925194687291, -0.8347561996405085, 0.14184798627420528, 0.014762614861034548, 0.49232809011978906, 1.241165520447101, -0.8347561996405085, 0.28726260255657327, 0.23111830577454373, 2.067607802712067, 0.09245534175957731, -0.8347561996405085, 0.3741468198141846, -0.8347561996405085, 0.37506680237646156, -0.5085218039427591, 3.112090829252557, 0.35991834733776146, 1.0957368051548624, -0.425244782891198, -0.8347561996405085, 2.1934199182590466, -0.7356734126356922, -0.6128853130232972, 0.445239081941102, 0.4300876120197888, -0.3208724286771093, -0.8347561996405085, -0.012705891959599662, -0.8347561996405085, -0.3971405348676496, -0.8347561996405085, -0.8347561996405085, 1.0340140001342417, 2.5740538139308886, -0.8347561996405085, -0.8347561996405085, 0.34599207250685526, 5.0, -0.424204914408518, -0.8347561996405085, 0.5801541921751343, 0.40426797996980723, 1.7624236499471668, -0.16360857000214699, 0.5948450944406928, 1.921443633408112, -0.08405663593413533, 0.7713212482351157, 1.4384417040856843, -0.18107932704708646, 1.6693384398642452, -0.8347561996405085, 0.5080593042331188, 0.3214630762346026, -0.7484427872262812, 1.0269554505513696, -0.14338810700396334, 1.3189966659268133, 0.1905522621497048, -0.8347561996405085, -0.30772665375108665, 2.365952073556605, 2.3060048570494325, 0.1021664560044231, 2.337206054564906, -0.18393450955530302, 0.7735616607091823, -0.7352787733688574, 0.1671602313148998, 0.0065275516746621885, -0.5773348148137001, 0.42433344253243827, -0.8347561996405085, 0.5061033548009544, -0.8347561996405085, 0.033713634932805096, -0.7089620625479386, -0.27317179835641764, 1.394187838313126, -0.5898622949531097, -0.19953799018613055, -0.8347561996405085, -0.7290452597141804, 0.23394431485982173, 1.2433740106346693, 0.9670098301585185, 0.26632291270897973, -0.8347561996405085, 1.168927336907918, 1.865795994200184, -0.8347561996405085, 0.8345248926571766, 1.223609858987374, -0.2093898285106218, -0.8347561996405085, 3.72145322806559, 0.4706495766857967, 0.16649686846686262, -0.4227933729706766, 2.3441023325247414, 0.9476869154490438, 0.20205696553066357, -0.3689726639536488, 1.7017943605851404, -0.8347561996405085, -0.4881670456587372, -0.09716676430690233, -0.8347561996405085, 0.3437992774434788, -0.8347561996405085, 0.6427839448243843, -0.8347561996405085, 0.2012349666533325, -0.21380219788882704, 0.6327741798547362, -0.24029991250784308, 1.2998255594242414, 0.7598579551535798, 0.13787720852589277, -0.8347561996405085, -0.4403194176423709, -0.8347561996405085, -0.8347561996405085, -0.34081490176370505, -0.303577332880928, -0.373972314730403, -0.49326864823799604, 0.7116180598736188, -0.20873191905319402, -0.6361085325999881, -0.8347561996405085, 5.0, -0.8347561996405085, 2.3816514540564393, -0.6369652247956319, -0.14559513408673694, 5.0, 0.5697789170250895, -0.5324859974265366, 0.28343875599917195, 1.37546062893892, 0.24818750705724063, 1.7788946630500821, -0.2270519419285156, -0.030560824855243914, 1.0134576437436775, -0.8347561996405085, -0.8347561996405085, -0.7913230663837488, -0.8347561996405085, 0.2869542864728113, 1.5833809443182827, -0.8347561996405085, -0.38495096543177576, 1.749321679492053, -0.8347561996405085, -0.8347561996405085, 4.305520052365314, -0.8347561996405085, 1.2966891947757901, 0.9936619245019489, -0.11104329357468096, 3.5691441959567576, -0.4261555877961065, -0.3920246781007377, -0.5973173459362001, -0.6961305004613779, -0.7156693118015518, -0.5586623166916279, -0.4860604851054147, -0.35799441228085704, -0.8347561996405085, 0.11103278240629907, -0.8347561996405085, -0.7597753651950757, -0.8347561996405085, -0.1186055502365945, -0.23020262726938587, -0.8347561996405085, -0.7875655943513893, -0.3399153139955805, -0.6246747011287069, -0.6453281766422886, -0.2626924654196891, -0.6992058913257958, -0.5498074069408243, 0.19161465357897198, -0.5804765220114918, -0.20427946947082984, 0.10195000516736155, -0.5402271297341126, -0.8347561996405085, -0.4056307546634623, -0.5233346537763919, -0.01763221015042705, 0.1526755824893284, -0.16027552859965546, -0.4485640575146927, 0.4934220491434805, -0.6673998884065718, -0.668252124783058, -0.8347561996405085, 0.15825169655643165, 1.1904599832272176, -0.8347561996405085, -0.5689985092089674, -0.5252757948145398, -0.7466644775595915, -0.46040735881507877, -0.3426509209389542, -0.11602990941778285, -0.745196650923543, -0.8347561996405085, -0.6032676158029674, -0.8319672101547514, 0.22243402507872562, -0.4044939665720532, -0.5688003250136238, -0.11231708147898103, -0.8007841227176915, -0.6743910132433473, -0.6972678760115331, -0.6333167069631696, -0.4850523172266858, 0.10786635760472521, -0.28402222787368836, -0.44582565737125024, -0.6601309510042437, -0.3838695536401377, -0.5203440675696116, -0.6076103325254942, -0.4412963282822357, -0.27445099531481704, -0.6664779993744073, -0.4331899739815643, 0.4000219611734652, -0.7009708169088233, 0.44600406406782594, -0.7302978215147835, -0.5688608221801895, -0.8347561996405085, 1.077304699584729, -0.4012339030634163, -0.4482970187208342, -0.23520852949391313, -0.39038755250497675, -0.8347561996405085, -0.37955765079138354, -0.8347561996405085, -0.14459064613825806, -0.14677022892194547, -0.21421093616553288, -0.8347561996405085, -0.40786438365165256, 0.5150642066400732, -0.6033535399574596, -0.11838719292964395, 0.6598860437967796, 1.5009861532915596, -0.3701118905530545, -0.44853151451706924, -0.8133984178983211, -0.4290848566109045, -0.1438065106396348, -0.6688767818587162, -0.7684618571742815, -0.8174965827501589, -0.8347561996405085, -0.8347561996405085, -0.8347561996405085, -0.0405437219004164, -0.18804760749758648, -0.5483537458194099, -0.5158495204719273, -0.8347561996405085, -0.794383310788271, 0.6227473009926134, -0.5972252146704451, 0.18447266268611037, -0.6243657865020724, -0.2725262144484994, -0.04756520616174687, -0.661460613994043, 0.3833388422113606, -0.7725899463986796, -0.2604573733267011, -0.10624639365369871, 0.11609095737496825, -0.8347561996405085, 2.4035781632679636, -0.570446406584209, -0.8347561996405085, 0.636672777766359, -0.18328076772972396, -0.5901156115974259, -0.23862931284776698, -0.2483553241596438, -0.8347561996405085, -0.8347561996405085, -0.4848217673797538, -0.5489544611801952, -0.027866051836682327, -0.5702970812218114, 0.03467955011843157, 0.25981670735554263, 0.49060118309325024, 1.7983016397806764, -0.6833427982663711, -0.6660754571248394, -0.8347561996405085, -0.6679487189676699, -0.21989239377808045, 3.6204496948167764, 1.0138332626481477, -0.1515902281641295, -0.8347561996405085, -0.23768658565636028, -0.4746926263595631, 0.48251509057720365, 1.0078863180195452, -0.6712941967609429, -0.07593711369028194, -0.8262163423518087, 1.082994847153042, -0.522571511614792, -0.378543231464883, 0.8353575322966768, -0.5310828134206472, 2.0137041844231542, 0.38239580466439205, -0.8347561996405085, 0.6082227493089184, -0.35703718705099885, -0.02973953536205854, -0.6805809219413986, 0.5933777333379889, 1.0715654271644053, -0.6264076822569818, 0.46005997885112165, 0.42705393072623526, -0.8347561996405085, -0.09902699121607897, -0.8347561996405085, 0.7478094201529236, 0.2492716233759284, 0.6708302450306283, 0.8922682299737121, -0.8347561996405085, 0.061747698262567804, 0.008830212607404027, 0.3487316253995337, -0.40596545097009545, 0.09591527425089981, -0.03058263841768506, 2.2185484328063256, 0.6436318362229817, 3.8118397635171433, -0.8347561996405085, -0.4821826366800194, 1.2400744876330045, -0.8158797300231488, -0.5326750704692753, -0.5232343645929761, -0.8347561996405085, 0.08856445840052819, -0.01584961646855252, -0.25193217202526685, 0.9520060008122524, 1.5071544257732021, -0.8024351145566512, 3.529982644264811, -0.8347561996405085, -0.6075159844342883, -0.49467212043119446, -0.7756046184139872, 0.05074816506544382, -0.5642472980605363, -0.6967393848239506, 0.19646914662517762, 0.42144146072173183, 0.24975870426408234, 0.19380602987405998, 0.12841943309361764, -0.12642398324765616, 0.5079489063256457, -0.09661903107440178, -0.7310542799476472, 1.122983540757352, 0.15578729603876526, -0.12775793579470285, 0.09288531722410506, -0.3474682156540888, -0.07535364523150802, -0.369619223264766, -0.3883630588298597, 0.37873210157758813, -0.20447459444705182, 0.6674551726175916, -0.15681089643837662, 0.022030698785565312, -0.6625570226098577, 1.9700823799232619, -0.8347561996405085, 0.3223976011718399, -0.6742956786648159, -0.43239643914302694, 1.9587919992269427, 0.7016299311203825, 1.5072574638201732, -0.7693258759780407, -0.8347561996405085, -0.8347561996405085, 2.5981235726426632, -0.10209064398973315, -0.005244944220809677, -0.11529982012366259, -0.14699785255928208, -0.1266572819581481, -0.20714351928085128, -0.47421758283361126, -0.8347561996405085, -0.023039934156251624, 0.25246145785426916, -0.6629010628357681, -0.3334649726435145, 1.216845349132351, 2.909319401339325, -0.1801254270554061, 0.5162362865926673, -0.3802386595700133, -0.2738520090778838, -0.2812805911650857, 1.3790987055234984, 0.8511608375736739, -0.43611188293586217, -0.33023080165615004, 1.5870534260338724, -0.2574560133482282, 1.5292976744948026, 1.5715870782254537, 0.12001544780785746, 1.2028763339067403, 1.2104984891923505, -0.48085316212038487, -0.2598103263139851, -0.8347561996405085, 0.3120465337557224, 0.25044751626830053, -0.37375741567115683, 0.06538409005981045, -0.8347561996405085, -0.6300721612326935, -0.2569946919718202, 0.39408494792289606, 0.2743902952182193, -0.23435106140936332, 0.3585618275076218, 0.02322769585623121, -0.35736926750360004, -0.3046533356184653, -0.2837056208627376, -0.6147935785400037, 3.355047095486005, 1.4608937122561338, -0.43883924328855906, 0.035120875729269814, -0.1621204594132186, 0.30309774144705837, 0.2165285794225812, 0.5903941522996348, -0.34159841655120143, -0.05767437358462197, -0.3806499693642423, -0.4985700532951788, 1.8896018620102253, -0.34198999659891355, 0.8179866654065748, -0.6019717704854288, -0.11004026873099966, -0.24683418287149322, 0.5443349925525885, -0.5323392657499181, 1.2396100183644512, -0.6557510581189002, -0.23581851118508482, -0.6926961168833815, 0.1674789221417735, -0.6920793295380752, -0.42261114991858195, 0.48864682977541174, 1.4998649716513335, 2.3998482214366765, -0.1593431761513603, -0.3842402511920986, 1.097245665230014, -0.8347561996405085, -0.793649957218673, -0.06720184600908433, -0.7980882440574355, -0.4464368361481649, -0.25821509871925297, 0.3866286998540626, -0.23557865067125788, 2.0881994509638044, -0.4944565784925671, -0.240391955100579, -0.1570202534339941, -0.2652306418883737, -0.3471212824709654, -0.3025563517510924, 0.35358496569650477, -0.2887676087711833, 1.8401553043006296, -0.8347561996405085, -0.23510469338977547, -0.05108153469254815, 0.14657851444117662, -0.6641964204517079, -0.6106844930517865, -0.8347561996405085, -0.8093787383660694, 1.0855065990623511, -0.4423710452610108, -0.5859595294096425, -0.129150678552716, 0.0287842131863456, 1.1453154856613499, -0.14942594147605578, -0.12165811888299102, -0.18854275763038186, 3.7943878494885475, -0.4363105991693151, -0.654456642653777, -0.6943934957949089, 0.6902177136972439, 0.21750761821488065, -0.8347561996405085, -0.6460141289416748, 0.6060114215847698, 1.3571721736580216, -0.7301028849687262, -0.39203057485643866, -0.5897617175823865, 0.16018716252142418, -0.6985575918066995, -0.42220746600390613, -0.5150028039908157, -0.1650454719231501, -0.1317520788832719, -0.8347561996405085, 0.3926622780212885, 0.5494825499234526, -0.8347561996405085, -0.8347561996405085, -0.12186876163737083, -0.8347561996405085, -0.05087803011612284, 0.26650114547526105, 0.32614022324470837, -0.21909110005046353, -0.15498915361903326, -0.8347561996405085, -0.24805188509187487, -0.2742457616145395, -0.5553617296137422, -0.15039651199513115, 0.18061662782315455, -0.3464091937995083, -0.7956992516285258, -0.4688490301335099, -0.08390828597493527, 1.7973030042513851, -0.1593786010220718, -0.1919310866596283, -0.33102788341540773, -0.8347561996405085, 0.407607494502616, 0.28109725628452326, -0.2837489376320551, -0.7568266603631343, 0.25906919381337384, -0.7331365662622784, 0.17360347882552182, -0.29793613281857617, -0.0004982775645539305, -0.18442779755471966, -0.5595697076853409, 0.20509907076093112, -0.3652087603564483, -0.3628605214924276, 4.7472893829862235, -0.7845552229774572, -0.8347561996405085, -0.5436791481585745, -0.49330903879771837, -0.5286939401461055, -0.4809005135120231, -0.5970266536147747, -0.4879724748888787, -0.04274139397978615, -0.5414051951154266, -0.3164937550457634, -0.20164149152032967, -0.4729830105715447, -0.20081918228743664, -0.00804213457522021, -0.7650422986164905, -0.20627474538649967, -0.6822329556883201, -0.8347561996405085, -0.4552381208913011, -0.681842461885079, -0.6077859272694892, -0.24100978435384784, -0.8185186085589892, -0.40431484707558923, 1.2964550980081362, -0.3102998560619017, 0.7505919794593489, -0.15364744218290688, 0.8937971301509541, -0.3027502796415697, -0.4651143442957567, 0.009107936499938973, -0.5784921307087896, -0.1517968362961886, 0.2201155803487714, -0.1880491592754019, -0.4293970743074608, -0.47420317346817753, -0.09113602367625245, -0.17498859911972559, 0.25248522222310676, 0.2500237479150355, -0.35997483546600323, -0.29080354126562846, -0.6447130519160694, -0.8205961938181477, -0.5772916753904177, 0.1729438402442418, 1.8532056670592199, 0.5607571468225693, -0.621947473785538, -0.8347561996405085, -0.2730344881879663, -0.2766128434948943, -0.021487358283201394, 0.21384781674087097, -0.4610955501081702, 0.37450603421030865, -0.8347561996405085, -0.663303782431373, -0.6693096059439495, -0.438866465905101, 0.7498469487616901, -0.4365678395946799, -0.3169503324157078, -0.6596590553704328, -0.4209567774208095, -0.32964790957199247, 0.7577287386441526, -0.20737100990866147, 2.229998247589118, -0.4214376511976991, 1.4299569376804768, -0.4629031717493887, 0.1367793478894068, -0.5526844251797364, -0.8347561996405085, -0.7419659492680093, 2.216359628028768, -0.8347561996405085, -0.325179277163835, -0.43095834013628076, -0.1796753228157805, -0.6975286190211112, 0.01860721090466201, -0.5342693891655733, -0.7601559109941041, -0.27983353618351514, 0.46791800436474223, -0.8347561996405085, -0.3414336620836639, -0.27612150630187543, -0.2790209809826084, -0.8145923294250631, 1.8269784938182885, 0.07139824883608444, -0.33990276676352543, -0.8347561996405085, -0.8347561996405085, -0.2343409526853047, -0.4925295586325427, 1.8078412604086151, -0.4436923175664757, -0.3404128139633533, -0.333849370176765, -0.15421197895232755, 1.4489260470479255, -0.17609550440405342, 1.05208786671145, 0.01926880029233815, -0.02486916984562167, -0.44342168751538485, -0.45694840172695517, -0.3749083471089467, -0.6205792491170157, -0.17580576531757233, -0.6536540409991449, -0.4729389844180827, -0.1588947123625692, -0.7353761474268045, -0.8347561996405085, -0.28580287074916494, -0.36523159365859575, -0.6098656864031066, -0.5847592292690532, -0.8010099091609351, 0.9227087903403645, -0.25030258363603825, -0.7144602662845569, 1.1759575111250136, -0.42541317295247677, -0.4266135395978293, -0.29335355558222226, -0.04498331389516207, -0.30872874752807766, 0.2090858983255103, -0.37360622817538064, -0.30628718031255886, -0.32191282919789993, -0.365482183607608, -0.04018681300276098, 0.5698935712374287, -0.7928076439071136, -0.04898149160605178, -0.1705736138874884, -0.5135240927418013, 0.15351336516387185, -0.37799407946409513, -0.610131018241369, -0.09429805916343337, -0.44771678682721894, -0.15547237723090024, -0.729222827432827, -0.4773130692207445, 0.05900495314123961, -0.4789562910864976, -0.08968639717715882, 0.9035712022386122, -0.41571318717139577, 0.08069499406757791, -0.1942491766975102, -0.42326715290612216, -0.8347561996405085, -0.3327504898005712, 1.398787307759422, -0.8347561996405085, -0.3340262728477766, -0.7777481833261551, -0.23884336951334073, 0.16771656583014952, 0.25177982836451257, -0.4883199179418567, -0.33045221818222226, -0.26467151417305523, -0.4542652005372483, -0.8347561996405085, -0.37370066493960435, -0.5416290723177501, -0.625693376760074, 1.3692400393766238, -0.47185105515961706, -0.8347561996405085, -0.4534171317926109, -0.27762287350700193, 0.1005885196482097, -0.1491228127638502, -0.034778911650899476, -0.19355477829315587, -0.14602284838930482, -0.33296476814869075, -0.6154864916713074, -0.8347561996405085, -0.6333973107365773, 1.5227511229181596, 0.20316963456116438, 5.0, -0.40468013557344945, -0.5780755005334774, -0.36229354621501186, -0.5507238869188881, -0.8347561996405085, -0.17919325195314786, -0.8347561996405085, -0.8347561996405085, -0.2757818443062315, 1.0075646123100646, -0.5247588532875591, -0.24454650767880146, -0.008012783806246569, 0.07479211992895812, 0.23956520880104049, -0.41442295042224936, -0.06872436172901485, -0.8347561996405085, 0.32572842574888067, -0.34957823445511554, 0.07298478647504843, 2.093704803962507, 0.0441621539957609, -0.44448088671600067, -0.17971225512779856, -0.2145336172782184, -0.5497719820701142, -0.6534953162968347, -0.13926476732809318, -0.3165007602141897, -0.4361321447204866, -0.7314093156277951, -0.09349197709284246, -0.8024545228634771, 4.436492228178703, -0.5699167626473921, -0.19477097307223118, 1.0681738615700003, 1.1347915945330547, 0.04097746255246794, 0.014381852921525294, 1.2230859787967379, -0.49912911450573405, -0.8347561996405085, -0.3278345463528554, 0.11412773675532467, 1.0079618674309319, 0.9435535113856225, -0.252288859240375, -0.8347561996405085, 1.294602896007092, -0.20971441609319633, 1.3297119134280657, -0.049685466696357164, -0.5001736604901174, -0.8347561996405085, -0.7640749258681295, -0.2775543736005578, 0.009485062845708476, -0.5338598306634523, -0.8347561996405085, -0.4028984729582649, -0.8048055244462156, -0.5785576157326191, 0.7203979300828993, 0.012876007728986822, -0.639471035612727, -0.8347561996405085, -0.3938760820446197, 1.3606006272279358, -0.3136180890703784, -0.4381636879005389, 1.5164711224337655, -0.4824823293127764, -0.22357143729700518, -0.41363021364087565, 1.8534372809823754, -0.15122551604088727, -0.4367041743599323, 0.06702259008735154, -0.617011756254798, -0.8347561996405085, -0.5053624729826295, 2.4338883742980775, -0.5406716919101109, -0.041215774704221865, -0.0794569891418069, -0.38155709433890067, -0.8347561996405085, 0.0671254507882904, -0.4706708616258711, -0.20079954121393748, -0.04874553270501923, -0.03178353710114684, 0.17302701553517275, -0.3263463914274181, 0.3883071914127447, -0.5520374890082925, -0.7924818786360178, -0.4142366927478339, -0.17008968089147547, -0.06961774238587663, -0.14655280268168502, -0.04195486430967518, -0.43099775529280404, -0.29735350675347316, -0.41800582805309827, -0.13323868203089229, -0.571418019011245, 0.4490733032416164, 1.945061337073853, -0.7241508194733423, -0.3965553372850235, -0.28977763878328944, -0.7245016875216418, -0.4556475242156411, 0.8507511682302867, 0.09054869452545095, 0.06019175281483082, -0.6442496688919914, 0.0511747709552863, -0.3559264688268959, -0.4196861817451607, -0.30332900409387703, -0.2845552413851917, 1.0829863345433093, 0.3275298181105818, -0.1003427214579168, -0.11889005761501008, -0.5314562154996593, -0.8347561996405085, -0.7592597703895559, -0.3641801090105508, -0.49510650737837103, -0.6846836340564426, 0.5460181837812286, -0.8347561996405085, -0.6897907786993306, -0.4213669788023115, -0.3256900337478073, -0.4939337623781399, -0.6908969635153864, -0.22420442963636103, -0.21494235555492425, -0.31521544481754377, -0.3339238998484364, -0.14692527369400696, 0.35620605143706735, -0.5583234084166372, -0.5539234310927047, 0.11248223155935727, -0.5215650728599167, -0.41560314395599524, -0.19218287369438364, -0.7052014841889154, -0.6443255064906797, 0.44328073833745135, -0.31944151218482475, -0.21876930566795777, -0.35972579729480636, -0.6004631985975862, -0.40204277833407603, 0.007547557401298793, -0.5435109132750768, -0.017832611171221743, -0.8065620732000692, -0.546289947829043, -0.3864802646375886, -0.16126760232560722, 0.15959331931953882, -0.26972937878615955, -0.7147115101970766, -0.5572913653277987, 0.17528968493677485, -0.3515947918951161, 1.0778677732493405, -0.34834262028508683, -0.7465080417295592, -0.5153860044383227, -0.49919446652003696, 0.26516191688364177, -0.2670467539710706, -0.01175265701555494, -0.43673458920512415, -0.469854426980423, -0.4458679987373689, 0.06475539836182999, -0.4109846098108223, -0.665466683603539, -0.2178288396385122, -0.2320579328260606, -0.315621212548144, -0.3063610006000874, -0.8347561996405085, -0.2703551886110536, -0.6030720031251481, -0.14604741081530453, -0.7070659784870867, -0.20701556411580374, -0.7367080050737994, -0.5215886598827174, -0.07250573391077263, 0.48604542944485746, -0.37557308438876547, -0.7287464759798584, 3.0561200655668443, 0.26304059227281323, -0.7501011721781208, -0.21968928823023462, -0.15058817872364727, 0.3393698828458078, 0.21332633072171467, -0.6319735989270103, -0.7000880880982554, -0.32762106606189795, -0.27043862992103906, -0.4837508411725009, -0.08311368706018285, -0.4648371967778396, -0.22932121746996142, -0.6591315395860492, -0.16445952061987076, -0.12684757425488424, -0.03350813862921535, -0.015862651402206312, -0.47933144445761483, -0.6010396840561882, -0.22906348934299633, -0.3581644871294791, 0.4883571350254411, -0.07921544384063502, -0.7395838262269668, -0.5221451939122584, -0.38489550045898563, -0.6061897686080668, -0.7994135814665719, -0.28615445926573585, -0.19023286535442913, -0.46775296512563946, -0.35122591214002497, -0.0936259176866087, -0.8347561996405085, -0.13614737870550106, -0.37154019119130705, -0.7591436974089276, -0.5291441108904958, -0.7463431265421756, -0.3023778086292478, -0.2163097821662845, -0.1565495770541807, -0.28943819847019114, -0.6950328504233094, -0.259761955182639, -0.5495782093574179, 0.022566017795537185, -0.26552468161623, -0.5902390887750614, -0.7893781484292374, -0.13227915130256554, 0.008480397551192669, -0.2910765211516968, -0.4582047653832069, -0.3454879254784706, -0.4945154130400439, -0.31389239905171784, -0.6460787937400878, -0.5455500823346819, -0.5399352403269438, -0.24707670357586234, -0.15221377682706239, -0.3684978199419866, -0.5885403354317548, -0.7148277937761228, 0.4681072325852632, -0.22286200881609042, -0.4584105311215935, -0.29471765695540625, -0.3942543168031146, -0.6629016392103846, -0.4905888387912304, 0.06963294639273013, -0.17265343952586906, -0.6704410071495138, -0.5817879516119542, -0.3124012292436675, -0.10180498386208177, -0.7901068078709421, -0.8347561996405085, -0.4339824447438835, -0.4103953332693666, -0.46520955694888955, -0.497500767538759, -0.435891663495533, -0.23563544573931913, 0.06252961693573848, -0.3861286761210162, -0.28484936978606573, 0.2147254136005204, -0.0368660084767611, -0.6444381877283679, -0.3945988558147518, 0.23032335216771926, -0.03101039705676187, -0.6755553453909912, -0.8347561996405085, 2.4839542243657395, -0.3528794422441265, -0.3759339392357224, -0.6888358257155598, -0.09467252531866052, -0.6092694933662421, -0.07665128617766201, -0.8347561996405085, -0.42196268413757715, 0.9811631079156273, -0.5591918276189166, -0.21452754317648218, 0.0661824132413202, -0.3975559679572169, -0.3480989024949745, -0.3571842069149277, 0.324273478868704, -0.26156809155080557, -0.336329465818626, 0.8618592372015076, -0.7871605360049334, -0.6146771730355579, -0.5441692660975957, -0.3137147426600529, -0.22256012152613688, -0.6580099256648522, -0.3691019935504748, 0.26328648255186743, -0.49134654973047354, 0.19850117750682855, -0.6193323734736956, -0.8280211153723228, -0.24156141919914106, 0.008131912590254052, 0.8488540976821126, -0.2740316606124554, 0.6037093813631546, -0.28352353082017095, -0.45504233086744506, 0.15306645315289608, -0.40708299701658934, -0.5430912460488972, 2.1708994545186546, 0.535779110386908, 0.36376116992102625, -0.5430843073852356, -0.6491222401497528, -0.25106920621359696, -0.5114874286949572, -0.8347561996405085, 1.7112882259357582, 0.6462714546243165, -0.8347561996405085, 0.20039381440410373, -0.5058557609820461, -0.6171152154986091, -0.23537332829796112, -0.597190654361659, 0.11253836157978306, 1.362447508847904, -0.5856922689332368, -0.49949003585745433, 0.5381854300777524, -0.27035620835076146, -0.8347561996405085, 0.0038373009800201966, -0.23956844878194136, -0.33211971428666626, -0.8347561996405085, -0.33630171116397645, 0.18785943993753967, -0.8347561996405085, 0.6402843411185534, -0.32456942848219, 1.4801639551928905, -0.19351935342244453, 0.7242612361333344, 1.6596376116894933, -0.3727477403511229, -0.8347561996405085, -0.1789745399541251, 2.3953202224429333, -0.5872748606228977, -0.6263934280693305, -0.28063469690160403, -0.6826490870779054, -0.19628954284285868, -0.5900204211125489, -0.8307227200234437, -0.6233504582771378, -0.5488843651594256, -0.5765018648186394, -0.36070780663321, -0.11886859874464105, -0.26375875846174884, 0.06004721579540744, -0.8347561996405085, -0.25714880567719156, -0.4222138061246969, 0.6897254011010262, -0.4627378630754877, -0.7967674234301559, -0.8347561996405085, -0.22071603310624457, -0.30212548955638346, -0.5709066417161475, 0.3716086433454999, -0.52298104794866, -0.16202172200761958, -0.08105815782874878, 0.4886618155154622, 0.2207684797806779, -0.17377182796603388, 0.22017250842635933, -0.8347561996405085, -0.5091886915432641, -0.8347561996405085, -0.43981269568071935, -0.738088366861668, -0.8347561996405085, -0.2806072969390267, 0.42176857548532054, -0.2157762809531824, -0.243354032932055, -0.10506380594846515, -0.6510201309233478, -0.44586702333417, -0.6834903612525342, -0.2203234333188248, -0.7460263255589985, 0.2690513814744006, -0.5777445284936034, -0.30003972282579444, -0.649513665019684, -0.8347561996405085, -0.7186942477186986, 0.01611079942747813, -0.6440394473344471, 0.7854298347911269, -0.18094698256764596, -0.8347561996405085, -0.3705059534452735, -0.4215770451820749, -0.3893674137688106, -0.8347561996405085, 0.3580652586065376, -0.08728371308005574, 0.7963490302339034, -0.4658137083891233, -0.6738590083874252, -0.6316542208842453, -0.48013655112500675, -0.31650257801105963, 0.02294917390653414, -0.8347561996405085, -0.8347561996405085, -0.03568967221929921, -0.07288826931064273, -0.35497376592095864, -0.6371462064254731, -0.011306011023632163, -0.7468599572278845, -0.4158647293592457, -0.8347561996405085, -0.33553641868168893, 0.35085339337545196, -0.5750001872579511, -0.6020917007423423, -0.3934305444654239, -0.2350881558719099, -0.3476909622754323, 0.1635625896265448, -0.8347561996405085, -0.8347561996405085, -0.8347561996405085, -0.17051039002561857, -0.465361852857391, -0.8347561996405085, 1.4322102964151748, -0.2673685040170677, -0.374948737668669, -0.53617882959977, -0.8347561996405085, 0.15526377054019364, -0.07963726138750359, -0.8347561996405085, -0.8347561996405085, 0.8017089594830026, -0.4538422745776558, 5.0, -0.3786633390678333, -0.7558250875401238, -0.47767589704235364, 0.19419211219465193, -0.3198108796415146, -0.2751957599934256, 0.5594178295579308, -0.8347561996405085, -0.543018844529659, -0.8347561996405085, 0.40287519287528367, -0.8347561996405085, -0.33414815391108643, -0.8347561996405085, -0.5940502107543737, -0.8347561996405085, -0.5140008210550965, -0.6936626416960076, -0.7241438143049163, -0.006318774469405068, -0.2578615593962843, -0.26034431522868756, -0.4622667433305845, 0.7982741214557888, -0.5369705909779446, -0.6237908971577961, -0.8347561996405085, -0.2716515881349556, -0.7398278987091514, -0.3685932764459181, -0.7737471071159874, -0.3118550477889838, -0.07862807376906686, -0.4845126754070841, -0.614999964989517, -0.7382103144297425, -0.36052691367638645, -0.5817079242131629, -0.8347561996405085, 0.3232352065003479, -0.7009771459454865, -0.4388082964052597, -0.004059474642489549, -0.36841287119069327, -0.5876381318095968, -0.5569134852613759, -0.6550228420422851, -0.5777334000298385, -0.5626219881444287, -0.3260080595270453, -0.42681606877105727, 0.8119418257660445, -0.5790169197978676, 1.0618213265568446, -0.8347561996405085, -0.8347561996405085, -0.8347561996405085, -0.8347561996405085, -0.7089946498820723, -0.46522966355573153, 0.9550242530006674, -0.3630791891549415, -0.6597573937474507, 1.0498729920665821, 0.038997216713358616, -0.16089282581481518, -0.6949972703748166, 0.09029180879215677, -0.6627988560983369, 1.17397336367311, -0.6818448117200578, -0.5129508881848668, -0.8347561996405085, -0.5611791229629611, -0.5933278581810786, -0.27771735460773445, 0.9504233647860826, -0.5677791665377513, -0.8347561996405085, -0.6030832867666954, -0.5317466639702847, -0.5127301367064301, -0.549552605023456, -0.8093200700805017, -0.8347561996405085, -0.43755986898412286, -0.8347561996405085, -0.35347381748412104, -0.6398737662924598, -0.7356169833438303, -0.5271779640612556, -0.7919838189198176, 0.0780361336213267, 0.30815813324117847, -0.5727625679839489, -0.7794520575362548, -0.20104197324528889, 0.5821187428900493, -0.20268144867602886, -0.33203441084330226, -0.25627134182707023, 0.9677968918667297, -0.8347561996405085, -0.4931804407532896, -0.7726350477124857, -0.5705037780268881, -0.52017084482885, -0.18184430917381075, -0.8347561996405085, -0.3589370064627373, -0.22217958126917187, -0.8347561996405085, -0.5857949966246491, -0.3965753330505934, -0.27580906692277335, -0.03342815556693292, -0.501233347392332, 1.5336149863976576, 0.48809138199034185, -0.3343254999471879, -0.5963072937558382, -0.5378182606940012, -0.5685666716110597, 0.18556697640187417, -0.8008431872608088, -0.5543270041661085, -0.20202739649488652, -0.8347561996405085, -0.42239797998318795, 0.17667865909152178, 1.2267322132989846, 0.470644788342821, -0.2519280930664357, 0.9737809018168737, -0.824027432967793, -0.8347561996405085, -0.8347561996405085, 0.21034727200728173, -0.6408515414942513, 0.2809556454746967, -0.7988065814056328, -0.8347561996405085, 0.1929212504999486, -0.5442633260014929, -0.2944163903765794, -0.8003018939062453, 0.021785340544618396, -0.6153572950840065, -0.8347561996405085, -0.4808460904471952, -0.3754438434649556, -0.8347561996405085, -0.8347561996405085, -0.7649845891079303, -0.6639712353223679, -0.7590858105543313, -0.31450277977147023, -0.6018277211676056, -0.783464334257015, -0.5899711189145127, -0.342581800321385, -0.723067922408652, -0.3288573009430535, -0.36893613067021186, 0.4550049961111021, -0.7221612407990832, 0.6314688243560056, -0.8347561996405085, -0.44830796983856214, 0.027535076381064373, -0.3375872039066578, -0.25244190886953133, -0.5804725982304431, -0.6048623778643568, 0.7451572101830221, -0.5414353439415639, 0.4074087782691648, -0.6539287832614477, -0.5328247283554904, -0.8303475368637335, -0.10497021157791234, 0.7801420853787246, 2.112429353146168, -0.8347561996405085, 0.6894042274296427, -0.342393902196135, -0.5446707120146718, 0.7307334797208476, -0.6149587985408871, -0.35098959854692013, -0.8347561996405085, -0.30190757561452436, -0.5951416647653069, -0.027655187399756986, -0.7896260615615164, -0.6021144453714721, -0.6723652448935974, -0.22984053100017554, 2.0583396988653884, 0.2720878116315125, -0.5738014610634314, 1.2653250162531358, -0.26358961467981695, -0.047888064620469156, -0.20516894851489714, -0.41911069385801064, -0.45561409448783624, -0.23224791476723483, 0.14238029040156427, -0.5202802673331239, -0.7450566140597864, -0.8347561996405085, -0.6549702367743269, -0.10189303616900575, -0.03487086557061926, -0.3592938266873735, -0.32382027448918843, -0.2875656903480138, -0.3349209835999078, -0.40441593431616857, 0.11893718390836035, -0.22419715844888022, -0.1828146136738301, -0.2755585656467805, -0.6788106981455423, -0.1281333330166201, 2.223231432235629, 0.30103972937111906, 0.9526064944904993, -0.8347561996405085, -0.5659690620520273, -0.24652240854002677, -0.5156643268737285, -0.19701147421931828, -0.8347561996405085, 0.8726362011233234, 0.13999826711766666, -0.3245379052242743, 0.6291762721473323, -0.8347561996405085, -0.3761198422180656, 0.20024351363850723, 0.5180497384848232, -0.6989567201450732, -0.1479424418840674, 0.0448226793072206, -0.4177784260983073, 0.24605465495406645, -0.0720169682352769, -0.36339606218494525, -0.3128706198647201, -0.39613578090011614, 0.8272145117030404, 0.2391061485865906, -0.04114793984541337, 0.27279861454420734, 0.1856480235403732, 0.19244223885643946, -0.35885786579412715, -0.6568301311596872, -0.19173556265482672, 0.04839717733786465, -0.740214003197999, -0.8347561996405085, 0.9348034353104071, 0.4320911788626443, -0.6600984190907466, 0.05064158009774765, -0.6422352839409329, -0.31576787772000076, -0.6505813546617782, -0.007221909158251446, -0.8347561996405085, -0.8347561996405085, -0.5439607736639037, -0.3215494028334183, -0.5887929648601808, -0.09186411782746756, -0.2131013706906627, -0.5625277730627505, 0.26933327299878407, -0.29651780789485416, -0.8347561996405085, -0.30307025622720574, 0.5980821029646348, -0.7152811456650345, 0.3200396969488519, -0.8347561996405085, 0.2458338591391191, 0.48837158872738223, -0.35632243818900095, -0.0062833939352023235, 0.4753136000892288, -0.5000774502655313, -0.6305861100453156, -0.23896006320509552, -0.6964583135249842, -0.419036740560957, 0.27816741109510895, 0.046434488756328725, -0.14737058959065855, -0.4628299056682252, -0.5893047633521155, 0.25087580694548467, -0.2688343133419561, -0.11259471669849686, 0.06443528876666745, -0.7905196860691773, -0.5735823500358277, -0.28561488395089735, -0.6449972267706687, -0.8347561996405085, -0.4395285873308848, 0.438891423943938, -0.3712320967900907, -0.6317477709182893, -0.8347561996405085, 0.31632704635608566, 0.7458951470392368, 0.03598721111562629, -0.7823351720451568, 1.0165725495217641, -0.20864058584460257, -0.09935756422737216, 0.8304583480493766, 0.7318766522695651, -0.4280027797716308, 0.25221317340372706, -0.22209418915278864, 0.6711214472219141, -0.6818966300149805, -0.39718917201805026, -0.3853887441218919, -0.08989832569029944, 0.740691282301907, 0.3324874378767809, -0.20425100543203578, -0.678548514199421, -0.405635099641348, 2.6530664387031164, -0.4031837783938442, -0.6071150715514269, -0.8347561996405085, -0.5947196920406577, -0.580694236439061, -0.6336919933438148, -0.33487864223378916, 1.1192949205524734, 1.9616891240726968, -0.8347561996405085, -0.5833618090093365, -0.8347561996405085, 0.12578087876849958, 0.8954643602363406, 0.681702089081762, -0.2878858442796866, -0.6022250871297451, -0.36318014338599286, 0.09494528010644233, -0.810208784319788, -0.15876986075315375, -0.19995435434238654, -0.32383991556268754, -0.5012880808127248, -0.05937698420421406, -0.561438114680434, -0.8347561996405085, -0.25221876321960685, -0.8347561996405085, -0.5177137154986631, -0.44020236925854395, 0.8800466052418208, -0.6358645487908213, 0.4539252247702987, -0.07880479909404316, -0.39063579261900855, -0.4865999717472355, -0.36110838699225367, -0.08593322301514217, -0.4571782421897427, 0.5116402753940803, -0.44825494337376853, -0.42255182766950633, -0.20802235756275275, -0.3283241987585309, 0.46008959563915125, -0.661777830631991, 0.5962830161014037, -0.63621853147888, -0.21751103554181833, -0.15438200946443928, -0.5041238660982421, -0.18279067195895712, 0.19160126395324617, -0.08513897879246195, -0.3662735016206929, -0.8347561996405085, -0.2156645529504385, -0.8347561996405085, -0.6810320015842231, -0.5541165165895097, 2.111293806477007, -0.6373883502695158, -0.8347561996405085, -0.8347561996405085, 1.3669643350413694, 0.026462576227740075, -0.8347561996405085, -0.21989265979713343, -0.0017741049482664494, -0.17189293538655548, 0.661358370588487, -0.23660863211242503, -0.2684555908818609, 0.0036841626778462235, -0.7567158412588253, 0.14154685270490494, 0.0297674196104923, -0.15424886692783665, -0.1696039300985942, -0.8347561996405085, -0.48884322175788253, 0.1209045721598528, 0.0643117672525216, -0.24521767375242723, -0.33318525360807444, -0.26779719372283456, -0.5571670679247467, -0.13188734957230783, 1.3246156977346533, -0.8347561996405085, -0.5204619140106007, -0.36160468987428485, -0.7180339773421655, -0.6307192747501726, -0.6298293301727609, -0.8347561996405085, 0.6415852629663705, -0.4819815041068258, -0.8347561996405085, -0.5559177759416843, -0.4438604416086999, 0.025725348755666975, 1.8736114566651374, -0.5819828992421379, -0.34746675254929116, -0.6172603953974123, -0.42106930348071553, -0.4272358911750191, 0.13497538401018236, -0.7267843637729404, -0.21611128761537732, 1.1180882581228389, -0.20505314155332377, 0.8094494045746812, -0.05990095306787561, -0.33724018205051676, 0.1261983513374825, 0.23854502572836545, -0.24113383790610116, -0.23393088431332926, -0.6108886848441033, -0.48953739847969263, -0.6970379025392184, -0.21327960345694555, -0.7815495734417363, -0.8347561996405085, -0.40471055041864124, -0.6222112981824938, -0.45098957491394487, -0.5528834961052598, 1.2204309312902584, -0.34179704411163514, -0.5648822855427974, 0.6489384729882269, 1.962397976178991, -0.1515984747548079, -0.23324304771230994, -0.8347561996405085, -0.7809329024797659, -0.5127743623741833, -0.3503253933052119, -0.8347561996405085, 1.503676137967147, -0.6458870826750613, -0.18254234317190626, -0.5882857995334395, -0.6420497799871707, 0.23628572590145158, 0.225722286607102, 0.30648079443173054, -0.5695140541359138, 0.3480155021057558, 0.4170919605133241, 0.016001199577167405, 0.34013717047100045, -0.467461829439124, -0.42854071463563626, -0.017854247387626126, -0.602685344429938, 0.7464000512040213, -0.6368573762374279, -0.007299143356974144, -0.6398122493861863, -0.3264750559766101, -0.20449818146985257, -0.3567998093816774, -0.8347561996405085, -0.5838078564583871, 0.09439444331831108, 1.0969920603983816, 0.22569071901267596, 0.44622689936218735, -0.7013498940609901, -0.6849238270940888, 0.5901136795435402, -0.10727970033304375, -0.5413894334864673, -0.7219524380098281, -0.36087340349441993, -0.3239770483851021, 0.6814112415825555, -0.6362273322759218, -0.08954762390390823, -0.3427329878171611, 0.24056109546676727, 3.079180725333194, -0.4266334910268904, -0.35639275589231634, -0.07863516761051091, 0.6665299583472392, -0.6385907120577735, -0.8347561996405085, -0.33229661695767787, -0.35027187913881813, -0.7186406116269052, -0.5601832584654888, 0.30637208131159965, -0.8347561996405085, -0.1064188626738071, 0.0040042722730100865, -0.8347561996405085, -0.4156240707882552, -0.26117464936971474, -0.18142581686512002, -0.599734749754299, -0.3656062371598613, -0.36887609903699037, -0.10784405975642758, -0.5264586263705734, 1.6626514302269948, -0.7495502190066533, 2.6391756330794376, -0.30414315540911085, 0.33838703111373336, -0.39287784554391403, 0.936883172275773, -0.6945067644913416, -0.11283413384723387, -0.23713703462698985, -0.4350399148206471, 1.6089989339252162, 0.8150712739190987, 1.567509538163408, -0.34885390890716816, -0.8347561996405085, -0.6702169193487727, 0.4991168963817544, -0.37738666929044823, -0.8347561996405085, -0.2132151825093311, 1.3688069603564563, 0.7997132845387415, 0.9857694938573349, -0.05645228204984589, 0.09183356655700546, 0.7236669495663546, -0.8347561996405085, 0.24335296544009624, -0.5122596155043977, -0.8347561996405085, -0.5575589583280222, 0.546162188762543, -0.6553051104269954, -0.509369894855651, -0.6630572492729375, 0.871488949615772, -0.14517992267971375, 0.1991687079867146, -0.8347561996405085, -0.26724156859172776, -0.5349254808261311, -0.6201897528852279, -0.27224658408607544, -0.6845445393435038, -0.07801818075091463, -0.21380902571121654, -0.6418318217088013, -0.1755990685124957, 0.677284399322481, -0.048774883473994356, -0.8347561996405085, -0.8347561996405085, -0.8347561996405085, -0.7019455439756189, 0.03664445552541844, 0.16194590316144356, 0.5639898103686274, -0.3423249589246012, -0.5625391897138244, 1.0001511933089424, -0.6948660232239743, -0.5445176623855168, -0.7273423387390248, -0.7302385325180893, -0.5241546353425605, 0.968322368171702, -0.8347561996405085, 0.9211332481556388, -0.4175747885123539, 1.2870747341206232, 3.220937313601923, -0.6831948251674979, 0.07416520169133999, -0.1638975553679747, 0.48726911709395776, 4.114973086720566, -0.03458994944943449, -0.4003793611884616, -0.3685086380501881, 1.2407322640809013, -0.5799656324179929, -0.16883744053056354, 0.7750845311211895, -0.6204942781974679, -0.2626657305047458, -0.7293243580384952, -0.7211002903063604, 1.6575458151936726, -0.8347561996405085, -0.8347561996405085, -0.23792258889390175, -0.5377974447030133, -0.8347561996405085, -0.7386146855603083, -0.3674796763487272, 0.6884337899200953, -0.7632598933647797, 0.43015296403409203, 0.5260013140324893, 2.968121317145361, -0.7002059677916266, -0.44473382649999177, -0.6683943673881393, -0.43377827511982103, -0.24838130535393374, -0.6128754259817843, 0.10308377837615776, -0.5474537811909589, -0.6359959178670646, 0.05469313896550324, -0.29308500934705584, -0.3552164639713632, -0.499750158155907, -0.8347561996405085, 0.5473864971227701, 1.5876322834957077, 0.5157179928021607, -0.22745890674485894, -0.8347561996405085, 0.6441865746239073, -0.24975573713372035, -0.7268120297545723, -0.6098980742229492, -0.6591193913825751, 1.6154999075705851, 0.7613063402304244, -0.11079868905438887, 2.6586404246177793, -0.7352199388213808, -0.7961502232011092, 1.3680418895567221, -0.45586220159234153, -0.46950753813380847, -0.7435897074063, 0.3377340430088076, 0.8542319388808545, 0.5249408734096203, 0.5371463596522325, 0.2971109826333616, 0.852246727352727, -0.21105191556096503, -0.7065646877477914, -0.5645605133285458, -0.19298744832366654, -0.6699819469350654, 0.1164724286986234, -0.07312591299901873, -0.8347561996405085, -0.6744204416012136, -0.5958562584495225, 0.10044203182238987, -0.8347561996405085, -0.297626087610962, -0.8347561996405085, -0.8347561996405085, -0.6364687223993111, -0.8347561996405085, -0.34922513849723824, -0.2333579679437037, -0.8347561996405085, -0.11865635987593708, -0.23378217966205847, 1.5330019011508582, -0.6337870508191652, -0.03163713794834456, -0.5990843109986419, -0.2825886511908614, -0.5604016822772011, -0.8347561996405085, -0.8347561996405085, -0.22988149793451418, 0.24138424709333253, -0.5038961316196334, 0.056846385862829904, 1.83350908425169, -0.7154812252461388, -0.282341563826064, -0.4621165312380073, 0.11185327384232215, -0.7356018091736163, 0.7750123512844925, -0.05451779148805076, -0.5827620468834956, -0.42098595084374785, -0.4476363603998465, -0.7667594904054886, -0.23737339255660503, -0.19724663506318887, -0.6492831595092609, 1.3976659487731486, -0.3460571619178476, 0.9748299036204177, -0.5956447067967086, -0.5026608943099313, 0.3720797630904031, -0.2764561582719982, -0.8347561996405085, -0.6113174632228879, -0.8347561996405085, 0.06645729959727917, -0.5305725002017662, -0.6961771092164909, 0.9251866691567746, -0.5217513083660776, 0.18872976560970828, -0.11272395762230672, -0.5590143042367799, 0.9080364207355685, 0.43682436722015816, -0.685007068889783, -0.5134178624661772, -0.09512196451065058, -0.34221611279494374, 0.11846907904607161, -0.5474414778097038, 1.8696954788419837, -0.6447035195666303, -0.8347561996405085, -0.40282890897560436, -0.2741070326777993, -0.8347561996405085, 1.0529524286374485, -0.484582438904036, 1.0004431048843727, 0.7447564081414327, -0.5753389403551593, -0.8347561996405085, 1.4201364009313528, -0.32993516581396803, -0.8347561996405085, 0.05519520559370725, -0.8347561996405085, -0.3244561930381396, -0.8347561996405085, -0.8347561996405085, -0.727813791007746, -0.4733727284858781, -0.5543668405194673, -0.6978743772867457, -0.7141013733281238, -0.8268992908527083, 0.07423667214388824, -0.21352181380575125, 0.632779145543747, -0.3545739836190771, 0.12148626715826571, 0.19428646028585794, -0.5329032926494842, -0.8154516347037066, 2.3714476725233036, 1.4070677715310407, -0.624469844288756, 0.4964615828562254, -0.8347561996405085, 0.8545375061010464, -0.5890910835468683, -0.6431685896241711, -0.8347561996405085, -0.8084654949531648, -0.040473404197101, 0.11505366040981142, -0.6393646944958308, -0.8347561996405085, 0.6436880549164223, -0.15306122486057305, 2.6018779882269247, -0.7462731524468064, 0.39824406716154837, 1.317150493691004, -0.38513819850939013, -0.30941019967179734, -0.6853086236559187, 1.145711144667896, -0.5248773869444381, -0.4010765971293951, -0.4333587630714225, 0.6457700087072303, 0.10806117222538238, -0.037273106302630934, -0.470721072722343, -0.058121728960687666, -0.30280924719857316, 0.574668347240408, -0.7355198198843012, -0.32198159512339697, -0.8014609583224093, -0.308929813596508, -0.7803821100281437, 0.061380680640855265, 0.8107541393622764, 0.3611577301110563, -0.6224120982318695, -0.32989317913992156], [-0.18547418720027584, -0.25041819407152616, -0.2549730595448316, -0.5006981912407693, -0.5307191217464131, -0.5201733549340511, -0.7888413122088335, -0.4228053173791056, -0.15143184135727306, -0.7597133056578216, -0.6598984432072781, -0.4157579284584989, -0.6161482946677586, -0.8069825072867434, 0.5637976645845673, -0.21624603287476307, -0.32868603921064454, 0.07545118389057809, 0.6004904978201067, -0.12186483549540901, -0.7935565374043387, -0.3835422660067977, -0.7874593851446777, -0.4165000614956536, -0.1471102315901293, -0.6293543608308605, -0.8627374347206476, -0.8391978622208037, -0.5179022727942557, -0.5728085892079563, -0.5337156022424587, -0.48407873647988053, -0.455419179417485, -0.38602008581993597, -0.6436800772685737, -0.4549503795017899, 1.2614163361049069, -0.3537964136064337, 1.0627161154545244, -0.6565786400942474, -0.45934690914806475, -0.41869705333879054, -0.710345539285465, -0.06975275309227845, -0.5217714168385196, 0.977042673404543, -0.7755951757820071, -0.8074527947296304, 1.7625539486944097, -0.6485277996577284, -0.7787939170666731, -0.5234345008450358, 0.6181755941760343, -0.3426664490958583, -0.435988069414109, -0.4110987072314424, -0.13933326779462035, 0.6272775442111891, -0.36226364723143756, -0.48577760695787164, -0.4885117391486427, -0.7348017163861572, -0.34328131273925366, -0.586278834479031, 0.18692509852809125, -0.825603072305297, -0.5334450725376301, -0.6312787919224263, -0.5035290985178719, -0.3189403331770346, -0.5158024565255394, -0.6580446696573131, -0.48410124963179935, -0.5530788009082788, -0.513205491505611, -0.453983572646117, -0.46896434456769076, -0.46844522618411005, -0.6965961252093331, -0.5780990082712224, -0.8202240166458148, -0.3843925594345584, -0.4387223446363403, -0.8068845879487261, -0.5832567799578063, -0.4477315530723489, -0.32777384176667956, -0.32733044423841057, -0.5668747288154403, -0.43049317257457986, -0.6877510596776605, -0.7441588202441053, -0.8291980000088318, -0.3694275781862495, -0.5279261178064059, -0.4178363472206891, -0.09083324468823335, -0.4388668064116795, -0.48284085639982877, -0.6167732849385735, -0.010481602804000846, 0.7703797196974637, -0.5160297335166426, -0.8434545500079211, -0.41602073446444765, -0.653596963354388, -0.5405061066595912, -0.27065600151343105, -0.5913121401884847, -0.43221701634561455, -0.45812493416644684, -0.310948879403011, -0.5590592895569935, -0.8235122312607422, -0.30140885260993305, -0.287331925095018, -0.23469423067998893, -0.19628587810443113, -0.5256211658167081, -0.4420484554367887, 0.08317373851842998, -0.4299041404129928, -0.6189185852118017, -0.54005856121896, -0.33918145894882895, -0.5897137064022198, -0.5949869902964902, -0.5527600409948921, -0.29101584339763337, -0.3980279774364857, -0.40026270097896394, -0.7984566951269977, -0.2598500890802903, -0.5448062044950408, -0.3342154066322106, -0.5295907179464053, -0.1637029680741538, -0.8262791677170315, -0.24680024187860022, -0.40208640931588246, -0.25196138910765664, -0.35825865190576983, -0.5873467931837326, -0.26858444826135597, -0.16259945174831356, -0.7173783103907857, -0.14690220663364137, -0.7327583546349924, -0.09717531686967879, -0.380417486290476, -0.4076251882075636, -0.397535434298309, -0.2676649276066015, -0.5160325941458577, -0.3456757738170775, -0.43096918127589623, -0.4119906800268602, -0.6610942720378744, -0.1418161223151763, -0.28949170015207215, -0.09741806986483255, -0.5850148082479566, -0.6440311050795025, -0.367979241614876, -0.44185650721648606, -0.31530561769691007, -0.5717088489126798, -0.6565267911897326, -0.5615123363211332, -0.5004503177193206, -0.6587064762261207, -0.1531744222496647, -0.5496477050156539, -0.3147145544885815, -0.2427827169969732, -0.23032839558518603, -0.6821213127769532, -0.6541321870804476, -0.5039698928735559, -0.555871947879748, -0.39283009972831284, -0.6213357596855906, -0.5001034950333381, -0.23880953186817228, -0.3744583379357022, -0.5548454110860735, -0.4903524682293879, -0.4866892894885782, -0.5026574075835862, -0.6937152856492902, -0.3710730693230955, -0.43190377744661196, -0.12559200651175062, -0.651502896950394, -0.3407792347903752, -0.8868335891194249, -0.4522086380373081, -0.4128038424874141, -0.0017079957901095062, -0.4262317504461121, -0.8287223846440324, -0.5189037790823016, -0.6468433324478322, -0.7188387045142981, -0.08330464072113825, -0.3690093541950683, -0.7218090817687601, -0.5775286846246994, -0.2717317697358896, -0.5618449130736273, -0.23543971065332417, -0.6151362326579107, -0.5559779627984425, -0.46545924419728235, -0.6836424094524012, -0.601922299764468, -0.6260322835176051, -0.7235876350735249, -0.5050540999521966, -0.5800689519735933, -0.5214104626442154, -0.5763617767554627, -0.47364436256913695, -0.3233644678952311, -0.382052164248891, -0.6114467647346183, -0.8868335891194249, -0.230015728812026, -0.516051617330135, -0.49394041242185244, -0.6621588695032495, -0.734809425781891, -0.45484854110174866, -0.6524360198970637, -0.3132952246974448, -0.6407651533114382, -0.5087913689896659, -0.4435273435281741, -0.20391809406167963, -0.47199397975633417, -0.8868335891194249, -0.6199437202971613, -0.5138766809382425, -0.6701669149267185, -0.4502457314828054, -0.45418687756440224, -0.6918929361112487, -0.4207496978317564, 0.0062729880809880125, -0.18359784328580794, -0.4297750402165361, -0.22790858933252037, -0.8747735053228544, -0.17282156697133044, -0.5829421107441957, -0.2537876720108691, -0.7590010232865213, -0.7876346558966589, -0.5407536082992414, -0.8868335891194249, -0.4631955996934445, -0.05396705732228911, -0.31056515460015877, -0.636569868930413, 0.6711747004860487, -0.5089595453811949, -0.5135792041062118, 1.263018517315439, -0.6843063471899733, -0.27661457774236253, -0.6553353391218344, -0.5557550911763297, 0.011339963396298974, -0.4145483400013793, -0.03830356763234906, -0.6863221467786556, 0.2862177674186478, -0.6399553663933569, -0.26643308345419314, -0.4780850317241938, -0.7625985076774168, -0.24351824198064193, 0.3070143129587664, -0.4230072491953678, -0.6535168371300859, -0.342935805942709, -0.07354657676932111, -0.6043072063407156, -0.43095479231094647, -0.47495853563034385, -0.6092358988397899, -0.4870710690635641, -0.6156865605062237, -0.3141617664991437, 0.361089816829659, -0.4331257238219379, -0.41809697914843524, -0.8868335891194249, -0.5376133525788691, -0.18972325141053628, -0.859577741024761, -0.5199787177222873, -0.8130251860145842, -0.5504805486052045, -0.36593492155292434, -0.5054240365222348, -0.4958848107053373, -0.5698627418490106, -0.6804204112522197, -0.22786007306104006, -0.460583988251937, -0.42455504984453374, -0.2831665628955783, -0.051465494286669085, -0.698444291926037, -0.5647286847786156, -0.4467544479515033, 0.10364005302199628, -0.42623472550049535, -0.34493281119745123, -0.6899038977088704, -0.39730572577237294, -0.49453553772366693, 0.6272739970309603, -0.4730757266938511, -0.29434138207223925, -0.1882221648364454, -0.4384915490713025, -0.6367955725754479, -0.8868335891194249, 1.1573535107863508, -0.8064901929989035, 1.4846758595391512, -0.18392458435470466, 0.34098645896083707, -0.41895822878608713, 0.8923167861756172, -0.5220981579074153, -0.4315249729260084, -0.8197697201202375, -0.6100258902037055, -0.5858383547925602, -0.5103311026644467, -0.532040932687623, 0.6921816739111797, -0.5648830157247461, -0.2829940097413511, -0.6811241546453136, -0.48924097074803874, -0.5518764212367805, -0.5912332154284526, -0.4321570289509836, -0.530604124451985, -0.39780753734920465, -0.11868953706715737, -0.7377616666471315, -0.755903348032008, 1.621347798251595, -0.5180678174069066, -0.45299594040976254, -0.2309456621571222, -0.37799727954971996, -0.5712801264122809, -0.5876953036409526, -0.6595155336837524, -0.46453998099915705, -0.509697015592729, -0.4129236742452158, -0.47055765782766173, -0.7276327364207815, 0.6543320022212439, -0.7152268740678918, -0.6092190783400083, -0.7468281162737259, -0.45048419353413793, -0.3974004125993779, -0.7331216259389602, -0.641252261254107, -0.452834972803854, -0.6568878168997658, -0.787182669329173, -0.14062489909761544, -0.4493508980581734, -0.6341520079056125, -0.1316173498265511, -0.3765582686295865, -0.4966140136984412, -0.6401151325349945, -0.34810376146929745, -0.5278186439668116, -0.17200594436965175, -0.6474499574790894, -0.4151579686933117, 0.42713590971213494, -0.5053573838615338, -0.5911021700041305, -0.4637729318815427, -0.856100648002257, -0.6114360087687712, -0.28533938242185114, -0.31141579130342467, -0.4357817322288565, 0.9162369099677828, -0.8720852495791672, -0.01863851537179916, 0.4714570112366117, -0.42790765007150994, -0.0057940613477199835, 0.5973852275950333, -0.40977177576393886, 1.1392029328446167, -0.6092279748968661, -0.7284091827053658, -0.25208771449377526, 0.6633588893457969, -0.5046635382455222, -0.08748001512282952, -0.14866023492379168, -0.8868335891194249, -0.8164221188428141, 0.40021796092820017, 0.2067569254718617, 0.5121806998859113, -0.8868335891194249, 0.4437930103534888, -0.8868335891194249, -0.6536821958018387, 0.8286712189048931, -0.4319225717805521, 0.5500209887120278, -0.3070629434652574, -0.15871746347887597, -0.01619822701395602, 0.1710632528084125, -0.478157405643325, -0.046252398031073685, -0.8868335891194249, -0.2637996454117774, -0.5127930173791522, -0.7038934043949859, -0.5425405575507523, -0.582317578174055, 0.49409980687184357, -0.4876604731069493, 0.830505797632834, -0.4488053474606489, -0.1807102669439649, -0.28338849051004944, -0.03007519654676814, -0.3242770658272863, -0.3342044790286105, -0.8868335891194249, 2.013931626505891, -0.49001848976857887, -0.4537236558756744, 0.06847176352011408, -0.3602202997834185, -0.7000261054565653, -0.5646683827147714, -0.7319816795000718, -0.8815882106631429, 0.09796124633026015, -0.7655519357037812, 1.1823100977555607, 0.1812525852206297, -0.05845258114343154, -0.4191287794998638, 0.5408106780422296, 0.18614963916058846, -0.4879191025942449, -0.5320566375420107, -0.5502602229430923, 0.7554000920275759, 0.08831829409804193, 1.2650520814115433, 1.084500607900207, -0.40678482116317843, -0.03380946192356228, 1.1671334299453637, 0.5790670167813238, -0.4819070325990005, -0.8868335891194249, -0.40189858040164883, -0.31508111551614604, 0.2668152637074202, -0.45520488968301653, 1.5165077971880048, 0.6037991015697638, 0.6868925993436416, -0.5013787635372248, -0.5656495785353931, 0.7347873133082102, -0.3198676919558369, 1.7861106581511474, 1.9911191383456441, -0.06392502204362605, 1.2626599088370867, -0.1683728308418884, -0.31182812239842334, 0.6601787850604638, -0.49036331001411115, -0.6501231582675879, -0.3904474244428529, 0.9225028321995344, -0.06306408707518743, -0.18135642587096776, -0.20661692608794135, -0.5438593648312858, 0.7952637611097954, -0.35393681328828885, 0.9351783946747811, 1.0851629007759809, 2.00432998175953, -0.5822958373920238, 0.29557454230424496, -0.5675534989154906, -0.5698616262036167, 0.8319136849071121, -0.16974015439390325, -0.714157413532851, -0.5413999388639984, 0.8009495477368126, -0.6622792304774556, -0.5393833669054285, 0.5890393990739026, -0.8868335891194249, -0.5355941202351292, -0.601322654668495, -0.5231578207873957, -0.23174383492059084, -0.42278560764381684, -0.0972987816265823, -0.5681136673283019, 1.668171950338876, -0.6150676061630513, 1.385569703673394, 1.4290338751103255, -0.25326034362144123, 0.7294618515370669, -0.10866566344871423, 0.877559944308968, 0.13083571169009078, 0.6184240112170362, 0.5124098934985908, 3.8000213161498184, 1.1274084441674703, -0.8868335891194249, 1.7789636621212768, 0.7310274166936608, 1.1745731255564718, -0.7055497230134101, 1.4539124241145647, 0.3216781271633578, -0.5329840249271061, 3.8000213161498184, -0.11886414987441826, -0.49593038052872634, -0.4894155263427164, -0.06040124176444558, -0.8868335891194249, 0.7856162318708241, -0.6212949957192812, 1.7206329150810296, 0.5753584970674572, -0.8868335891194249, 2.687224193735923, 1.1544379574907877, 0.7814393699419484, 0.9540313143012894, -0.8868335891194249, 1.5048453551554204, 1.3201425365277863, -0.3322875141792951, 1.8052530734541727, -0.6104665129216373, -0.35913537754747327, -0.34655101193158877, -0.711983077873094, -0.600600088335169, -0.4689916063641062, -0.5360943012533097, -0.528635525245344, -0.3280092143384608, -0.3773524937247401, 0.20396735428690918, -0.7507624683609369, -0.6965263973722269, -0.5463291462763321, 1.8471418391700165, -0.6215584596699503, -0.8868335891194249, -0.7087109328427801, -0.573433178990681, -0.38433088426869016, -0.5187051942022207, -0.5087247735415491, -0.35338534118829, -0.4878596587191644, -0.6794272580014801, -0.5989614341021451, -0.5254073909954979, -0.6558032236361808, -0.5165367514386462, -0.7385117522335032, -0.6541308425847167, -0.8504959316071778, -0.6004684135724184, -0.4652590573648415, -0.8868335891194249, -0.5677215894881426, -0.8248003654445224, -0.5444295740526406, -0.8219647524323626, -0.7184390317035748, -0.4400444702467633, -0.41104650074827526, -0.8686075674458343, -0.6395362270008281, -0.5084161688618739, -0.5784080134389888, -0.37704257315562506, -0.6539760968473507, 0.43107453844001986, -0.4764930915662459, -0.6153710331038486, -0.40991311945343467, -0.8475922534986421, -0.6230540538359491, -0.5953998649110392, -0.6330434568723545, -0.8868335891194249, 1.9726186482383703, -0.6191284123646958, -0.7522010358835419, -0.5508356957222023, -0.471571779490545, -0.5308456473765769, -0.8057334922074734, -0.658670947211275, -0.7737244673070923, -0.5612899223996948, -0.5031728643617721, -0.13279369777219582, -0.7707483115816169, -0.5954878864719743, -0.7686405570668309, -0.5784001467086479, -0.6399843445673016, -0.3815749540833047, -0.6311311262423668, -0.6416584706025861, -0.46952582886994115, -0.6257842955709875, -0.671364159768776, -0.05453105897824726, -0.6744823886441966, -0.693341258379476, -0.35006586704761955, -0.8807648089378936, -0.5886371372035808, 0.3488614279132357, -0.5952286562525432, -0.6319673739806829, 0.6356154773956801, -0.12055300815015864, 0.7413215625603025, -0.8868335891194249, -0.041554100608945765, -0.42523871162054155, 0.33383831867929464, -0.4479423528391757, 0.49695208304918104, -0.4441851738223726, -0.4730454898430515, -0.5155357028512746, -0.6762299327282751, -0.17982438728877373, -0.0002078246173673353, -0.08078230951742066, -0.34805438700905245, -0.875296346100201, -0.4544094345173009, -0.8868335891194249, -0.5746571278064574, -0.8639628174268181, -0.8556447209180275, -0.17995843637377196, -0.4926576776757149, -0.5485238210098053, -0.5506744706596646, -0.4151934404955732, -0.4794539286222767, -0.3203960501717815, -0.11782402509197533, -0.8311993033589683, -0.5192645044262675, -0.7367031051093998, -0.5353425278957018, -0.5135731395722772, -0.80088405344079, -0.672005341200946, -0.6023167519268753, -0.6421781611120102, -0.37156195085587757, -0.5645170840356092, -0.7373778131159651, -0.45534177079093696, -0.4102156309928831, -0.6487299603243267, -0.5852671157446886, -0.8367413683984604, -0.5870031457961774, 0.5349157222070281, -0.7542288644180712, 1.0845726957564208, -0.6517978135192778, 1.3316029037126624, -0.6072132909535776, -0.08506392768814362, -0.45211446612356254, -0.6961060851217192, 1.4541794924580391, 0.3149222363597177, -0.6251339887316235, -0.7804057815071019, -0.3949626988078287, -0.18691611596220853, -0.8689887319855393, -0.4532693879563893, -0.3408005750843162, -0.5153473876300747, -0.4648957574545824, -0.38536540221787274, -0.4429061292879219, -0.33502279062175117, -0.8868335891194249, -0.19490653990971438, -0.39925221231518343, 0.0768308081482226, -0.16753243519121122, -0.6446194506900781, -0.5880739651300951, -0.405092072431707, -0.4399122519644622, -0.473826069736851, 0.5412829107129853, -0.7317365378795223, -0.6281137917593466, -0.44218899815010393, -0.27999155053024694, -0.48104481034741586, -0.7435004035209173, -0.3743558129846495, -0.4814779668230963, -0.4456344830076787, -0.5154748858741711, -0.41684897244096286, -0.09033108983589437, -0.4609783545954673, -0.5755958718895343, -0.6399665514535863, -0.44752647456395134, -0.5576871315416062, 0.0465993353323792, -0.5911021413978383, -0.6618637383871746, -0.4238552255134637, -0.018409092908784137, -0.48560033376544093, 0.2907715458528589, -0.31615694095118746, -0.4742181189707175, -0.6048869128510627, -0.48318727859772215, -0.4507713434947039, -0.8868335891194249, -0.36923637372954227, -0.7521766919289257, -0.47151247864692564, -0.6778237465983585, -0.14946882037760226, -0.7111258617226351, -0.37669174558874247, -0.5089479026202911, -0.47007787309578253, -0.4025195657915628, -0.8858090730921068, -0.45489079259524834, -0.5961665707531484, -0.7467060246188446, -0.49117630083691277, -0.451403170669342, -0.3847709062544866, -0.44757788007093785, -0.4931836043568268, -0.640166681073443, -0.44340619588093433, -0.3702592203115302, -0.3539364700127826, -0.730981546314048, -0.4717326898838686, -0.5126433778649341, -0.4382543743031169, -0.47884372780450185, -0.2441624556797782, -0.43602820404199005, -0.322058190170657, -0.7150041740835311, -0.6988671215302535, -0.630190007837042, -0.6895531845671549, -0.3926638971709414, -0.4737576148797446, -0.6950892458610829, -0.4749510407818013, -0.5868962726887192, -0.42879833558378083, -0.4928959680892943, -0.5806928265990146, -0.6834399341165887, -0.5586531660273906, -0.4680464258652964, -0.8868335891194249, -0.4739872947993886, -0.6193619255274877, -0.2996794878245142, -0.07503255922115866, -0.5385418842156494, -0.6271064783939954, -0.1730031597138763, -0.3572255070586092, -0.7041417356171089, -0.39360624564682906, -0.6617193910370045, -0.694416211322608, -0.47108255468225674, -0.04207633707837079, -0.7143211702522436, -0.5852846800080655, -0.6283578320376483, -0.6688513544603425, -0.4112013466076642, -0.587508990860203, -0.5224469830338494, -0.6365430648346718, -0.6787193523928791, -0.5493621570074481, -0.6603834914969123, -0.6855176520246212, -0.7766996003576234, -0.34923227969447335, -0.6733710198911615, -0.6769062712934926, -0.5667065524239114, -0.5333822531200761, -0.6670508172200624, -0.4783012380802367, -0.7559019177174009, -0.3026683876531401, -0.4474356495863864, -0.24932079949220548, -0.31585531620679563, 0.12882011234546117, 0.0015618178273947394, -0.8868335891194249, -0.4321860357312203, -0.4335247243847966, -0.029373140924910626, -0.8243062632634234, -0.7429273193672014, 0.6620281246351502, -0.034169729566853956, -0.6319725803258538, -0.8868335891194249, -0.5853125711429086, 0.1455185204726721, -0.6287775435560206, -0.8574158937994191, -0.5570514425175291, 2.324515632747656, 2.785249260608892, 1.5777474608640418, -0.5656879395731618, -0.3211611540615294, -0.46162374115258253, -0.692557145608596, 0.5521798483677363, -0.5982833791593982, 2.0896396661985843, -0.702366815311446, 1.836947472050391, 0.1966277806983159, -0.8868335891194249, -0.3957788363227657, -0.8736462582897855, -0.7486382795313123, -0.5143761754054115, -0.3710155134632964, 1.870604491138172, -0.8868335891194249, 2.704496215233261, -0.3656122997900968, -0.5326638060928193, -0.503821912524282, -0.16850636501362745, -0.7040946639633826, 0.0003629853361221973, -0.10028945504532148, -0.4294550502325865, -0.8868335891194249, -0.8868335891194249, -0.6893221601517808, -0.4320110224358683, -0.09145176993702334, -0.5187718182566298, 0.39630256050954027, 1.065970367249101, -0.36703134351831224, -0.68025515270249, -0.6837163424144534, -0.4905698474434087, 0.22711773996999668, -0.36755775650639044, -0.6295336078574497, 0.13964278806579303, -0.34306636506006566, 0.10243733007499928, -0.8868335891194249, -0.36397567660381536, -0.23615074865091554, -0.7362749547348443, -0.8868335891194249, 1.1381509078446352, -0.6481233925056546, -0.41708506017004765, -0.40862792456617236, -0.8778703357978026, -0.31812968807018954, -0.7607446053991378, -0.406438341752701, -0.3661228648923261, -0.4758964501309481, -0.5370965799112432, -0.6567162649657644, -0.5720925165029471, -0.3667162166040273, -0.8868335891194249, -0.6457374417997441, -0.7401955328923869, -0.37179726621507375, -0.6039473105792211, -0.05775699054359879, -0.5191203287138496, -0.40496443115614933, -0.3970135983169733, -0.8306472627089132, -0.2669049728494405, -0.8501925440000325, -0.7497777396632345, -0.5890710660491507, -0.6002614470487394, 0.0667318144066051, -0.3091959430328626, -0.20533668008922085, 1.434916930727994, -0.7264944062373992, -0.5322043032220711, -0.42613958097281607, -0.8868335891194249, -0.7222232436664553, -0.4584201224951049, -0.4482233810532221, -0.3615994091277972, -0.6879838433800027, -0.5181674817287452, 0.11486127160452375, 0.38575645042166823, -0.30380708971832066, -0.6669500801622689, -0.5768132984707018, -0.2279414293559049, -0.13663632378363996, -0.3919491975679564, -0.7674650744615231, -0.4525348641929463, -0.4785489113576411, -0.48357649580866546, 0.19904066422828437, -0.7170825928457213, -0.5921778238014198, -0.7795589351375449, -0.3396640470973392, -0.44509602677060756, -0.7152051761952986, -0.5000588120050056, -0.5509557563303401, -0.7353972421760612, -0.6978495814154596, -0.8709679566418186, -0.6965991431731554, -0.30430518247717364, -0.4276890121806352, -0.5357063427192194, 0.3148628496972194, -0.15479571246335558, -0.41736657469106037, -0.4863806562026111, -0.7547378990836713, -0.6453903902634233, -0.5811714384729169, -0.3877441870476009, -0.3458625156922093, 0.2033762338660003, -0.690557951972506, -0.6095861828871232, -0.5529706405176738, -0.35410267257015404, -0.5372520265027676, -0.7758641178376214, -0.4890171551182852, -0.5743984125002857, -0.6652490069997823, -0.577128911691953, -0.21078331811389897, -0.5803375364505565, -0.7176211205985245, -0.8051517045893725, 0.6607434732674364, -0.768166793959448, 0.022126023062691087, -0.3593235497372122, -0.5666749710773819, -0.4009103474331589, -0.48290092961333564, 0.12406654756690412, -0.3796186269759949, -0.8098813187498276, -0.14469637544623093, -0.20527403230941987, -0.5723925965075628, -0.5529871177419501, -0.806800163629029, -0.39501167277998334, -0.8868335891194249, -0.3803099838445896, -0.04206129016870262, 0.12505678297583986, -0.6134153639412583, -0.545554487885007, -0.6813589836975434, -0.2035090240839854, -0.569958086620734, 0.019341086097067892, -0.600616308102816, -0.5949161611171361, 0.029964604811484156, -0.6663566283285456, -0.7329452967541693, -0.41661065342109144, -0.8231506191217194, -0.4528876942002795, -0.5694855964933523, -0.6664791204715164, 0.13766506345196758, -0.6976693188654988, -0.5244490229960084, -0.36947146023840133, -0.32684562479911256, -0.7410828571653312, 0.43832794987667073, 0.3786862336799303, -0.3628627202015671, -0.5051395183405467, -0.6878138218826305, -0.34986304843630167, -0.5934985477035277, -0.7909320745860848, -0.4939889286933328, -0.1666434660564685, -0.6540267299844497, -0.4673133896290446, -0.5296335129594564, -0.6304746118376062, 0.3417370880667591, -0.48064366431264666, -0.6281103590042889, -0.28880062934639866, 0.0006265064993754328, -0.5960152148614011, -0.486018643575498, -0.5055972762274734, -0.3217952983458312, -0.384693898116028, 0.061148438305464646, 1.126643626340653, -0.31411982967485724, 1.6940151035142879, -0.27100259534907756, -0.6553223661683458, 0.7037254570439527, -0.43714513671884736, -0.6710061663257099, 0.43869273731412184, -0.4828732387225379, -0.5336793008577245, 0.393023249603041, -0.7455571101073682, -0.6062261450241895, 0.36770015881884877, -0.453763189771421, -0.2981311436557968, -0.39550541738243, -0.617525859272362, -0.7415042707580858, -0.09917872993386097, -0.6016585211445865, -0.6354103700908418, -0.4873304423144563, -0.4406577033315064, -0.36449556735728467, -0.8675069421433942, -0.33520650022991566, -0.197771059580089, -0.5854126931654214, -0.36732381424921723, 0.7052740872755864, 0.9664633800177859, -0.15131461277205713, -0.741652937658371, -0.46572980250840296, -0.06118356664206626, -0.5799443143587121, -0.38706003896462765, 0.3682713692604284, -0.5155726049681433, -0.29319318271806555, -0.08387751032766232, 1.6958907608777443, -0.5115184354262757, -0.7055738524208351, -0.6173097101289031, -0.5568219914482225, -0.8868335891194249, -0.874370574076666, -0.6304284984946666, 0.4304844478456261, -0.7409075435039119, -0.4524025028791842, -0.8188921362897696, -0.5127442722573348, -0.4734993286679543, -0.4902856153246419, -0.6449126651845786, 0.47319352759506794, 0.05729705876862477, -0.8644341650904079, 0.40028959108373013, -0.3821997155037825, -0.6110337756949, -0.39961751466589396, -0.8868335891194249, -0.5368150653902305, -0.3936410308980791, 0.34566862243419666, 0.18298532554852492, -0.3998524867495839, -0.23232660230419833, 0.34172884945462095, 0.5806407061248801, -0.8097213309094258, 0.7336341364592087, 1.4277056277533828, -0.43787994654521256, 0.0034005730739825614, 0.7703595808677927, 0.5521065018346656, -0.5579095168567527, 0.30316459258686057, 0.11723250437312704, -0.5036298212725192, -0.40515100139352805, 2.3583813633429465, -0.8868335891194249, 0.18454116456578198, 0.44752693245477654, -0.2810438615931449, 0.07194548278804279, -0.45730556414049633, 1.9181678298145166, -0.4864016818273388, 1.89061150301504, -0.5680458704159151, -0.8868335891194249, -0.24061779280733214, -0.8868335891194249, 0.9109806754236313, 2.3053832868594566, -0.8868335891194249, -0.17958169150620396, 0.0387320328662707, 0.2019323026636153, -0.520067769109739, -0.6735526698462916, -0.8868335891194249, 0.5607856508718937, -0.39247131961221227, -0.12724773870118533, -0.11073858980281232, -0.1938165257537681, -0.7441983684429969, 1.7741044829121222, -0.7415527727264202, -0.4578197050292443, -0.04307149276956115, -0.26004701479542663, 0.278407563111664, 0.4581017632599563, -0.44284336708295285, 1.7044223014474922, -0.16673923992257533, -0.14352511942058796, -0.648465967157254, -0.34092810193470474, 0.8159771195523402, 0.823167253870756, 0.3204382160365541, -0.8763177900799266, 0.11552287792928144, 0.6678353163660443, 1.5659657878057958, 1.6719836815548021, 1.7274874403799858, -0.749381757064198, 0.9417438819978853, -0.7271240736369797, -0.8868335891194249, 0.1431288652519289, -0.5639954482983186, -0.7144035849799174, 0.19192959770135432, -0.46426341536668597, -0.8810559870219722, 0.7535088728411918, 0.36933712528063073, -0.09886875215216173, 2.1355781674810124, 0.9444636538299961, -0.8868335891194249, -0.5675952068894399, 0.5719931384341815, 1.9015775534716262, 0.1892327109029609, 0.12034361028180061, 1.6958717662997544, 0.48138854374399814, 0.9243621267638807, -0.21692320102245308, 3.8000213161498184, 1.70810038406651, -0.307894299527617, 1.4068566754860568, 0.6682229888372028, -0.8868335891194249, 0.5343808989690634, 1.7958441206917193, 3.8000213161498184, 3.8000213161498184, 1.7904043481771468, -0.8868335891194249, -0.8868335891194249, -0.15515666665765898, -0.8868335891194249, -0.7823488782042929, -0.8868335891194249, 0.7213922453728968, -0.8111671501270901, -0.18202037791168582, 0.3119689227585168, 2.5595975646001814, 0.18900923854871543, 3.8000213161498184, -0.6798921817645902, -0.8868335891194249, -0.4541769511810268, -0.2550778729992561, 1.6155626905782356, -0.36655213091227545, -0.8868335891194249, 1.3278428926729278, -0.6176536435793797, 0.44856305235632216, 3.8000213161498184, 0.5692607798335216, 2.6037952013677423, 3.8000213161498184, -0.8868335891194249, -0.20466780776625296, 0.2285835263795745, -0.5013468389151899, 0.3143280264592547, -0.6497851606227318, 0.6292441695836638, 0.7700350710896836, 2.3497120548702215, -0.8868335891194249, -0.7256839470714535, -0.8868335891194249, -0.3921659760498416, -0.8868335891194249, 3.8000213161498184, 0.8780035706875723, -0.7728209590243664, -0.621103848475159, 2.5574227998460377, 0.1362277689093559, 0.6229880879164152, -0.21324620544253703, -0.7515739430502544, 1.5295428835429523, -0.6100758940023778, -0.8868335891194249, 2.055360174193688, -0.6586107309663068, -0.4201590065052252, 0.08972972855254857, -0.8672038352354905, -0.7176681350396666, -0.8868335891194249, 0.4876439388602398, -0.8868335891194249, 3.3428231971475473, 1.0665333390785425, 0.8295831874985257, -0.5624298831417303, 0.588754365978953, 0.3015668739579058, -0.8868335891194249, 3.8000213161498184, 0.8065250285013227, -0.7206399283055898, 0.7920731297089425, -0.5298268914943661, 3.8000213161498184, 0.6725675980632395, -0.5480518457956809, 1.2822419456378322, 2.0022531649497046, 1.9385311616663652, -0.7020364555465936, -0.6119686865348302, -0.7294112754224011, -0.41062081051484456, 3.8000213161498184, -0.45802956078843043, -0.8868335891194249, -0.8868335891194249, 1.5267477055247323, -0.7198349901540281, 0.023313927950362523, 3.8000213161498184, -0.07859289834170151, -0.5404569038370993, -0.8868335891194249, 3.8000213161498184, 0.21746437504743482, -0.22773123032121342, 0.41246259821854836, -0.17401896914799597, -0.4922401688418383, 3.8000213161498184, -0.767116206425651, -0.8868335891194249, -0.6828660060772549, 3.379891917061888, -0.09090435993050947, 0.47714176803711406, -0.4624921709695638, 3.8000213161498184, -0.466392238415638, -0.10933390643325458, 0.20175894853320567, 0.08251236104400478, -0.5697468863658168, 3.8000213161498184, 0.17899909595050809, -0.8868335891194249, 1.1041975275702032, 0.027056374726710644, -0.4569276464149504, -0.5907699651334337, 1.5052874940068355, 3.8000213161498184, -0.5611500948436832, 3.7040575042637562, -0.8868335891194249, 1.0336361031101704, 2.6671686655875746, -0.09620848140771401, -0.644468466680129, -0.2070967680324057, 1.6138810983007006, -0.8868335891194249, 0.3335426440436693, -0.8868335891194249, -0.5794116365926533, 3.6072364190146504, 0.8157220658515648, -0.1881837751923846, -0.5209844577415713, 3.8000213161498184, 3.8000213161498184, -0.7062854625442699, 3.8000213161498184, -0.8868335891194249, -0.8868335891194249, 1.3968209016500863, 3.8000213161498184, -0.5931558157173221, 0.8949483362027553, 1.9337557416806155, 0.09575387040307155, 3.8000213161498184, -0.8868335891194249, -0.8868335891194249, 2.3317312838786686, 3.8000213161498184, 0.22230455967860885, 0.5659858170834337, -0.8868335891194249, -0.09503144691105758, -0.8868335891194249, -0.6637947918353725, -0.6583138977758497, 0.5861313978394613, -0.6144416432783038, -0.8868335891194249, -0.49148470527254373, 0.6491428208258885, 2.719976109740196, -0.11140563132308262, -0.8279007475694299, 2.7936521872891404, 1.488683486643696, 2.801762643238493, -0.054633526716716056, 3.2935292922215127, 3.8000213161498184, -0.6203234688254047, -0.011588609097482532, 1.7216947806455045, 0.16111421325022526, 1.6303452781078236, -0.2704438572508743, 1.3056936127898036, -0.8868335891194249, -0.6666621578318154, 0.11114062282279195, 0.24238892296944087, 2.2996718689946762, -0.8868335891194249, 1.5265227456432975, -0.4093434823579231, -0.8868335891194249, 3.8000213161498184, 3.8000213161498184, -0.848725102001292, 3.2017841074508673, -0.45102951528132523, 0.3902407727785455, 3.327330487021721, -0.2954736763279791, 1.639653079021257, -0.7742383721939297, 3.0360117887140565, 0.4081327498392664, 1.0577074969752016, 0.33342604479687815, -0.17935467197172997, 3.2881838060458644, 3.8000213161498184, -0.8868335891194249, -0.3818609597921839, -0.596399683427849, 0.21538023502681064, -0.586670082736717, -0.0013886923571715, 3.8000213161498184, -0.8868335891194249, -0.8868335891194249, -0.5924685495485036, 3.8000213161498184, -0.8868335891194249, 3.8000213161498184, 0.16546923516659603, -0.8868335891194249, -0.6015572834766797, 0.8214168920669032, 3.346877967421549, 3.251759986381672, -0.8868335891194249, 2.447950639107767, 1.280678211283945, 1.0543628492974377, 0.2572061813251033, 1.2414399901732105, -0.46681071986344824, 0.3921847419676452, 0.7336609119486627, -0.48090807227095556, -0.654095370782455, 3.70496008999356, -0.491088536732608, 3.8000213161498184, 0.22581066126924018, 3.8000213161498184, -0.8868335891194249, 1.60556536359891, -0.8868335891194249, 3.8000213161498184, -0.5802040594914015, -0.8868335891194249, -0.8868335891194249, -0.8192266368154107, -0.5342560895262723, 3.8000213161498184, 1.0010186366789784, 0.7120243712459587, 1.6351028477672742, -0.5528355616061585, -0.8868335891194249, 2.069923294249924, 1.5294527165100975, -0.8868335891194249, 0.4734314175205503, -0.8868335891194249, 3.8000213161498184, -0.8868335891194249, -0.7122753197536618, 1.810227822083613, -0.3255808834107356, 3.4728449739121237, -0.8868335891194249, -0.7938736524559278, 0.13900715625430662, 3.8000213161498184, -0.8868335891194249, -0.1315998999883419, 0.07461084545248489, -0.45860926729877755, 3.1767570345778084, -0.8868335891194249, 0.9407722978914311, -0.8868335891194249, -0.3781991827596891, 1.9938950929355326, 0.12398061426529394, -0.4863668107572116, 0.7312360137759951, 3.5342230920421542, 0.035511422071259145, -0.6729058529745693, 0.6654419995398966, 0.20188287099078628, -0.5685349521927425, 3.8000213161498184, -0.5337478987462919, 0.8722399749459165, -0.5583924482807684, -0.8159411326466642, 3.8000213161498184, -0.060179771850647684, -0.8868335891194249, 2.23287159982604, -0.8868335891194249, 0.12996527943266659, -0.677563944253085, -0.32523503333868564, -0.8868335891194249, 3.8000213161498184, 0.03207614965997916, 0.611703477790496, 2.394028693813121, 1.4112279457763715, -0.6877346968785533, -0.8868335891194249, 3.8000213161498184, -0.8868335891194249, -0.20529863372066537, -0.8868335891194249, -0.11752897979477643, -0.8868335891194249, -0.4211676643663074, -0.43584858513360264, 0.06697908719591629, -0.23450834699362075, -0.40477660224191575, -0.5370996693907956, 0.7029838675263418, -0.5621579231222936, 1.0359198006247985, 3.8000213161498184, -0.4722213139600214, -0.33648113939537505, -0.31094052636570374, 0.08792249743990173, 0.7176865862882523, -0.8868335891194249, 1.7057150770021685, 1.0930451929391691, -0.20604497188276616, 0.7704928861891925, 3.8000213161498184, -0.7449270565228435, -0.10689493396485135, -0.6476394884677052, -0.8868335891194249, 0.7911920559108426, -0.4872332953463264, -0.8868335891194249, -0.8868335891194249, -0.8868335891194249, -0.8868335891194249, 0.3048717016769926, 3.8000213161498184, 0.6196386343815754, 3.8000213161498184, 3.8000213161498184, 1.765394667929713, 0.714159316041435, -0.8868335891194249, 0.995608729133414, 1.088151457329097, -0.42257403550710243, 1.461951249908378, -0.31489305775157517, -0.4332303370323172, 0.2725274825483927, -0.005186006001855813, 2.735790583440085, 1.3632030159699475, -0.5374732389599353, 3.8000213161498184, -0.34453787272807745, -0.6829630815296546, 2.7835781954468573, -0.8868335891194249, 2.47689677400488, -0.7741026997018515, 0.08125940544798695, -0.44393169346766376, 0.5046302407116219, 1.489561356537085, 3.8000213161498184, 3.1388484339260487, -0.2689861378156767, -0.051659044459331005, 0.21273953098619514, -0.5205988735297298, 0.08057182460995797, 0.7147971219311269, -0.8868335891194249, -0.8868335891194249, 0.2135952023968741, -0.8868335891194249, -0.11431145847931647, -0.8868335891194249, 1.2707982845275836, 2.4115403216134728, 0.4666906308391729, 0.6704317378664146, 0.3715977089112187, -0.24972540688832442, -0.3892472188495582, 0.9294690364630304, 2.353979427107451, 3.8000213161498184, -0.8868335891194249, 0.9974299201166236, 0.4985939697932145, -0.8868335891194249, 0.6451940082579919, -0.8868335891194249, 0.11183884520150643, 0.18937906069358432, 1.3431731190593623, 0.1276282597894728, -0.8868335891194249, 0.9458078062853742, -0.3561948223525745, -0.078307750821586, 3.330448801716018, -0.8249273344722143, -0.7982300546258947, 0.5364293383370795, 3.8000213161498184, 2.220659459283561, -0.8502879209538352, -0.46138181773990045, -0.2325568257433927, 3.8000213161498184, -0.038923294345409074, -0.8868335891194249, -0.7306800073885332, 0.1609745001193845, -0.363297993542867, 3.8000213161498184, 0.11048931476320228, 0.9133608333553795, -0.8868335891194249, -0.7872322869429003, -0.43665190702965906, -0.8868335891194249, 1.0013752999294576, 1.2886831672278571, 0.043691906223786214, 0.996854933644483, -0.7176504277448283, -0.053192112868042735, 2.852933120929342, 0.7930611910396824, -0.1259820819114596, 3.0830904223762725, 0.4683741683445716, -0.5144639395097163, -0.4613092435767251, -0.8868335891194249, -0.47046591744874905, 1.2667963786814636, 1.5564961897039777, -0.8868335891194249, 3.8000213161498184, 3.8000213161498184, -0.06293095339153768, -0.8868335891194249, 0.5402880982972965, 0.38589398947430353, -0.8868335891194249, -0.8868335891194249, -0.5011564926472473, 0.9656029027500216, -0.8868335891194249, -0.36886758141119014, -0.7492329757387446, -0.35636279850005825, -0.8868335891194249, -0.8868335891194249, -0.1469167958426353, -0.7188397915533999, -0.5139849843603086, -0.4012610033622895, -0.4727677513526025, 0.3149908914608691, 3.8000213161498184, 0.17714620919559323, -0.8868335891194249, 2.4157392675998923, 0.4217262310169123, -0.8868335891194249, -0.22613345447966726, -0.8868335891194249, -0.30900908673256255, 0.017914719158063905, 1.2436039989615026, -0.7056114553918613, -0.2990919717964103, -0.7413690345119635, 0.8511755600861504, 0.3154134636084537, -0.8868335891194249, 0.0787591010892284, 1.024416981702384, -0.2612927043932344, -0.33495178980464396, 1.1366642960543702, -0.27837861335386327, -0.8868335891194249, 0.06760791070987546, -0.5280106493996983, -0.5824039977826297, -0.38777124859997114, -0.6779694098379685, -0.418429098200255, 0.2810037557617114, 0.9730514090991084, 2.163498595166933, -0.6059354478833967, -0.38750086192660366, -0.5428658969113329, 0.08525513233499872, -0.35587071306255486, 0.1820397159553329, -0.6836124300582317, -0.21664772242908276, 2.2663082360391393, 0.5531173337739561, -0.7141471867834094, -0.05906441251985957, -0.8868335891194249, 2.0120255320475957, -0.8868335891194249, -0.3066607389976784, -0.5523406727520251, -0.21086175656696454, 1.1049714994105262, -0.4958733681884787, -0.5713933501165966, -0.8868335891194249, -0.6041418619721088, -0.3318009783624688, -0.35419346894142706, 0.5646788528078527, 0.7961291586598015, -0.15693872423321228, -0.8868335891194249, 0.061576388435975064, -0.8163629753338014, 0.3688123714575015, -0.8868335891194249, -0.8868335891194249, -0.45370042756645207, -0.5206631804744749, -0.5949760340865979, 0.5421232491510785, -0.18680500912351228, -0.6007205208251051, 0.9358088773536836, -0.13856038299340764, -0.004240854109338139, 0.9966795198610432, 0.18607125792010965, 0.3683836203508086, -0.13767078452023843, 0.09287882361719257, -0.8868335891194249, -0.14948461105086708, -0.39321845875049266, 1.2098078388687215, 0.6827404532511804, -0.5529842285064429, -0.567061356265404, 0.044628018527985196, -0.5597513615828918, 0.5259699625270001, 1.0547990380400862, -0.8868335891194249, -0.5569108425916289, 0.6795260214152716, -0.6195127665059756, -0.5661111124528836, 0.12644750647483485, 2.6774804329301736, 0.11101097910678673, -0.8868335891194249, -0.5008978345536598, -0.5543261782773238, -0.15357605459140045, -0.05019268592390601, -0.6878034091922887, 0.2985122940825089, -0.376494819873606, -0.3259875504598891, 0.37039155320915007, -0.2783370198050822, -0.16326397591487518, 1.7373092391506963, 1.0332626193599068, -0.604216867670117, -0.39418186145740003, -0.2819767127800394, -0.021734345520468993, -0.8868335891194249, -0.8868335891194249, -0.44001397593933544, 1.0687234368052818, -0.35030284157176095, 0.831082157206998, 0.2721432428322773, -0.344376876515877, 0.4671391775000287, -0.5569333271372557, -0.27104109941830645, -0.12202331435390058, 0.24399270613233767, -0.2935911534544076, -0.531860913291145, -0.17487137944137507, -0.8868335891194249, -0.2786695965575762, 0.28118157247368886, -0.37492708063881314, -0.8868335891194249, -0.6285712349770601, 0.5206617789563153, -0.23496816453358216, -0.033775649286244894, 0.22219802984665324, 3.770941303805455, -0.48649819945704015, -0.570132899672041, -0.2601634996170469, -0.002846182942030788, 0.0007891046639352505, -0.5427777037126459, -0.12466613526013931, 0.08916458264490157, -0.6178831518612704, -0.17602255384993112, -0.8868335891194249, -0.1936686884359554, -0.1565580316973271, -0.8868335891194249, 0.2739607722100922, 0.3259900107911648, -0.19939040456591348, 0.766243936404103, -0.4315988629786227, 1.5039372770175243, -0.10685820348573491, 0.7606201682184544, -0.7863737048419909, 0.18274903757538846, -0.7338279152920552, 0.5978334309803811, -0.1017761240481716, 0.47429109381214174, 0.615166326667397, -0.06497613164225406, -0.6703952360474845, -0.7645548204815797, 0.37603591792514424, 0.3425426412536023, -0.33127576683866056, -0.6381835784766843, 0.2464364844578196, 0.2385442373049622, 0.09237512402507375, 1.3238336636160277, -0.6797428140101474, 0.21751460769644626, 1.0775751389967276, 0.03263357186874438, -0.13758725414717088, -0.28813604796725306, -0.02123333491981587, -0.39481411772641944, 0.22675066402917385, -0.19790465096441204, -0.004311912139028991, -0.6465069510584822, -0.08554153834182024, -0.44988343279277115, -0.7749075877924028, -0.5334792570567448, -0.33821553888821276, -0.20603970832501123, 0.1287220499759762, -0.04259027772307377, -0.7949006898597146, -0.45755878703857694, -0.11290482988189213, 0.8041103141686571, -0.5702628866635542, -0.660209436512348, -0.6324737911705511, 0.8511912363342444, 2.02240000438258, 0.05505661396771726, -0.6581669043436547, -0.5741400118633272, 1.2271302074402277, -0.4726878539786377, 0.09743878101050266, -0.6760929944077706, 0.008569501214502614, 0.6708705583879431, -0.08874132375615004, -0.5151543809769622, -0.3589932042755058, 0.17808003299642797, -0.730319139013106, -0.6886790764011833, -0.8868335891194249, 0.4772644318178379, 0.03676071606187669, -0.5450874615594244, -0.3464304650164845, -0.8868335891194249, -0.8868335891194249, 0.2364633011890584, 2.3663501609335853, 0.13246707131862379, 0.6888346233048874, -0.2929730859062918, 0.27247335944364465, 0.053431318873126334, -0.7062780106051654, -0.8868335891194249, 2.131588619553109, 0.37365335706485797, -0.6600473532610456, -0.23435044026097251, -0.22129778964265245, -0.8868335891194249, 1.2412788795358418, -0.820605824827093, 0.08635636015746725, -0.017749431811888573, 0.32730338287619587, 0.6176155974009807, -0.737099817168886, 2.908440999060585, 1.1397821530479926, -0.8868335891194249, 1.6893900382000548, 3.8000213161498184, -0.8846548100979454, 1.6575905972990796, 2.8042964741716543, -0.6201491420810651, -0.40401836386228296, -0.8868335891194249, 0.243247683859674, 1.671510876758206, 0.56060920726193, -0.11747703076823852, 0.27591252231065566, 1.8785172203962086, 1.9848847974604222, -0.5356853170944926, -0.668721095709054, 1.872035721146851, 2.0988659963919845, -0.6011654058805662, -0.26031471247733207, -0.17785295605921156, -0.3839836610946172, -0.29191436703395207, -0.45984648943410983, 1.8217552424172663, 0.21433896599268099, 3.8000213161498184, -0.5721415190813939, -0.875074693821291, 1.360509905202115, -0.8868335891194249, 0.23903615110470497, -0.638526482100643, -0.6304225769921923, 2.0948196935804626, -0.8868335891194249, 1.3286013026903232, -0.6265343525510669, -0.8868335891194249, -0.06706816699950531, 0.37789956064590147, -0.8868335891194249, 1.3173462142578942, -0.3119307045620602, -0.668988450115454, -0.6123558440927389, 3.8000213161498184, 2.960098012568251, -0.579879978807675, -0.8868335891194249, 1.7444120670654881, 0.8283189038108246, -0.40807067399516017, 0.19487730446929694, -0.3748156877371957, 0.4138121286568527, 0.5239920090628328, -0.13554917025690705, -0.47531771623453384, -0.8868335891194249, -0.8403674662330752, 0.3901385911029915, -0.8868335891194249, -0.6035606393282776, 0.3195508488541792, 0.19667995857519097, 0.3506300977440715, -0.10841861950973819, -0.18260022745349405, -0.33164421588150644, 0.38714202478806986, 1.4513149727876606, 0.07920341401883954, -0.16931803994699005, 2.0076567791109943, -0.19166825042615557, 0.31224377201346426, 0.2148153179695055, 0.7108350360436839, -0.4675021339446269, -0.2089798630318195, -0.8868335891194249, -0.4595442925638756, -0.5581032958797528, 0.3121293468448786, -0.7132789858167653, 3.6335702273129575, -0.6408744579537291, -0.414461262448086, -0.4178779121631772, 0.8797712106918838, 0.2879626368144178, 3.8000213161498184, 2.514432577457393, -0.8316616489799983, -0.8868335891194249, 1.0340862517233818, -0.7184399900143615, -0.3744186896147875, -0.532813016512655, -0.8868335891194249, -0.6884072165037697, 0.28891740042109665, -0.713808802953609, -0.8868335891194249, 0.15369374106744893, 0.5386444951757319, -0.466440440017905, -0.4423858952589473, -0.5662270537549534, -0.48006392919600754, -0.12314153431390377, 1.8528342624568261, 0.06327016699396334, 2.5128189537299925, -0.8868335891194249, 0.10931371058114837, -0.8194628961822481, 0.8320928747211129, 0.32595282261137676, -0.6157303567394996, -0.8868335891194249, -0.5606780910232676, 1.497070164950019, 0.1600777500731809, 0.7909911253147964, -0.15404931708867078, -0.3939505509791038, -0.8868335891194249, -0.4352657033248272, -0.8868335891194249, -0.7597746947607676, 0.048324638024314005, 0.3370759788244193, -0.32457314095100104, -0.8868335891194249, -0.09292344924278724, 0.38648041846331216, 0.17794672767501862, -0.37245990236635385, 3.8000213161498184, 2.481901730878827, -0.3575261591890684, -0.38590257117179894, -0.22518595687119367, -0.17249814423232313, 2.2592486608380775, -0.5709446032116956, 0.6271104834650442, -0.3288460055963284, -0.7980266495855876, -0.5033509671366755, 1.3993288724951518, -0.3736754981448241, -0.28318744548884484, -0.8868335891194249, -0.6498426163605079, 0.5241019716498413, -0.5357422722221561, -0.7336192180877009, -0.600860491412577, -0.03719404398515721, -0.7238561480347578, 2.636503178107288, -0.7654668891972306, -0.6391480682226924, 0.15633501723390503, -0.5375151185716376, -0.06549178866448509, 0.0948810352171094, -0.3451316249278681, -0.50217101479822, -0.007283533767199073, -0.3506339880096479, -0.4832904614934934, -0.5776407354710373, -0.8672914563083349, -0.8175252275289913, -0.5627508171333206, 0.2539392283368114, -0.8806150103011756, -0.3599878450534365, -0.7959401638490121, -0.47219768516270866, -0.3041793720043134, 0.018513506065272103, -0.4234970175232065, -0.006931733586382736, 0.05550487456565302, -0.5590055383340504, 0.4649422142631838, 0.15929691272275226, 0.5520064942373264, -0.4132118826385906, -0.4406205151517156, -0.5295695778965095, -0.2817388228545502, -0.3413746461551111, -0.7062019893837864, -0.4895974623607676, -0.09129277616527343, -0.01344349829284019, -0.2007905109287278, 0.009823257786696599, 0.6037246107850123, -0.8868335891194249, -0.599943087623442, -0.2726597006405353, -0.5235670624028422, 0.2888321536704933, -0.4747013936702392, 0.8975568867710005, -0.24336456897923084, -0.3788594159824295, -0.8868335891194249, -0.3342617488254873, -0.6400309728234995, -0.7396903886825197, -0.5328518924636819, -0.7833006166955779, -0.010560842233246, -0.15310839892739037, -0.55007013413178, 1.3278671508086775, -0.722498035708814, -0.044900293026481373, -0.3018910402703531, -0.5156207493578253, -0.10463743981382413, -0.3346804305173428, -0.2251795490617529, -0.5064223961181441, 0.17363507289754415, 1.0459093466926606, 0.7336069032690903, 0.055057929857152584, 0.5496661562642462, -0.6270323022784599, -0.5365507718570894, -0.6372742988745184, -0.8868335891194249, 0.6133736275511725, 0.005315707120600362, 0.011050925420451453, -0.10524601007294779, 0.38929493433501167, -0.6461333814893426, -0.6848690186533476, -0.3234986314053976, -0.013121505868440205, 0.34315630343272957, -0.3585395656946471, -0.3798113761724773, -0.8868335891194249, -0.283147625530177, 0.1963886320959765, -0.7050189189594867, -0.012849803305633841, 0.7052442223065879, 1.105639971245399, -0.06526980383742888, -0.13354003593429556, -0.8137011884558693, 0.9834043695024076, -0.6698878891531216, 0.16093101855532194, -0.4761916956721912, 0.14120949747407746, -0.33980971033694835, -0.5917171480726939, -0.33018775512316295, -0.5619059016884841, -0.16511034043517364, -0.24831202720595416, -0.17007747979089383, -0.6188554225187424, -0.323600813080945, -0.6386836736759878, -0.8868335891194249, -0.3932491246956736, -0.8868335891194249, -0.18647191745775893, -0.5073653167198753, -0.5080970942792721, -0.6701246634332179, 0.01438779218674701, -0.3841340729787228, -0.23066600704509882, -0.15897497732077875, -0.8757221847287724, -0.4580599978832742, -0.22934514011152998, -0.31761654840166637, 0.7539775583317188, 0.1941144318703339, -0.013757023254764938, -0.5347545255606315, -0.12947513903287408, -0.26776178851181, -0.5049729439013779, -0.29453510388265436, -0.3895792806887938, 0.05416615730577906, 0.015549550923398114, 0.10961968348195116, -0.3947339628958254, 2.3679150395391724, -0.22845491229993342, -0.2282171367996124, -0.5185502911302479, -0.46572207880952315, -0.6817097969612812, -0.16366091682469933, -0.6394533545724791, -0.7763503675915264, -0.7912584437731832, -0.3168102514512277, 0.13537289847485934, -0.0911115839108177, -0.6227062585360328, -0.31915121876273744, 1.468433893409426, 0.3789356805474471, 0.08266408881755408, -0.5943853141537747, 0.3677275064341431, -0.06267069334558989, -0.8644650241280609, -0.2877883670925058, -0.15668298398142266, -0.622618380006559, -0.31061870557905685, -0.17219777816478637, 0.5069703498343603, 0.9055080628856819, 0.1641905339076488, 0.3805078823638143, -0.42116820788585885, 0.6875626731308793, -0.8868335891194249, -0.39092480624619236, 1.6648918384561944, 0.24531637648253676, 0.013328329550812992, -0.3226796904738303, -0.08577977154281562, 0.0027524117065291127, -0.8868335891194249, -0.24327852125245442, -0.20188258473770948, -0.6819316387568763, -0.38082632741783223, -0.02248131302099628, -0.4860856967242892, 0.9635021710799551, 2.628168906528182, -0.5622022342688289, -0.22793931249028637, -0.2585795120083149, 0.01813493039500672, 2.3040326121694714, -0.41502909734719223, -0.7058036753719393, -0.03327858635390872, -0.7713180487991506, -0.22522034163435356, 0.8725628827716606, -0.08588984855499503, -0.1538057631173365, -0.4933610491870116, -0.5048602065040284, 0.1564280448959722, -0.6108216028260502, 0.1502462251631241, -0.2893725835515749, 2.1903489186762317, -0.0051445268782435065, -0.17099877403576147, 0.6732001403951812, -0.7899960981617726, -0.23873710073645799, 0.6594569910970254, -0.46086636096171446, -0.8868335891194249, 0.7436196776461772, -0.1830261751435539, 0.3519009036663793, -0.5728400561293169, 0.5247179223323403, 2.0493771109786802, 0.18479404418835163, -0.797504112750095, 0.25827788745407204, 1.025547616793186, 1.1547610941668738, -0.8588103021464164, -0.590314867631677, -0.44174288302407994, -0.6176052417330683, -0.19615325933403968, -0.05461910914547426, 2.1981275416366857, 1.5994678752153164, -0.8868335891194249, 0.5910322278099907, -0.159753926655925, 1.1810839176489873, -0.5356631758243711, 1.5924822186731658, -0.802802634545612, 0.5712504046648992, -0.4372052671449394, -0.8868335891194249, -0.2967435668489419, 0.1614565733546336, -0.3188249926071002, 0.02077014202753481, 0.9186668428478683, -0.12835245649129542, 0.2523449424629095, 0.5720886834499529, -0.5171278146469749, 1.7022367807275058, -0.27876948972975196, 1.9163052169202839, -0.7911828659493327, -0.2791045838359549, -0.21621691166935833, 0.7763116348621113, -0.18616989222527675, 0.3703634046176827, -0.19922362988269976, 1.1828678060272426, -0.8868335891194249, -0.15267970503328424, 0.8912014840574194, 0.10402978514620377, -0.6298764256625324, -0.8868335891194249, 0.6758865000780647, -0.7072439878783656, -0.037529252516529374, -0.5383808593971569, -0.45467355641268864, -0.3879293841829566, -0.41652077245116703, -0.02695985690685445, 0.8192092872893729, -0.3907793146443364, 1.6791325083873607, -0.2640365055107508, -0.09963065213718934, -0.4214206870203428, 0.9836541596454232, 0.6033824795309457, -0.8868335891194249, 0.09364444242020167, 0.6986977295614643, -0.027782402231233426, -0.40974482863673667, -0.42650393931588493, -0.8868335891194249, 1.585917417901059, -0.07392417982565384, 0.8768514236650855, 0.9009049672038174, 0.49859271111635756, -0.8335609816259923, 0.31290881109328417, -0.2521214699185085, -0.10836781473488614, 2.5917544697278183, 0.8438346133955342, 1.1799451583712226, -0.1023352626344654, 0.038883989490152475, -0.8372855852276134, 1.6782841601874618, -0.863386313033298, -0.509595663499655, 0.560931657387009, -0.4382431892428876, -0.8617286427675704, -0.42362846343561894, -0.48077302196573235, -0.8868335891194249, 0.4396057357342693, 2.1899486594365145, 0.07460901464978753, -0.6463541934584209, -0.8868335891194249, -0.8868335891194249, 0.8646106768304643, 0.494033783549572, -0.8299888316825791, 1.0409583984983048, -0.8868335891194249, -0.3760431837331989, -0.4756488340661286, -0.35350405730069784, 1.6525806057177246, -0.3067002728934249, 1.2835136669614888, 0.3977527850961904, 1.2526737955242777, -0.6331692101326307, -0.44759089593386464, 0.8574040652877722, 0.44241533132371724, 0.4252323326075436, 0.974735175454849, -0.46713048099706067, 0.76844055636544, 1.3581374137566644, 0.6970019485630246, -0.21015615376488025, -0.8868335891194249, 0.42301671806822644, 0.003596240112264172, -0.8868335891194249, -0.5585738693855612, 0.563688274123409, -0.6274805056638094, -0.6248767323463508, 1.0106920260060361, 1.355696953761069, -0.3218556004096763, -0.45697727833182455, -0.19658561483354142, 0.5100243575839166, 1.5105254205240133, -0.5721380005074601, 1.7721201216385047, -0.8069698203961764, -0.8868335891194249, 0.677819598876156, 0.5047513025399807, -0.700330319070397, 1.9600190640750645, 0.5349440996488374, -0.6882332616412266, -0.8868335891194249, 0.5887092824625256, -0.6301207520037553, -0.7876337118890182, -0.5836069209736785, 0.5898728720018708, -0.8868335891194249, -0.6146663457031138, -0.8317881853375214, -0.6480910816986745, -0.8868335891194249, -0.20695785587774268, -0.5907956821900741, -0.7177108013244036, -0.07433839893593398, 0.29772756627635305, 3.5627822410191157, -0.8868335891194249, -0.5128467686020953, 0.45307460790331816, -0.8868335891194249, 1.4492750008821245, 1.3903501583665616, 0.41645203172129514, -0.10431190020919832, 0.0949970623380506, -0.5275654496750238, 0.6492444303755925, 2.051522582889657, 0.04282118790343352, 0.22716740049315817, -0.8009272632450771, -0.6713902344040674, 0.6566619275039903, -0.4753680919150035, -0.8868335891194249, 2.165725080097269, 0.08553684710006133, 0.34172106854315715, 1.2376934813033829, 0.43051408396429214, 0.3552163729261516, -0.8868335891194249, 0.7556525139494807, 0.8098465622950187, 0.3488807657667337, 2.033280235962722, -0.38101324093071715, -0.8868335891194249, 0.045446444546293915, -0.4796092607886321, 0.3328453370663035, -0.08660735157461119, 0.3845720355016356, -0.5280002367093564, 0.7584327022706043, 1.670979715125636, -0.0005059593941165653, -0.8868335891194249, -0.3607845302897141, 0.3433597513824702, -0.8868335891194249, 0.6845026008473998, 0.41707084303300646, 0.8806591500001086, -0.7249323310484517, 3.8000213161498184, -0.4029516924407273, 0.3290945944652313, 0.45457495071381354, -0.439324221023101, 0.2936199315744598, -0.715018906323987, 0.19962537683975248, 2.663875966936353, 1.148140453912497, -0.1895725534635096, 0.15017127667770752, 0.2978233401424569, -0.8868335891194249, 0.5865249059942298, -0.09828495494203762, 0.060760022070701636, 2.499092968207139, -0.453767137439737, 3.8000213161498184, 0.9364683096002451, -0.07457451527131062, 0.35774963173347224, -0.1829905889161244, -0.07653078516603551, -0.7743317574346416, 1.8743441344978937, -0.6367490301381261, 0.2976567370969962, -0.5548756193305802, -0.5148120494788458, -0.16632227460824914, 1.3950317497140807, 0.04954812913941591, -0.7830125012726517, 2.4691815425878274, 0.9938401737277538, 0.711550879898356, 1.472954831820251, -0.3062313013399767, 3.8000213161498184, -0.23601858758119867, 0.7840238912247858, 1.1022417725887463, -0.21991141430006841, -0.6841335794885549, 0.11479559155776027, -0.6412908225359208, -0.2780981000530753, -0.147885919807972, -0.0751993339043726, -0.4358970155862069, -0.8868335891194249, -0.7469126192607263, 1.9696463400591888, 0.05586828890108113, 2.351001626520177, 1.1474696935742525, -0.42458952042657055, -0.6800063065671077, 2.432434128546875, -0.8868335891194249, -0.18975408899347043, -0.823216005953993, -0.684021528642218, 0.37989513558603566, 0.20498768351518531, 0.8705076923186956, 3.482328989585179, -0.1788645317620929, 1.2125611372752254, 1.2879162897480005, -0.5965633686315114, -0.66108041228933, -0.3791684211501948, 0.8255440934726176, -0.7888469977093973, 1.062873335636166, 0.12858210799480296, 0.3996205471230167, -0.6162425810066732, -0.6038459584861462, -0.8859303995845444, -0.6771278985418975, 0.15047908038119828, -0.6033653155655023, -0.5166438247901505, -0.6578792823792693, 1.9533002470260554, -0.8868335891194249, -0.10554837858093512, 0.16652835452702505, 0.38217803212449075, -0.24596928630433107, -0.8868335891194249, -0.5242110758579342, -0.5607397661891349, -0.012269496063151164, -0.15855400712555165, -0.8868335891194249, 3.116332306952434, -0.6521776478663972, -0.7563769251984925, -0.7910633202544521, -0.6298235326283537, -0.8868335891194249, -0.7828199880780801, -0.3023457086777285, -0.445450487336593, 0.5576197353074652, 0.1901340379559173, 3.482144536213419, -0.41494837039075483, -0.8868335891194249, -0.8009330631708098, 0.8159355832161412, -0.011349288857385273, 1.1782917146851644, -0.7731448895250594, 0.6602687232429768, -0.17223181965244072, -0.8868335891194249, 1.9830317962803505, -0.5229826072479985, 2.774769288268458, -0.0939623725609612, -0.8868335891194249, 1.530106999624075, 1.0808925534843636, -0.8232090760797205, 0.266692714351872, 2.1792730200578125, -0.2600593155010488, -0.16074204519924692, -0.708263573343048, -0.1663458461929778, 0.06773097497869521, -0.23848845484512088, -0.41134323381671045, 0.35767010624130285, 1.9754721830925646, -0.8868335891194249, 0.3527582914545895, -0.4695868174847968, 3.8000213161498184, -0.6452933577204626, -0.39522061313781975, 2.8890907876513987, -0.2896720342177632, -0.8868335891194249, -0.8868335891194249, -0.8868335891194249, -0.3803916834149597, 0.10415611053232235, -0.8868335891194249, 0.3435775024782911, 3.2006467212751257, -0.2778364096925193, -0.5469985907251423, 2.1084685565396946, 2.1458558361233777, -0.4725532327677959, 0.475778964279254, 0.6715559651477663, -0.19095532441328286, -0.2654582382304273, 0.034689277234970645, -0.2835175621002141, -0.8868335891194249, 0.14957260419566726, 1.2734094668746994, 0.5042874229065294, 0.30478519624954187, 0.1766666533140577, 0.03553001616115432, 3.6837209479013615, -0.32336011973882484, -0.04185538207783259, 2.8268283918185384, 1.0526402928095442, -0.8868335891194249, 2.040509389263623, 1.5427960642692196, 0.19506107129004083, 0.10829933146163871, 0.13647046469193314, -0.41889975752493935, -0.8868335891194249, -0.5832843850297279, 0.24494392255878805, 0.8044319633175445, 0.08662182654858602, 0.38147500388870037, 1.392022138929945, -0.09747167805631483, 0.2469644421856692, -0.726058789620594, -0.16504071272008958, -0.6848316588358045, -0.36025891827781653, -0.7836005036077219, 0.16680171625477389, -0.5321294119492311, -0.3279462804957387, -0.7297639194888362], [-0.23585997186847774, -0.6348742890443135, -0.737630118896773, -0.38679034157593317, -0.6381935705839905, -0.5178827642545982, -0.737630118896773, -0.6685878930692319, -0.6291430997073084, -0.6543472933798782, -0.737630118896773, -0.7276368679299176, -0.5014758343061261, -0.737630118896773, 0.14002227180410595, -0.6164083020781519, -0.6423963334102522, -0.21497744753700027, 0.17219200663345643, -0.737630118896773, -0.6068410786069506, -0.6093301027045906, -0.5728849456521123, -0.5208946165802699, -0.6000678587692295, -0.712813198298681, -0.6503072938616847, -0.5502136166831176, -0.737630118896773, -0.5659198307609138, -0.737630118896773, -0.737630118896773, -0.737630118896773, -0.737630118896773, -0.7187884125419749, -0.6595283087422821, -0.40691523548763775, -0.737630118896773, 0.37078955223576954, -0.5917076036008662, -0.48871814783384687, -0.5246283145997365, -0.737630118896773, -0.5975784569679076, -0.6833569217926426, 0.18204148267038095, -0.6065127246089672, -0.6528938680288279, 0.6175143168175027, -0.737630118896773, -0.6055154034326554, -0.4690899234723175, 0.14066898683980186, -0.6740531790141736, -0.5350091010102336, -0.737630118896773, -0.2896166591875986, -0.06481459329424907, -0.6427551195334636, -0.5237379483146077, -0.5986528081122611, -0.6853663701295971, -0.5641983760856482, -0.6586279171222817, -0.29295741587947527, -0.6134707602540128, -0.6452182007839234, -0.737630118896773, -0.6486828011173311, -0.737630118896773, -0.6180507411431629, -0.737630118896773, -0.6448108527587524, -0.5995020694452649, -0.737630118896773, -0.737630118896773, -0.6360887035054524, -0.5628556934541334, -0.5359270288726081, -0.5598813848744433, -0.5261204168078144, -0.6802107094757829, -0.44618521679403955, -0.5867806317349138, -0.630926292747266, -0.573587690331137, -0.6263451571640025, -0.5421285995835287, -0.737630118896773, -0.5483905813004858, -0.4118431893831628, -0.737630118896773, -0.35418706766895386, -0.6774291053146031, -0.5647110494804027, -0.580695145552746, -0.5343566232955046, -0.5826483052495609, -0.7153887205863032, -0.5589086576035903, -0.6581945830837953, 0.2360017414825173, -0.4727876425181991, -0.737630118896773, -0.3549219279524745, -0.6686347660961567, -0.48225924220867555, -0.6948678192024775, -0.7024527566272206, -0.40875188978588517, -0.45601833286577115, -0.5640725036357681, -0.7129091728042538, -0.737630118896773, -0.6955805028841033, -0.737630118896773, -0.737630118896773, -0.3058006792145414, -0.737630118896773, -0.3955109368483704, -0.18300722658396634, -0.7276938647644592, -0.6038094130252798, -0.34031968777922744, -0.48277790490467193, -0.6472935044557019, -0.56906676071477, -0.737630118896773, -0.737630118896773, -0.5755046444321581, -0.41560682311730446, -0.737630118896773, -0.4327301382434843, -0.5202999167373387, -0.6204541560034151, -0.45914438120178325, -0.5095353186368193, -0.5549541648032145, -0.6051447682053657, -0.32892171297874956, -0.5468890472918942, -0.5948198603567231, -0.5422219895167634, -0.3691715439682922, -0.598377602418089, -0.681631571373686, -0.504716337649291, -0.5010684539063532, -0.2521312738205431, -0.737630118896773, -0.737630118896773, -0.585564048175488, -0.42896082816258074, -0.45205676081924223, -0.41167443137808574, -0.49683318698038065, -0.5369956712955984, -0.737630118896773, -0.737630118896773, -0.6893978227530458, -0.44796105000796754, -0.5202246565808348, -0.572338386841324, -0.44653693446263326, -0.6159544209593698, -0.7332009328302703, -0.737630118896773, -0.5613197560358866, -0.6272369803061905, -0.5410611873953886, -0.737630118896773, -0.46487058485018734, -0.5572847152274591, -0.47078017982345854, -0.40768033364877776, -0.737630118896773, -0.67655483460209, -0.6915409943806963, -0.6072865639124606, -0.5650170865865527, -0.45742321789792895, -0.48478623092211476, -0.31847481763238394, -0.4020007278431875, -0.616169496227382, -0.6108244063855574, -0.6106531447446463, -0.43567762986175784, -0.47687614458491734, -0.737630118896773, -0.737630118896773, -0.5597643291076536, -0.4814656112322502, -0.5792909619702824, -0.6312210095344921, -0.48624043326359634, -0.6782631991468947, -0.5682341075522354, -0.5796401760030405, -0.572902794848965, -0.6570051078571961, -0.5971074388935004, -0.5653090839072682, -0.737630118896773, -0.5119676655991049, -0.5049425929462876, -0.6844696368395443, -0.737630118896773, -0.6480103644608962, -0.6512611845103439, -0.503295955974641, -0.737630118896773, -0.7205466757899848, -0.6777613766393447, -0.6993409881882675, -0.737630118896773, -0.6023839809128259, -0.6955087850485593, -0.5781182783702266, -0.5765274552112327, -0.737630118896773, -0.3851412225515201, -0.4863450032258149, -0.737630118896773, -0.6336083881755638, -0.5188499015109591, -0.737630118896773, -0.5047853602992766, -0.737630118896773, -0.22369515067838802, -0.737630118896773, -0.627874241958306, -0.5024897636529079, -0.737630118896773, -0.6762609487629642, -0.7162520446367494, -0.737630118896773, -0.6100601391725167, -0.737630118896773, -0.5520001335154768, -0.737630118896773, -0.7147913134173376, -0.6929288018106653, -0.6658179653475897, -0.737630118896773, -0.535660046327168, -0.737630118896773, -0.5955938939078239, -0.4420532680123693, -0.737630118896773, -0.48341700111752867, -0.737630118896773, -0.5217516154429862, -0.4123939245175202, -0.4419243523499675, -0.737630118896773, -0.737630118896773, -0.737630118896773, -0.6877455202261701, -0.737630118896773, -0.5115570477392019, -0.5999628787287266, -0.7179445847462238, -0.597171788809364, -0.006060044523849646, -0.6825412437127275, -0.6074190731556078, 0.10361880244657598, -0.6783422687148188, -0.25504395195087826, -0.737630118896773, -0.6846300907593859, -0.36790099194848846, -0.737630118896773, -0.737630118896773, -0.737630118896773, -0.5820447023912708, -0.737630118896773, -0.5311412858090887, -0.5740950003336085, -0.5501058308438349, -0.6309341058177146, -0.22500860983645624, -0.4605869718529305, -0.737630118896773, -0.737630118896773, -0.377525701920076, -0.6638967539864961, -0.737630118896773, -0.737630118896773, -0.47603043366652353, -0.5082667522592279, -0.6810329326209291, -0.26054767733910505, -0.181151946098434, -0.533079272609426, -0.710451508903746, -0.42547939303649435, -0.48825536369970407, -0.5916447860827986, -0.6584049748261519, -0.6012650499424733, -0.6646539851195195, -0.47113727167586816, -0.3436552213687602, -0.5597779911894042, -0.6607127605099118, -0.737630118896773, -0.5189594787448472, -0.6628177355037876, -0.726060848731841, -0.6948531022483003, -0.6288574585999819, -0.32893414482565125, -0.5629905768347097, -0.6125941531744389, -0.5456766832221711, -0.3694650305206689, -0.737630118896773, -0.6274314329531705, -0.6757339981690335, -0.2382806423912266, -0.4923631610288011, 0.009919454355108659, -0.53163273225692, -0.433893616665234, -0.5578161874740397, -0.737630118896773, -0.6596099844656113, -0.737630118896773, 0.8209755635232768, -0.6791483153508454, 0.6382043633526788, -0.22059970713214333, -0.5717320321419221, -0.5202913482595259, -0.18383157026549776, -0.4337635571002533, -0.6739177830357433, -0.737630118896773, -0.6673010458334369, -0.6070653374702002, -0.6152337839173564, -0.737630118896773, -0.034889454322675366, -0.6144773729408995, -0.46368552336089935, -0.737630118896773, -0.5069687034113807, -0.680183924888969, -0.6367119469552023, -0.47923437529327967, -0.737630118896773, -0.632316015674479, -0.21648757160647195, -0.6750134258762226, -0.737630118896773, 0.5721605220166657, -0.5800336676988526, -0.5766494535004894, -0.5240067654207881, -0.5592351662493, -0.737630118896773, -0.4135234311909664, -0.6223288180835971, -0.6672049849955939, -0.737630118896773, -0.45609849237860567, -0.3599321780845213, -0.737630118896773, 0.2945673089135591, -0.4425523548661086, -0.737630118896773, -0.7364910909711153, -0.6082914931200795, -0.41699105315382856, -0.737630118896773, -0.5683303788249878, -0.737630118896773, -0.5868783382816566, -0.737630118896773, -0.7271849758257031, -0.7112112382768366, -0.737630118896773, -0.6868291355531243, -0.5790151627417532, -0.4628492874091553, -0.5134328537219635, -0.372072437743752, -0.737630118896773, -0.560052139313267, -0.737630118896773, -0.5674921140648937, 0.29781452459072777, -0.6534833771440164, -0.737630118896773, -0.737630118896773, -0.737630118896773, -0.737630118896773, -0.40572078536397105, -0.3428016973799172, -0.737630118896773, 0.5635426621457061, -0.737630118896773, 0.26756421512363016, -0.36364399087350385, -0.6953109222769082, 0.003974786897088192, 0.1272817007043832, -0.5303905619709278, 0.5478692974967025, -0.4926452517215179, -0.6720601014339466, -0.48633606783585565, 0.18353114599182743, -0.6572562538268307, -0.2618565177207207, -0.43556807421093724, -0.6787399313384325, -0.737630118896773, 0.040552992769402676, -0.003679086845370073, -0.10300341399849043, -0.737630118896773, 0.04388671338126277, -0.4276228722228572, -0.737630118896773, 0.3085174814503587, -0.3543727683820479, 0.25747603035974015, -0.3045178248462406, -0.5086513625227486, -0.0331818883513693, -0.33142491715176225, -0.5790397350641439, -0.25070450355790114, -0.737630118896773, -0.3029513258043611, -0.737630118896773, -0.6618384361888697, -0.6252886767995701, -0.7197238456210643, -0.19249760354320133, -0.0002705161552892156, 0.27852418315150035, -0.648612607585932, -0.4064569190484754, -0.3092335092725341, -0.5391759496121136, -0.6003732483833529, -0.3588857446380266, -0.5522446480876103, 1.1890970541029553, -0.5492888038221986, -0.7294083386663187, -0.20466056858948203, -0.04391968028200629, -0.6399460293357745, -0.6133763019589344, -0.6271974617095291, -0.7089603833294742, 0.37981507308637813, -0.737630118896773, 0.3793627783230594, -0.3147638249999673, -0.42321947320076503, 0.08682795289274456, 0.0643409001543863, -0.12002977798529228, -0.5866962635239097, -0.47984619050876737, -0.7188790371446819, 0.2770997870262876, -0.38246578549955684, 0.5605060972077051, 0.8857042190558148, -0.4479616111677227, -0.5518225480357777, 0.7608444467053346, 0.2243322085262818, -0.46291224521716207, -0.737630118896773, -0.45155724230415095, -0.45713311988715605, 0.0694070504313558, -0.737630118896773, 0.7099469115090458, 0.37392142800001693, 0.12180521314738911, -0.6583260941100688, -0.5032740923272244, 0.24411887418660352, -0.20927576225332034, 0.7170035386066138, 0.8878388707675583, -0.263325677128007, 0.9351066519976345, -0.3545879947315326, -0.38398074417615696, 0.2781625372718406, -0.737630118896773, -0.6141138925004985, -0.5008788898241704, 0.4032485865023959, -0.5005549927296347, -0.23461635551695947, -0.022931960079351377, -0.41636939605954304, 0.1965065408663594, -0.3682820625889318, 0.19325043296536504, -0.15489454729193047, 0.754370217102212, -0.5654810254148075, -0.017875565348910015, -0.4608473283966369, -0.7191255265674953, 0.1767555304336108, -0.2859396383034855, -0.6348717314508103, -0.3652534402197842, 0.321077359108657, -0.6590014013144864, -0.2906002859075572, 0.21751903843054782, -0.737630118896773, -0.5487563063799106, -0.46384953309111765, -0.3912837419896564, -0.5539447463175479, -0.4055816609106234, -0.1756555589531696, -0.4241130769460253, 1.9365299061255963, -0.3740856631175256, 1.242164464577195, 0.7586207000907957, -0.44091491228123353, 0.4392442222157337, -0.27082216714198054, 0.45338838336356346, -0.18355155154726607, -0.035816188076604485, 0.28363160025360096, 5.0, 0.8124868567284743, -0.737630118896773, 2.0697958516206363, 0.5338647356297072, 0.23586326452119596, -0.3480944266998963, 1.0246708570134435, 0.37325140325137973, -0.5251381714041768, 3.4884847231178067, -0.2715950136243674, -0.4878395874866595, -0.5493270490178755, -0.11546815349508209, -0.737630118896773, 0.29593990567667994, -0.5868280713173623, 1.3360912118682393, 0.16479186343297084, -0.737630118896773, 1.7509365903760536, 1.0592762841805357, 0.7820732066062495, 0.5529050588145789, -0.7348300500840792, 1.3994658320757447, 0.27809916938554924, -0.6830653237586758, 1.2733794508309528, -0.5965778767483976, -0.4166426808607038, -0.6801115298846808, -0.5870228585018892, -0.6256724129488552, -0.6289672732476133, -0.5631233234915999, -0.6123080372396266, -0.46439075009269193, -0.5258519666137808, -0.5530486605195212, -0.5440501400864017, -0.737630118896773, -0.5865892007173886, 0.9634284712141105, -0.7347559017927892, -0.5868527515550916, -0.737630118896773, -0.6304316412139052, -0.4926807558676161, -0.7322084624483877, -0.737630118896773, -0.6050602273298208, -0.49453182765498044, -0.6658496331034343, -0.4894184967923747, -0.737630118896773, -0.6181057671738502, -0.6023901860447429, -0.6467527029281789, -0.4594937678990826, -0.6679170427682609, -0.6259357803304828, -0.6555246820886562, -0.737630118896773, -0.588013132806649, -0.5278234935010714, -0.6296475175787299, -0.737630118896773, -0.6955079702877597, -0.7160173179857441, -0.6660337042949289, -0.5592246013377405, -0.6603509959233801, -0.4789171905327461, -0.5061636334091606, -0.6665592250106354, -0.737630118896773, 0.2839912604910484, -0.6420590332307742, -0.5965642686243151, -0.4678763507508129, -0.6194288955461759, -0.27213739611158816, -0.6199480978188608, -0.6060400230552921, -0.5487554214741424, 1.2262789815404387, -0.47716924264207716, -0.6604200563437336, -0.4497449337060853, -0.6146806422709687, -0.6944992208771869, -0.684399874969496, -0.6236756770386804, -0.737630118896773, -0.710920660042811, -0.4998698166675844, -0.23246901296150774, -0.5980236509020059, -0.737630118896773, -0.737630118896773, -0.44593271648691735, -0.5294639577154036, -0.5025151237572655, -0.6074306848459432, -0.737630118896773, -0.6436055463521144, -0.5976627064720407, -0.6989495954457736, 0.2222557447646216, -0.6768503823374165, -0.4592876280210307, -0.524598681048007, -0.6462747998552273, -0.5603277227111217, 0.255056395824233, -0.5818649478132839, -0.5002993197115831, -0.3665724678092784, -0.33816621563259464, 0.1167737684430209, -0.727745569700629, -0.06459401434401571, -0.6072459122047537, -0.09031019614894495, -0.6242561212655032, 0.41767764414172054, -0.4522622532052677, -0.4924496443804237, -0.645021945950804, -0.573858212499653, -0.3846709059268078, -0.1277446454766124, -0.09543686534728942, -0.5086745211542163, -0.6168045671981426, -0.4175357881954099, -0.737630118896773, -0.44624586521382087, -0.737630118896773, -0.6871122892119171, -0.7235234907033922, -0.49973764196198517, -0.5948752209249567, -0.48490098809221177, -0.5207995863339019, -0.6812738536123176, -0.4112460290705325, -0.6172097892911612, -0.6785025283870525, -0.6544159545134822, -0.7088760070248193, -0.5645655580221322, -0.43873638219318906, -0.737630118896773, -0.48542858617816903, -0.5131102516114789, -0.6067534081866128, -0.42007123747132447, -0.5417219530080519, -0.737630118896773, -0.6332297348386838, -0.5188602613833772, -0.5869263929815296, -0.6502130513972817, -0.737630118896773, -0.737630118896773, 0.4818569674392951, -0.6084844889100008, 0.8204352961766789, -0.4416210455018605, 0.19507083521375806, -0.5240303341305388, -0.2760920184103687, -0.707156662094405, -0.6351670093977925, 0.7428377797909711, -0.14608300097289031, -0.737630118896773, -0.6221429015398281, -0.3475341302666192, -0.4757702497873568, -0.737630118896773, -0.656998212067118, -0.2809390142195607, -0.4438364610523272, -0.5615997315879847, -0.7068655388879239, -0.24008891495566237, -0.49906848053604863, -0.737630118896773, -0.5210146184357782, -0.5952612448794001, 0.07085225263367433, -0.48118911055402536, -0.6534338008378825, -0.6086704486199049, -0.7130825145132987, -0.6270374232637377, -0.737630118896773, 0.658639125365019, -0.737630118896773, -0.5581914198947149, -0.7210163988803397, -0.737630118896773, -0.5461561942336549, -0.6405001314286676, -0.4515027018924847, -0.5491000383135154, -0.6270163150236858, -0.737630118896773, -0.4720580916692937, -0.13534676302311524, -0.737630118896773, -0.5839680342887508, -0.737630118896773, -0.27406817416736773, -0.737630118896773, -0.3733405724599916, -0.5785057160155943, -0.7031353696999997, -0.5882603560537594, -0.3824161876103564, -0.737630118896773, 0.08856020989331284, -0.49073057463412056, -0.5437900641225737, -0.5603221866542977, -0.49056468717702695, -0.6495329689391715, -0.6931878471830186, -0.45902176779510223, -0.737630118896773, -0.6314659665595102, -0.652635923392919, -0.35622636538831215, -0.6030009328983884, -0.5776098028821085, -0.6681050150992129, -0.48400384472387586, -0.5294963754828451, -0.7292534295714218, -0.4565776580610087, -0.6111259757967267, -0.5957364716519775, -0.39724828745287805, -0.3923293984457186, -0.5009952657243345, -0.4044136932108259, -0.6726460331556908, -0.737630118896773, -0.646182575407639, -0.46070352041763296, -0.6910041857206677, -0.7347536369196395, -0.6963291952160321, -0.6914169133254224, -0.6536956358217151, -0.3456786339504108, -0.6181986067388632, -0.6120114103509233, -0.2575521202294255, -0.6038878998503804, -0.733979431715704, -0.517162321460193, -0.5765945677597412, -0.6784651411183105, -0.737630118896773, -0.5876670375271507, -0.737630118896773, -0.4150267134280283, -0.7204183158915718, -0.737630118896773, -0.598520525491323, -0.5935638553244396, -0.5932299328950306, -0.5143983506651911, -0.737630118896773, -0.29264329591453225, -0.737630118896773, -0.566331635689532, -0.737630118896773, -0.737630118896773, -0.7270054370783915, -0.1116770013498308, -0.5168094383059528, -0.6627457182031815, -0.737630118896773, -0.5613708323652137, -0.737630118896773, -0.4745079856654876, -0.2291207021959927, -0.6410652193029374, -0.6146263932307129, -0.542471036533081, -0.7361082619008289, -0.4558741579746191, -0.596718922094756, -0.6399398781615263, -0.6518658935008457, -0.6054631400346131, -0.513893414800149, -0.737630118896773, -0.737630118896773, -0.737630118896773, -0.4736488069129503, -0.5755210799380879, -0.49086054786683286, -0.5811861387561581, -0.4998712627331105, -0.737630118896773, -0.4985633720064655, -0.737630118896773, -0.6630533686436295, -0.3459249399171512, -0.5156791762251431, -0.6302551996367852, 0.16587567875244022, 0.4267782740673594, -0.737630118896773, -0.13569800586422226, -0.44948054112875035, 0.04142753866602609, -0.6320649182667465, -0.6257107768514032, 0.7953704481839023, 0.2480159128611935, -0.5636285831026552, -0.5701226583363785, -0.6457124854051361, 0.3876119130682055, -0.711439668067888, -0.5925689946178262, -0.32366520004609883, 2.5922677000405785, 2.8101962495813657, 1.4914026205398248, -0.4559643536138599, -0.23351566223867679, -0.19391181246053546, -0.737630118896773, 1.078131079316857, -0.41793259289209017, 2.7238463676477984, -0.46057067663693846, 2.2827326693013177, 0.25301351531566274, -0.737630118896773, -0.30798846843856, -0.737630118896773, -0.5323803481333554, -0.4145337993316035, -0.06001175644123925, 2.0744374197929987, -0.737630118896773, 2.7963457908165887, -0.22670180148478322, -0.5224122731403124, -0.08036420063399305, 0.5188330787447327, -0.5326605179330608, 0.1066797130847605, 0.04860684391946766, -0.4895928879780786, -0.737630118896773, -0.5315204139734546, -0.6311182093838105, -0.1884681743323333, 0.19346937160246658, -0.5320796312533537, 0.4489863009085911, 1.0195739724482977, -0.1900973937684778, -0.45604882974020133, -0.6184566107282078, -0.33522988246023755, 0.4616360504601156, -0.19977644990412605, -0.4509853989297432, -0.005218995548043322, -0.10901106084758493, 0.6376624556929433, -0.737630118896773, -0.4115766816652079, 0.09998913481264031, -0.5984219664134125, -0.737630118896773, 2.1769576812548252, -0.5849297326120905, -0.1964399234934864, -0.26956883841007195, -0.737630118896773, -0.23476497652002443, -0.28842570552087277, 0.07739408040432497, -0.42944450470609913, -0.41423137738926746, -0.27826694412613373, -0.582967205863963, -0.3670443168317851, -0.3567394812359515, -0.737630118896773, -0.3710607530359949, -0.636465781278402, -0.20790182734001053, -0.737630118896773, -0.4033533602688372, -0.5656771075833855, -0.18688971827103754, -0.40837388394103236, -0.6102977903291733, -0.2854952429428859, -0.6326948956335681, -0.46239969052927915, -0.32646534406229416, -0.38417412846129395, 0.5194652899590434, -0.12761631255703318, -0.13567698395644037, 1.6571079165439002, -0.29028275581794455, -0.26923430086323863, -0.34270707721183236, -0.737630118896773, -0.6888806600802432, -0.4745952244244751, -0.5544207177059544, -0.2952447893771118, -0.5302617110577285, -0.5447956624052861, 0.1275707411448469, 0.8485452560022021, -0.20640616392578914, -0.5345652020601881, -0.397066471691942, 0.13582220686128593, 0.05868311483007771, -0.1573349879045434, -0.2949152159358115, -0.6673666421714505, -0.29373151417977983, -0.3852821168164056, 0.6103762783891935, -0.2776434524711079, -0.38305489532799614, -0.42931589120664165, -0.15862828847753194, -0.3097206391068586, -0.6519816219089826, -0.41943628520743514, -0.6884549340730639, -0.5355821098702906, -0.528452445672186, -0.737630118896773, -0.6287390430999368, -0.15516416297161065, -0.3433379934420918, -0.44058190713219475, 0.3244953400161839, 0.12417520662755925, -0.21556968691023234, -0.27145394669494083, -0.43695778634661625, -0.41407494331575484, -0.4508335836326831, -0.43146673021903587, -0.3295041104731838, 0.2711259392609571, -0.6015210682896046, -0.250691855880325, -0.5313761959161678, -0.05632795847392029, -0.20802325367797617, -0.48893943902530884, -0.40900620307068164, -0.48598361634296594, -0.2364294195223901, -0.3857350159056141, 0.02876915588748656, -0.2790390567842244, -0.5872235594469212, -0.6456222034336263, 0.5867666471420688, -0.641636005107037, -0.19065656788224197, -0.19286438619293536, -0.33766091285540445, -0.00010285888665784644, -0.6783193313097932, 0.09864520036320777, -0.681601328100299, -0.2964697147921413, 0.0868036935248326, -0.07234453706290765, -0.10802423983362973, -0.5831558850403776, -0.3627834308046442, -0.11078799479795712, -0.3815854553408332, -0.12146064903076656, 0.300703806675853, -0.15589626062248646, -0.6891857421356543, -0.5669521596727716, -0.41200124218674106, -0.05894594140009736, -0.5605007541635707, 0.22110804356524233, -0.6595539062603816, -0.5271245690250007, 0.2955015967411266, -0.555964532943853, -0.6275262473688633, -0.27426557290306575, -0.5314061963800453, -0.4897768836288356, -0.6065858372502508, -0.6817380622289166, 0.6381445350894634, -0.41330561487337647, -0.3913614410327918, -0.2937152837129901, -0.2558314317530565, -0.737630118896773, 1.0042339366943414, 0.33703389360375463, 0.07361704358524215, -0.31013676064898377, -0.7114963290159411, -0.4174926436434035, -0.7071460863913116, -0.624472254103825, -0.5832019217234349, -0.13857753240281956, -0.4739018467967616, -0.24728660898264565, -0.4683118538875867, -0.4709129156888144, 0.5803279001019787, -0.6445227619732603, -0.22796013748836125, -0.3715173212466854, 0.08751032315601372, -0.15627841041630655, -0.5062670594688015, -0.14492416291066051, -0.19231760075993662, -0.3853122899448226, 0.7580742168207469, 1.228334725557254, -0.3377483674450665, 1.0050447693755944, -0.2186854185399629, -0.5799768286904924, 0.4147331957359687, -0.3242524753137978, -0.6795858742748022, 0.2506108882373764, -0.519304807825449, -0.5786556643773122, 0.5054621957406404, -0.42565201441065903, -0.47196886726809223, 0.3278269886535588, -0.16708902361681713, -0.5389015640745073, -0.4194148100552354, -0.38467429446841156, -0.3557474371196524, 0.07235754209601757, -0.17610953719575612, -0.30996375077960225, -0.41723647421479926, -0.20844926026503405, -0.16978656172993728, -0.6914374010522827, -0.12426908094489479, 0.12185770316764058, -0.4274878701354093, -0.49531540092193344, 0.4835288781830278, 0.8089087294598153, -0.3841245305720935, -0.5282769537500378, -0.4240832491466888, 0.0607815069883539, -0.5853245300834895, -0.36254757104259316, 0.23597903609546725, -0.45173946814337146, -0.472912414231635, 0.18808120195783673, 1.0638121816542472, -0.42243937480768556, -0.6000266890679017, -0.317446341298082, -0.5981181415716855, -0.6695586994470738, -0.6733607132710637, -0.7115934393304432, 0.5923421578129245, -0.6122202265293498, -0.5034095044929565, -0.5538222624092715, 0.020067553714482437, -0.24160542761312437, -0.0739227772935277, -0.7206821715901025, -0.04317187015796374, 0.031455643470028896, -0.4536503681939497, 0.3949783003510622, -0.7170914600441308, -0.7055850397718684, -0.27576127948342344, -0.737630118896773, -0.737630118896773, -0.38113972183004596, 0.8746947826371558, 0.5550306456379526, -0.21836292434481563, -0.6191733196519293, 0.2005860859600494, 1.0083469787088455, -0.737630118896773, 0.7828900825464025, 1.6263043898896685, -0.7003085112419603, -0.38492562928988594, 0.6923159626343911, 1.2552710845023556, -0.3972816548752918, 0.09801126250349415, 0.29602960490536673, -0.49688634607572585, -0.5767792109025245, 2.0273960017752737, -0.737630118896773, 0.19451381940674736, 0.997369312565602, -0.16634911289549212, 0.42220197309122437, -0.27021637360233525, 1.6720808674851695, -0.35498620232760136, 2.1994330791367127, -0.5030853915677437, -0.4898455393666731, -0.09148099123059115, -0.737630118896773, 0.6570312731657371, 2.1432349152177372, -0.737630118896773, -0.07956834660161057, 0.13362211528877188, 0.12244415827877227, -0.4253322396820218, -0.5337925282423408, -0.737630118896773, 0.6193544028234884, -0.5458490455995278, 0.14014054701421144, -0.1252146351337175, -0.3165155067613192, -0.737630118896773, 1.8645771388914056, -0.6691668912305296, -0.7066331081357279, 0.27900755753207324, 0.15309271850807327, 0.13952586125074024, 0.4678455853229578, -0.34508760322896154, 2.1119741728608035, -0.09679362013883905, -0.22725018406477887, -0.737630118896773, 0.07971046154473216, 0.3751171299416016, 1.010946616027616, 0.2350135823183746, -0.7223488255079489, 0.1879110410533713, 0.9427833174594126, 0.9737987035045824, 1.5440442402576753, 1.7503787112463376, -0.6403897556212803, 0.7788262499258805, -0.6643831607880575, -0.737630118896773, 0.610353055008522, -0.28504018554692245, -0.7098948627067668, 0.4273858805846789, -0.46552403380295576, -0.737630118896773, 0.5444442373430238, 0.22043542884849984, -0.17149399820283875, 1.46683055714506, 1.0903778298313191, -0.737630118896773, -0.5953036771901793, 0.4018727091130071, 1.7042581132220207, 0.03155527090978187, -0.03987911420829076, 1.2070325832267148, 0.6079597518154122, 1.0217326245311324, -0.06973933131271277, 3.7116284324338276, 1.8639153157084358, -0.34445249988360005, 0.784122907364165, 0.3130291195561515, -0.737630118896773, 0.45744755404149634, 1.5890186910634825, 3.1531422141979237, 5.0, 1.5829148268993014, -0.737630118896773, -0.737630118896773, -0.22532467227747807, -0.737630118896773, -0.737630118896773, -0.737630118896773, 0.5295996624874656, -0.6180098088555779, -0.0979681275081006, 0.16488113100030705, 2.5734386319207725, 0.01565010411542423, 3.6949393686265037, -0.40513720080082155, -0.737630118896773, 0.1527003383402398, -0.10297846397241726, 1.830937597162736, -0.2931646564939712, -0.737630118896773, 0.9581387203574521, -0.737630118896773, 0.31250775897671246, 4.306405974408335, 0.6060500819996842, 1.995909068870539, 3.9637587194464903, -0.737630118896773, 0.07778646057215843, -0.07529714386818787, -0.47171951808883034, 0.30336586222594103, -0.5740934139781447, 0.5754290617645615, 0.682338110511744, 1.8693335289830781, -0.737630118896773, -0.40354760787667654, -0.737630118896773, -0.20138244595959884, -0.6864130949475025, 2.810932491181209, 0.844494545886743, -0.737630118896773, -0.5305532983001611, 2.0748272963250045, -0.36200518855537395, 0.2763640634200665, -0.15131352789222458, -0.49141857807801653, 1.7034265607959316, -0.5104731245043952, -0.737630118896773, 1.1599676828314958, -0.6764098827205075, -0.25182336977905095, 0.35354157331149116, -0.434474978172428, -0.4812767378082285, -0.737630118896773, 0.3844618211949559, -0.737630118896773, 3.1170156124307744, 0.9820449892848166, 0.48611263036409047, -0.6182803202325605, 0.7214493051902814, 0.28312068587885, -0.737630118896773, 3.40196459394751, 0.8627750587620306, -0.737630118896773, 0.30146508463403904, -0.1743375673509187, 5.0, 0.7279540964170336, -0.36318418520268336, 1.2482636667987839, 1.0974486154211849, 2.1780026470527263, -0.6493516118184198, -0.737630118896773, -0.6784680386451274, -0.15685200201918612, 1.9692056343902997, -0.21092246397416928, -0.737630118896773, -0.737630118896773, 0.7674284909560884, -0.37609880215902936, 0.20065092149493288, 4.490611757912035, 0.07604755598678728, -0.737630118896773, -0.737630118896773, 3.365976123812586, 0.33934733944697576, -0.331861197278967, 0.6978769694838517, -0.6670009224877925, -0.737630118896773, 5.0, -0.6550669537880854, -0.737630118896773, -0.3573376775358251, 2.7650703719737186, -0.3101055515333234, 0.6119332808813558, 0.15960847393313782, 5.0, 0.10548176650415286, 0.12460885362052528, -0.17342058914351474, 0.21554565539944964, -0.6394852200523127, 3.427747208434313, 0.19830380606635212, -0.737630118896773, 1.1957052713893515, -0.5348439689605035, -0.34466971187529855, -0.3544718778281806, 0.9294631114979032, 3.540062729267403, -0.5004493220309706, 2.88307346276432, -0.737630118896773, 0.932780342646164, 2.393959367543263, 0.3789274910169618, -0.6272181167051626, -0.4652435402572373, 1.0218194747949074, -0.737630118896773, 0.5614706876620954, -0.737630118896773, -0.14944931201673148, 3.916319482327899, 0.7878039426988293, 0.16348556985332388, -0.5976200259559851, 4.020314989622058, 4.295579907731469, -0.7012281252814863, 3.333783510931638, -0.737630118896773, -0.737630118896773, 0.9803485601763638, 3.9646890359896316, -0.5230240451896652, 0.37602698573671733, 1.4793097141307598, 0.06386641799763942, 4.240155971611203, -0.737630118896773, -0.737630118896773, 2.278409149212183, 2.8054793996694185, 0.4961947718690709, 0.2415574820635087, -0.737630118896773, -0.07502001728100427, -0.737630118896773, -0.737630118896773, -0.7127377870607046, 0.4642015865321763, -0.4204324301065666, -0.737630118896773, -0.30375512240559743, 0.33804760711986026, 2.519535179742389, 0.15307778302533756, -0.737630118896773, 1.7860135644027109, 2.3296677259622305, 2.3600549584097785, -0.03712416513551944, 2.4374383707655274, 5.0, -0.737630118896773, -0.22133780487579546, 1.21570983969954, 0.042011576473595005, 1.4128692623456862, -0.20767110434803351, 0.9647619594588578, -0.737630118896773, -0.5646247819594546, 0.055545195806918995, -0.4164433180658594, 2.2320262737511456, -0.737630118896773, 0.5862393296359899, -0.2147882503669654, -0.737630118896773, 3.1280274661530045, 4.062437194886615, -0.6245463164000802, 1.8422937439783327, -0.419005724593127, 1.1923239816966495, 2.3561137176128772, -0.5881871354971374, 1.4629008848723484, 0.40876565022636024, 2.288813223752554, 0.36469794725395377, 1.0729195454969513, 0.3742094324532388, -0.49194790280937684, 2.522379655379313, 4.433308886264207, -0.737630118896773, -0.1876427083312904, -0.5582771262559064, 0.17779194933676648, -0.3712511588578111, -0.29553551329684363, 3.241339261383623, -0.737630118896773, -0.737630118896773, -0.29298171841352205, 5.0, -0.737630118896773, 3.534417980115886, 0.18699781829971907, -0.3398301838074751, -0.285134374053657, 0.646768179222523, 2.2262824151535026, 3.279592399629134, -0.737630118896773, 1.7316827674870932, 1.3224398353184403, 1.015383404055188, 0.3491854196242404, 0.5116878747380009, -0.22612687173171606, 0.4327520355004199, 0.33470862023952147, -0.626441428436754, -0.737630118896773, 2.4604987561099403, -0.6884624665636344, 4.862460730587729, 0.15959733707028875, 2.578925911011521, -0.737630118896773, 1.1406762190727568, -0.737630118896773, 5.0, -0.6497640156771616, -0.737630118896773, -0.737630118896773, -0.737630118896773, -0.4273237524898523, 4.193523768553986, 0.6828637877046956, 0.405429253314125, 0.9150312912259295, -0.7214213471381891, -0.737630118896773, 1.5364749721399715, 1.2290181318077722, -0.737630118896773, 0.34831959328690204, -0.737630118896773, 4.161063180306489, -0.737630118896773, -0.5211299799317667, 2.2189465894942715, -0.20782486212117116, 3.8158173240131092, -0.6873808095509195, -0.5468482121281135, 0.1351175628723186, 3.842693595698186, -0.737630118896773, 0.11581608457024228, 0.030260977515686332, -0.7342323906630117, 2.2248137305737106, -0.737630118896773, 0.9858068316243417, -0.737630118896773, -0.30628526224689556, 2.039337654047021, -0.18349673055572022, -0.38359691090306886, 0.44809595620653, 2.8569786707886524, -0.09205687063862884, -0.3696473211090917, 0.3754739412141329, -0.1848400606792612, -0.4009645031876402, 5.0, -0.07404467845898013, 0.5492077930131151, -0.2633824405956303, -0.737630118896773, 3.397928042324348, -0.15573628692589664, -0.737630118896773, 1.5273121829798202, -0.737630118896773, 0.14360005374368026, -0.2583986081382503, -0.46934682672521766, -0.737630118896773, 2.466063043585684, 0.40454193024151963, 0.6429899337516586, 1.4851160772920131, 1.0781217554316878, -0.737630118896773, -0.737630118896773, 5.0, -0.6619028238751014, -0.14660712418497257, -0.737630118896773, -0.1615527509627439, -0.737630118896773, -0.5588943911959484, -0.2616757379470265, -0.013281825254203784, 0.15102462897661892, -0.4642400786982109, -0.21234539245078826, 0.5326506449145813, -0.41268749740216665, 1.105139784704348, 5.0, -0.5888121703414936, -0.4704986718735658, -0.21803382573100213, -0.1138959565233733, 0.64790897384029, -0.737630118896773, 1.4862990020576037, 1.3301032056106041, 0.01895084580008589, 0.2996063508577005, 4.6679206290179405, -0.737630118896773, 0.08766451259050306, -0.6374158247452727, -0.737630118896773, 0.7081526679385143, -0.40328202823062625, -0.737630118896773, -0.737630118896773, -0.737630118896773, -0.737630118896773, -0.09247238785486409, 5.0, 0.5737286613716782, 3.6189617909578926, 5.0, 1.1053573420251273, 0.532428339318945, -0.737630118896773, 1.097556876087957, 1.001226811060461, -0.13272778727583118, 1.3517418711302005, -0.4938741052548387, -0.4997162531420552, 0.3528704262433422, -0.31161934472427705, 2.018087138414021, 1.0848239022280075, -0.5091378232819792, 4.244965715045825, -0.13296360387174738, -0.32236046044731537, 2.6553866040639016, -0.737630118896773, 1.980193660405975, -0.6539284146008751, 0.08256624670903775, -0.737630118896773, 0.1212719387146701, 0.9099345793253347, 3.7603947692091655, 2.6236791785411917, -0.15737038413530435, -0.29576014986377436, 0.30512065194902005, -0.650121593148591, 0.10642391056830439, 1.0512024902760655, -0.737630118896773, -0.737630118896773, -0.023393190232630718, -0.737630118896773, -0.1778570318420075, -0.737630118896773, 0.9758724046335892, 1.7561369010008288, 0.7193163801239337, 0.3472615049839381, 0.8418313680171419, -0.14270917902154556, -0.27501506650637786, 0.8300473584706861, 1.8201310415789338, 5.0, -0.737630118896773, 0.8903331827167522, 0.24070287892129053, -0.737630118896773, 0.4219816531378004, -0.737630118896773, 0.8682250423120741, 0.14682741299871482, 1.4067546929799994, 0.7304434010945481, -0.737630118896773, 1.2966233785817232, -0.14432954939999904, -0.180409704405816, 3.0204519322802548, -0.5874816929346703, -0.42349413931824953, 0.14310951378468603, 3.2549352126159903, 1.4513399579119612, -0.6381638075338562, -0.25373696771307175, -0.22049416593188528, 5.0, 0.4779090790575841, -0.737630118896773, -0.6077012933467297, 0.47736302744888265, -0.3815795631633954, 5.0, 0.1391074950695918, 0.7385672677157125, -0.737630118896773, -0.6193484122873282, -0.36137776878205535, -0.737630118896773, 0.730460840213115, 1.087674939117456, 0.03926862758637331, 1.3723315995674659, -0.6041515586034198, 0.04802341043779011, 2.835148347629329, 1.1061165480088269, -0.08283559136545537, 3.0746685979347372, 0.9677072711873035, -0.3815581743434657, -0.4094683828789316, -0.737630118896773, -0.3738283929524773, 1.8235221731504434, 2.0691701153265862, -0.737630118896773, 4.262240802302923, 5.0, 0.15498589886020214, -0.5134642355021632, 0.51913014808632, 0.6966269645443486, -0.737630118896773, -0.737630118896773, -0.31247502701987345, 1.446789038623254, -0.737630118896773, -0.23551058517117857, -0.5578935196050271, -0.1425699682359282, -0.48247884992087076, -0.737630118896773, -0.5648357456531018, -0.5742144626124293, -0.2550535348328653, -0.4356357587107352, -0.3808879121810849, 0.879865912954624, 5.0, 0.11113704819262757, -0.737630118896773, 2.2846126408161136, 0.47378231021212264, -0.737630118896773, 0.33730799856148247, -0.737630118896773, -0.18793407974304713, 0.07750700301368176, 1.5183348355359592, -0.40081091807904223, -0.35774007224699605, -0.49363269864443055, 0.6903401622997245, 0.13836469221721734, -0.737630118896773, 0.32977576698766603, 1.2883577543729752, -0.04115549365632984, -0.30420262572792245, 0.9934318703885804, -0.07889789019162281, -0.737630118896773, 0.3005295018224191, 0.038038651733540985, -0.41244589654415015, -0.3075700159251404, -0.43829600128315194, -0.33206217880387723, 0.4069891047712033, 1.7379074968294843, 2.9130573508457402, -0.501511295286091, -0.507371465034701, -0.47798749989856376, 0.6367911904225864, -0.24355165914526125, 0.08892056078892163, -0.6078959618243852, -0.20806413200789337, 2.906612474214461, 0.9701235387642814, -0.573624262839079, 0.13140216729412385, -0.737630118896773, 2.312929280096388, -0.737630118896773, 0.09963137388513685, -0.5310034563397937, -0.20804936918969716, 0.7823090663682934, 0.06308744192407305, -0.29653528415132074, -0.737630118896773, -0.29943768874150756, 0.11916413633894656, -0.40190308604564834, 0.9335847867394154, 0.7898087506762665, 0.3041750545940623, -0.5029540154356428, 0.44592107365689987, -0.737630118896773, 0.13928438989112973, -0.737630118896773, -0.737630118896773, -0.5230974060362263, -0.43222945424274656, -0.4894592887900206, 1.164540357852288, -0.2724378755778466, -0.5938535216738606, 0.8038275573678404, -0.2767863456930542, 0.2322376545039577, 1.2185289336490368, 0.4194074838387246, 0.542395745236894, 0.3086398142771617, 0.45369218662222305, -0.737630118896773, -0.20773278875505513, 0.08911549905492054, 1.1366116957940737, 1.0125748426426604, -0.2947354721493591, -0.5502798767004582, 0.3048376547674659, -0.737630118896773, 0.8639079108109413, 1.2361496953158093, -0.737630118896773, -0.5499561306873948, 0.5504972518000821, -0.4999820270357126, -0.5503376545722574, 0.07470983746080719, 4.373150143119817, 0.7938402950277487, -0.737630118896773, -0.2986195178172922, -0.6210592157187645, 0.020104676590647776, -0.06831925180100698, -0.2564594990184014, 0.47078839341557505, -0.39870393585988445, -0.22156200978137586, 0.7997939410418746, -0.20044966894675853, -0.08530322664316464, 1.9686071790936237, 0.8680882919961558, -0.5451323582588729, -0.2424226488823693, -0.2572968357065895, 0.04950720316486637, -0.737630118896773, -0.737630118896773, -0.08920091280978214, 1.196910987874276, -0.2707235325233331, 1.4648765125424783, 0.3521106159337486, -0.06619901757838313, 0.1771571481543491, -0.737630118896773, 0.061015035779111985, 0.13184280720097175, 0.8062488322164835, -0.04016884530691567, -0.5750351587555462, -0.308294300505567, -0.737630118896773, -0.36209307480638636, 0.5088199167236029, -0.2350097285059013, -0.637618856661599, -0.5015660083622981, 0.4818484205445498, 0.0775342840110493, -0.23390834456945603, 0.17648660541209168, 3.795642508466205, -0.15883453627092106, -0.5076152889486734, -0.30051792127176635, 0.039177201712285115, -0.062487895447560345, -0.5997624907381737, 0.019903349736656927, 0.2289424380845855, -0.5119471616849447, -0.12411256053911252, -0.39401689216421487, -0.46987861192627706, 0.10664215854724472, -0.737630118896773, 0.0842954820801519, 0.4179540800707429, -0.015253265809224618, 0.7811403000950002, -0.3845455730536169, 1.443329877222873, 0.04427020132527027, 0.875988558037627, -0.5310614500422675, 0.06710310113785042, -0.4111740279572262, 1.0046538568563532, -0.3370368600406221, 0.583198966078102, 0.16676162050872348, -0.05780739142135323, -0.4941631241122349, -0.5896474890128675, 0.18176755037719405, 0.2287480178122067, -0.1765977893495923, -0.5934132702622282, 0.2904566842026149, 0.5602406254769918, 0.341661734945169, 0.9062304069422489, -0.5119871551090922, 0.3793960162470685, 1.5840328297977389, 0.06697886900110504, -0.04947624101956517, -0.3828098843453098, 0.07142187295212779, -0.10426977890319206, 0.19276507294257986, -0.27841629895349473, 0.07139959922642818, -0.6009851823057132, -0.26176228604785134, -0.5065446608834692, -0.47512301675803936, -0.500465660413096, -0.10982858427977557, -0.09950246777934939, 0.17217422218580625, 0.03090613857052016, -0.6234718681319227, -0.20544502676220314, -0.033343157032010344, 0.5564304370661729, -0.4243216125445739, -0.33732326734684565, -0.658131398653579, 0.8084656722493961, 1.7372948830404966, 0.335832493732341, -0.30310050796718113, -0.27407581457327584, 1.4769581957564129, -0.39369420372145925, 0.3565480082872104, -0.6679702774043424, 0.2431811330682287, 0.42134831960397673, -0.06524318984941227, -0.32429141116763455, -0.28797552589817266, 0.19757162208320503, -0.5123641897159069, -0.4718844990570882, -0.7334682451919614, 0.3410137249254191, -0.09154060366312916, -0.28952946359474585, -0.1816507739553625, -0.737630118896773, -0.737630118896773, 0.2023215372546131, 2.5577693248884588, 0.5755439700161307, 0.3240606570359759, -0.19739803902761527, 0.38059370383086555, 0.3636493555007058, -0.29867148984392344, -0.737630118896773, 1.6281163315755933, 0.11665540690064431, -0.6052435107393503, -0.007102161356836206, -0.17548738369091796, -0.737630118896773, 1.3614706546534512, -0.737630118896773, 0.1820171369701993, 0.18666828802455512, 0.42277452870686216, 0.625656399547662, -0.737630118896773, 2.1956945465101176, 1.1676812985049052, -0.737630118896773, 1.4362756674288761, 5.0, -0.737630118896773, 0.9075920395070689, 2.3025745876145356, 0.0003126583295759461, -0.5425462103573135, -0.737630118896773, 0.4146790654025855, 1.6033931867080615, 0.5269010883871023, -0.15448688631227933, 0.3771532765330995, 1.2725352938934251, 1.6133878736233902, -0.21157923671933906, -0.49360410107994307, 1.5275730791002184, 1.5582155097383383, -0.31457575014944394, 0.13285936968199377, -0.2367889934275664, -0.2316072442408666, -0.28622004551693414, -0.3900743995493889, 1.0456007345950942, 0.16038192474141602, 3.8279152376938383, -0.3105133420113793, -0.6850033753082156, 1.7091876858476187, -0.737630118896773, 0.2612829381442944, -0.7187902322643567, -0.5067823983723968, 1.475787184844085, -0.737630118896773, 1.1122573623846388, -0.4970152185719927, -0.737630118896773, 0.0939336167197481, 0.3519427860005761, -0.737630118896773, 1.4543536447983803, 0.001074454281383514, -0.6511153423272253, -0.5259664863701359, 2.9885687342555247, 2.487896820035813, -0.43008528439822247, -0.737630118896773, 1.7358999262194021, 0.9252447441138084, -0.12033802735586502, 0.5922673940669749, -0.21379517026342582, 0.3766882909260685, 0.7812808490307981, 0.01933381575047489, 0.06448369372921595, -0.737630118896773, -0.737630118896773, 0.4708275019339543, -0.737630118896773, -0.6871738926824363, 0.23310192686043416, 0.5124707357637251, 0.5528106113110349, 0.6108635377219214, 0.10051593432509899, -0.09941743049325152, 0.8885034565831871, 1.3440393059873703, 0.31478157830793596, 0.04922213400883023, 1.2985276957966982, 0.17830631700232222, 0.5775176983763108, 0.24379072522776052, 1.0244779907219168, -0.3577566912089998, -0.020142780261465484, -0.737630118896773, -0.10237020996307283, -0.4152328748891476, 0.26998678495632306, -0.5381898408393869, 2.67617368807072, -0.46201454068907094, -0.33368617513767773, -0.06085781268871366, 0.7444604811407118, 0.45514964800690233, 3.755730063988396, 2.0137226968288386, -0.737630118896773, -0.737630118896773, 0.9024064053682155, -0.5540092796894855, -0.2763100505586346, -0.34357670216905895, -0.737630118896773, -0.44440118201444834, 0.4542051729714564, -0.18255631313697168, -0.737630118896773, 0.01711533540441766, 0.6669712254217792, -0.18903166505960584, -0.3503059572982052, -0.5993733372389367, -0.38360865209180933, -0.002694898965654947, 1.475047489953436, 0.07314661904519267, 1.8690835107287223, -0.737630118896773, 0.24702965300699478, -0.46064362740521675, 0.7738709502837956, 0.5912421983589377, -0.6002259439474089, -0.737630118896773, -0.37449466224736283, 1.5558852291024374, 0.6551860935558115, 0.3488498460901651, 0.32155356791080686, -0.3461140075887799, -0.737630118896773, -0.43394377571419257, -0.737630118896773, -0.4211795711555153, 0.45682898332586885, 0.40626054674340484, -0.24963782519405855, -0.6399411191879097, 0.30855330934247155, 0.45737253129873606, 0.3510636644936336, -0.1299058443614231, 4.49568015282802, 2.1375720362894923, -0.1862460248647958, -0.11980928536732875, -0.23669683372918057, 0.10024148403829039, 1.6911143704206917, -0.5903218087919456, 0.653691768291778, -0.6177438083397105, -0.7115636735824253, -0.10010580084929557, 1.9101298432426628, -0.21936140021524012, -0.2805998147301399, -0.737630118896773, -0.49159797653539, 0.38564077467613045, -0.18951991721344177, -0.5671017411223415, -0.737630118896773, -0.18170576761144946, -0.47840988053027467, 2.652406759427382, -0.7218122043508196, -0.5462643901512205, 0.17586458140565817, -0.4511669125277337, 0.12761623825121507, -0.04278471309247429, -0.0899488524322308, -0.24119077371959288, -0.10339441285000286, -0.1553082946966262, -0.2022881146396127, -0.40316498325536976, -0.7291747491731844, -0.555087936655812, -0.46945439673382594, 0.052436975084692035, -0.47473393879953835, -0.48527793636675537, -0.582647485092995, -0.586645586481331, -0.21440717972652204, -0.058567503893892786, -0.356858706101029, -0.07271611115363519, 0.15647271321673384, -0.737630118896773, 0.023340582740426285, -0.1633153537562705, 0.4161291022120324, -0.6180412553849802, -0.4238017843629308, -0.737630118896773, -0.31700630571712407, 0.010636357526437993, -0.5623625851101016, -0.40920873857645396, -0.5089895907741299, -0.3778665848887649, -0.2412897968334543, -0.2251897349392326, 0.6599317784459828, -0.737630118896773, -0.5299523177845767, -0.21270108140380814, -0.24258244991441813, 0.559963239892999, -0.3470344822531248, 0.8947466610313799, -0.23033621739357604, -0.22548045885896448, -0.737630118896773, -0.4114734066870406, -0.2072280903037564, -0.727964960907678, -0.18918637248771544, -0.737630118896773, 0.16281140115571952, 0.03393389761696706, -0.7297168848040696, 1.0674453889112518, -0.6798181620391758, -0.12324811551809638, -0.1376869287039475, -0.43766979016161467, 0.37917466030640146, -0.3278486460269151, -0.38982211507294257, -0.32330882043491777, 0.2506151185186133, 0.6434635525857029, 0.5677757923479945, -0.2061021880025898, 0.7273818861304694, -0.5141605700101286, -0.27522364527106136, -0.737630118896773, -0.737630118896773, 0.3774566481304088, 0.42047291038465245, -0.07596984491720017, -0.24788894923148486, 0.5390331033145351, -0.49700867890252864, -0.49135233964374475, -0.39090603830774784, 0.1580531980863786, 0.3597174385889737, -0.45673001293475657, -0.4167444666072115, -0.737630118896773, -0.3057183182288187, 0.1470010271939877, -0.7223864596330261, 0.25147533325839233, 0.3681834399967374, 0.8931470967300323, -0.02340048530945819, 0.05419470010495519, -0.5505327007535936, 0.7777006497876695, -0.6003282368960033, 0.0821011747697368, -0.4073362995522287, 0.19041856183989064, -0.3761640261891282, -0.29340621418585294, -0.4002071317646767, -0.44635701801163974, -0.06099650548071084, -0.4708062521690433, -0.20346870843392048, -0.7124768936381933, 0.08694087550210135, -0.643933382356477, -0.3220490167827475, -0.4244788451915849, -0.737630118896773, -0.5537651536125675, -0.2681017509772694, -0.3222184870290532, -0.3942644931150064, 0.03750037002915261, -0.33453499401779696, -0.159651757540166, -0.0912809161945166, -0.737630118896773, -0.42536977263647, -0.4023746544882768, -0.4199654156911868, 0.709922565808867, 0.4217430307431059, -0.19133803165667543, -0.2610288070806531, -0.2005276269867047, -0.5048774768315274, -0.3219232738312735, 0.018882470642126732, -0.35346852418449126, 0.2546141156042534, -0.0731879601761419, 0.25491412024302507, -0.17161978432044755, 2.2907795275375005, 0.06916583806855463, -0.13790888897050463, -0.3431786240713948, -0.3447986059546328, -0.5507058401213814, 0.02967996133757445, -0.5879826467237532, -0.45922622419388587, -0.689372047174639, -0.2379918609475723, 0.09471630508093144, -0.18972741682474864, -0.737630118896773, -0.1617898193765764, 1.1640530985195519, 0.5067519135244182, 0.0567508259595697, -0.4420738798418681, 0.34560047210624345, -0.16169778917659666, -0.737630118896773, -0.4048106058228419, -0.16056325364841365, -0.5496341113197328, -0.024518315543366212, -0.09411347797815366, 0.15426165744591036, 0.5558093627147095, 0.28773609537336425, 0.20207298664885107, -0.29998184104026626, 0.3345778268502447, -0.737630118896773, -0.5090845346882279, 1.426636496802031, 0.2416619441103917, -0.15694834883267403, -0.29584359000287536, -0.034274034734908046, 0.3945418043931815, -0.6627596770521115, 0.10068005197065467, -0.24829099861357518, -0.20590206980038034, -0.30351416903960715, 0.2206641230321295, -0.3566150332685302, 0.839433402881443, 1.8966551025175806, -0.5014483590611516, -0.28224414231355954, 0.04420096284461041, -0.1286913219849466, 1.7849323390513536, -0.12115391047492097, -0.3996518641861364, -0.23561673069732797, -0.6445190496856438, -0.11944552434704887, 0.3310098004571956, -0.3067292259461448, -0.08763178063366256, -0.5918116339863971, -0.05706044462001154, 0.0876848006739889, -0.737630118896773, 0.2378071219159035, -0.18812012578522175, 1.6481856490883842, -0.18569639046688383, 0.23659821113698626, 0.7545596301029186, -0.5743369141461039, -0.12433581578972076, 0.746619823881722, -0.3468490837029765, -0.6926802916731538, 0.5338655989524096, -0.06401476797744039, 0.28996977019896636, -0.5799041153359575, 0.5389318355616486, 1.3777035387453074, -0.048520844951944656, -0.737630118896773, 0.6219887457148604, 1.1652674482314844, 0.7487928071214053, -0.39562044933305607, -0.3831818900973878, -0.2998917101502292, -0.5378479866326585, -0.39540084162086087, -0.08500037303947686, 1.4407461250417957, 1.4613772929687332, -0.7356979428315171, 0.393800900850751, -0.30964242207010156, 1.092057683143903, -0.3896917965111495, 1.2139003153171866, -0.6303314418228618, 0.8637879089554287, -0.5277612263512258, -0.737630118896773, -0.47152078120294466, 0.011763338980981157, 0.046799995837489214, 0.14001821418740856, 0.4762021174121707, 0.3180967374817132, 0.2917106604265497, 0.35648766203037635, -0.3816814136591056, 1.2640417524914802, 0.008294853695416693, 2.138639793806713, -0.5732532606996409, -0.2815581460949448, -0.2549928432469492, 0.650121151930625, -0.24096315868934137, 0.00974756680523863, -0.1297854108445629, 1.2189103496185576, -0.3356656445938221, 0.23246246373542945, 0.535084610606934, -0.09861717351509248, -0.3578893407420858, -0.737630118896773, 0.29362136622951945, -0.737630118896773, 0.050345834837108486, -0.6109146020247971, -0.3932461824055141, -0.30071955028870145, -0.3737818598588658, 0.029392129548892205, 0.33212158743219405, -0.44169833446671297, 1.7302054496802786, -0.6869657455791036, -0.19945028658749694, -0.10957649405093625, 0.9945887228085963, 0.12182532856633384, -0.4656265965398945, 0.059799477415393654, 0.5733279933059102, -0.17821626041810312, -0.4134608187120388, -0.5100422833102102, -0.737630118896773, 1.239694670992731, 0.04012374872221464, 0.4854497711938763, 0.6935195208125569, 0.13053677261813576, -0.5988225265638432, 0.2630344472411067, -0.3479600505214073, 0.11397496257701314, 1.6003156139417385, 0.5266618616665149, 0.6961192444636026, -0.22741309305855165, -0.017858169396475262, -0.6676486843022652, 1.4762628756526175, -0.6727328132744926, -0.5722991056584051, 0.6463878855725103, -0.05237605564164814, -0.737630118896773, -0.4788686933799897, -0.37666032882715544, -0.737630118896773, 0.49281020155009264, 1.78874615341752, 0.07104563691881133, -0.532609236564592, -0.737630118896773, -0.737630118896773, 0.5451689967509373, 0.19470772168550465, -0.737630118896773, 0.8395357929538521, -0.737630118896773, -0.3592625418310995, -0.3700887380063706, -0.23012569615281367, 1.5059734357667371, 0.11266158975121468, 1.3422042272530526, 0.16232940809146906, 1.1684190940856074, -0.6336930909241151, 0.0053917584470672, 0.45833902106307084, 0.3946340935899734, -0.09533831706091325, 0.7685223208188982, -0.4303483172423038, 0.24567596301103573, 1.2602122256521426, 0.8357993323017405, -0.21357320999686868, -0.737630118896773, 0.44946760331468033, 0.0025343329696282607, -0.5673578565932763, -0.6885443958880072, 0.5741923519946552, -0.65460052211553, -0.32757044028635474, 0.2721116811215359, 0.8583244575712347, -0.4509167863580408, -0.679270254286666, -0.14823375365301314, 0.3578997126409571, 1.282715767854103, -0.6452829499865363, 1.969932206775886, -0.5800445779394927, -0.737630118896773, 0.43678539282957923, 0.7254423453492729, -0.4911435882145203, 1.4408498964305274, 0.17921910809462405, -0.5999897388562773, -0.574647095201221, 0.6227147137745549, -0.24992164253217689, -0.7108788725261748, -0.7335450707953325, 0.4606899351115379, -0.737630118896773, -0.5466854757988803, -0.6804078654019722, -0.5851628297414967, -0.737630118896773, -0.15472632886354257, -0.4391618707866252, -0.5919248587586996, 0.17258473213037195, 0.30429384779778934, 2.7317233239763254, -0.737630118896773, -0.44807878564138537, 0.177634738272823, -0.6703437727372206, 1.320912099465858, 0.8525348428704017, 0.2885640218441061, -0.24734389044389055, 0.008622829989718573, -0.5951552720177903, 0.5064601967835796, 1.7454940314012182, 0.16054828702599627, 0.24914565694838295, -0.19769938181657598, -0.4316994604362939, 0.23962648817705343, -0.3698618136342804, -0.737630118896773, 1.372658798871325, -0.009102739053032093, 0.19713892474521258, 0.9558008424817779, 0.11431994632853434, -0.18642218586203754, -0.737630118896773, 0.6045200151758073, 0.7006319185566315, -0.05781369367707389, 2.0480321769738628, -0.668416399410345, -0.737630118896773, 0.07261550291922711, -0.37652634114388195, 0.6217257776199808, -0.18231052516385304, 0.06557994089558555, -0.49386337847027256, 0.5005201049358781, 1.3708974478957192, 0.011314065847118217, -0.737630118896773, -0.30524638287404066, 0.14725354908417745, -0.6981745151158966, -0.022067083396984818, 0.4847353716583808, 0.29977858373664956, -0.737630118896773, 3.018725286877246, -0.44984617987590536, 0.2794123695468082, 0.1954800501742712, -0.4289878933292724, 0.1023181204644885, -0.5920005182019533, 0.42702811965717546, 2.1327747247017723, 1.0106719067439935, -0.06279670597788801, 0.10838607040428382, 0.8183750628818085, -0.737630118896773, -0.21539741086514697, -0.2726320368534146, -0.2434014841613343, 2.3057229528423893, -0.0487448771929854, 3.0986461773172285, 1.0975185445600033, -0.17866751919417848, 0.5022696283904781, -0.38375742417634623, -0.4032929924289344, -0.737630118896773, 1.462775530416097, -0.7201471826524557, 0.5647126370707851, -0.2753166682921479, -0.3659949049219712, -0.3417780988188786, 1.5945019988698141, 0.05184672135367373, -0.6057155648009991, 1.7147426494381643, 0.5631035762197221, 0.38917254151571473, 1.03989451686723, 0.04537715369314014, 5.0, -0.22958810510658786, 0.7437054191059796, 0.34840635721840274, -0.12277436718564555, -0.47955108522632645, -0.14679377455303863, -0.6010923638191048, -0.06551729480713882, -0.007480469364634672, 0.2757515359633485, -0.2357242143736664, -0.737630118896773, -0.700498525870678, 2.154447750464878, 0.025246540268538887, 2.3681377308703584, 1.1909865221674716, -0.2969350025621166, -0.33822064812892505, 1.3796309930086754, -0.737630118896773, 0.07217693498686281, -0.5307727980970192, -0.5347659461713551, -0.01480338834947175, -0.012426704118364064, 0.6050199653522492, 3.2267349492359005, -0.24758795177160628, 0.8404162094448357, 1.3108267636668751, -0.676371540401027, -0.5604336739896641, -0.3309696439251229, 0.4562851763561907, -0.6652190352234211, 0.7742849998514301, -0.2751690401101899, 0.6288904063874965, -0.40305406787129283, -0.1482073791444813, -0.4640698746276091, -0.5016417433462885, 0.14466228599561137, -0.7224808262000673, -0.1970891853311526, -0.519927608822315, 2.323844787005123, -0.737630118896773, 0.0016942336487939136, 0.48331097553316804, 0.5110822538628951, -0.28527427549743567, -0.28187550352001783, -0.1529824601726383, -0.737630118896773, 0.08884139409719398, -0.25456109556392714, -0.737630118896773, 2.969113929841669, -0.5261781730965448, -0.45812503450504916, -0.7230902429971758, -0.5732756531322122, -0.737630118896773, -0.6250689935466386, -0.4137800754470558, -0.3187891102618665, 0.7602366675234754, -0.010202439510207878, 2.9026000956269424, -0.3009239851044177, -0.7200982295573969, -0.737630118896773, 0.34489392880733216, 0.04926037920450575, 1.233787989733581, -0.7355470215455832, 0.44018230866318947, -0.12925295656840977, -0.737630118896773, 2.1357350582452277, -0.3849711479793229, 2.6081151968784826, -0.10837751148308682, -0.737630118896773, 1.0212976825541251, 0.7633869320612617, -0.7353601076280292, 0.31420617372738335, 2.0336108892388576, -0.35305201414715065, 0.08502222713027775, -0.5822656698367211, -0.08573087354335578, -0.007163802597722823, -0.3583875642731244, -0.45113602715808804, 0.3731112859769251, 1.1513106281098822, -0.737630118896773, 0.6131971853163584, -0.4068099532841891, 3.3991684643818694, -0.3051714464635501, -0.1567591948287755, 1.865586363129461, -0.28521569905213945, -0.737630118896773, -0.737630118896773, -0.737630118896773, -0.3291175145674508, -0.11238268132604139, -0.737630118896773, 0.39661058458279685, 3.3586834642884367, -0.02707141976852514, -0.44916786722933216, 2.109613848594883, 1.8230031435422918, -0.4484845904772274, 0.5548502975256088, 0.33394699695225516, 0.15805906868074723, -0.2902780507092208, -0.08882044649522879, -0.30597861002332116, -0.737630118896773, -0.1665383532316619, 1.065321442401014, 0.41205240608325816, 0.6441481674879971, 0.20592038426810538, 0.17772668214053275, 3.2360177402515498, -0.22139866912625122, 0.2961523693935213, 2.5869220058728626, 0.675740253097772, -0.6400446099967525, 1.7950693015478756, 1.2871449586419017, 0.34371644297474974, -0.06189759855040712, 0.4013356360604016, -0.2894521962129623, -0.737630118896773, -0.711372941316712, -0.06883223815024159, 0.9665557713680404, 0.11633226521347069, 0.49861164377193323, 1.1128392418854458, 0.07998491183153932, 0.4371655138150522, -0.5495665994844761, -0.15591115293908733, -0.25694248490375715, -0.4877624496032806, -0.18880085573535765, -0.03579719497717139, -0.6435438943196932, -0.10036276885139822, -0.4554844972732957], [0.11940547166342182, 1.1129055711888147, 1.4195205701998286, 0.4148507135713023, -0.17666494506143807, -0.3502687075079986, -0.08841600291094416, -0.8118725530066238, 0.37200081796318263, -0.19601841932862984, -0.02618741839295142, -0.02020363760215488, 1.8743391635939124, -0.2758384195549107, 0.9187541409815644, 1.138046712359308, 1.949272796791434, 1.1936346169641896, 0.2543064468156477, 1.320440208602523, 0.019939721556945844, -0.6708811704373786, -1.0322321322537737, -0.4374002949045272, 1.820617801753548, -0.8247534861789533, -1.0322321322537737, -0.39262625837754866, -0.48270622855074125, 0.4203781587701078, -0.408203098296588, 0.47891469335402326, 0.47418488783208773, -0.31359372133019403, 1.6709214346033179, -1.0322321322537737, 0.12985916587483, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, 2.3429043516918675, 0.09098395492100439, -1.0322321322537737, -0.6781315750187779, 0.7356035462516743, 0.16504735334296744, -1.0322321322537737, 0.0011188036153284766, 1.502590457704596, -0.6943768295709637, 2.3429043516918675, 2.3429043516918675, -0.5341096560821851, 0.03489200466495235, 1.0181268605926717, 0.5976942829462353, 0.17819069184081118, -0.2928415760015122, 0.03815919610997936, -0.7599126317192149, -0.29874122558259103, -1.0322321322537737, -0.5625846097389087, -0.47029629831157177, -0.3650762536229803, -1.0322321322537737, 0.22814444221985936, -1.0322321322537737, -0.03785990273458689, 2.3429043516918675, 1.4405469453678377, 1.4728526706937604, -0.7389259943336681, -1.0322321322537737, -1.0322321322537737, 2.3429043516918675, -0.05210263261350831, -0.11813994658855176, 0.22682561752685446, 0.9189196017740391, 0.9804726645904741, 2.3429043516918675, -0.8306081037266235, -1.0322321322537737, 2.3429043516918675, -0.6205327202595466, -1.0322321322537737, -0.6328327278407674, -0.34577489785740145, 2.3429043516918675, 0.2402122031658263, -0.43714654166228323, 0.13932924181942222, 0.8298804360180476, 0.6694434550949605, 2.0007531866636006, 2.3429043516918675, -0.8442975534805077, 1.2139811855894016, 1.5771369719763018, 1.5666376277255318, -1.0322321322537737, 0.5453285789533707, 1.951220092333148, 1.1803020038446703, 0.7101515892897327, -0.175483894494438, 2.072039101553717, -0.587377895961485, 2.3429043516918675, 0.532676925987748, 1.9408899993113373, 0.45921134531947383, 0.20796984404976918, 1.5656677703911595, 2.3429043516918675, 1.7197266003278373, 0.07555877366160246, -0.05990714132787084, 0.14876100139524068, 0.5433155275787942, 0.14333977081869437, -0.26079195234043584, -0.7358440192712498, 1.721243104523407, -0.928247306353525, -0.31790905086300886, -0.9636696099249041, 1.3418101950776034, -0.5737333958402174, -0.6355696289820272, -0.32136963696936804, 0.2976424247020534, -1.0322321322537737, -0.11528508871201565, -1.0322321322537737, -0.008605313974277981, -1.0322321322537737, 0.48261350015312854, -0.19796761008858596, 0.6013490877218405, 0.8338261155931759, -1.0322321322537737, -0.29774203356588724, 2.3429043516918675, 1.8350577167302724, 0.8061476892026158, 1.1363853475695334, 0.34083420120059177, 0.851139346224083, 2.2128152532514767, 0.6891131836059394, 2.0002505418259036, 1.4442256463734284, 0.8587533443048792, 1.1210602832737004, -0.9222370440078537, 0.7409272966900229, 1.7522350316047, -1.0322321322537737, 1.4085817001188532, -0.8244837471828547, -0.7281107048420921, -1.0322321322537737, -1.0322321322537737, 0.017849131036096942, 2.2617501178242767, -1.0322321322537737, 0.7563334433662251, -0.22425923113186413, -0.7265160022939032, 0.6367288570338455, 1.9020245116510899, -0.46943059557963007, -0.923740662779408, 2.240822953211125, -0.1419793200302064, -0.15005690497279, 0.13742949153530495, -0.934963125489816, 2.3429043516918675, -1.0322321322537737, 2.3429043516918675, 1.2638933235679537, 0.17675576443037236, -0.32698838224688964, 0.29435265543972317, -0.8157609434303734, 0.7241590649044516, 0.397028575642432, 1.1200741105822976, 1.396720435560311, -0.08177037895024215, -0.6864164391563168, -1.0322321322537737, 1.5604648195154405, -0.7453154548289258, -0.11679821447507138, 1.7534572001674413, 1.6662067908273064, -0.6028452664269377, -0.20142473536163305, 0.16478861485274307, -0.3757804462453063, 2.3429043516918675, -0.4320062565896945, -0.23527819478369202, -1.0322321322537737, -0.047702842267796725, -0.47843498344221336, 1.2248134290441475, -1.0322321322537737, -0.9204970894616903, -1.0322321322537737, -0.0983808956178903, -0.5506448584249684, -1.0322321322537737, 0.5405822932728221, 2.2989916506547976, 1.5094890521000046, -0.8233051274392481, 0.14593127576058756, -0.7995156476777912, -1.0322321322537737, 2.3429043516918675, 0.3610657383186916, 0.3130959518342697, 2.156805786189281, 0.5964032273204849, -0.05458042446097186, -1.0322321322537737, -1.0322321322537737, 0.08399340124053534, -0.637550750049295, 0.32136948586276526, -0.5013858703326466, 0.7266932188943717, -1.0322321322537737, 1.9854553146294824, -0.7720037738902141, 0.8294374493545298, -0.5097318758586398, -0.43211185320600687, -1.0322321322537737, 1.8265496700447168, 1.403366553925768, -0.4472615686141945, 0.2446221288090866, -0.7775359983350174, 0.7741976056995621, 1.3337194260081293, 2.3429043516918675, -0.4342054925562044, -0.2957615305045664, -1.0322321322537737, 0.37267864688693936, 0.3130142926483405, 1.7995650583317646, -0.5085364875536451, 0.39597186787216543, -0.9834105430211902, 1.6745358629903244, -0.5956541080157518, -0.222856604832307, -1.0322321322537737, -0.8111806541474541, 0.10912481911745735, -0.8880225970114712, -0.7624883981096359, -1.0322321322537737, 0.5246835546556735, -0.667303163200906, 0.21951312394787845, 0.9085929695855338, -0.6362282585209967, 0.09067544635176873, 1.5691177267952083, 1.7226330411008288, -0.5658222192992289, -1.0322321322537737, 0.11748512118104198, -0.677470885459982, 2.3429043516918675, 1.5768218713436208, 0.2478215044014195, 0.8258543332688879, -0.5561030045568066, -0.4955493397590543, 0.3510434946597722, -1.0322321322537737, 1.5666994283203344, -1.0322321322537737, 1.5190655074684456, -0.8897708019370403, 1.0941803205679443, 0.5249385027094203, -0.3506466799457829, -1.0322321322537737, 0.2342729188032849, 2.3429043516918675, -0.8368863025510447, -0.26744342675744043, -1.0322321322537737, -1.0322321322537737, -0.6005787914132866, -0.8524216536707769, 0.9776870233801195, -0.8614995945412697, -1.0322321322537737, 1.5403273841030243, 1.4430084218582777, -1.0322321322537737, -0.7774814078096112, 2.3429043516918675, -1.0322321322537737, 0.9661657444937601, 1.4655618485233621, 0.69055981192899, -0.12315930849731462, 1.2610079773979868, -1.0322321322537737, 0.3976009315510587, -0.10543753473439417, -1.0322321322537737, 2.3429043516918675, 0.3182529230674546, 1.076971409341061, 0.35902994432522917, 0.9175998706723087, -0.3048685485549103, 1.0491802586655878, 1.8050404262293531, 1.1257764102639907, 0.20978760554479126, -1.0322321322537737, 1.226881194545326, 1.466464302009011, 1.431391887655135, 1.5696388294105519, -1.0322321322537737, 0.9538285329544737, 2.3429043516918675, -1.0322321322537737, 0.06935300513428522, 0.3106806197879461, 1.979746917289106, 0.8657941624691212, -0.7256923651668211, -0.08368685659535313, -0.3781350901075378, 1.6673243103828586, 0.29937341816196655, 0.1554418104945764, 1.0011158760707273, 1.0875487047420669, -0.3176038383254958, 0.8340724939644438, -1.0322321322537737, -1.0322321322537737, 0.4695991188964299, 0.902705103317865, 1.7698160648130652, -0.7617781444738119, 0.6314405389365183, -0.5408989046251965, -0.6071433741940055, 1.5741988892987733, 0.9185965906652239, 0.2676813315420011, 0.9730956511905332, -0.32221498670541765, -1.0322321322537737, -0.0030295819107398667, -0.17019887242882656, 0.947959948472372, -1.0322321322537737, 0.3968555339769886, -1.0322321322537737, -0.5633703425011808, 0.7851651512565241, -1.0322321322537737, -0.9806528253795821, 2.3429043516918675, -0.25061932723417435, -1.0322321322537737, 0.15169521123549337, -1.0322321322537737, -1.0322321322537737, 0.2881435908806833, -1.0322321322537737, -0.6759250877824782, -1.0322321322537737, -1.0322321322537737, 2.3429043516918675, 2.012287320073678, 0.9474490635553685, -0.6681459173119793, -0.2544151197667155, 2.3429043516918675, 2.3429043516918675, -0.287689219212739, -1.0322321322537737, -0.25827633852895376, -0.8929232502777277, 1.0689803452311923, -0.7568892024202692, 0.3322861901304012, -0.10485265390522162, -0.9930596630139871, -1.0322321322537737, 0.09516703118095143, -1.0322321322537737, 1.8913094421240793, 2.0632660539176646, -1.0322321322537737, 1.5955919479959115, -0.5624609673489146, 1.2883149410134096, -1.0322321322537737, 0.3255071592857319, -0.5332005281322985, -0.1363089094554313, -0.5182348136950253, -0.9503874724411903, -1.0322321322537737, 0.45296289318135224, -1.0322321322537737, -0.364623873269053, 1.1287927736949275, 2.3429043516918675, 0.6723760993201433, -1.0322321322537737, -0.14137861824876538, 0.031945764308908754, -0.6860337286729262, -0.8579727478971918, -1.0322321322537737, -0.9984046445316739, 0.3037139623374691, 0.7300398447039201, 0.6725443617395855, 2.3429043516918675, 0.5419845899692071, 0.3226098650007723, 2.3429043516918675, 0.9639414174857647, -0.8905457710957184, -1.0322321322537737, -0.9573838662778675, -0.97053425004352, -0.5246301040463922, -0.8965265957580671, -0.7152227676023517, 1.4586629245247746, 0.6501114050339589, -0.667493055828525, -1.0322321322537737, 0.2183731913766195, 1.4564399159294688, -0.6925023351299229, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, 0.15677744494936657, -1.0322321322537737, -1.0322321322537737, -0.15891927506852538, 1.1952610438177047, -1.0322321322537737, -0.1364931576287316, -0.032296283587624125, 1.3383821572845067, -1.0322321322537737, -0.7610467962349625, -0.13167139282172866, -1.0322321322537737, 1.046797062928563, 0.435463436758118, -1.0322321322537737, 2.3429043516918675, 1.516366387090806, 1.3308818722981404, -0.9508172286273715, -0.3755322138561981, 1.4128998312786423, 1.568723521401185, 0.39832869535540943, 0.0858136347593394, 0.29562096844658087, -0.8249063808504857, 0.942447005813146, 2.163790077409477, 2.257012401826207, -0.6621610653108698, -1.0322321322537737, 2.1050659986205456, 2.3429043516918675, 0.3047475154848795, -0.608552345354625, -0.4649139197089571, 2.3429043516918675, 0.24322708338249144, 1.296735642858316, -0.6414419627002068, 0.729509678001336, 2.3429043516918675, 1.4688654611189205, -1.0322321322537737, 0.041094806763719245, 2.305265976641945, -1.0322321322537737, 1.2454108256834564, 1.9300987914515346, 2.3371590387961976, 2.3429043516918675, 2.3429043516918675, 1.250417827473263, 2.3429043516918675, -1.0322321322537737, -1.0322321322537737, 1.6873892330973776, -0.5854888989808649, -1.0322321322537737, 0.5059377038365404, -1.0078675258570198, 0.9078190613370666, 1.2399863814759788, -1.0322321322537737, 2.113133365864789, 0.7495937176998462, 1.1140260571729104, 2.3429043516918675, -1.0322321322537737, 2.3429043516918675, 2.3429043516918675, -1.0322321322537737, -0.45257897419147686, -1.0322321322537737, 0.10713113192924592, 1.2312022921336587, 0.1927017187019525, -1.0322321322537737, 2.3429043516918675, -0.42069954936847664, 2.3429043516918675, 2.3429043516918675, -0.9516720184042815, 1.2720836327954503, -0.7315135279925076, -0.11139255764841945, -0.46822544278065653, -1.0322321322537737, -0.3953978914530857, 1.8476076871172562, -0.902759309344717, -0.8396933679676003, -1.0322321322537737, -0.09731751338338024, -0.7647407001868803, -1.0322321322537737, 0.13351982110675137, -0.4540368914231776, 0.06671716856571946, -0.892537336463507, 0.49092279612581113, 2.3429043516918675, 0.1527466453550038, 0.2526776303391287, 2.3429043516918675, -1.0322321322537737, -0.5473010342423874, -0.3307205613671846, 0.22243200724062442, -0.06102029364138515, -0.5718035280662369, 0.3913544570319639, -0.06369864901917248, 0.5937871669422615, -0.3868103280022218, 1.2512591395704606, -0.3173549055296479, -1.0322321322537737, -0.3208026371122889, -0.38406077833922625, 2.1696850301453527, -0.7324168466864833, 1.4102066437580965, 0.0138287963424482, -0.7048390316642554, -0.364071787955517, 0.01585066460188436, -0.7455156475556769, 2.3429043516918675, 0.6749872156507896, 1.2553732463666138, -0.03835422509218599, -0.6237054803957245, -0.6841777744103247, 0.5365886564361334, -0.5222240832896854, -0.10187666686288323, -1.0322321322537737, -0.3458288291764615, 0.47367433251825647, -1.0322321322537737, -0.6747435428107177, 0.4490317161457967, -0.10526103223565215, -1.0322321322537737, 0.7311450041405022, -0.15908654867845087, -0.7986397478477074, -0.04933165874431583, -1.0322321322537737, 2.3429043516918675, 0.3316898555909909, -0.3739518078456061, -1.0322321322537737, 0.5858859196968372, 0.47623633797623593, 0.7446883984886786, 0.7951087845588628, -1.0322321322537737, -0.1721879451726262, 0.6460096583567688, -0.28302681753953407, 0.1263296927054753, -1.0322321322537737, -1.0207343697812477, -0.19956165343042823, -0.9307737043688012, 1.4783974200591063, 1.1319342215297474, 0.6076112183916141, -0.5052060122995408, 0.12677375057930826, 1.4709394890803722, 0.6415397449361572, -1.0143479838655813, -1.0322321322537737, -0.6537866727116659, 1.3462483017920885, -1.0322321322537737, -0.022595320620867113, 0.21108302841256582, -0.25700942633557644, 0.3817279019813463, -0.48091289889086936, -0.9632563338973359, -0.4846039600154271, -0.3397325713031262, -1.0322321322537737, -0.6009945446146959, 1.1597990385142172, -1.0322321322537737, -0.5851653522668943, 1.353679040509108, 1.8180383273274385, -0.3649712338122191, -0.8688775761505318, -0.994920885777295, 0.986442437246453, -0.9539317211027528, -0.17399408815582135, -0.5779835051453251, 0.8610398015108489, 1.9989970609617975, -0.9808670674415513, 1.6579787420365895, -1.0322321322537737, 1.0325135446570728, -0.534298353898304, 0.2363358226576707, 0.06473683030598121, -0.8614016611987114, -1.0322321322537737, -0.2726846116011412, 1.779243704349227, -1.0322321322537737, 2.3429043516918675, -1.0322321322537737, -0.17754309031313092, 1.008038861100883, 0.15101317987129542, -0.6237975220815778, -1.0322321322537737, 0.5903731372839891, -1.0322321322537737, -0.917652644985381, 2.1278873926646775, 0.26102128744251774, -0.05129518724226191, 0.24583984772899894, 0.4371376560716109, -0.7620363679590789, -0.2207567030218365, -1.0034064550715172, 0.8572040445936728, -1.0322321322537737, -0.26631280547579617, 0.629077613794584, -1.0322321322537737, -0.4331156596671263, -0.6798138284095981, -0.3569746900496164, 2.2374244149019487, -1.0322321322537737, -0.1285732878040712, 0.32737304284389757, 2.3429043516918675, -1.0322321322537737, 2.3429043516918675, 0.6552014668231817, 0.5556758113401457, 0.5702454251651511, 0.8891242990096337, -1.0322321322537737, -0.7350335868712561, -0.1460593952988255, 2.029678172251649, -0.3654403827275346, 0.5060832236370967, 0.5666394016590338, -0.5989984266030911, -0.5531004432587048, -0.040223322281283024, 1.5820798659491067, -0.995607796813459, -1.0322321322537737, -0.010220616720734415, 1.9967188438351342, 2.073815003445856, 2.3429043516918675, 1.9822762920330317, -1.0322321322537737, -1.0322321322537737, 2.3429043516918675, 1.5171880877992507, 0.4850057599773939, -0.3395652976932007, -1.0322321322537737, 0.6067354627629186, 1.354785847961558, -0.3200725660857256, 2.3429043516918675, -0.30882296261410686, 1.1607565357296334, 1.7196359594554655, 0.21359180295822186, 0.7772340749240069, -0.45129747705772877, 2.326015485145249, 1.3896633020390454, -0.9349070105497391, -0.39889493991037117, 1.3139882265055205, 0.23820953429117264, -0.13456885190827772, -0.3396770331686037, -0.03167662962377473, -0.20820945186102216, -1.0322321322537737, -0.0654625203955271, 2.3429043516918675, -1.0322321322537737, 2.3429043516918675, 0.6360665194591918, 0.30756504580215865, 1.9448620471402465, -1.0247020246178764, 0.5730411192722632, -1.0322321322537737, -0.6250976417945593, -0.475913230771646, -0.15507321805221114, -0.4357062994006953, 2.2757035385187447, -0.3476581267825063, -0.10319697477015977, -0.6210520512578391, 1.312323236080851, -1.0322321322537737, 1.824454382678658, 0.29597380864248213, 0.48109501833852525, -0.9237125126084775, -0.4179462916697926, -0.4564973791041009, 1.23504052107463, -0.715399702705261, -0.8225326818048578, 2.3429043516918675, -0.060662674199489765, 0.062050976456030166, -0.7483136694851928, -0.061166390247494755, 1.2060598325504694, 1.4021550974661214, 0.26016456639702185, 2.3429043516918675, 0.9390501155198311, 0.24182165545597345, -0.18184399970716442, -1.0322321322537737, -0.6104173225040673, 0.6659562535324464, -1.0322321322537737, -1.0322321322537737, 0.9837871540907239, 1.5085635263922976, 0.7716466419478499, 0.30080323672323184, 0.4536067729783594, -1.0322321322537737, 1.5529416271086056, -1.0322321322537737, 1.0649540776804498, 1.0333744681430168, -0.6161067264616424, -0.18377333187598682, 1.1526763139616718, -1.0322321322537737, -0.9550234080096753, -1.0322321322537737, -0.5362543015232903, 1.2698092061052713, 2.3429043516918675, -1.0322321322537737, -0.2411402696031399, 1.0663497823133896, 0.9563028639686252, -0.31413872017552985, 1.2507276544551875, -0.2840597938813979, -0.489881236406487, 0.5363266219141865, 0.32043547287337104, -1.0322321322537737, 0.6640549376332594, 2.3429043516918675, 0.5969467429515489, 1.557183290332417, 0.7840809216213771, 0.5682188600605053, -0.08893982475245718, -0.9075327151862828, -1.0322321322537737, 0.8453343751542344, 0.32164099647590977, 1.0436528134667824, 1.5936472892795757, -0.6010785522232259, -1.0322321322537737, -0.2475412456092266, 0.05001098457732445, -0.7410325088077819, 1.425521655157179, 0.6799429641473129, 1.7796290104575994, -0.999897332323023, 2.3429043516918675, 2.3429043516918675, -0.6377007606930698, 1.6302019290991128, -1.0322321322537737, -1.0322321322537737, -0.5571834849558722, 0.34097691937418695, 0.4218429152676327, -0.09977256261196474, -0.9643969720253884, -0.6990611498551274, -1.0322321322537737, -1.0322321322537737, -0.9284211720268923, 0.8583805631170527, -0.663551784695826, -0.30946568880001446, -0.36632512004267465, -0.10415265916813209, -0.20836337654246773, -0.5812141106382339, -0.4238889132644565, -1.0322321322537737, -0.6135207011724843, -0.19198794933743932, -0.6702702509575933, 0.061160388684582796, 1.2208359427628994, -0.7829372261190454, -0.2123398740142057, -0.3274380433746441, -1.0322321322537737, -0.6546303332314625, 0.8506787257908459, -1.0322321322537737, 0.8643788464474355, 2.3429043516918675, -0.33660900444040653, -1.0322321322537737, -0.05322732103805189, 0.4519292576331439, -0.11723048903549417, -0.3093962249314589, -0.7387576701136346, -0.5773333216876446, -1.0322321322537737, 0.5544200232538338, -0.5815726776892568, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, -0.6854797481411493, -1.0322321322537737, -0.3991599820612649, -0.4485020301529956, -0.09155588513068731, 1.0421549318504488, -1.0322321322537737, -1.0322321322537737, -0.9858408977620995, -0.8252288975545419, -0.8382741173080457, -0.5955207835325725, -0.10575634340276803, -0.4966664473106379, -0.8969782860053527, -0.9573826354160211, -0.05710955200252355, -1.0322321322537737, -0.49098116339271614, -1.0322321322537737, -0.955839232511565, -0.1072498577770709, 2.168509006026728, -0.5437685122436875, -0.2571580773662659, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, 1.9546621382610625, -1.0322321322537737, -1.0322321322537737, -0.7143540984418596, 0.35822241655319137, -1.0322321322537737, -1.0322321322537737, 1.1473871718564106, -0.6434662617830399, 0.17942538532409832, -0.7076260118875014, -1.0322321322537737, -0.6945741794703542, -0.6330816606366173, -0.9543418401499372, -0.1607821921981407, -1.0322321322537737, 0.6454307103846969, -0.11676813818560432, -0.8309765588728142, -0.3770010079925825, -0.7420739312309347, -0.20849628902168676, -0.8318851924179426, -0.2894993998347926, -0.8449790904399492, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, -0.76058984263702, 0.28950996083128505, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, -0.9638844493926225, 1.1429197304595942, -0.8415858669819257, -0.3461797329537284, -1.0322321322537737, -0.10066282078023986, -0.47463008562203657, -1.0322321322537737, -0.20822370719822073, -0.7937171244699996, 2.3429043516918675, 0.21633912779980313, 0.32716259121841257, 1.1416380685242566, 1.4503954881549759, -0.9066775906561506, -1.0322321322537737, -0.536335013100097, -0.11819672073497191, -1.0275323573146171, -0.7165372250533258, -0.06289985573120313, -1.0322321322537737, -1.0322321322537737, 0.08445319766583848, -1.0322321322537737, -0.4800248655440073, -0.7699509641329798, -0.10803769175956443, 1.7717376513073428, 0.4299216538213225, -0.13546166450113956, -0.8596942858661055, -0.7680268438143156, -0.7160398126659886, -0.8927235107553378, -0.6549247100646873, 0.9979403143075819, -0.33511886849861766, -0.15115629635386765, -1.0322321322537737, 1.0139334842335865, 0.6390064149541643, -0.8552088192958066, 0.10698223369617563, -0.4961510715504118, -0.7203992060228981, -1.0322321322537737, 0.05119277675146028, -1.0322321322537737, -0.329811598218882, 0.4357562891766747, -1.0322321322537737, 0.650019445748905, 2.1703669791087594, 0.6906351262538548, -0.2087025382067236, 0.11457942201518627, -0.4968547743231876, -0.323276391320894, 0.1735476543539715, 1.2352086186924829, 0.2986004987230226, -0.5057930355493364, 2.3429043516918675, -1.0322321322537737, -0.1840253959019746, -0.2558682577524199, -0.061730506076814906, 0.15141826217000334, -0.7603711509322253, -0.3628916437972389, -1.0322321322537737, 0.04842930135443856, 0.06647293261507457, 0.5590323252448551, 2.0523996965345863, 0.2618789148967391, 0.20080509509276376, 0.6877766427424238, -0.09307387254053573, 0.860737720203469, -0.7137045329901279, -0.7274110191079779, 0.0346613648451615, -1.0322321322537737, -0.7068709528204475, -0.051008844486359076, -1.0322321322537737, 0.030674155270328456, -0.06134313994861766, -0.04813997847500528, -0.21470527117992846, -0.3678417066390377, -1.0322321322537737, 0.040538601410526585, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, 0.3918749004409697, -0.38292199937906685, -0.14546446157289564, -0.1789403605611338, 2.3429043516918675, 0.06670538525230947, 0.47514254984909343, -0.09143912320691579, -0.5674257799326717, 0.9075761437991108, -0.31074281869172504, -1.0322321322537737, 0.03876887957786957, 1.2577228225800683, -1.0322321322537737, 0.1603182070273764, -0.8656075418781409, -0.4104267248978457, -0.660115177220253, 0.17787122396609956, -1.0322321322537737, -0.9125789809539846, 2.3429043516918675, 0.4718402556662106, 0.39012305958039933, -0.7000849385085641, -0.5688773935037025, -0.12506490923774102, 0.820722741479967, -1.0322321322537737, -1.0322321322537737, 2.3429043516918675, -0.10168483781662772, 1.0932569372808538, -1.0322321322537737, -1.0322321322537737, -0.7067662420126604, 1.77970053434598, 1.0048707154091168, -0.43740103651166523, 1.4555812996657305, 1.3916822862707223, -0.3708539500303248, 0.9241240358640295, -1.0322321322537737, -1.0322321322537737, -0.4997375248681728, -0.0032458015917426345, -1.0322321322537737, 0.4497804097515894, 2.3429043516918675, 2.3429043516918675, 2.3429043516918675, 1.9563309191222165, 1.4001852241071113, 1.172081206323743, -1.0322321322537737, -0.5805076886392874, -0.011505904290960142, 0.09894321232474651, -1.0093954992129741, -0.2158454509535683, 2.0230020599975163, -1.0322321322537737, 0.8796742464577582, 0.2538028955692255, 1.8472912680718863, -1.0322321322537737, -0.9203791636267148, -1.0322321322537737, -0.014058598459324917, 1.0373748618447403, -1.0322321322537737, -0.42408725197336444, -0.2904381920701814, 0.1372065149892744, -0.8851065462459881, 1.4452037437871146, 0.8660395520308657, -0.40476216477937993, -1.0322321322537737, 2.3429043516918675, 1.9658772158003919, -0.7592693287277554, -0.4254237516364837, -1.0322321322537737, -1.0322321322537737, 0.6667458179315926, 1.502648467862914, 0.15228759053683655, -1.0322321322537737, 2.3429043516918675, -0.28073986592880246, 0.8105607460760091, 0.7567581370536859, -1.0322321322537737, -0.01826590055243648, -0.19710709860660566, 0.23642044827214365, -0.4171142908622151, -0.11487390875462429, -1.0322321322537737, -0.743576839295649, 0.985123859755829, -0.5202278828772872, -1.0322321322537737, 1.7028973919553978, 1.359384801024113, -1.0322321322537737, -0.48196070737548485, -1.0029509769627756, -1.0322321322537737, 2.0356937597485723, -0.638742389118205, 1.387255880468856, -0.042131889450252855, 1.8145504665585799, -1.0322321322537737, 0.3493256029259514, 1.6307250093334833, -1.0322321322537737, 2.3429043516918675, -0.6624150245550964, -1.0322321322537737, 2.3429043516918675, -0.7428541843404682, -0.37605809571753934, -0.21529526085827444, 0.2953081750361058, -1.0322321322537737, -1.0322321322537737, -0.029170409502705566, -0.9385882659799211, -0.7033569091995923, -0.3626638056044137, -1.0322321322537737, 0.33290609129663146, -0.3731408604406559, 1.9503298341648727, -1.0322321322537737, -0.665030714129758, 2.1011229558707956, 0.8459111807056899, -0.5693623633712873, -0.8795688730487434, 1.4455954771573423, 1.173491907901017, 1.9742125504236832, -1.0322321322537737, 0.021057817918044064, 0.35464984776905506, 2.3429043516918675, 2.3429043516918675, -0.424387726465276, 0.8106388620278349, 0.41320615854331283, -0.1719831792018544, 1.2196978230090845, -0.8584951895254226, 2.3429043516918675, -1.0322321322537737, -1.0322321322537737, 0.45596030442988755, -0.04167011540591615, 1.3338982357290772, 0.05616887824387256, 0.203045655056998, -1.0322321322537737, 0.16199679358289992, -1.0322321322537737, -0.4675418046009923, -0.19493526090379107, -0.3601484801957061, 0.44017313648654566, -0.8817125914809264, -0.8100717866751778, 1.688527847255954, -0.8066378160249837, -0.2807249513852594, -0.1408800110499269, -0.9790955894419904, 1.4341770344607347, 1.5097271903919662, 2.3429043516918675, 0.845452208288314, -0.6524817737526872, -1.00066880717307, 1.6895138551457676, 0.8475895200588395, 0.03809170986045722, -0.5289763338766102, 2.3429043516918675, 2.3429043516918675, -0.3961199284023182, -1.0322321322537737, -1.0322321322537737, 1.0967759455494943, -1.0322321322537737, -0.08439278418954352, -1.0322321322537737, -1.0100509975218068, -1.0322321322537737, 2.3429043516918675, -0.5553302911198386, -0.44099189827185525, 0.6454438945115873, 0.06393375217677247, -0.7148244627688732, -0.9149077509671935, 0.8736673934448966, -0.7379701039337168, -0.5649190242064429, 0.2732173464232854, -1.0322321322537737, -0.6651627614006446, 1.4038830420967, -0.9062547612866368, -0.10991066178593706, -0.5806644973484906, 0.4251386173870636, 0.1633340760535583, -1.0322321322537737, -1.0322321322537737, -0.8305631334938082, -0.9295768019492334, -1.0032058451907508, -0.08131148893366441, -0.7621242484048835, -0.5249963343711699, 0.40280058639505467, 0.7227177102321505, -1.0322321322537737, -0.3325131906203171, -1.0208924904655776, -0.6413355008755668, 0.5032321561970449, -0.7053181510755328, -0.5185041818875555, -0.5600737751734229, 0.20799423468451642, -1.0322321322537737, -0.7105861573773731, -0.348593705386964, -0.22212620420257811, 0.07098932008296818, -0.10956367204633832, -1.0322321322537737, -0.3923724227345118, -1.0053709595038578, -1.0322321322537737, -0.5878738663349434, 1.265213054669684, 0.27707757637600683, -1.0322321322537737, -0.6552151316598458, -1.0322321322537737, -0.38504406700287236, 2.3429043516918675, -0.5665991763770393, -0.40145896418778065, -0.9992104547621812, -0.4014190410035407, -0.8779236794146043, -0.28958015261199643, 0.9370896358512267, 0.14312486955038065, 0.0823343436729595, -1.0322321322537737, 0.44698801167619995, 0.05324397969323451, -0.9194758243325407, -1.0322321322537737, -0.5674234315100696, -0.27140838811814927, -0.20664713282450825, -1.0322321322537737, 1.5054573460969163, -1.0322321322537737, 0.009407087385784678, -0.8108265367392568, 0.7976353576758208, -0.5659894929091511, -0.8560491219832861, -0.7786848301919308, 0.16923141841243125, 0.04450397477519907, -0.8663267463001121, 1.1666256146164902, -1.0322321322537737, 0.6167781418185181, -0.14982544114507187, -0.08234907971993989, -0.6923191993673351, -1.0322321322537737, -0.08170808395068495, 1.3034252688425114, -0.9407641516216967, -0.5546291427716481, 0.4937704027325575, 1.4515944196940698, -1.0322321322537737, -0.3702952726533435, -0.8695240515725241, -0.2132010447025305, -0.05263329372084742, 1.50855676952727, -1.0322321322537737, -0.9569410959164313, -1.0322321322537737, 0.7664858802781874, -0.8341095400261394, 0.16559597782319135, -0.10706544480218788, 0.5933825790483086, -1.0322321322537737, -0.871203163433109, -0.18729794339855588, -0.030270048086157207, -1.0322321322537737, 0.04962913930225734, -1.0322321322537737, 0.054945885673197276, -0.2825635602809188, -0.6732298402421122, 0.592397559968012, -0.5642123138047197, -0.15301847187634032, -1.0322321322537737, -0.06447206286288484, -1.0322321322537737, -0.868315891144604, 0.37917578461853474, -0.8932988330925182, -1.0322321322537737, -0.5195736617807467, 0.17359931965122496, -0.3733564621157106, -0.7016646441124151, 0.07277881810596773, -1.0322321322537737, -1.0322321322537737, -0.31053549829638005, -1.0264662172285692, 0.169306403134124, -0.4312235314563689, -0.10233044803029445, -1.0322321322537737, 1.15391990673061, -0.3605669938236831, -1.0322321322537737, 1.126417488434037, -0.07021869417124346, -0.3135789715882337, 0.2499228894261684, -0.5066716752057888, 0.7329326069452594, -1.0322321322537737, -0.5477403540706142, -0.7324073087946859, -0.7480488745366789, 0.301112404498812, -0.43246778343165154, -0.9789881800082301, 0.7745745069270451, 0.02896829405229166, -1.0322321322537737, -0.8366628522004511, 1.008394832526924, -0.04734085558386352, -0.7410486387630245, -0.7480478033263686, -0.6156632453933654, 0.3989743879698674, -0.7262188238337142, -0.5595709655341398, -0.28136652396006073, 0.04982442918182511, 0.13802253004299955, -1.0322321322537737, -1.0322321322537737, 0.29872657193640895, -0.6821039524508592, -0.26970878936038556, -0.9643954321605684, -0.7163721350644198, -1.0078509143721428, -0.4299218461283203, -0.2984458187394544, -0.6355121544288649, 0.7154110671094838, -0.40026122746018294, 0.6291937989128092, 2.3429043516918675, -1.0322321322537737, -0.2777358626168219, -0.7012806564167319, 0.7963009592329217, -0.04974629953501931, -1.0322321322537737, -0.7915098544261658, 0.030889303741023066, -0.27744507021809695, -0.3847424801002542, -0.8695808257189462, -0.26440753433854874, 0.7220028009515246, -0.8999751410485344, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, 0.37672848106450185, -0.7299446168925484, 0.5264248482147316, -0.5604166860737635, -1.0019456435119605, -0.8398413803921434, -0.17924450188833868, -1.0322321322537737, 1.6931042225011992, 0.47548945718789404, -0.6242484192212299, -0.476737856708245, 1.2824201530791166, -0.09873307660744708, 1.4822036774923686, -0.715097848000065, -0.2118164641766563, 0.9979058707760841, -0.19178400737460155, -0.33271696778156534, -1.0322321322537737, -0.06132740139714054, 1.2473304345587004, -0.650330247845361, 1.5668241831210312, 0.5387590933254677, -0.5821458988062138, 0.6947180855502261, 0.5918924431065197, -0.7330684309576456, 0.2835272512507967, -1.0322321322537737, 0.006033351715319456, 0.2999971097646811, 0.18519616006482334, -0.528234520737042, -1.0322321322537737, 1.0686723310667186, -0.9225729817410812, -0.3958397245055007, 1.2430095017719505, 1.5972061795320602, -0.6243254639627461, 0.9397147603166974, 1.0258878616882958, -1.0322321322537737, -1.0322321322537737, -0.21101272684109615, -0.17260934282835763, 0.5987821382162771, 2.3429043516918675, 0.8776325196071882, -1.0322321322537737, -0.19188824437783394, 0.24731811795658648, 1.2791534560388513, 0.10852807257407651, -0.8904758231225051, -1.0322321322537737, -1.0322321322537737, -0.20242203216009463, -0.6759327510562329, -0.8964327000543694, -1.0322321322537737, -0.6338417667522459, -0.35418826603172, -1.0322321322537737, 0.5828430232105299, -1.0322321322537737, -1.0322321322537737, -0.8097205120943409, -0.37895617281003446, 0.583398239754199, -0.4771600371715134, -0.18150236601911324, -1.0322321322537737, -0.09458502068455099, -0.3044478101055234, -0.11203487183035667, 2.3429043516918675, -0.3202366260647198, -0.7887922556706807, -0.3735845887113119, -0.2307214309271999, -1.0322321322537737, -0.37108145861997716, 1.152405215352491, -0.9877502425885574, -0.14046100301719266, -0.2785617657657149, -0.686220490070408, -0.4616512603075458, -1.0322321322537737, -0.5329049976879706, 0.9121057153938947, -0.8949065034655153, 1.9227166692024202, 1.301028559375424, -0.9491571874003316, 0.5289082433161235, -1.0322321322537737, -0.6131290090026493, -0.7210403665937379, 0.16475680814661658, 0.6022200641045349, -0.976045065732275, -1.0322321322537737, -1.0322321322537737, -0.8173991535972998, -0.7005146998447953, 0.2020339381197416, -0.07297870873495997, 1.1387199268386532, 0.4042480387260325, -0.6807029329667703, 2.2202649441509044, -0.261642987731212, -1.0322321322537737, -1.0322321322537737, -0.3992032424776236, 0.1183886458770058, 2.3429043516918675, -0.9785545664349233, 2.3429043516918675, -0.23577622517698413, -0.9788164413053337, -0.19688659408436351, 0.279578770048701, -1.0322321322537737, -0.33097674543282224, 1.508920321826273, -0.8179003976215151, -0.8496193056996245, -0.8262110326070848, -1.0322321322537737, -0.5410937413003988, -1.0322321322537737, -1.0322321322537737, 1.9462371515749164, -0.3481264928902882, -0.5645909042484571, -0.33022187176755474, 1.90539008964304, -1.0322321322537737, -1.018608066241674, -1.0322321322537737, 0.744067920516902, 0.2677644739422022, -0.060661520588383325, 0.04863777536089659, -0.3174860051914161, -0.14538890004565663, -0.3789636712822031, -0.17845155905667173, -0.6132009448949954, -0.7352191328570405, 1.683893626653974, -0.40829270915904636, -1.0322321322537737, 0.13752474685209526, -0.5337738316500489, -0.3660504781993884, -0.3854350587659657, -0.8772112421577636, -0.7334132370762263, -0.5593940922318258, -0.1370229123273453, -0.5114086907971178, -0.0540560258139057, 0.0008748148670646192, 0.8886671394097087, -0.5874766945123697, 1.930552655019737, 0.08643098150099003, -0.6067796570934163, -0.7856673703952739, -0.3301363397443566, -0.6802330424443168, 0.3469942372877628, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, -0.6044993387465297, 0.5655167732543152, -0.3340977578709552, 0.36720196057666193, -0.0004403017902540436, -0.40092702586814877, 0.27943003661722005, 0.015381144883002915, -0.7794673287230749, -0.03201142404599983, -1.0016498272398815, 0.7282013182090521, -0.6887963388616224, -1.0322321322537737, -1.0322321322537737, -0.389464333945659, 0.12256339965685496, -0.8566090559723611, -0.22633358869648107, 0.017377716098966406, -1.0322321322537737, -0.6879531727465842, -0.6597047800703926, 2.3429043516918675, -0.5197974211343152, -0.9825060913163096, -1.0322321322537737, 2.3429043516918675, -0.47663456731413767, -0.2796366017104558, 0.3217621256417188, -0.0033730284162351164, -0.34831226547825267, -0.4105655290337645, 0.16073655585376612, -1.0322321322537737, -0.6677003762238767, 1.1943605679510896, 0.7738935467731552, -0.2683021254219767, 2.3429043516918675, -1.0322321322537737, -1.0322321322537737, -0.2668034197977023, -0.9147712437533823, -0.8822480215341642, -1.0322321322537737, -0.9036571998864497, -0.7694791989924844, -0.2697156286262117, 1.3362951099977542, -0.5896521990504776, -0.9071147474635595, -0.160021220874183, -0.5299166093262754, 0.7428508608033342, -0.7594426381957698, -0.6656187261890704, -0.6542298241767699, -0.7786688856384725, -1.0322321322537737, 0.14284124602065415, -0.37825716688246375, 0.314627535374972, 0.010706712694007107, -0.19704595721815474, 0.8706490523949262, -1.0322321322537737, -0.46082263793248335, -0.0194141556038002, -0.7502059624975365, -1.0322321322537737, -0.9433889361838925, -0.0037297414494120024, -1.0322321322537737, -0.26319813789872754, -0.29419055938478234, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, -0.6345364878385781, -0.45866431395972923, -1.0322321322537737, 0.018410527639247484, -0.4630365412401588, -0.13784889787702964, 0.6528578234668214, -0.3525745289003335, -1.0322321322537737, -0.2555111327152724, -0.11371807283029874, -1.0322321322537737, -0.7734297814147996, -1.0322321322537737, -0.12905796926888335, 0.8867079781537933, -0.26620931007970644, -1.0134764538525551, -0.7751680467447059, -0.23300170807368814, -0.4225560392362329, -0.2478719199917951, 0.2572648000882669, -0.9749020791816198, -1.01351138921379, -0.6049225904201083, -0.14287147341672374, -0.26107046702099584, -0.77951122774558, -1.0322321322537737, -0.3062468666205116, -0.23251076414860303, -0.8994786762703175, -0.7672643068752915, 1.3205631505857693, -0.49758925379217345, 0.29873728403950417, 0.3726885349821072, 1.4583094251225293, -0.15350101092052942, -0.9797689172224225, -1.0322321322537737, -0.18332309394267923, -0.08306983945688183, 0.10912976316503419, -0.9970745772804634, -1.0322321322537737, 0.5367422515144068, -0.13616956971436334, -1.0322321322537737, 0.34875621344587493, -1.0322321322537737, -0.5878220362361058, -1.0322321322537737, -0.06616918959685321, 1.407428418619121, -0.9337149285765652, 0.12350177988827303, -0.11959382618139201, -1.0322321322537737, -0.27750159716213624, -0.27750481079306744, -0.9519793733624142, 0.1904933774478084, 0.04092390751889889, -0.5724477786668161, -1.0322321322537737, -0.8335342794895543, 0.08353154479540725, 0.36348881603956673, -0.09729542997084586, -0.5981199105478276, -1.0322321322537737, -0.678017449920383, -0.8530222112508336, -1.0322321322537737, 0.2107800406964606, -1.0322321322537737, 0.4280537926441166, 2.3429043516918675, 2.3429043516918675, -0.09453879383964317, -0.04972841856292603, -0.7696410959506587, -0.5913524982149788, -0.047783512644209124, -0.7408613623605854, -1.0322321322537737, -0.3971843406467366, -0.02569359044011409, -0.5342530334621183, -0.6530242593738315, -0.8955989173296414, -0.04656068487512335, -0.32214758285669376, -0.8882099970150994, 0.19789280386346297, 0.14309916050294433, -1.0322321322537737, 0.27394436862050026, 0.014930989350486699, -1.0322321322537737, -0.7729018807340282, -0.803643721408369, 0.6149832877439779, 1.0181766306716762, -0.3086727459683475, -0.6682082123115365, -0.4451507898990395, 0.6453888507818131, -0.5685473783274773, -1.0322321322537737, -0.35928158265226506, -0.2866254249742722, -1.0322321322537737, 0.710753939087035, -0.37910754306689537, -1.012745723619654, -0.02196075211347463, -0.9172842722399838, 1.5371023818640468, -0.445941919913257, 2.3429043516918675, -0.4766752321055155, -0.029165877459085145, -1.0322321322537737, 1.255602320571328, 1.604586324162141, -1.0322321322537737, 0.13093251860529925, -0.5610943501959307, -1.0322321322537737, -0.9062640107756582, -0.0781978925669038, -0.5109583704630175, -1.0322321322537737, -0.9091887033243131, -0.7708950300191268, -0.977539192962478, -0.9526905231068631, 0.14264488493077823, -0.06569925787400138, -1.0322321322537737, -0.29093259682857187, -0.4409170371513557, -0.2268367279389398, 1.3152822485598146, -0.32864472058828914, 0.07159653152706291, 1.69161112013086, 2.1404713121784043, 0.5352901847390106, 0.21770978259165086, -1.0322321322537737, -0.134621011610293, 1.4801990309986814, -1.0322321322537737, 2.3429043516918675, 0.050815545920811875, 1.8055743833684148, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, 0.8207187862418999, -1.0322321322537737, -0.7952748702624982, 1.0297699278511778, -0.6402407239389041, 2.3429043516918675, 0.6549664597613534, 0.11909564468149712, -1.0322321322537737, 1.118366271745234, -0.8816515015929675, -1.0322321322537737, 1.0819761039086617, 0.46026162582788466, -0.33510321234793866, -0.7128324441967234, -0.8933999594658077, 1.0258804456169235, -1.0227733362052465, -0.7203472935232671, -0.1503353372525586, -1.0322321322537737, 0.36957905865500335, -1.0322321322537737, -0.046409479419847244, -0.6473231957040374, -0.7305974371756064, -0.04627936856759579, 1.7241459196615037, 1.414693696543666, 0.15872869572914766, -0.7365720302779794, -0.20661153568190416, -0.8973249976422732, -0.6208358727772334, -0.12352401440742403, -0.8403331895255522, -1.0322321322537737, -0.3402484002677136, -0.6601278257419887, 0.5672898735194929, -0.5425610522225089, -1.0322321322537737, -0.09084987513570571, -0.9508098589064419, -0.5591750709238589, -0.8604395186385861, 1.6654368378169062, 2.3429043516918675, -0.02511200564265723, -0.5312553750112042, 0.3572476151712281, -0.04402199884157611, -1.023150483347593, 1.6169677025265166, -0.6624917808938368, 0.6158076252777942, -1.0322321322537737, -0.1140873931848198, 0.4040547264654984, 0.7053619607920285, 2.3429043516918675, -0.6699303476862003, -1.0322321322537737, -0.7164521050340898, -0.21107180820972887, -0.5855635952997781, 2.3429043516918675, -0.11126879165723232, -0.7161644026651031, -0.26962490535304867, -0.9658364984300868, -0.06369222175731694, -0.8526476996463522, -1.0322321322537737, -1.0322321322537737, -0.8406097265870787, -1.0170118817667229, -0.5026247662563804, -0.4151379490409451, 0.2783982962872539, -0.30020713569122215, -0.28763409308218013, 2.3429043516918675, -1.0322321322537737, 2.3429043516918675, -0.7221686394527813, 1.2540754338758355, -0.8421123050486199, -1.0322321322537737, -0.7410340332224534, 0.5183335847404958, 1.8696472624367868, -0.1023229495581237, 1.3101389558582819, -0.39746643976179497, -0.9526969246184748, 0.22367197437466774, -1.0322321322537737, 0.2954992624752188, -0.15260506709753452, 1.3205985829267908, -0.6689825737643658, -1.0322321322537737, -0.31964004432292864, 1.1041045072831197, -1.0322321322537737, 1.0589060242710626, -0.5573067153419012, -0.5370638893151543, -1.0322321322537737, -1.0322321322537737, 0.552644286163278, -0.20685354681114135, 0.28210863919738827, -1.0322321322537737, -1.0322321322537737, -0.8808029588261815, -0.42184084155282425, -0.5792086813370131, -0.6649441520966426, -0.4398303766928099, -0.2706992468930278, -0.8969324299640121, 0.4767149217823579, -0.8701729063174158, -1.0322321322537737, -1.0322321322537737, -0.41797055870335026, -0.9167062821771272, 0.5429158837324253, 0.2156934351853516, 0.9953423821038261, -1.0322321322537737, -0.15863573393959013, -1.0322321322537737, -0.4039187102615658, 0.9978608799430739, -1.0144520097167764, -0.6219181247933494, -1.0322321322537737, -0.48450170063123305, 0.25005934513948413, -0.9080242050166183, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, -0.5502972506794236, -0.5452059116779148, -0.48667118991144676, -1.0322321322537737, 0.7274320244049965, -0.001093987281637628, -0.21501419175312778, 0.18086575118687592, -0.1861101359665211, -0.7576522749644481, -0.5709680664253497, 0.01947209705630674, -0.9761018398786969, -0.16443576096185494, -0.41292375733049363, -0.6671618870411962, -0.9009633222592688, -1.0322321322537737, -0.3567734261125559, -0.35754642795229713, -0.9855961519565475, -1.0322321322537737, -0.0503499677450107, -0.7869224580748448, -0.690970504386843, -0.4858337506515268, 0.03757159605463044, -1.0322321322537737, -0.648592209117636, 0.1891584846001541, -0.3313187911248371, -0.5083471717315778, -0.16301055684500132, -0.10968611962482966, -1.0322321322537737, -0.7592699467337036, -0.8875005364869082, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, -0.962209895325905, 1.5337735546258002, -0.7423947381185356, 1.7761734507996223, 0.8696727677986912, -0.9180575315822056, -0.20254373813145682, -0.7065392278277656, -0.36499945608384365, 0.1610624509903402, 0.8418646425598433, -0.4225092767861682, -1.0322321322537737, -1.0322321322537737, 0.06988135901941851, 0.10793379805449116, -1.0322321322537737, 0.524746508861582, -1.0322321322537737, 0.9982949673209339, -1.0322321322537737, 0.28077992640921556, -1.0322321322537737, 0.2937709882414751, -1.0322321322537737, 0.5634546110070718, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, -0.8101330516648211, 2.3429043516918675, -1.0322321322537737, 0.07052111877677578, -1.0322321322537737, -0.8601822633626369, -1.0322321322537737, -1.0157391152545026, 0.2694054857360948, -1.0322321322537737, -1.0322321322537737, -0.9191157328668463, -0.0604808156491933, 0.14124769708356674, 0.09475395600531789, -1.0322321322537737, 0.06657494479688576, -0.9086595563315472, -1.0322321322537737, -1.0322321322537737, -0.9982088576723265, 0.25380891082711754, -0.9929767317658167, -0.5920957121680295, -1.0322321322537737, 0.8851184668555646, -0.46803942299031265, 1.7028136727496437, -0.7745333958365186, 0.13762461661328307, -0.12157746047284598, -0.7604365359615226, -0.36000555602013423, 2.3429043516918675, -0.6155944407311564, -0.9653787002240155, -0.7199120525342974, 0.09838618296362657, -0.31528244318327314, -0.8048786208936387, -1.0322321322537737, 2.3429043516918675, -0.9754084269049551, -0.14919787670508824, 0.23207347683479182, -1.0322321322537737, 2.3199708925691667, -0.9813944840176635, -0.6936438539164512, 1.3621892296152864, 1.1273690527923526, -0.4887736049461056, -0.6550371047464281, -0.6189213315507623, -0.1990560421641809, 1.5977236565125088, 0.7488806212366643, 0.1663306632941596, -0.5322358208474889, 0.6846005865745234, 0.4381503618183841, -0.8207577481220378, -1.0322321322537737, -0.43734801160132764, 0.3674051609323638, -0.1474115099122287, -0.8186779521050753, -0.9510922000738293, 1.2475410509857747, -0.8779817719737155, 0.48239810448005305, 0.27020139499631207, 0.6263794822264611, -0.43220822093349653, 0.08742448786297385, -0.5228074397041891, 2.3429043516918675, 0.5558374816961359, -0.12554044421452126, 2.3429043516918675, 2.1932503385492765, -0.1317651649242401, 0.24898409719077963, 1.7446185615001086, 2.3429043516918675, 1.518574563543367, -1.0322321322537737, -0.5713444320476747, 1.0151726273596957, -0.08762322488085982, -0.6634422740418421, -1.0322321322537737, -0.5697078286962132, -0.21497810020576863, 0.07546170552736842, 0.5028598694139735, -1.0322321322537737, 0.15373842130033508, 2.3429043516918675, 2.3429043516918675, -0.17461580213949568, 2.3429043516918675, 1.2743198255176469, -1.0322321322537737, 1.8120576777667752, -0.0488010800377681, 0.6994146011517633, 0.9743535816974681, -0.5641532324360925, -0.8673968235990532, -0.5277940884981088, 0.8483566714422719, 1.3827820118101837, 2.3429043516918675, 1.3076476502807557, 0.4266101307496164, 0.17048135604243375, 1.8127389675238372, 1.4716489599086657, 0.38378973462542415, -1.0322321322537737, 2.3429043516918675, 1.0335277336181177, -1.0322321322537737, 1.5723269080819238, 0.15123912284587648, 0.5998100057089675, -0.5320291596584816, 0.36111831002467054, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, 0.12426291601382039, -0.6969031966859427, 0.5438391022179331, -0.27316006417712335, 1.1539171051036423, -0.8200400372144411, -1.0319620691465479, -0.14117904352795838, -0.5216646231051698, 0.927847727702637, -1.0322321322537737, 2.3429043516918675, -1.0322321322537737, -0.3625380207937998, 2.3429043516918675, 0.9824392419177687, 0.9525556055032044, 0.8267010838184247, 0.2821737358239129, 1.9678027575327368, -0.6249739170037719, -1.0322321322537737, -0.7262361898008524, 1.448202473448339, 0.33666719309529397, 2.022101584130901, 0.4361579106420705, -0.2216276794045378, 0.41802578092968595, -0.9498156933381113, -0.06426647288418579, -0.32559514963774533, -0.7551365787521712, 1.3766304630047, -0.010204630966876413, -0.8602384401033092, -1.0322321322537737, -0.6746945143388435, 0.9435917176304128, 0.6080751348565672, -1.0322321322537737, -1.0322321322537737, -0.5756622336042848, 0.4360596888967369, 0.005627775011849606, 1.2652305236378136, 2.3429043516918675, 0.19719272672558208, 0.014256538859250715, 0.6431378259168646, 0.4045453407874113, -0.3029641838263816, 2.13009111947441, 1.806953772644324, 0.5683765751784351, -0.20327257314611577, -0.7646713805197141, -0.5916123491159097, 0.41852331691821626, -0.7918982505642774, 2.205469387351311, 1.200054627553476, -0.7797686890235117, 0.40299554667144327, 2.323378330163994, -1.0322321322537737, 1.19275490609742, -0.647315120426317, -0.08321041520984747, -0.16818170101459343, -0.3594799625615686, -0.17051018262502982, -0.9410976276312314, 2.3429043516918675, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, -0.9330311255953149, 2.3429043516918675, 2.3429043516918675, 0.14719868235872677, -1.0322321322537737, -0.9209895578014436, 0.7726341330519418, -0.5985028270332013, 0.4324348780098007, 0.11557185716686913, -0.6193496508731147, -1.0322321322537737, 0.12670321550044455, 1.2591872494744207, 0.3672540378778791, -0.8651204501901354, 0.14500591485447026, 0.3140510594266887, 0.15418099595988932, 2.3429043516918675, -0.9672073386237157, 2.3429043516918675, -0.17487091499482518, 2.2781518308822943, -1.0322321322537737, 0.08439353949165936, 0.7828195302811302, 0.8880710520726725, 2.3429043516918675, -1.0322321322537737, 1.1875216317298602, -0.7617538980404518, 0.6870501973507621, 0.8503677451978149, 2.3429043516918675, 0.7608384595246791, 0.03277026664432147, -1.0322321322537737, -0.3065301605470727, -1.0322321322537737, 0.5370743267104624, 0.6549896967850011, 0.4583654187778643, -0.5009723831530467, -1.0322321322537737, 0.27286145739803574, -1.0322321322537737, -1.0322321322537737, -0.189357716022802, 0.7708888842548303, 1.5228500110923386, -1.0322321322537737, -1.0322321322537737, 0.03284071932238689, -0.913965940802757, 0.3343618661077139, 1.5130766178284756, 2.3429043516918675, -0.38447731434817084, -0.8566916215670124, 0.2202760728908697, -0.41159512694311234, -0.03648842393481171, -1.0322321322537737, 0.6259953297291951, 0.2323163119719497, 0.5398311276432477, -1.0322321322537737, -0.5451812738407887, -0.6762623954288896, -0.9765753508859958, 1.6639654892559361, -0.575267822208279, 1.9051221222639922, -0.3411566218088735, -0.8972226249569885, -0.2905877495095962, -0.6889418380619772, -0.22707470142931177, -0.8965655301327903, -1.0322321322537737, 2.00175056586286, 0.42006338774059926, -1.0322321322537737, -1.0308875769474983, -0.7660409435010509, -0.2723235313259267, -1.0322321322537737, -0.327271181768689, -0.12200231896188952, 0.20816340351268395, 2.3429043516918675, -0.6863052804864723, 1.8133714760114048, -0.9675447389710198, -0.8191288492447274, -1.0322321322537737, 0.16123367983832607, -1.0094348842170344, 0.9762605008505768, -0.08524233636604095, -0.9071399930065346, 2.3429043516918675, -0.4802286427052569, 1.0060849734957238, -0.5503689805697864, -0.6079730265789811, -0.02571484984472841, 0.8949436078174791, -0.9254235444762755, 0.3503516576011978, -0.7713126372383806, -0.5880917752322046, -1.0322321322537737, -0.22029394016798304, -0.6268810009584701, -1.0261062796206057, -1.0167739932521689, -1.0322321322537737, 2.3429043516918675, -0.6379643196296882, -0.8799337025600392, 1.8214945461917602, 1.6812403211172784, 0.8690573986760811, 0.5288414986737442, -0.5233740687577016, 1.0884450605690321, -1.0322321322537737, 0.38455474358823355, -1.0322321322537737, 0.4744782346553994, -0.4596887618195108, 1.646593918863546, 2.3429043516918675, -1.0322321322537737, -0.06579484279395686, 1.1045334858118132, -1.0285348337754352, -1.0322321322537737, 0.7402522693932339, -0.1292948715489404, 0.8852771707830113, -1.0322321322537737, 0.6099210774228144, 1.6157986000745026, 2.3429043516918675, -1.0322321322537737, 0.8505725935693781, 0.6490848559539576, -0.3495659111439413, 0.5671825876869188, 0.45841782568226047, 0.4912359191394584, -0.1257711664351035, -1.0322321322537737, 1.015006177757711, 1.64746489524624, -0.2592253484626826, 2.3429043516918675, 1.925648819022848, -0.6263967314976263, -0.6605618307190628, -0.5294763006885321, -0.6475171259705162, -0.5582703926167969, -0.7401915469139578, -1.0322321322537737, -0.3782910748088094, -0.573842576891029, 0.3828651977272272, -1.0322321322537737, -0.3239670747683621, 1.0724963870712827, 0.26184784979775527, 2.213789560228678, -0.6899328930003693, -0.09889845499913039, 1.0683516271801092, -1.0322321322537737, -0.9233566544835264, 1.2096683280803755, 2.3429043516918675, -0.628838761400903, -0.6595220563117713, -0.6988531496532328, -1.0322321322537737, 0.32241754154975505, 1.5855955781860183, -0.5423412481070077, 0.040856998074930054, -0.6561142479133748, 0.0893574456666911, -0.6494811900736184, -0.8650231863540206, -0.07072059740180454, 0.8912098630821143, -0.3010090602093315, 2.3429043516918675, -0.529815956757547, -0.31731172751408177, -0.3314183312828597, -0.9962351732766335, -0.5988949312070014, -0.6507151831501647, 2.3429043516918675, 0.8725734405161715, -0.3588356295601968, -0.7893266866143025, 0.3067585892404292, 0.5421950415946987, 2.3429043516918675, 0.48649078707001614, -1.0322321322537737, -1.0322321322537737, 1.3994296088347078, -0.43381895043593643, -0.598583703411595, -0.3868590680713201, -0.9273337493610111, 0.896288553561884, 1.8536232746141792, 1.503504941706036, -0.6916988655969432, -0.7790714959133885, -1.0322321322537737, 0.8690536082395968, -0.7434086180766065, -1.0322321322537737, -0.9989157225755361, -0.6831265462927968, -1.0322321322537737, -0.9229810613686367, -1.0322321322537737, 0.26742440586922755, -1.0322321322537737, 1.0242121591605244, -0.3480211434763555, -0.5844961754264131, -0.2795962253218505, 0.10646689913635016, -0.14516633550358957, -0.43889212006257383, 1.5654075486866563, 1.9573355495912659, -1.016076487276534, 0.6086888559633159, -1.0322321322537737, -0.5011716694710745, -1.0322321322537737, 1.4424088736879295, 1.8793814329231506, -1.0322321322537737, -0.7236105297302303, -1.0322321322537737, -0.7504260756160112, -1.0322321322537737, 0.7643681798964149, -1.0322321322537737, 0.35629094196374594, -1.0222979660300542, -0.17771275354605362, 1.57107491043209, -1.0322321322537737, 2.3429043516918675, 1.0266906102143392, 1.7735254189136829, 2.3429043516918675, -0.563693806814358, 1.305240393512149, -1.0322321322537737, -0.746302513328854, -0.0333855396711531, 0.27035441326903226, 0.18136922003250708, -0.7956265568473, 0.053887777089450285, -0.002977669411105337, 0.2123681511812088, -0.3769659052547369, 1.168359656905745, 1.3768798078045115, -0.8073659094325067, 2.206918982102912, -0.35536972860269056, 0.7095238600481595, 1.7464877410899968, 1.714631100086282, -1.0306590734326448, 1.1942089504918498, -1.0322321322537737, -1.0322321322537737, -0.6013315638583322, 1.808289324698323, -0.570035289447853, -0.6765452361510852, 1.0310377464532738, -1.0322321322537737, 2.3429043516918675, -0.5679427213079657, -1.0322321322537737, -1.0260338531860387, -0.6228039333187998, -0.39436726353382395, -0.3297279614139193, 0.33337997825755045, -0.4077845434682146, -1.0322321322537737, -1.0322321322537737, -1.0232067399140334, 0.04478075903910637, -1.0322321322537737, 0.21223960594402727, 0.8960199269764918, 1.3039897142750105, 2.3429043516918675, -0.28235005982608546, 0.32179178992722224, 2.3429043516918675, 2.213221324359701, -0.3050500775020344, -0.14804541921327666, -0.6061081318303323, 2.3429043516918675, -0.8417395650611906, 2.1981139629591495, -0.13364728143863788, 0.6231963395903605, -1.0322321322537737, 2.3429043516918675, 2.3429043516918675, -0.011327918577939572, 0.16776221227207738, -1.0322321322537737, 1.791809166085307, 0.19268630975364764, 0.06106142533211347, -0.2221289234287476, 0.17534366203961796, 0.7647412906874136, -1.0120704890333698, -0.2728274121755213, -1.0322321322537737, -0.6140062478456201, 1.240447990718733, 0.22508761999952578, -0.5499161058111008, -1.0092675642566664, 0.1224655075146866, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, -0.9727845487514829, -0.717873415713471, 0.2470041709350119, -0.80990861250471, -0.6956196601325657, 2.3429043516918675, 2.3429043516918675, 0.5838374359812326, -0.3238410015549759, 0.09627490984371664, -0.9970063906242022, -0.1860709131890221, -1.0322321322537737, -1.0322321322537737, -0.35883093271499183, -0.9707645911604343, -1.0322321322537737, -0.271367517324789, 0.29897542233146546, -0.718853037541825, -1.0322321322537737, -0.033845830501211094, -0.3123068681448984, 0.7951371304316772, -1.0322321322537737, -0.7682439287036454, 1.237346095264591, -1.0322321322537737, 2.3429043516918675, -0.9859656268125522, -1.0322321322537737, -0.4207124038921948, -0.1480792859392281, 0.21060139577709552, -1.0322321322537737, 1.9582683265687626, 0.9288442828939627, -1.0322321322537737, -0.45482905144730823, 1.4319492466194206, -1.0322321322537737, -0.9505947413360458, 0.14267669163689797, -1.0322321322537737, 1.1955433489347422, -1.0306436615874388, 0.18842931998232273, -0.37984041572041555, 0.06534865619449463, 0.40468674054831094, -1.0322321322537737, -1.0322321322537737, 0.9153514826327316, 1.254386249667277, 2.3429043516918675, -0.07641037216294488, -0.06571104118741138, 0.7089221694572017, -0.857962715600636, 1.0589646936357249, 0.07770308949953686, -1.0322321322537737, 1.4142251656342943, -0.5245815287788809, -1.0322321322537737, -0.33658881624610726, 0.3236875025724741, 0.546293986644928, 1.0355758877305434, 0.1778043969229221, 0.19121265397047177, -1.0322321322537737, -0.48014768392607055, 0.060414331904168186, -0.8077470543008286, -0.8927351910677549, -1.0322321322537737, -0.5763573666945818, -1.0322321322537737, 0.15006944358832291, -0.69302030651513, -0.8678885606317684, 1.3914474440104905, -0.8573615194144332, -1.0322321322537737, -1.0322321322537737, -0.7723803661147197, -1.0322321322537737, 0.574313881921943, -0.3020826601421747, 0.3675955067643408, -0.740742066612426, -1.0322321322537737, -0.36695177807393486, -0.6520089580020798, 1.6072275991830451, 2.080471339509653, 0.37775272292230416, 0.6340130916960101, -0.7167290128991849, -0.9508631773696046, 0.2644359763071346, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, -0.9722171523405855, -0.12333482218654661, 1.5215706563792133, -0.30727053167276075, -0.1151226767488827, 0.8815305715239283, -0.5580541729357942, 2.3429043516918675, -1.0322321322537737, -1.0322321322537737, -1.0322321322537737, 2.3429043516918675, 1.148582148157437, 0.07337696546282192, -1.0322321322537737, -1.0322321322537737, -0.9215389547891061, -1.0322321322537737, -1.0322321322537737, 0.08731036276458055, 2.1071639228119823, -0.7504113258740528, 1.1131422262664976, 0.2723169529574617, 1.5659436482463414, -0.4134017643310645, 0.4489753540033469, -0.4881919377478595, -1.0322321322537737, -0.2050570447207331, -1.0322321322537737, 0.5386750445165412, 0.39040075025303206, -1.0322321322537737, 0.478818119624551], [0.55968503771234, -0.3461601523157198, 0.114747069315916, 0.014006962386735195, -0.38497368065293647, -0.4962786211043384, 0.9007661212188562, -0.5854718225912112, -1.4450551623071204, -0.9174028575147665, 0.09441243756042113, -0.21206105128929542, -0.9092106876319752, 0.5316400267679127, -0.7697577998456777, -0.1702370799532027, -0.08695422449020698, -1.5438914716390233, -1.5438914716390233, -0.10238339289212733, -0.4739349152430863, -1.5438914716390233, -1.3703710164263125, -0.6988466658155935, 0.38267499854049775, -0.64265497480017, -0.7615647659193177, 0.12784262884771397, -0.14880442163070454, 1.0960978010429254, -1.5438914716390233, 0.43323260706238476, -0.04390619143190089, -1.5438914716390233, 0.34456399522747194, 2.2482644164070424, 0.35088775729747873, 3.737562168905243, -0.442401587603434, -0.9090930625008325, 0.7128797320168572, 0.07033085206815581, -1.5438914716390233, 0.2423264431909691, 0.21770638574674175, 0.3168567677154722, -0.08507567856621726, -0.7851145037936459, 0.4751315773802359, -0.5184745179124495, 0.6244756327197509, 0.6117004605431979, 0.08803268546716657, -0.6998522397207518, -0.26405470022222666, 0.13504391356601378, -0.31983954192264163, 0.44212004400338994, 0.2442131687274052, -0.3067208260232049, -0.16571513673828542, -0.4924878891600934, 0.5463582601215785, -0.4283184838756109, 0.16403510982098082, -1.289370157630943, 1.172181330286381, -0.2408732177168457, -0.3411799203920079, 0.32940901665132477, -0.2702053079610858, 0.5156008436065469, -0.3957931190133726, -0.2242925672524766, -0.2311624048578527, -0.031063508651183458, -0.08658902207520104, 0.16257072878088502, -0.9701891224146406, 0.05368983375979083, 0.45637515000427437, 0.1498903709852586, -0.46893786327124354, -1.4140560944070342, -0.3246039933658137, -0.12166412190552732, -0.5215683699171476, 0.41309186668368647, -0.3252400446381257, 0.13646405557539243, 1.2734981574961632, -0.6182039242779629, 0.9580570484622739, -0.7167578281698279, -0.8389111236397611, 0.0057995853371382786, 1.4790232473137577, -0.15727089654507775, 0.849242627193062, -0.2844907130897769, -0.727802436284245, 0.21901293482830037, 0.11323211292560692, -0.4705623803860539, 0.016642180065212946, 0.06826889849600444, -0.49635753708360303, 0.18609552459752865, -0.9362593987388764, -0.20150140202849118, -0.7521843057180582, 0.01394717057178655, -0.9605654627502704, -1.481919861976407, 1.1677012067801873, 0.992591372224453, 0.04159449106302871, -1.5438914716390233, -0.42017550687332883, 0.252875032694095, 0.04542704271599336, -0.32213812822678634, -0.758372297741984, -0.7713824321662969, 0.3518151640611327, -0.22606673671337416, 0.18950319722635495, -0.38271967899693493, -0.3285555526196329, -0.5907896075357256, -1.5438914716390233, 2.8934667165521057, 0.6850259627156197, -0.6302886104373808, -1.5438914716390233, -0.7676964799054742, -1.4305979925173515, -0.7529186275455761, 2.1872345998335154, -0.9814283131407138, -0.12436143551513884, -0.07741668116817049, -1.120421904167389, 0.892859546536946, 0.3262532991271101, -0.8663864994608464, 0.1498089204781916, -0.3749746228594511, 0.6011810181097843, -0.4704748239711005, -0.8650631879340536, 0.07523470254040117, 1.1959432196582567, -0.2505967032148462, 0.4067610770593201, 0.45224755627407537, -0.028052028800025733, -0.3922303793654364, 1.8229789461701644, -0.20312119570512688, -0.12899708686368488, -1.1617436069770453, -0.5444284282150054, -1.0952031221330116, -0.3843000722868405, 0.7888551982113272, 0.8876057008165045, -0.6209374701145505, 1.473710646630653, 0.05634786218848098, -0.9282966036221016, 0.5948585233036767, 1.738408435378309, -0.19330312623781726, -1.5438914716390233, -0.9973091459174074, -0.08966997102927851, -0.6809579685941417, -0.6332526830980792, -0.18309335701939672, 0.7439300016987472, -0.07577303988904048, 1.3034701008044167, 1.0901082510252587, -0.3888562316270749, -0.003031285551576208, -0.5394690485427509, -0.10383129950151823, 0.5711095369824257, -0.9415127836360795, -0.5736162807861888, 0.17035530051090356, -0.8027176634171205, -1.4022941429212212, 0.04434940757721269, -0.6899538718044621, 0.08532868992062567, -0.7069922925514864, 0.6215706030362449, -0.09595513915322353, -0.5612454809997506, -0.422575359083716, -0.5610480182428658, -0.7542688396288046, 0.8149843365496027, 0.11500697362135658, -0.8415692672742597, 0.43800973114456426, 0.905266290535839, -0.423782946375217, 0.33567978404912097, -0.2543324819881294, 0.4726846059939071, -0.38124193408297585, -0.8713783095683756, -0.6853747289053062, -0.7577626285999682, -0.46230281510491067, -1.5438914716390233, -1.1508742556997937, -0.5329811181947032, -0.2505305750803935, -0.25923518040228044, -0.5110288816729449, 0.8026987890619328, -0.5905787233020809, -0.6555103302198907, 0.08489102305166725, -0.33546870760924885, -1.4447486500515159, -0.2586286218171104, -1.090220614894569, -0.8751148947823233, -1.0953104075427822, -0.6464615475431722, -0.46041770244980396, 0.3730550830649211, 5.0, 0.6828829042538272, -0.8607948703079813, -0.7399370065590278, -0.4434504212899283, 0.14941042358434586, -0.7964415965520986, -0.16460996741111786, -0.05846636241541232, -1.5438914716390233, 0.4820699624420543, 1.1042691186742595, -0.31071466580897844, -0.4015634323762286, -0.09144529254826649, 1.503846412599514, -0.2058423569172327, -0.8166764600768713, -1.5438914716390233, 0.25191467706902737, 0.7857778206373384, 0.019201592321271384, -0.49309018513032343, -0.7973827128070379, -1.5438914716390233, 0.10701468581744335, -0.6176952906305724, -0.228754142623398, 0.07973659994452177, -0.1073319432183245, 0.9043319714236377, -0.40757867328933683, 0.2606620237461072, 0.9598961939995295, -0.044970347491009394, -0.230185920419502, -1.0983969727800533, -0.6811261690755014, -1.5438914716390233, 0.564220229595304, -1.097024266762588, -0.3460633794360345, -0.34339095028119915, -1.0179304673289737, -0.5361000850658026, 0.3322319045929078, 0.034717971520719176, 0.024096111122976292, 0.5151287302006505, 0.1320048995264649, 0.5090956323871257, -0.8617277493475661, -0.14559720710979954, -0.3024401237726469, -1.264836014918888, 1.0649622790622675, -0.36805144496443853, -1.5438914716390233, -1.5438914716390233, 0.20733302427932723, -1.5438914716390233, -0.835239284090558, 0.13324912226527616, -0.7833322123232025, 3.1650104953026243, -1.5438914716390233, -1.2867224401221717, -1.5438914716390233, -0.43987166803451777, -0.1333032495980625, -0.9430749744081426, -1.2045493046158051, -0.5948672595476592, -0.8634613087607388, 2.04010410891099, -1.5438914716390233, 0.3095964976228919, -1.5438914716390233, -1.5438914716390233, 5.0, -0.30093403822963993, -0.5839967274108631, -0.09443776344091717, -0.7920002974035877, 0.3770288770399056, -0.18782727892314466, -0.16560085257560941, 0.3616181415674451, -1.5258946321645976, 0.39173962201597357, -0.5311379404541287, -1.0467487396644064, 0.021432437609638262, 1.6042164784697126, 0.17759863534954004, -0.26912168212022747, -0.011549257462639344, 0.14110005254136848, 1.757029841545945, 1.0470155181130043, -0.4403971217300468, -0.03670029848123511, -0.9692710473215311, 0.3749128919432618, -0.21947431469642975, -0.08836745415103861, -0.3760717277799774, 1.0136443121999954, 5.0, 0.3773042189237731, -0.10471239352989126, 0.808298252209818, -1.5362974215158838, -1.5438914716390233, 1.7491734965968264, -1.5438914716390233, -1.5438914716390233, -0.0459441821957488, 0.5258248983452998, 0.14307364325790178, -0.6733466664010833, -0.46918521014348535, 0.008607611729337671, -1.5438914716390233, 0.24172587530787287, -1.5438914716390233, 0.8440429282029216, -0.24620885956178049, -0.5086263797289469, 0.07479081455774783, 1.5814186313087975, -0.6617471695068957, 2.3472842701940473, 0.9697158763481721, -0.02285993339328782, -0.3158329142920481, -0.7607949607025837, 0.838527565295714, -0.06928107733767375, 0.42896930088900886, -0.39931945362561977, 0.22659762447944826, -0.5635551270615735, -0.7768209527988031, -1.5438914716390233, 0.36883728318616155, -0.42795523995936413, 0.6529215598800131, 4.902560637704022, -1.195112652781133, -0.08227905754912214, -0.237861968277305, -1.5438914716390233, 0.945729796471693, -0.7120170515204334, 0.27123388482268423, -0.9191977640213089, -0.22160735025282552, -0.07890110801905934, -0.9151757564151968, -1.0348227495070907, 0.9490986447428328, 0.28312519803144465, -0.10506780345111372, 0.14539480990063777, 0.4649851713568483, -0.0557681271593276, 1.1358553257803141, 0.4358602211574595, 0.6969032208156647, -0.06145318822341512, -0.3253199974696763, -0.9777890192325945, -0.26907479335590334, -0.9491051344735348, 0.11489188301801588, -0.17616269074678986, -0.6096735677424177, 0.5911180210922224, -0.6654019009934421, -0.3199393101533638, -1.299680415116393, -0.10179054379824666, 0.9408736412044363, 0.19312158128011275, -0.05188338727481686, -0.6859714373937928, 0.27946199891792634, -1.5438914716390233, -0.3503773761654362, 0.5607283415199951, 0.15559709074146402, 0.3709975073135182, 0.48766758229699736, 0.6578719534991568, 0.07612224809408653, 0.3769330258066935, -0.4514695520473767, -0.2293071305073141, -1.5438914716390233, -0.041559449099532714, 0.06034953596927836, 0.25105708502572294, 0.20123932821019289, -1.5438914716390233, 0.9516253385490907, -0.7847113986674304, 0.6673022402128731, -0.6353468942967924, -0.25385092170588386, -0.3280420803282554, 0.03249000637758425, 0.18818973579624568, 0.2320272742646488, -0.6816108975174968, 0.32323237239959934, 0.9418524297589678, 0.7651340916958934, 0.02756472762483801, -1.3538579485697344, 1.889764444968804, 1.3259803942656956, -0.7293864585571429, -0.7852651353891067, -0.5454580225313712, -0.6276117458588963, -0.11431456731085614, -0.3773311576855983, -0.4008474282723659, -0.2714747607720993, 0.47747371148023815, -1.0363369570596432, 0.5949923924539068, 0.345978722563824, 0.14965569675202406, -0.3751853342843865, 0.7496421361279834, -0.32660776800434493, -0.8388085904696192, 0.507862699817614, 0.1809376453161117, -0.6798773381043242, 0.5666962328455403, 0.520302853501159, -0.004937135252331928, -0.8177342798164802, -0.09683727003387868, 0.24690817822083158, -0.14362234912936325, 0.07021368776025173, 0.21942341312630131, 0.5147013166487101, -0.09289354477508355, -0.19753083381616493, 0.9954791210365854, 0.5893675840280109, -0.1824751626475013, -0.6999103034485631, 0.8233671720465323, 0.045355039085275765, -0.37318870240601926, 0.022527123208171095, 0.1546125418964763, 1.661271003392755, -0.020351211693255024, 0.32710144429406557, -0.3568936471425317, -1.0467140627158509, 0.3363041995347115, 0.4320298584148672, -0.9142689714913831, -0.5022369503477259, 0.7908650787577454, -0.4425137980615464, 0.37156247660158587, 5.0, -1.0894581828496208, 0.25902172343544017, -0.12097069814025983, -0.21596168957547174, 0.7610622575773244, -1.0909499828722948, 0.563034070584304, -0.6945932673418054, -1.5438914716390233, -0.8357974562358872, -0.45505395038743485, -0.22616915467770757, 0.9504064610882944, 0.8853262386766795, -0.39233544706338047, -1.0049472334610963, 0.3478478216114605, -0.2341450832567244, 0.6677688237399264, -1.5438914716390233, -1.5438914716390233, 0.5216039879096909, 0.1755996993549922, 0.19232712202021995, -1.30487202089844, 3.4036759185917016, 2.252271735272488, 0.43560838125865636, -1.5438914716390233, 0.02194521866616003, 0.6746864717560996, -0.46420036998740744, 1.2933681642233603, -0.3026526784905286, -0.5340562188056853, 0.6512953146780652, -0.6546739360454694, -1.5437085460214137, -0.25222317882841533, 0.1267039346300855, 0.6252790780327582, -0.5169435479146625, 0.1760442785725013, -0.13436037810281548, -0.20337130751679233, -0.23288139073616712, 0.8790323149112409, 0.37296833309063193, -0.4730482913358741, 0.004575293203307459, -0.34818212947209787, 0.36759018030212176, 2.1204332026332087, 0.33486090115769046, 0.8052494456764938, 2.9809507822573176, 0.32265127429824847, 0.41423102172455367, -0.546564804739868, 0.9547006424185205, 0.669407971992499, 0.6920629639500735, -0.3856251695036756, 0.20789211807112976, -0.18459425830099047, -0.27028698887977004, 0.6752461415769456, -0.4403876748536976, 0.8779143577392571, -0.5343526433526277, -0.26598704725908756, 1.329124821620615, -0.4105926876682971, -0.4203204357812374, -0.5496178738881283, 0.7526630628554947, 0.9106268168355496, -0.6592122960881873, 0.3259832567104644, -0.6051566359802004, 0.07237091653656777, 1.2194364490831981, -0.1335947202952091, 0.5252099297360627, 1.0399264438528166, 0.3783850798252078, -1.5334124088417174, 0.7038863057314346, 1.016187365231154, 0.8553305629717401, -0.3500287633869477, 1.589470365310234, -0.9005213470798022, -0.20692598275809085, -0.3127619882433672, -0.03435159765011204, -0.41878405111042377, 0.09582002213660466, 0.2828361466562878, -0.2798287948167427, 2.8563248245056334, 0.6487690816950418, 0.1917603094392059, -1.2056502113280345, -0.7400156921266754, 0.5758495647940601, -0.930329870947779, 0.5384860167707942, 0.6904194378767482, -0.650226876606502, -0.23215006425968635, -0.22530591754975118, 0.2424603123411996, -1.5438914716390233, -1.5438914716390233, -1.5438914716390233, 0.22123813503201936, -1.4104672318418707, 0.49791513902081497, -0.12226664828737845, -1.5438914716390233, 1.406539208371362, 0.2507610060962065, -1.5438914716390233, -0.3613506142810871, -1.5438914716390233, -0.4526332459255942, 0.4007203756623884, 1.356773985404804, -0.5159092301601221, -0.30390692413473247, 0.3011794460006413, 5.0, -0.3121523191013516, 0.0380204612457927, -0.11303463077120776, 3.1466383945059846, -0.48899945725905586, -0.6838998065336711, -1.5438914716390233, 0.5576401345999406, -0.518127633221099, -0.03677898404888636, -0.6756967497019183, -1.232329428603543, -1.0267919253600128, -0.7143271008025868, 0.059570283876195375, -0.4705379567545162, -0.6283059760648284, -1.5438914716390233, 0.03285083097184166, 0.6167068441855852, 0.8697969564266071, -0.24423607528591146, -1.5438914716390233, -1.3457992446168439, -0.21265597408774398, -0.174520316731559, 0.021300757369780307, 0.8785606623285832, -1.5438914716390233, 0.9757363015226898, -0.8317473384123407, 0.04104092715006534, -0.09068401256140862, 0.4497141805308877, -1.5271666213035047, 0.28149169486351977, 0.052305981580292454, -0.5945829892135814, -1.5153025596688796, -0.00230111113318949, 0.6373849044581552, 0.08518975171479046, -0.5639251681205588, -0.5849046067898632, -0.20969241985318804, -1.5438914716390233, -0.5794880328640003, -0.7458062817119416, -0.5229729591422946, 0.6925929106721556, -0.49104793175153505, -0.5622537622414242, -0.7161439540157767, -1.2343472295493387, -0.18555069692854814, 0.001830975623566926, -0.039206946476703856, 0.18539207792686455, -1.029123518128479, -0.46165144145998416, 2.521650566457494, -0.10587816111266848, -0.5952272777012481, -0.6718743361601586, -1.5438914716390233, -0.5392346047211299, -0.2563484684424296, -0.48467509200683184, 0.976382145288781, -0.7937966439827462, 0.994388352435563, -0.6730349770844309, -0.37424260514811825, 0.5903643446887676, -0.6247402986687558, 0.1578527052787986, -0.005229988419190032, -0.16455271012397094, 0.5406880606068749, -0.5765214256755034, 0.40813156536495887, -1.0295680397430838, -0.18940375521554434, -0.17464796476809843, -1.4558267398542195, 1.7872711360359892, 0.22768286320163195, 0.555584862964719, -0.24172412782322078, -0.9513069478979942, 0.4061297492251825, 0.48198217561548345, -0.26637218027907394, 0.04247258974036085, -0.5034754127960767, 0.12945332126543033, 0.49523360860706006, 0.21961258106492343, 0.3905108368555891, -0.0580849159813187, 0.7242952452338323, -0.5747207588785045, -1.1565545069213483, 0.38222131806406906, -0.7167820789926526, -0.1295193147965558, 0.6740818716696847, 0.07738709267273401, -0.32354548239135283, -0.4606107873859361, 0.8293428973671022, 0.04391392961862702, -1.097114242499535, -0.09928896485838198, 0.061286850432516186, -0.285500146389541, -1.1025957060974012, 0.18555267482481766, -0.17595958290526134, 1.5563583724678098, -1.5438914716390233, 0.7769608896515303, -1.5438914716390233, -0.7621629720833245, -0.6017131343447321, -0.5759858338687693, -1.5438914716390233, -1.5438914716390233, 0.5298840598248615, 0.7238030860171468, -0.08524410945919424, -0.308934851263433, 0.1834530489530743, -1.4113477930433767, -0.46892000637082304, -0.8523293170400813, -1.5438914716390233, -0.1256664869211809, -0.24503664045368684, -0.37650927944312707, -1.5438914716390233, -0.07261812880549008, 0.5761686848854021, 1.4712662097721225, 1.031017809042928, 0.1319914204467968, -0.02683706833673922, -0.6482981585526295, -0.16326655247063152, -0.9858306727257335, -0.06175514264919279, 0.30271698272954556, 0.016232853825306513, -0.2004078684880451, 0.4217811496329551, -1.0202640185961918, -0.091424785914239, -0.21241818929766004, -0.2653263419436165, 0.2875215669143863, 1.0359274198056343, -1.0391279905949948, -1.4094504397710461, -0.9300303934468954, 0.649957775233844, -1.5438914716390233, -0.20548775343667064, -0.6769826769436406, 1.556544545055395, -1.050817463226126, 1.213627311362656, 0.656440406114666, 0.06615360463421678, -0.5083126743106351, -1.5438914716390233, 0.48067689379782014, -0.5665258240562935, -1.2650970136795157, 0.13505819908634614, -0.18799087117213867, 1.3702853227018212, -0.953086474429018, -0.09758449491202119, 0.28530685043930226, 4.619945580694239, -0.6607592796934446, 1.2500687520894933, -0.5207896938531117, -0.720003406225177, 0.5570855338346955, 1.0434784693605046, 0.20469331357429246, 0.020708138687516867, 1.0732001856512885, -0.07632614297876511, 0.919525774357472, 0.6994004219347842, 0.5061422162637788, 0.24195789980750085, -0.3956502638100276, -1.142009226288667, -0.9983925989495527, -0.35084361407506337, -0.30357397934629216, 1.0759397797928578, -0.40950433838926403, 0.5718678216182466, 0.30826195352970764, 0.1566393576968374, -0.539300272032348, 0.49597622525283275, -0.9904292854066351, -0.3959404672432748, -0.23845170681434033, 0.19999015162158584, 1.1236978871524181, 0.3036606335122872, 0.9875658644177457, -0.6732036959919299, -0.3731299474433523, 0.47880664269209344, 0.6806905377057172, -0.28169570495400686, -0.6674103414672438, -0.39519093824895124, -0.6384016915321904, 0.1416812658485238, -0.768708159718519, -0.597218725318202, 0.3398790357926118, 0.020304572738066604, 0.009449074959363367, -0.62899087460022, 0.46264280684522524, -0.4775189679657187, -0.21636156893902517, 0.07064455748646756, -1.2790416400247429, -1.1467856303345405, 0.10906373633896979, -0.2270228297235018, -0.2845062658740086, 1.3080854759305531, -0.6196176723649374, 0.09968195127090301, -0.12626578754037412, -0.6118188727174905, -0.6035535471458908, -0.11694379428725986, -1.5438914716390233, 0.2750758833519983, 0.42594791333826304, -0.4125069473931201, -0.45004629948114844, 0.10266785543243262, 0.4871189722338259, 0.8109281704210779, -0.08668637098393361, -0.5579092359725987, -0.21108122588248218, 0.4337908944135187, -0.7070776600560675, 0.27001834833035093, 0.17024620060964077, -0.9866391294914372, -0.8268917015712268, 0.4851187689753785, -1.3110969795863767, 0.20016353636435474, 0.03058231338388257, 1.04615516113028, 0.5351950476266415, -0.9777301490641223, -1.126482881786727, -0.4261666697723214, -0.230960333868602, -0.26667655402684504, 0.22142776379387594, 1.6334227639703605, 0.28519164463015306, -0.9820621178997493, -0.9467693942959408, 0.11252762940265704, -0.7647799296410515, 0.03731770580998091, -1.3667973322265041, -1.3251479120919964, -0.5312509573529016, 0.6963435509948187, -0.4254310806809043, -0.21594095252982276, -0.6451893873956435, -1.5438914716390233, -0.4695030629709286, -0.0428294779395934, 0.3218172994458209, -0.013532295055525882, -0.6120552174349585, -0.7431195670367738, 0.11915806933662024, 0.3479858381708221, -1.1245266583459217, 0.05414328382460205, 0.45000265587699295, 5.0, 0.35165802333745105, -0.05878018303953257, -0.0181035463567573, 0.38405193837144885, 0.047341532852433775, -1.0251715556543297, 0.22032754831650417, -0.4251173752625925, -0.7341824187891205, -0.02405369598769475, -1.5438914716390233, 0.23151230429775108, 0.2995711729049186, 0.007970869222173523, -1.3708047086948543, -0.3557702752975175, 1.175791189110263, -1.5438914716390233, -0.36094324653993554, 0.09498489522608282, -0.5681172771038815, 0.4204184953223367, -1.502233691882989, -0.684699450054977, 0.6980522835561196, -0.8072309661963456, 0.782317498953731, -0.5535071067991963, 0.2503320948687456, 0.7468603766602683, 0.11047731161722758, 0.4173998727110105, -1.4777376534923103, -1.5438914716390233, -0.1792492847855148, 0.3539630611669081, 0.1729866011918711, 0.26839521368524816, -0.5355101161171462, -1.198067652984358, 0.7833822310418871, 0.7421770301067332, -0.6820644627881167, 0.2149922520889953, 1.0247367883281184, -0.8716965656161528, -1.5438914716390233, -0.691338933644959, 0.13084742676194233, 0.71780017212562, -1.0052249370640491, 0.09236407827374636, 0.2563785565561337, 0.8219155788512568, 1.0514956416191976, -0.6262189076262836, -1.0250519720244355, -1.5438914716390233, -0.6431822717886453, -0.16416665545751177, -1.270395415246644, 0.20067240042337015, -0.9052256610905994, -1.5438914716390233, 0.9692087403762982, 0.7625382744041421, -0.2728810780843839, -0.5897944021533933, -0.0021649378667742874, 0.0698135779850768, -1.4411060295756584, 0.06727835894893884, -0.4500699166720255, -0.8224681441173237, 0.5702611614038529, -0.9380949152931476, 0.9577658081767447, 0.07835067406046, 0.10253571436934, 1.1980095510511566, -0.27402288285886195, -0.5656342462992856, 0.014407302573527134, 0.7230284421564298, 5.0, -0.00831715848695856, -0.6866589856627952, -0.1069267643875453, -1.5438914716390233, 1.3171484865246998, 5.0, 0.9714658525891492, -1.5438914716390233, -0.55983420983767, 0.9768878987909467, -1.5352422164081163, 0.539489689780102, 0.12060148291944982, -0.3232511315489741, 0.5363844324002955, 3.6505716448863588, 1.016043818792957, 0.775250313797283, 0.6871496666014745, 0.9385616910264286, -0.6913251665507654, 0.28863825682247096, 0.2807112907123425, -1.0050914135312448, -0.24611853820740753, 0.05607574606727144, -0.3847188454031004, -0.9436033658518079, -0.6108878369708483, 0.017267171579846665, 0.2060536637687261, -0.3110936929210782, -0.45726901247994894, -0.981997487440817, -0.41005098995367656, 0.43120175905870106, -0.3732422731072732, -1.5438914716390233, 0.7816928530565233, -0.22377080014284056, -0.7029241450188102, 0.7260749445735689, 0.992618560795414, -0.5960015759445431, 0.42145465636982754, 0.9517476871184084, -0.1155392050621129, 0.8824497800338424, 0.073874237140159, -0.5264298246516262, 0.767454106280539, 1.524599587059651, 0.12331089313902137, 0.6577650425082664, -0.1486653682190606, 0.79564174201669, -0.10341413926658773, -0.5427490731350383, -0.5071883808191475, -0.9797323108213248, 0.5573677880671102, 1.7801078692347112, -0.10663610013106338, 0.45755808325261654, -1.5438914716390233, 0.48051376237206916, 0.3660994171317295, 0.6026918270909656, -0.0699347550987854, 0.1309812959121767, -0.07368458898078394, 0.004356978194969097, 2.853073255748207, -0.3594516769288784, 0.17247704589800358, 4.415183383744831, -0.20782827465534734, -1.5438914716390233, -0.5948030323090573, -1.5438914716390233, -0.11082717226210032, 0.5161579788995903, -1.5438914716390233, -0.06225191009824411, -0.04001949304863482, 0.08436003947729949, -0.498582161258275, -0.45199454491967106, 0.782580859433447, 0.08796240992358663, 0.8074305220553085, 2.4504837907369277, -1.5438914716390233, 0.42286731000161193, 0.02490393425672828, 0.30713777524402897, -0.10627389306709832, -0.2883749921510491, -0.2981775088341268, 0.4959674696113396, 0.009663472970191513, -0.6290873594653835, 0.6706501210267469, 0.7489430672780643, 0.6292165821778584, 0.15648924452751536, -0.5483228453874827, -0.3728949275926918, -0.8934508785577919, 0.7431493671359524, -1.1344781649416809, -0.011211474030216061, -0.5736507273231229, 0.030190383221157878, -0.16555707436813488, 0.22239629903139382, 0.3502643786641739, 0.2568740567412818, -0.4258720885183254, -0.523330097150659, 5.0, -1.5438914716390233, -1.010308220584042, -0.20796755847860848, -0.6337247389010674, 0.9374847471225036, 0.415929155351411, 0.6015229489513392, 0.15669338922132986, -0.6569967155695345, -0.1259926345668829, 0.2624692572742312, 0.8344651780534944, -1.5438914716390233, 0.8577388252061949, 0.35819595300666923, 1.4019763670941978, 0.9118516849984281, 0.8969790758604997, -0.10657469543478536, -0.961394483752906, 0.5182556462725788, -0.028767226463223914, -1.1270988872482464, 1.4720998390071278, 0.36948704394976295, -0.44686247173949945, 0.2045482694605751, -0.18432260300301948, -0.278339068498636, 2.4862473604827295, -0.006847708391262123, 2.9155290898273747, -1.1800420912616387, 1.1711534640571533, -0.04786293494712923, -0.9025833006519535, -0.24781171798447255, -0.8747666276212649, 0.22068180617963642, 0.8866202303250432, -0.5895552348935977, 0.20772956267442175, 0.15598533431829595, -0.23756934552206432, 1.1668788677144817, 0.9580651128689153, -0.31047814828279363, 0.6096603960747862, -0.3356183599553322, 0.2798156807520152, 0.5652948693830477, -0.024470971428430115, -0.6882674891701352, -0.352824347551765, -0.4728836622346025, 0.2795189105876469, -0.18094292538581877, 0.2309510215955762, 0.6491481088071418, 0.04946224138725209, -0.5491350463419875, -1.155365813382546, 0.15894842772961315, 1.5941984117177168, 0.6552503301061562, -1.4184166918862358, 1.3271094111953576, 0.07073603089893503, 2.3037943076518124, 0.2921200067865789, 0.9833080881232129, -0.473671669969183, 1.016635285417126, 0.18255824543341187, -0.025118658487467728, 0.4949421379099096, 1.6031393041541673, 0.8813477212635205, -1.191061440502402, -1.5438914716390233, -0.505678954307674, -1.0991039044264468, -0.6533639307896316, -0.2636176093823157, -0.7963625653670214, 0.18052543893097675, -0.5588200530997312, -0.5609275129664988, 0.36934799053811923, -0.3361950802359341, 2.089276713195284, -0.4676805070701862, -0.6096300199465602, 1.205627419975336, -1.5438914716390233, -0.6450306913935412, 0.2777461235964613, -0.06843984451926549, 1.3084426139389138, -0.8995325356198743, 0.5304324394764117, 0.14552464684754934, -0.151629383276851, -0.4557795165734556, 1.1365864218451736, -1.2924723332553556, 0.23573747734830003, 0.8231086502108037, 0.6097832054673379, 0.08940674515288961, -0.3915837291586805, -0.6406447486363261, -0.20978228038432656, 0.5314070806218161, 0.14288482093670563, -0.7044869694228248, -0.17269914330052857, -1.241623340440679, 0.2514559275369944, 1.5513565970577885, 0.9080521974126856, -0.03666181974098228, 0.8532315131290437, 0.09542071880209486, 1.472352830964021, -0.044402382851904953, -0.5792104444668561, 0.6540259227665203, -0.06738640260040528, 0.6992225441654579, 0.7310598999354553, -0.3678272544598353, 1.9276464191332443, 0.07982646047566028, -0.38317416591402803, -0.25191892028645296, 0.45284547442356055, 1.0163581002403117, -1.0876517845636153, -0.7565915615499653, 0.16791017241752113, 2.9719591992648415, -1.154570259667467, -1.1210575810208212, -0.0722664054701561, -0.2749562803245898, 1.0219962725400753, -0.5328229406187439, -0.7360952384413274, -0.09678761633013473, -0.8061922706210601, -1.1036737444565161, 0.5153384047733038, -1.212940550136805, -0.062367922348057554, 0.05012951343384421, 0.9206476485269659, -0.18639434906895003, 0.5319503912177614, 0.506141525028923, 0.1997994860074433, -0.30116260655499194, 0.5452826986873617, 0.981335073435723, 0.4317353923666801, 0.29026657572898285, -1.0583576258320389, -0.2057633257321555, -0.9926785060215615, -0.38529948268121234, -0.5860901897718198, 0.09948863592315367, -0.22937579316956488, 0.2027781322029963, 1.464781966009971, 0.07104835384753891, 1.1155655090845755, -0.3360538379139142, -0.658961147424244, -0.8094762698137618, 0.8681481308860597, 0.6317750727874437, 0.5173565801379764, 0.7033810130525071, -0.72766776069335, -0.34146459394641615, -0.00010828376184098723, 0.023811437568567996, 0.09297916208879625, 0.6607576286067258, -0.7265533749014504, 3.9302544836416677, -0.8068725609240857, -0.045369881237140725, -0.7229564767310978, 1.0548131080994605, -0.586777162011775, -1.5438914716390233, -0.2121951508511472, -0.08882136503908836, 0.485163929652565, -0.514926985431315, -0.14580066056875832, -0.047641624587754276, 0.4207226386584906, 0.17873479503937065, 0.8279516720158182, 0.3928483627232254, 0.33542160783081804, -0.46445244029782806, -0.19087977204236165, -1.5438914716390233, 1.39751329404776, -0.1184821374568288, 0.8460827622597162, 0.035681668114253454, 0.4102640248923117, -0.38993432758909385, 0.8223128084811989, -0.7313496807508538, -0.3894011551043495, 0.10756318067480221, -0.6950198168501809, -0.6070000441323963, -0.3114808996456282, 0.28002247517944057, 0.41498377648153145, -0.0006457188615253995, -0.24114498822062927, 0.5424831975250346, 0.37256949057935657, -0.07198023424023166, -0.9625494795925307, 0.2123689006088567, 0.3128754853628972, -0.27526618395120006, -0.23223393408874696, -1.2242493539730552, 0.14919602557351813, 0.5556652766195043, 0.6006123622358239, -0.17633388657918686, 0.43488995783280415, 0.39314766741539586, -0.5490578584498564, -0.45937359220148444, -0.696944560303635, -0.2725379951847387, 0.2959123516121492, 0.5655400273449173, -0.6862937832477931, -1.5438914716390233, -0.20356784862719957, 0.1426655842818945, -0.49453336830153577, 0.8696976490191193, 0.28196887732501275, -0.4695554816140919, -0.5685790219869514, -0.6497067799810954, -0.48175105336481466, 0.7334958115641058, -0.2458543712870308, -0.011506976930681376, 0.7708819399259632, -0.8891821577113892, -0.348408969710312, 1.935415438079026, 1.0525564567098435, 0.9945014845401484, 2.1335521489442635, -0.18762532313970678, -0.4023909557033479, -1.1216985861429254, 0.5463377534875513, 2.6849363679970186, -0.8117428289029621, -0.8374049228909454, -0.1321052243887192, -0.8098853656420509, 0.7776058117711483, 0.46444416487708373, -0.5857556321020468, 0.6542141690586691, 0.0044036365476760216, -0.3008388782312838, -0.5175741845139482, 0.17402149497545913, 1.2884060196116864, 0.7839679373756032, -1.5065993692183377, -0.3935793241847617, 0.5619308597558913, 1.2358233233765792, -0.11311032098781815, -0.057474209987017334, -0.1327022208917318, 0.6354429953391365, -0.10487552495564265, 0.24722280528561652, -0.06629356029481497, -0.7317625783708446, -0.4806554461198048, 0.9462118175771732, 0.08815157786220854, -0.5326979423158155, 0.2065550394501434, 0.3210123564572929, 0.6206353622775748, 0.6273919525725522, -0.10805969831471758, -0.011088779843468738, -0.3477836325782483, 0.566157760893574, 0.22328741596516305, -1.3405926764803338, 0.19211871471146968, 0.3458307983048745, 1.0937211052001772, 0.571209535624769, 0.5838962297398954, 0.7662879930803317, 0.48849614247639406, 0.4750364173818757, -0.8089161391696775, -0.9063583070032498, -0.9652088328880282, -0.014731357117150668, -1.0817203846781176, 5.0, -0.7243391192496048, -0.9889623698387406, 0.6414062784323161, 0.14284657260807024, -1.0769457951237367, 1.0921561494886947, 1.175571837249643, -0.8999298804556294, -0.031847945005679876, 1.681214972249428, 0.08321212879493457, 0.8773634435599048, 0.2835234645136728, 0.16511193851909703, 0.5853641821600752, 0.15307984381155548, 0.08155546925937135, -0.9464246985149664, 0.24032531828604872, -0.147788191188198, 0.3900145302297723, 0.8692407427800327, -0.34966068082671753, 0.23569070378978482, -1.5438914716390233, 0.16782584176522197, -0.06582962650137246, 0.3365475142036346, -0.48610329842285177, 1.291417729874465, 0.054347774135842075, -0.49085749654901406, 0.11246518785409731, -0.3586535310830928, -1.5438914716390233, -0.005987351408533814, 0.5819110032366365, 1.0311966084587276, 0.2720503483921252, -0.6124639676458179, 0.37757380051718004, 1.0789236102498203, -0.7424309243125852, -0.8741673846049759, 0.557171707779937, 0.48409067233452896, 1.2330758952399858, 2.9102646451724934, 0.4494337695914155, -0.8734673365056794, 0.5036408677355315, -0.5242129192661699, 2.4884662243669524, 0.6177386274123232, -0.36503662414481397, -1.5438914716390233, -1.3935671588709084, 0.9151829761757839, 1.2160703657514742, -1.0941731533977659, -0.6840485372332851, 0.040455220816352784, -0.09572058012579406, -0.8472885444636641, 1.9681216760616285, -0.5723668737859682, -0.828681769433786, -1.0248663178629898, 0.12864918471756726, -0.4554563642787945, 1.028106558245731, 0.6119536829117087, 0.4882599705676395, 0.19164521883586566, 0.0451720922603447, 0.4959541057374761, 0.7019904789360756, -0.06048787874855168, -0.13862944456664794, 0.7883250210776239, -0.7473126552694702, 0.05916694833836255, 1.4745297599337042, 0.9681071424292149, -1.0882500483305269, 0.33581906787238575, 0.5083601585015173, 0.5577723908688421, -0.7350199650216322, 0.4057451922342395, -1.5231318510538479, -0.8661359268259464, -1.3402105244106597, 0.07542306403835859, 1.0093314675286842, 0.7656824713474436, 0.42426890387572186, -0.09420596935291115, 0.866038482108924, -1.0495446694466457, 0.1407395735645411, -0.8412742251970293, 0.15001145229067675, -0.4132315919326674, -0.06756347392906695, 0.6443308931033804, 0.8979806751652442, 0.18358369234065033, -0.15938261902678524, 0.16718011320494333, 0.9751063561582637, -0.7524182887164408, -1.2135376330441727, 0.9387206750430562, -1.2284874300742266, -0.3050199274569243, 0.8895524485795063, 0.806773157708304, 0.1590505000765202, -1.0157140227667518, 1.9709142648754048, 0.41611256299957655, -0.1523669308670235, 0.5672635062497892, 0.7074604507544792, 0.3410310938841037, 1.5688065905579958, 0.1663295487159942, -0.21922500932542874, -0.48751998425795895, -1.134278542075878, -0.4826910175616634, -0.4204622541323007, -1.0296269675144603, -0.9919148067127098, 1.4883390194531807, 1.7969375946584643, -0.848744918700023, 0.6313034202047856, 0.486045023680938, -0.5503515044807904, -1.5438914716390233, -0.7734651803870013, -0.1031568846947578, 0.6921701053525809, -0.11011738927193279, 0.5389346281916221, 0.014099127034054549, 0.03650285512186889, -0.19611818018437624, 1.3802347267915624, 1.5789725815689417, -0.6077295273159271, 0.431624103555045, -0.8639880873230752, 0.022953960731068205, 0.8523780684948664, 0.24629159673026513, 0.22886890700682308, -0.41164624479296585, -0.24824961526505207, 0.37380334479534527, 2.481983363074509, 1.7454341464434633, 2.2701572067313194, 1.5668681376132527, 0.037666894617512325, -1.5438914716390233, -0.09104241783367219, -0.0336150869122219, -0.21033745717861502, -0.33230930349914145, -0.5970964343517889, -0.13243551944355272, -1.0138635870601966, 1.1576520344597199, 0.03688476237920103, 1.1591953314790842, -0.27500904458517905, 0.49035948123357437, 0.6408710322430119, -0.020912724807051187, 0.6841893381295769, -0.20189747960034693, -0.05046370608867287, 0.2273426604472146, 0.4109948905455499, 0.513029680357954, 0.31707197216696464, -0.34290017353422575, 0.4470589170416128, -0.25281464545258836, -0.4470795194839384, -0.5713830161758321, -0.3097944018054927, 0.28353959332695583, -0.14542048139856384, -0.24861170712320455, 0.05196405073873765, -0.2575956865322779, -0.07755446731591464, -0.3111320564555264, 1.5708989584637665, -0.44653436559504256, -0.9479928223861989, -1.1030029298312902, -0.3455121196392562, -0.22437159843755403, 0.5976670105191144, 0.46093107893288743, 0.15680214350516672, 0.4614895966956427, 0.003404571770734232, -0.785372737614853, -0.389813131077867, -0.5074767409594485, -0.35555322755308233, 0.029971376977963763, 0.13341259930846122, -0.9343816016526508, -0.03538660663950837, -0.314528554120862, 0.32159552826320764, 0.7367676565439428, -0.05845656992163314, -0.15778794021653933, -0.7147602746449877, 0.11978329126287526, 0.5520279988130481, 0.334504108766756, 0.3428528433441775, -0.2716992968941326, 0.15405402413372105, -0.1837010676626572, -0.6717772176630434, -0.5832079132356182, 0.024814764960445948, 0.5384627451973469, -0.2503127208952939, -0.06051909952283111, 0.00997418303746624, -0.6317867467795588, -0.4619865751587966, 0.5546855664184995, -0.3598396900940929, -0.31288260872554685, -1.1472305839709294, -0.1834468084418684, 0.17105828635833278, 0.3459203132185869, -0.17586661181727772, -0.5911962264391206, 0.0364288929923964, -0.8694045460431292, -0.01614101539789846, -0.2809611527148716, 0.499702902767193, -0.5899631210608921, -0.1848646463350662, 0.9561819587125595, -0.4177158628479925, -0.08794614650698067, -0.44883871218964766, -0.28020597863590013, 0.6232360182133055, 1.1053248647093052, -0.03542992402374847, -0.7961354371142854, -0.34258877223209483, 0.5320831083099014, -0.8131691344231352, -0.48497370546414653, -0.57214003354775, 0.34049711495869484, 0.29849019679767147, -1.188669105471062, -0.4850650636708014, -0.008913809372544584, -1.0688747641492677, -0.3179469408899368, 0.6553560890389559, 0.21655064106935706, 0.2554654353128161, -0.07678293401204316, 0.34219824393659265, -0.015402661367061291, -0.4216132753715107, -0.8519592183781879, -0.31748611765334, 0.006152345524750099, 0.12158015626817285, 0.4905656996319523, -0.06912151729200275, 0.5019802912024541, 0.6967840980090053, -0.2555352306356431, -0.8061329396293461, 0.07255881721129054, 0.3148664721566125, -0.11318969779032537, 0.18023350741059185, 0.15783300508543152, -0.17672524071286408, 0.5712258948496695, -0.4372962421709891, -0.193607730397206, -0.278677312754298, -0.3279832101597797, -0.5113001913534898, -0.8910545401245843, 0.18551557855427248, 0.39474833692771555, -0.3590572122383516, 0.05571860805890702, 0.45442701977156064, -0.034303672033505976, 0.8043814851103668, -0.6159231948742386, 0.11794310887333373, -0.055214448040559375, -0.25553834119249247, -0.42414273411718845, -0.19173817052633463, 1.1964107248317828, -0.31651308938926487, -0.5420827227349193, -0.050465779793236056, 0.9889953380976731, 0.5882871839498068, 1.0546329262139484, -0.22038075400281343, -0.8300778334290568, 1.175394650715172, -0.5385342686073155, -0.5418203991074851, -0.09274009063729467, -0.5374636610228906, -0.6926158748335667, -1.020140633174596, 0.5451052817412703, -0.04476839170757129, 0.11447668128184435, 0.0985508606366771, -0.09228041945879241, -0.34256964806777523, -0.11856785057883579, -0.38375388154566675, 0.6665246010011152, 0.20084509393128372, 0.07379244101566222, -0.0775171406337486, 0.185759123634813, -0.08051237646581864, 0.4758794934932308, -0.45295155957627187, 0.5503185750168912, 0.5985937260479126, -1.2272857182789914, 0.2659018143578299, -0.3122792759030351, 0.12323877430249548, 0.4686185321657947, 0.1054927018727708, -0.144394458462282, 0.24867048148338614, 0.8817458725399401, -0.5818399594577817, -0.06598285022754004, -0.5211468318614723, -0.4784363518239761, 0.42218920860895853, -0.2115941221448161, 0.43123678162468243, -1.0749369514296008, 0.511952966865647, 0.6654073350639872, -0.5789711620012519, 0.026880405118493957, -0.04208110100336025, -0.4888733068980371, -0.03892953088827282, 5.0, 0.10727309244736369, -0.18593352583235326, -1.2808988440725846, -0.041005309157522096, 1.0183030047103714, -0.21824276459662575, 0.24803627350402047, 0.18338012367588308, -1.5438914716390233, -0.11062855744712927, -0.058298507551482165, -0.530033116744387, -0.8181993656680131, -0.09100889294321128, -0.41415116470129737, -0.4027184858187575, 0.6253235474750889, -0.5440279728224008, 0.21588590355056322, -1.2037938137208566, 0.08707728369189081, -1.0037253030463547, -0.7112460366427008, 0.25537280984225846, 0.39068018939503935, 0.5136225294518348, 0.5519710871433272, 1.102609924610894, 0.13431281750115, 0.19207896870731367, -0.924569292475794, 0.08764732203556316, 0.603016477061151, 0.482140007574017, 0.5240475031217444, 0.5113216390315051, -0.09820003955030575, -1.302281877492791, -0.5354106935038538, -1.151136377717061, 0.4995169605912253, -0.42799383390542955, -0.12022381887954713, 0.28497183194629855, -0.3922129832882542, 0.773404025499859, 0.39098848014032084, 0.4349922605913286, -0.9273103266899759, 0.39430732909029076, -1.5438914716390233, -0.472111092078445, -0.04558577692348545, 0.7053957322429082, -0.6205360354725723, 2.21311281991946, -0.5119723020440653, -0.657554772509055, -0.7357938024416888, 0.0004694733710387753, 0.16937662716218052, -0.49291380503651755, -0.34684067303036253, -0.20786813586531208, 0.23914342188998458, -0.8159502026559948, -0.13119924590557017, -0.2559508931950572, -0.026524975799752555, 0.07391651767211718, 0.13760597555568307, -0.2842499329486521, -0.42129438569178573, -0.05889089582212451, -0.3971401053339469, -0.21445376073951455, -0.2591835681997816, -0.8646157861742242, 0.24641279324148813, -0.14136581294555953, 0.9831532515157164, 0.1752591509831489, -0.918164598324859, 1.2883527945278626, -0.9333230330752817, 0.4690339643135875, -0.23682235105554267, 2.9435217973344736, 0.7656723332362384, -0.30607002840732156, 0.1699951671515023, -0.17769020457030157, -0.08768808549448648, -1.0528663985418478, 0.8066434359672012, 0.575533670465376, -0.06506984419003504, -0.1601713179962178, 0.3528310488862094, -0.6627951967527291, -1.5438914716390233, 0.5093092239572892, -0.13978622609631433, -0.10974515930257112, -0.43439155810490904, -0.3963626965338062, 0.536116694099835, 0.19877691924543744, -1.4602136042579068, -0.4815515169033702, 0.04781940654878634, 0.21287857110853273, -0.05225020257114789, -0.13162965480855135, -0.40846587322559236, -0.9004909327461869, -0.21203132819053577, -0.819388174412624, 0.36724548452114736, -0.020257203752989283, -1.2243114499041867, 0.04645053112447285, -0.7444471987814072, -0.11596454490949001, -0.6083462240123059, -0.06326445395485786, -1.4926209335683067, -0.871444956128971, -0.6148577139483226, -0.02375715623494387, -0.18930640630681178, 0.03848623833218137, 0.47888889963982467, -0.4097763393046649, 0.4125533947317244, -0.19936191494678304, -0.256402845584348, 0.10517761398474754, -0.5182278622750596, -0.5424218886370545, -0.38835992500125804, -0.1079149998184262, 0.3798222722943463, -0.8410479033849539, 0.29538586106433823, 0.8520342943603653, -1.5438914716390233, 0.5513819246353352, 0.28519383354052563, -0.3267132965255277, -0.18895721749927993, -1.4392893851730002, 0.14073922794711108, -0.5459043298360141, 0.3716183514190209, -0.6209137377178686, -0.15751893465217534, -0.09603359430925391, 0.32765927082196467, -1.094144294342575, -0.7168658912188087, -0.011647988841079987, -0.17045286043373892, -0.6677639656984286, 0.315407248224756, -0.755818127350243, -0.9263726666093121, -1.382729057169389, -1.5438914716390233, -0.7665875087866051, 2.50962814903793, -0.5879628601995367, 0.2752802584574298, 0.8603671305361255, 0.6148994954516527, -0.48935682567903366, -0.3997871892107674, 1.0587195066760886, -0.3200017517019237, 0.12992969728626286, -1.4274269454201567, 0.14601000892149638, -0.6335396031657642, -0.3951801089028902, 1.9706831620222498, -0.075764284247543, 0.10376991420275529, 0.20967538879095074, 0.47651519914811685, 0.15807735660663674, -0.5017801593144479, -0.45497664728949533, -0.1687617543612373, -0.11377482809499068, -0.31667414711045655, -0.13776966361296686, -0.37338754763261184, -1.0443166874303615, 0.5221231052857163, -0.9183942611053973, -0.1714952425949208, -0.15717251078406716, -0.6784408368700414, -0.23059444021874417, -1.0914730460472846, -0.20089346097360938, -0.056035980665600976, -0.5997795776468764, -0.6316184886952947, 0.4321773218505781, 0.4491084283863782, 0.2237718563926369, 0.3044728344667879, 0.3677485882897025, -0.6067522364369159, -0.8493077566806188, 0.20513570388142535, 1.3067430978423449, 0.015123997912245757, -0.42665375993340615, 0.6446854965839387, -0.7602747488713684, 0.04347234575215839, 0.8393496739498026, 0.1309844064690222, 5.0, 0.12710093384841062, -0.5817076455859721, -0.0507034493775117, -0.004008922048017107, 3.592513446954044, 0.7115060179485643, -0.9997390092410797, -1.5438914716390233, -0.07172781831238513, 0.024263620369476213, 0.3634168498656929, 1.690614614217912, 0.2987751007636968, 4.8410582469013255, -0.9641442736085852, 0.03962931037055879, -0.3419630894826052, -0.9273718465920624, 0.6538065709059002, 0.3301997893253248, -0.9218996282603821, 0.45245792208158053, -0.465460951951119, -1.1780712942859757, 0.07238070903034674, -0.47965753340095363, -0.6185648064751245, -0.1050248316843, -1.5438914716390233, -0.3021791826149244, -0.2906513437340284, 1.0627853500925843, -1.00702347255358, 0.4458375050530144, -1.365719812293532, -0.9865002488885065, 0.08590978802197205, 0.27898055384149334, 0.04201821802907643, -0.30611219373346715, -0.8648747688331916, 0.46703491311323075, -0.24163922114187802, 0.059788944501959894, 0.4031703423997581, -1.5438914716390233, -0.2604387354904625, -0.34883108379503464, 0.37520459305202947, -0.16665072311438944, 0.08140904267594208, 0.9963980025703636, 0.2695140925037051, 1.133088543067787, -1.468292843646278, -0.28720657483465695, 0.3804774477309784, 0.07105123399276722, 0.3254520427244751, 0.7155624144887061, 0.7464198296460817, -0.2718315531630337, -0.7385655390040115, 0.678303703751763, -0.6283047664038337, 0.495507568021216, -0.22697213916747613, -0.46273068948009377, 0.22593795601625913, 0.2782784896405373, -0.8735225776911666, 0.698099057114635, -0.10833561622763226, 0.13087691944908453, 0.6447564633623746, -0.7115715506564548, -0.0706087090823071, -1.1953380817481858, -0.8423692564129918, 0.16594188116820568, 0.6919224128629093, -0.6538402492075597, 0.055440270824002574, -0.24841217066176008, 0.19970444121489586, 1.2612702129130704, 0.46501120786971517, 0.35916022562924643, 0.16340666213207156, -0.2526967899098283, -1.5438914716390233, 0.1334164011001625, 0.06131369338604773, -0.6434204597990634, 0.0436564446351803, -0.32541711596678763, -1.2172978354489932, -0.4685583753359052, -0.9213685294802015, -1.2723161264967793, 0.6243394594533352, -0.43354928843421886, 0.18373887456557278, 0.8141129198092003, 0.005893247659974211, 0.11250286015368974, 0.3368626020916583, 0.4190139060971898, 0.42552234307926506, 0.47909050980583706, -0.01185697217887748, -0.15839115783324623, 0.5554357866476791, -1.5438914716390233, 0.08849949940583737, -1.5438914716390233, -0.4646275531277348, -0.5752561202736173, -0.07632982956465788, 0.3075481383362175, -0.27289547881052906, 0.11012962048521639, 0.022814676907807474, -0.16998282073241022, 0.961316681626342, -1.5438914716390233, 1.6604859910092153, -0.8089615878613856, 0.7446866734532391, 0.550495070316506, 0.07797844409109832, 0.7793468019590108, -0.030271123095858322, 0.09006906334968595, -1.5438914716390233, -1.4690002577169956, 0.013081974945074832, -1.370418927642192, 0.23247715294937576, 0.06344868744120227, 0.10342084060103174, 0.7813451619245119, 1.5540355929437408, 0.6857692705962519, 0.39892316503966097, 0.3896785900902954, -1.036241048223527, 1.1613817073251163, 0.1785185537355961, 0.09502256752567526, 0.07510705450386214, -0.08816976098253666, 1.0615664726317835, 0.16195299523222406, 1.3224016410102852, -0.26095612477935, 0.0955746337631184, -1.3890365752203075, 0.030308008352300707, -1.4654692644698408, 0.005989214098994844, 0.07467871930544438, 2.098649166592806, 0.48121444410331327, -0.502836942201771, 0.35104662610829784, 0.48826480921162674, -0.44221195884157743, 0.012504217812191423, -0.7103909791271983, -0.2724166834677031, 1.3293176761451295, 2.655404050056497, 0.268028859212152, -1.4567651127708285, -0.8558301911685051, -0.3473423943292099, 1.0917105334189072, -1.1732530129284768, -0.17045205399307423, -0.09351957314199896, 0.015487472240109953, 0.22624221455822152, -0.8288939209313335, 0.822931924499568, -0.04941925022292716, -0.45684344222095075, 0.04236464189718869, -0.8153595424724865, -1.115845555009103, -0.11987555171848849, 0.15532566585511068, 0.4044509701742588, 1.6800827295571115, -0.4847651829495835, -0.6838977328291074, 0.42228598148864815, -0.694835084335208, -0.3831384521131907, -1.0719286685396467, 0.1934933504262357, -0.22092798159627294, -0.2600825191285713, -1.092893188056667, 0.0200932852840842, 0.6495642321897903, -0.12191964839022323, -0.2823219637325399, 0.49345851749968933, 0.8261768113200649, 0.8318232784380872, 0.8321672829842055, -0.4572993116077556, -0.3200478340255834, 0.5842694965615388, -0.19641230061513393, 0.3127401185371465, -0.20967421733534547, -0.5644152536326803, 0.001300337666624891, 0.2602788492248761, 0.11976336065789095, 0.10141119046623538, -0.2171347151242258, -0.8755921924496252, -0.4257938637739166, 2.95030235043774, 0.646267963578412, -0.015206005050845338, -0.1512017393132892, -1.3198528946955117, -0.5021219749501941, -0.3829803897430361, 0.5596345775679313, -0.07660206089167591, 0.9670781241418922, -0.54573958552893, -0.6011920584699479, 0.5007127968901957, 0.7432258637932274, 1.2542454234943894, 1.7392498986083347, 0.004381171414893432, -0.19287651912653758, 0.5785294823264895, 0.8689405164413891, -0.4471253713959809, -0.4836003370132756, -0.4177544567940581, -0.2635135785366535, -0.1531188791833409, 0.5188321361415634, -0.13845917038072456, -1.2881423805213879, 0.3682564154964322, -0.7211037369083614, -0.6960712426673816, 0.01085723556459458, -0.5562395581805979, -0.32223006246248437, 2.684600427857549, 0.3101019055076279, 1.0418386298730762, 0.12734217481276988, -1.026234790066969, 0.7304145169926028, -1.1670132646947906, 0.16727976622985674, -0.14214345215731744, -0.5986755603777992, 0.19490796255677928, 0.03241316410288324, -0.08122169863275171, 0.4530224305464137, 1.7789484379714335, 0.040990121388231195, 0.6983598830665487, -0.276278036572958, -0.14157157052069913, 0.8154923941679497, -0.04185310870705164, 0.24170513826222814, -1.0257889435855607, -1.224986152725469, 0.4121428012279146, 2.28767839742155, -0.7940506727919217, -0.09466252997456788, -1.015478714901562, -0.8237010190839351, -0.9354578543217235, -1.5438914716390233, 1.7404885914683066, -0.012833110999797722, -0.6911904333569661, 1.560640341982267, -0.8640147574678935, 0.3642699488824403, -0.38373971123113887, 1.0139016819776339, 0.1376701451913766, 0.6960997755026612, -0.34258566167524934, 0.06084595780090373, 0.1994179243675412, 1.112205877278168, 1.1590669922076933, -0.31826675221613493, -0.3689515479513227, -1.0326506591813907, 0.670126625829973, 0.2982502230972152, 1.5644902897124136, 0.8187305990515169, -0.6397455096930109, -0.22304074093026255, 0.38348777552404595, 0.09746539150287256, -0.5406386179172336, 0.3380224941781702, -1.2459984826532855, -0.2443022034203603, -1.009098501985073, -0.29479955930406376, -0.13696437500701317, 0.06677329668162878, -1.326590850450864, -0.04812756269074428, 0.013408583414015367, 0.004611352621570512, 0.5817911891951214, -1.2925430984236255, 0.01309291949694465, 1.0503470397019816, 0.0477370343952423, -1.101949891132764, 1.089839130255086, -0.5429445773931638, 0.7450055631329641, 0.5986218362653429, -0.502594549179325, 0.9994041829542997, 0.24559379514424912, -0.5530468595916468, -0.5202311760903564, 0.42707969520734473, 0.8602056119916991, 0.3249006677218879, -0.2650935110033245, 0.623655828181847, -0.47620919312150195, 0.20341533553340282, -1.5438914716390233, 0.3738124460542687, 0.8696262214174451, -0.8932762265511235, 0.14280613536905823, -1.5438914716390233, 0.33445203574101845, -0.7272459922260572, -0.013875953984218564, 1.0799576975927434, 1.9312825448816098, -0.10705832942159496, -0.6225655586094488, -1.0433647994322655, 0.25068255094017655, 0.3327102391124914, -0.05613885945316863, -0.03206176698746077, 0.9611768217740341, 0.17514083461715033, 0.7091910724195192, 0.3114461268887828, -0.28318681374182525, -1.155158500528982, 2.3233601710428515, 0.5497847112972951, 0.2631906760511243, 0.81847945038757, -0.2717143888551296, -0.09281762414685552, 0.46797821827854263, 0.25269634848410444, 0.4446741567922267, 0.4033694180379679, -0.8128690808932046, -0.6419267012776341, 0.4567108597321342, 1.0039006656853935, 0.06238937002607309, 0.6330160697636005, 0.6913274900644651, -0.38879183157975983, 0.6169990061175875, -0.8322593130282016, 0.33445099888873675, -0.19143564007150993, 1.0290782040400943, 0.5587182305619557, -0.32055473958583985, -0.8500425393313751, 0.12245502918285074, 0.21181291737390356, -0.4658665916051329, -0.45858604529014246, -0.0420577142241006, -0.17724124753204373, -0.059157482064498536, -0.40935560768965396, 0.9003029938660744, 1.212488847556644, 0.1802625392744955, 0.23162946860565514, 0.6216362703474629, 0.24774514842429982, -0.640709494301067, 1.0866202799474594, -0.4617255187952656, 0.04505112616073891, -0.09680455158407816, 0.01864192250042547, 1.1652210561208234, -0.24458249915402372, -0.05531893970945641, -1.5438914716390233, 0.550504517192855, 0.5772193618648427, -0.14026939925988516, -0.24175961121244044, -0.572205009624112, 0.840521317028849, -0.14465321070963236, -0.027471161110296367, 1.7846195591326148, -1.5438914716390233, -1.1631447688293708, 0.39574141100257987, -1.5438914716390233, 0.09701896899242095, 0.06539094217764699, -0.749792805928834, -0.5500671765438121, 1.4085053107103007, 2.5411940799215817, 0.02486649236875737, 1.2848376348791024, 0.026337440139974244, 0.2620993314210546, 1.6716780049564384, 1.7796147883715525, 0.3206140899750648, -0.16841233514208845, -0.29252171004556404, -0.2354357339366213, 0.22874586720265389, -0.616569384257756, 0.2520252746458106, -0.004544398648942549, -0.43697424193441475, 0.5950430830099367, 0.10757504687314501, -0.36265992830206506, -0.2229678156530677, -0.6109084588106883, 0.45449453037572124, -1.5438914716390233, -1.5438914716390233, -0.4558212210763706, -0.4427553846433318, -0.5483302185592682, 1.8012826969563325, -0.6762182287970327, -0.7171100123283966, 0.5589412690084685, 1.4792299265353699, -0.2661729894350554, -0.27897189400829403, -0.43214642729620956, 0.5314474026550152, -1.1536141666573354, -0.5866449057428699, 2.3236785998993494, -0.49807583172706577, -0.4582740679589645, 0.9106860326214553, -0.32847076114409907, 0.13293495602372568, -0.24186836549627727, 1.317618987049267, 1.0974659852323838, -1.3702388321610397, -0.8600409634929089, -0.9056081443769747, 0.0904895645530833, -1.5438914716390233, 0.2749823362349715, -0.29165075412839614, -0.4765488198468757, 0.15343410167468774, 0.8779876286338738, 1.2132086534522082, -0.9385364991596159, -0.6426877508528746, 0.6472559685976754, 0.958444831215871, 0.1913578955478463, -0.30136859454174875, 1.0281786770822574, -0.5273353423115409, 0.5568078878346469, 1.3212657117320767, 1.8124438357467063, -1.5438914716390233, 0.06478058180077607, 0.9589577274782014, 0.1026343305419717, -0.1882207067613898, 1.0879400776970725, -0.7782486983915887, 3.6377847217173103, -0.3217988471188424, 1.3520685193359119, 0.7433353093119199, -1.265328836568976, 0.01521639297118255, -0.2537902082444618, -0.45223198409232496, 0.20351314526536984, -0.5425205048096863, 0.046506751559341516, 0.12447308934171841, -0.5708762258213844, -0.5973960846613892, -0.559832827367962, 1.0547557356065012, 0.47387399076756165, 5.0, -0.3911623063088136, -0.49534407158052013, -0.5102053905491446, 0.32050821583645606, 0.49667483327951345, -0.10517333197229674, 1.4056247046583328, -0.16228707268124423, -0.3713933350762383, -0.23856714303510698, 0.2583977687730881, 0.05188813011050598, -0.3183609905680179, -0.3093604215224312, 0.45103259581078886, 0.5419465688660186, 0.28279605503470606, -0.5681162402515996, -0.18126077821326203, 3.0919455886705065, 0.30707084066891177, -0.6526455073637791, -0.21652470036478427, 0.1651974212294866, 1.6370777834714245, 0.887228516997351, 0.40376733890276617, 0.17714921748804777, 0.03396878814382542, -0.6505358585866391, 1.2185581199942412, 0.9304770081635749, 0.23121173234168105, -0.8183158387410653, 0.22880370051884377, -0.6351099159473729, 1.6591737968430047, 0.0317473897318077, 2.17161338334774, 0.4724429042063091, -0.5857137547904226, -1.195473419772484, 0.10679971177756815, -0.7870389592325782, -0.14312857703135282, 0.7690690613131915, -0.25168424605321454, -1.4324457856906585, -0.39387678558398603, -0.8077976635715509, -0.4163018267464964, -0.9255827579788808, 0.47461937235275775, 0.1385442116653941, -1.5438914716390233, -0.15109667161534535, -0.14706585076483558, 0.28124861060621414, -0.09735200958915512, -0.15346345975850634, -0.09852203978687646, 0.31664824520091306, 0.3061782260596262, -0.19538616247304358, -0.6750925528358337, -0.4093852155826049, -0.415144353981974, -0.14299470788111845, -0.3965359660707666, -0.907339514879775, 0.1692935637737846, -0.06655726639196091, 0.17032258206110712, -0.08854222136351944, -0.5999705888784449, -0.049613026393915245, 0.20970545750713612, -0.5028750753246017, 0.5635077968715255, -0.37674441449959994, -0.26027376077176084, 1.1248787466961963, -0.8385216704019305, 0.3629333310846923, 0.04759440960351861, 0.04451772326437729, -0.0008209468972406762, -0.06421086967701868, -0.08696804918730489, 0.13672810728996432, -0.5789194921958486, 0.19775723262865516, -0.947914943259216, -0.7388147291691998, -0.056551526661542104, 0.670836293614332, -1.2913834655501821, 0.21337879473185936, -0.40266583676397677, 0.8310262846503919, 0.3643647632633703, -1.0588231725068105, -0.22608482402540822, -0.2966876673102114, -0.6358083511653368, 1.2155775152999335, 1.0798754406450122, 0.9230609798170248, 0.8423719831470217, -1.021952705346703, 0.022029434112646584, 0.0010582902616009375, 0.6812999764361195, 0.17310653043919474, -0.6837365599021071, 0.3686053738923427, 0.4401431123183898, -0.3358738864400242, 0.15125890079214205, 1.058902914324254, 0.5218726478566247, -0.42220347473178055, -0.5710776055757791, -0.32908607537076234, -0.7333363473267288, -0.19503167419829, -0.9684272799753242, -0.6447565591706685, -0.04407646561782425, -1.5438914716390233, 0.004928053390923142, -0.7953999056257726, 0.2650745214423319, -0.8251124054518205, -0.5499089989678487, 0.898170534338722, 0.21100993288413497, -0.7046109308734674, -0.39676326713221943, -0.5229508396269379, -0.8428535816346568, 0.887501785176655, -0.19456439943638087, 0.9539259985578031, -0.7328103752050569, -1.0947832545615659, -0.3083490297239079, 0.2875130416845108, 0.6750348541229668, 0.026514050645397382, 0.13561510396777246, 0.8311960980130769, -0.787363493996951, -0.24337744639032102, 0.44445964357559004, -0.2707873277089054, -1.3740940793584082, -0.9012470284716316, -1.1063120726918394, 0.6110460915472304, 1.5839798868577988, 0.05560052210452952, -0.3630978255826446, 0.6196035790508324, -0.8681227086076301, -0.5036085907114553, -0.2703953975461809, 1.051601861375233, -0.8456711701090182, -0.08177940995484273, 0.40734470968846903, 0.2094199775120672, 0.13782406015239992, 0.21720362759561254, 0.8602016949941851, 0.14423203766889756, -0.6850613115015161, 0.6410369286081867, 0.21174782609173298, -0.5319124691090372, 0.18584149578835704, 0.5760537094878742, 0.6903272732294288, -0.3491264714896912, 0.9027209333884955, -0.24724525102088857, -0.01131631131653882, -0.20270541793990787, -1.5438914716390233, 0.774280972119101, 0.6454244266438225, -0.5925175218642503, 0.6747371623121253]], \"cat_colors\": {\"row\": {\"cat-0\": {\"Cell Type: B cells\": \"#393b79\", \"Cell Type: B220(+) DN T cells\": \"#ff7f0e\", \"Cell Type: CD106(+)CD16/32(+)CD31(+) stroma\": \"#98df8a\", \"Cell Type: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\": \"#404040\", \"Cell Type: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\": \"#c5b0d5\", \"Cell Type: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\": \"#1f77b4\", \"Cell Type: CD11c(+) B cells\": \"#FFDB58\", \"Cell Type: CD3(+) other markers (-)\": \"#e377c2\", \"Cell Type: CD31(hi) vascular\": \"#2ca02c\", \"Cell Type: CD4(+) T cells\": \"#dbdb8d\", \"Cell Type: CD4(+)CD8(-)cDC\": \"#637939\", \"Cell Type: CD4(+)MHCII(+)\": \"#9c9ede\", \"Cell Type: CD4(-)CD8(+)cDC\": \"#8ca252\", \"Cell Type: CD4(-)CD8(-) cDC\": \"#bd9e39\", \"Cell Type: CD8(+) T cells\": \"#843c39\", \"Cell Type: ERTR7(+) stroma\": \"#d6616b\", \"Cell Type: F4/80(+) mphs\": \"#a55194\", \"Cell Type: FDCs\": \"#de9ed6\", \"Cell Type: NK cells\": \"#aec7e8\", \"Cell Type: capsule\": \"#ffbb78\", \"Cell Type: dirt\": \"#bcbd22\", \"Cell Type: erythroblasts\": \"#ff9896\", \"Cell Type: granulocytes\": \"#8c564b\", \"Cell Type: marginal zone mphs\": \"#5254a3\", \"Cell Type: megakaryocytes\": \"#c49c94\", \"Cell Type: noid\": \"#7f7f7f\", \"Cell Type: plasma cells\": \"#9467bd\"}}, \"col\": {\"cat-0\": {\"Cell Type: B cells\": \"#FFFF09\", \"Cell Type: B220(+) DN T cells\": \"#FD8007\", \"Cell Type: CD106(+)CD16/32(+)CD31(+) stroma\": \"#23FF6D\", \"Cell Type: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\": \"#2D00FF\", \"Cell Type: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\": \"#C300FF\", \"Cell Type: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\": \"#15A7FF\", \"Cell Type: CD11c(+) B cells\": \"#99FF06\", \"Cell Type: CD3(+) other markers (-)\": \"#0700FF\", \"Cell Type: CD31(hi) vascular\": \"#0000FF\", \"Cell Type: CD4(+) T cells\": \"#0D6FFF\", \"Cell Type: CD4(+)CD8(-)cDC\": \"#FB00FA\", \"Cell Type: CD4(+)MHCII(+)\": \"#0137FF\", \"Cell Type: CD4(-)CD8(+)cDC\": \"#23FFA3\", \"Cell Type: CD4(-)CD8(-) cDC\": \"#FC4B08\", \"Cell Type: CD8(+) T cells\": \"#5900FF\", \"Cell Type: ERTR7(+) stroma\": \"#8C00FE\", \"Cell Type: F4/80(+) mphs\": \"#FFF80B\", \"Cell Type: FDCs\": \"#FC9CA0\", \"Cell Type: NK cells\": \"#FB0006\", \"Cell Type: capsule\": \"#68FF0A\", \"Cell Type: erythroblasts\": \"#1FFF3C\", \"Cell Type: granulocytes\": \"#FA1400\", \"Cell Type: marginal zone mphs\": \"#0A4600\", \"Cell Type: megakaryocytes\": \"#1CE5FF\", \"Cell Type: noid\": \"#25FF04\", \"Cell Type: plasma cells\": \"#FDBA0A\", \"Cell Type: CD106(-)CD16/32(-)Ly6C(+)CD31(+) stroma\": \"#20FFDD\", \"Cell Type: dirt\": \"#BCBCBC\"}, \"cat-1\": {\"Neighbor: B cells\": \"#FFFF09\", \"Neighbor: B220(+) DN T cells\": \"#FD8007\", \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\": \"#23FF6D\", \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\": \"#2D00FF\", \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\": \"#C300FF\", \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\": \"#15A7FF\", \"Neighbor: CD11c(+) B cells\": \"#99FF06\", \"Neighbor: CD3(+) other markers (-)\": \"#0700FF\", \"Neighbor: CD4(+) T cells\": \"#0D6FFF\", \"Neighbor: CD4(+)CD8(-)cDC\": \"#FB00FA\", \"Neighbor: CD4(+)MHCII(+)\": \"#0137FF\", \"Neighbor: CD4(-)CD8(+)cDC\": \"#23FFA3\", \"Neighbor: CD4(-)CD8(-) cDC\": \"#FC4B08\", \"Neighbor: CD8(+) T cells\": \"#5900FF\", \"Neighbor: ERTR7(+) stroma\": \"#8C00FE\", \"Neighbor: F4/80(+) mphs\": \"#FFF80B\", \"Neighbor: FDCs\": \"#FC9CA0\", \"Neighbor: NK cells\": \"#FB0006\", \"Neighbor: capsule\": \"#68FF0A\", \"Neighbor: dirt\": \"#BCBCBC\", \"Neighbor: erythroblasts\": \"#1FFF3C\", \"Neighbor: granulocytes\": \"#FA1400\", \"Neighbor: marginal zone mphs\": \"#0A4600\", \"Neighbor: megakaryocytes\": \"#1CE5FF\", \"Neighbor: noid\": \"#25FF04\", \"Neighbor: plasma cells\": \"#FDBA0A\", \"Neighbor: CD106(-)CD16/32(-)Ly6C(+)CD31(+) stroma\": \"#20FFDD\", \"Neighbor: CD31(hi) vascular\": \"#0000FF\"}, \"cat-2\": {\"Density: 10\": \"#9467bd\", \"Density: 11\": \"#17becf\", \"Density: 12\": \"#6b6ecf\", \"Density: 13\": \"#d62728\", \"Density: 14\": \"#8c6d31\", \"Density: 15\": \"#e7cb94\", \"Density: 16\": \"#ad494a\", \"Density: 17\": \"#7b4173\", \"Density: 18\": \"#ce6dbd\", \"Density: 19\": \"#393b79\", \"Density: 20\": \"#ff7f0e\", \"Density: 21\": \"#98df8a\", \"Density: 22\": \"#404040\", \"Density: 23\": \"#c5b0d5\", \"Density: 24\": \"#1f77b4\", \"Density: 25\": \"#FFDB58\", \"Density: 26\": \"#e377c2\", \"Density: 27\": \"#2ca02c\", \"Density: 28\": \"#dbdb8d\", \"Density: 29\": \"#637939\", \"Density: 3\": \"#9c9ede\", \"Density: 30\": \"#8ca252\", \"Density: 31\": \"#bd9e39\", \"Density: 32\": \"#843c39\", \"Density: 33\": \"#d6616b\", \"Density: 34\": \"#a55194\", \"Density: 35\": \"#de9ed6\", \"Density: 36\": \"#aec7e8\", \"Density: 37\": \"#ffbb78\", \"Density: 38\": \"#bcbd22\", \"Density: 39\": \"#ff9896\", \"Density: 40\": \"#8c564b\", \"Density: 41\": \"#5254a3\", \"Density: 42\": \"#c49c94\", \"Density: 43\": \"#7f7f7f\", \"Density: 44\": \"#9467bd\", \"Density: 45\": \"#17becf\", \"Density: 46\": \"#6b6ecf\", \"Density: 47\": \"#d62728\", \"Density: 48\": \"#8c6d31\", \"Density: 49\": \"#e7cb94\", \"Density: 50\": \"#ad494a\", \"Density: 51\": \"#7b4173\", \"Density: 52\": \"#ce6dbd\", \"Density: 6\": \"#393b79\", \"Density: 7\": \"#ff7f0e\", \"Density: 8\": \"#98df8a\", \"Density: 9\": \"#404040\"}}}, \"views\": [{\"N_row_sum\": \"all\", \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"name\": \"CD45\", \"ini\": 29, \"clust\": 19, \"rank\": 26, \"rankvar\": 20, \"group\": [19.0, 18.0, 17.0, 15.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"Ly6C\", \"ini\": 28, \"clust\": 2, \"rank\": 1, \"rankvar\": 1, \"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"TCR\", \"ini\": 27, \"clust\": 4, \"rank\": 7, \"rankvar\": 7, \"group\": [5.0, 5.0, 5.0, 5.0, 4.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"Ly6G\", \"ini\": 26, \"clust\": 10, \"rank\": 0, \"rankvar\": 0, \"group\": [11.0, 11.0, 11.0, 10.0, 7.0, 6.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD19\", \"ini\": 25, \"clust\": 20, \"rank\": 28, \"rankvar\": 27, \"group\": [20.0, 19.0, 18.0, 15.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD169\", \"ini\": 24, \"clust\": 27, \"rank\": 24, \"rankvar\": 28, \"group\": [27.0, 26.0, 25.0, 21.0, 14.0, 12.0, 8.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD106\", \"ini\": 23, \"clust\": 24, \"rank\": 16, \"rankvar\": 16, \"group\": [24.0, 23.0, 22.0, 18.0, 12.0, 10.0, 7.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD3\", \"ini\": 22, \"clust\": 3, \"rank\": 5, \"rankvar\": 6, \"group\": [4.0, 4.0, 4.0, 4.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD1632\", \"ini\": 21, \"clust\": 17, \"rank\": 27, \"rankvar\": 26, \"group\": [17.0, 16.0, 15.0, 14.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD8a\", \"ini\": 20, \"clust\": 16, \"rank\": 14, \"rankvar\": 14, \"group\": [23.0, 22.0, 21.0, 17.0, 11.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD90\", \"ini\": 19, \"clust\": 21, \"rank\": 21, \"rankvar\": 21, \"group\": [21.0, 20.0, 19.0, 16.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"F480\", \"ini\": 18, \"clust\": 25, \"rank\": 12, \"rankvar\": 10, \"group\": [25.0, 24.0, 23.0, 19.0, 12.0, 10.0, 7.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD11c\", \"ini\": 17, \"clust\": 22, \"rank\": 19, \"rankvar\": 24, \"group\": [22.0, 21.0, 20.0, 16.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"Ter119\", \"ini\": 16, \"clust\": 0, \"rank\": 9, \"rankvar\": 9, \"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD11b\", \"ini\": 15, \"clust\": 11, \"rank\": 3, \"rankvar\": 2, \"group\": [12.0, 12.0, 12.0, 11.0, 7.0, 6.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"IgD\", \"ini\": 14, \"clust\": 8, \"rank\": 18, \"rankvar\": 17, \"group\": [9.0, 9.0, 9.0, 8.0, 6.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD27\", \"ini\": 13, \"clust\": 5, \"rank\": 15, \"rankvar\": 15, \"group\": [6.0, 6.0, 6.0, 5.0, 4.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD5\", \"ini\": 12, \"clust\": 6, \"rank\": 2, \"rankvar\": 3, \"group\": [7.0, 7.0, 7.0, 6.0, 5.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD79b\", \"ini\": 11, \"clust\": 12, \"rank\": 23, \"rankvar\": 22, \"group\": [13.0, 13.0, 13.0, 12.0, 8.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD71\", \"ini\": 10, \"clust\": 1, \"rank\": 4, \"rankvar\": 4, \"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD31\", \"ini\": 9, \"clust\": 18, \"rank\": 20, \"rankvar\": 23, \"group\": [18.0, 17.0, 16.0, 14.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD4\", \"ini\": 8, \"clust\": 7, \"rank\": 11, \"rankvar\": 12, \"group\": [8.0, 8.0, 8.0, 7.0, 5.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"IgM\", \"ini\": 7, \"clust\": 13, \"rank\": 8, \"rankvar\": 8, \"group\": [14.0, 14.0, 13.0, 12.0, 8.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"B220\", \"ini\": 6, \"clust\": 9, \"rank\": 17, \"rankvar\": 19, \"group\": [10.0, 10.0, 10.0, 9.0, 6.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"ERTR7\", \"ini\": 5, \"clust\": 23, \"rank\": 10, \"rankvar\": 11, \"group\": [26.0, 25.0, 24.0, 20.0, 13.0, 11.0, 7.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD35\", \"ini\": 4, \"clust\": 14, \"rank\": 25, \"rankvar\": 18, \"group\": [15.0, 15.0, 14.0, 13.0, 9.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD2135\", \"ini\": 3, \"clust\": 15, \"rank\": 13, \"rankvar\": 13, \"group\": [16.0, 15.0, 14.0, 13.0, 9.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD44\", \"ini\": 2, \"clust\": 28, \"rank\": 22, \"rankvar\": 25, \"group\": [28.0, 27.0, 26.0, 22.0, 15.0, 12.0, 8.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"NKp46\", \"ini\": 1, \"clust\": 26, \"rank\": 6, \"rankvar\": 5, \"group\": [29.0, 28.0, 27.0, 23.0, 16.0, 13.0, 9.0, 3.0, 1.0, 1.0, 1.0]}], \"col_nodes\": [{\"name\": \"C-643_BALBc-1_X01_Y01_10_277\", \"ini\": 2826, \"clust\": 1468, \"rank\": 2223, \"rankvar\": 2115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 0, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2805, \"cat-2\": \"Density: 14\", \"cat_2_index\": 23, \"group\": [1468.0, 801.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1264_BALBc-1_X01_Y01_1006_490\", \"ini\": 2825, \"clust\": 249, \"rank\": 921, \"rankvar\": 1499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1765, \"cat-2\": \"Density: 23\", \"cat_2_index\": 350, \"group\": [248.0, 172.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1589_BALBc-1_X01_Y01_101_504\", \"ini\": 2824, \"clust\": 1648, \"rank\": 2495, \"rankvar\": 2565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2335, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1011, \"group\": [1649.0, 909.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1611_BALBc-1_X01_Y01_101_759\", \"ini\": 2823, \"clust\": 1501, \"rank\": 2442, \"rankvar\": 2546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 3, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2336, \"cat-2\": \"Density: 25\", \"cat_2_index\": 588, \"group\": [1505.0, 814.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1873_BALBc-1_X01_Y01_1013_254\", \"ini\": 2822, \"clust\": 1769, \"rank\": 1402, \"rankvar\": 2022, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 4, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 949, \"cat-2\": \"Density: 25\", \"cat_2_index\": 589, \"group\": [1770.0, 1003.0, 302.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1877_BALBc-1_X01_Y01_1013_293\", \"ini\": 2821, \"clust\": 461, \"rank\": 832, \"rankvar\": 1527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 5, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2337, \"cat-2\": \"Density: 27\", \"cat_2_index\": 856, \"group\": [461.0, 321.0, 109.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1935_BALBc-1_X01_Y01_1013_914\", \"ini\": 2820, \"clust\": 1174, \"rank\": 1065, \"rankvar\": 2364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 6, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2338, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1327, \"group\": [1173.0, 568.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2478_BALBc-1_X01_Y01_1020_25\", \"ini\": 2819, \"clust\": 342, \"rank\": 916, \"rankvar\": 1994, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 7, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1766, \"cat-2\": \"Density: 14\", \"cat_2_index\": 24, \"group\": [342.0, 239.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2866_BALBc-1_X01_Y01_1025_128\", \"ini\": 2818, \"clust\": 1709, \"rank\": 2610, \"rankvar\": 2555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 8, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2251, \"cat-2\": \"Density: 21\", \"cat_2_index\": 188, \"group\": [1709.0, 962.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2988_BALBc-1_X01_Y01_1026_609\", \"ini\": 2817, \"clust\": 542, \"rank\": 611, \"rankvar\": 908, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 9, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 950, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1012, \"group\": [543.0, 371.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3121_BALBc-1_X01_Y01_1028_10\", \"ini\": 2816, \"clust\": 618, \"rank\": 500, \"rankvar\": 676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 10, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1767, \"cat-2\": \"Density: 11\", \"cat_2_index\": 4, \"group\": [619.0, 419.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3220_BALBc-1_X01_Y01_1029_199\", \"ini\": 2815, \"clust\": 1548, \"rank\": 977, \"rankvar\": 827, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 11, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 951, \"cat-2\": \"Density: 21\", \"cat_2_index\": 189, \"group\": [1552.0, 842.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3350_BALBc-1_X01_Y01_103_877\", \"ini\": 2814, \"clust\": 1515, \"rank\": 2496, \"rankvar\": 2763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 12, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1768, \"cat-2\": \"Density: 22\", \"cat_2_index\": 248, \"group\": [1512.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3562_BALBc-1_X01_Y01_1032_941\", \"ini\": 2813, \"clust\": 619, \"rank\": 613, \"rankvar\": 1131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 13, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 648, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1598, \"group\": [620.0, 419.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3566_BALBc-1_X01_Y01_1032_996\", \"ini\": 2812, \"clust\": 2749, \"rank\": 1733, \"rankvar\": 1628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 14, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 649, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1599, \"group\": [2748.0, 1483.0, 440.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3997_BALBc-1_X01_Y01_1038_240\", \"ini\": 2811, \"clust\": 1514, \"rank\": 2106, \"rankvar\": 2122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 15, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 952, \"cat-2\": \"Density: 23\", \"cat_2_index\": 351, \"group\": [1514.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4331_BALBc-1_X01_Y01_1041_691\", \"ini\": 2810, \"clust\": 1618, \"rank\": 1890, \"rankvar\": 2060, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 16, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 953, \"cat-2\": \"Density: 27\", \"cat_2_index\": 857, \"group\": [1622.0, 892.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4357_BALBc-1_X01_Y01_1041_883\", \"ini\": 2809, \"clust\": 1507, \"rank\": 2348, \"rankvar\": 1826, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 17, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 733, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1013, \"group\": [1522.0, 821.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4446_BALBc-1_X01_Y01_1042_941\", \"ini\": 2808, \"clust\": 206, \"rank\": 776, \"rankvar\": 1029, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 18, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2500, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1328, \"group\": [210.0, 142.0, 48.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4781_BALBc-1_X01_Y01_1047_289\", \"ini\": 2807, \"clust\": 1656, \"rank\": 2570, \"rankvar\": 2797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 19, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2339, \"cat-2\": \"Density: 25\", \"cat_2_index\": 590, \"group\": [1657.0, 915.0, 266.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6348_BALBc-1_X01_Y01_1065_305\", \"ini\": 2806, \"clust\": 1337, \"rank\": 1036, \"rankvar\": 2382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 20, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2472, \"cat-2\": \"Density: 25\", \"cat_2_index\": 591, \"group\": [1337.0, 702.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6416_BALBc-1_X01_Y01_1066_194\", \"ini\": 2805, \"clust\": 1144, \"rank\": 1133, \"rankvar\": 967, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 21, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2340, \"cat-2\": \"Density: 22\", \"cat_2_index\": 249, \"group\": [1147.0, 547.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6555_BALBc-1_X01_Y01_1068_135\", \"ini\": 2804, \"clust\": 458, \"rank\": 185, \"rankvar\": 2430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 22, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2252, \"cat-2\": \"Density: 19\", \"cat_2_index\": 110, \"group\": [458.0, 319.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6697_BALBc-1_X01_Y01_1069_600\", \"ini\": 2803, \"clust\": 1567, \"rank\": 647, \"rankvar\": 709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 23, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1769, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1329, \"group\": [1568.0, 857.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6969_BALBc-1_X01_Y01_1072_106\", \"ini\": 2802, \"clust\": 2402, \"rank\": 2821, \"rankvar\": 2825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 24, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2253, \"cat-2\": \"Density: 22\", \"cat_2_index\": 250, \"group\": [2402.0, 1272.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7033_BALBc-1_X01_Y01_1072_670\", \"ini\": 2801, \"clust\": 703, \"rank\": 325, \"rankvar\": 1562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 25, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1770, \"cat-2\": \"Density: 24\", \"cat_2_index\": 466, \"group\": [708.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7127_BALBc-1_X01_Y01_1073_75\", \"ini\": 2800, \"clust\": 459, \"rank\": 412, \"rankvar\": 2612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 26, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2254, \"cat-2\": \"Density: 23\", \"cat_2_index\": 352, \"group\": [459.0, 319.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7426_BALBc-1_X01_Y01_1077_266\", \"ini\": 2799, \"clust\": 1338, \"rank\": 787, \"rankvar\": 1446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 27, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2341, \"cat-2\": \"Density: 27\", \"cat_2_index\": 858, \"group\": [1338.0, 702.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7713_BALBc-1_X01_Y01_1080_242\", \"ini\": 2798, \"clust\": 926, \"rank\": 365, \"rankvar\": 44, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 28, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2342, \"cat-2\": \"Density: 24\", \"cat_2_index\": 467, \"group\": [927.0, 481.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8117_BALBc-1_X01_Y01_1085_774\", \"ini\": 2797, \"clust\": 1523, \"rank\": 1819, \"rankvar\": 2619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 29, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 954, \"cat-2\": \"Density: 24\", \"cat_2_index\": 468, \"group\": [1523.0, 822.0, 240.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8161_BALBc-1_X01_Y01_1086_450\", \"ini\": 2796, \"clust\": 1145, \"rank\": 999, \"rankvar\": 1637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 30, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2220, \"cat-2\": \"Density: 27\", \"cat_2_index\": 859, \"group\": [1145.0, 545.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8563_BALBc-1_X01_Y01_1090_6\", \"ini\": 2795, \"clust\": 1341, \"rank\": 1139, \"rankvar\": 1271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 31, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 650, \"cat-2\": \"Density: 14\", \"cat_2_index\": 25, \"group\": [1342.0, 706.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8628_BALBc-1_X01_Y01_1091_43\", \"ini\": 2794, \"clust\": 1466, \"rank\": 1851, \"rankvar\": 2187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 32, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1591, \"cat-2\": \"Density: 19\", \"cat_2_index\": 111, \"group\": [1464.0, 798.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9642_BALBc-1_X01_Y01_1102_507\", \"ini\": 2793, \"clust\": 1402, \"rank\": 1410, \"rankvar\": 1402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 33, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2255, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1330, \"group\": [1403.0, 753.0, 222.0, 63.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9652_BALBc-1_X01_Y01_1102_662\", \"ini\": 2792, \"clust\": 1602, \"rank\": 1871, \"rankvar\": 1989, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 34, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1771, \"cat-2\": \"Density: 23\", \"cat_2_index\": 353, \"group\": [1603.0, 885.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9706_BALBc-1_X01_Y01_1103_434\", \"ini\": 2791, \"clust\": 393, \"rank\": 1110, \"rankvar\": 1856, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 35, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 955, \"cat-2\": \"Density: 27\", \"cat_2_index\": 860, \"group\": [397.0, 278.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10170_BALBc-1_X01_Y01_1108_899\", \"ini\": 2790, \"clust\": 1259, \"rank\": 2222, \"rankvar\": 2166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 36, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 956, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1171, \"group\": [1259.0, 639.0, 183.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10432_BALBc-1_X01_Y01_1111_474\", \"ini\": 2789, \"clust\": 396, \"rank\": 1070, \"rankvar\": 2396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 37, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2343, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1331, \"group\": [393.0, 275.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10617_BALBc-1_X01_Y01_1113_927\", \"ini\": 2788, \"clust\": 111, \"rank\": 705, \"rankvar\": 1136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 38, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1592, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1014, \"group\": [115.0, 71.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10619_BALBc-1_X01_Y01_1113_965\", \"ini\": 2787, \"clust\": 603, \"rank\": 106, \"rankvar\": 1102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 39, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1593, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1457, \"group\": [603.0, 412.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10837_BALBc-1_X01_Y01_1116_858\", \"ini\": 2786, \"clust\": 1526, \"rank\": 2389, \"rankvar\": 2556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 40, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 734, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1015, \"group\": [1528.0, 825.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11085_BALBc-1_X01_Y01_112_387\", \"ini\": 2785, \"clust\": 963, \"rank\": 470, \"rankvar\": 622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 41, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 651, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1600, \"group\": [963.0, 494.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11633_BALBc-1_X01_Y01_1126_451\", \"ini\": 2784, \"clust\": 748, \"rank\": 306, \"rankvar\": 387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 42, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2344, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1172, \"group\": [755.0, 473.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11797_BALBc-1_X01_Y01_1128_484\", \"ini\": 2783, \"clust\": 2474, \"rank\": 1461, \"rankvar\": 1430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 43, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2345, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1458, \"group\": [2474.0, 1322.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12372_BALBc-1_X01_Y01_1135_41\", \"ini\": 2782, \"clust\": 1610, \"rank\": 1321, \"rankvar\": 1638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 44, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1594, \"cat-2\": \"Density: 16\", \"cat_2_index\": 47, \"group\": [1609.0, 888.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12571_BALBc-1_X01_Y01_1137_963\", \"ini\": 2781, \"clust\": 2753, \"rank\": 1763, \"rankvar\": 1387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 45, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 0, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1173, \"group\": [2752.0, 1487.0, 441.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12609_BALBc-1_X01_Y01_1138_500\", \"ini\": 2780, \"clust\": 690, \"rank\": 243, \"rankvar\": 1841, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 46, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2346, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1459, \"group\": [691.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13081_BALBc-1_X01_Y01_1143_436\", \"ini\": 2779, \"clust\": 1556, \"rank\": 965, \"rankvar\": 1755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 47, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 957, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1016, \"group\": [1555.0, 845.0, 245.0, 70.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13731_BALBc-1_X01_Y01_1150_998\", \"ini\": 2778, \"clust\": 2819, \"rank\": 2489, \"rankvar\": 2272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 48, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2347, \"cat-2\": \"Density: 26\", \"cat_2_index\": 715, \"group\": [2820.0, 1532.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13749_BALBc-1_X01_Y01_1151_281\", \"ini\": 2777, \"clust\": 929, \"rank\": 155, \"rankvar\": 467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 49, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2348, \"cat-2\": \"Density: 21\", \"cat_2_index\": 190, \"group\": [931.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13948_BALBc-1_X01_Y01_1153_833\", \"ini\": 2776, \"clust\": 1527, \"rank\": 2174, \"rankvar\": 2733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 50, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1689, \"cat-2\": \"Density: 26\", \"cat_2_index\": 716, \"group\": [1526.0, 825.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14037_BALBc-1_X01_Y01_1154_869\", \"ini\": 2775, \"clust\": 1528, \"rank\": 2024, \"rankvar\": 2455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 51, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1595, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1332, \"group\": [1527.0, 825.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14325_BALBc-1_X01_Y01_1158_916\", \"ini\": 2774, \"clust\": 1418, \"rank\": 1930, \"rankvar\": 1114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 52, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 1, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1017, \"group\": [1419.0, 766.0, 227.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14446_BALBc-1_X01_Y01_116_658\", \"ini\": 2773, \"clust\": 226, \"rank\": 1101, \"rankvar\": 1985, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 53, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1772, \"cat-2\": \"Density: 27\", \"cat_2_index\": 861, \"group\": [225.0, 157.0, 55.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14698_BALBc-1_X01_Y01_1162_538\", \"ini\": 2772, \"clust\": 1221, \"rank\": 1969, \"rankvar\": 2275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 54, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1773, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1826, \"group\": [1223.0, 613.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14855_BALBc-1_X01_Y01_1164_480\", \"ini\": 2771, \"clust\": 1576, \"rank\": 1658, \"rankvar\": 452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 55, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2349, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1716, \"group\": [1580.0, 866.0, 253.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15062_BALBc-1_X01_Y01_1166_964\", \"ini\": 2770, \"clust\": 2748, \"rank\": 1380, \"rankvar\": 1267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 56, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2350, \"cat-2\": \"Density: 27\", \"cat_2_index\": 862, \"group\": [2750.0, 1485.0, 440.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15797_BALBc-1_X01_Y01_1175_906\", \"ini\": 2769, \"clust\": 1353, \"rank\": 1211, \"rankvar\": 1225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 57, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 652, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1018, \"group\": [1354.0, 715.0, 212.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16293_BALBc-1_X01_Y01_1181_53\", \"ini\": 2768, \"clust\": 1291, \"rank\": 1569, \"rankvar\": 668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 58, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1774, \"cat-2\": \"Density: 16\", \"cat_2_index\": 48, \"group\": [1292.0, 663.0, 190.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16370_BALBc-1_X01_Y01_1182_491\", \"ini\": 2767, \"clust\": 279, \"rank\": 1446, \"rankvar\": 1480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 59, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1596, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1174, \"group\": [282.0, 204.0, 74.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16563_BALBc-1_X01_Y01_1184_941\", \"ini\": 2766, \"clust\": 371, \"rank\": 960, \"rankvar\": 1034, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 60, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2351, \"cat-2\": \"Density: 27\", \"cat_2_index\": 863, \"group\": [368.0, 255.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16691_BALBc-1_X01_Y01_1186_803\", \"ini\": 2765, \"clust\": 778, \"rank\": 126, \"rankvar\": 106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 61, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 735, \"cat-2\": \"Density: 25\", \"cat_2_index\": 592, \"group\": [779.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17060_BALBc-1_X01_Y01_1190_820\", \"ini\": 2764, \"clust\": 1799, \"rank\": 2698, \"rankvar\": 2789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 62, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 958, \"cat-2\": \"Density: 26\", \"cat_2_index\": 717, \"group\": [1805.0, 1019.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17493_BALBc-1_X01_Y01_1196_594\", \"ini\": 2763, \"clust\": 1277, \"rank\": 1288, \"rankvar\": 2417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 63, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1775, \"cat-2\": \"Density: 26\", \"cat_2_index\": 718, \"group\": [1276.0, 653.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17526_BALBc-1_X01_Y01_1196_998\", \"ini\": 2762, \"clust\": 2768, \"rank\": 1770, \"rankvar\": 1465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 64, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2352, \"cat-2\": \"Density: 26\", \"cat_2_index\": 719, \"group\": [2771.0, 1501.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17577_BALBc-1_X01_Y01_1197_786\", \"ini\": 2761, \"clust\": 568, \"rank\": 329, \"rankvar\": 2207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 65, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 736, \"cat-2\": \"Density: 24\", \"cat_2_index\": 469, \"group\": [568.0, 389.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17628_BALBc-1_X01_Y01_1198_413\", \"ini\": 2760, \"clust\": 1461, \"rank\": 2186, \"rankvar\": 2608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 66, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 959, \"cat-2\": \"Density: 26\", \"cat_2_index\": 720, \"group\": [1463.0, 797.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18640_BALBc-1_X01_Y01_1209_127\", \"ini\": 2759, \"clust\": 1380, \"rank\": 954, \"rankvar\": 1253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 67, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 960, \"cat-2\": \"Density: 20\", \"cat_2_index\": 137, \"group\": [1381.0, 734.0, 216.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19476_BALBc-1_X01_Y01_1219_513\", \"ini\": 2758, \"clust\": 1219, \"rank\": 1134, \"rankvar\": 1115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 68, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1776, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1019, \"group\": [1219.0, 611.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19678_BALBc-1_X01_Y01_1221_169\", \"ini\": 2757, \"clust\": 1370, \"rank\": 2524, \"rankvar\": 2564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 69, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1690, \"cat-2\": \"Density: 22\", \"cat_2_index\": 251, \"group\": [1369.0, 729.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19861_BALBc-1_X01_Y01_1223_430\", \"ini\": 2756, \"clust\": 1535, \"rank\": 2292, \"rankvar\": 2602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 70, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1597, \"cat-2\": \"Density: 27\", \"cat_2_index\": 864, \"group\": [1535.0, 831.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19879_BALBc-1_X01_Y01_1223_598\", \"ini\": 2755, \"clust\": 1651, \"rank\": 2208, \"rankvar\": 2670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 71, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2353, \"cat-2\": \"Density: 27\", \"cat_2_index\": 865, \"group\": [1651.0, 911.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20505_BALBc-1_X01_Y01_1230_928\", \"ini\": 2754, \"clust\": 1318, \"rank\": 750, \"rankvar\": 200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 72, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 653, \"cat-2\": \"Density: 25\", \"cat_2_index\": 593, \"group\": [1318.0, 686.0, 204.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20820_BALBc-1_X01_Y01_1234_752\", \"ini\": 2753, \"clust\": 307, \"rank\": 1918, \"rankvar\": 2640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 73, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 961, \"cat-2\": \"Density: 24\", \"cat_2_index\": 470, \"group\": [305.0, 215.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20832_BALBc-1_X01_Y01_1234_952\", \"ini\": 2752, \"clust\": 1278, \"rank\": 1208, \"rankvar\": 2471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 74, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2354, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1020, \"group\": [1277.0, 653.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21409_BALBc-1_X01_Y01_1241_777\", \"ini\": 2751, \"clust\": 1486, \"rank\": 2220, \"rankvar\": 2461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 75, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1777, \"cat-2\": \"Density: 24\", \"cat_2_index\": 471, \"group\": [1485.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21558_BALBc-1_X01_Y01_1243_856\", \"ini\": 2750, \"clust\": 1140, \"rank\": 655, \"rankvar\": 1279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 76, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 654, \"cat-2\": \"Density: 25\", \"cat_2_index\": 594, \"group\": [1141.0, 542.0, 149.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21876_BALBc-1_X01_Y01_1248_400\", \"ini\": 2749, \"clust\": 1497, \"rank\": 1521, \"rankvar\": 992, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 77, \"cat-1\": \"Neighbor: CD3(+) other markers (-)\", \"cat_1_index\": 947, \"cat-2\": \"Density: 23\", \"cat_2_index\": 354, \"group\": [1501.0, 811.0, 238.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22222_BALBc-1_X01_Y01_1251_971\", \"ini\": 2748, \"clust\": 978, \"rank\": 758, \"rankvar\": 746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 78, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 737, \"cat-2\": \"Density: 27\", \"cat_2_index\": 866, \"group\": [984.0, 505.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22283_BALBc-1_X01_Y01_1252_608\", \"ini\": 2747, \"clust\": 1652, \"rank\": 2006, \"rankvar\": 2245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 79, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2355, \"cat-2\": \"Density: 23\", \"cat_2_index\": 355, \"group\": [1652.0, 911.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22370_BALBc-1_X01_Y01_1253_930\", \"ini\": 2746, \"clust\": 1552, \"rank\": 1147, \"rankvar\": 942, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 80, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 738, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1021, \"group\": [1553.0, 843.0, 244.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22471_BALBc-1_X01_Y01_1255_479\", \"ini\": 2745, \"clust\": 1472, \"rank\": 2514, \"rankvar\": 2590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 81, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 739, \"cat-2\": \"Density: 27\", \"cat_2_index\": 867, \"group\": [1470.0, 802.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22920_BALBc-1_X01_Y01_1260_756\", \"ini\": 2744, \"clust\": 460, \"rank\": 1189, \"rankvar\": 699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 82, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 962, \"cat-2\": \"Density: 23\", \"cat_2_index\": 356, \"group\": [463.0, 323.0, 110.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23720_BALBc-1_X01_Y01_1271_214\", \"ini\": 2743, \"clust\": 873, \"rank\": 26, \"rankvar\": 479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 83, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1778, \"cat-2\": \"Density: 22\", \"cat_2_index\": 252, \"group\": [877.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23748_BALBc-1_X01_Y01_1271_543\", \"ini\": 2742, \"clust\": 1620, \"rank\": 2312, \"rankvar\": 2484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 84, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2356, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1175, \"group\": [1619.0, 892.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23973_BALBc-1_X01_Y01_1274_422\", \"ini\": 2741, \"clust\": 1688, \"rank\": 2307, \"rankvar\": 2750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 85, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1779, \"cat-2\": \"Density: 22\", \"cat_2_index\": 253, \"group\": [1688.0, 945.0, 281.0, 81.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24535_BALBc-1_X01_Y01_1281_350\", \"ini\": 2740, \"clust\": 653, \"rank\": 501, \"rankvar\": 234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 86, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 963, \"cat-2\": \"Density: 20\", \"cat_2_index\": 138, \"group\": [653.0, 437.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24998_BALBc-1_X01_Y01_1287_867\", \"ini\": 2739, \"clust\": 1400, \"rank\": 2259, \"rankvar\": 2228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 87, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 655, \"cat-2\": \"Density: 23\", \"cat_2_index\": 357, \"group\": [1401.0, 751.0, 221.0, 63.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25430_BALBc-1_X01_Y01_1292_741\", \"ini\": 2738, \"clust\": 1317, \"rank\": 666, \"rankvar\": 953, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 88, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1780, \"cat-2\": \"Density: 23\", \"cat_2_index\": 358, \"group\": [1320.0, 688.0, 204.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25531_BALBc-1_X01_Y01_1293_912\", \"ini\": 2737, \"clust\": 1532, \"rank\": 2207, \"rankvar\": 2393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 89, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1781, \"cat-2\": \"Density: 26\", \"cat_2_index\": 721, \"group\": [1533.0, 829.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25534_BALBc-1_X01_Y01_1293_926\", \"ini\": 2736, \"clust\": 1666, \"rank\": 1565, \"rankvar\": 1548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 90, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1782, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1333, \"group\": [1667.0, 924.0, 270.0, 76.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25729_BALBc-1_X01_Y01_1296_850\", \"ini\": 2735, \"clust\": 769, \"rank\": 53, \"rankvar\": 783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 91, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1598, \"cat-2\": \"Density: 25\", \"cat_2_index\": 595, \"group\": [771.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25779_BALBc-1_X01_Y01_1297_522\", \"ini\": 2734, \"clust\": 322, \"rank\": 1696, \"rankvar\": 2705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 92, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1783, \"cat-2\": \"Density: 27\", \"cat_2_index\": 868, \"group\": [322.0, 225.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26533_BALBc-1_X01_Y01_1306_107\", \"ini\": 2733, \"clust\": 1560, \"rank\": 1001, \"rankvar\": 1292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 93, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 740, \"cat-2\": \"Density: 21\", \"cat_2_index\": 191, \"group\": [1561.0, 850.0, 248.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27126_BALBc-1_X01_Y01_1313_325\", \"ini\": 2732, \"clust\": 1545, \"rank\": 1099, \"rankvar\": 1493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 94, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1784, \"cat-2\": \"Density: 23\", \"cat_2_index\": 359, \"group\": [1547.0, 838.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27291_BALBc-1_X01_Y01_1315_624\", \"ini\": 2731, \"clust\": 1474, \"rank\": 2723, \"rankvar\": 2521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 95, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1785, \"cat-2\": \"Density: 24\", \"cat_2_index\": 472, \"group\": [1490.0, 804.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27496_BALBc-1_X01_Y01_1318_358\", \"ini\": 2730, \"clust\": 1459, \"rank\": 2745, \"rankvar\": 2676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 96, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2473, \"cat-2\": \"Density: 23\", \"cat_2_index\": 360, \"group\": [1459.0, 795.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27658_BALBc-1_X01_Y01_132_746\", \"ini\": 2729, \"clust\": 1245, \"rank\": 1718, \"rankvar\": 1075, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 97, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2357, \"cat-2\": \"Density: 26\", \"cat_2_index\": 722, \"group\": [1246.0, 627.0, 179.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27856_BALBc-1_X01_Y01_1322_539\", \"ini\": 2728, \"clust\": 1592, \"rank\": 1418, \"rankvar\": 1572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 98, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2256, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1022, \"group\": [1594.0, 877.0, 256.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27868_BALBc-1_X01_Y01_1322_716\", \"ini\": 2727, \"clust\": 1536, \"rank\": 2206, \"rankvar\": 2428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 99, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 741, \"cat-2\": \"Density: 25\", \"cat_2_index\": 596, \"group\": [1536.0, 831.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28466_BALBc-1_X01_Y01_1329_929\", \"ini\": 2726, \"clust\": 2787, \"rank\": 2290, \"rankvar\": 2497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 100, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1786, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1601, \"group\": [2788.0, 1510.0, 450.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28618_BALBc-1_X01_Y01_1331_1005\", \"ini\": 2725, \"clust\": 1837, \"rank\": 1685, \"rankvar\": 1655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 101, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1787, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1334, \"group\": [1838.0, 1032.0, 309.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29005_BALBc-1_X01_Y01_1336_646\", \"ini\": 2724, \"clust\": 1557, \"rank\": 1557, \"rankvar\": 1239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 102, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1788, \"cat-2\": \"Density: 20\", \"cat_2_index\": 139, \"group\": [1556.0, 846.0, 245.0, 70.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29014_BALBc-1_X01_Y01_1336_791\", \"ini\": 2723, \"clust\": 1537, \"rank\": 2407, \"rankvar\": 2603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 103, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2257, \"cat-2\": \"Density: 27\", \"cat_2_index\": 869, \"group\": [1544.0, 836.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29210_BALBc-1_X01_Y01_134_634\", \"ini\": 2722, \"clust\": 1615, \"rank\": 1844, \"rankvar\": 2463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 104, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1599, \"cat-2\": \"Density: 26\", \"cat_2_index\": 723, \"group\": [1618.0, 891.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29734_BALBc-1_X01_Y01_140_392\", \"ini\": 2721, \"clust\": 1544, \"rank\": 1043, \"rankvar\": 1597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 105, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 742, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1602, \"group\": [1548.0, 839.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30018_BALBc-1_X01_Y01_144_355\", \"ini\": 2720, \"clust\": 964, \"rank\": 229, \"rankvar\": 1805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 106, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 743, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1927, \"group\": [964.0, 494.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30053_BALBc-1_X01_Y01_144_841\", \"ini\": 2719, \"clust\": 1747, \"rank\": 2649, \"rankvar\": 2714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 107, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1789, \"cat-2\": \"Density: 22\", \"cat_2_index\": 254, \"group\": [1746.0, 987.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30398_BALBc-1_X01_Y01_149_544\", \"ini\": 2718, \"clust\": 1097, \"rank\": 115, \"rankvar\": 125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 108, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1790, \"cat-2\": \"Density: 23\", \"cat_2_index\": 361, \"group\": [1097.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30507_BALBc-1_X01_Y01_15_762\", \"ini\": 2717, \"clust\": 1516, \"rank\": 2251, \"rankvar\": 2312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 109, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 744, \"cat-2\": \"Density: 15\", \"cat_2_index\": 33, \"group\": [1513.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30743_BALBc-1_X01_Y01_152_927\", \"ini\": 2716, \"clust\": 1499, \"rank\": 1988, \"rankvar\": 1937, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 110, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1791, \"cat-2\": \"Density: 22\", \"cat_2_index\": 255, \"group\": [1498.0, 809.0, 238.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30803_BALBc-1_X01_Y01_153_644\", \"ini\": 2715, \"clust\": 1458, \"rank\": 2484, \"rankvar\": 2280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 111, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1792, \"cat-2\": \"Density: 26\", \"cat_2_index\": 724, \"group\": [1497.0, 808.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31107_BALBc-1_X01_Y01_157_727\", \"ini\": 2714, \"clust\": 540, \"rank\": 617, \"rankvar\": 164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 112, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2358, \"cat-2\": \"Density: 27\", \"cat_2_index\": 870, \"group\": [538.0, 368.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32393_BALBc-1_X01_Y01_174_205\", \"ini\": 2713, \"clust\": 981, \"rank\": 439, \"rankvar\": 532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 113, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2359, \"cat-2\": \"Density: 26\", \"cat_2_index\": 725, \"group\": [983.0, 504.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32406_BALBc-1_X01_Y01_174_446\", \"ini\": 2712, \"clust\": 1609, \"rank\": 1635, \"rankvar\": 2051, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 114, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1793, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1335, \"group\": [1611.0, 888.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32440_BALBc-1_X01_Y01_174_937\", \"ini\": 2711, \"clust\": 1476, \"rank\": 2695, \"rankvar\": 2736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 115, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2221, \"cat-2\": \"Density: 23\", \"cat_2_index\": 362, \"group\": [1474.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33321_BALBc-1_X01_Y01_185_828\", \"ini\": 2710, \"clust\": 1477, \"rank\": 2640, \"rankvar\": 2772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 116, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1691, \"cat-2\": \"Density: 23\", \"cat_2_index\": 363, \"group\": [1475.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34399_BALBc-1_X01_Y01_199_788\", \"ini\": 2709, \"clust\": 339, \"rank\": 642, \"rankvar\": 1683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 117, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2360, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1023, \"group\": [339.0, 238.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34469_BALBc-1_X01_Y01_20_606\", \"ini\": 2708, \"clust\": 1749, \"rank\": 1185, \"rankvar\": 1843, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 118, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1794, \"cat-2\": \"Density: 15\", \"cat_2_index\": 34, \"group\": [1761.0, 997.0, 300.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34670_BALBc-1_X01_Y01_202_526\", \"ini\": 2707, \"clust\": 1285, \"rank\": 1315, \"rankvar\": 1945, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 119, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 656, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1176, \"group\": [1284.0, 656.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34677_BALBc-1_X01_Y01_202_578\", \"ini\": 2706, \"clust\": 2410, \"rank\": 1791, \"rankvar\": 787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 120, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1795, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1177, \"group\": [2412.0, 1282.0, 384.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34817_BALBc-1_X01_Y01_204_297\", \"ini\": 2705, \"clust\": 1403, \"rank\": 1358, \"rankvar\": 991, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 121, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1692, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1336, \"group\": [1404.0, 754.0, 222.0, 63.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34866_BALBc-1_X01_Y01_204_930\", \"ini\": 2704, \"clust\": 2411, \"rank\": 890, \"rankvar\": 588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 122, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2361, \"cat-2\": \"Density: 23\", \"cat_2_index\": 364, \"group\": [2410.0, 1280.0, 383.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35315_BALBc-1_X01_Y01_210_142\", \"ini\": 2703, \"clust\": 288, \"rank\": 1381, \"rankvar\": 2654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 123, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1796, \"cat-2\": \"Density: 23\", \"cat_2_index\": 365, \"group\": [288.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35570_BALBc-1_X01_Y01_213_684\", \"ini\": 2702, \"clust\": 1503, \"rank\": 2780, \"rankvar\": 2689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 124, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1797, \"cat-2\": \"Density: 26\", \"cat_2_index\": 726, \"group\": [1502.0, 812.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35785_BALBc-1_X01_Y01_216_442\", \"ini\": 2701, \"clust\": 711, \"rank\": 244, \"rankvar\": 1389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 125, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1798, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1603, \"group\": [709.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36633_BALBc-1_X01_Y01_227_305\", \"ini\": 2700, \"clust\": 1334, \"rank\": 1460, \"rankvar\": 1888, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 126, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1534, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1337, \"group\": [1335.0, 701.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36710_BALBc-1_X01_Y01_228_469\", \"ini\": 2699, \"clust\": 605, \"rank\": 317, \"rankvar\": 42, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 127, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1799, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1178, \"group\": [605.0, 412.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36780_BALBc-1_X01_Y01_229_278\", \"ini\": 2698, \"clust\": 219, \"rank\": 1214, \"rankvar\": 1196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 128, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1535, \"cat-2\": \"Density: 23\", \"cat_2_index\": 366, \"group\": [219.0, 151.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37147_BALBc-1_X01_Y01_233_345\", \"ini\": 2697, \"clust\": 1336, \"rank\": 878, \"rankvar\": 1563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 129, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 964, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1338, \"group\": [1339.0, 703.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37192_BALBc-1_X01_Y01_233_984\", \"ini\": 2696, \"clust\": 1328, \"rank\": 2091, \"rankvar\": 2237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 130, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2222, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1024, \"group\": [1328.0, 695.0, 207.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37390_BALBc-1_X01_Y01_236_829\", \"ini\": 2695, \"clust\": 1261, \"rank\": 1202, \"rankvar\": 2440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 131, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1693, \"cat-2\": \"Density: 27\", \"cat_2_index\": 871, \"group\": [1264.0, 643.0, 185.0, 52.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37665_BALBc-1_X01_Y01_24_582\", \"ini\": 2694, \"clust\": 1218, \"rank\": 1758, \"rankvar\": 1815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 132, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1800, \"cat-2\": \"Density: 14\", \"cat_2_index\": 26, \"group\": [1224.0, 614.0, 175.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38087_BALBc-1_X01_Y01_245_436\", \"ini\": 2693, \"clust\": 1039, \"rank\": 476, \"rankvar\": 353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 133, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2362, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1604, \"group\": [1039.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38121_BALBc-1_X01_Y01_245_812\", \"ini\": 2692, \"clust\": 225, \"rank\": 827, \"rankvar\": 1560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 134, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2363, \"cat-2\": \"Density: 27\", \"cat_2_index\": 872, \"group\": [227.0, 158.0, 55.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38523_BALBc-1_X01_Y01_250_505\", \"ini\": 2691, \"clust\": 885, \"rank\": 73, \"rankvar\": 113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 135, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1801, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1025, \"group\": [893.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38805_BALBc-1_X01_Y01_253_960\", \"ini\": 2690, \"clust\": 41, \"rank\": 688, \"rankvar\": 1270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 136, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2474, \"cat-2\": \"Density: 26\", \"cat_2_index\": 727, \"group\": [43.0, 36.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38981_BALBc-1_X01_Y01_256_369\", \"ini\": 2689, \"clust\": 809, \"rank\": 50, \"rankvar\": 328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 137, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2364, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1460, \"group\": [808.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39031_BALBc-1_X01_Y01_256_980\", \"ini\": 2688, \"clust\": 1389, \"rank\": 2690, \"rankvar\": 2400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 138, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1802, \"cat-2\": \"Density: 26\", \"cat_2_index\": 728, \"group\": [1391.0, 742.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39262_BALBc-1_X01_Y01_26_273\", \"ini\": 2687, \"clust\": 1442, \"rank\": 2684, \"rankvar\": 2740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 139, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1803, \"cat-2\": \"Density: 17\", \"cat_2_index\": 68, \"group\": [1446.0, 785.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39659_BALBc-1_X01_Y01_264_554\", \"ini\": 2686, \"clust\": 1414, \"rank\": 2090, \"rankvar\": 1524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 140, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1694, \"cat-2\": \"Density: 27\", \"cat_2_index\": 873, \"group\": [1413.0, 762.0, 226.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39807_BALBc-1_X01_Y01_266_477\", \"ini\": 2685, \"clust\": 1443, \"rank\": 2631, \"rankvar\": 2404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 141, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1695, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1605, \"group\": [1442.0, 784.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39811_BALBc-1_X01_Y01_266_516\", \"ini\": 2684, \"clust\": 1694, \"rank\": 1707, \"rankvar\": 2454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 142, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1696, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1179, \"group\": [1697.0, 954.0, 285.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40558_BALBc-1_X01_Y01_275_814\", \"ini\": 2683, \"clust\": 1287, \"rank\": 1628, \"rankvar\": 273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 143, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2365, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1180, \"group\": [1288.0, 659.0, 189.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41204_BALBc-1_X01_Y01_283_369\", \"ini\": 2682, \"clust\": 1495, \"rank\": 2800, \"rankvar\": 2741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 144, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 965, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1181, \"group\": [1493.0, 806.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41354_BALBc-1_X01_Y01_285_575\", \"ini\": 2681, \"clust\": 1606, \"rank\": 1161, \"rankvar\": 2123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 145, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1804, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1606, \"group\": [1605.0, 887.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41940_BALBc-1_X01_Y01_292_456\", \"ini\": 2680, \"clust\": 1469, \"rank\": 2216, \"rankvar\": 1746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 146, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1697, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1928, \"group\": [1469.0, 801.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41976_BALBc-1_X01_Y01_292_937\", \"ini\": 2679, \"clust\": 1585, \"rank\": 1006, \"rankvar\": 1263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 147, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1805, \"cat-2\": \"Density: 27\", \"cat_2_index\": 874, \"group\": [1588.0, 871.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42301_BALBc-1_X01_Y01_297_556\", \"ini\": 2678, \"clust\": 1725, \"rank\": 2405, \"rankvar\": 1557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 148, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1698, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1461, \"group\": [1731.0, 976.0, 291.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42630_BALBc-1_X01_Y01_300_775\", \"ini\": 2677, \"clust\": 224, \"rank\": 1296, \"rankvar\": 1129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 149, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2366, \"cat-2\": \"Density: 25\", \"cat_2_index\": 597, \"group\": [228.0, 159.0, 55.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42740_BALBc-1_X01_Y01_302_128\", \"ini\": 2676, \"clust\": 1451, \"rank\": 1586, \"rankvar\": 1844, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 150, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1600, \"cat-2\": \"Density: 22\", \"cat_2_index\": 256, \"group\": [1454.0, 791.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43040_BALBc-1_X01_Y01_306_364\", \"ini\": 2675, \"clust\": 1364, \"rank\": 2409, \"rankvar\": 2363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 151, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 966, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1717, \"group\": [1365.0, 726.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43178_BALBc-1_X01_Y01_308_412\", \"ini\": 2674, \"clust\": 1440, \"rank\": 2722, \"rankvar\": 2574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 152, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2367, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2136, \"group\": [1439.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43217_BALBc-1_X01_Y01_308_969\", \"ini\": 2673, \"clust\": 216, \"rank\": 1037, \"rankvar\": 1026, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 153, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2475, \"cat-2\": \"Density: 27\", \"cat_2_index\": 875, \"group\": [216.0, 148.0, 52.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43287_BALBc-1_X01_Y01_309_987\", \"ini\": 2672, \"clust\": 1633, \"rank\": 2634, \"rankvar\": 2648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 154, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2476, \"cat-2\": \"Density: 27\", \"cat_2_index\": 876, \"group\": [1635.0, 900.0, 261.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43697_BALBc-1_X01_Y01_314_444\", \"ini\": 2671, \"clust\": 1492, \"rank\": 2368, \"rankvar\": 1513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 155, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 2, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2218, \"group\": [1491.0, 805.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43943_BALBc-1_X01_Y01_317_804\", \"ini\": 2670, \"clust\": 370, \"rank\": 1003, \"rankvar\": 1689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 156, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2368, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1339, \"group\": [370.0, 256.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44052_BALBc-1_X01_Y01_318_913\", \"ini\": 2669, \"clust\": 620, \"rank\": 289, \"rankvar\": 1012, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 157, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2258, \"cat-2\": \"Density: 26\", \"cat_2_index\": 729, \"group\": [623.0, 420.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44139_BALBc-1_X01_Y01_32_289\", \"ini\": 2668, \"clust\": 2547, \"rank\": 2461, \"rankvar\": 2758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 158, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1806, \"cat-2\": \"Density: 18\", \"cat_2_index\": 87, \"group\": [2547.0, 1372.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44170_BALBc-1_X01_Y01_32_755\", \"ini\": 2667, \"clust\": 2240, \"rank\": 1847, \"rankvar\": 1474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 159, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 745, \"cat-2\": \"Density: 16\", \"cat_2_index\": 49, \"group\": [2242.0, 1220.0, 366.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44230_BALBc-1_X01_Y01_320_524\", \"ini\": 2666, \"clust\": 1713, \"rank\": 2638, \"rankvar\": 2632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 160, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1699, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1462, \"group\": [1714.0, 966.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44536_BALBc-1_X01_Y01_324_441\", \"ini\": 2665, \"clust\": 1572, \"rank\": 489, \"rankvar\": 1948, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 161, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2369, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2363, \"group\": [1573.0, 860.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44775_BALBc-1_X01_Y01_327_457\", \"ini\": 2664, \"clust\": 608, \"rank\": 385, \"rankvar\": 432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 162, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2370, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2364, \"group\": [609.0, 413.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45547_BALBc-1_X01_Y01_336_358\", \"ini\": 2663, \"clust\": 40, \"rank\": 807, \"rankvar\": 1776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 163, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 657, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1607, \"group\": [44.0, 37.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45620_BALBc-1_X01_Y01_337_515\", \"ini\": 2662, \"clust\": 1237, \"rank\": 990, \"rankvar\": 1940, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 164, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 967, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2042, \"group\": [1237.0, 622.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45792_BALBc-1_X01_Y01_339_781\", \"ini\": 2661, \"clust\": 222, \"rank\": 1210, \"rankvar\": 1031, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 165, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2259, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1463, \"group\": [221.0, 153.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46150_BALBc-1_X01_Y01_343_551\", \"ini\": 2660, \"clust\": 1622, \"rank\": 1865, \"rankvar\": 2683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 166, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 968, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1182, \"group\": [1623.0, 893.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46164_BALBc-1_X01_Y01_343_747\", \"ini\": 2659, \"clust\": 291, \"rank\": 1372, \"rankvar\": 2695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 167, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1807, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1026, \"group\": [292.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46255_BALBc-1_X01_Y01_344_899\", \"ini\": 2658, \"clust\": 1502, \"rank\": 2538, \"rankvar\": 2687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 168, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1808, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1183, \"group\": [1504.0, 813.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46297_BALBc-1_X01_Y01_345_451\", \"ini\": 2657, \"clust\": 1580, \"rank\": 1322, \"rankvar\": 1332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 169, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2371, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2137, \"group\": [1581.0, 867.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46315_BALBc-1_X01_Y01_345_681\", \"ini\": 2656, \"clust\": 820, \"rank\": 135, \"rankvar\": 12, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 170, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2260, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1027, \"group\": [819.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46829_BALBc-1_X01_Y01_351_348\", \"ini\": 2655, \"clust\": 1470, \"rank\": 2268, \"rankvar\": 2367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 171, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 969, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1608, \"group\": [1473.0, 802.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46843_BALBc-1_X01_Y01_351_600\", \"ini\": 2654, \"clust\": 1441, \"rank\": 2778, \"rankvar\": 2663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 172, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1809, \"cat-2\": \"Density: 25\", \"cat_2_index\": 598, \"group\": [1440.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46930_BALBc-1_X01_Y01_352_655\", \"ini\": 2653, \"clust\": 655, \"rank\": 578, \"rankvar\": 420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 173, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1810, \"cat-2\": \"Density: 23\", \"cat_2_index\": 367, \"group\": [655.0, 438.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47025_BALBc-1_X01_Y01_353_977\", \"ini\": 2652, \"clust\": 1329, \"rank\": 1439, \"rankvar\": 2544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 174, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2223, \"cat-2\": \"Density: 26\", \"cat_2_index\": 730, \"group\": [1329.0, 696.0, 207.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47116_BALBc-1_X01_Y01_355_165\", \"ini\": 2651, \"clust\": 1574, \"rank\": 1998, \"rankvar\": 2403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 175, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1700, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1028, \"group\": [1575.0, 861.0, 252.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47124_BALBc-1_X01_Y01_355_25\", \"ini\": 2650, \"clust\": 1141, \"rank\": 430, \"rankvar\": 569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 176, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1811, \"cat-2\": \"Density: 13\", \"cat_2_index\": 11, \"group\": [1142.0, 543.0, 149.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47290_BALBc-1_X01_Y01_357_393\", \"ini\": 2649, \"clust\": 1425, \"rank\": 1018, \"rankvar\": 1981, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 177, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 658, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1929, \"group\": [1424.0, 770.0, 229.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48026_BALBc-1_X01_Y01_366_429\", \"ini\": 2648, \"clust\": 1342, \"rank\": 1087, \"rankvar\": 1957, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 178, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2372, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1930, \"group\": [1343.0, 707.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48028_BALBc-1_X01_Y01_366_461\", \"ini\": 2647, \"clust\": 930, \"rank\": 367, \"rankvar\": 149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 179, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1601, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1931, \"group\": [929.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48335_BALBc-1_X01_Y01_37_313\", \"ini\": 2646, \"clust\": 1482, \"rank\": 2750, \"rankvar\": 2796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 180, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 746, \"cat-2\": \"Density: 23\", \"cat_2_index\": 368, \"group\": [1480.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48557_BALBc-1_X01_Y01_372_492\", \"ini\": 2645, \"clust\": 1036, \"rank\": 313, \"rankvar\": 473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 181, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 970, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2138, \"group\": [1036.0, 521.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48582_BALBc-1_X01_Y01_372_692\", \"ini\": 2644, \"clust\": 1494, \"rank\": 2820, \"rankvar\": 2785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 182, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2373, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1340, \"group\": [1495.0, 806.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48853_BALBc-1_X01_Y01_376_314\", \"ini\": 2643, \"clust\": 1479, \"rank\": 2754, \"rankvar\": 2662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 971, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1184, \"group\": [1477.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49055_BALBc-1_X01_Y01_378_862\", \"ini\": 2642, \"clust\": 1744, \"rank\": 1974, \"rankvar\": 1617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 184, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2261, \"cat-2\": \"Density: 27\", \"cat_2_index\": 877, \"group\": [1748.0, 989.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49397_BALBc-1_X01_Y01_382_422\", \"ini\": 2641, \"clust\": 1292, \"rank\": 1220, \"rankvar\": 1144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 185, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 659, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2043, \"group\": [1290.0, 661.0, 190.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49496_BALBc-1_X01_Y01_383_563\", \"ini\": 2640, \"clust\": 1500, \"rank\": 1833, \"rankvar\": 2369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 186, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 972, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1464, \"group\": [1499.0, 809.0, 238.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50108_BALBc-1_X01_Y01_390_456\", \"ini\": 2639, \"clust\": 341, \"rank\": 692, \"rankvar\": 399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 187, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1602, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2044, \"group\": [344.0, 240.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50236_BALBc-1_X01_Y01_392_183\", \"ini\": 2638, \"clust\": 1445, \"rank\": 2172, \"rankvar\": 2172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 188, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1812, \"cat-2\": \"Density: 27\", \"cat_2_index\": 878, \"group\": [1444.0, 784.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50329_BALBc-1_X01_Y01_393_436\", \"ini\": 2637, \"clust\": 1330, \"rank\": 1667, \"rankvar\": 2529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 189, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 3, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2139, \"group\": [1331.0, 698.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50622_BALBc-1_X01_Y01_397_212\", \"ini\": 2636, \"clust\": 1558, \"rank\": 1219, \"rankvar\": 1861, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 190, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1701, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1029, \"group\": [1559.0, 849.0, 248.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50633_BALBc-1_X01_Y01_397_371\", \"ini\": 2635, \"clust\": 1473, \"rank\": 2118, \"rankvar\": 2186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 191, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 660, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2219, \"group\": [1471.0, 802.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50940_BALBc-1_X01_Y01_40_516\", \"ini\": 2634, \"clust\": 1710, \"rank\": 2464, \"rankvar\": 2659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 192, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2374, \"cat-2\": \"Density: 22\", \"cat_2_index\": 257, \"group\": [1710.0, 962.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50944_BALBc-1_X01_Y01_40_562\", \"ini\": 2633, \"clust\": 340, \"rank\": 162, \"rankvar\": 1719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 193, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1813, \"cat-2\": \"Density: 19\", \"cat_2_index\": 112, \"group\": [340.0, 238.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51105_BALBc-1_X01_Y01_401_748\", \"ini\": 2632, \"clust\": 305, \"rank\": 1609, \"rankvar\": 2006, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 194, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2375, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1030, \"group\": [308.0, 216.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51247_BALBc-1_X01_Y01_403_851\", \"ini\": 2631, \"clust\": 462, \"rank\": 996, \"rankvar\": 2561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 195, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2262, \"cat-2\": \"Density: 27\", \"cat_2_index\": 879, \"group\": [462.0, 322.0, 109.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51412_BALBc-1_X01_Y01_405_776\", \"ini\": 2630, \"clust\": 1230, \"rank\": 2170, \"rankvar\": 2696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 196, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2263, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1718, \"group\": [1231.0, 620.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51444_BALBc-1_X01_Y01_406_240\", \"ini\": 2629, \"clust\": 1573, \"rank\": 846, \"rankvar\": 719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 197, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2376, \"cat-2\": \"Density: 25\", \"cat_2_index\": 599, \"group\": [1574.0, 860.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51463_BALBc-1_X01_Y01_406_433\", \"ini\": 2628, \"clust\": 1480, \"rank\": 2803, \"rankvar\": 2795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 198, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 661, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1719, \"group\": [1478.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51525_BALBc-1_X01_Y01_407_279\", \"ini\": 2627, \"clust\": 1475, \"rank\": 2665, \"rankvar\": 2692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 199, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 662, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1341, \"group\": [1476.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51947_BALBc-1_X01_Y01_411_566\", \"ini\": 2626, \"clust\": 1565, \"rank\": 467, \"rankvar\": 961, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 200, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2377, \"cat-2\": \"Density: 27\", \"cat_2_index\": 880, \"group\": [1566.0, 855.0, 250.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51995_BALBc-1_X01_Y01_412_107\", \"ini\": 2625, \"clust\": 1225, \"rank\": 1178, \"rankvar\": 2276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 201, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1814, \"cat-2\": \"Density: 23\", \"cat_2_index\": 369, \"group\": [1229.0, 618.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52220_BALBc-1_X01_Y01_414_632\", \"ini\": 2624, \"clust\": 1335, \"rank\": 1525, \"rankvar\": 1798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 202, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2378, \"cat-2\": \"Density: 27\", \"cat_2_index\": 881, \"group\": [1336.0, 701.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52340_BALBc-1_X01_Y01_416_366\", \"ini\": 2623, \"clust\": 705, \"rank\": 70, \"rankvar\": 1953, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 203, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2501, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1932, \"group\": [703.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52585_BALBc-1_X01_Y01_419_56\", \"ini\": 2622, \"clust\": 1619, \"rank\": 1999, \"rankvar\": 2444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 204, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1815, \"cat-2\": \"Density: 19\", \"cat_2_index\": 113, \"group\": [1621.0, 892.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53186_BALBc-1_X01_Y01_426_497\", \"ini\": 2621, \"clust\": 1449, \"rank\": 2190, \"rankvar\": 2085, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 205, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1816, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1827, \"group\": [1448.0, 787.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53439_BALBc-1_X01_Y01_429_519\", \"ini\": 2620, \"clust\": 714, \"rank\": 403, \"rankvar\": 924, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 206, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1817, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1465, \"group\": [714.0, 458.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53460_BALBc-1_X01_Y01_429_728\", \"ini\": 2619, \"clust\": 1170, \"rank\": 541, \"rankvar\": 1439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 207, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2379, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1720, \"group\": [1170.0, 566.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54293_BALBc-1_X01_Y01_439_281\", \"ini\": 2618, \"clust\": 1426, \"rank\": 1492, \"rankvar\": 2017, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 208, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1603, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1609, \"group\": [1425.0, 771.0, 229.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54995_BALBc-1_X01_Y01_447_636\", \"ini\": 2617, \"clust\": 1232, \"rank\": 670, \"rankvar\": 2032, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 209, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2380, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1031, \"group\": [1236.0, 621.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55049_BALBc-1_X01_Y01_448_341\", \"ini\": 2616, \"clust\": 1247, \"rank\": 2509, \"rankvar\": 2500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 210, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 663, \"cat-2\": \"Density: 27\", \"cat_2_index\": 882, \"group\": [1250.0, 631.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55837_BALBc-1_X01_Y01_457_685\", \"ini\": 2615, \"clust\": 946, \"rank\": 104, \"rankvar\": 103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 211, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2381, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1933, \"group\": [947.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55843_BALBc-1_X01_Y01_457_714\", \"ini\": 2614, \"clust\": 55, \"rank\": 947, \"rankvar\": 1287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 212, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2382, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1828, \"group\": [56.0, 45.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56224_BALBc-1_X01_Y01_461_819\", \"ini\": 2613, \"clust\": 1297, \"rank\": 1343, \"rankvar\": 1611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 213, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1818, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1342, \"group\": [1300.0, 671.0, 196.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56566_BALBc-1_X01_Y01_466_376\", \"ini\": 2612, \"clust\": 960, \"rank\": 520, \"rankvar\": 1525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 214, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 664, \"cat-2\": \"Density: 27\", \"cat_2_index\": 883, \"group\": [961.0, 492.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56664_BALBc-1_X01_Y01_467_502\", \"ini\": 2611, \"clust\": 1019, \"rank\": 510, \"rankvar\": 88, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 215, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2383, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1466, \"group\": [1033.0, 519.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56683_BALBc-1_X01_Y01_467_748\", \"ini\": 2610, \"clust\": 1105, \"rank\": 266, \"rankvar\": 580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 216, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 973, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1829, \"group\": [1104.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56772_BALBc-1_X01_Y01_468_926\", \"ini\": 2609, \"clust\": 1233, \"rank\": 1054, \"rankvar\": 2285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 217, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 891, \"cat-2\": \"Density: 25\", \"cat_2_index\": 600, \"group\": [1235.0, 621.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56830_BALBc-1_X01_Y01_469_709\", \"ini\": 2608, \"clust\": 1748, \"rank\": 2283, \"rankvar\": 2598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 218, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 974, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1830, \"group\": [1747.0, 988.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57728_BALBc-1_X01_Y01_48_342\", \"ini\": 2607, \"clust\": 1222, \"rank\": 1796, \"rankvar\": 2352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 219, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2384, \"cat-2\": \"Density: 25\", \"cat_2_index\": 601, \"group\": [1221.0, 612.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57798_BALBc-1_X01_Y01_480_352\", \"ini\": 2606, \"clust\": 1138, \"rank\": 803, \"rankvar\": 1185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 220, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2385, \"cat-2\": \"Density: 27\", \"cat_2_index\": 884, \"group\": [1139.0, 541.0, 149.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57888_BALBc-1_X01_Y01_481_332\", \"ini\": 2605, \"clust\": 280, \"rank\": 1352, \"rankvar\": 2263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 221, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 975, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1032, \"group\": [280.0, 202.0, 74.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58066_BALBc-1_X01_Y01_483_751\", \"ini\": 2604, \"clust\": 1239, \"rank\": 1169, \"rankvar\": 1426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 222, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 976, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1610, \"group\": [1243.0, 624.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58300_BALBc-1_X01_Y01_486_59\", \"ini\": 2603, \"clust\": 1139, \"rank\": 839, \"rankvar\": 1356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 223, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2224, \"cat-2\": \"Density: 17\", \"cat_2_index\": 69, \"group\": [1140.0, 541.0, 149.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58405_BALBc-1_X01_Y01_487_989\", \"ini\": 2602, \"clust\": 1483, \"rank\": 2762, \"rankvar\": 2761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 224, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1819, \"cat-2\": \"Density: 22\", \"cat_2_index\": 258, \"group\": [1481.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58769_BALBc-1_X01_Y01_491_835\", \"ini\": 2601, \"clust\": 1331, \"rank\": 1694, \"rankvar\": 2345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 225, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2386, \"cat-2\": \"Density: 25\", \"cat_2_index\": 602, \"group\": [1332.0, 699.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59185_BALBc-1_X01_Y01_496_860\", \"ini\": 2600, \"clust\": 286, \"rank\": 1549, \"rankvar\": 2798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 226, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2387, \"cat-2\": \"Density: 22\", \"cat_2_index\": 259, \"group\": [286.0, 208.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59663_BALBc-1_X01_Y01_501_885\", \"ini\": 2599, \"clust\": 1518, \"rank\": 2588, \"rankvar\": 2637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 227, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2388, \"cat-2\": \"Density: 23\", \"cat_2_index\": 370, \"group\": [1516.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59817_BALBc-1_X01_Y01_504_173\", \"ini\": 2598, \"clust\": 1597, \"rank\": 1077, \"rankvar\": 919, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 228, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1820, \"cat-2\": \"Density: 26\", \"cat_2_index\": 731, \"group\": [1598.0, 880.0, 257.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60154_BALBc-1_X01_Y01_508_261\", \"ini\": 2597, \"clust\": 1690, \"rank\": 2622, \"rankvar\": 2815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 229, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1821, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1185, \"group\": [1691.0, 948.0, 284.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60544_BALBc-1_X01_Y01_512_387\", \"ini\": 2596, \"clust\": 697, \"rank\": 151, \"rankvar\": 794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 230, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2806, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1033, \"group\": [700.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61293_BALBc-1_X01_Y01_520_799\", \"ini\": 2595, \"clust\": 1268, \"rank\": 1389, \"rankvar\": 2726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 231, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 977, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1034, \"group\": [1268.0, 647.0, 187.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61360_BALBc-1_X01_Y01_521_696\", \"ini\": 2594, \"clust\": 1687, \"rank\": 2161, \"rankvar\": 2225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 232, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 978, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1721, \"group\": [1690.0, 947.0, 283.0, 81.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61696_BALBc-1_X01_Y01_525_94\", \"ini\": 2593, \"clust\": 574, \"rank\": 534, \"rankvar\": 1154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 233, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2225, \"cat-2\": \"Density: 18\", \"cat_2_index\": 88, \"group\": [573.0, 391.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62336_BALBc-1_X01_Y01_533_397\", \"ini\": 2592, \"clust\": 2404, \"rank\": 1405, \"rankvar\": 2260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 234, \"cat-1\": \"Neighbor: plasma cells\", \"cat_1_index\": 2824, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1186, \"group\": [2405.0, 1275.0, 379.0, 103.0, 21.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62423_BALBc-1_X01_Y01_534_722\", \"ini\": 2591, \"clust\": 621, \"rank\": 504, \"rankvar\": 872, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 235, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 979, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1831, \"group\": [621.0, 420.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62444_BALBc-1_X01_Y01_534_959\", \"ini\": 2590, \"clust\": 1533, \"rank\": 1730, \"rankvar\": 2414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 236, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 892, \"cat-2\": \"Density: 25\", \"cat_2_index\": 603, \"group\": [1534.0, 830.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63078_BALBc-1_X01_Y01_542_700\", \"ini\": 2589, \"clust\": 1884, \"rank\": 2666, \"rankvar\": 2787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 237, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2389, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1832, \"group\": [1887.0, 1077.0, 328.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63087_BALBc-1_X01_Y01_542_797\", \"ini\": 2588, \"clust\": 1421, \"rank\": 2605, \"rankvar\": 2652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 238, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 980, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1035, \"group\": [1421.0, 768.0, 228.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63522_BALBc-1_X01_Y01_547_973\", \"ini\": 2587, \"clust\": 48, \"rank\": 490, \"rankvar\": 513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 239, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1822, \"cat-2\": \"Density: 26\", \"cat_2_index\": 732, \"group\": [48.0, 40.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63778_BALBc-1_X01_Y01_550_157\", \"ini\": 2586, \"clust\": 1570, \"rank\": 394, \"rankvar\": 1766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 240, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1823, \"cat-2\": \"Density: 24\", \"cat_2_index\": 473, \"group\": [1570.0, 859.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63964_BALBc-1_X01_Y01_552_62\", \"ini\": 2585, \"clust\": 306, \"rank\": 2342, \"rankvar\": 2801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 241, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1824, \"cat-2\": \"Density: 15\", \"cat_2_index\": 35, \"group\": [307.0, 215.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64005_BALBc-1_X01_Y01_553_25\", \"ini\": 2584, \"clust\": 927, \"rank\": 357, \"rankvar\": 171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 242, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2226, \"cat-2\": \"Density: 10\", \"cat_2_index\": 2, \"group\": [928.0, 481.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64010_BALBc-1_X01_Y01_553_292\", \"ini\": 2583, \"clust\": 967, \"rank\": 327, \"rankvar\": 1451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 243, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1825, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1036, \"group\": [967.0, 495.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65182_BALBc-1_X01_Y01_567_223\", \"ini\": 2582, \"clust\": 1365, \"rank\": 2111, \"rankvar\": 2292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 244, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2264, \"cat-2\": \"Density: 25\", \"cat_2_index\": 604, \"group\": [1366.0, 727.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65656_BALBc-1_X01_Y01_572_784\", \"ini\": 2581, \"clust\": 1616, \"rank\": 1771, \"rankvar\": 1970, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 245, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 981, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1187, \"group\": [1616.0, 891.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66746_BALBc-1_X01_Y01_586_262\", \"ini\": 2580, \"clust\": 649, \"rank\": 173, \"rankvar\": 148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 246, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2265, \"cat-2\": \"Density: 25\", \"cat_2_index\": 605, \"group\": [649.0, 436.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66807_BALBc-1_X01_Y01_586_921\", \"ini\": 2579, \"clust\": 1265, \"rank\": 2381, \"rankvar\": 2547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 247, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 747, \"cat-2\": \"Density: 24\", \"cat_2_index\": 474, \"group\": [1265.0, 644.0, 186.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67268_BALBc-1_X01_Y01_591_693\", \"ini\": 2578, \"clust\": 2241, \"rank\": 2198, \"rankvar\": 1400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 248, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2390, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1833, \"group\": [2240.0, 1219.0, 366.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67677_BALBc-1_X01_Y01_596_954\", \"ini\": 2577, \"clust\": 1844, \"rank\": 1856, \"rankvar\": 1830, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 249, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 982, \"cat-2\": \"Density: 22\", \"cat_2_index\": 260, \"group\": [1845.0, 1038.0, 311.0, 86.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68075_BALBc-1_X01_Y01_600_937\", \"ini\": 2576, \"clust\": 1741, \"rank\": 1766, \"rankvar\": 1658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 250, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 983, \"cat-2\": \"Density: 23\", \"cat_2_index\": 371, \"group\": [1742.0, 985.0, 296.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68258_BALBc-1_X01_Y01_603_416\", \"ini\": 2575, \"clust\": 1372, \"rank\": 2642, \"rankvar\": 2715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 251, \"cat-1\": \"Neighbor: plasma cells\", \"cat_1_index\": 2825, \"cat-2\": \"Density: 26\", \"cat_2_index\": 733, \"group\": [1373.0, 730.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68390_BALBc-1_X01_Y01_605_263\", \"ini\": 2574, \"clust\": 309, \"rank\": 1031, \"rankvar\": 2452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 252, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 748, \"cat-2\": \"Density: 26\", \"cat_2_index\": 734, \"group\": [317.0, 221.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68460_BALBc-1_X01_Y01_605_972\", \"ini\": 2573, \"clust\": 1302, \"rank\": 1377, \"rankvar\": 1812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 253, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 984, \"cat-2\": \"Density: 23\", \"cat_2_index\": 372, \"group\": [1301.0, 672.0, 197.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68786_BALBc-1_X01_Y01_609_707\", \"ini\": 2572, \"clust\": 563, \"rank\": 754, \"rankvar\": 1300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 254, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2391, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1722, \"group\": [564.0, 388.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69393_BALBc-1_X01_Y01_616_802\", \"ini\": 2571, \"clust\": 1227, \"rank\": 2109, \"rankvar\": 2391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 255, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 985, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1037, \"group\": [1227.0, 616.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69452_BALBc-1_X01_Y01_617_654\", \"ini\": 2570, \"clust\": 1220, \"rank\": 1631, \"rankvar\": 1800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 256, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2392, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1467, \"group\": [1220.0, 611.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69556_BALBc-1_X01_Y01_618_844\", \"ini\": 2569, \"clust\": 1431, \"rank\": 2261, \"rankvar\": 2205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 257, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 986, \"cat-2\": \"Density: 23\", \"cat_2_index\": 373, \"group\": [1431.0, 777.0, 233.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69767_BALBc-1_X01_Y01_620_771\", \"ini\": 2568, \"clust\": 1806, \"rank\": 1398, \"rankvar\": 2036, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 258, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2393, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1468, \"group\": [1806.0, 1020.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70401_BALBc-1_X01_Y01_628_954\", \"ini\": 2567, \"clust\": 325, \"rank\": 1822, \"rankvar\": 2410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 259, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 4, \"cat-2\": \"Density: 21\", \"cat_2_index\": 192, \"group\": [324.0, 226.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70856_BALBc-1_X01_Y01_633_693\", \"ini\": 2566, \"clust\": 749, \"rank\": 163, \"rankvar\": 257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 260, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 665, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1723, \"group\": [752.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71169_BALBc-1_X01_Y01_637_858\", \"ini\": 2565, \"clust\": 231, \"rank\": 1789, \"rankvar\": 2004, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 261, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 987, \"cat-2\": \"Density: 26\", \"cat_2_index\": 735, \"group\": [233.0, 162.0, 57.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72334_BALBc-1_X01_Y01_650_922\", \"ini\": 2564, \"clust\": 236, \"rank\": 950, \"rankvar\": 1257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 262, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1702, \"cat-2\": \"Density: 25\", \"cat_2_index\": 606, \"group\": [235.0, 164.0, 58.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72558_BALBc-1_X01_Y01_653_790\", \"ini\": 2563, \"clust\": 609, \"rank\": 220, \"rankvar\": 1881, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 263, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 988, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1724, \"group\": [607.0, 413.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72805_BALBc-1_X01_Y01_656_972\", \"ini\": 2562, \"clust\": 2523, \"rank\": 1237, \"rankvar\": 1139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 264, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1703, \"cat-2\": \"Density: 23\", \"cat_2_index\": 374, \"group\": [2524.0, 1354.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73338_BALBc-1_X01_Y01_662_687\", \"ini\": 2561, \"clust\": 559, \"rank\": 989, \"rankvar\": 531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 265, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 989, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1611, \"group\": [559.0, 383.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74854_BALBc-1_X01_Y01_680_662\", \"ini\": 2560, \"clust\": 602, \"rank\": 565, \"rankvar\": 243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 266, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2394, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1834, \"group\": [616.0, 417.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75831_BALBc-1_X01_Y01_692_998\", \"ini\": 2559, \"clust\": 1979, \"rank\": 2169, \"rankvar\": 1897, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 267, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1704, \"cat-2\": \"Density: 23\", \"cat_2_index\": 375, \"group\": [1980.0, 1121.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76190_BALBc-1_X01_Y01_697_768\", \"ini\": 2558, \"clust\": 595, \"rank\": 604, \"rankvar\": 745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 268, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 749, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1469, \"group\": [596.0, 407.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76418_BALBc-1_X01_Y01_7_625\", \"ini\": 2557, \"clust\": 1241, \"rank\": 2081, \"rankvar\": 2406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 269, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2227, \"cat-2\": \"Density: 10\", \"cat_2_index\": 3, \"group\": [1240.0, 623.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77472_BALBc-1_X01_Y01_711_676\", \"ini\": 2556, \"clust\": 1175, \"rank\": 1414, \"rankvar\": 2053, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 270, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 990, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2045, \"group\": [1174.0, 568.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77475_BALBc-1_X01_Y01_711_742\", \"ini\": 2555, \"clust\": 1171, \"rank\": 361, \"rankvar\": 874, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 271, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 991, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1725, \"group\": [1171.0, 566.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77792_BALBc-1_X01_Y01_715_768\", \"ini\": 2554, \"clust\": 1243, \"rank\": 1570, \"rankvar\": 1757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 272, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1705, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1612, \"group\": [1244.0, 625.0, 179.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78451_BALBc-1_X01_Y01_722_839\", \"ini\": 2553, \"clust\": 1347, \"rank\": 1230, \"rankvar\": 1724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 273, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2395, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1613, \"group\": [1348.0, 710.0, 211.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78461_BALBc-1_X01_Y01_722_950\", \"ini\": 2552, \"clust\": 185, \"rank\": 1273, \"rankvar\": 2680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 274, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1706, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1188, \"group\": [186.0, 122.0, 40.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78468_BALBc-1_X01_Y01_723_131\", \"ini\": 2551, \"clust\": 1546, \"rank\": 879, \"rankvar\": 2210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 275, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1826, \"cat-2\": \"Density: 21\", \"cat_2_index\": 193, \"group\": [1545.0, 837.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78787_BALBc-1_X01_Y01_727_496\", \"ini\": 2550, \"clust\": 1653, \"rank\": 2791, \"rankvar\": 2799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 276, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1707, \"cat-2\": \"Density: 27\", \"cat_2_index\": 885, \"group\": [1656.0, 914.0, 265.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78978_BALBc-1_X01_Y01_729_920\", \"ini\": 2549, \"clust\": 217, \"rank\": 658, \"rankvar\": 1555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 277, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1604, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1614, \"group\": [217.0, 149.0, 52.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79106_BALBc-1_X01_Y01_730_753\", \"ini\": 2548, \"clust\": 2457, \"rank\": 998, \"rankvar\": 665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 278, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1605, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1615, \"group\": [2459.0, 1308.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79197_BALBc-1_X01_Y01_731_852\", \"ini\": 2547, \"clust\": 1310, \"rank\": 1348, \"rankvar\": 2138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 279, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 750, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1934, \"group\": [1311.0, 679.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79228_BALBc-1_X01_Y01_732_264\", \"ini\": 2546, \"clust\": 320, \"rank\": 1459, \"rankvar\": 2206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 280, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1827, \"cat-2\": \"Density: 16\", \"cat_2_index\": 50, \"group\": [318.0, 222.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79377_BALBc-1_X01_Y01_733_981\", \"ini\": 2545, \"clust\": 183, \"rank\": 1396, \"rankvar\": 2333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 281, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 992, \"cat-2\": \"Density: 27\", \"cat_2_index\": 886, \"group\": [184.0, 121.0, 40.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79939_BALBc-1_X01_Y01_740_1001\", \"ini\": 2544, \"clust\": 1603, \"rank\": 1739, \"rankvar\": 1467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 282, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 993, \"cat-2\": \"Density: 25\", \"cat_2_index\": 607, \"group\": [1604.0, 886.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80506_BALBc-1_X01_Y01_747_927\", \"ini\": 2543, \"clust\": 1530, \"rank\": 2577, \"rankvar\": 2314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 283, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1828, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1038, \"group\": [1530.0, 827.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80525_BALBc-1_X01_Y01_748_234\", \"ini\": 2542, \"clust\": 1517, \"rank\": 2241, \"rankvar\": 2532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 284, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1829, \"cat-2\": \"Density: 19\", \"cat_2_index\": 114, \"group\": [1520.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80830_BALBc-1_X01_Y01_750_807\", \"ini\": 2541, \"clust\": 1252, \"rank\": 1909, \"rankvar\": 2631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 285, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1708, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1189, \"group\": [1251.0, 632.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80965_BALBc-1_X01_Y01_752_728\", \"ini\": 2540, \"clust\": 1408, \"rank\": 1813, \"rankvar\": 1944, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 286, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 994, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1616, \"group\": [1408.0, 758.0, 224.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81569_BALBc-1_X01_Y01_76_36\", \"ini\": 2539, \"clust\": 696, \"rank\": 353, \"rankvar\": 1297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 287, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1830, \"cat-2\": \"Density: 8\", \"cat_2_index\": 0, \"group\": [713.0, 457.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82103_BALBc-1_X01_Y01_766_541\", \"ini\": 2538, \"clust\": 1422, \"rank\": 2422, \"rankvar\": 2690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 288, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1831, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1190, \"group\": [1422.0, 768.0, 228.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82283_BALBc-1_X01_Y01_768_747\", \"ini\": 2537, \"clust\": 777, \"rank\": 275, \"rankvar\": 311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 289, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1606, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1343, \"group\": [780.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82292_BALBc-1_X01_Y01_768_860\", \"ini\": 2536, \"clust\": 1279, \"rank\": 1874, \"rankvar\": 2296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 290, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 751, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1726, \"group\": [1287.0, 658.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82501_BALBc-1_X01_Y01_770_672\", \"ini\": 2535, \"clust\": 840, \"rank\": 78, \"rankvar\": 419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 291, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1832, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1617, \"group\": [841.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82814_BALBc-1_X01_Y01_774_701\", \"ini\": 2534, \"clust\": 1505, \"rank\": 2572, \"rankvar\": 2617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 292, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1833, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1039, \"group\": [1506.0, 815.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83141_BALBc-1_X01_Y01_778_865\", \"ini\": 2533, \"clust\": 289, \"rank\": 2072, \"rankvar\": 2739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 293, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 752, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1935, \"group\": [289.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83368_BALBc-1_X01_Y01_780_829\", \"ini\": 2532, \"clust\": 2750, \"rank\": 1406, \"rankvar\": 1533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 294, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2228, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1727, \"group\": [2749.0, 1484.0, 440.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83575_BALBc-1_X01_Y01_783_772\", \"ini\": 2531, \"clust\": 317, \"rank\": 1815, \"rankvar\": 2023, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 295, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1834, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1344, \"group\": [327.0, 228.0, 79.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83783_BALBc-1_X01_Y01_786_42\", \"ini\": 2530, \"clust\": 1149, \"rank\": 1048, \"rankvar\": 168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 296, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1835, \"cat-2\": \"Density: 11\", \"cat_2_index\": 5, \"group\": [1148.0, 548.0, 151.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84106_BALBc-1_X01_Y01_79_467\", \"ini\": 2529, \"clust\": 1101, \"rank\": 32, \"rankvar\": 455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 297, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2396, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1040, \"group\": [1099.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84546_BALBc-1_X01_Y01_794_913\", \"ini\": 2528, \"clust\": 1323, \"rank\": 1102, \"rankvar\": 1900, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 298, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1836, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1470, \"group\": [1323.0, 691.0, 206.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84882_BALBc-1_X01_Y01_798_898\", \"ini\": 2527, \"clust\": 1224, \"rank\": 2184, \"rankvar\": 2120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 299, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 753, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2046, \"group\": [1230.0, 619.0, 177.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84899_BALBc-1_X01_Y01_799_204\", \"ini\": 2526, \"clust\": 808, \"rank\": 176, \"rankvar\": 355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 300, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1837, \"cat-2\": \"Density: 21\", \"cat_2_index\": 194, \"group\": [810.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85632_BALBc-1_X01_Y01_806_632\", \"ini\": 2525, \"clust\": 394, \"rank\": 799, \"rankvar\": 2176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 301, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1709, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1191, \"group\": [396.0, 277.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85720_BALBc-1_X01_Y01_807_805\", \"ini\": 2524, \"clust\": 909, \"rank\": 58, \"rankvar\": 965, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 302, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2229, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1728, \"group\": [910.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85870_BALBc-1_X01_Y01_809_965\", \"ini\": 2523, \"clust\": 973, \"rank\": 549, \"rankvar\": 959, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 303, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2397, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1729, \"group\": [973.0, 499.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86589_BALBc-1_X01_Y01_818_406\", \"ini\": 2522, \"clust\": 1773, \"rank\": 1821, \"rankvar\": 2732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 304, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1710, \"cat-2\": \"Density: 25\", \"cat_2_index\": 608, \"group\": [1772.0, 1005.0, 303.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86924_BALBc-1_X01_Y01_821_936\", \"ini\": 2521, \"clust\": 1244, \"rank\": 1159, \"rankvar\": 2302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 305, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 754, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1835, \"group\": [1245.0, 626.0, 179.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87345_BALBc-1_X01_Y01_827_373\", \"ini\": 2520, \"clust\": 1745, \"rank\": 1625, \"rankvar\": 1458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 306, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1711, \"cat-2\": \"Density: 25\", \"cat_2_index\": 609, \"group\": [1744.0, 986.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87649_BALBc-1_X01_Y01_830_295\", \"ini\": 2519, \"clust\": 176, \"rank\": 259, \"rankvar\": 1586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 307, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1838, \"cat-2\": \"Density: 22\", \"cat_2_index\": 261, \"group\": [176.0, 114.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87664_BALBc-1_X01_Y01_830_425\", \"ini\": 2518, \"clust\": 1037, \"rank\": 241, \"rankvar\": 974, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 308, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2398, \"cat-2\": \"Density: 27\", \"cat_2_index\": 887, \"group\": [1037.0, 521.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88044_BALBc-1_X01_Y01_835_742\", \"ini\": 2517, \"clust\": 1452, \"rank\": 1777, \"rankvar\": 1518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 309, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1839, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1041, \"group\": [1452.0, 790.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88079_BALBc-1_X01_Y01_836_344\", \"ini\": 2516, \"clust\": 1577, \"rank\": 1156, \"rankvar\": 1301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 310, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1536, \"cat-2\": \"Density: 25\", \"cat_2_index\": 610, \"group\": [1579.0, 865.0, 253.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88188_BALBc-1_X01_Y01_837_652\", \"ini\": 2515, \"clust\": 401, \"rank\": 492, \"rankvar\": 1398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 311, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 995, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1192, \"group\": [403.0, 281.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88270_BALBc-1_X01_Y01_838_807\", \"ini\": 2514, \"clust\": 1146, \"rank\": 1259, \"rankvar\": 1425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 312, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1712, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1730, \"group\": [1146.0, 546.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88505_BALBc-1_X01_Y01_840_865\", \"ini\": 2513, \"clust\": 1444, \"rank\": 2749, \"rankvar\": 2782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 313, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 755, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1936, \"group\": [1443.0, 784.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88518_BALBc-1_X01_Y01_840_980\", \"ini\": 2512, \"clust\": 756, \"rank\": 83, \"rankvar\": 758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 314, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 996, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1471, \"group\": [758.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88712_BALBc-1_X01_Y01_843_668\", \"ini\": 2511, \"clust\": 1598, \"rank\": 1080, \"rankvar\": 1160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 315, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1840, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1042, \"group\": [1599.0, 881.0, 257.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89100_BALBc-1_X01_Y01_848_541\", \"ini\": 2510, \"clust\": 1898, \"rank\": 2599, \"rankvar\": 2625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 316, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1841, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1193, \"group\": [1900.0, 1088.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90045_BALBc-1_X01_Y01_859_822\", \"ini\": 2509, \"clust\": 2751, \"rank\": 1765, \"rankvar\": 832, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 317, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1713, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1618, \"group\": [2755.0, 1489.0, 442.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90185_BALBc-1_X01_Y01_860_626\", \"ini\": 2508, \"clust\": 1127, \"rank\": 1373, \"rankvar\": 1717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 318, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1842, \"cat-2\": \"Density: 27\", \"cat_2_index\": 888, \"group\": [1128.0, 530.0, 144.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90284_BALBc-1_X01_Y01_861_874\", \"ini\": 2507, \"clust\": 232, \"rank\": 1475, \"rankvar\": 1343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 319, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 997, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2047, \"group\": [231.0, 161.0, 57.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90366_BALBc-1_X01_Y01_863_139\", \"ini\": 2506, \"clust\": 904, \"rank\": 40, \"rankvar\": 9, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 320, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2399, \"cat-2\": \"Density: 22\", \"cat_2_index\": 262, \"group\": [905.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91015_BALBc-1_X01_Y01_870_358\", \"ini\": 2505, \"clust\": 304, \"rank\": 1378, \"rankvar\": 2541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 321, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1537, \"cat-2\": \"Density: 24\", \"cat_2_index\": 475, \"group\": [309.0, 217.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91213_BALBc-1_X01_Y01_872_895\", \"ini\": 2504, \"clust\": 713, \"rank\": 861, \"rankvar\": 602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 322, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 998, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1937, \"group\": [716.0, 459.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91215_BALBc-1_X01_Y01_872_930\", \"ini\": 2503, \"clust\": 2475, \"rank\": 1409, \"rankvar\": 1130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 323, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 999, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1472, \"group\": [2475.0, 1323.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91352_BALBc-1_X01_Y01_874_726\", \"ini\": 2502, \"clust\": 1487, \"rank\": 2387, \"rankvar\": 2436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 324, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1000, \"cat-2\": \"Density: 26\", \"cat_2_index\": 736, \"group\": [1486.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91645_BALBc-1_X01_Y01_878_559\", \"ini\": 2501, \"clust\": 2406, \"rank\": 1243, \"rankvar\": 1361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 325, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1843, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1194, \"group\": [2409.0, 1279.0, 382.0, 104.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91823_BALBc-1_X01_Y01_88_805\", \"ini\": 2500, \"clust\": 1511, \"rank\": 2297, \"rankvar\": 2126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 326, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2400, \"cat-2\": \"Density: 23\", \"cat_2_index\": 376, \"group\": [1510.0, 818.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92363_BALBc-1_X01_Y01_887_395\", \"ini\": 2499, \"clust\": 1562, \"rank\": 689, \"rankvar\": 323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 327, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1844, \"cat-2\": \"Density: 25\", \"cat_2_index\": 611, \"group\": [1565.0, 854.0, 249.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92765_BALBc-1_X01_Y01_891_617\", \"ini\": 2498, \"clust\": 1223, \"rank\": 1347, \"rankvar\": 2489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 328, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2401, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1473, \"group\": [1222.0, 612.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93018_BALBc-1_X01_Y01_894_905\", \"ini\": 2497, \"clust\": 566, \"rank\": 691, \"rankvar\": 1614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 329, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1001, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1474, \"group\": [566.0, 389.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93161_BALBc-1_X01_Y01_896_937\", \"ini\": 2496, \"clust\": 2780, \"rank\": 2532, \"rankvar\": 2234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 330, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1002, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1731, \"group\": [2783.0, 1506.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94070_BALBc-1_X01_Y01_907_486\", \"ini\": 2495, \"clust\": 2556, \"rank\": 2149, \"rankvar\": 2181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 331, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 756, \"cat-2\": \"Density: 27\", \"cat_2_index\": 889, \"group\": [2555.0, 1378.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94547_BALBc-1_X01_Y01_912_926\", \"ini\": 2494, \"clust\": 2742, \"rank\": 1518, \"rankvar\": 2066, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 332, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1845, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1619, \"group\": [2745.0, 1480.0, 437.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94695_BALBc-1_X01_Y01_914_981\", \"ini\": 2493, \"clust\": 1280, \"rank\": 1629, \"rankvar\": 1828, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 333, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1846, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1732, \"group\": [1283.0, 655.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94725_BALBc-1_X01_Y01_915_472\", \"ini\": 2492, \"clust\": 331, \"rank\": 873, \"rankvar\": 1967, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 334, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1847, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1043, \"group\": [330.0, 231.0, 82.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94799_BALBc-1_X01_Y01_916_387\", \"ini\": 2491, \"clust\": 1491, \"rank\": 2550, \"rankvar\": 2397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 335, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 666, \"cat-2\": \"Density: 25\", \"cat_2_index\": 612, \"group\": [1496.0, 807.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94985_BALBc-1_X01_Y01_918_863\", \"ini\": 2490, \"clust\": 2757, \"rank\": 1620, \"rankvar\": 1420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 336, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 667, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1345, \"group\": [2756.0, 1490.0, 443.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95149_BALBc-1_X01_Y01_92_950\", \"ini\": 2489, \"clust\": 1519, \"rank\": 2607, \"rankvar\": 2711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 337, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1848, \"cat-2\": \"Density: 18\", \"cat_2_index\": 89, \"group\": [1517.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95350_BALBc-1_X01_Y01_922_525\", \"ini\": 2488, \"clust\": 1742, \"rank\": 2097, \"rankvar\": 1933, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 338, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2502, \"cat-2\": \"Density: 27\", \"cat_2_index\": 890, \"group\": [1743.0, 985.0, 296.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95627_BALBc-1_X01_Y01_925_921\", \"ini\": 2487, \"clust\": 1398, \"rank\": 1780, \"rankvar\": 2383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 339, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 668, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1044, \"group\": [1396.0, 747.0, 219.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96058_BALBc-1_X01_Y01_930_613\", \"ini\": 2486, \"clust\": 1578, \"rank\": 1584, \"rankvar\": 2009, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 340, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2402, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1045, \"group\": [1577.0, 863.0, 253.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96292_BALBc-1_X01_Y01_933_666\", \"ini\": 2485, \"clust\": 1579, \"rank\": 1692, \"rankvar\": 2209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 341, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2403, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1346, \"group\": [1578.0, 864.0, 253.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96547_BALBc-1_X01_Y01_937_170\", \"ini\": 2484, \"clust\": 346, \"rank\": 744, \"rankvar\": 1151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 342, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1849, \"cat-2\": \"Density: 19\", \"cat_2_index\": 115, \"group\": [345.0, 241.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96665_BALBc-1_X01_Y01_938_963\", \"ini\": 2483, \"clust\": 227, \"rank\": 1032, \"rankvar\": 1551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 343, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1850, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1836, \"group\": [226.0, 157.0, 55.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96745_BALBc-1_X01_Y01_939_916\", \"ini\": 2482, \"clust\": 2754, \"rank\": 1465, \"rankvar\": 985, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 344, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 669, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1475, \"group\": [2753.0, 1487.0, 441.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96964_BALBc-1_X01_Y01_941_78\", \"ini\": 2481, \"clust\": 1510, \"rank\": 2703, \"rankvar\": 2792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 345, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1851, \"cat-2\": \"Density: 17\", \"cat_2_index\": 70, \"group\": [1521.0, 820.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98233_BALBc-1_X01_Y01_957_431\", \"ini\": 2480, \"clust\": 1512, \"rank\": 2473, \"rankvar\": 2458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 346, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1852, \"cat-2\": \"Density: 23\", \"cat_2_index\": 377, \"group\": [1511.0, 818.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98244_BALBc-1_X01_Y01_957_547\", \"ini\": 2479, \"clust\": 706, \"rank\": 72, \"rankvar\": 1568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 347, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1003, \"cat-2\": \"Density: 25\", \"cat_2_index\": 613, \"group\": [704.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98423_BALBc-1_X01_Y01_96_276\", \"ini\": 2478, \"clust\": 281, \"rank\": 1399, \"rankvar\": 2459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 348, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 757, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1347, \"group\": [281.0, 203.0, 74.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98533_BALBc-1_X01_Y01_960_606\", \"ini\": 2477, \"clust\": 596, \"rank\": 392, \"rankvar\": 523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 349, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1853, \"cat-2\": \"Density: 27\", \"cat_2_index\": 891, \"group\": [597.0, 408.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98687_BALBc-1_X01_Y01_962_516\", \"ini\": 2476, \"clust\": 1624, \"rank\": 1532, \"rankvar\": 2338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 350, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1004, \"cat-2\": \"Density: 25\", \"cat_2_index\": 614, \"group\": [1625.0, 893.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98848_BALBc-1_X01_Y01_964_670\", \"ini\": 2475, \"clust\": 1436, \"rank\": 2083, \"rankvar\": 1428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 351, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1005, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1046, \"group\": [1447.0, 786.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98850_BALBc-1_X01_Y01_964_694\", \"ini\": 2474, \"clust\": 177, \"rank\": 204, \"rankvar\": 1352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 352, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1854, \"cat-2\": \"Density: 26\", \"cat_2_index\": 737, \"group\": [177.0, 114.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99057_BALBc-1_X01_Y01_967_479\", \"ini\": 2473, \"clust\": 1529, \"rank\": 2397, \"rankvar\": 2431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 353, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1855, \"cat-2\": \"Density: 23\", \"cat_2_index\": 378, \"group\": [1532.0, 828.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99105_BALBc-1_X01_Y01_967_965\", \"ini\": 2472, \"clust\": 1538, \"rank\": 2288, \"rankvar\": 1935, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 354, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 670, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1476, \"group\": [1538.0, 833.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99401_BALBc-1_X01_Y01_970_988\", \"ini\": 2471, \"clust\": 1413, \"rank\": 2124, \"rankvar\": 2361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 355, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 671, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1477, \"group\": [1415.0, 763.0, 226.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99809_BALBc-1_X01_Y01_976_311\", \"ini\": 2470, \"clust\": 1583, \"rank\": 1366, \"rankvar\": 2262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 356, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2404, \"cat-2\": \"Density: 24\", \"cat_2_index\": 476, \"group\": [1583.0, 868.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100228_BALBc-1_X01_Y01_980_928\", \"ini\": 2469, \"clust\": 155, \"rank\": 708, \"rankvar\": 1367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 357, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 893, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1047, \"group\": [156.0, 98.0, 32.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100256_BALBc-1_X01_Y01_981_360\", \"ini\": 2468, \"clust\": 369, \"rank\": 473, \"rankvar\": 795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 358, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 672, \"cat-2\": \"Density: 25\", \"cat_2_index\": 615, \"group\": [371.0, 257.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100547_BALBc-1_X01_Y01_985_432\", \"ini\": 2467, \"clust\": 1595, \"rank\": 1453, \"rankvar\": 825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 359, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1856, \"cat-2\": \"Density: 22\", \"cat_2_index\": 263, \"group\": [1596.0, 879.0, 257.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100572_BALBc-1_X01_Y01_985_76\", \"ini\": 2466, \"clust\": 1649, \"rank\": 2493, \"rankvar\": 2284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 360, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2266, \"cat-2\": \"Density: 18\", \"cat_2_index\": 90, \"group\": [1650.0, 910.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101105_BALBc-1_X01_Y01_991_734\", \"ini\": 2465, \"clust\": 1371, \"rank\": 2291, \"rankvar\": 1906, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 361, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1857, \"cat-2\": \"Density: 25\", \"cat_2_index\": 616, \"group\": [1370.0, 729.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101341_BALBc-1_X01_Y01_994_653\", \"ini\": 2464, \"clust\": 821, \"rank\": 88, \"rankvar\": 55, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 362, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1006, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1048, \"group\": [820.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101367_BALBc-1_X01_Y01_994_943\", \"ini\": 2463, \"clust\": 1540, \"rank\": 2330, \"rankvar\": 1794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 363, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 673, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1049, \"group\": [1540.0, 834.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-727_BALBc-1_X02_Y01_100_250\", \"ini\": 2462, \"clust\": 707, \"rank\": 429, \"rankvar\": 1286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 364, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1858, \"cat-2\": \"Density: 26\", \"cat_2_index\": 738, \"group\": [706.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-920_BALBc-1_X02_Y01_1001_805\", \"ini\": 2461, \"clust\": 175, \"rank\": 819, \"rankvar\": 1003, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 365, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1714, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1478, \"group\": [178.0, 115.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1117_BALBc-1_X02_Y01_1004_49\", \"ini\": 2460, \"clust\": 1559, \"rank\": 1105, \"rankvar\": 1959, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 366, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1007, \"cat-2\": \"Density: 21\", \"cat_2_index\": 195, \"group\": [1560.0, 849.0, 248.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1309_BALBc-1_X02_Y01_1006_988\", \"ini\": 2459, \"clust\": 1660, \"rank\": 1929, \"rankvar\": 2476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 367, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1008, \"cat-2\": \"Density: 25\", \"cat_2_index\": 617, \"group\": [1659.0, 917.0, 267.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1701_BALBc-1_X02_Y01_1010_833\", \"ini\": 2458, \"clust\": 1428, \"rank\": 1675, \"rankvar\": 870, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 368, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1859, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1348, \"group\": [1426.0, 772.0, 230.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1932_BALBc-1_X02_Y01_1013_860\", \"ini\": 2457, \"clust\": 1524, \"rank\": 1404, \"rankvar\": 2218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 369, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 758, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1479, \"group\": [1524.0, 823.0, 240.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1955_BALBc-1_X02_Y01_1014_248\", \"ini\": 2456, \"clust\": 1390, \"rank\": 2636, \"rankvar\": 2191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 370, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1860, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1620, \"group\": [1389.0, 740.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2025_BALBc-1_X02_Y01_1015_159\", \"ini\": 2455, \"clust\": 2265, \"rank\": 1286, \"rankvar\": 1379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 371, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1861, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1480, \"group\": [2263.0, 1236.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2212_BALBc-1_X02_Y01_1017_633\", \"ini\": 2454, \"clust\": 248, \"rank\": 919, \"rankvar\": 1308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 372, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2405, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1050, \"group\": [250.0, 173.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2698_BALBc-1_X02_Y01_1022_99\", \"ini\": 2453, \"clust\": 377, \"rank\": 417, \"rankvar\": 1877, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 373, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1862, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1051, \"group\": [376.0, 262.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2934_BALBc-1_X02_Y01_1025_811\", \"ini\": 2452, \"clust\": 1368, \"rank\": 2142, \"rankvar\": 1797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 374, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1715, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1938, \"group\": [1372.0, 729.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2976_BALBc-1_X02_Y01_1026_488\", \"ini\": 2451, \"clust\": 2254, \"rank\": 1680, \"rankvar\": 808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 375, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1863, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1481, \"group\": [2257.0, 1233.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3352_BALBc-1_X02_Y01_103_900\", \"ini\": 2450, \"clust\": 1640, \"rank\": 1901, \"rankvar\": 2627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 376, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2477, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1621, \"group\": [1647.0, 907.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3627_BALBc-1_X02_Y01_1033_729\", \"ini\": 2449, \"clust\": 1040, \"rank\": 336, \"rankvar\": 826, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 377, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2807, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1349, \"group\": [1040.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3919_BALBc-1_X02_Y01_1037_288\", \"ini\": 2448, \"clust\": 1416, \"rank\": 2104, \"rankvar\": 1806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 378, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 674, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2048, \"group\": [1417.0, 765.0, 227.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4041_BALBc-1_X02_Y01_1038_754\", \"ini\": 2447, \"clust\": 1213, \"rank\": 1014, \"rankvar\": 1370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 379, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1009, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1350, \"group\": [1214.0, 607.0, 172.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4239_BALBc-1_X02_Y01_1040_415\", \"ini\": 2446, \"clust\": 710, \"rank\": 347, \"rankvar\": 1907, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 380, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1864, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1052, \"group\": [711.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4540_BALBc-1_X02_Y01_1044_183\", \"ini\": 2445, \"clust\": 93, \"rank\": 249, \"rankvar\": 2634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 381, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1010, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1733, \"group\": [94.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4583_BALBc-1_X02_Y01_1044_66\", \"ini\": 2444, \"clust\": 1471, \"rank\": 2335, \"rankvar\": 2626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 382, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1538, \"cat-2\": \"Density: 24\", \"cat_2_index\": 477, \"group\": [1472.0, 802.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4708_BALBc-1_X02_Y01_1046_353\", \"ini\": 2443, \"clust\": 818, \"rank\": 217, \"rankvar\": 92, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 383, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 675, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1351, \"group\": [822.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4717_BALBc-1_X02_Y01_1046_503\", \"ini\": 2442, \"clust\": 1357, \"rank\": 2038, \"rankvar\": 2136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 384, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2808, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1482, \"group\": [1358.0, 719.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4778_BALBc-1_X02_Y01_1047_250\", \"ini\": 2441, \"clust\": 1890, \"rank\": 2008, \"rankvar\": 2543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 385, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1865, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1837, \"group\": [1890.0, 1080.0, 330.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4973_BALBc-1_X02_Y01_1049_643\", \"ini\": 2440, \"clust\": 824, \"rank\": 39, \"rankvar\": 393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 386, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 759, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1483, \"group\": [825.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5021_BALBc-1_X02_Y01_105_184\", \"ini\": 2439, \"clust\": 569, \"rank\": 568, \"rankvar\": 1126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 387, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2406, \"cat-2\": \"Density: 21\", \"cat_2_index\": 196, \"group\": [569.0, 389.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5131_BALBc-1_X02_Y01_1050_723\", \"ini\": 2438, \"clust\": 1641, \"rank\": 2212, \"rankvar\": 2727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 388, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1866, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1734, \"group\": [1640.0, 904.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5233_BALBc-1_X02_Y01_1052_226\", \"ini\": 2437, \"clust\": 770, \"rank\": 27, \"rankvar\": 1303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 389, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1011, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2049, \"group\": [769.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5349_BALBc-1_X02_Y01_1053_839\", \"ini\": 2436, \"clust\": 1877, \"rank\": 1740, \"rankvar\": 1761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 390, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1867, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2050, \"group\": [1879.0, 1069.0, 324.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5616_BALBc-1_X02_Y01_1056_980\", \"ini\": 2435, \"clust\": 507, \"rank\": 634, \"rankvar\": 404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 391, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1012, \"cat-2\": \"Density: 27\", \"cat_2_index\": 892, \"group\": [508.0, 348.0, 118.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5712_BALBc-1_X02_Y01_1058_349\", \"ini\": 2434, \"clust\": 1381, \"rank\": 1638, \"rankvar\": 1567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 392, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 676, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1352, \"group\": [1382.0, 734.0, 216.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5723_BALBc-1_X02_Y01_1058_507\", \"ini\": 2433, \"clust\": 2743, \"rank\": 1346, \"rankvar\": 2579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 393, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2809, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1622, \"group\": [2743.0, 1478.0, 437.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6217_BALBc-1_X02_Y01_1063_382\", \"ini\": 2432, \"clust\": 230, \"rank\": 1688, \"rankvar\": 1865, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 394, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1013, \"cat-2\": \"Density: 27\", \"cat_2_index\": 893, \"group\": [234.0, 163.0, 57.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6529_BALBc-1_X02_Y01_1067_754\", \"ini\": 2431, \"clust\": 535, \"rank\": 402, \"rankvar\": 975, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 395, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1868, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1623, \"group\": [536.0, 367.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6591_BALBc-1_X02_Y01_1068_473\", \"ini\": 2430, \"clust\": 1307, \"rank\": 1452, \"rankvar\": 2645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 396, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1869, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1195, \"group\": [1307.0, 678.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6633_BALBc-1_X02_Y01_1068_843\", \"ini\": 2429, \"clust\": 1096, \"rank\": 76, \"rankvar\": 654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 397, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1870, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1939, \"group\": [1098.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7022_BALBc-1_X02_Y01_1072_571\", \"ini\": 2428, \"clust\": 1362, \"rank\": 2393, \"rankvar\": 2109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 398, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 760, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1838, \"group\": [1363.0, 724.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7059_BALBc-1_X02_Y01_1072_960\", \"ini\": 2427, \"clust\": 1531, \"rank\": 2285, \"rankvar\": 2221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 399, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1871, \"cat-2\": \"Density: 25\", \"cat_2_index\": 618, \"group\": [1531.0, 827.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7262_BALBc-1_X02_Y01_1075_334\", \"ini\": 2426, \"clust\": 218, \"rank\": 1120, \"rankvar\": 1359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 400, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2267, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1735, \"group\": [224.0, 156.0, 54.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7803_BALBc-1_X02_Y01_1081_510\", \"ini\": 2425, \"clust\": 1417, \"rank\": 1649, \"rankvar\": 1538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 401, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1576, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1053, \"group\": [1418.0, 765.0, 227.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8504_BALBc-1_X02_Y01_109_960\", \"ini\": 2424, \"clust\": 2752, \"rank\": 1941, \"rankvar\": 1963, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 402, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1014, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2051, \"group\": [2754.0, 1488.0, 441.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8575_BALBc-1_X02_Y01_1090_708\", \"ini\": 2423, \"clust\": 607, \"rank\": 419, \"rankvar\": 561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 403, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1872, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1736, \"group\": [610.0, 413.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8689_BALBc-1_X02_Y01_1092_353\", \"ini\": 2422, \"clust\": 1386, \"rank\": 2205, \"rankvar\": 1635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 404, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1873, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1484, \"group\": [1387.0, 738.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9108_BALBc-1_X02_Y01_1097_627\", \"ini\": 2421, \"clust\": 243, \"rank\": 988, \"rankvar\": 2124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 405, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1015, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1940, \"group\": [243.0, 170.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9139_BALBc-1_X02_Y01_1098_191\", \"ini\": 2420, \"clust\": 1339, \"rank\": 1143, \"rankvar\": 1339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 406, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1874, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1941, \"group\": [1340.0, 704.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9234_BALBc-1_X02_Y01_1099_456\", \"ini\": 2419, \"clust\": 80, \"rank\": 536, \"rankvar\": 1081, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 407, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1016, \"cat-2\": \"Density: 27\", \"cat_2_index\": 894, \"group\": [83.0, 62.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9814_BALBc-1_X02_Y01_1104_657\", \"ini\": 2418, \"clust\": 2478, \"rank\": 1536, \"rankvar\": 2282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 408, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1607, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1839, \"group\": [2476.0, 1324.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9841_BALBc-1_X02_Y01_1104_956\", \"ini\": 2417, \"clust\": 779, \"rank\": 225, \"rankvar\": 170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 409, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1875, \"cat-2\": \"Density: 25\", \"cat_2_index\": 619, \"group\": [777.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9888_BALBc-1_X02_Y01_1105_530\", \"ini\": 2416, \"clust\": 1678, \"rank\": 2402, \"rankvar\": 2681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 410, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1577, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1353, \"group\": [1678.0, 935.0, 276.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9992_BALBc-1_X02_Y01_1106_822\", \"ini\": 2415, \"clust\": 47, \"rank\": 677, \"rankvar\": 1408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 411, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1876, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1840, \"group\": [50.0, 41.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10019_BALBc-1_X02_Y01_1107_235\", \"ini\": 2414, \"clust\": 1589, \"rank\": 1665, \"rankvar\": 1987, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 412, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2478, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1942, \"group\": [1589.0, 872.0, 255.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10132_BALBc-1_X02_Y01_1108_495\", \"ini\": 2413, \"clust\": 1366, \"rank\": 2230, \"rankvar\": 2095, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 413, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2407, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1354, \"group\": [1367.0, 728.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10374_BALBc-1_X02_Y01_1110_694\", \"ini\": 2412, \"clust\": 2479, \"rank\": 1474, \"rankvar\": 1376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 414, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1539, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2140, \"group\": [2477.0, 1324.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10576_BALBc-1_X02_Y01_1113_426\", \"ini\": 2411, \"clust\": 1493, \"rank\": 2678, \"rankvar\": 2303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 415, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1017, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1355, \"group\": [1492.0, 805.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10601_BALBc-1_X02_Y01_1113_726\", \"ini\": 2410, \"clust\": 759, \"rank\": 438, \"rankvar\": 20, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 416, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 761, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1737, \"group\": [762.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10688_BALBc-1_X02_Y01_1114_902\", \"ini\": 2409, \"clust\": 2396, \"rank\": 2814, \"rankvar\": 2745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 417, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1877, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1624, \"group\": [2394.0, 1268.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10939_BALBc-1_X02_Y01_1118_266\", \"ini\": 2408, \"clust\": 1102, \"rank\": 65, \"rankvar\": 194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 418, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1878, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1943, \"group\": [1100.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10988_BALBc-1_X02_Y01_1118_830\", \"ini\": 2407, \"clust\": 1025, \"rank\": 200, \"rankvar\": 276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 419, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 762, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1738, \"group\": [1032.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11337_BALBc-1_X02_Y01_1122_571\", \"ini\": 2406, \"clust\": 391, \"rank\": 1092, \"rankvar\": 371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 420, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1018, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1841, \"group\": [391.0, 273.0, 93.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11413_BALBc-1_X02_Y01_1123_613\", \"ini\": 2405, \"clust\": 1360, \"rank\": 1772, \"rankvar\": 1320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 421, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1019, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2141, \"group\": [1360.0, 721.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11498_BALBc-1_X02_Y01_1124_538\", \"ini\": 2404, \"clust\": 2476, \"rank\": 1400, \"rankvar\": 723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 422, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2268, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1739, \"group\": [2479.0, 1326.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11656_BALBc-1_X02_Y01_1126_662\", \"ini\": 2403, \"clust\": 302, \"rank\": 591, \"rankvar\": 2344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 423, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1540, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2297, \"group\": [299.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11767_BALBc-1_X02_Y01_1128_191\", \"ini\": 2402, \"clust\": 103, \"rank\": 610, \"rankvar\": 1759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 424, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 763, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1740, \"group\": [108.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11839_BALBc-1_X02_Y01_1129_238\", \"ini\": 2401, \"clust\": 987, \"rank\": 186, \"rankvar\": 1269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 425, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2479, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1944, \"group\": [988.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12133_BALBc-1_X02_Y01_1132_128\", \"ini\": 2400, \"clust\": 947, \"rank\": 260, \"rankvar\": 411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 426, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 764, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1625, \"group\": [948.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12185_BALBc-1_X02_Y01_1132_650\", \"ini\": 2399, \"clust\": 1980, \"rank\": 2275, \"rankvar\": 1411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 427, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 765, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1842, \"group\": [1981.0, 1122.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12327_BALBc-1_X02_Y01_1134_751\", \"ini\": 2398, \"clust\": 1448, \"rank\": 2476, \"rankvar\": 1487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 428, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 766, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1945, \"group\": [1450.0, 788.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12702_BALBc-1_X02_Y01_1139_494\", \"ini\": 2397, \"clust\": 1373, \"rank\": 2736, \"rankvar\": 2528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 429, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2269, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1485, \"group\": [1374.0, 730.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12872_BALBc-1_X02_Y01_1140_895\", \"ini\": 2396, \"clust\": 1322, \"rank\": 1307, \"rankvar\": 1328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 430, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1879, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1196, \"group\": [1325.0, 692.0, 206.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13105_BALBc-1_X02_Y01_1143_686\", \"ini\": 2395, \"clust\": 1399, \"rank\": 1511, \"rankvar\": 1565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 431, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 767, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1626, \"group\": [1397.0, 747.0, 219.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13323_BALBc-1_X02_Y01_1146_697\", \"ini\": 2394, \"clust\": 2299, \"rank\": 1767, \"rankvar\": 1615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 432, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 768, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2052, \"group\": [2296.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13387_BALBc-1_X02_Y01_1147_623\", \"ini\": 2393, \"clust\": 245, \"rank\": 749, \"rankvar\": 1992, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 433, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1020, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2053, \"group\": [246.0, 171.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13636_BALBc-1_X02_Y01_115_870\", \"ini\": 2392, \"clust\": 53, \"rank\": 760, \"rankvar\": 1018, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 434, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 677, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1486, \"group\": [51.0, 42.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13712_BALBc-1_X02_Y01_1150_829\", \"ini\": 2391, \"clust\": 184, \"rank\": 1333, \"rankvar\": 1040, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 435, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 769, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1356, \"group\": [185.0, 121.0, 40.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13747_BALBc-1_X02_Y01_1151_270\", \"ini\": 2390, \"clust\": 870, \"rank\": 3, \"rankvar\": 376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 436, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2408, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2054, \"group\": [868.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13791_BALBc-1_X02_Y01_1151_786\", \"ini\": 2389, \"clust\": 2261, \"rank\": 1330, \"rankvar\": 1119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 437, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1021, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1197, \"group\": [2262.0, 1235.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13891_BALBc-1_X02_Y01_1153_161\", \"ini\": 2388, \"clust\": 240, \"rank\": 876, \"rankvar\": 756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 438, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 770, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1198, \"group\": [239.0, 167.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13893_BALBc-1_X02_Y01_1153_212\", \"ini\": 2387, \"clust\": 1343, \"rank\": 1017, \"rankvar\": 2423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 439, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1716, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1741, \"group\": [1344.0, 708.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14380_BALBc-1_X02_Y01_1159_66\", \"ini\": 2386, \"clust\": 1571, \"rank\": 761, \"rankvar\": 552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 440, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1880, \"cat-2\": \"Density: 22\", \"cat_2_index\": 264, \"group\": [1571.0, 859.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14826_BALBc-1_X02_Y01_1164_105\", \"ini\": 2385, \"clust\": 213, \"rank\": 1419, \"rankvar\": 2038, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 441, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 771, \"cat-2\": \"Density: 27\", \"cat_2_index\": 895, \"group\": [214.0, 146.0, 51.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15075_BALBc-1_X02_Y01_1167_300\", \"ini\": 2384, \"clust\": 1654, \"rank\": 2822, \"rankvar\": 2770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 442, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 772, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2298, \"group\": [1654.0, 913.0, 265.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15083_BALBc-1_X02_Y01_1167_377\", \"ini\": 2383, \"clust\": 1324, \"rank\": 1369, \"rankvar\": 2076, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 443, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1022, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1054, \"group\": [1324.0, 691.0, 206.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15194_BALBc-1_X02_Y01_1168_743\", \"ini\": 2382, \"clust\": 2561, \"rank\": 2585, \"rankvar\": 2447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 444, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 5, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1742, \"group\": [2559.0, 1381.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15334_BALBc-1_X02_Y01_117_883\", \"ini\": 2381, \"clust\": 1588, \"rank\": 1506, \"rankvar\": 1209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 445, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1881, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1487, \"group\": [1591.0, 874.0, 255.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15471_BALBc-1_X02_Y01_1171_582\", \"ini\": 2380, \"clust\": 372, \"rank\": 550, \"rankvar\": 1273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 446, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1023, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1843, \"group\": [369.0, 255.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15630_BALBc-1_X02_Y01_1173_619\", \"ini\": 2379, \"clust\": 1672, \"rank\": 1519, \"rankvar\": 254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 447, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1024, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1844, \"group\": [1671.0, 928.0, 272.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15634_BALBc-1_X02_Y01_1173_634\", \"ini\": 2378, \"clust\": 1988, \"rank\": 1845, \"rankvar\": 2056, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 448, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 773, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2055, \"group\": [1991.0, 1125.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15644_BALBc-1_X02_Y01_1173_755\", \"ini\": 2377, \"clust\": 1782, \"rank\": 2479, \"rankvar\": 2472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 449, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1025, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1488, \"group\": [1782.0, 1012.0, 307.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15706_BALBc-1_X02_Y01_1174_723\", \"ini\": 2376, \"clust\": 1667, \"rank\": 1578, \"rankvar\": 537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 450, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 774, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1627, \"group\": [1668.0, 925.0, 270.0, 76.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15832_BALBc-1_X02_Y01_1176_472\", \"ini\": 2375, \"clust\": 1161, \"rank\": 943, \"rankvar\": 2174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 451, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1026, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1357, \"group\": [1165.0, 561.0, 155.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16250_BALBc-1_X02_Y01_1180_834\", \"ini\": 2374, \"clust\": 2499, \"rank\": 2376, \"rankvar\": 2349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 452, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 775, \"cat-2\": \"Density: 27\", \"cat_2_index\": 896, \"group\": [2498.0, 1344.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16261_BALBc-1_X02_Y01_1180_946\", \"ini\": 2373, \"clust\": 2553, \"rank\": 2372, \"rankvar\": 2480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 453, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1882, \"cat-2\": \"Density: 27\", \"cat_2_index\": 897, \"group\": [2553.0, 1376.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16286_BALBc-1_X02_Y01_1181_398\", \"ini\": 2372, \"clust\": 1415, \"rank\": 2131, \"rankvar\": 1951, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 454, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1027, \"cat-2\": \"Density: 27\", \"cat_2_index\": 898, \"group\": [1414.0, 762.0, 226.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16453_BALBc-1_X02_Y01_1183_622\", \"ini\": 2371, \"clust\": 2300, \"rank\": 1787, \"rankvar\": 1410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 455, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 6, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1743, \"group\": [2297.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16460_BALBc-1_X02_Y01_1183_734\", \"ini\": 2370, \"clust\": 753, \"rank\": 447, \"rankvar\": 407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 456, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 7, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1628, \"group\": [753.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16490_BALBc-1_X02_Y01_1184_20\", \"ini\": 2369, \"clust\": 1553, \"rank\": 1097, \"rankvar\": 2142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 457, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 894, \"cat-2\": \"Density: 15\", \"cat_2_index\": 36, \"group\": [1554.0, 844.0, 244.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16779_BALBc-1_X02_Y01_1188_180\", \"ini\": 2368, \"clust\": 1432, \"rank\": 2067, \"rankvar\": 2250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 458, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 776, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2056, \"group\": [1432.0, 778.0, 233.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16869_BALBc-1_X02_Y01_1189_208\", \"ini\": 2367, \"clust\": 776, \"rank\": 134, \"rankvar\": 326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 459, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1717, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2220, \"group\": [781.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16889_BALBc-1_X02_Y01_1189_451\", \"ini\": 2366, \"clust\": 661, \"rank\": 117, \"rankvar\": 694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 460, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1028, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1489, \"group\": [660.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16901_BALBc-1_X02_Y01_1189_539\", \"ini\": 2365, \"clust\": 993, \"rank\": 880, \"rankvar\": 579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 461, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1608, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2221, \"group\": [996.0, 510.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17048_BALBc-1_X02_Y01_1190_641\", \"ini\": 2364, \"clust\": 1110, \"rank\": 294, \"rankvar\": 99, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 462, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 8, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1946, \"group\": [1112.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17117_BALBc-1_X02_Y01_1191_556\", \"ini\": 2363, \"clust\": 1910, \"rank\": 2336, \"rankvar\": 2158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 463, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1609, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1629, \"group\": [1911.0, 1097.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17132_BALBc-1_X02_Y01_1191_663\", \"ini\": 2362, \"clust\": 71, \"rank\": 867, \"rankvar\": 705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 464, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 777, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1947, \"group\": [72.0, 54.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17336_BALBc-1_X02_Y01_1194_509\", \"ini\": 2361, \"clust\": 38, \"rank\": 380, \"rankvar\": 121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 465, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1610, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1630, \"group\": [38.0, 33.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17653_BALBc-1_X02_Y01_1198_693\", \"ini\": 2360, \"clust\": 2407, \"rank\": 1040, \"rankvar\": 810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 466, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 778, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2057, \"group\": [2407.0, 1277.0, 381.0, 104.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17657_BALBc-1_X02_Y01_1198_792\", \"ini\": 2359, \"clust\": 2816, \"rank\": 1952, \"rankvar\": 1836, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 467, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1029, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1055, \"group\": [2815.0, 1529.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17668_BALBc-1_X02_Y01_1198_965\", \"ini\": 2358, \"clust\": 330, \"rank\": 539, \"rankvar\": 1534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 468, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2409, \"cat-2\": \"Density: 26\", \"cat_2_index\": 739, \"group\": [332.0, 233.0, 82.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17790_BALBc-1_X02_Y01_12_625\", \"ini\": 2357, \"clust\": 1262, \"rank\": 1632, \"rankvar\": 1252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 469, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1883, \"cat-2\": \"Density: 25\", \"cat_2_index\": 620, \"group\": [1262.0, 641.0, 185.0, 52.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17829_BALBc-1_X02_Y01_12_949\", \"ini\": 2356, \"clust\": 1423, \"rank\": 1651, \"rankvar\": 189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 470, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1718, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1358, \"group\": [1430.0, 776.0, 232.0, 66.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17833_BALBc-1_X02_Y01_120_10\", \"ini\": 2355, \"clust\": 1797, \"rank\": 2162, \"rankvar\": 2507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 471, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1611, \"cat-2\": \"Density: 15\", \"cat_2_index\": 37, \"group\": [1796.0, 1016.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17960_BALBc-1_X02_Y01_1200_621\", \"ini\": 2354, \"clust\": 762, \"rank\": 247, \"rankvar\": 847, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 472, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 9, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1845, \"group\": [763.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18016_BALBc-1_X02_Y01_1201_255\", \"ini\": 2353, \"clust\": 1298, \"rank\": 1502, \"rankvar\": 1362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 473, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1030, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1744, \"group\": [1298.0, 669.0, 195.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18096_BALBc-1_X02_Y01_1202_300\", \"ini\": 2352, \"clust\": 2812, \"rank\": 1515, \"rankvar\": 2062, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 474, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1719, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1631, \"group\": [2810.0, 1527.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18196_BALBc-1_X02_Y01_1203_578\", \"ini\": 2351, \"clust\": 2510, \"rank\": 1545, \"rankvar\": 1962, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 475, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1612, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1632, \"group\": [2510.0, 1350.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18210_BALBc-1_X02_Y01_1203_725\", \"ini\": 2350, \"clust\": 1404, \"rank\": 2084, \"rankvar\": 1010, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 476, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1031, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1633, \"group\": [1407.0, 757.0, 223.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18259_BALBc-1_X02_Y01_1204_360\", \"ini\": 2349, \"clust\": 223, \"rank\": 1125, \"rankvar\": 2003, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 477, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1720, \"cat-2\": \"Density: 26\", \"cat_2_index\": 740, \"group\": [222.0, 154.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18482_BALBc-1_X02_Y01_1206_858\", \"ini\": 2348, \"clust\": 1675, \"rank\": 2191, \"rankvar\": 1585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 478, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 779, \"cat-2\": \"Density: 24\", \"cat_2_index\": 478, \"group\": [1675.0, 932.0, 274.0, 78.0, 16.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18612_BALBc-1_X02_Y01_1208_674\", \"ini\": 2347, \"clust\": 2764, \"rank\": 2364, \"rankvar\": 1803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 479, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1032, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2058, \"group\": [2765.0, 1497.0, 446.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18710_BALBc-1_X02_Y01_1209_899\", \"ini\": 2346, \"clust\": 2555, \"rank\": 2485, \"rankvar\": 1246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 480, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 780, \"cat-2\": \"Density: 24\", \"cat_2_index\": 479, \"group\": [2557.0, 1379.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18905_BALBc-1_X02_Y01_1211_658\", \"ini\": 2345, \"clust\": 2594, \"rank\": 1467, \"rankvar\": 1155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 10, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2059, \"group\": [2598.0, 1405.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19104_BALBc-1_X02_Y01_1214_445\", \"ini\": 2344, \"clust\": 2408, \"rank\": 1275, \"rankvar\": 1336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 482, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2410, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1056, \"group\": [2408.0, 1278.0, 381.0, 104.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19264_BALBc-1_X02_Y01_1216_455\", \"ini\": 2343, \"clust\": 195, \"rank\": 426, \"rankvar\": 687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 483, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1613, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1359, \"group\": [195.0, 131.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19265_BALBc-1_X02_Y01_1216_472\", \"ini\": 2342, \"clust\": 2652, \"rank\": 2680, \"rankvar\": 2034, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 484, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1614, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1634, \"group\": [2650.0, 1439.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19271_BALBc-1_X02_Y01_1216_594\", \"ini\": 2341, \"clust\": 2706, \"rank\": 2197, \"rankvar\": 2075, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 485, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 781, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1635, \"group\": [2706.0, 1454.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19288_BALBc-1_X02_Y01_1216_855\", \"ini\": 2340, \"clust\": 2809, \"rank\": 2099, \"rankvar\": 2231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 486, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 782, \"cat-2\": \"Density: 24\", \"cat_2_index\": 480, \"group\": [2808.0, 1526.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19310_BALBc-1_X02_Y01_1217_258\", \"ini\": 2339, \"clust\": 1990, \"rank\": 2079, \"rankvar\": 1901, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 487, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1033, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1745, \"group\": [1988.0, 1125.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19351_BALBc-1_X02_Y01_1217_759\", \"ini\": 2338, \"clust\": 1983, \"rank\": 2001, \"rankvar\": 475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 488, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2503, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1360, \"group\": [1987.0, 1124.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19674_BALBc-1_X02_Y01_1221_135\", \"ini\": 2337, \"clust\": 197, \"rank\": 527, \"rankvar\": 231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 489, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2411, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1057, \"group\": [197.0, 132.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19754_BALBc-1_X02_Y01_1222_168\", \"ini\": 2336, \"clust\": 16, \"rank\": 1002, \"rankvar\": 990, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 490, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1721, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1746, \"group\": [16.0, 15.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19785_BALBc-1_X02_Y01_1222_508\", \"ini\": 2335, \"clust\": 2775, \"rank\": 2245, \"rankvar\": 1982, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 491, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1615, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1490, \"group\": [2776.0, 1503.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20247_BALBc-1_X02_Y01_1228_427\", \"ini\": 2334, \"clust\": 2699, \"rank\": 2384, \"rankvar\": 1997, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2504, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1361, \"group\": [2701.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20444_BALBc-1_X02_Y01_1230_254\", \"ini\": 2333, \"clust\": 2498, \"rank\": 1920, \"rankvar\": 2055, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 493, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1034, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1636, \"group\": [2500.0, 1344.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20674_BALBc-1_X02_Y01_1232_895\", \"ini\": 2332, \"clust\": 69, \"rank\": 930, \"rankvar\": 2545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 494, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 783, \"cat-2\": \"Density: 27\", \"cat_2_index\": 899, \"group\": [65.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20684_BALBc-1_X02_Y01_1232_950\", \"ini\": 2331, \"clust\": 1655, \"rank\": 2792, \"rankvar\": 2647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 495, \"cat-1\": \"Neighbor: CD4(-)CD8(-) cDC\", \"cat_1_index\": 1590, \"cat-2\": \"Density: 24\", \"cat_2_index\": 481, \"group\": [1655.0, 913.0, 265.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20877_BALBc-1_X02_Y01_1235_619\", \"ini\": 2330, \"clust\": 2659, \"rank\": 2623, \"rankvar\": 2182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 496, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 784, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1948, \"group\": [2660.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21358_BALBc-1_X02_Y01_1241_235\", \"ini\": 2329, \"clust\": 1821, \"rank\": 2533, \"rankvar\": 2241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 497, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1035, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1362, \"group\": [1826.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21512_BALBc-1_X02_Y01_1243_309\", \"ini\": 2328, \"clust\": 1401, \"rank\": 1986, \"rankvar\": 1809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 498, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1722, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1058, \"group\": [1402.0, 752.0, 221.0, 63.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21583_BALBc-1_X02_Y01_1244_275\", \"ini\": 2327, \"clust\": 1374, \"rank\": 2130, \"rankvar\": 2229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 499, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 11, \"cat-2\": \"Density: 27\", \"cat_2_index\": 900, \"group\": [1375.0, 731.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21689_BALBc-1_X02_Y01_1245_805\", \"ini\": 2326, \"clust\": 2762, \"rank\": 2355, \"rankvar\": 2506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 500, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2505, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1199, \"group\": [2763.0, 1496.0, 446.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22019_BALBc-1_X02_Y01_125_269\", \"ini\": 2325, \"clust\": 1555, \"rank\": 1936, \"rankvar\": 2202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 501, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1884, \"cat-2\": \"Density: 25\", \"cat_2_index\": 621, \"group\": [1557.0, 847.0, 246.0, 70.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22239_BALBc-1_X02_Y01_1252_216\", \"ini\": 2324, \"clust\": 1344, \"rank\": 1356, \"rankvar\": 2438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 502, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2270, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1363, \"group\": [1345.0, 708.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22243_BALBc-1_X02_Y01_1252_255\", \"ini\": 2323, \"clust\": 59, \"rank\": 940, \"rankvar\": 1605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 503, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 12, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1200, \"group\": [71.0, 53.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22255_BALBc-1_X02_Y01_1252_348\", \"ini\": 2322, \"clust\": 2755, \"rank\": 1471, \"rankvar\": 1993, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 504, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1723, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1059, \"group\": [2759.0, 1492.0, 444.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22266_BALBc-1_X02_Y01_1252_472\", \"ini\": 2321, \"clust\": 2572, \"rank\": 2151, \"rankvar\": 2568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 505, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2506, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1364, \"group\": [2571.0, 1391.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22548_BALBc-1_X02_Y01_1256_623\", \"ini\": 2320, \"clust\": 2722, \"rank\": 1912, \"rankvar\": 1241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 506, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 785, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2060, \"group\": [2722.0, 1462.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22671_BALBc-1_X02_Y01_1258_136\", \"ini\": 2319, \"clust\": 751, \"rank\": 326, \"rankvar\": 209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 507, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1036, \"cat-2\": \"Density: 27\", \"cat_2_index\": 901, \"group\": [749.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22748_BALBc-1_X02_Y01_1259_383\", \"ini\": 2318, \"clust\": 67, \"rank\": 1135, \"rankvar\": 1686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 508, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 678, \"cat-2\": \"Density: 27\", \"cat_2_index\": 902, \"group\": [68.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22787_BALBc-1_X02_Y01_1259_893\", \"ini\": 2317, \"clust\": 2641, \"rank\": 2147, \"rankvar\": 1039, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 509, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 786, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1060, \"group\": [2642.0, 1434.0, 424.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22931_BALBc-1_X02_Y01_1260_924\", \"ini\": 2316, \"clust\": 68, \"rank\": 1108, \"rankvar\": 1770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 510, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 787, \"cat-2\": \"Density: 27\", \"cat_2_index\": 903, \"group\": [67.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23108_BALBc-1_X02_Y01_1263_256\", \"ini\": 2315, \"clust\": 1677, \"rank\": 2643, \"rankvar\": 2812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 511, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 679, \"cat-2\": \"Density: 26\", \"cat_2_index\": 741, \"group\": [1680.0, 937.0, 277.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23139_BALBc-1_X02_Y01_1263_670\", \"ini\": 2314, \"clust\": 1888, \"rank\": 2770, \"rankvar\": 2776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 512, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1037, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1637, \"group\": [1888.0, 1078.0, 329.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23280_BALBc-1_X02_Y01_1265_648\", \"ini\": 2313, \"clust\": 2578, \"rank\": 1173, \"rankvar\": 1871, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 513, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 13, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1846, \"group\": [2584.0, 1397.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23335_BALBc-1_X02_Y01_1266_525\", \"ini\": 2312, \"clust\": 1179, \"rank\": 1809, \"rankvar\": 1324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 514, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2507, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1491, \"group\": [1179.0, 572.0, 159.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23348_BALBc-1_X02_Y01_1266_814\", \"ini\": 2311, \"clust\": 2570, \"rank\": 1826, \"rankvar\": 2117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 515, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2508, \"cat-2\": \"Density: 22\", \"cat_2_index\": 265, \"group\": [2574.0, 1391.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23436_BALBc-1_X02_Y01_1268_124\", \"ini\": 2310, \"clust\": 1376, \"rank\": 1951, \"rankvar\": 2583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 516, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2271, \"cat-2\": \"Density: 26\", \"cat_2_index\": 742, \"group\": [1377.0, 732.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23465_BALBc-1_X02_Y01_1268_478\", \"ini\": 2309, \"clust\": 2660, \"rank\": 2619, \"rankvar\": 2175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 517, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 14, \"cat-2\": \"Density: 27\", \"cat_2_index\": 904, \"group\": [2661.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23570_BALBc-1_X02_Y01_1269_960\", \"ini\": 2308, \"clust\": 781, \"rank\": 203, \"rankvar\": 1211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 518, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1061, \"group\": [784.0, 475.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23719_BALBc-1_X02_Y01_1271_19\", \"ini\": 2307, \"clust\": 701, \"rank\": 211, \"rankvar\": 1322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 519, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1885, \"cat-2\": \"Density: 9\", \"cat_2_index\": 1, \"group\": [701.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23817_BALBc-1_X02_Y01_1272_501\", \"ini\": 2306, \"clust\": 1211, \"rank\": 883, \"rankvar\": 683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 520, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2509, \"cat-2\": \"Density: 27\", \"cat_2_index\": 905, \"group\": [1210.0, 603.0, 171.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23834_BALBc-1_X02_Y01_1272_684\", \"ini\": 2305, \"clust\": 2483, \"rank\": 1336, \"rankvar\": 1789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 521, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1038, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1365, \"group\": [2485.0, 1332.0, 396.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23870_BALBc-1_X02_Y01_1273_191\", \"ini\": 2304, \"clust\": 752, \"rank\": 152, \"rankvar\": 405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 522, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1724, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1062, \"group\": [750.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23961_BALBc-1_X02_Y01_1274_276\", \"ini\": 2303, \"clust\": 1387, \"rank\": 2215, \"rankvar\": 2470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 523, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2412, \"cat-2\": \"Density: 24\", \"cat_2_index\": 482, \"group\": [1385.0, 737.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24129_BALBc-1_X02_Y01_1276_627\", \"ini\": 2302, \"clust\": 327, \"rank\": 1158, \"rankvar\": 385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 524, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 15, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1492, \"group\": [328.0, 229.0, 80.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24213_BALBc-1_X02_Y01_1277_743\", \"ini\": 2301, \"clust\": 2627, \"rank\": 1828, \"rankvar\": 1164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 525, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2510, \"cat-2\": \"Density: 26\", \"cat_2_index\": 743, \"group\": [2630.0, 1423.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24260_BALBc-1_X02_Y01_1278_371\", \"ini\": 2300, \"clust\": 2642, \"rank\": 2076, \"rankvar\": 599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 526, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 16, \"cat-2\": \"Density: 20\", \"cat_2_index\": 140, \"group\": [2643.0, 1434.0, 424.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24435_BALBc-1_X02_Y01_128_859\", \"ini\": 2299, \"clust\": 1238, \"rank\": 786, \"rankvar\": 2656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 527, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 680, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1493, \"group\": [1238.0, 622.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24454_BALBc-1_X02_Y01_1280_168\", \"ini\": 2298, \"clust\": 1617, \"rank\": 2238, \"rankvar\": 2569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 528, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1725, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1063, \"group\": [1617.0, 891.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24523_BALBc-1_X02_Y01_1281_204\", \"ini\": 2297, \"clust\": 1367, \"rank\": 2431, \"rankvar\": 2267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 529, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2511, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1064, \"group\": [1368.0, 728.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24639_BALBc-1_X02_Y01_1282_936\", \"ini\": 2296, \"clust\": 1699, \"rank\": 2400, \"rankvar\": 2154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 530, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 788, \"cat-2\": \"Density: 25\", \"cat_2_index\": 622, \"group\": [1705.0, 960.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24854_BALBc-1_X02_Y01_1285_865\", \"ini\": 2295, \"clust\": 2711, \"rank\": 2510, \"rankvar\": 2346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 531, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 789, \"cat-2\": \"Density: 20\", \"cat_2_index\": 141, \"group\": [2708.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25171_BALBc-1_X02_Y01_129_327\", \"ini\": 2294, \"clust\": 994, \"rank\": 581, \"rankvar\": 1143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 532, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1886, \"cat-2\": \"Density: 26\", \"cat_2_index\": 744, \"group\": [994.0, 510.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25272_BALBc-1_X02_Y01_1290_692\", \"ini\": 2293, \"clust\": 1922, \"rank\": 2231, \"rankvar\": 2386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 533, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 17, \"cat-2\": \"Density: 27\", \"cat_2_index\": 906, \"group\": [1922.0, 1105.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25330_BALBc-1_X02_Y01_1291_444\", \"ini\": 2292, \"clust\": 2562, \"rank\": 2478, \"rankvar\": 2266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 534, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2512, \"cat-2\": \"Density: 21\", \"cat_2_index\": 197, \"group\": [2560.0, 1381.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25437_BALBc-1_X02_Y01_1292_824\", \"ini\": 2291, \"clust\": 157, \"rank\": 1558, \"rankvar\": 1795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 535, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 18, \"cat-2\": \"Density: 21\", \"cat_2_index\": 198, \"group\": [161.0, 102.0, 33.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25507_BALBc-1_X02_Y01_1293_608\", \"ini\": 2290, \"clust\": 1949, \"rank\": 2007, \"rankvar\": 1581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 536, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 19, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1065, \"group\": [1951.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25576_BALBc-1_X02_Y01_1294_588\", \"ini\": 2289, \"clust\": 355, \"rank\": 562, \"rankvar\": 1218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 537, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 790, \"cat-2\": \"Density: 26\", \"cat_2_index\": 745, \"group\": [355.0, 249.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25582_BALBc-1_X02_Y01_1294_704\", \"ini\": 2288, \"clust\": 390, \"rank\": 1552, \"rankvar\": 2161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 538, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1039, \"cat-2\": \"Density: 25\", \"cat_2_index\": 623, \"group\": [408.0, 286.0, 97.0, 28.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25697_BALBc-1_X02_Y01_1296_329\", \"ini\": 2287, \"clust\": 2759, \"rank\": 2054, \"rankvar\": 2104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 539, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2413, \"cat-2\": \"Density: 19\", \"cat_2_index\": 116, \"group\": [2762.0, 1495.0, 445.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25710_BALBc-1_X02_Y01_1296_563\", \"ini\": 2286, \"clust\": 2717, \"rank\": 2304, \"rankvar\": 1740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 540, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2513, \"cat-2\": \"Density: 25\", \"cat_2_index\": 624, \"group\": [2721.0, 1461.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25815_BALBc-1_X02_Y01_1297_976\", \"ini\": 2285, \"clust\": 359, \"rank\": 158, \"rankvar\": 2223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 541, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1040, \"cat-2\": \"Density: 23\", \"cat_2_index\": 379, \"group\": [362.0, 251.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25841_BALBc-1_X02_Y01_1298_381\", \"ini\": 2284, \"clust\": 2781, \"rank\": 2444, \"rankvar\": 2712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 791, \"cat-2\": \"Density: 17\", \"cat_2_index\": 71, \"group\": [2781.0, 1506.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25946_BALBc-1_X02_Y01_1299_659\", \"ini\": 2283, \"clust\": 199, \"rank\": 1168, \"rankvar\": 494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 543, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 20, \"cat-2\": \"Density: 24\", \"cat_2_index\": 483, \"group\": [200.0, 134.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26179_BALBc-1_X02_Y01_1300_765\", \"ini\": 2282, \"clust\": 2132, \"rank\": 2604, \"rankvar\": 2748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 544, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2514, \"cat-2\": \"Density: 18\", \"cat_2_index\": 91, \"group\": [2132.0, 1153.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26338_BALBc-1_X02_Y01_1302_966\", \"ini\": 2281, \"clust\": 2657, \"rank\": 2795, \"rankvar\": 2633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 545, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1041, \"cat-2\": \"Density: 22\", \"cat_2_index\": 266, \"group\": [2657.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26563_BALBc-1_X02_Y01_1306_615\", \"ini\": 2280, \"clust\": 636, \"rank\": 593, \"rankvar\": 34, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 546, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 21, \"cat-2\": \"Density: 24\", \"cat_2_index\": 484, \"group\": [635.0, 428.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26947_BALBc-1_X02_Y01_1310_844\", \"ini\": 2279, \"clust\": 2674, \"rank\": 2626, \"rankvar\": 2441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 547, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 22, \"cat-2\": \"Density: 17\", \"cat_2_index\": 72, \"group\": [2681.0, 1446.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26986_BALBc-1_X02_Y01_1311_476\", \"ini\": 2278, \"clust\": 2138, \"rank\": 2314, \"rankvar\": 1274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 548, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 23, \"cat-2\": \"Density: 20\", \"cat_2_index\": 142, \"group\": [2142.0, 1159.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27217_BALBc-1_X02_Y01_1314_632\", \"ini\": 2277, \"clust\": 152, \"rank\": 1096, \"rankvar\": 372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 549, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 24, \"cat-2\": \"Density: 23\", \"cat_2_index\": 380, \"group\": [155.0, 97.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27299_BALBc-1_X02_Y01_1315_692\", \"ini\": 2276, \"clust\": 979, \"rank\": 556, \"rankvar\": 444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 550, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 25, \"cat-2\": \"Density: 22\", \"cat_2_index\": 267, \"group\": [979.0, 503.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27307_BALBc-1_X02_Y01_1315_735\", \"ini\": 2275, \"clust\": 2018, \"rank\": 1850, \"rankvar\": 1202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 26, \"cat-2\": \"Density: 19\", \"cat_2_index\": 117, \"group\": [2019.0, 1137.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27466_BALBc-1_X02_Y01_1317_879\", \"ini\": 2274, \"clust\": 257, \"rank\": 1351, \"rankvar\": 1067, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 552, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 792, \"cat-2\": \"Density: 16\", \"cat_2_index\": 51, \"group\": [263.0, 185.0, 64.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27504_BALBc-1_X02_Y01_1318_405\", \"ini\": 2273, \"clust\": 1405, \"rank\": 2132, \"rankvar\": 1636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 553, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 793, \"cat-2\": \"Density: 16\", \"cat_2_index\": 52, \"group\": [1405.0, 755.0, 223.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27595_BALBc-1_X02_Y01_1319_808\", \"ini\": 2272, \"clust\": 2184, \"rank\": 1579, \"rankvar\": 2501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 554, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 27, \"cat-2\": \"Density: 15\", \"cat_2_index\": 38, \"group\": [2182.0, 1185.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27599_BALBc-1_X02_Y01_1319_890\", \"ini\": 2271, \"clust\": 578, \"rank\": 1160, \"rankvar\": 1522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 555, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 794, \"cat-2\": \"Density: 17\", \"cat_2_index\": 73, \"group\": [595.0, 406.0, 133.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27627_BALBc-1_X02_Y01_132_376\", \"ini\": 2270, \"clust\": 308, \"rank\": 2203, \"rankvar\": 2725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 556, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1042, \"cat-2\": \"Density: 26\", \"cat_2_index\": 746, \"group\": [306.0, 215.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27677_BALBc-1_X02_Y01_132_918\", \"ini\": 2269, \"clust\": 250, \"rank\": 834, \"rankvar\": 907, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 557, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2515, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1949, \"group\": [249.0, 172.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27726_BALBc-1_X02_Y01_1320_540\", \"ini\": 2268, \"clust\": 2518, \"rank\": 1470, \"rankvar\": 1020, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 558, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2516, \"cat-2\": \"Density: 18\", \"cat_2_index\": 92, \"group\": [2518.0, 1352.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27814_BALBc-1_X02_Y01_1321_772\", \"ini\": 2267, \"clust\": 2271, \"rank\": 1548, \"rankvar\": 1462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 559, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 28, \"cat-2\": \"Density: 17\", \"cat_2_index\": 74, \"group\": [2269.0, 1239.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27851_BALBc-1_X02_Y01_1322_496\", \"ini\": 2266, \"clust\": 1961, \"rank\": 2345, \"rankvar\": 1341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 560, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2517, \"cat-2\": \"Density: 16\", \"cat_2_index\": 53, \"group\": [1959.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27996_BALBc-1_X02_Y01_1324_340\", \"ini\": 2265, \"clust\": 1345, \"rank\": 816, \"rankvar\": 1536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 561, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 795, \"cat-2\": \"Density: 13\", \"cat_2_index\": 12, \"group\": [1346.0, 709.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28090_BALBc-1_X02_Y01_1325_569\", \"ini\": 2264, \"clust\": 1905, \"rank\": 2378, \"rankvar\": 1226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 562, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 29, \"cat-2\": \"Density: 20\", \"cat_2_index\": 143, \"group\": [1905.0, 1092.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28093_BALBc-1_X02_Y01_1325_603\", \"ini\": 2263, \"clust\": 1697, \"rank\": 1776, \"rankvar\": 1554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 563, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 30, \"cat-2\": \"Density: 22\", \"cat_2_index\": 268, \"group\": [1698.0, 955.0, 286.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28114_BALBc-1_X02_Y01_1325_828\", \"ini\": 2262, \"clust\": 2650, \"rank\": 2270, \"rankvar\": 1860, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 564, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 31, \"cat-2\": \"Density: 15\", \"cat_2_index\": 39, \"group\": [2653.0, 1440.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28137_BALBc-1_X02_Y01_1325_999\", \"ini\": 2261, \"clust\": 2658, \"rank\": 2807, \"rankvar\": 2722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 565, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 796, \"cat-2\": \"Density: 17\", \"cat_2_index\": 75, \"group\": [2658.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28664_BALBc-1_X02_Y01_1331_725\", \"ini\": 2260, \"clust\": 2140, \"rank\": 2554, \"rankvar\": 949, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 566, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 32, \"cat-2\": \"Density: 16\", \"cat_2_index\": 54, \"group\": [2139.0, 1157.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28713_BALBc-1_X02_Y01_1332_436\", \"ini\": 2259, \"clust\": 2689, \"rank\": 2793, \"rankvar\": 1660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 567, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2518, \"cat-2\": \"Density: 14\", \"cat_2_index\": 27, \"group\": [2691.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28759_BALBc-1_X02_Y01_1332_937\", \"ini\": 2258, \"clust\": 2691, \"rank\": 2794, \"rankvar\": 2291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 568, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 797, \"cat-2\": \"Density: 15\", \"cat_2_index\": 40, \"group\": [2688.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28951_BALBc-1_X02_Y01_1335_663\", \"ini\": 2257, \"clust\": 2304, \"rank\": 1907, \"rankvar\": 1208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 569, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 33, \"cat-2\": \"Density: 20\", \"cat_2_index\": 144, \"group\": [2303.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29000_BALBc-1_X02_Y01_1336_597\", \"ini\": 2256, \"clust\": 1970, \"rank\": 2287, \"rankvar\": 1879, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 570, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 34, \"cat-2\": \"Density: 16\", \"cat_2_index\": 55, \"group\": [1964.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29507_BALBc-1_X02_Y01_137_977\", \"ini\": 2255, \"clust\": 65, \"rank\": 1253, \"rankvar\": 2589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 571, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1043, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1950, \"group\": [63.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29674_BALBc-1_X02_Y01_14_498\", \"ini\": 2254, \"clust\": 1664, \"rank\": 2031, \"rankvar\": 2771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 572, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2414, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1201, \"group\": [1664.0, 921.0, 268.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29998_BALBc-1_X02_Y01_143_952\", \"ini\": 2253, \"clust\": 1156, \"rank\": 2452, \"rankvar\": 2255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 573, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1044, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1951, \"group\": [1156.0, 555.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30482_BALBc-1_X02_Y01_15_575\", \"ini\": 2252, \"clust\": 23, \"rank\": 810, \"rankvar\": 937, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 574, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1887, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1202, \"group\": [23.0, 22.0, 13.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30586_BALBc-1_X02_Y01_150_909\", \"ini\": 2251, \"clust\": 1763, \"rank\": 1773, \"rankvar\": 2156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1045, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1494, \"group\": [1764.0, 999.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31216_BALBc-1_X02_Y01_159_250\", \"ini\": 2250, \"clust\": 1228, \"rank\": 1841, \"rankvar\": 1893, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 576, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1617, \"cat-2\": \"Density: 26\", \"cat_2_index\": 747, \"group\": [1225.0, 615.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31389_BALBc-1_X02_Y01_160_546\", \"ini\": 2249, \"clust\": 1550, \"rank\": 872, \"rankvar\": 645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 577, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1888, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1203, \"group\": [1549.0, 840.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31462_BALBc-1_X02_Y01_161_584\", \"ini\": 2248, \"clust\": 835, \"rank\": 142, \"rankvar\": 38, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 578, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1889, \"cat-2\": \"Density: 27\", \"cat_2_index\": 907, \"group\": [834.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31774_BALBc-1_X02_Y01_166_30\", \"ini\": 2247, \"clust\": 1608, \"rank\": 1384, \"rankvar\": 1097, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 579, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1046, \"cat-2\": \"Density: 16\", \"cat_2_index\": 56, \"group\": [1612.0, 888.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31790_BALBc-1_X02_Y01_166_464\", \"ini\": 2246, \"clust\": 1128, \"rank\": 1233, \"rankvar\": 1184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 580, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2810, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1495, \"group\": [1129.0, 531.0, 144.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32250_BALBc-1_X02_Y01_171_888\", \"ini\": 2245, \"clust\": 1288, \"rank\": 1464, \"rankvar\": 1278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 581, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 798, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1366, \"group\": [1289.0, 660.0, 189.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32282_BALBc-1_X02_Y01_172_482\", \"ini\": 2244, \"clust\": 1658, \"rank\": 2279, \"rankvar\": 2762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 582, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1890, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1496, \"group\": [1666.0, 923.0, 269.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32442_BALBc-1_X02_Y01_174_956\", \"ini\": 2243, \"clust\": 1303, \"rank\": 1227, \"rankvar\": 1232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 583, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1047, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1847, \"group\": [1302.0, 673.0, 197.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32519_BALBc-1_X02_Y01_175_843\", \"ini\": 2242, \"clust\": 2758, \"rank\": 2037, \"rankvar\": 2151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 584, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1891, \"cat-2\": \"Density: 26\", \"cat_2_index\": 748, \"group\": [2757.0, 1490.0, 443.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32762_BALBc-1_X02_Y01_179_322\", \"ini\": 2241, \"clust\": 450, \"rank\": 458, \"rankvar\": 2039, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 585, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1048, \"cat-2\": \"Density: 25\", \"cat_2_index\": 625, \"group\": [451.0, 315.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32908_BALBc-1_X02_Y01_180_240\", \"ini\": 2240, \"clust\": 1605, \"rank\": 682, \"rankvar\": 2434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 586, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1618, \"cat-2\": \"Density: 23\", \"cat_2_index\": 381, \"group\": [1607.0, 887.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33134_BALBc-1_X02_Y01_183_289\", \"ini\": 2239, \"clust\": 1332, \"rank\": 1248, \"rankvar\": 871, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 587, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1049, \"cat-2\": \"Density: 24\", \"cat_2_index\": 485, \"group\": [1333.0, 700.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33188_BALBc-1_X02_Y01_183_994\", \"ini\": 2238, \"clust\": 2502, \"rank\": 2262, \"rankvar\": 2429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 588, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1619, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1497, \"group\": [2501.0, 1345.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33296_BALBc-1_X02_Y01_185_49\", \"ini\": 2237, \"clust\": 20, \"rank\": 1242, \"rankvar\": 557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 589, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2480, \"cat-2\": \"Density: 20\", \"cat_2_index\": 145, \"group\": [25.0, 24.0, 14.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33298_BALBc-1_X02_Y01_185_504\", \"ini\": 2236, \"clust\": 968, \"rank\": 137, \"rankvar\": 1667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 590, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2415, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1638, \"group\": [968.0, 495.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33505_BALBc-1_X02_Y01_188_605\", \"ini\": 2235, \"clust\": 555, \"rank\": 699, \"rankvar\": 786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1050, \"cat-2\": \"Density: 27\", \"cat_2_index\": 908, \"group\": [557.0, 381.0, 127.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34197_BALBc-1_X02_Y01_196_898\", \"ini\": 2234, \"clust\": 1520, \"rank\": 2644, \"rankvar\": 2511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 592, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 799, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1204, \"group\": [1518.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34308_BALBc-1_X02_Y01_198_421\", \"ini\": 2233, \"clust\": 1707, \"rank\": 2691, \"rankvar\": 2577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 593, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1892, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1747, \"group\": [1706.0, 961.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34743_BALBc-1_X02_Y01_203_465\", \"ini\": 2232, \"clust\": 1465, \"rank\": 2337, \"rankvar\": 2164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 594, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1893, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1748, \"group\": [1466.0, 799.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35154_BALBc-1_X02_Y01_208_938\", \"ini\": 2231, \"clust\": 237, \"rank\": 743, \"rankvar\": 1890, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 595, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1051, \"cat-2\": \"Density: 26\", \"cat_2_index\": 749, \"group\": [236.0, 164.0, 58.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35303_BALBc-1_X02_Y01_21_920\", \"ini\": 2230, \"clust\": 56, \"rank\": 1104, \"rankvar\": 571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 596, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2416, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1749, \"group\": [57.0, 46.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35604_BALBc-1_X02_Y01_214_17\", \"ini\": 2229, \"clust\": 24, \"rank\": 1062, \"rankvar\": 915, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 597, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1620, \"cat-2\": \"Density: 15\", \"cat_2_index\": 41, \"group\": [24.0, 23.0, 13.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35670_BALBc-1_X02_Y01_214_814\", \"ini\": 2228, \"clust\": 269, \"rank\": 1262, \"rankvar\": 1282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 598, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1894, \"cat-2\": \"Density: 25\", \"cat_2_index\": 626, \"group\": [269.0, 191.0, 68.0, 21.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35942_BALBc-1_X02_Y01_218_649\", \"ini\": 2227, \"clust\": 354, \"rank\": 1157, \"rankvar\": 2618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 599, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1052, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1639, \"group\": [367.0, 254.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36172_BALBc-1_X02_Y01_221_262\", \"ini\": 2226, \"clust\": 1563, \"rank\": 844, \"rankvar\": 186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 600, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1621, \"cat-2\": \"Density: 26\", \"cat_2_index\": 750, \"group\": [1563.0, 852.0, 249.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36246_BALBc-1_X02_Y01_222_326\", \"ini\": 2225, \"clust\": 402, \"rank\": 370, \"rankvar\": 605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 601, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1622, \"cat-2\": \"Density: 24\", \"cat_2_index\": 486, \"group\": [401.0, 280.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36545_BALBc-1_X02_Y01_226_202\", \"ini\": 2224, \"clust\": 1231, \"rank\": 1926, \"rankvar\": 2582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 602, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1623, \"cat-2\": \"Density: 24\", \"cat_2_index\": 487, \"group\": [1232.0, 620.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37650_BALBc-1_X02_Y01_24_403\", \"ini\": 2223, \"clust\": 1551, \"rank\": 909, \"rankvar\": 1671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 603, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2481, \"cat-2\": \"Density: 22\", \"cat_2_index\": 269, \"group\": [1550.0, 840.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37845_BALBc-1_X02_Y01_242_283\", \"ini\": 2222, \"clust\": 328, \"rank\": 1155, \"rankvar\": 1721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 604, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2272, \"cat-2\": \"Density: 22\", \"cat_2_index\": 270, \"group\": [329.0, 230.0, 81.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37881_BALBc-1_X02_Y01_242_724\", \"ini\": 2221, \"clust\": 1272, \"rank\": 935, \"rankvar\": 2355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 605, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 617, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1205, \"group\": [1275.0, 652.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38216_BALBc-1_X02_Y01_246_892\", \"ini\": 2220, \"clust\": 1593, \"rank\": 766, \"rankvar\": 804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 606, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1895, \"cat-2\": \"Density: 26\", \"cat_2_index\": 751, \"group\": [1592.0, 875.0, 256.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38269_BALBc-1_X02_Y01_247_736\", \"ini\": 2219, \"clust\": 511, \"rank\": 742, \"rankvar\": 33, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 607, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1896, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1367, \"group\": [512.0, 351.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38745_BALBc-1_X02_Y01_253_169\", \"ini\": 2218, \"clust\": 692, \"rank\": 131, \"rankvar\": 1750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 608, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2417, \"cat-2\": \"Density: 20\", \"cat_2_index\": 146, \"group\": [696.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38753_BALBc-1_X02_Y01_253_315\", \"ini\": 2217, \"clust\": 1547, \"rank\": 1129, \"rankvar\": 2313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 609, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1624, \"cat-2\": \"Density: 24\", \"cat_2_index\": 488, \"group\": [1546.0, 837.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39430_BALBc-1_X02_Y01_261_492\", \"ini\": 2216, \"clust\": 1582, \"rank\": 1039, \"rankvar\": 2026, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 610, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2418, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1750, \"group\": [1585.0, 869.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39865_BALBc-1_X02_Y01_267_24\", \"ini\": 2215, \"clust\": 452, \"rank\": 525, \"rankvar\": 819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 611, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1053, \"cat-2\": \"Density: 15\", \"cat_2_index\": 42, \"group\": [455.0, 317.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40114_BALBc-1_X02_Y01_27_431\", \"ini\": 2214, \"clust\": 1273, \"rank\": 488, \"rankvar\": 2485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 612, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2482, \"cat-2\": \"Density: 26\", \"cat_2_index\": 752, \"group\": [1273.0, 652.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40196_BALBc-1_X02_Y01_270_639\", \"ini\": 2213, \"clust\": 398, \"rank\": 174, \"rankvar\": 1745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 613, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 618, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1206, \"group\": [400.0, 279.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40274_BALBc-1_X02_Y01_271_849\", \"ini\": 2212, \"clust\": 1484, \"rank\": 2264, \"rankvar\": 2078, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 614, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1897, \"cat-2\": \"Density: 25\", \"cat_2_index\": 627, \"group\": [1483.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40304_BALBc-1_X02_Y01_272_264\", \"ini\": 2211, \"clust\": 1229, \"rank\": 2138, \"rankvar\": 2305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 615, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1054, \"cat-2\": \"Density: 21\", \"cat_2_index\": 199, \"group\": [1226.0, 615.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40412_BALBc-1_X02_Y01_273_730\", \"ini\": 2210, \"clust\": 323, \"rank\": 1313, \"rankvar\": 2467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 616, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 800, \"cat-2\": \"Density: 27\", \"cat_2_index\": 909, \"group\": [323.0, 225.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40506_BALBc-1_X02_Y01_275_150\", \"ini\": 2209, \"clust\": 456, \"rank\": 252, \"rankvar\": 1633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 617, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1055, \"cat-2\": \"Density: 20\", \"cat_2_index\": 147, \"group\": [456.0, 318.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40534_BALBc-1_X02_Y01_275_491\", \"ini\": 2208, \"clust\": 1446, \"rank\": 2358, \"rankvar\": 2189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 618, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2419, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1368, \"group\": [1445.0, 784.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40859_BALBc-1_X02_Y01_279_657\", \"ini\": 2207, \"clust\": 1600, \"rank\": 1498, \"rankvar\": 1859, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 619, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1056, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1066, \"group\": [1600.0, 882.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41366_BALBc-1_X02_Y01_285_702\", \"ini\": 2206, \"clust\": 1746, \"rank\": 1861, \"rankvar\": 1516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 620, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1057, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1207, \"group\": [1745.0, 986.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41645_BALBc-1_X02_Y01_289_419\", \"ini\": 2205, \"clust\": 1207, \"rank\": 606, \"rankvar\": 713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 621, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1058, \"cat-2\": \"Density: 25\", \"cat_2_index\": 628, \"group\": [1207.0, 600.0, 170.0, 46.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41692_BALBc-1_X02_Y01_289_977\", \"ini\": 2204, \"clust\": 2524, \"rank\": 1175, \"rankvar\": 1918, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 622, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2483, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1498, \"group\": [2525.0, 1354.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41720_BALBc-1_X02_Y01_29_371\", \"ini\": 2203, \"clust\": 2219, \"rank\": 1190, \"rankvar\": 177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 623, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1898, \"cat-2\": \"Density: 21\", \"cat_2_index\": 200, \"group\": [2219.0, 1200.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42093_BALBc-1_X02_Y01_294_471\", \"ini\": 2202, \"clust\": 1584, \"rank\": 1434, \"rankvar\": 1816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 624, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1899, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1067, \"group\": [1584.0, 868.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42388_BALBc-1_X02_Y01_298_746\", \"ini\": 2201, \"clust\": 50, \"rank\": 1287, \"rankvar\": 813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 625, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1059, \"cat-2\": \"Density: 25\", \"cat_2_index\": 629, \"group\": [55.0, 44.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42422_BALBc-1_X02_Y01_299_309\", \"ini\": 2200, \"clust\": 819, \"rank\": 14, \"rankvar\": 238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 626, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1625, \"cat-2\": \"Density: 22\", \"cat_2_index\": 271, \"group\": [821.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42773_BALBc-1_X02_Y01_302_572\", \"ini\": 2199, \"clust\": 915, \"rank\": 21, \"rankvar\": 191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 627, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2420, \"cat-2\": \"Density: 27\", \"cat_2_index\": 910, \"group\": [917.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42875_BALBc-1_X02_Y01_303_626\", \"ini\": 2198, \"clust\": 771, \"rank\": 215, \"rankvar\": 831, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 628, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 939, \"cat-2\": \"Density: 26\", \"cat_2_index\": 753, \"group\": [770.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42918_BALBc-1_X02_Y01_304_24\", \"ini\": 2197, \"clust\": 702, \"rank\": 351, \"rankvar\": 450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 629, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2484, \"cat-2\": \"Density: 14\", \"cat_2_index\": 28, \"group\": [702.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43254_BALBc-1_X02_Y01_309_522\", \"ini\": 2196, \"clust\": 1098, \"rank\": 30, \"rankvar\": 334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 630, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1900, \"cat-2\": \"Density: 23\", \"cat_2_index\": 382, \"group\": [1095.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43735_BALBc-1_X02_Y01_314_988\", \"ini\": 2195, \"clust\": 2820, \"rank\": 2435, \"rankvar\": 2474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 631, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1060, \"cat-2\": \"Density: 26\", \"cat_2_index\": 754, \"group\": [2818.0, 1532.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44336_BALBc-1_X02_Y01_321_884\", \"ini\": 2194, \"clust\": 1586, \"rank\": 945, \"rankvar\": 2082, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 632, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1061, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1068, \"group\": [1586.0, 870.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44373_BALBc-1_X02_Y01_322_353\", \"ini\": 2193, \"clust\": 537, \"rank\": 322, \"rankvar\": 1099, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 633, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2230, \"cat-2\": \"Density: 24\", \"cat_2_index\": 489, \"group\": [542.0, 370.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44527_BALBc-1_X02_Y01_324_319\", \"ini\": 2192, \"clust\": 1240, \"rank\": 1679, \"rankvar\": 2368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 634, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1626, \"cat-2\": \"Density: 24\", \"cat_2_index\": 490, \"group\": [1242.0, 623.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44555_BALBc-1_X02_Y01_324_635\", \"ini\": 2191, \"clust\": 1147, \"rank\": 1136, \"rankvar\": 70, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 635, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 940, \"cat-2\": \"Density: 27\", \"cat_2_index\": 911, \"group\": [1151.0, 551.0, 152.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45166_BALBc-1_X02_Y01_331_409\", \"ini\": 2190, \"clust\": 1801, \"rank\": 2705, \"rankvar\": 2814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 636, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2231, \"cat-2\": \"Density: 25\", \"cat_2_index\": 630, \"group\": [1803.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45200_BALBc-1_X02_Y01_331_901\", \"ini\": 2189, \"clust\": 378, \"rank\": 342, \"rankvar\": 1835, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 637, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1901, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1208, \"group\": [377.0, 262.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45510_BALBc-1_X02_Y01_335_873\", \"ini\": 2188, \"clust\": 1320, \"rank\": 884, \"rankvar\": 701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 638, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1062, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1069, \"group\": [1321.0, 689.0, 205.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45659_BALBc-1_X02_Y01_338_160\", \"ini\": 2187, \"clust\": 363, \"rank\": 324, \"rankvar\": 1872, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 639, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 801, \"cat-2\": \"Density: 26\", \"cat_2_index\": 755, \"group\": [363.0, 252.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45693_BALBc-1_X02_Y01_338_551\", \"ini\": 2186, \"clust\": 1242, \"rank\": 1786, \"rankvar\": 2390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 640, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2421, \"cat-2\": \"Density: 26\", \"cat_2_index\": 756, \"group\": [1241.0, 623.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46414_BALBc-1_X02_Y01_346_740\", \"ini\": 2185, \"clust\": 1650, \"rank\": 2201, \"rankvar\": 2157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 641, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1063, \"cat-2\": \"Density: 22\", \"cat_2_index\": 272, \"group\": [1653.0, 912.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46504_BALBc-1_X02_Y01_348_114\", \"ini\": 2184, \"clust\": 822, \"rank\": 293, \"rankvar\": 29, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 642, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1902, \"cat-2\": \"Density: 20\", \"cat_2_index\": 148, \"group\": [823.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46508_BALBc-1_X02_Y01_348_141\", \"ini\": 2183, \"clust\": 611, \"rank\": 624, \"rankvar\": 802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 643, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1903, \"cat-2\": \"Density: 23\", \"cat_2_index\": 383, \"group\": [611.0, 414.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46935_BALBc-1_X02_Y01_352_73\", \"ini\": 2182, \"clust\": 616, \"rank\": 643, \"rankvar\": 712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 644, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1064, \"cat-2\": \"Density: 19\", \"cat_2_index\": 118, \"group\": [617.0, 418.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46949_BALBc-1_X02_Y01_352_958\", \"ini\": 2181, \"clust\": 395, \"rank\": 1697, \"rankvar\": 2738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 645, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1065, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2061, \"group\": [395.0, 276.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47181_BALBc-1_X02_Y01_355_871\", \"ini\": 2180, \"clust\": 329, \"rank\": 635, \"rankvar\": 2240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 646, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2273, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1209, \"group\": [333.0, 234.0, 82.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47567_BALBc-1_X02_Y01_360_631\", \"ini\": 2179, \"clust\": 715, \"rank\": 771, \"rankvar\": 628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 647, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1904, \"cat-2\": \"Density: 27\", \"cat_2_index\": 912, \"group\": [715.0, 458.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47808_BALBc-1_X02_Y01_363_91\", \"ini\": 2178, \"clust\": 1299, \"rank\": 1562, \"rankvar\": 1632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 648, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 681, \"cat-2\": \"Density: 20\", \"cat_2_index\": 149, \"group\": [1299.0, 670.0, 195.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47901_BALBc-1_X02_Y01_364_890\", \"ini\": 2177, \"clust\": 1661, \"rank\": 1795, \"rankvar\": 2623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 649, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1627, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1499, \"group\": [1660.0, 918.0, 267.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48689_BALBc-1_X02_Y01_374_207\", \"ini\": 2176, \"clust\": 1289, \"rank\": 1494, \"rankvar\": 2179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 650, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 802, \"cat-2\": \"Density: 22\", \"cat_2_index\": 273, \"group\": [1294.0, 665.0, 191.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48761_BALBc-1_X02_Y01_375_164\", \"ini\": 2175, \"clust\": 509, \"rank\": 602, \"rankvar\": 93, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 651, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 35, \"cat-2\": \"Density: 22\", \"cat_2_index\": 274, \"group\": [510.0, 350.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48973_BALBc-1_X02_Y01_377_883\", \"ini\": 2174, \"clust\": 658, \"rank\": 479, \"rankvar\": 223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 652, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2422, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1640, \"group\": [657.0, 439.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49252_BALBc-1_X02_Y01_380_635\", \"ini\": 2173, \"clust\": 1430, \"rank\": 2374, \"rankvar\": 2418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 653, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 803, \"cat-2\": \"Density: 27\", \"cat_2_index\": 913, \"group\": [1433.0, 779.0, 233.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49290_BALBc-1_X02_Y01_381_186\", \"ini\": 2172, \"clust\": 597, \"rank\": 461, \"rankvar\": 979, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 654, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 804, \"cat-2\": \"Density: 20\", \"cat_2_index\": 150, \"group\": [598.0, 409.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49698_BALBc-1_X02_Y01_386_108\", \"ini\": 2171, \"clust\": 625, \"rank\": 1020, \"rankvar\": 906, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 655, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 682, \"cat-2\": \"Density: 23\", \"cat_2_index\": 384, \"group\": [632.0, 425.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50061_BALBc-1_X02_Y01_39_635\", \"ini\": 2170, \"clust\": 1513, \"rank\": 1889, \"rankvar\": 2596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 656, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1905, \"cat-2\": \"Density: 22\", \"cat_2_index\": 275, \"group\": [1515.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50421_BALBc-1_X02_Y01_394_629\", \"ini\": 2169, \"clust\": 2405, \"rank\": 2511, \"rankvar\": 2655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 657, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2232, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1070, \"group\": [2406.0, 1276.0, 380.0, 103.0, 21.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50593_BALBc-1_X02_Y01_396_836\", \"ini\": 2168, \"clust\": 965, \"rank\": 219, \"rankvar\": 1736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 658, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1906, \"cat-2\": \"Density: 27\", \"cat_2_index\": 914, \"group\": [965.0, 495.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50814_BALBc-1_X02_Y01_399_570\", \"ini\": 2167, \"clust\": 662, \"rank\": 301, \"rankvar\": 51, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 659, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1907, \"cat-2\": \"Density: 27\", \"cat_2_index\": 915, \"group\": [661.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50857_BALBc-1_X02_Y01_4_1000\", \"ini\": 2166, \"clust\": 118, \"rank\": 1027, \"rankvar\": 573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 660, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1066, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1210, \"group\": [119.0, 75.0, 25.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50898_BALBc-1_X02_Y01_40_107\", \"ini\": 2165, \"clust\": 1613, \"rank\": 1898, \"rankvar\": 2531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 661, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 805, \"cat-2\": \"Density: 18\", \"cat_2_index\": 93, \"group\": [1613.0, 889.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51368_BALBc-1_X02_Y01_405_327\", \"ini\": 2164, \"clust\": 565, \"rank\": 928, \"rankvar\": 1788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 662, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1908, \"cat-2\": \"Density: 25\", \"cat_2_index\": 631, \"group\": [570.0, 390.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51852_BALBc-1_X02_Y01_410_23\", \"ini\": 2163, \"clust\": 75, \"rank\": 619, \"rankvar\": 1804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 663, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1067, \"cat-2\": \"Density: 13\", \"cat_2_index\": 13, \"group\": [78.0, 57.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51999_BALBc-1_X02_Y01_412_155\", \"ini\": 2162, \"clust\": 2525, \"rank\": 1137, \"rankvar\": 782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 664, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1541, \"cat-2\": \"Density: 26\", \"cat_2_index\": 757, \"group\": [2528.0, 1355.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52079_BALBc-1_X02_Y01_413_103\", \"ini\": 2161, \"clust\": 2789, \"rank\": 2077, \"rankvar\": 1988, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 665, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1542, \"cat-2\": \"Density: 26\", \"cat_2_index\": 758, \"group\": [2790.0, 1512.0, 450.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52251_BALBc-1_X02_Y01_415_13\", \"ini\": 2160, \"clust\": 2727, \"rank\": 2766, \"rankvar\": 2808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 666, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1068, \"cat-2\": \"Density: 13\", \"cat_2_index\": 14, \"group\": [2730.0, 1467.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52621_BALBc-1_X02_Y01_419_991\", \"ini\": 2159, \"clust\": 39, \"rank\": 738, \"rankvar\": 506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 667, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1069, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1848, \"group\": [39.0, 33.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52973_BALBc-1_X02_Y01_423_647\", \"ini\": 2158, \"clust\": 1590, \"rank\": 1700, \"rankvar\": 1854, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 668, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2233, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1211, \"group\": [1590.0, 873.0, 255.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53049_BALBc-1_X02_Y01_424_66\", \"ini\": 2157, \"clust\": 782, \"rank\": 281, \"rankvar\": 534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 669, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 683, \"cat-2\": \"Density: 21\", \"cat_2_index\": 201, \"group\": [782.0, 475.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53155_BALBc-1_X02_Y01_426_178\", \"ini\": 2156, \"clust\": 1214, \"rank\": 1118, \"rankvar\": 1392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 670, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1909, \"cat-2\": \"Density: 26\", \"cat_2_index\": 759, \"group\": [1215.0, 608.0, 172.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53404_BALBc-1_X02_Y01_429_1005\", \"ini\": 2155, \"clust\": 2142, \"rank\": 2443, \"rankvar\": 1827, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 671, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 36, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2142, \"group\": [2145.0, 1162.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53535_BALBc-1_X02_Y01_43_792\", \"ini\": 2154, \"clust\": 1630, \"rank\": 2707, \"rankvar\": 2811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 672, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1070, \"cat-2\": \"Density: 26\", \"cat_2_index\": 760, \"group\": [1630.0, 897.0, 260.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53582_BALBc-1_X02_Y01_430_391\", \"ini\": 2153, \"clust\": 1506, \"rank\": 2433, \"rankvar\": 1784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 673, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2423, \"cat-2\": \"Density: 23\", \"cat_2_index\": 385, \"group\": [1507.0, 816.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53678_BALBc-1_X02_Y01_431_589\", \"ini\": 2152, \"clust\": 657, \"rank\": 475, \"rankvar\": 726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 674, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2424, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1071, \"group\": [659.0, 439.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53767_BALBc-1_X02_Y01_432_601\", \"ini\": 2151, \"clust\": 332, \"rank\": 555, \"rankvar\": 1463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 675, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2425, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1500, \"group\": [331.0, 232.0, 82.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53917_BALBc-1_X02_Y01_434_617\", \"ini\": 2150, \"clust\": 1420, \"rank\": 2228, \"rankvar\": 1584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 676, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2234, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1212, \"group\": [1423.0, 769.0, 228.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54343_BALBc-1_X02_Y01_439_956\", \"ini\": 2149, \"clust\": 1575, \"rank\": 1678, \"rankvar\": 1459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 677, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 806, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2143, \"group\": [1576.0, 862.0, 252.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54799_BALBc-1_X02_Y01_444_988\", \"ini\": 2148, \"clust\": 2477, \"rank\": 1788, \"rankvar\": 1494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 678, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1071, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2062, \"group\": [2478.0, 1325.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54922_BALBc-1_X02_Y01_446_748\", \"ini\": 2147, \"clust\": 1614, \"rank\": 2318, \"rankvar\": 2353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 679, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1910, \"cat-2\": \"Density: 22\", \"cat_2_index\": 276, \"group\": [1614.0, 889.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55138_BALBc-1_X02_Y01_449_612\", \"ini\": 2146, \"clust\": 792, \"rank\": 60, \"rankvar\": 1857, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 680, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2426, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1369, \"group\": [794.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55205_BALBc-1_X02_Y01_45_516\", \"ini\": 2145, \"clust\": 1665, \"rank\": 973, \"rankvar\": 2155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 681, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2427, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1213, \"group\": [1665.0, 922.0, 268.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55330_BALBc-1_X02_Y01_451_348\", \"ini\": 2144, \"clust\": 1348, \"rank\": 853, \"rankvar\": 2224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 682, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1072, \"cat-2\": \"Density: 25\", \"cat_2_index\": 632, \"group\": [1349.0, 710.0, 211.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55345_BALBc-1_X02_Y01_451_533\", \"ini\": 2143, \"clust\": 1634, \"rank\": 2529, \"rankvar\": 2597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 683, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1726, \"cat-2\": \"Density: 27\", \"cat_2_index\": 916, \"group\": [1633.0, 900.0, 261.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55441_BALBc-1_X02_Y01_452_672\", \"ini\": 2142, \"clust\": 656, \"rank\": 284, \"rankvar\": 1337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 684, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2428, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1370, \"group\": [656.0, 438.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56039_BALBc-1_X02_Y01_46_538\", \"ini\": 2141, \"clust\": 311, \"rank\": 1725, \"rankvar\": 2731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 685, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2274, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1371, \"group\": [313.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56270_BALBc-1_X02_Y01_462_394\", \"ini\": 2140, \"clust\": 221, \"rank\": 1857, \"rankvar\": 2524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 686, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2429, \"cat-2\": \"Density: 25\", \"cat_2_index\": 633, \"group\": [223.0, 155.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56966_BALBc-1_X02_Y01_470_546\", \"ini\": 2139, \"clust\": 606, \"rank\": 271, \"rankvar\": 641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 687, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2275, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1501, \"group\": [606.0, 412.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57291_BALBc-1_X02_Y01_474_753\", \"ini\": 2138, \"clust\": 1111, \"rank\": 431, \"rankvar\": 165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 688, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1073, \"cat-2\": \"Density: 22\", \"cat_2_index\": 277, \"group\": [1110.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57690_BALBc-1_X02_Y01_479_652\", \"ini\": 2137, \"clust\": 1453, \"rank\": 1630, \"rankvar\": 1507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 689, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1911, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1372, \"group\": [1453.0, 790.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57946_BALBc-1_X02_Y01_482_291\", \"ini\": 2136, \"clust\": 1325, \"rank\": 1723, \"rankvar\": 1931, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 690, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1912, \"cat-2\": \"Density: 23\", \"cat_2_index\": 386, \"group\": [1330.0, 697.0, 208.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58045_BALBc-1_X02_Y01_483_527\", \"ini\": 2135, \"clust\": 1631, \"rank\": 2396, \"rankvar\": 2794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 691, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1727, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1373, \"group\": [1631.0, 898.0, 260.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58865_BALBc-1_X02_Y01_493_104\", \"ini\": 2134, \"clust\": 464, \"rank\": 1165, \"rankvar\": 936, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 692, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 684, \"cat-2\": \"Density: 24\", \"cat_2_index\": 491, \"group\": [464.0, 324.0, 111.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59155_BALBc-1_X02_Y01_496_623\", \"ini\": 2133, \"clust\": 2382, \"rank\": 2817, \"rankvar\": 2791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 693, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2276, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1502, \"group\": [2388.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59197_BALBc-1_X02_Y01_497_131\", \"ini\": 2132, \"clust\": 838, \"rank\": 116, \"rankvar\": 25, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 694, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2277, \"cat-2\": \"Density: 25\", \"cat_2_index\": 634, \"group\": [838.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59416_BALBc-1_X02_Y01_499_768\", \"ini\": 2131, \"clust\": 1384, \"rank\": 2000, \"rankvar\": 1265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 695, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1074, \"cat-2\": \"Density: 26\", \"cat_2_index\": 761, \"group\": [1392.0, 743.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59420_BALBc-1_X02_Y01_499_799\", \"ini\": 2130, \"clust\": 28, \"rank\": 369, \"rankvar\": 2132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 696, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1075, \"cat-2\": \"Density: 25\", \"cat_2_index\": 635, \"group\": [28.0, 27.0, 16.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59463_BALBc-1_X02_Y01_5_879\", \"ini\": 2129, \"clust\": 1294, \"rank\": 1535, \"rankvar\": 635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 697, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2430, \"cat-2\": \"Density: 27\", \"cat_2_index\": 917, \"group\": [1297.0, 668.0, 194.0, 55.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59517_BALBc-1_X02_Y01_50_888\", \"ini\": 2128, \"clust\": 660, \"rank\": 261, \"rankvar\": 71, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 698, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2431, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1214, \"group\": [662.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59710_BALBc-1_X02_Y01_502_573\", \"ini\": 2127, \"clust\": 647, \"rank\": 318, \"rankvar\": 386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 699, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2278, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1641, \"group\": [647.0, 435.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59712_BALBc-1_X02_Y01_502_604\", \"ini\": 2126, \"clust\": 958, \"rank\": 573, \"rankvar\": 1228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 700, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2279, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1952, \"group\": [957.0, 490.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59744_BALBc-1_X02_Y01_502_986\", \"ini\": 2125, \"clust\": 11, \"rank\": 1186, \"rankvar\": 365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 701, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1076, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2144, \"group\": [12.0, 11.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60337_BALBc-1_X02_Y01_51_580\", \"ini\": 2124, \"clust\": 612, \"rank\": 721, \"rankvar\": 696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 702, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2280, \"cat-2\": \"Density: 27\", \"cat_2_index\": 918, \"group\": [612.0, 414.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60489_BALBc-1_X02_Y01_511_561\", \"ini\": 2123, \"clust\": 1642, \"rank\": 2060, \"rankvar\": 2548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 703, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1728, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1751, \"group\": [1641.0, 904.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61166_BALBc-1_X02_Y01_52_424\", \"ini\": 2122, \"clust\": 1568, \"rank\": 651, \"rankvar\": 137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 704, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1077, \"cat-2\": \"Density: 24\", \"cat_2_index\": 492, \"group\": [1569.0, 858.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61199_BALBc-1_X02_Y01_52_776\", \"ini\": 2121, \"clust\": 1216, \"rank\": 877, \"rankvar\": 1889, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 705, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2432, \"cat-2\": \"Density: 24\", \"cat_2_index\": 493, \"group\": [1216.0, 609.0, 173.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61388_BALBc-1_X02_Y01_521_982\", \"ini\": 2120, \"clust\": 1885, \"rank\": 1613, \"rankvar\": 1620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 706, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2235, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1953, \"group\": [1885.0, 1075.0, 328.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62377_BALBc-1_X02_Y01_533_933\", \"ini\": 2119, \"clust\": 1433, \"rank\": 2163, \"rankvar\": 1503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 707, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1913, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1752, \"group\": [1436.0, 782.0, 234.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62863_BALBc-1_X02_Y01_54_847\", \"ini\": 2118, \"clust\": 451, \"rank\": 737, \"rankvar\": 1523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 708, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2485, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1072, \"group\": [452.0, 315.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62911_BALBc-1_X02_Y01_540_549\", \"ini\": 2117, \"clust\": 1508, \"rank\": 2687, \"rankvar\": 2716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 709, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2433, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1073, \"group\": [1508.0, 817.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62931_BALBc-1_X02_Y01_540_834\", \"ini\": 2116, \"clust\": 864, \"rank\": 13, \"rankvar\": 763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 710, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1914, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1503, \"group\": [864.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63142_BALBc-1_X02_Y01_543_585\", \"ini\": 2115, \"clust\": 1509, \"rank\": 2630, \"rankvar\": 2774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 711, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2281, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1215, \"group\": [1509.0, 817.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63191_BALBc-1_X02_Y01_543_972\", \"ini\": 2114, \"clust\": 1226, \"rank\": 2517, \"rankvar\": 2339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 712, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 807, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1753, \"group\": [1228.0, 617.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63252_BALBc-1_X02_Y01_544_650\", \"ini\": 2113, \"clust\": 1587, \"rank\": 601, \"rankvar\": 1924, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 713, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2282, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1216, \"group\": [1587.0, 870.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63692_BALBc-1_X02_Y01_55_1003\", \"ini\": 2112, \"clust\": 1359, \"rank\": 2490, \"rankvar\": 2498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 714, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1078, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1374, \"group\": [1362.0, 723.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63713_BALBc-1_X02_Y01_55_344\", \"ini\": 2111, \"clust\": 547, \"rank\": 595, \"rankvar\": 1127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 715, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1915, \"cat-2\": \"Density: 26\", \"cat_2_index\": 762, \"group\": [545.0, 372.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63995_BALBc-1_X02_Y01_552_987\", \"ini\": 2110, \"clust\": 166, \"rank\": 1485, \"rankvar\": 1659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 716, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1079, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1642, \"group\": [166.0, 107.0, 35.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64052_BALBc-1_X02_Y01_553_695\", \"ini\": 2109, \"clust\": 966, \"rank\": 404, \"rankvar\": 690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 717, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2434, \"cat-2\": \"Density: 26\", \"cat_2_index\": 763, \"group\": [966.0, 495.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64156_BALBc-1_X02_Y01_555_138\", \"ini\": 2108, \"clust\": 2526, \"rank\": 1009, \"rankvar\": 1412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 718, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 685, \"cat-2\": \"Density: 26\", \"cat_2_index\": 764, \"group\": [2526.0, 1355.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64283_BALBc-1_X02_Y01_556_902\", \"ini\": 2107, \"clust\": 1485, \"rank\": 2424, \"rankvar\": 2341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 719, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1916, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2145, \"group\": [1484.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64567_BALBc-1_X02_Y01_56_378\", \"ini\": 2106, \"clust\": 338, \"rank\": 665, \"rankvar\": 218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 720, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2435, \"cat-2\": \"Density: 26\", \"cat_2_index\": 765, \"group\": [341.0, 238.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64703_BALBc-1_X02_Y01_561_10\", \"ini\": 2105, \"clust\": 165, \"rank\": 1600, \"rankvar\": 1595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 721, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1729, \"cat-2\": \"Density: 15\", \"cat_2_index\": 43, \"group\": [168.0, 109.0, 36.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64934_BALBc-1_X02_Y01_564_219\", \"ini\": 2104, \"clust\": 238, \"rank\": 1071, \"rankvar\": 1199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 722, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2436, \"cat-2\": \"Density: 24\", \"cat_2_index\": 494, \"group\": [242.0, 169.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65293_BALBc-1_X02_Y01_568_803\", \"ini\": 2103, \"clust\": 632, \"rank\": 462, \"rankvar\": 814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 723, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1628, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1849, \"group\": [633.0, 426.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65644_BALBc-1_X02_Y01_572_683\", \"ini\": 2102, \"clust\": 334, \"rank\": 958, \"rankvar\": 1665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 724, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 686, \"cat-2\": \"Density: 25\", \"cat_2_index\": 636, \"group\": [334.0, 235.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66649_BALBc-1_X02_Y01_585_154\", \"ini\": 2101, \"clust\": 1023, \"rank\": 356, \"rankvar\": 80, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 725, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 687, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1217, \"group\": [1023.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67382_BALBc-1_X02_Y01_593_27\", \"ini\": 2100, \"clust\": 1454, \"rank\": 1989, \"rankvar\": 859, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 726, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2519, \"cat-2\": \"Density: 15\", \"cat_2_index\": 44, \"group\": [1455.0, 792.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67833_BALBc-1_X02_Y01_599_219\", \"ini\": 2099, \"clust\": 805, \"rank\": 159, \"rankvar\": 498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 727, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2437, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1074, \"group\": [806.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68344_BALBc-1_X02_Y01_604_682\", \"ini\": 2098, \"clust\": 465, \"rank\": 920, \"rankvar\": 1049, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 728, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1917, \"cat-2\": \"Density: 26\", \"cat_2_index\": 766, \"group\": [465.0, 325.0, 111.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68440_BALBc-1_X02_Y01_605_807\", \"ini\": 2097, \"clust\": 1722, \"rank\": 2459, \"rankvar\": 2784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 729, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 808, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1643, \"group\": [1724.0, 970.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68443_BALBc-1_X02_Y01_605_835\", \"ini\": 2096, \"clust\": 1549, \"rank\": 706, \"rankvar\": 1514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 730, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1918, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1504, \"group\": [1551.0, 841.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68542_BALBc-1_X02_Y01_607_143\", \"ini\": 2095, \"clust\": 2732, \"rank\": 2082, \"rankvar\": 2433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 731, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 688, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1218, \"group\": [2731.0, 1468.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68978_BALBc-1_X02_Y01_611_516\", \"ini\": 2094, \"clust\": 1496, \"rank\": 2799, \"rankvar\": 2773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 732, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1919, \"cat-2\": \"Density: 25\", \"cat_2_index\": 637, \"group\": [1494.0, 806.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69185_BALBc-1_X02_Y01_614_181\", \"ini\": 2093, \"clust\": 2725, \"rank\": 2236, \"rankvar\": 2493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 733, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 689, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1075, \"group\": [2725.0, 1464.0, 430.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70273_BALBc-1_X02_Y01_627_209\", \"ini\": 2092, \"clust\": 1682, \"rank\": 1540, \"rankvar\": 2068, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 734, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1730, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1219, \"group\": [1687.0, 944.0, 280.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70491_BALBc-1_X02_Y01_63_250\", \"ini\": 2091, \"clust\": 883, \"rank\": 19, \"rankvar\": 470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 735, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1920, \"cat-2\": \"Density: 24\", \"cat_2_index\": 495, \"group\": [883.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71443_BALBc-1_X02_Y01_640_235\", \"ini\": 2090, \"clust\": 1363, \"rank\": 2628, \"rankvar\": 2778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 736, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2438, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1644, \"group\": [1364.0, 725.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71479_BALBc-1_X02_Y01_640_560\", \"ini\": 2089, \"clust\": 1481, \"rank\": 2385, \"rankvar\": 2325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 737, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2439, \"cat-2\": \"Density: 25\", \"cat_2_index\": 638, \"group\": [1482.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71570_BALBc-1_X02_Y01_642_167\", \"ini\": 2088, \"clust\": 247, \"rank\": 955, \"rankvar\": 97, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 738, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1731, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1076, \"group\": [251.0, 174.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71733_BALBc-1_X02_Y01_643_984\", \"ini\": 2087, \"clust\": 1254, \"rank\": 2596, \"rankvar\": 2244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 739, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2283, \"cat-2\": \"Density: 27\", \"cat_2_index\": 919, \"group\": [1255.0, 636.0, 181.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71734_BALBc-1_X02_Y01_643_999\", \"ini\": 2086, \"clust\": 757, \"rank\": 214, \"rankvar\": 700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 740, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1629, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1220, \"group\": [756.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72068_BALBc-1_X02_Y01_648_425\", \"ini\": 2085, \"clust\": 1382, \"rank\": 1949, \"rankvar\": 2168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 741, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1921, \"cat-2\": \"Density: 22\", \"cat_2_index\": 278, \"group\": [1383.0, 735.0, 216.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72274_BALBc-1_X02_Y01_650_104\", \"ini\": 2084, \"clust\": 1208, \"rank\": 835, \"rankvar\": 1347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 742, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 690, \"cat-2\": \"Density: 27\", \"cat_2_index\": 920, \"group\": [1208.0, 601.0, 170.0, 46.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72329_BALBc-1_X02_Y01_650_882\", \"ini\": 2083, \"clust\": 1301, \"rank\": 1239, \"rankvar\": 562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 743, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1732, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1754, \"group\": [1303.0, 674.0, 197.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72440_BALBc-1_X02_Y01_652_474\", \"ini\": 2082, \"clust\": 1489, \"rank\": 2708, \"rankvar\": 2730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 744, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 809, \"cat-2\": \"Density: 26\", \"cat_2_index\": 767, \"group\": [1487.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73095_BALBc-1_X02_Y01_66_970\", \"ini\": 2081, \"clust\": 1917, \"rank\": 2073, \"rankvar\": 1817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 745, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1080, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1755, \"group\": [1918.0, 1102.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73185_BALBc-1_X02_Y01_661_141\", \"ini\": 2080, \"clust\": 2615, \"rank\": 1260, \"rankvar\": 1296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 746, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 810, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1221, \"group\": [2616.0, 1413.0, 417.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73278_BALBc-1_X02_Y01_661_947\", \"ini\": 2079, \"clust\": 1612, \"rank\": 1503, \"rankvar\": 1961, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 747, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1081, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1077, \"group\": [1615.0, 890.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73431_BALBc-1_X02_Y01_664_117\", \"ini\": 2078, \"clust\": 532, \"rank\": 518, \"rankvar\": 1064, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 748, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1630, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1222, \"group\": [535.0, 366.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73653_BALBc-1_X02_Y01_667_199\", \"ini\": 2077, \"clust\": 1391, \"rank\": 2333, \"rankvar\": 2366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 749, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1733, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1375, \"group\": [1390.0, 741.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73761_BALBc-1_X02_Y01_668_692\", \"ini\": 2076, \"clust\": 558, \"rank\": 862, \"rankvar\": 204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 750, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2486, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1223, \"group\": [563.0, 387.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74145_BALBc-1_X02_Y01_672_798\", \"ini\": 2075, \"clust\": 1621, \"rank\": 1927, \"rankvar\": 2365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 751, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1082, \"cat-2\": \"Density: 27\", \"cat_2_index\": 921, \"group\": [1620.0, 892.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74412_BALBc-1_X02_Y01_675_754\", \"ini\": 2074, \"clust\": 1692, \"rank\": 2733, \"rankvar\": 2674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 752, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1083, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1224, \"group\": [1693.0, 950.0, 284.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74523_BALBc-1_X02_Y01_677_25\", \"ini\": 2073, \"clust\": 1721, \"rank\": 2160, \"rankvar\": 1786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 753, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 811, \"cat-2\": \"Density: 16\", \"cat_2_index\": 57, \"group\": [1725.0, 971.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74897_BALBc-1_X02_Y01_681_262\", \"ini\": 2072, \"clust\": 1811, \"rank\": 2465, \"rankvar\": 2749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 754, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1578, \"cat-2\": \"Density: 25\", \"cat_2_index\": 639, \"group\": [1811.0, 1024.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75174_BALBc-1_X02_Y01_685_173\", \"ini\": 2071, \"clust\": 220, \"rank\": 1300, \"rankvar\": 1384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 755, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 812, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1078, \"group\": [220.0, 152.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75539_BALBc-1_X02_Y01_689_937\", \"ini\": 2070, \"clust\": 1504, \"rank\": 2660, \"rankvar\": 2665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 756, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1084, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1225, \"group\": [1503.0, 812.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75915_BALBc-1_X02_Y01_694_130\", \"ini\": 2069, \"clust\": 669, \"rank\": 164, \"rankvar\": 1316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 757, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1631, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1226, \"group\": [667.0, 442.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75959_BALBc-1_X02_Y01_694_670\", \"ini\": 2068, \"clust\": 508, \"rank\": 1012, \"rankvar\": 678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 758, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2440, \"cat-2\": \"Density: 25\", \"cat_2_index\": 640, \"group\": [509.0, 349.0, 118.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76516_BALBc-1_X02_Y01_70_895\", \"ini\": 2067, \"clust\": 1645, \"rank\": 1337, \"rankvar\": 2724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 759, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2441, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1376, \"group\": [1644.0, 905.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77517_BALBc-1_X02_Y01_712_265\", \"ini\": 2066, \"clust\": 1858, \"rank\": 2202, \"rankvar\": 2593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 760, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 813, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1227, \"group\": [1862.0, 1053.0, 317.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77678_BALBc-1_X02_Y01_714_293\", \"ini\": 2065, \"clust\": 1695, \"rank\": 1695, \"rankvar\": 2671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 761, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 814, \"cat-2\": \"Density: 27\", \"cat_2_index\": 922, \"group\": [1695.0, 952.0, 285.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77685_BALBc-1_X02_Y01_714_40\", \"ini\": 2064, \"clust\": 2790, \"rank\": 1238, \"rankvar\": 1684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 762, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 815, \"cat-2\": \"Density: 23\", \"cat_2_index\": 387, \"group\": [2791.0, 1513.0, 450.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77734_BALBc-1_X02_Y01_714_974\", \"ini\": 2063, \"clust\": 2747, \"rank\": 1654, \"rankvar\": 2072, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 763, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2284, \"cat-2\": \"Density: 27\", \"cat_2_index\": 923, \"group\": [2751.0, 1486.0, 440.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78145_BALBc-1_X02_Y01_72_12\", \"ini\": 2062, \"clust\": 654, \"rank\": 532, \"rankvar\": 135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 764, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1922, \"cat-2\": \"Density: 13\", \"cat_2_index\": 15, \"group\": [654.0, 437.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78540_BALBc-1_X02_Y01_724_107\", \"ini\": 2061, \"clust\": 2733, \"rank\": 2194, \"rankvar\": 2336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 765, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 816, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1377, \"group\": [2732.0, 1468.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79190_BALBc-1_X02_Y01_731_769\", \"ini\": 2060, \"clust\": 1743, \"rank\": 1497, \"rankvar\": 2086, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 766, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1085, \"cat-2\": \"Density: 27\", \"cat_2_index\": 924, \"group\": [1749.0, 990.0, 298.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79300_BALBc-1_X02_Y01_733_29\", \"ini\": 2059, \"clust\": 202, \"rank\": 1124, \"rankvar\": 362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 767, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1543, \"cat-2\": \"Density: 20\", \"cat_2_index\": 151, \"group\": [202.0, 136.0, 46.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79428_BALBc-1_X02_Y01_734_627\", \"ini\": 2058, \"clust\": 2557, \"rank\": 2349, \"rankvar\": 2587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 768, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2236, \"cat-2\": \"Density: 25\", \"cat_2_index\": 641, \"group\": [2556.0, 1378.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79624_BALBc-1_X02_Y01_737_12\", \"ini\": 2057, \"clust\": 666, \"rank\": 437, \"rankvar\": 585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 769, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 37, \"cat-2\": \"Density: 18\", \"cat_2_index\": 94, \"group\": [671.0, 444.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80316_BALBc-1_X02_Y01_745_334\", \"ini\": 2056, \"clust\": 1693, \"rank\": 2603, \"rankvar\": 2412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 770, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1923, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1079, \"group\": [1694.0, 951.0, 284.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80359_BALBc-1_X02_Y01_745_91\", \"ini\": 2055, \"clust\": 944, \"rank\": 59, \"rankvar\": 375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 771, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 817, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1756, \"group\": [945.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80734_BALBc-1_X02_Y01_75_602\", \"ini\": 2054, \"clust\": 283, \"rank\": 1673, \"rankvar\": 2020, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 772, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2285, \"cat-2\": \"Density: 26\", \"cat_2_index\": 768, \"group\": [283.0, 205.0, 75.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81293_BALBc-1_X02_Y01_756_706\", \"ini\": 2053, \"clust\": 1668, \"rank\": 1183, \"rankvar\": 1782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 773, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2237, \"cat-2\": \"Density: 24\", \"cat_2_index\": 496, \"group\": [1669.0, 926.0, 271.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81486_BALBc-1_X02_Y01_759_199\", \"ini\": 2052, \"clust\": 2788, \"rank\": 1653, \"rankvar\": 1693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 774, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1086, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1505, \"group\": [2789.0, 1511.0, 450.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81590_BALBc-1_X02_Y01_76_583\", \"ini\": 2051, \"clust\": 694, \"rank\": 228, \"rankvar\": 2148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 775, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2286, \"cat-2\": \"Density: 25\", \"cat_2_index\": 642, \"group\": [693.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81902_BALBc-1_X02_Y01_763_671\", \"ini\": 2050, \"clust\": 1439, \"rank\": 2693, \"rankvar\": 2301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 776, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 818, \"cat-2\": \"Density: 26\", \"cat_2_index\": 769, \"group\": [1441.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82140_BALBc-1_X02_Y01_767_163\", \"ini\": 2049, \"clust\": 1860, \"rank\": 1875, \"rankvar\": 2492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 777, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2287, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1954, \"group\": [1859.0, 1051.0, 317.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82308_BALBc-1_X02_Y01_768_99\", \"ini\": 2048, \"clust\": 343, \"rank\": 1140, \"rankvar\": 1189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 778, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1544, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1645, \"group\": [343.0, 239.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82369_BALBc-1_X02_Y01_769_770\", \"ini\": 2047, \"clust\": 1162, \"rank\": 371, \"rankvar\": 1395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 779, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1632, \"cat-2\": \"Density: 25\", \"cat_2_index\": 643, \"group\": [1164.0, 560.0, 155.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83169_BALBc-1_X02_Y01_779_23\", \"ini\": 2046, \"clust\": 1197, \"rank\": 882, \"rankvar\": 1519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 780, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1087, \"cat-2\": \"Density: 24\", \"cat_2_index\": 497, \"group\": [1200.0, 593.0, 167.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83364_BALBc-1_X02_Y01_780_79\", \"ini\": 2045, \"clust\": 910, \"rank\": 122, \"rankvar\": 100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 781, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1545, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1757, \"group\": [908.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84196_BALBc-1_X02_Y01_790_748\", \"ini\": 2044, \"clust\": 1629, \"rank\": 2676, \"rankvar\": 2816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 782, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2487, \"cat-2\": \"Density: 24\", \"cat_2_index\": 498, \"group\": [1632.0, 899.0, 260.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84357_BALBc-1_X02_Y01_792_686\", \"ini\": 2043, \"clust\": 1383, \"rank\": 1458, \"rankvar\": 947, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 783, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 819, \"cat-2\": \"Density: 22\", \"cat_2_index\": 279, \"group\": [1384.0, 736.0, 216.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84582_BALBc-1_X02_Y01_795_344\", \"ini\": 2042, \"clust\": 1525, \"rank\": 1686, \"rankvar\": 595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 784, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2288, \"cat-2\": \"Density: 25\", \"cat_2_index\": 644, \"group\": [1529.0, 826.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84699_BALBc-1_X02_Y01_796_71\", \"ini\": 2041, \"clust\": 2245, \"rank\": 1720, \"rankvar\": 1916, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 785, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2289, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1646, \"group\": [2244.0, 1222.0, 367.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85322_BALBc-1_X02_Y01_802_832\", \"ini\": 2040, \"clust\": 688, \"rank\": 194, \"rankvar\": 816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 786, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1924, \"cat-2\": \"Density: 27\", \"cat_2_index\": 925, \"group\": [688.0, 453.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85337_BALBc-1_X02_Y01_803_103\", \"ini\": 2039, \"clust\": 1392, \"rank\": 1320, \"rankvar\": 105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 787, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 943, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1850, \"group\": [1400.0, 750.0, 220.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85500_BALBc-1_X02_Y01_805_277\", \"ini\": 2038, \"clust\": 1542, \"rank\": 2504, \"rankvar\": 2328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 788, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2488, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1378, \"group\": [1542.0, 835.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85553_BALBc-1_X02_Y01_805_711\", \"ini\": 2037, \"clust\": 1148, \"rank\": 1132, \"rankvar\": 1321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 789, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2442, \"cat-2\": \"Density: 23\", \"cat_2_index\": 388, \"group\": [1150.0, 550.0, 151.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85954_BALBc-1_X02_Y01_810_220\", \"ini\": 2036, \"clust\": 2239, \"rank\": 2329, \"rankvar\": 1904, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 790, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2290, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1647, \"group\": [2243.0, 1221.0, 366.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86607_BALBc-1_X02_Y01_818_617\", \"ini\": 2035, \"clust\": 1498, \"rank\": 2296, \"rankvar\": 2424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 791, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 820, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1080, \"group\": [1500.0, 810.0, 238.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86719_BALBc-1_X02_Y01_82_404\", \"ini\": 2034, \"clust\": 1429, \"rank\": 1574, \"rankvar\": 381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 792, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1088, \"cat-2\": \"Density: 26\", \"cat_2_index\": 770, \"group\": [1427.0, 773.0, 230.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87009_BALBc-1_X02_Y01_822_96\", \"ini\": 2033, \"clust\": 1427, \"rank\": 1672, \"rankvar\": 669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 793, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1734, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2222, \"group\": [1428.0, 774.0, 230.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87084_BALBc-1_X02_Y01_823_81\", \"ini\": 2032, \"clust\": 172, \"rank\": 622, \"rankvar\": 2061, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 794, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1735, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1851, \"group\": [175.0, 113.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87109_BALBc-1_X02_Y01_824_179\", \"ini\": 2031, \"clust\": 1861, \"rank\": 1867, \"rankvar\": 2664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 795, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2291, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1852, \"group\": [1860.0, 1051.0, 317.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87294_BALBc-1_X02_Y01_826_54\", \"ini\": 2030, \"clust\": 1862, \"rank\": 1580, \"rankvar\": 1162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 796, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1736, \"cat-2\": \"Density: 26\", \"cat_2_index\": 771, \"group\": [1863.0, 1054.0, 318.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87491_BALBc-1_X02_Y01_828_989\", \"ini\": 2029, \"clust\": 1456, \"rank\": 1864, \"rankvar\": 612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 797, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1925, \"cat-2\": \"Density: 26\", \"cat_2_index\": 772, \"group\": [1457.0, 793.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87558_BALBc-1_X02_Y01_829_961\", \"ini\": 2028, \"clust\": 1394, \"rank\": 1229, \"rankvar\": 1382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 798, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 821, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1081, \"group\": [1393.0, 744.0, 218.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87735_BALBc-1_X02_Y01_831_448\", \"ini\": 2027, \"clust\": 1599, \"rank\": 1748, \"rankvar\": 2297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 799, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2443, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1379, \"group\": [1602.0, 884.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87925_BALBc-1_X02_Y01_834_297\", \"ini\": 2026, \"clust\": 1467, \"rank\": 2325, \"rankvar\": 1793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 800, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1926, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1380, \"group\": [1465.0, 798.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88101_BALBc-1_X02_Y01_836_594\", \"ini\": 2025, \"clust\": 233, \"rank\": 1074, \"rankvar\": 1186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 801, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1927, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1082, \"group\": [232.0, 161.0, 57.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88212_BALBc-1_X02_Y01_837_889\", \"ini\": 2024, \"clust\": 1246, \"rank\": 1666, \"rankvar\": 1495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 802, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1928, \"cat-2\": \"Density: 27\", \"cat_2_index\": 926, \"group\": [1247.0, 628.0, 179.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88228_BALBc-1_X02_Y01_838_199\", \"ini\": 2023, \"clust\": 463, \"rank\": 968, \"rankvar\": 1692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 803, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 822, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1955, \"group\": [466.0, 326.0, 112.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88242_BALBc-1_X02_Y01_838_433\", \"ini\": 2022, \"clust\": 228, \"rank\": 1900, \"rankvar\": 2007, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 804, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1737, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1228, \"group\": [229.0, 160.0, 56.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88501_BALBc-1_X02_Y01_840_810\", \"ini\": 2021, \"clust\": 239, \"rank\": 845, \"rankvar\": 1469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 805, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1929, \"cat-2\": \"Density: 23\", \"cat_2_index\": 389, \"group\": [241.0, 168.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88562_BALBc-1_X02_Y01_841_513\", \"ini\": 2020, \"clust\": 347, \"rank\": 452, \"rankvar\": 2197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 806, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1930, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1956, \"group\": [346.0, 241.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88609_BALBc-1_X02_Y01_842_154\", \"ini\": 2019, \"clust\": 1840, \"rank\": 1644, \"rankvar\": 1774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 807, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1738, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2146, \"group\": [1843.0, 1036.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88759_BALBc-1_X02_Y01_844_26\", \"ini\": 2018, \"clust\": 1561, \"rank\": 778, \"rankvar\": 1587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 808, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2444, \"cat-2\": \"Density: 20\", \"cat_2_index\": 152, \"group\": [1562.0, 851.0, 248.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88814_BALBc-1_X02_Y01_844_864\", \"ini\": 2017, \"clust\": 319, \"rank\": 1987, \"rankvar\": 1990, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 809, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1931, \"cat-2\": \"Density: 27\", \"cat_2_index\": 927, \"group\": [320.0, 223.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88845_BALBc-1_X02_Y01_845_321\", \"ini\": 2016, \"clust\": 344, \"rank\": 524, \"rankvar\": 2283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 810, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1739, \"cat-2\": \"Density: 27\", \"cat_2_index\": 928, \"group\": [348.0, 243.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89110_BALBc-1_X02_Y01_848_694\", \"ini\": 2015, \"clust\": 211, \"rank\": 993, \"rankvar\": 1864, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 811, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2238, \"cat-2\": \"Density: 22\", \"cat_2_index\": 280, \"group\": [212.0, 144.0, 50.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90038_BALBc-1_X02_Y01_859_742\", \"ini\": 2014, \"clust\": 212, \"rank\": 1231, \"rankvar\": 1501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 812, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1932, \"cat-2\": \"Density: 26\", \"cat_2_index\": 773, \"group\": [213.0, 145.0, 50.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90134_BALBc-1_X02_Y01_86_851\", \"ini\": 2013, \"clust\": 685, \"rank\": 506, \"rankvar\": 2035, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 813, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 691, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1648, \"group\": [685.0, 451.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91113_BALBc-1_X02_Y01_871_608\", \"ini\": 2012, \"clust\": 1457, \"rank\": 1916, \"rankvar\": 2125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 814, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1633, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1381, \"group\": [1458.0, 794.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91313_BALBc-1_X02_Y01_874_166\", \"ini\": 2011, \"clust\": 1841, \"rank\": 1614, \"rankvar\": 1968, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 815, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1740, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2223, \"group\": [1842.0, 1035.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91333_BALBc-1_X02_Y01_874_423\", \"ini\": 2010, \"clust\": 1437, \"rank\": 2594, \"rankvar\": 2170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 816, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1933, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1382, \"group\": [1437.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91389_BALBc-1_X02_Y01_875_273\", \"ini\": 2009, \"clust\": 1534, \"rank\": 1978, \"rankvar\": 2199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 817, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1934, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1853, \"group\": [1537.0, 832.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91790_BALBc-1_X02_Y01_88_353\", \"ini\": 2008, \"clust\": 1566, \"rank\": 925, \"rankvar\": 124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 818, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1935, \"cat-2\": \"Density: 27\", \"cat_2_index\": 929, \"group\": [1567.0, 856.0, 250.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91944_BALBc-1_X02_Y01_881_300\", \"ini\": 2007, \"clust\": 961, \"rank\": 415, \"rankvar\": 294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 819, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 823, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1383, \"group\": [962.0, 493.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92119_BALBc-1_X02_Y01_883_690\", \"ini\": 2006, \"clust\": 1200, \"rank\": 1517, \"rankvar\": 2198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 820, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2445, \"cat-2\": \"Density: 24\", \"cat_2_index\": 499, \"group\": [1206.0, 599.0, 169.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92234_BALBc-1_X02_Y01_885_483\", \"ini\": 2005, \"clust\": 272, \"rank\": 1712, \"rankvar\": 1397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 821, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1936, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2063, \"group\": [272.0, 194.0, 70.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92639_BALBc-1_X02_Y01_89_950\", \"ini\": 2004, \"clust\": 1269, \"rank\": 1331, \"rankvar\": 2586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 822, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 824, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1957, \"group\": [1269.0, 648.0, 187.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92716_BALBc-1_X02_Y01_890_939\", \"ini\": 2003, \"clust\": 754, \"rank\": 240, \"rankvar\": 32, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 823, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1089, \"cat-2\": \"Density: 25\", \"cat_2_index\": 645, \"group\": [754.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92826_BALBc-1_X02_Y01_892_493\", \"ini\": 2002, \"clust\": 1581, \"rank\": 1114, \"rankvar\": 1850, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 824, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1937, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1758, \"group\": [1582.0, 867.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92861_BALBc-1_X02_Y01_892_982\", \"ini\": 2001, \"clust\": 1183, \"rank\": 841, \"rankvar\": 491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 825, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 825, \"cat-2\": \"Density: 26\", \"cat_2_index\": 774, \"group\": [1184.0, 577.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93022_BALBc-1_X02_Y01_894_971\", \"ini\": 2000, \"clust\": 2403, \"rank\": 2773, \"rankvar\": 2450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 826, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1090, \"cat-2\": \"Density: 26\", \"cat_2_index\": 775, \"group\": [2403.0, 1273.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93068_BALBc-1_X02_Y01_895_559\", \"ini\": 1999, \"clust\": 455, \"rank\": 1263, \"rankvar\": 2273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 827, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1938, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1854, \"group\": [460.0, 320.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93323_BALBc-1_X02_Y01_898_909\", \"ini\": 1998, \"clust\": 622, \"rank\": 221, \"rankvar\": 672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 828, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1091, \"cat-2\": \"Density: 26\", \"cat_2_index\": 776, \"group\": [622.0, 420.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93904_BALBc-1_X02_Y01_905_249\", \"ini\": 1997, \"clust\": 1284, \"rank\": 1957, \"rankvar\": 2357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 829, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 826, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2147, \"group\": [1286.0, 657.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93971_BALBc-1_X02_Y01_906_130\", \"ini\": 1996, \"clust\": 1891, \"rank\": 2697, \"rankvar\": 2719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 830, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1741, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2148, \"group\": [1891.0, 1081.0, 330.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94356_BALBc-1_X02_Y01_910_484\", \"ini\": 1995, \"clust\": 229, \"rank\": 1235, \"rankvar\": 1444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 831, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2446, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1759, \"group\": [230.0, 160.0, 56.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94868_BALBc-1_X02_Y01_917_430\", \"ini\": 1994, \"clust\": 1490, \"rank\": 2582, \"rankvar\": 2554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 832, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1939, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1229, \"group\": [1488.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95225_BALBc-1_X02_Y01_920_863\", \"ini\": 1993, \"clust\": 689, \"rank\": 537, \"rankvar\": 277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 833, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1940, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1384, \"group\": [689.0, 453.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95582_BALBc-1_X02_Y01_925_541\", \"ini\": 1992, \"clust\": 1644, \"rank\": 1490, \"rankvar\": 2706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 834, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1941, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1855, \"group\": [1645.0, 905.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95746_BALBc-1_X02_Y01_927_54\", \"ini\": 1991, \"clust\": 1378, \"rank\": 1945, \"rankvar\": 2398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 835, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1742, \"cat-2\": \"Density: 21\", \"cat_2_index\": 202, \"group\": [1379.0, 733.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96191_BALBc-1_X02_Y01_932_492\", \"ini\": 1990, \"clust\": 1478, \"rank\": 2686, \"rankvar\": 2065, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 836, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1942, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1958, \"group\": [1479.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96279_BALBc-1_X02_Y01_933_566\", \"ini\": 1989, \"clust\": 561, \"rank\": 1146, \"rankvar\": 1417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 837, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1092, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1506, \"group\": [561.0, 385.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96334_BALBc-1_X02_Y01_934_380\", \"ini\": 1988, \"clust\": 1596, \"rank\": 1561, \"rankvar\": 2018, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 838, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1943, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1083, \"group\": [1597.0, 879.0, 257.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96344_BALBc-1_X02_Y01_934_613\", \"ini\": 1987, \"clust\": 1539, \"rank\": 2553, \"rankvar\": 2666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 839, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2489, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1507, \"group\": [1539.0, 833.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96459_BALBc-1_X02_Y01_935_966\", \"ini\": 1986, \"clust\": 1306, \"rank\": 1375, \"rankvar\": 1771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 840, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1093, \"cat-2\": \"Density: 26\", \"cat_2_index\": 777, \"group\": [1313.0, 681.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96674_BALBc-1_X02_Y01_939_112\", \"ini\": 1985, \"clust\": 1434, \"rank\": 2565, \"rankvar\": 2256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 841, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 944, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1760, \"group\": [1434.0, 780.0, 234.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97053_BALBc-1_X02_Y01_943_180\", \"ini\": 1984, \"clust\": 1462, \"rank\": 1781, \"rankvar\": 1975, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 842, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1944, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1959, \"group\": [1461.0, 797.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97263_BALBc-1_X02_Y01_945_522\", \"ini\": 1983, \"clust\": 1463, \"rank\": 2103, \"rankvar\": 2694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 843, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2292, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1960, \"group\": [1462.0, 797.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97534_BALBc-1_X02_Y01_949_394\", \"ini\": 1982, \"clust\": 1236, \"rank\": 1379, \"rankvar\": 1978, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 844, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1945, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1385, \"group\": [1239.0, 622.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98149_BALBc-1_X02_Y01_956_248\", \"ini\": 1981, \"clust\": 290, \"rank\": 1172, \"rankvar\": 2073, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 845, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 827, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1649, \"group\": [293.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98727_BALBc-1_X02_Y01_963_190\", \"ini\": 1980, \"clust\": 931, \"rank\": 139, \"rankvar\": 340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 846, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 828, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2064, \"group\": [930.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98778_BALBc-1_X02_Y01_963_859\", \"ini\": 1979, \"clust\": 1464, \"rank\": 2126, \"rankvar\": 2238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 847, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1094, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1230, \"group\": [1467.0, 800.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98945_BALBc-1_X02_Y01_966_166\", \"ini\": 1978, \"clust\": 1564, \"rank\": 727, \"rankvar\": 87, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 848, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1946, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1856, \"group\": [1564.0, 853.0, 249.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99117_BALBc-1_X02_Y01_968_271\", \"ini\": 1977, \"clust\": 1604, \"rank\": 709, \"rankvar\": 1442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 849, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1947, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1650, \"group\": [1608.0, 887.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99166_BALBc-1_X02_Y01_968_799\", \"ini\": 1976, \"clust\": 1438, \"rank\": 2717, \"rankvar\": 2268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 850, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1948, \"cat-2\": \"Density: 27\", \"cat_2_index\": 930, \"group\": [1438.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99323_BALBc-1_X02_Y01_97_873\", \"ini\": 1975, \"clust\": 648, \"rank\": 513, \"rankvar\": 304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 851, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2447, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1651, \"group\": [648.0, 435.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99561_BALBc-1_X02_Y01_973_197\", \"ini\": 1974, \"clust\": 501, \"rank\": 898, \"rankvar\": 904, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 852, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 829, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2065, \"group\": [500.0, 341.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99777_BALBc-1_X02_Y01_975_860\", \"ini\": 1973, \"clust\": 614, \"rank\": 630, \"rankvar\": 1254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 853, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1949, \"cat-2\": \"Density: 26\", \"cat_2_index\": 778, \"group\": [613.0, 415.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100239_BALBc-1_X02_Y01_981_12\", \"ini\": 1972, \"clust\": 1569, \"rank\": 572, \"rankvar\": 582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 854, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1950, \"cat-2\": \"Density: 13\", \"cat_2_index\": 16, \"group\": [1572.0, 859.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100387_BALBc-1_X02_Y01_983_285\", \"ini\": 1971, \"clust\": 928, \"rank\": 161, \"rankvar\": 1092, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 855, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1951, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1508, \"group\": [932.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100684_BALBc-1_X02_Y01_987_235\", \"ini\": 1970, \"clust\": 1388, \"rank\": 2281, \"rankvar\": 2600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 856, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 830, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1761, \"group\": [1386.0, 737.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100729_BALBc-1_X02_Y01_987_776\", \"ini\": 1969, \"clust\": 1136, \"rank\": 1094, \"rankvar\": 875, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 857, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1743, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1084, \"group\": [1137.0, 539.0, 147.0, 37.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101299_BALBc-1_X02_Y01_994_207\", \"ini\": 1968, \"clust\": 214, \"rank\": 1804, \"rankvar\": 2173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 858, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1095, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1961, \"group\": [215.0, 147.0, 51.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101376_BALBc-1_X02_Y01_995_115\", \"ini\": 1967, \"clust\": 292, \"rank\": 1906, \"rankvar\": 2708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 859, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1952, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1386, \"group\": [290.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101379_BALBc-1_X02_Y01_995_125\", \"ini\": 1966, \"clust\": 1488, \"rank\": 2559, \"rankvar\": 2754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 860, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1953, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1387, \"group\": [1489.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101762_BALBc-1_X02_Y01_999_749\", \"ini\": 1965, \"clust\": 1369, \"rank\": 2494, \"rankvar\": 2566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 861, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1954, \"cat-2\": \"Density: 26\", \"cat_2_index\": 779, \"group\": [1371.0, 729.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-814_BALBc-1_X01_Y02_1000_470\", \"ini\": 1964, \"clust\": 2301, \"rank\": 1715, \"rankvar\": 956, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 862, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2520, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2542, \"group\": [2301.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1027_BALBc-1_X01_Y02_1003_258\", \"ini\": 1963, \"clust\": 2603, \"rank\": 1923, \"rankvar\": 2005, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 863, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2521, \"cat-2\": \"Density: 27\", \"cat_2_index\": 931, \"group\": [2601.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1035_BALBc-1_X01_Y02_1003_353\", \"ini\": 1962, \"clust\": 515, \"rank\": 552, \"rankvar\": 308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 864, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 38, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2365, \"group\": [514.0, 353.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1100_BALBc-1_X01_Y02_1004_310\", \"ini\": 1961, \"clust\": 850, \"rank\": 205, \"rankvar\": 801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 865, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 39, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1652, \"group\": [851.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1200_BALBc-1_X01_Y02_1005_707\", \"ini\": 1960, \"clust\": 368, \"rank\": 765, \"rankvar\": 373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 866, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1096, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2503, \"group\": [372.0, 258.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1322_BALBc-1_X01_Y02_1007_204\", \"ini\": 1959, \"clust\": 2584, \"rank\": 1462, \"rankvar\": 1508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 867, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 40, \"cat-2\": \"Density: 25\", \"cat_2_index\": 646, \"group\": [2587.0, 1399.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1434_BALBc-1_X01_Y02_1008_667\", \"ini\": 1958, \"clust\": 2287, \"rank\": 2127, \"rankvar\": 1858, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 868, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 41, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2543, \"group\": [2286.0, 1245.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1462_BALBc-1_X01_Y02_1008_96\", \"ini\": 1957, \"clust\": 816, \"rank\": 98, \"rankvar\": 522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 869, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2522, \"cat-2\": \"Density: 26\", \"cat_2_index\": 780, \"group\": [816.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1655_BALBc-1_X01_Y02_1010_300\", \"ini\": 1956, \"clust\": 129, \"rank\": 1010, \"rankvar\": 1213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 870, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 42, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1762, \"group\": [131.0, 81.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1685_BALBc-1_X01_Y02_1010_638\", \"ini\": 1955, \"clust\": 642, \"rank\": 184, \"rankvar\": 916, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 871, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1992, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2544, \"group\": [641.0, 431.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1696_BALBc-1_X01_Y02_1010_759\", \"ini\": 1954, \"clust\": 962, \"rank\": 704, \"rankvar\": 435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 872, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1097, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2424, \"group\": [969.0, 496.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1730_BALBc-1_X01_Y02_1011_325\", \"ini\": 1953, \"clust\": 950, \"rank\": 863, \"rankvar\": 848, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 873, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 43, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2066, \"group\": [949.0, 483.0, 138.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1847_BALBc-1_X01_Y02_1012_897\", \"ini\": 1952, \"clust\": 773, \"rank\": 51, \"rankvar\": 256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 874, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1098, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2299, \"group\": [775.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1915_BALBc-1_X01_Y02_1013_615\", \"ini\": 1951, \"clust\": 2372, \"rank\": 2743, \"rankvar\": 2320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 875, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1993, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2651, \"group\": [2373.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2124_BALBc-1_X01_Y02_1016_391\", \"ini\": 1950, \"clust\": 2280, \"rank\": 1843, \"rankvar\": 1019, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 876, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 44, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2773, \"group\": [2280.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2204_BALBc-1_X01_Y02_1017_547\", \"ini\": 1949, \"clust\": 45, \"rank\": 971, \"rankvar\": 852, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 877, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 45, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2652, \"group\": [45.0, 38.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2235_BALBc-1_X01_Y02_1017_848\", \"ini\": 1948, \"clust\": 348, \"rank\": 768, \"rankvar\": 235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 878, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1099, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2504, \"group\": [349.0, 244.0, 84.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2283_BALBc-1_X01_Y02_1018_442\", \"ini\": 1947, \"clust\": 2062, \"rank\": 2688, \"rankvar\": 2048, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 879, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2523, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2733, \"group\": [2061.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2353_BALBc-1_X01_Y02_1019_489\", \"ini\": 1946, \"clust\": 1903, \"rank\": 2530, \"rankvar\": 2760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 880, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2524, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2734, \"group\": [1902.0, 1090.0, 333.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2355_BALBc-1_X01_Y02_1019_507\", \"ini\": 1945, \"clust\": 1906, \"rank\": 2334, \"rankvar\": 1936, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 881, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 46, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2593, \"group\": [1906.0, 1093.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2384_BALBc-1_X01_Y02_1019_836\", \"ini\": 1944, \"clust\": 1786, \"rank\": 1904, \"rankvar\": 2570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 882, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1634, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2594, \"group\": [1790.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2557_BALBc-1_X01_Y02_1021_285\", \"ini\": 1943, \"clust\": 945, \"rank\": 105, \"rankvar\": 518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 883, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 47, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1388, \"group\": [946.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2591_BALBc-1_X01_Y02_1021_733\", \"ini\": 1942, \"clust\": 448, \"rank\": 287, \"rankvar\": 367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 884, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1100, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2425, \"group\": [447.0, 313.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2671_BALBc-1_X01_Y02_1022_672\", \"ini\": 1941, \"clust\": 723, \"rank\": 206, \"rankvar\": 1224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 885, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1101, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2505, \"group\": [723.0, 463.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2730_BALBc-1_X01_Y02_1023_412\", \"ini\": 1940, \"clust\": 132, \"rank\": 696, \"rankvar\": 1701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 886, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2525, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2696, \"group\": [135.0, 83.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2766_BALBc-1_X01_Y02_1023_779\", \"ini\": 1939, \"clust\": 1770, \"rank\": 1762, \"rankvar\": 1204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 887, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1102, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2426, \"group\": [1771.0, 1004.0, 302.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2827_BALBc-1_X01_Y02_1024_575\", \"ini\": 1938, \"clust\": 2059, \"rank\": 2797, \"rankvar\": 2247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 888, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 48, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2595, \"group\": [2056.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2833_BALBc-1_X01_Y02_1024_621\", \"ini\": 1937, \"clust\": 1842, \"rank\": 1682, \"rankvar\": 1589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 889, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 49, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2596, \"group\": [1840.0, 1034.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2893_BALBc-1_X01_Y02_1025_369\", \"ini\": 1936, \"clust\": 2172, \"rank\": 1523, \"rankvar\": 1423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 890, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1635, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2506, \"group\": [2171.0, 1177.0, 347.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2964_BALBc-1_X01_Y02_1026_323\", \"ini\": 1935, \"clust\": 2235, \"rank\": 1619, \"rankvar\": 374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 891, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 50, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1857, \"group\": [2236.0, 1215.0, 363.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3081_BALBc-1_X01_Y02_1027_596\", \"ini\": 1934, \"clust\": 891, \"rank\": 28, \"rankvar\": 126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 892, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 51, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2653, \"group\": [888.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3102_BALBc-1_X01_Y02_1027_8\", \"ini\": 1933, \"clust\": 834, \"rank\": 140, \"rankvar\": 110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 893, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1636, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1763, \"group\": [836.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3134_BALBc-1_X01_Y02_1028_174\", \"ini\": 1932, \"clust\": 2585, \"rank\": 1086, \"rankvar\": 1132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 894, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1103, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1085, \"group\": [2585.0, 1398.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3301_BALBc-1_X01_Y02_103_274\", \"ini\": 1931, \"clust\": 312, \"rank\": 1163, \"rankvar\": 2641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 895, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1104, \"cat-2\": \"Density: 25\", \"cat_2_index\": 647, \"group\": [312.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3362_BALBc-1_X01_Y02_1030_122\", \"ini\": 1930, \"clust\": 2693, \"rank\": 2399, \"rankvar\": 1808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 896, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 692, \"cat-2\": \"Density: 24\", \"cat_2_index\": 500, \"group\": [2694.0, 1451.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3370_BALBc-1_X01_Y02_1030_219\", \"ini\": 1929, \"clust\": 2576, \"rank\": 1849, \"rankvar\": 2537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 897, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1105, \"cat-2\": \"Density: 27\", \"cat_2_index\": 932, \"group\": [2577.0, 1392.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3687_BALBc-1_X01_Y02_1034_469\", \"ini\": 1928, \"clust\": 2012, \"rank\": 1943, \"rankvar\": 2012, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 898, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2526, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2735, \"group\": [2012.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3758_BALBc-1_X01_Y02_1035_352\", \"ini\": 1927, \"clust\": 897, \"rank\": 24, \"rankvar\": 437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 899, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1637, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2427, \"group\": [896.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3764_BALBc-1_X01_Y02_1035_406\", \"ini\": 1926, \"clust\": 2048, \"rank\": 2390, \"rankvar\": 1955, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 900, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1638, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2597, \"group\": [2136.0, 1154.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4026_BALBc-1_X01_Y02_1038_521\", \"ini\": 1925, \"clust\": 2250, \"rank\": 1837, \"rankvar\": 564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 901, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 52, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2736, \"group\": [2250.0, 1227.0, 370.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4053_BALBc-1_X01_Y02_1038_905\", \"ini\": 1924, \"clust\": 1802, \"rank\": 2253, \"rankvar\": 2488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 902, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1744, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2149, \"group\": [1802.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4056_BALBc-1_X01_Y02_1038_930\", \"ini\": 1923, \"clust\": 797, \"rank\": 191, \"rankvar\": 702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 903, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1106, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1509, \"group\": [801.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4110_BALBc-1_X01_Y02_1039_579\", \"ini\": 1922, \"clust\": 2451, \"rank\": 1706, \"rankvar\": 566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 904, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 53, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2598, \"group\": [2452.0, 1304.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4115_BALBc-1_X01_Y02_1039_648\", \"ini\": 1921, \"clust\": 1788, \"rank\": 1567, \"rankvar\": 2392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 905, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1107, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2428, \"group\": [1787.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4300_BALBc-1_X01_Y02_1041_266\", \"ini\": 1920, \"clust\": 1702, \"rank\": 2352, \"rankvar\": 2604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 906, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 54, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1231, \"group\": [1702.0, 957.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4313_BALBc-1_X01_Y02_1041_433\", \"ini\": 1919, \"clust\": 1732, \"rank\": 2293, \"rankvar\": 2538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 907, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2527, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2697, \"group\": [1735.0, 978.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4822_BALBc-1_X01_Y02_1047_721\", \"ini\": 1918, \"clust\": 505, \"rank\": 857, \"rankvar\": 347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 908, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1108, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2507, \"group\": [506.0, 346.0, 117.0, 33.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4884_BALBc-1_X01_Y02_1048_476\", \"ini\": 1917, \"clust\": 503, \"rank\": 769, \"rankvar\": 1104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 909, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 55, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2819, \"group\": [504.0, 344.0, 116.0, 33.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4887_BALBc-1_X01_Y02_1048_504\", \"ini\": 1916, \"clust\": 1055, \"rank\": 487, \"rankvar\": 301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 910, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 56, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2820, \"group\": [1058.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4912_BALBc-1_X01_Y02_1048_876\", \"ini\": 1915, \"clust\": 76, \"rank\": 522, \"rankvar\": 1482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 911, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1109, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2224, \"group\": [76.0, 57.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5193_BALBc-1_X01_Y02_1051_618\", \"ini\": 1914, \"clust\": 1772, \"rank\": 1650, \"rankvar\": 1714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 912, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1110, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2366, \"group\": [1774.0, 1006.0, 303.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5224_BALBc-1_X01_Y02_1052_107\", \"ini\": 1913, \"clust\": 1004, \"rank\": 171, \"rankvar\": 811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 913, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 693, \"cat-2\": \"Density: 23\", \"cat_2_index\": 390, \"group\": [1002.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5304_BALBc-1_X01_Y02_1053_18\", \"ini\": 1912, \"clust\": 1248, \"rank\": 1717, \"rankvar\": 1913, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 914, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2448, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1232, \"group\": [1248.0, 629.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5328_BALBc-1_X01_Y02_1053_572\", \"ini\": 1911, \"clust\": 2446, \"rank\": 1564, \"rankvar\": 483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 915, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 57, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2599, \"group\": [2447.0, 1302.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5445_BALBc-1_X01_Y02_1055_145\", \"ini\": 1910, \"clust\": 149, \"rank\": 1737, \"rankvar\": 1517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 916, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 58, \"cat-2\": \"Density: 23\", \"cat_2_index\": 391, \"group\": [152.0, 95.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5547_BALBc-1_X01_Y02_1056_251\", \"ini\": 1909, \"clust\": 2592, \"rank\": 1442, \"rankvar\": 617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 917, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1560, \"cat-2\": \"Density: 27\", \"cat_2_index\": 933, \"group\": [2590.0, 1401.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5577_BALBc-1_X01_Y02_1056_535\", \"ini\": 1908, \"clust\": 923, \"rank\": 202, \"rankvar\": 83, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 918, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 59, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2698, \"group\": [925.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5586_BALBc-1_X01_Y02_1056_690\", \"ini\": 1907, \"clust\": 357, \"rank\": 612, \"rankvar\": 1791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 919, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1111, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2429, \"group\": [357.0, 250.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5602_BALBc-1_X01_Y02_1056_84\", \"ini\": 1906, \"clust\": 806, \"rank\": 656, \"rankvar\": 26, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 920, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 694, \"cat-2\": \"Density: 26\", \"cat_2_index\": 781, \"group\": [807.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5707_BALBc-1_X01_Y02_1058_294\", \"ini\": 1905, \"clust\": 1002, \"rank\": 629, \"rankvar\": 152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 921, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 60, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1510, \"group\": [1005.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5739_BALBc-1_X01_Y02_1058_669\", \"ini\": 1904, \"clust\": 2467, \"rank\": 1265, \"rankvar\": 732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 922, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1112, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2654, \"group\": [2467.0, 1315.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5833_BALBc-1_X01_Y02_1059_848\", \"ini\": 1903, \"clust\": 384, \"rank\": 851, \"rankvar\": 1313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 923, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1113, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2300, \"group\": [383.0, 266.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6281_BALBc-1_X01_Y02_1064_432\", \"ini\": 1902, \"clust\": 1822, \"rank\": 2696, \"rankvar\": 2553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 924, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 61, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2737, \"group\": [1822.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6293_BALBc-1_X01_Y02_1064_504\", \"ini\": 1901, \"clust\": 2278, \"rank\": 1790, \"rankvar\": 413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 925, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 62, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2811, \"group\": [2278.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6437_BALBc-1_X01_Y02_1066_473\", \"ini\": 1900, \"clust\": 2452, \"rank\": 1241, \"rankvar\": 895, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 926, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 63, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2821, \"group\": [2453.0, 1304.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6448_BALBc-1_X01_Y02_1066_590\", \"ini\": 1899, \"clust\": 872, \"rank\": 36, \"rankvar\": 517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 927, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 64, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2655, \"group\": [878.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6527_BALBc-1_X01_Y02_1067_691\", \"ini\": 1898, \"clust\": 204, \"rank\": 922, \"rankvar\": 434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 928, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1114, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2430, \"group\": [204.0, 137.0, 46.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6588_BALBc-1_X01_Y02_1068_448\", \"ini\": 1897, \"clust\": 2439, \"rank\": 1019, \"rankvar\": 721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 929, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 65, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2812, \"group\": [2440.0, 1298.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6686_BALBc-1_X01_Y02_1069_459\", \"ini\": 1896, \"clust\": 1028, \"rank\": 358, \"rankvar\": 59, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 930, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 66, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2793, \"group\": [1029.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6811_BALBc-1_X01_Y02_1070_150\", \"ini\": 1895, \"clust\": 376, \"rank\": 811, \"rankvar\": 2165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 931, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1115, \"cat-2\": \"Density: 23\", \"cat_2_index\": 392, \"group\": [380.0, 264.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7004_BALBc-1_X01_Y02_1072_408\", \"ini\": 1894, \"clust\": 2149, \"rank\": 707, \"rankvar\": 2014, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 932, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 619, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2794, \"group\": [2150.0, 1166.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7308_BALBc-1_X01_Y02_1075_797\", \"ini\": 1893, \"clust\": 817, \"rank\": 133, \"rankvar\": 180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 933, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1116, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2301, \"group\": [817.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7360_BALBc-1_X01_Y02_1076_505\", \"ini\": 1892, \"clust\": 1455, \"rank\": 2192, \"rankvar\": 939, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 934, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 67, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2795, \"group\": [1456.0, 792.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7375_BALBc-1_X01_Y02_1076_614\", \"ini\": 1891, \"clust\": 724, \"rank\": 180, \"rankvar\": 657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 935, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1117, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2656, \"group\": [724.0, 463.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7388_BALBc-1_X01_Y02_1076_772\", \"ini\": 1890, \"clust\": 1807, \"rank\": 1615, \"rankvar\": 1504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 936, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1118, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2367, \"group\": [1807.0, 1021.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7429_BALBc-1_X01_Y02_1077_283\", \"ini\": 1889, \"clust\": 514, \"rank\": 720, \"rankvar\": 36, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 937, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 68, \"cat-2\": \"Density: 26\", \"cat_2_index\": 782, \"group\": [516.0, 353.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7521_BALBc-1_X01_Y02_1078_434\", \"ini\": 1888, \"clust\": 795, \"rank\": 280, \"rankvar\": 625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 938, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 69, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2796, \"group\": [796.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7604_BALBc-1_X01_Y02_1079_662\", \"ini\": 1887, \"clust\": 1691, \"rank\": 2635, \"rankvar\": 2775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 939, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1119, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2431, \"group\": [1692.0, 949.0, 284.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7606_BALBc-1_X01_Y02_1079_678\", \"ini\": 1886, \"clust\": 2544, \"rank\": 1824, \"rankvar\": 1470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 940, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1639, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2432, \"group\": [2545.0, 1370.0, 408.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7804_BALBc-1_X01_Y02_1081_554\", \"ini\": 1885, \"clust\": 502, \"rank\": 1081, \"rankvar\": 202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 941, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 70, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2699, \"group\": [501.0, 341.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7953_BALBc-1_X01_Y02_1083_574\", \"ini\": 1884, \"clust\": 2305, \"rank\": 1803, \"rankvar\": 1071, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 942, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 71, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2508, \"group\": [2304.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8179_BALBc-1_X01_Y02_1086_62\", \"ini\": 1883, \"clust\": 785, \"rank\": 338, \"rankvar\": 250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 943, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1640, \"cat-2\": \"Density: 27\", \"cat_2_index\": 934, \"group\": [785.0, 476.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8323_BALBc-1_X01_Y02_1088_532\", \"ini\": 1882, \"clust\": 681, \"rank\": 485, \"rankvar\": 114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 944, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 72, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2774, \"group\": [684.0, 450.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8368_BALBc-1_X01_Y02_1089_10\", \"ini\": 1881, \"clust\": 942, \"rank\": 44, \"rankvar\": 360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 945, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 695, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1233, \"group\": [941.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8395_BALBc-1_X01_Y02_1089_383\", \"ini\": 1880, \"clust\": 1075, \"rank\": 381, \"rankvar\": 728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 946, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 620, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2600, \"group\": [1076.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8610_BALBc-1_X01_Y02_1091_207\", \"ini\": 1879, \"clust\": 591, \"rank\": 1030, \"rankvar\": 1060, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 947, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1120, \"cat-2\": \"Density: 22\", \"cat_2_index\": 281, \"group\": [594.0, 405.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8618_BALBc-1_X01_Y02_1091_325\", \"ini\": 1878, \"clust\": 2433, \"rank\": 718, \"rankvar\": 752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 948, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1641, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1962, \"group\": [2431.0, 1295.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8711_BALBc-1_X01_Y02_1092_593\", \"ini\": 1877, \"clust\": 2389, \"rank\": 2453, \"rankvar\": 1309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 949, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 73, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2738, \"group\": [2389.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8860_BALBc-1_X01_Y02_1094_414\", \"ini\": 1876, \"clust\": 1896, \"rank\": 2427, \"rankvar\": 2377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 950, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 74, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2775, \"group\": [1896.0, 1085.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8911_BALBc-1_X01_Y02_1095_127\", \"ini\": 1875, \"clust\": 194, \"rank\": 418, \"rankvar\": 1066, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 951, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1121, \"cat-2\": \"Density: 24\", \"cat_2_index\": 501, \"group\": [199.0, 133.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8950_BALBc-1_X01_Y02_1095_640\", \"ini\": 1874, \"clust\": 774, \"rank\": 232, \"rankvar\": 162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 952, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1122, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2700, \"group\": [773.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9039_BALBc-1_X01_Y02_1096_780\", \"ini\": 1873, \"clust\": 414, \"rank\": 963, \"rankvar\": 791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 953, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 945, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2225, \"group\": [415.0, 292.0, 101.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9116_BALBc-1_X01_Y02_1097_820\", \"ini\": 1872, \"clust\": 1834, \"rank\": 2526, \"rankvar\": 2091, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 954, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1123, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2226, \"group\": [1836.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9237_BALBc-1_X01_Y02_1099_474\", \"ini\": 1871, \"clust\": 814, \"rank\": 311, \"rankvar\": 24, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 955, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 75, \"cat-2\": \"Density: 52\", \"cat_2_index\": 2825, \"group\": [812.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9410_BALBc-1_X01_Y02_110_501\", \"ini\": 1870, \"clust\": 758, \"rank\": 108, \"rankvar\": 1406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 956, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2449, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1086, \"group\": [757.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9518_BALBc-1_X01_Y02_1100_80\", \"ini\": 1869, \"clust\": 326, \"rank\": 1636, \"rankvar\": 2599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 957, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1955, \"cat-2\": \"Density: 24\", \"cat_2_index\": 502, \"group\": [325.0, 226.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9617_BALBc-1_X01_Y02_1102_229\", \"ini\": 1868, \"clust\": 1703, \"rank\": 2425, \"rankvar\": 2374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 958, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1561, \"cat-2\": \"Density: 26\", \"cat_2_index\": 783, \"group\": [1700.0, 957.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9723_BALBc-1_X01_Y02_1103_562\", \"ini\": 1867, \"clust\": 733, \"rank\": 298, \"rankvar\": 150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 959, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 76, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2545, \"group\": [733.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9784_BALBc-1_X01_Y02_1104_292\", \"ini\": 1866, \"clust\": 1767, \"rank\": 1955, \"rankvar\": 2239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 960, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2528, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1511, \"group\": [1766.0, 1001.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9793_BALBc-1_X01_Y02_1104_427\", \"ini\": 1865, \"clust\": 997, \"rank\": 652, \"rankvar\": 348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 961, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 77, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2797, \"group\": [999.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9800_BALBc-1_X01_Y02_1104_504\", \"ini\": 1864, \"clust\": 2324, \"rank\": 1967, \"rankvar\": 760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 962, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 78, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2798, \"group\": [2322.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9883_BALBc-1_X01_Y02_1105_447\", \"ini\": 1863, \"clust\": 422, \"rank\": 970, \"rankvar\": 78, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 963, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 79, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2813, \"group\": [422.0, 298.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10036_BALBc-1_X01_Y02_1107_379\", \"ini\": 1862, \"clust\": 1904, \"rank\": 2210, \"rankvar\": 1874, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 964, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 80, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2368, \"group\": [1903.0, 1090.0, 333.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10115_BALBc-1_X01_Y02_1108_313\", \"ini\": 1861, \"clust\": 786, \"rank\": 285, \"rankvar\": 468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 965, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2529, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1389, \"group\": [786.0, 476.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10188_BALBc-1_X01_Y02_1109_186\", \"ini\": 1860, \"clust\": 1082, \"rank\": 559, \"rankvar\": 743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 966, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1124, \"cat-2\": \"Density: 20\", \"cat_2_index\": 153, \"group\": [1085.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10290_BALBc-1_X01_Y02_111_587\", \"ini\": 1859, \"clust\": 345, \"rank\": 557, \"rankvar\": 1739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 967, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1125, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1087, \"group\": [347.0, 242.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10354_BALBc-1_X01_Y02_1110_402\", \"ini\": 1858, \"clust\": 874, \"rank\": 1, \"rankvar\": 443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 968, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 81, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2546, \"group\": [871.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10516_BALBc-1_X01_Y02_1112_616\", \"ini\": 1857, \"clust\": 1131, \"rank\": 722, \"rankvar\": 2010, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 969, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1126, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2739, \"group\": [1130.0, 532.0, 145.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10520_BALBc-1_X01_Y02_1112_667\", \"ini\": 1856, \"clust\": 2535, \"rank\": 1778, \"rankvar\": 1882, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 970, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 82, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2369, \"group\": [2536.0, 1362.0, 404.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10730_BALBc-1_X01_Y02_1115_472\", \"ini\": 1855, \"clust\": 841, \"rank\": 297, \"rankvar\": 0, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 971, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 83, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2814, \"group\": [842.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10887_BALBc-1_X01_Y02_1117_527\", \"ini\": 1854, \"clust\": 499, \"rank\": 1041, \"rankvar\": 309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 972, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 84, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2601, \"group\": [498.0, 340.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10916_BALBc-1_X01_Y02_1117_796\", \"ini\": 1853, \"clust\": 1759, \"rank\": 1052, \"rankvar\": 2717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 973, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1127, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1963, \"group\": [1758.0, 995.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10974_BALBc-1_X01_Y02_1118_646\", \"ini\": 1852, \"clust\": 78, \"rank\": 542, \"rankvar\": 548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 974, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 85, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2602, \"group\": [79.0, 58.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11010_BALBc-1_X01_Y02_1119_25\", \"ini\": 1851, \"clust\": 2818, \"rank\": 2404, \"rankvar\": 2146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 975, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 696, \"cat-2\": \"Density: 27\", \"cat_2_index\": 935, \"group\": [2821.0, 1533.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11155_BALBc-1_X01_Y02_1120_361\", \"ini\": 1850, \"clust\": 857, \"rank\": 74, \"rankvar\": 1013, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 976, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 86, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1964, \"group\": [857.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11235_BALBc-1_X01_Y02_1121_237\", \"ini\": 1849, \"clust\": 190, \"rank\": 866, \"rankvar\": 187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 977, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1562, \"cat-2\": \"Density: 23\", \"cat_2_index\": 393, \"group\": [191.0, 127.0, 43.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11425_BALBc-1_X01_Y02_1123_682\", \"ini\": 1848, \"clust\": 285, \"rank\": 1073, \"rankvar\": 1705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 978, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1642, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2509, \"group\": [294.0, 210.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11501_BALBc-1_X01_Y02_1124_589\", \"ini\": 1847, \"clust\": 1827, \"rank\": 2310, \"rankvar\": 1751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 979, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1128, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2433, \"group\": [1827.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11783_BALBc-1_X01_Y02_1128_375\", \"ini\": 1846, \"clust\": 2279, \"rank\": 1853, \"rankvar\": 321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 980, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 87, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2227, \"group\": [2279.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11789_BALBc-1_X01_Y02_1128_446\", \"ini\": 1845, \"clust\": 2262, \"rank\": 1309, \"rankvar\": 327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 981, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 88, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2776, \"group\": [2260.0, 1235.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11818_BALBc-1_X01_Y02_1128_778\", \"ini\": 1844, \"clust\": 0, \"rank\": 1709, \"rankvar\": 754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 982, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1129, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2302, \"group\": [3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11861_BALBc-1_X01_Y02_1129_519\", \"ini\": 1843, \"clust\": 949, \"rank\": 641, \"rankvar\": 933, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 983, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1546, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2815, \"group\": [951.0, 484.0, 138.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11949_BALBc-1_X01_Y02_113_746\", \"ini\": 1842, \"clust\": 1739, \"rank\": 1677, \"rankvar\": 2334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 984, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1130, \"cat-2\": \"Density: 26\", \"cat_2_index\": 784, \"group\": [1740.0, 983.0, 295.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12248_BALBc-1_X01_Y02_1133_543\", \"ini\": 1841, \"clust\": 1761, \"rank\": 1782, \"rankvar\": 1016, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 985, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1547, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2547, \"group\": [1762.0, 998.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12302_BALBc-1_X01_Y02_1134_424\", \"ini\": 1840, \"clust\": 13, \"rank\": 1297, \"rankvar\": 37, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 986, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2530, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2510, \"group\": [14.0, 13.0, 8.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12338_BALBc-1_X01_Y02_1135_117\", \"ini\": 1839, \"clust\": 2795, \"rank\": 1121, \"rankvar\": 1146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 987, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1131, \"cat-2\": \"Density: 25\", \"cat_2_index\": 648, \"group\": [2795.0, 1516.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12370_BALBc-1_X01_Y02_1135_398\", \"ini\": 1838, \"clust\": 2631, \"rank\": 2252, \"rankvar\": 1591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 988, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2531, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2303, \"group\": [2631.0, 1424.0, 419.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12399_BALBc-1_X01_Y02_1135_711\", \"ini\": 1837, \"clust\": 742, \"rank\": 546, \"rankvar\": 931, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 989, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1132, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2511, \"group\": [748.0, 471.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12520_BALBc-1_X01_Y02_1137_482\", \"ini\": 1836, \"clust\": 861, \"rank\": 183, \"rankvar\": 272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 990, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 89, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2701, \"group\": [862.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13075_BALBc-1_X01_Y02_1143_338\", \"ini\": 1835, \"clust\": 2471, \"rank\": 980, \"rankvar\": 693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 991, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2532, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1234, \"group\": [2472.0, 1320.0, 392.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13103_BALBc-1_X01_Y02_1143_664\", \"ini\": 1834, \"clust\": 2536, \"rank\": 1663, \"rankvar\": 1200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 992, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 90, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2304, \"group\": [2537.0, 1362.0, 404.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13162_BALBc-1_X01_Y02_1144_457\", \"ini\": 1833, \"clust\": 801, \"rank\": 316, \"rankvar\": 54, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 993, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 91, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2799, \"group\": [802.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13164_BALBc-1_X01_Y02_1144_469\", \"ini\": 1832, \"clust\": 1013, \"rank\": 848, \"rankvar\": 19, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 994, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 92, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2702, \"group\": [1018.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13317_BALBc-1_X01_Y02_1146_638\", \"ini\": 1831, \"clust\": 1868, \"rank\": 1131, \"rankvar\": 425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 995, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 93, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2305, \"group\": [1868.0, 1059.0, 320.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13467_BALBc-1_X01_Y02_1148_565\", \"ini\": 1830, \"clust\": 907, \"rank\": 85, \"rankvar\": 62, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 996, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1133, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2434, \"group\": [906.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13517_BALBc-1_X01_Y02_1149_362\", \"ini\": 1829, \"clust\": 293, \"rank\": 1341, \"rankvar\": 2667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 997, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 94, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1653, \"group\": [291.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13825_BALBc-1_X01_Y02_1152_206\", \"ini\": 1828, \"clust\": 453, \"rank\": 346, \"rankvar\": 502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 998, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2533, \"cat-2\": \"Density: 23\", \"cat_2_index\": 394, \"group\": [453.0, 316.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14075_BALBc-1_X01_Y02_1155_606\", \"ini\": 1827, \"clust\": 383, \"rank\": 1111, \"rankvar\": 2286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 999, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1134, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2228, \"group\": [385.0, 267.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14139_BALBc-1_X01_Y02_1156_505\", \"ini\": 1826, \"clust\": 2326, \"rank\": 1924, \"rankvar\": 941, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1000, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1548, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2603, \"group\": [2324.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14194_BALBc-1_X01_Y02_1157_257\", \"ini\": 1825, \"clust\": 454, \"rank\": 433, \"rankvar\": 442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1001, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1135, \"cat-2\": \"Density: 23\", \"cat_2_index\": 395, \"group\": [454.0, 316.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14333_BALBc-1_X01_Y02_1158_98\", \"ini\": 1824, \"clust\": 21, \"rank\": 1055, \"rankvar\": 64, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1002, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1136, \"cat-2\": \"Density: 22\", \"cat_2_index\": 282, \"group\": [21.0, 20.0, 12.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14461_BALBc-1_X01_Y02_116_804\", \"ini\": 1823, \"clust\": 2643, \"rank\": 2306, \"rankvar\": 1488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1003, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1137, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1654, \"group\": [2649.0, 1438.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14529_BALBc-1_X01_Y02_1160_70\", \"ini\": 1822, \"clust\": 2736, \"rank\": 1811, \"rankvar\": 948, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1004, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1956, \"cat-2\": \"Density: 23\", \"cat_2_index\": 396, \"group\": [2737.0, 1472.0, 433.0, 113.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14765_BALBc-1_X01_Y02_1163_363\", \"ini\": 1821, \"clust\": 9, \"rank\": 1605, \"rankvar\": 886, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1005, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2534, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1390, \"group\": [9.0, 8.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14775_BALBc-1_X01_Y02_1163_470\", \"ini\": 1820, \"clust\": 1069, \"rank\": 661, \"rankvar\": 368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1006, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1957, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2548, \"group\": [1073.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14940_BALBc-1_X01_Y02_1165_431\", \"ini\": 1819, \"clust\": 880, \"rank\": 125, \"rankvar\": 528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1007, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1643, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2549, \"group\": [881.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14952_BALBc-1_X01_Y02_1165_653\", \"ini\": 1818, \"clust\": 787, \"rank\": 165, \"rankvar\": 504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1008, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1138, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2229, \"group\": [788.0, 477.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15044_BALBc-1_X01_Y02_1166_715\", \"ini\": 1817, \"clust\": 1803, \"rank\": 2171, \"rankvar\": 2802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1009, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1139, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2230, \"group\": [1800.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15252_BALBc-1_X01_Y02_1169_690\", \"ini\": 1816, \"clust\": 638, \"rank\": 422, \"rankvar\": 290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1010, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1140, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2306, \"group\": [639.0, 429.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15308_BALBc-1_X01_Y02_117_556\", \"ini\": 1815, \"clust\": 181, \"rank\": 910, \"rankvar\": 2289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1011, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 95, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1391, \"group\": [182.0, 119.0, 39.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15434_BALBc-1_X01_Y02_1171_25\", \"ini\": 1814, \"clust\": 1355, \"rank\": 1934, \"rankvar\": 279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1012, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1958, \"cat-2\": \"Density: 27\", \"cat_2_index\": 936, \"group\": [1356.0, 717.0, 213.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15469_BALBc-1_X01_Y02_1171_563\", \"ini\": 1813, \"clust\": 386, \"rank\": 982, \"rankvar\": 1947, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1013, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1745, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2231, \"group\": [386.0, 268.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15536_BALBc-1_X01_Y02_1172_623\", \"ini\": 1812, \"clust\": 296, \"rank\": 650, \"rankvar\": 2315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1014, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1141, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2067, \"group\": [304.0, 214.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15847_BALBc-1_X01_Y02_1176_597\", \"ini\": 1811, \"clust\": 1880, \"rank\": 1858, \"rankvar\": 2219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1015, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1746, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1965, \"group\": [1881.0, 1071.0, 326.0, 91.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15894_BALBc-1_X01_Y02_1177_234\", \"ini\": 1810, \"clust\": 2608, \"rank\": 2107, \"rankvar\": 2222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1016, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1142, \"cat-2\": \"Density: 22\", \"cat_2_index\": 283, \"group\": [2606.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15978_BALBc-1_X01_Y02_1178_306\", \"ini\": 1809, \"clust\": 799, \"rank\": 236, \"rankvar\": 299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1017, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1143, \"cat-2\": \"Density: 21\", \"cat_2_index\": 203, \"group\": [798.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15996_BALBc-1_X01_Y02_1178_501\", \"ini\": 1808, \"clust\": 428, \"rank\": 408, \"rankvar\": 1000, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1018, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1549, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2435, \"group\": [427.0, 303.0, 105.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16362_BALBc-1_X01_Y02_1182_417\", \"ini\": 1807, \"clust\": 1715, \"rank\": 2305, \"rankvar\": 2110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1019, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1644, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2307, \"group\": [1716.0, 967.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16367_BALBc-1_X01_Y02_1182_448\", \"ini\": 1806, \"clust\": 1716, \"rank\": 2193, \"rankvar\": 2591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1020, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1645, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2436, \"group\": [1717.0, 967.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16640_BALBc-1_X01_Y02_1185_889\", \"ini\": 1805, \"clust\": 1, \"rank\": 1193, \"rankvar\": 2375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1021, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1144, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1858, \"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16730_BALBc-1_X01_Y02_1187_385\", \"ini\": 1804, \"clust\": 12, \"rank\": 1407, \"rankvar\": 488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1022, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2535, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1764, \"group\": [13.0, 12.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17035_BALBc-1_X01_Y02_1190_493\", \"ini\": 1803, \"clust\": 2453, \"rank\": 1752, \"rankvar\": 829, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1023, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1959, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2232, \"group\": [2456.0, 1306.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17207_BALBc-1_X01_Y02_1192_761\", \"ini\": 1802, \"clust\": 976, \"rank\": 967, \"rankvar\": 634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1024, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1145, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2370, \"group\": [976.0, 501.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17322_BALBc-1_X01_Y02_1194_325\", \"ini\": 1801, \"clust\": 599, \"rank\": 639, \"rankvar\": 550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1025, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2293, \"cat-2\": \"Density: 24\", \"cat_2_index\": 503, \"group\": [602.0, 411.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17680_BALBc-1_X01_Y02_1199_122\", \"ini\": 1800, \"clust\": 1077, \"rank\": 118, \"rankvar\": 893, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1026, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1146, \"cat-2\": \"Density: 20\", \"cat_2_index\": 154, \"group\": [1078.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17793_BALBc-1_X01_Y02_12_655\", \"ini\": 1799, \"clust\": 2766, \"rank\": 2093, \"rankvar\": 1851, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1027, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 96, \"cat-2\": \"Density: 14\", \"cat_2_index\": 29, \"group\": [2767.0, 1498.0, 447.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17839_BALBc-1_X01_Y02_120_140\", \"ini\": 1798, \"clust\": 1623, \"rank\": 1724, \"rankvar\": 2432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1028, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1147, \"cat-2\": \"Density: 26\", \"cat_2_index\": 785, \"group\": [1624.0, 893.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17873_BALBc-1_X01_Y02_120_509\", \"ini\": 1797, \"clust\": 2760, \"rank\": 1877, \"rankvar\": 1481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1029, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 97, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1235, \"group\": [2760.0, 1493.0, 445.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17954_BALBc-1_X01_Y02_1200_546\", \"ini\": 1796, \"clust\": 1659, \"rank\": 2108, \"rankvar\": 2362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1030, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1550, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1655, \"group\": [1661.0, 919.0, 267.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18320_BALBc-1_X01_Y02_1204_93\", \"ini\": 1795, \"clust\": 1251, \"rank\": 1433, \"rankvar\": 1825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1031, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 98, \"cat-2\": \"Density: 22\", \"cat_2_index\": 284, \"group\": [1253.0, 634.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18357_BALBc-1_X01_Y02_1205_419\", \"ini\": 1794, \"clust\": 989, \"rank\": 826, \"rankvar\": 1421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1032, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1646, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2150, \"group\": [990.0, 507.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18530_BALBc-1_X01_Y02_1207_517\", \"ini\": 1793, \"clust\": 1757, \"rank\": 1626, \"rankvar\": 2409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1033, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1148, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1859, \"group\": [1756.0, 995.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18940_BALBc-1_X01_Y02_1212_14\", \"ini\": 1792, \"clust\": 2769, \"rank\": 2030, \"rankvar\": 720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1034, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1960, \"cat-2\": \"Density: 26\", \"cat_2_index\": 786, \"group\": [2769.0, 1500.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19125_BALBc-1_X01_Y02_1214_642\", \"ini\": 1791, \"clust\": 1899, \"rank\": 2373, \"rankvar\": 2614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1035, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1149, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2068, \"group\": [1898.0, 1087.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19244_BALBc-1_X01_Y02_1216_259\", \"ini\": 1790, \"clust\": 985, \"rank\": 212, \"rankvar\": 1172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1036, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1150, \"cat-2\": \"Density: 19\", \"cat_2_index\": 119, \"group\": [985.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19318_BALBc-1_X01_Y02_1217_339\", \"ini\": 1789, \"clust\": 623, \"rank\": 502, \"rankvar\": 67, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1037, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2294, \"cat-2\": \"Density: 25\", \"cat_2_index\": 649, \"group\": [624.0, 421.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19577_BALBc-1_X01_Y02_122_855\", \"ini\": 1788, \"clust\": 2653, \"rank\": 2641, \"rankvar\": 2016, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1038, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2295, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1236, \"group\": [2651.0, 1439.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19630_BALBc-1_X01_Y02_1220_488\", \"ini\": 1787, \"clust\": 995, \"rank\": 472, \"rankvar\": 1419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1039, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1151, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2151, \"group\": [995.0, 510.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19649_BALBc-1_X01_Y02_1220_756\", \"ini\": 1786, \"clust\": 1875, \"rank\": 1479, \"rankvar\": 897, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1040, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1647, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2308, \"group\": [1875.0, 1065.0, 323.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19712_BALBc-1_X01_Y02_1221_558\", \"ini\": 1785, \"clust\": 399, \"rank\": 246, \"rankvar\": 2478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1041, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1152, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1237, \"group\": [398.0, 279.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19804_BALBc-1_X01_Y02_1222_695\", \"ini\": 1784, \"clust\": 315, \"rank\": 1546, \"rankvar\": 2378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1042, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1153, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2371, \"group\": [315.0, 219.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19893_BALBc-1_X01_Y02_1223_804\", \"ini\": 1783, \"clust\": 379, \"rank\": 269, \"rankvar\": 1952, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1043, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1154, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2233, \"group\": [378.0, 263.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19976_BALBc-1_X01_Y02_1224_87\", \"ini\": 1782, \"clust\": 297, \"rank\": 828, \"rankvar\": 1685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1044, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1155, \"cat-2\": \"Density: 24\", \"cat_2_index\": 504, \"group\": [303.0, 213.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20108_BALBc-1_X01_Y02_1226_52\", \"ini\": 1781, \"clust\": 2472, \"rank\": 1244, \"rankvar\": 891, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1045, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1579, \"cat-2\": \"Density: 24\", \"cat_2_index\": 505, \"group\": [2473.0, 1321.0, 392.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20419_BALBc-1_X01_Y02_123_829\", \"ini\": 1780, \"clust\": 768, \"rank\": 66, \"rankvar\": 546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1046, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1156, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1512, \"group\": [772.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20540_BALBc-1_X01_Y02_1231_399\", \"ini\": 1779, \"clust\": 203, \"rank\": 911, \"rankvar\": 659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1047, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1157, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1656, \"group\": [203.0, 136.0, 46.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20591_BALBc-1_X01_Y02_1231_893\", \"ini\": 1778, \"clust\": 427, \"rank\": 759, \"rankvar\": 778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1048, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1158, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1860, \"group\": [429.0, 304.0, 105.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21204_BALBc-1_X01_Y02_124_109\", \"ini\": 1777, \"clust\": 284, \"rank\": 1801, \"rankvar\": 2466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1049, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1159, \"cat-2\": \"Density: 27\", \"cat_2_index\": 937, \"group\": [284.0, 206.0, 75.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21575_BALBc-1_X01_Y02_1244_166\", \"ini\": 1776, \"clust\": 2591, \"rank\": 1583, \"rankvar\": 2190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1050, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2536, \"cat-2\": \"Density: 22\", \"cat_2_index\": 285, \"group\": [2592.0, 1401.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21957_BALBc-1_X01_Y02_1249_556\", \"ini\": 1775, \"clust\": 1881, \"rank\": 2323, \"rankvar\": 2747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1051, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1160, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1088, \"group\": [1882.0, 1072.0, 326.0, 91.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21977_BALBc-1_X01_Y02_1249_787\", \"ini\": 1774, \"clust\": 670, \"rank\": 378, \"rankvar\": 1206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1052, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1161, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2152, \"group\": [668.0, 442.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22035_BALBc-1_X01_Y02_125_534\", \"ini\": 1773, \"clust\": 1379, \"rank\": 1741, \"rankvar\": 1317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1053, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 99, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1392, \"group\": [1380.0, 733.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22253_BALBc-1_X01_Y02_1252_344\", \"ini\": 1772, \"clust\": 8, \"rank\": 1421, \"rankvar\": 127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1054, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2296, \"cat-2\": \"Density: 23\", \"cat_2_index\": 397, \"group\": [11.0, 10.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22740_BALBc-1_X01_Y02_1259_25\", \"ini\": 1771, \"clust\": 1375, \"rank\": 2135, \"rankvar\": 1703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1055, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1961, \"cat-2\": \"Density: 26\", \"cat_2_index\": 787, \"group\": [1376.0, 731.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22891_BALBc-1_X01_Y02_1260_403\", \"ini\": 1770, \"clust\": 444, \"rank\": 654, \"rankvar\": 1138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1056, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1162, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1513, \"group\": [445.0, 312.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23039_BALBc-1_X01_Y02_1262_452\", \"ini\": 1769, \"clust\": 813, \"rank\": 103, \"rankvar\": 284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1057, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1163, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1238, \"group\": [814.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23057_BALBc-1_X01_Y02_1262_678\", \"ini\": 1768, \"clust\": 173, \"rank\": 379, \"rankvar\": 619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1058, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1164, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2069, \"group\": [173.0, 112.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23972_BALBc-1_X01_Y02_1274_408\", \"ini\": 1767, \"clust\": 902, \"rank\": 57, \"rankvar\": 410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1059, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 100, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1393, \"group\": [900.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23974_BALBc-1_X01_Y02_1274_423\", \"ini\": 1766, \"clust\": 1142, \"rank\": 1151, \"rankvar\": 553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1060, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1165, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1514, \"group\": [1143.0, 544.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24160_BALBc-1_X01_Y02_1277_153\", \"ini\": 1765, \"clust\": 27, \"rank\": 979, \"rankvar\": 769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1061, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2537, \"cat-2\": \"Density: 21\", \"cat_2_index\": 204, \"group\": [30.0, 28.0, 16.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24404_BALBc-1_X01_Y02_128_478\", \"ini\": 1764, \"clust\": 1104, \"rank\": 344, \"rankvar\": 596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1062, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2450, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1089, \"group\": [1108.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24468_BALBc-1_X01_Y02_1280_260\", \"ini\": 1763, \"clust\": 128, \"rank\": 1059, \"rankvar\": 1340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1063, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2297, \"cat-2\": \"Density: 16\", \"cat_2_index\": 58, \"group\": [132.0, 82.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24628_BALBc-1_X01_Y02_1282_802\", \"ini\": 1762, \"clust\": 1776, \"rank\": 2143, \"rankvar\": 2483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1064, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1166, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1861, \"group\": [1776.0, 1008.0, 304.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25243_BALBc-1_X01_Y02_1290_386\", \"ini\": 1761, \"clust\": 420, \"rank\": 1281, \"rankvar\": 492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1065, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1167, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1239, \"group\": [420.0, 296.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25273_BALBc-1_X01_Y02_1290_702\", \"ini\": 1760, \"clust\": 1626, \"rank\": 2765, \"rankvar\": 2751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1066, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2298, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1966, \"group\": [1629.0, 896.0, 259.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25852_BALBc-1_X01_Y02_1298_50\", \"ini\": 1759, \"clust\": 604, \"rank\": 425, \"rankvar\": 560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1067, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1580, \"cat-2\": \"Density: 24\", \"cat_2_index\": 506, \"group\": [604.0, 412.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25924_BALBc-1_X01_Y02_1299_448\", \"ini\": 1758, \"clust\": 839, \"rank\": 61, \"rankvar\": 68, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1068, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1648, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1394, \"group\": [839.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26183_BALBc-1_X01_Y02_1300_80\", \"ini\": 1757, \"clust\": 2738, \"rank\": 1983, \"rankvar\": 2134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1069, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2538, \"cat-2\": \"Density: 23\", \"cat_2_index\": 398, \"group\": [2739.0, 1474.0, 435.0, 114.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26216_BALBc-1_X01_Y02_1301_40\", \"ini\": 1756, \"clust\": 513, \"rank\": 724, \"rankvar\": 390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1070, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1962, \"cat-2\": \"Density: 25\", \"cat_2_index\": 650, \"group\": [517.0, 354.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26286_BALBc-1_X01_Y02_1302_362\", \"ini\": 1755, \"clust\": 1704, \"rank\": 1905, \"rankvar\": 2310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1071, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1168, \"cat-2\": \"Density: 25\", \"cat_2_index\": 651, \"group\": [1701.0, 957.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26422_BALBc-1_X01_Y02_1304_482\", \"ini\": 1754, \"clust\": 1009, \"rank\": 516, \"rankvar\": 431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1072, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1169, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1090, \"group\": [1012.0, 514.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26472_BALBc-1_X01_Y02_1305_154\", \"ini\": 1753, \"clust\": 29, \"rank\": 156, \"rankvar\": 2509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1073, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2539, \"cat-2\": \"Density: 17\", \"cat_2_index\": 76, \"group\": [29.0, 27.0, 16.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26543_BALBc-1_X01_Y02_1306_303\", \"ini\": 1752, \"clust\": 2628, \"rank\": 2353, \"rankvar\": 2214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1074, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1170, \"cat-2\": \"Density: 22\", \"cat_2_index\": 286, \"group\": [2628.0, 1421.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26628_BALBc-1_X01_Y02_1307_628\", \"ini\": 1751, \"clust\": 79, \"rank\": 398, \"rankvar\": 1603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1075, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1171, \"cat-2\": \"Density: 26\", \"cat_2_index\": 788, \"group\": [80.0, 59.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26791_BALBc-1_X01_Y02_1309_847\", \"ini\": 1750, \"clust\": 912, \"rank\": 114, \"rankvar\": 21, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1076, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1172, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1967, \"group\": [913.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26808_BALBc-1_X01_Y02_131_13\", \"ini\": 1749, \"clust\": 1290, \"rank\": 1825, \"rankvar\": 878, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1077, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1173, \"cat-2\": \"Density: 25\", \"cat_2_index\": 652, \"group\": [1293.0, 664.0, 190.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26858_BALBc-1_X01_Y02_131_710\", \"ini\": 1748, \"clust\": 2563, \"rank\": 2062, \"rankvar\": 2443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1078, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1174, \"cat-2\": \"Density: 25\", \"cat_2_index\": 653, \"group\": [2564.0, 1385.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26907_BALBc-1_X01_Y02_1310_424\", \"ini\": 1747, \"clust\": 633, \"rank\": 594, \"rankvar\": 913, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1079, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 831, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1657, \"group\": [634.0, 427.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27339_BALBc-1_X01_Y02_1316_272\", \"ini\": 1746, \"clust\": 2602, \"rank\": 1887, \"rankvar\": 2102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1080, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2540, \"cat-2\": \"Density: 16\", \"cat_2_index\": 59, \"group\": [2603.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27376_BALBc-1_X01_Y02_1316_760\", \"ini\": 1745, \"clust\": 1859, \"rank\": 1437, \"rankvar\": 1256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1081, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1175, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1862, \"group\": [1861.0, 1052.0, 317.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27712_BALBc-1_X01_Y02_1320_379\", \"ini\": 1744, \"clust\": 1132, \"rank\": 1179, \"rankvar\": 214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1082, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1649, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1395, \"group\": [1131.0, 533.0, 145.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27787_BALBc-1_X01_Y02_1321_46\", \"ini\": 1743, \"clust\": 2681, \"rank\": 2499, \"rankvar\": 1065, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1083, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2451, \"cat-2\": \"Density: 25\", \"cat_2_index\": 654, \"group\": [2684.0, 1447.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28104_BALBc-1_X01_Y02_1325_686\", \"ini\": 1742, \"clust\": 1705, \"rank\": 2497, \"rankvar\": 2481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1084, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1176, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1515, \"group\": [1711.0, 963.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28119_BALBc-1_X01_Y02_1325_869\", \"ini\": 1741, \"clust\": 789, \"rank\": 99, \"rankvar\": 1028, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1085, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1177, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1516, \"group\": [790.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28171_BALBc-1_X01_Y02_1326_556\", \"ini\": 1740, \"clust\": 191, \"rank\": 673, \"rankvar\": 883, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1086, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1178, \"cat-2\": \"Density: 21\", \"cat_2_index\": 205, \"group\": [192.0, 128.0, 43.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28403_BALBc-1_X01_Y02_1329_340\", \"ini\": 1739, \"clust\": 2609, \"rank\": 2032, \"rankvar\": 2294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1087, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2541, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1091, \"group\": [2607.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28439_BALBc-1_X01_Y02_1329_667\", \"ini\": 1738, \"clust\": 375, \"rank\": 1063, \"rankvar\": 2340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1088, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1179, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1517, \"group\": [390.0, 272.0, 92.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28793_BALBc-1_X01_Y02_1333_435\", \"ini\": 1737, \"clust\": 1876, \"rank\": 1294, \"rankvar\": 239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1089, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 832, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1863, \"group\": [1876.0, 1066.0, 323.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28907_BALBc-1_X01_Y02_1334_958\", \"ini\": 1736, \"clust\": 581, \"rank\": 567, \"rankvar\": 1231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1090, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1180, \"cat-2\": \"Density: 24\", \"cat_2_index\": 507, \"group\": [587.0, 400.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29029_BALBc-1_X01_Y02_1337_148\", \"ini\": 1735, \"clust\": 2540, \"rank\": 1683, \"rankvar\": 663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1091, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2542, \"cat-2\": \"Density: 17\", \"cat_2_index\": 77, \"group\": [2540.0, 1365.0, 405.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29253_BALBc-1_X01_Y02_1340_880\", \"ini\": 1734, \"clust\": 1789, \"rank\": 1448, \"rankvar\": 2217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1092, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1181, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1864, \"group\": [1788.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29328_BALBc-1_X01_Y02_135_526\", \"ini\": 1733, \"clust\": 192, \"rank\": 1057, \"rankvar\": 606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1093, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 101, \"cat-2\": \"Density: 26\", \"cat_2_index\": 789, \"group\": [193.0, 129.0, 44.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29539_BALBc-1_X01_Y02_138_561\", \"ini\": 1732, \"clust\": 156, \"rank\": 1267, \"rankvar\": 1375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1094, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 102, \"cat-2\": \"Density: 27\", \"cat_2_index\": 938, \"group\": [157.0, 99.0, 32.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29570_BALBc-1_X01_Y02_138_885\", \"ini\": 1731, \"clust\": 2416, \"rank\": 917, \"rankvar\": 817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1095, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2299, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1240, \"group\": [2418.0, 1286.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29751_BALBc-1_X01_Y02_140_575\", \"ini\": 1730, \"clust\": 2656, \"rank\": 2657, \"rankvar\": 2316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1096, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1182, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1092, \"group\": [2659.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29777_BALBc-1_X01_Y02_140_975\", \"ini\": 1729, \"clust\": 1867, \"rank\": 1596, \"rankvar\": 1135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1097, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2300, \"cat-2\": \"Density: 18\", \"cat_2_index\": 95, \"group\": [1870.0, 1060.0, 320.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29799_BALBc-1_X01_Y02_141_323\", \"ini\": 1728, \"clust\": 282, \"rank\": 1441, \"rankvar\": 224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1098, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 697, \"cat-2\": \"Density: 27\", \"cat_2_index\": 939, \"group\": [285.0, 207.0, 75.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29956_BALBc-1_X01_Y02_143_444\", \"ini\": 1727, \"clust\": 2155, \"rank\": 1064, \"rankvar\": 543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1099, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2452, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1518, \"group\": [2170.0, 1176.0, 346.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30085_BALBc-1_X01_Y02_145_273\", \"ini\": 1726, \"clust\": 1326, \"rank\": 1075, \"rankvar\": 1222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1100, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2239, \"cat-2\": \"Density: 25\", \"cat_2_index\": 655, \"group\": [1326.0, 693.0, 207.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30088_BALBc-1_X01_Y02_145_290\", \"ini\": 1725, \"clust\": 668, \"rank\": 213, \"rankvar\": 521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1101, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2453, \"cat-2\": \"Density: 24\", \"cat_2_index\": 508, \"group\": [669.0, 442.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30181_BALBc-1_X01_Y02_146_484\", \"ini\": 1724, \"clust\": 2771, \"rank\": 1881, \"rankvar\": 1529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1102, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1963, \"cat-2\": \"Density: 26\", \"cat_2_index\": 790, \"group\": [2775.0, 1502.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30212_BALBc-1_X01_Y02_146_853\", \"ini\": 1723, \"clust\": 746, \"rank\": 478, \"rankvar\": 1448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1103, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 103, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1658, \"group\": [745.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30226_BALBc-1_X01_Y02_147_121\", \"ini\": 1722, \"clust\": 510, \"rank\": 713, \"rankvar\": 391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1104, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1183, \"cat-2\": \"Density: 22\", \"cat_2_index\": 287, \"group\": [511.0, 350.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30323_BALBc-1_X01_Y02_148_511\", \"ini\": 1721, \"clust\": 2739, \"rank\": 2114, \"rankvar\": 2021, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1105, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 104, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1241, \"group\": [2740.0, 1475.0, 435.0, 114.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30392_BALBc-1_X01_Y02_149_423\", \"ini\": 1720, \"clust\": 18, \"rank\": 1123, \"rankvar\": 1583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1106, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1650, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1396, \"group\": [19.0, 18.0, 11.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30672_BALBc-1_X01_Y02_152_19\", \"ini\": 1719, \"clust\": 1607, \"rank\": 1166, \"rankvar\": 1868, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1107, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1184, \"cat-2\": \"Density: 27\", \"cat_2_index\": 940, \"group\": [1606.0, 887.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31029_BALBc-1_X01_Y02_156_815\", \"ini\": 1718, \"clust\": 1711, \"rank\": 2613, \"rankvar\": 2527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1108, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2301, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1519, \"group\": [1712.0, 964.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31048_BALBc-1_X01_Y02_156_993\", \"ini\": 1717, \"clust\": 1113, \"rank\": 703, \"rankvar\": 1243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1109, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2543, \"cat-2\": \"Density: 13\", \"cat_2_index\": 17, \"group\": [1114.0, 525.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31155_BALBc-1_X01_Y02_158_405\", \"ini\": 1716, \"clust\": 1708, \"rank\": 2808, \"rankvar\": 2822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1110, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 698, \"cat-2\": \"Density: 27\", \"cat_2_index\": 941, \"group\": [1707.0, 961.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31283_BALBc-1_X01_Y02_16_366\", \"ini\": 1715, \"clust\": 1892, \"rank\": 2415, \"rankvar\": 2405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1111, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1185, \"cat-2\": \"Density: 13\", \"cat_2_index\": 18, \"group\": [1892.0, 1082.0, 330.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31361_BALBc-1_X01_Y02_160_197\", \"ini\": 1714, \"clust\": 957, \"rank\": 499, \"rankvar\": 945, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1112, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1186, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1093, \"group\": [959.0, 490.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31477_BALBc-1_X01_Y02_161_787\", \"ini\": 1713, \"clust\": 980, \"rank\": 804, \"rankvar\": 861, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1113, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1187, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1242, \"group\": [980.0, 503.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31533_BALBc-1_X01_Y02_162_623\", \"ini\": 1712, \"clust\": 2486, \"rank\": 2136, \"rankvar\": 1910, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1114, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1188, \"cat-2\": \"Density: 24\", \"cat_2_index\": 509, \"group\": [2487.0, 1334.0, 398.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31548_BALBc-1_X01_Y02_162_836\", \"ini\": 1711, \"clust\": 1210, \"rank\": 1216, \"rankvar\": 1110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1115, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 105, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1520, \"group\": [1212.0, 605.0, 171.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31566_BALBc-1_X01_Y02_163_150\", \"ini\": 1710, \"clust\": 564, \"rank\": 762, \"rankvar\": 932, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1116, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1189, \"cat-2\": \"Density: 27\", \"cat_2_index\": 942, \"group\": [565.0, 388.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31622_BALBc-1_X01_Y02_163_893\", \"ini\": 1709, \"clust\": 1791, \"rank\": 2057, \"rankvar\": 1752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1117, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2302, \"cat-2\": \"Density: 27\", \"cat_2_index\": 943, \"group\": [1794.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31687_BALBc-1_X01_Y02_164_924\", \"ini\": 1708, \"clust\": 349, \"rank\": 1152, \"rankvar\": 1085, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1118, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2303, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1243, \"group\": [350.0, 245.0, 85.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31771_BALBc-1_X01_Y02_166_248\", \"ini\": 1707, \"clust\": 1083, \"rank\": 216, \"rankvar\": 824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1119, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1190, \"cat-2\": \"Density: 26\", \"cat_2_index\": 791, \"group\": [1083.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31778_BALBc-1_X01_Y02_166_382\", \"ini\": 1706, \"clust\": 815, \"rank\": 46, \"rankvar\": 358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1120, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 699, \"cat-2\": \"Density: 24\", \"cat_2_index\": 510, \"group\": [813.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31826_BALBc-1_X01_Y02_166_996\", \"ini\": 1705, \"clust\": 2273, \"rank\": 1921, \"rankvar\": 325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1121, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 106, \"cat-2\": \"Density: 14\", \"cat_2_index\": 30, \"group\": [2275.0, 1240.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31882_BALBc-1_X01_Y02_167_871\", \"ini\": 1704, \"clust\": 1071, \"rank\": 421, \"rankvar\": 757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1122, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 107, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1521, \"group\": [1070.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32028_BALBc-1_X01_Y02_169_976\", \"ini\": 1703, \"clust\": 388, \"rank\": 1116, \"rankvar\": 428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1123, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2304, \"cat-2\": \"Density: 21\", \"cat_2_index\": 206, \"group\": [388.0, 270.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32605_BALBc-1_X01_Y02_177_12\", \"ini\": 1702, \"clust\": 1521, \"rank\": 2768, \"rankvar\": 2779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1124, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1191, \"cat-2\": \"Density: 26\", \"cat_2_index\": 792, \"group\": [1519.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32781_BALBc-1_X01_Y02_179_504\", \"ini\": 1701, \"clust\": 2773, \"rank\": 2468, \"rankvar\": 2743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1125, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1964, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1397, \"group\": [2772.0, 1502.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32994_BALBc-1_X01_Y02_181_536\", \"ini\": 1700, \"clust\": 2654, \"rank\": 2411, \"rankvar\": 1966, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1126, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 108, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1659, \"group\": [2655.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33083_BALBc-1_X01_Y02_182_591\", \"ini\": 1699, \"clust\": 2623, \"rank\": 2141, \"rankvar\": 2628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1127, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2240, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1244, \"group\": [2623.0, 1417.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33098_BALBc-1_X01_Y02_182_806\", \"ini\": 1698, \"clust\": 1212, \"rank\": 514, \"rankvar\": 1576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1128, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1192, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1865, \"group\": [1211.0, 604.0, 171.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33178_BALBc-1_X01_Y02_183_939\", \"ini\": 1697, \"clust\": 1792, \"rank\": 2289, \"rankvar\": 2744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1129, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 109, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1094, \"group\": [1793.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33258_BALBc-1_X01_Y02_184_896\", \"ini\": 1696, \"clust\": 2392, \"rank\": 2098, \"rankvar\": 1108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1130, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 110, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1866, \"group\": [2391.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33265_BALBc-1_X01_Y02_184_97\", \"ini\": 1695, \"clust\": 1689, \"rank\": 1846, \"rankvar\": 1059, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1131, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1651, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1245, \"group\": [1689.0, 946.0, 282.0, 81.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33280_BALBc-1_X01_Y02_185_324\", \"ini\": 1694, \"clust\": 1253, \"rank\": 1198, \"rankvar\": 2046, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1132, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1193, \"cat-2\": \"Density: 26\", \"cat_2_index\": 793, \"group\": [1252.0, 633.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33754_BALBc-1_X01_Y02_190_870\", \"ini\": 1693, \"clust\": 1972, \"rank\": 2428, \"rankvar\": 1486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1133, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 111, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2070, \"group\": [1976.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33990_BALBc-1_X01_Y02_193_959\", \"ini\": 1692, \"clust\": 2422, \"rank\": 983, \"rankvar\": 292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1134, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 112, \"cat-2\": \"Density: 27\", \"cat_2_index\": 944, \"group\": [2423.0, 1290.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34020_BALBc-1_X01_Y02_194_351\", \"ini\": 1691, \"clust\": 1393, \"rank\": 1449, \"rankvar\": 1053, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1135, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 700, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1095, \"group\": [1395.0, 746.0, 218.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34038_BALBc-1_X01_Y02_194_572\", \"ini\": 1690, \"clust\": 2723, \"rank\": 2011, \"rankvar\": 1623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1136, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2544, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1522, \"group\": [2723.0, 1462.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34165_BALBc-1_X01_Y02_196_520\", \"ini\": 1689, \"clust\": 2500, \"rank\": 2308, \"rankvar\": 1885, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1137, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 895, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1867, \"group\": [2499.0, 1344.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34589_BALBc-1_X01_Y02_201_481\", \"ini\": 1688, \"clust\": 1340, \"rank\": 1046, \"rankvar\": 1478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1138, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1965, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1246, \"group\": [1341.0, 705.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34649_BALBc-1_X01_Y02_202_257\", \"ini\": 1687, \"clust\": 1274, \"rank\": 1181, \"rankvar\": 2453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1139, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1966, \"cat-2\": \"Density: 27\", \"cat_2_index\": 945, \"group\": [1274.0, 652.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34718_BALBc-1_X01_Y02_203_164\", \"ini\": 1686, \"clust\": 318, \"rank\": 2379, \"rankvar\": 2518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1140, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1194, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1096, \"group\": [321.0, 224.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34915_BALBc-1_X01_Y02_205_7\", \"ini\": 1685, \"clust\": 1234, \"rank\": 1188, \"rankvar\": 2281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1141, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1195, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1097, \"group\": [1233.0, 621.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35085_BALBc-1_X01_Y02_207_892\", \"ini\": 1684, \"clust\": 888, \"rank\": 91, \"rankvar\": 232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1142, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 113, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1765, \"group\": [892.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35133_BALBc-1_X01_Y02_208_606\", \"ini\": 1683, \"clust\": 1120, \"rank\": 544, \"rankvar\": 673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1143, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2241, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1098, \"group\": [1121.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35140_BALBc-1_X01_Y02_208_76\", \"ini\": 1682, \"clust\": 539, \"rank\": 278, \"rankvar\": 775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1144, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1652, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1247, \"group\": [540.0, 368.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35161_BALBc-1_X01_Y02_208_997\", \"ini\": 1681, \"clust\": 1912, \"rank\": 2034, \"rankvar\": 790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1145, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 114, \"cat-2\": \"Density: 20\", \"cat_2_index\": 155, \"group\": [1915.0, 1099.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35307_BALBc-1_X01_Y02_21_950\", \"ini\": 1680, \"clust\": 784, \"rank\": 223, \"rankvar\": 1596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1146, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1196, \"cat-2\": \"Density: 11\", \"cat_2_index\": 6, \"group\": [787.0, 476.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35371_BALBc-1_X01_Y02_210_919\", \"ini\": 1679, \"clust\": 1783, \"rank\": 1990, \"rankvar\": 1622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1147, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 115, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1968, \"group\": [1783.0, 1012.0, 307.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35707_BALBc-1_X01_Y02_215_359\", \"ini\": 1678, \"clust\": 360, \"rank\": 569, \"rankvar\": 1969, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1148, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 701, \"cat-2\": \"Density: 25\", \"cat_2_index\": 656, \"group\": [361.0, 251.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35849_BALBc-1_X01_Y02_217_422\", \"ini\": 1677, \"clust\": 772, \"rank\": 110, \"rankvar\": 514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1149, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 702, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1099, \"group\": [776.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35964_BALBc-1_X01_Y02_218_953\", \"ini\": 1676, \"clust\": 920, \"rank\": 224, \"rankvar\": 264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1150, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 116, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1868, \"group\": [926.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36019_BALBc-1_X01_Y02_219_856\", \"ini\": 1675, \"clust\": 552, \"rank\": 263, \"rankvar\": 909, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1151, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2305, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2437, \"group\": [550.0, 376.0, 124.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36350_BALBc-1_X01_Y02_223_52\", \"ini\": 1674, \"clust\": 530, \"rank\": 1069, \"rankvar\": 1124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1152, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1197, \"cat-2\": \"Density: 26\", \"cat_2_index\": 794, \"group\": [531.0, 363.0, 122.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36560_BALBc-1_X01_Y02_226_384\", \"ini\": 1673, \"clust\": 246, \"rank\": 1440, \"rankvar\": 2636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1153, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 703, \"cat-2\": \"Density: 26\", \"cat_2_index\": 795, \"group\": [247.0, 171.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36605_BALBc-1_X01_Y02_226_872\", \"ini\": 1672, \"clust\": 2385, \"rank\": 2477, \"rankvar\": 1174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1154, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2306, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2234, \"group\": [2387.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37140_BALBc-1_X01_Y02_233_273\", \"ini\": 1671, \"clust\": 1601, \"rank\": 974, \"rankvar\": 2311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1155, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1198, \"cat-2\": \"Density: 26\", \"cat_2_index\": 796, \"group\": [1601.0, 883.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37170_BALBc-1_X01_Y02_233_605\", \"ini\": 1670, \"clust\": 1900, \"rank\": 2608, \"rankvar\": 2549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1156, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1199, \"cat-2\": \"Density: 27\", \"cat_2_index\": 946, \"group\": [1899.0, 1087.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37201_BALBc-1_X01_Y02_234_185\", \"ini\": 1669, \"clust\": 94, \"rank\": 694, \"rankvar\": 2419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1157, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1200, \"cat-2\": \"Density: 24\", \"cat_2_index\": 511, \"group\": [95.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37456_BALBc-1_X01_Y02_237_70\", \"ini\": 1668, \"clust\": 1684, \"rank\": 2029, \"rankvar\": 2622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1158, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 117, \"cat-2\": \"Density: 25\", \"cat_2_index\": 657, \"group\": [1685.0, 942.0, 279.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37475_BALBc-1_X01_Y02_237_937\", \"ini\": 1667, \"clust\": 2440, \"rank\": 1174, \"rankvar\": 439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1159, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 118, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2153, \"group\": [2441.0, 1298.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37621_BALBc-1_X01_Y02_239_971\", \"ini\": 1666, \"clust\": 1143, \"rank\": 1252, \"rankvar\": 1121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1160, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 119, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1523, \"group\": [1144.0, 544.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37749_BALBc-1_X01_Y02_240_84\", \"ini\": 1665, \"clust\": 1377, \"rank\": 1643, \"rankvar\": 2092, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1161, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1653, \"cat-2\": \"Density: 23\", \"cat_2_index\": 399, \"group\": [1378.0, 732.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37862_BALBc-1_X01_Y02_242_444\", \"ini\": 1664, \"clust\": 2554, \"rank\": 2429, \"rankvar\": 2258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1162, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1654, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1660, \"group\": [2554.0, 1377.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37892_BALBc-1_X01_Y02_242_898\", \"ini\": 1663, \"clust\": 2157, \"rank\": 1855, \"rankvar\": 1009, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1163, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 120, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1969, \"group\": [2155.0, 1170.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37950_BALBc-1_X01_Y02_243_786\", \"ini\": 1662, \"clust\": 1915, \"rank\": 2175, \"rankvar\": 1773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1164, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 833, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2071, \"group\": [1916.0, 1100.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38019_BALBc-1_X01_Y02_244_504\", \"ini\": 1661, \"clust\": 1737, \"rank\": 2548, \"rankvar\": 2323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1165, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 896, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1398, \"group\": [1737.0, 980.0, 293.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38163_BALBc-1_X01_Y02_246_349\", \"ini\": 1660, \"clust\": 242, \"rank\": 1382, \"rankvar\": 2212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1166, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1201, \"cat-2\": \"Density: 23\", \"cat_2_index\": 400, \"group\": [245.0, 170.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38833_BALBc-1_X01_Y02_254_406\", \"ini\": 1659, \"clust\": 2649, \"rank\": 2426, \"rankvar\": 1785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1167, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 121, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1766, \"group\": [2654.0, 1441.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38864_BALBc-1_X01_Y02_254_818\", \"ini\": 1658, \"clust\": 2398, \"rank\": 2612, \"rankvar\": 1460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1168, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1202, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1970, \"group\": [2401.0, 1271.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38921_BALBc-1_X01_Y02_255_579\", \"ini\": 1657, \"clust\": 750, \"rank\": 128, \"rankvar\": 497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1169, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2545, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1399, \"group\": [751.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39097_BALBc-1_X01_Y02_257_981\", \"ini\": 1656, \"clust\": 2158, \"rank\": 1746, \"rankvar\": 789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1170, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 122, \"cat-2\": \"Density: 27\", \"cat_2_index\": 947, \"group\": [2156.0, 1170.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39159_BALBc-1_X01_Y02_258_932\", \"ini\": 1655, \"clust\": 2035, \"rank\": 2598, \"rankvar\": 1418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1171, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 123, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2309, \"group\": [2037.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39206_BALBc-1_X01_Y02_259_497\", \"ini\": 1654, \"clust\": 1870, \"rank\": 1660, \"rankvar\": 2300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1172, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 897, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1971, \"group\": [1871.0, 1061.0, 321.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39295_BALBc-1_X01_Y02_26_739\", \"ini\": 1653, \"clust\": 1627, \"rank\": 2735, \"rankvar\": 2786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1173, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1747, \"cat-2\": \"Density: 17\", \"cat_2_index\": 78, \"group\": [1627.0, 894.0, 259.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39359_BALBc-1_X01_Y02_260_604\", \"ini\": 1652, \"clust\": 1989, \"rank\": 2120, \"rankvar\": 1848, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1174, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1203, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1400, \"group\": [1990.0, 1125.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39370_BALBc-1_X01_Y02_260_753\", \"ini\": 1651, \"clust\": 1701, \"rank\": 2569, \"rankvar\": 2595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1175, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 834, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1972, \"group\": [1703.0, 958.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39467_BALBc-1_X01_Y02_261_915\", \"ini\": 1650, \"clust\": 731, \"rank\": 282, \"rankvar\": 108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1176, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 124, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2310, \"group\": [730.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39512_BALBc-1_X01_Y02_262_462\", \"ini\": 1649, \"clust\": 2782, \"rank\": 2061, \"rankvar\": 1837, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1177, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1967, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1869, \"group\": [2782.0, 1506.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39541_BALBc-1_X01_Y02_262_944\", \"ini\": 1648, \"clust\": 2417, \"rank\": 1148, \"rankvar\": 914, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1178, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 125, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2154, \"group\": [2416.0, 1285.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39556_BALBc-1_X01_Y02_263_219\", \"ini\": 1647, \"clust\": 1805, \"rank\": 1563, \"rankvar\": 2723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1179, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1204, \"cat-2\": \"Density: 24\", \"cat_2_index\": 512, \"group\": [1808.0, 1022.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39656_BALBc-1_X01_Y02_264_54\", \"ini\": 1646, \"clust\": 1635, \"rank\": 2611, \"rankvar\": 2710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1180, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2307, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1248, \"group\": [1634.0, 900.0, 261.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39742_BALBc-1_X01_Y02_265_717\", \"ini\": 1645, \"clust\": 2021, \"rank\": 2539, \"rankvar\": 2118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1181, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 835, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1524, \"group\": [2026.0, 1141.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39744_BALBc-1_X01_Y02_265_773\", \"ini\": 1644, \"clust\": 493, \"rank\": 789, \"rankvar\": 616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1182, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 836, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2072, \"group\": [493.0, 337.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39786_BALBc-1_X01_Y02_266_282\", \"ini\": 1643, \"clust\": 1181, \"rank\": 1195, \"rankvar\": 755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1205, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1100, \"group\": [1182.0, 575.0, 160.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39838_BALBc-1_X01_Y02_266_848\", \"ini\": 1642, \"clust\": 137, \"rank\": 657, \"rankvar\": 747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1184, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2308, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2311, \"group\": [136.0, 84.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39873_BALBc-1_X01_Y02_267_383\", \"ini\": 1641, \"clust\": 937, \"rank\": 245, \"rankvar\": 246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1185, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 898, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1101, \"group\": [940.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39968_BALBc-1_X01_Y02_268_561\", \"ini\": 1640, \"clust\": 2703, \"rank\": 2535, \"rankvar\": 2464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1186, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2546, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1870, \"group\": [2704.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40006_BALBc-1_X01_Y02_268_984\", \"ini\": 1639, \"clust\": 2318, \"rank\": 1982, \"rankvar\": 1641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1187, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 126, \"cat-2\": \"Density: 27\", \"cat_2_index\": 948, \"group\": [2314.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40052_BALBc-1_X01_Y02_269_644\", \"ini\": 1638, \"clust\": 2638, \"rank\": 2518, \"rankvar\": 2031, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1188, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1206, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1525, \"group\": [2640.0, 1432.0, 422.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40139_BALBc-1_X01_Y02_27_826\", \"ini\": 1637, \"clust\": 598, \"rank\": 401, \"rankvar\": 1305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1189, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1748, \"cat-2\": \"Density: 20\", \"cat_2_index\": 156, \"group\": [599.0, 410.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40204_BALBc-1_X01_Y02_270_792\", \"ini\": 1636, \"clust\": 2049, \"rank\": 2746, \"rankvar\": 1938, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1190, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 899, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2073, \"group\": [2053.0, 1149.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40333_BALBc-1_X01_Y02_272_580\", \"ini\": 1635, \"clust\": 2276, \"rank\": 1793, \"rankvar\": 1427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1191, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 127, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1249, \"group\": [2276.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40421_BALBc-1_X01_Y02_273_871\", \"ini\": 1634, \"clust\": 424, \"rank\": 824, \"rankvar\": 611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1192, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 128, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2438, \"group\": [425.0, 301.0, 104.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40533_BALBc-1_X01_Y02_275_478\", \"ini\": 1633, \"clust\": 2619, \"rank\": 2146, \"rankvar\": 1939, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1193, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 129, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1661, \"group\": [2622.0, 1416.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40559_BALBc-1_X01_Y02_275_815\", \"ini\": 1632, \"clust\": 1051, \"rank\": 239, \"rankvar\": 1169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1194, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 130, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2074, \"group\": [1049.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40761_BALBc-1_X01_Y02_278_453\", \"ini\": 1631, \"clust\": 2718, \"rank\": 2365, \"rankvar\": 2505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1195, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 131, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1526, \"group\": [2720.0, 1460.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41007_BALBc-1_X01_Y02_280_883\", \"ini\": 1630, \"clust\": 2033, \"rank\": 2544, \"rankvar\": 1593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1196, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 132, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2439, \"group\": [2031.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41013_BALBc-1_X01_Y02_280_967\", \"ini\": 1629, \"clust\": 886, \"rank\": 11, \"rankvar\": 208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1197, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 133, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1527, \"group\": [886.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41049_BALBc-1_X01_Y02_281_533\", \"ini\": 1628, \"clust\": 2587, \"rank\": 1280, \"rankvar\": 1765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1198, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 900, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1973, \"group\": [2588.0, 1400.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41198_BALBc-1_X01_Y02_283_337\", \"ini\": 1627, \"clust\": 112, \"rank\": 929, \"rankvar\": 406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1199, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1207, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1102, \"group\": [114.0, 70.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41290_BALBc-1_X01_Y02_284_545\", \"ini\": 1626, \"clust\": 2391, \"rank\": 2200, \"rankvar\": 960, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1200, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 134, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1974, \"group\": [2393.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41467_BALBc-1_X01_Y02_286_916\", \"ini\": 1625, \"clust\": 2310, \"rank\": 2125, \"rankvar\": 1489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1201, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 135, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2372, \"group\": [2309.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41763_BALBc-1_X01_Y02_29_936\", \"ini\": 1624, \"clust\": 1435, \"rank\": 2721, \"rankvar\": 2387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1202, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1749, \"cat-2\": \"Density: 12\", \"cat_2_index\": 7, \"group\": [1435.0, 781.0, 234.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41809_BALBc-1_X01_Y02_290_713\", \"ini\": 1623, \"clust\": 2442, \"rank\": 1295, \"rankvar\": 1346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1203, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 837, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1975, \"group\": [2442.0, 1299.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41901_BALBc-1_X01_Y02_291_852\", \"ini\": 1622, \"clust\": 2342, \"rank\": 2133, \"rankvar\": 1044, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1204, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 136, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2155, \"group\": [2339.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41931_BALBc-1_X01_Y02_292_367\", \"ini\": 1621, \"clust\": 1679, \"rank\": 1831, \"rankvar\": 1113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1205, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 901, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1401, \"group\": [1679.0, 936.0, 276.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41979_BALBc-1_X01_Y02_292_991\", \"ini\": 1620, \"clust\": 2302, \"rank\": 1785, \"rankvar\": 1109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1206, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 137, \"cat-2\": \"Density: 25\", \"cat_2_index\": 658, \"group\": [2299.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42051_BALBc-1_X01_Y02_293_825\", \"ini\": 1619, \"clust\": 2319, \"rank\": 2129, \"rankvar\": 1642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1207, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 138, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2312, \"group\": [2315.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42197_BALBc-1_X01_Y02_296_1001\", \"ini\": 1618, \"clust\": 437, \"rank\": 465, \"rankvar\": 615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1208, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 139, \"cat-2\": \"Density: 24\", \"cat_2_index\": 513, \"group\": [438.0, 309.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42211_BALBc-1_X01_Y02_296_251\", \"ini\": 1617, \"clust\": 1311, \"rank\": 798, \"rankvar\": 2728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1209, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1208, \"cat-2\": \"Density: 26\", \"cat_2_index\": 797, \"group\": [1309.0, 679.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42305_BALBc-1_X01_Y02_297_639\", \"ini\": 1616, \"clust\": 1733, \"rank\": 1799, \"rankvar\": 2293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1210, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1209, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2075, \"group\": [1734.0, 977.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42319_BALBc-1_X01_Y02_297_804\", \"ini\": 1615, \"clust\": 174, \"rank\": 424, \"rankvar\": 1409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1211, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 902, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2373, \"group\": [174.0, 112.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42398_BALBc-1_X01_Y02_298_87\", \"ini\": 1614, \"clust\": 2542, \"rank\": 1601, \"rankvar\": 1730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1212, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1210, \"cat-2\": \"Density: 24\", \"cat_2_index\": 514, \"group\": [2543.0, 1368.0, 407.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42612_BALBc-1_X01_Y02_300_601\", \"ini\": 1613, \"clust\": 2259, \"rank\": 1581, \"rankvar\": 707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1213, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 140, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2076, \"group\": [2258.0, 1234.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42732_BALBc-1_X01_Y02_301_949\", \"ini\": 1612, \"clust\": 2329, \"rank\": 2004, \"rankvar\": 1037, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1214, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 141, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1976, \"group\": [2326.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43120_BALBc-1_X01_Y02_307_419\", \"ini\": 1611, \"clust\": 2581, \"rank\": 1426, \"rankvar\": 2040, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1215, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 903, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1662, \"group\": [2583.0, 1396.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43132_BALBc-1_X01_Y02_307_574\", \"ini\": 1610, \"clust\": 2796, \"rank\": 1324, \"rankvar\": 1284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1216, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 142, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1767, \"group\": [2796.0, 1517.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43153_BALBc-1_X01_Y02_307_973\", \"ini\": 1609, \"clust\": 447, \"rank\": 352, \"rankvar\": 1080, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1217, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1211, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1528, \"group\": [449.0, 313.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43190_BALBc-1_X01_Y02_308_551\", \"ini\": 1608, \"clust\": 126, \"rank\": 1085, \"rankvar\": 2167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1218, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 143, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1977, \"group\": [126.0, 80.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43335_BALBc-1_X01_Y02_31_697\", \"ini\": 1607, \"clust\": 1172, \"rank\": 1232, \"rankvar\": 2534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1219, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2547, \"cat-2\": \"Density: 14\", \"cat_2_index\": 31, \"group\": [1176.0, 569.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43610_BALBc-1_X01_Y02_313_207\", \"ini\": 1606, \"clust\": 1385, \"rank\": 1893, \"rankvar\": 1926, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1220, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1212, \"cat-2\": \"Density: 26\", \"cat_2_index\": 798, \"group\": [1388.0, 739.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43667_BALBc-1_X01_Y02_313_928\", \"ini\": 1605, \"clust\": 1864, \"rank\": 1958, \"rankvar\": 2609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1221, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 144, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2440, \"group\": [1867.0, 1058.0, 319.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43786_BALBc-1_X01_Y02_315_720\", \"ini\": 1604, \"clust\": 862, \"rank\": 148, \"rankvar\": 472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1222, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1213, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2374, \"group\": [863.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43787_BALBc-1_X01_Y02_315_732\", \"ini\": 1603, \"clust\": 2315, \"rank\": 2367, \"rankvar\": 1790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1223, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1994, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2441, \"group\": [2318.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43806_BALBc-1_X01_Y02_315_911\", \"ini\": 1602, \"clust\": 1954, \"rank\": 2346, \"rankvar\": 692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1224, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 145, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2657, \"group\": [1953.0, 1115.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43842_BALBc-1_X01_Y02_316_523\", \"ini\": 1601, \"clust\": 2698, \"rank\": 2704, \"rankvar\": 2253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1225, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 146, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2156, \"group\": [2702.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43849_BALBc-1_X01_Y02_316_620\", \"ini\": 1600, \"clust\": 2707, \"rank\": 2456, \"rankvar\": 2204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1226, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 147, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2157, \"group\": [2707.0, 1454.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43973_BALBc-1_X01_Y02_317_998\", \"ini\": 1599, \"clust\": 2373, \"rank\": 2545, \"rankvar\": 1657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1227, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 148, \"cat-2\": \"Density: 24\", \"cat_2_index\": 515, \"group\": [2371.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44048_BALBc-1_X01_Y02_318_852\", \"ini\": 1598, \"clust\": 147, \"rank\": 1228, \"rankvar\": 999, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1228, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 149, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2550, \"group\": [148.0, 92.0, 30.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44158_BALBc-1_X01_Y02_32_575\", \"ini\": 1597, \"clust\": 1361, \"rank\": 2455, \"rankvar\": 2200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1229, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 838, \"cat-2\": \"Density: 17\", \"cat_2_index\": 79, \"group\": [1361.0, 722.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44319_BALBc-1_X01_Y02_321_675\", \"ini\": 1596, \"clust\": 2171, \"rank\": 1647, \"rankvar\": 1268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1230, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1214, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1978, \"group\": [2173.0, 1179.0, 347.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44330_BALBc-1_X01_Y02_321_819\", \"ini\": 1595, \"clust\": 1920, \"rank\": 2467, \"rankvar\": 1946, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1231, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 904, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2442, \"group\": [1920.0, 1104.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44535_BALBc-1_X01_Y02_324_399\", \"ini\": 1594, \"clust\": 1150, \"rank\": 684, \"rankvar\": 563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1232, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 905, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1402, \"group\": [1149.0, 549.0, 151.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44544_BALBc-1_X01_Y02_324_471\", \"ini\": 1593, \"clust\": 2700, \"rank\": 2715, \"rankvar\": 2642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1233, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 150, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2158, \"group\": [2700.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44837_BALBc-1_X01_Y02_328_284\", \"ini\": 1592, \"clust\": 1263, \"rank\": 1285, \"rankvar\": 1182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1234, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 906, \"cat-2\": \"Density: 26\", \"cat_2_index\": 799, \"group\": [1263.0, 642.0, 185.0, 52.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44938_BALBc-1_X01_Y02_329_485\", \"ini\": 1591, \"clust\": 982, \"rank\": 397, \"rankvar\": 643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1235, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 151, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2235, \"group\": [981.0, 504.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44940_BALBc-1_X01_Y02_329_520\", \"ini\": 1590, \"clust\": 2514, \"rank\": 1291, \"rankvar\": 1866, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1236, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 152, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2236, \"group\": [2517.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45002_BALBc-1_X01_Y02_33_176\", \"ini\": 1589, \"clust\": 956, \"rank\": 653, \"rankvar\": 1435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1237, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1968, \"cat-2\": \"Density: 19\", \"cat_2_index\": 120, \"group\": [960.0, 491.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45143_BALBc-1_X01_Y02_331_141\", \"ini\": 1588, \"clust\": 1643, \"rank\": 2035, \"rankvar\": 2734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1238, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2454, \"cat-2\": \"Density: 24\", \"cat_2_index\": 516, \"group\": [1646.0, 906.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45181_BALBc-1_X01_Y02_331_563\", \"ini\": 1587, \"clust\": 1946, \"rank\": 2066, \"rankvar\": 1472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1239, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 153, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2077, \"group\": [1947.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45205_BALBc-1_X01_Y02_331_950\", \"ini\": 1586, \"clust\": 432, \"rank\": 1091, \"rankvar\": 1690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1240, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1215, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2237, \"group\": [433.0, 307.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45467_BALBc-1_X01_Y02_335_449\", \"ini\": 1585, \"clust\": 2521, \"rank\": 1180, \"rankvar\": 1574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1241, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 154, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1768, \"group\": [2521.0, 1353.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45505_BALBc-1_X01_Y02_335_812\", \"ini\": 1584, \"clust\": 2153, \"rank\": 1112, \"rankvar\": 412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1242, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 907, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2604, \"group\": [2151.0, 1167.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45513_BALBc-1_X01_Y02_335_880\", \"ini\": 1583, \"clust\": 720, \"rank\": 517, \"rankvar\": 49, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1243, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 155, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2703, \"group\": [720.0, 461.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45549_BALBc-1_X01_Y02_336_399\", \"ini\": 1582, \"clust\": 193, \"rank\": 792, \"rankvar\": 104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1244, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 156, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1403, \"group\": [194.0, 130.0, 44.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45699_BALBc-1_X01_Y02_338_596\", \"ini\": 1581, \"clust\": 145, \"rank\": 1457, \"rankvar\": 1577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1245, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 157, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2375, \"group\": [146.0, 91.0, 30.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45736_BALBc-1_X01_Y02_338_994\", \"ini\": 1580, \"clust\": 2210, \"rank\": 1542, \"rankvar\": 551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1246, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1216, \"cat-2\": \"Density: 26\", \"cat_2_index\": 800, \"group\": [2210.0, 1191.0, 350.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45772_BALBc-1_X01_Y02_339_514\", \"ini\": 1579, \"clust\": 5, \"rank\": 1499, \"rankvar\": 1315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1247, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 158, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2313, \"group\": [8.0, 7.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45887_BALBc-1_X01_Y02_340_11\", \"ini\": 1578, \"clust\": 693, \"rank\": 363, \"rankvar\": 525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1248, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2309, \"cat-2\": \"Density: 27\", \"cat_2_index\": 949, \"group\": [695.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46022_BALBc-1_X01_Y02_341_760\", \"ini\": 1577, \"clust\": 1683, \"rank\": 1933, \"rankvar\": 1295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1249, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 908, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2740, \"group\": [1686.0, 943.0, 279.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46029_BALBc-1_X01_Y02_341_855\", \"ini\": 1576, \"clust\": 2058, \"rank\": 2667, \"rankvar\": 1742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1250, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 159, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2512, \"group\": [2058.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46196_BALBc-1_X01_Y02_344_268\", \"ini\": 1575, \"clust\": 1309, \"rank\": 1004, \"rankvar\": 1915, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1251, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1217, \"cat-2\": \"Density: 25\", \"cat_2_index\": 659, \"group\": [1312.0, 680.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46287_BALBc-1_X01_Y02_345_339\", \"ini\": 1574, \"clust\": 98, \"rank\": 723, \"rankvar\": 1171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1252, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 909, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1250, \"group\": [103.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46316_BALBc-1_X01_Y02_345_683\", \"ini\": 1573, \"clust\": 2004, \"rank\": 2015, \"rankvar\": 1350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1253, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1218, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2238, \"group\": [2003.0, 1135.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46325_BALBc-1_X01_Y02_345_783\", \"ini\": 1572, \"clust\": 2529, \"rank\": 1477, \"rankvar\": 674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1254, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 910, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2551, \"group\": [2534.0, 1360.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46464_BALBc-1_X01_Y02_347_433\", \"ini\": 1571, \"clust\": 1846, \"rank\": 1797, \"rankvar\": 1371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1255, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 160, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2078, \"group\": [1847.0, 1040.0, 313.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46599_BALBc-1_X01_Y02_349_408\", \"ini\": 1570, \"clust\": 538, \"rank\": 587, \"rankvar\": 1036, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1256, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2548, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1529, \"group\": [541.0, 369.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46604_BALBc-1_X01_Y02_349_467\", \"ini\": 1569, \"clust\": 2065, \"rank\": 2790, \"rankvar\": 2274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1257, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 161, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2159, \"group\": [2066.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46653_BALBc-1_X01_Y02_349_905\", \"ini\": 1568, \"clust\": 1997, \"rank\": 2322, \"rankvar\": 1960, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1258, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1563, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2741, \"group\": [2000.0, 1132.0, 339.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46659_BALBc-1_X01_Y02_349_959\", \"ini\": 1567, \"clust\": 2243, \"rank\": 1701, \"rankvar\": 1086, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1259, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1219, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1979, \"group\": [2247.0, 1224.0, 368.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46698_BALBc-1_X01_Y02_35_602\", \"ini\": 1566, \"clust\": 2511, \"rank\": 1420, \"rankvar\": 1716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1260, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 162, \"cat-2\": \"Density: 18\", \"cat_2_index\": 96, \"group\": [2511.0, 1350.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46751_BALBc-1_X01_Y02_350_379\", \"ini\": 1565, \"clust\": 2679, \"rank\": 2486, \"rankvar\": 1958, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1261, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 911, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1251, \"group\": [2678.0, 1445.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46910_BALBc-1_X01_Y02_352_503\", \"ini\": 1564, \"clust\": 541, \"rank\": 89, \"rankvar\": 921, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1262, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 163, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2443, \"group\": [539.0, 368.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46947_BALBc-1_X01_Y02_352_937\", \"ini\": 1563, \"clust\": 417, \"rank\": 1258, \"rankvar\": 426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1263, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 164, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2376, \"group\": [417.0, 294.0, 102.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47001_BALBc-1_X01_Y02_353_565\", \"ini\": 1562, \"clust\": 2034, \"rank\": 2266, \"rankvar\": 1291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1264, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 165, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2444, \"group\": [2032.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47004_BALBc-1_X01_Y02_353_639\", \"ini\": 1561, \"clust\": 2054, \"rank\": 2752, \"rankvar\": 2426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1265, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 166, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2377, \"group\": [2060.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47226_BALBc-1_X01_Y02_356_521\", \"ini\": 1560, \"clust\": 2133, \"rank\": 2702, \"rankvar\": 2699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1266, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 167, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2239, \"group\": [2133.0, 1153.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47251_BALBc-1_X01_Y02_356_828\", \"ini\": 1559, \"clust\": 521, \"rank\": 817, \"rankvar\": 1261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1267, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 168, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2445, \"group\": [520.0, 357.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47374_BALBc-1_X01_Y02_358_677\", \"ini\": 1558, \"clust\": 803, \"rank\": 93, \"rankvar\": 653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1268, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 169, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2314, \"group\": [804.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47389_BALBc-1_X01_Y02_358_844\", \"ini\": 1557, \"clust\": 469, \"rank\": 926, \"rankvar\": 271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1269, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 170, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2605, \"group\": [467.0, 327.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47513_BALBc-1_X01_Y02_36_798\", \"ini\": 1556, \"clust\": 1628, \"rank\": 2646, \"rankvar\": 2588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1270, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1750, \"cat-2\": \"Density: 19\", \"cat_2_index\": 121, \"group\": [1628.0, 895.0, 259.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47658_BALBc-1_X01_Y02_361_808\", \"ini\": 1555, \"clust\": 486, \"rank\": 795, \"rankvar\": 930, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1271, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1995, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2552, \"group\": [486.0, 333.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47694_BALBc-1_X01_Y02_362_294\", \"ini\": 1554, \"clust\": 663, \"rank\": 195, \"rankvar\": 740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1272, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2549, \"cat-2\": \"Density: 23\", \"cat_2_index\": 401, \"group\": [665.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47867_BALBc-1_X01_Y02_364_621\", \"ini\": 1553, \"clust\": 476, \"rank\": 434, \"rankvar\": 1022, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1273, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 171, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2315, \"group\": [475.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47897_BALBc-1_X01_Y02_364_854\", \"ini\": 1552, \"clust\": 853, \"rank\": 18, \"rankvar\": 940, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1274, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 172, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2800, \"group\": [856.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47915_BALBc-1_X01_Y02_365_14\", \"ini\": 1551, \"clust\": 755, \"rank\": 309, \"rankvar\": 1531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1275, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2550, \"cat-2\": \"Density: 24\", \"cat_2_index\": 517, \"group\": [759.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48021_BALBc-1_X01_Y02_366_342\", \"ini\": 1550, \"clust\": 2694, \"rank\": 2609, \"rankvar\": 2442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1276, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2551, \"cat-2\": \"Density: 27\", \"cat_2_index\": 950, \"group\": [2695.0, 1451.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48025_BALBc-1_X01_Y02_366_428\", \"ini\": 1549, \"clust\": 209, \"rank\": 579, \"rankvar\": 818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1277, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2552, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1871, \"group\": [208.0, 140.0, 47.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48215_BALBc-1_X01_Y02_368_757\", \"ini\": 1548, \"clust\": 2007, \"rank\": 1818, \"rankvar\": 2163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1278, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1996, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2606, \"group\": [2007.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48507_BALBc-1_X01_Y02_371_768\", \"ini\": 1547, \"clust\": 2377, \"rank\": 2508, \"rankvar\": 981, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1279, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1997, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2742, \"group\": [2379.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48580_BALBc-1_X01_Y02_372_677\", \"ini\": 1546, \"clust\": 2087, \"rank\": 2513, \"rankvar\": 2372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1280, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 173, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2378, \"group\": [2086.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48668_BALBc-1_X01_Y02_373_878\", \"ini\": 1545, \"clust\": 2323, \"rank\": 2439, \"rankvar\": 2121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1281, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1564, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2553, \"group\": [2329.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48752_BALBc-1_X01_Y02_374_953\", \"ini\": 1544, \"clust\": 1026, \"rank\": 310, \"rankvar\": 5, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1282, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 174, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1980, \"group\": [1025.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48829_BALBc-1_X01_Y02_375_937\", \"ini\": 1543, \"clust\": 1854, \"rank\": 2064, \"rankvar\": 2299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1283, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1565, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2316, \"group\": [1855.0, 1047.0, 316.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48836_BALBc-1_X01_Y02_375_988\", \"ini\": 1542, \"clust\": 2303, \"rank\": 1854, \"rankvar\": 1276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1284, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1220, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1103, \"group\": [2300.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48875_BALBc-1_X01_Y02_376_577\", \"ini\": 1541, \"clust\": 2185, \"rank\": 1196, \"rankvar\": 1385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1285, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 175, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1872, \"group\": [2183.0, 1185.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49022_BALBc-1_X01_Y02_378_546\", \"ini\": 1540, \"clust\": 1871, \"rank\": 1573, \"rankvar\": 490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1286, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2553, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2446, \"group\": [1872.0, 1062.0, 321.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49038_BALBc-1_X01_Y02_378_703\", \"ini\": 1539, \"clust\": 1029, \"rank\": 314, \"rankvar\": 313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1287, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1998, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2447, \"group\": [1027.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49110_BALBc-1_X01_Y02_379_604\", \"ini\": 1538, \"clust\": 1968, \"rank\": 2188, \"rankvar\": 1280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1288, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 176, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2513, \"group\": [1967.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49158_BALBc-1_X01_Y02_38_459\", \"ini\": 1537, \"clust\": 1358, \"rank\": 2578, \"rankvar\": 2704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1289, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2310, \"cat-2\": \"Density: 21\", \"cat_2_index\": 207, \"group\": [1359.0, 720.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49214_BALBc-1_X01_Y02_380_267\", \"ini\": 1536, \"clust\": 109, \"rank\": 1084, \"rankvar\": 456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1290, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1221, \"cat-2\": \"Density: 24\", \"cat_2_index\": 518, \"group\": [109.0, 67.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49503_BALBc-1_X01_Y02_383_640\", \"ini\": 1535, \"clust\": 2122, \"rank\": 2472, \"rankvar\": 2606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1291, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 177, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2448, \"group\": [2131.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49514_BALBc-1_X01_Y02_383_738\", \"ini\": 1534, \"clust\": 2154, \"rank\": 900, \"rankvar\": 493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1292, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1999, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2607, \"group\": [2152.0, 1167.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49654_BALBc-1_X01_Y02_385_588\", \"ini\": 1533, \"clust\": 2042, \"rank\": 1954, \"rankvar\": 1456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1293, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 178, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2240, \"group\": [2042.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49736_BALBc-1_X01_Y02_386_473\", \"ini\": 1532, \"clust\": 2119, \"rank\": 2506, \"rankvar\": 2525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1294, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 179, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2241, \"group\": [2120.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49747_BALBc-1_X01_Y02_386_572\", \"ini\": 1531, \"clust\": 1048, \"rank\": 360, \"rankvar\": 1088, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1295, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2554, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2379, \"group\": [1053.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49822_BALBc-1_X01_Y02_387_448\", \"ini\": 1530, \"clust\": 1103, \"rank\": 671, \"rankvar\": 141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1296, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 839, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1981, \"group\": [1109.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50058_BALBc-1_X01_Y02_39_628\", \"ini\": 1529, \"clust\": 64, \"rank\": 1422, \"rankvar\": 1998, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1297, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1222, \"cat-2\": \"Density: 16\", \"cat_2_index\": 60, \"group\": [69.0, 51.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50084_BALBc-1_X01_Y02_39_93\", \"ini\": 1528, \"clust\": 403, \"rank\": 683, \"rankvar\": 1763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1298, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1969, \"cat-2\": \"Density: 17\", \"cat_2_index\": 80, \"group\": [402.0, 280.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50363_BALBc-1_X01_Y02_393_824\", \"ini\": 1527, \"clust\": 858, \"rank\": 80, \"rankvar\": 988, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1299, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2000, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2514, \"group\": [858.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50468_BALBc-1_X01_Y02_395_251\", \"ini\": 1526, \"clust\": 833, \"rank\": 154, \"rankvar\": 27, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1300, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1223, \"cat-2\": \"Density: 27\", \"cat_2_index\": 951, \"group\": [837.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50654_BALBc-1_X01_Y02_397_653\", \"ini\": 1525, \"clust\": 2260, \"rank\": 1676, \"rankvar\": 864, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1301, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 180, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2449, \"group\": [2259.0, 1234.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50678_BALBc-1_X01_Y02_397_965\", \"ini\": 1524, \"clust\": 1901, \"rank\": 2068, \"rankvar\": 496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1302, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 181, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1873, \"group\": [1910.0, 1096.0, 335.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50749_BALBc-1_X01_Y02_398_842\", \"ini\": 1523, \"clust\": 2060, \"rank\": 2692, \"rankvar\": 1775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1303, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 182, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2450, \"group\": [2057.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50801_BALBc-1_X01_Y02_399_479\", \"ini\": 1522, \"clust\": 2227, \"rank\": 1482, \"rankvar\": 996, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1304, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 183, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2160, \"group\": [2226.0, 1205.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50842_BALBc-1_X01_Y02_399_873\", \"ini\": 1521, \"clust\": 1090, \"rank\": 169, \"rankvar\": 361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1305, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 184, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2554, \"group\": [1090.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50850_BALBc-1_X01_Y02_399_955\", \"ini\": 1520, \"clust\": 416, \"rank\": 676, \"rankvar\": 1450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1306, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 185, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2161, \"group\": [419.0, 295.0, 102.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51102_BALBc-1_X01_Y02_401_718\", \"ini\": 1519, \"clust\": 2295, \"rank\": 1745, \"rankvar\": 1107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1307, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2001, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2555, \"group\": [2293.0, 1250.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51108_BALBc-1_X01_Y02_401_770\", \"ini\": 1518, \"clust\": 894, \"rank\": 196, \"rankvar\": 252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1308, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2002, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2743, \"group\": [911.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51160_BALBc-1_X01_Y02_402_614\", \"ini\": 1517, \"clust\": 1998, \"rank\": 2383, \"rankvar\": 2435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1309, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 186, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2317, \"group\": [1998.0, 1131.0, 339.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51170_BALBc-1_X01_Y02_402_685\", \"ini\": 1516, \"clust\": 526, \"rank\": 250, \"rankvar\": 849, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1310, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 187, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2451, \"group\": [525.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51249_BALBc-1_X01_Y02_403_900\", \"ini\": 1515, \"clust\": 441, \"rank\": 521, \"rankvar\": 318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1311, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1566, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2556, \"group\": [444.0, 311.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51335_BALBc-1_X01_Y02_404_940\", \"ini\": 1514, \"clust\": 2383, \"rank\": 2360, \"rankvar\": 1447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1312, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1567, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2242, \"group\": [2382.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51490_BALBc-1_X01_Y02_406_791\", \"ini\": 1513, \"clust\": 2043, \"rank\": 1981, \"rankvar\": 1666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1313, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2003, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2608, \"group\": [2043.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51601_BALBc-1_X01_Y02_408_107\", \"ini\": 1512, \"clust\": 188, \"rank\": 842, \"rankvar\": 2131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1314, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2311, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1104, \"group\": [188.0, 124.0, 41.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51695_BALBc-1_X01_Y02_409_238\", \"ini\": 1511, \"clust\": 1674, \"rank\": 1991, \"rankvar\": 1662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1315, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1224, \"cat-2\": \"Density: 26\", \"cat_2_index\": 801, \"group\": [1677.0, 934.0, 275.0, 79.0, 16.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51890_BALBc-1_X01_Y02_410_582\", \"ini\": 1510, \"clust\": 2221, \"rank\": 1544, \"rankvar\": 111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1316, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 188, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1982, \"group\": [2229.0, 1208.0, 358.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51921_BALBc-1_X01_Y02_411_121\", \"ini\": 1509, \"clust\": 613, \"rank\": 372, \"rankvar\": 1262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1317, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 840, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1404, \"group\": [615.0, 416.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51976_BALBc-1_X01_Y02_411_847\", \"ini\": 1508, \"clust\": 2005, \"rank\": 2112, \"rankvar\": 1612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1318, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 189, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2609, \"group\": [2004.0, 1135.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52269_BALBc-1_X01_Y02_415_277\", \"ini\": 1507, \"clust\": 1167, \"rank\": 959, \"rankvar\": 1294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1319, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 621, \"cat-2\": \"Density: 27\", \"cat_2_index\": 952, \"group\": [1168.0, 564.0, 156.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52299_BALBc-1_X01_Y02_415_694\", \"ini\": 1506, \"clust\": 2272, \"rank\": 1390, \"rankvar\": 1329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1320, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 190, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2658, \"group\": [2270.0, 1239.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52362_BALBc-1_X01_Y02_416_643\", \"ini\": 1505, \"clust\": 1963, \"rank\": 2505, \"rankvar\": 2114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1321, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 191, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2452, \"group\": [1969.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52446_BALBc-1_X01_Y02_417_9\", \"ini\": 1504, \"clust\": 554, \"rank\": 702, \"rankvar\": 1219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1322, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2242, \"cat-2\": \"Density: 27\", \"cat_2_index\": 953, \"group\": [558.0, 382.0, 127.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52574_BALBc-1_X01_Y02_419_463\", \"ini\": 1503, \"clust\": 1087, \"rank\": 150, \"rankvar\": 620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1323, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 841, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2243, \"group\": [1088.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52615_BALBc-1_X01_Y02_419_921\", \"ini\": 1502, \"clust\": 2233, \"rank\": 1338, \"rankvar\": 666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1324, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1568, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2453, \"group\": [2234.0, 1213.0, 362.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52720_BALBc-1_X01_Y02_420_41\", \"ini\": 1501, \"clust\": 959, \"rank\": 391, \"rankvar\": 1537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1325, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2312, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1405, \"group\": [958.0, 490.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52738_BALBc-1_X01_Y02_420_619\", \"ini\": 1500, \"clust\": 430, \"rank\": 886, \"rankvar\": 1158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1326, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 192, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2380, \"group\": [431.0, 306.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52831_BALBc-1_X01_Y02_421_884\", \"ini\": 1499, \"clust\": 1121, \"rank\": 784, \"rankvar\": 205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1327, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 193, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2557, \"group\": [1122.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52841_BALBc-1_X01_Y02_421_966\", \"ini\": 1498, \"clust\": 136, \"rank\": 600, \"rankvar\": 465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1328, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 194, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1769, \"group\": [138.0, 84.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52887_BALBc-1_X01_Y02_422_566\", \"ini\": 1497, \"clust\": 488, \"rank\": 868, \"rankvar\": 648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1329, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2555, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2162, \"group\": [488.0, 333.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52914_BALBc-1_X01_Y02_422_826\", \"ini\": 1496, \"clust\": 2091, \"rank\": 2448, \"rankvar\": 2042, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1330, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 195, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2454, \"group\": [2090.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52954_BALBc-1_X01_Y02_423_373\", \"ini\": 1495, \"clust\": 2675, \"rank\": 2659, \"rankvar\": 2101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1331, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2556, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1530, \"group\": [2677.0, 1444.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52986_BALBc-1_X01_Y02_423_804\", \"ini\": 1494, \"clust\": 200, \"rank\": 871, \"rankvar\": 987, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1332, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 912, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2659, \"group\": [201.0, 135.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53029_BALBc-1_X01_Y02_424_444\", \"ini\": 1493, \"clust\": 2320, \"rank\": 1852, \"rankvar\": 1544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1333, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 842, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2079, \"group\": [2321.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53035_BALBc-1_X01_Y02_424_524\", \"ini\": 1492, \"clust\": 2448, \"rank\": 1487, \"rankvar\": 1167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1334, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2557, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2381, \"group\": [2451.0, 1303.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53103_BALBc-1_X01_Y02_425_394\", \"ini\": 1491, \"clust\": 57, \"rank\": 701, \"rankvar\": 938, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1335, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2558, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1663, \"group\": [58.0, 47.0, 21.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53160_BALBc-1_X01_Y02_426_216\", \"ini\": 1490, \"clust\": 828, \"rank\": 87, \"rankvar\": 447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1336, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1225, \"cat-2\": \"Density: 27\", \"cat_2_index\": 954, \"group\": [827.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53185_BALBc-1_X01_Y02_426_493\", \"ini\": 1489, \"clust\": 2085, \"rank\": 2410, \"rankvar\": 2288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1337, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2004, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2382, \"group\": [2083.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53235_BALBc-1_X01_Y02_426_993\", \"ini\": 1488, \"clust\": 1832, \"rank\": 2816, \"rankvar\": 2781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1338, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1226, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1105, \"group\": [1832.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53488_BALBc-1_X01_Y02_43_189\", \"ini\": 1487, \"clust\": 1447, \"rank\": 2408, \"rankvar\": 2308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1339, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2490, \"cat-2\": \"Density: 20\", \"cat_2_index\": 157, \"group\": [1451.0, 789.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53513_BALBc-1_X01_Y02_43_535\", \"ini\": 1486, \"clust\": 2761, \"rank\": 2276, \"rankvar\": 1436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1340, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 843, \"cat-2\": \"Density: 24\", \"cat_2_index\": 519, \"group\": [2761.0, 1494.0, 445.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53632_BALBc-1_X01_Y02_430_943\", \"ini\": 1485, \"clust\": 1114, \"rank\": 700, \"rankvar\": 1539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1341, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 196, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2244, \"group\": [1115.0, 525.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53680_BALBc-1_X01_Y02_431_592\", \"ini\": 1484, \"clust\": 2097, \"rank\": 2672, \"rankvar\": 2709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1342, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2005, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2245, \"group\": [2097.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53775_BALBc-1_X01_Y02_432_719\", \"ini\": 1483, \"clust\": 1940, \"rank\": 2115, \"rankvar\": 1038, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1343, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2006, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2660, \"group\": [1943.0, 1112.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54002_BALBc-1_X01_Y02_435_644\", \"ini\": 1482, \"clust\": 490, \"rank\": 1141, \"rankvar\": 86, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1344, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 197, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2610, \"group\": [491.0, 335.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54089_BALBc-1_X01_Y02_436_868\", \"ini\": 1481, \"clust\": 1918, \"rank\": 2088, \"rankvar\": 1345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1345, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 198, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2661, \"group\": [1919.0, 1103.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54172_BALBc-1_X01_Y02_437_824\", \"ini\": 1480, \"clust\": 1157, \"rank\": 1779, \"rankvar\": 2113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1346, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2007, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2455, \"group\": [1157.0, 555.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54244_BALBc-1_X01_Y02_438_683\", \"ini\": 1479, \"clust\": 2009, \"rank\": 2046, \"rankvar\": 1964, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1347, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2008, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2558, \"group\": [2010.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54404_BALBc-1_X01_Y02_44_835\", \"ini\": 1478, \"clust\": 1887, \"rank\": 1932, \"rankvar\": 2348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1348, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1227, \"cat-2\": \"Density: 21\", \"cat_2_index\": 208, \"group\": [1901.0, 1089.0, 332.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54437_BALBc-1_X01_Y02_440_316\", \"ini\": 1477, \"clust\": 1095, \"rank\": 209, \"rankvar\": 458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1349, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2559, \"cat-2\": \"Density: 25\", \"cat_2_index\": 660, \"group\": [1102.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54530_BALBc-1_X01_Y02_441_532\", \"ini\": 1476, \"clust\": 2719, \"rank\": 1995, \"rankvar\": 2264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1350, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2009, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2383, \"group\": [2718.0, 1460.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54679_BALBc-1_X01_Y02_443_444\", \"ini\": 1475, \"clust\": 497, \"rank\": 751, \"rankvar\": 1032, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1351, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 199, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1874, \"group\": [503.0, 343.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54837_BALBc-1_X01_Y02_445_603\", \"ini\": 1474, \"clust\": 2039, \"rank\": 2260, \"rankvar\": 2326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1352, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 200, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2456, \"group\": [2040.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54860_BALBc-1_X01_Y02_445_91\", \"ini\": 1473, \"clust\": 571, \"rank\": 686, \"rankvar\": 1314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1353, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2313, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1252, \"group\": [575.0, 392.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54974_BALBc-1_X01_Y02_447_354\", \"ini\": 1472, \"clust\": 589, \"rank\": 120, \"rankvar\": 1811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1354, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2560, \"cat-2\": \"Density: 26\", \"cat_2_index\": 802, \"group\": [588.0, 401.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55065_BALBc-1_X01_Y02_448_466\", \"ini\": 1471, \"clust\": 846, \"rank\": 101, \"rankvar\": 46, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1355, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2010, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2163, \"group\": [846.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55103_BALBc-1_X01_Y02_448_891\", \"ini\": 1470, \"clust\": 520, \"rank\": 636, \"rankvar\": 1147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1356, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2011, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2559, \"group\": [522.0, 358.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55107_BALBc-1_X01_Y02_448_964\", \"ini\": 1469, \"clust\": 2266, \"rank\": 1365, \"rankvar\": 471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1357, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 201, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1983, \"group\": [2264.0, 1236.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55165_BALBc-1_X01_Y02_449_995\", \"ini\": 1468, \"clust\": 1819, \"rank\": 2632, \"rankvar\": 2819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1358, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1228, \"cat-2\": \"Density: 25\", \"cat_2_index\": 661, \"group\": [1820.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55457_BALBc-1_X01_Y02_452_827\", \"ini\": 1467, \"clust\": 2124, \"rank\": 2709, \"rankvar\": 2672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1359, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2012, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2662, \"group\": [2122.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55626_BALBc-1_X01_Y02_454_938\", \"ini\": 1466, \"clust\": 2306, \"rank\": 1940, \"rankvar\": 922, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1360, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 202, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2318, \"group\": [2308.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55632_BALBc-1_X01_Y02_455_133\", \"ini\": 1465, \"clust\": 1349, \"rank\": 1705, \"rankvar\": 2025, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1361, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1229, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1253, \"group\": [1350.0, 711.0, 211.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55682_BALBc-1_X01_Y02_455_662\", \"ini\": 1464, \"clust\": 487, \"rank\": 675, \"rankvar\": 766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1362, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2013, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2457, \"group\": [487.0, 333.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55975_BALBc-1_X01_Y02_459_725\", \"ini\": 1463, \"clust\": 2051, \"rank\": 2656, \"rankvar\": 2354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1363, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 913, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2611, \"group\": [2051.0, 1148.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55987_BALBc-1_X01_Y02_459_856\", \"ini\": 1462, \"clust\": 2156, \"rank\": 1556, \"rankvar\": 844, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1364, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2014, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2384, \"group\": [2157.0, 1171.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56102_BALBc-1_X01_Y02_460_412\", \"ini\": 1461, \"clust\": 1723, \"rank\": 2751, \"rankvar\": 2807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1365, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2811, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1875, \"group\": [1722.0, 970.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56118_BALBc-1_X01_Y02_460_632\", \"ini\": 1460, \"clust\": 2531, \"rank\": 1468, \"rankvar\": 581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1366, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 203, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2515, \"group\": [2529.0, 1356.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56299_BALBc-1_X01_Y02_462_698\", \"ini\": 1459, \"clust\": 489, \"rank\": 836, \"rankvar\": 730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1367, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2015, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2516, \"group\": [489.0, 333.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56546_BALBc-1_X01_Y02_466_18\", \"ini\": 1458, \"clust\": 1201, \"rank\": 633, \"rankvar\": 1095, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1368, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1551, \"cat-2\": \"Density: 27\", \"cat_2_index\": 955, \"group\": [1201.0, 594.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56758_BALBc-1_X01_Y02_468_767\", \"ini\": 1457, \"clust\": 2052, \"rank\": 2801, \"rankvar\": 2703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1369, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 914, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2744, \"group\": [2049.0, 1148.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56777_BALBc-1_X01_Y02_469_107\", \"ini\": 1456, \"clust\": 287, \"rank\": 1896, \"rankvar\": 2780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1370, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 844, \"cat-2\": \"Density: 26\", \"cat_2_index\": 803, \"group\": [287.0, 208.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56993_BALBc-1_X01_Y02_470_811\", \"ini\": 1455, \"clust\": 485, \"rank\": 981, \"rankvar\": 586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1371, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2016, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2663, \"group\": [490.0, 334.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57236_BALBc-1_X01_Y02_474_156\", \"ini\": 1454, \"clust\": 2734, \"rank\": 1432, \"rankvar\": 2049, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1372, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 845, \"cat-2\": \"Density: 23\", \"cat_2_index\": 402, \"group\": [2735.0, 1470.0, 432.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57266_BALBc-1_X01_Y02_474_476\", \"ini\": 1453, \"clust\": 2070, \"rank\": 2590, \"rankvar\": 2152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1373, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2017, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2246, \"group\": [2072.0, 1151.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57317_BALBc-1_X01_Y02_475_174\", \"ini\": 1452, \"clust\": 1637, \"rank\": 1491, \"rankvar\": 1415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1374, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1230, \"cat-2\": \"Density: 26\", \"cat_2_index\": 804, \"group\": [1639.0, 903.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57390_BALBc-1_X01_Y02_475_992\", \"ini\": 1451, \"clust\": 2350, \"rank\": 2587, \"rankvar\": 1477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1375, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1231, \"cat-2\": \"Density: 26\", \"cat_2_index\": 805, \"group\": [2344.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57421_BALBc-1_X01_Y02_476_442\", \"ini\": 1450, \"clust\": 2461, \"rank\": 1109, \"rankvar\": 1338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1376, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 204, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2247, \"group\": [2462.0, 1310.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57434_BALBc-1_X01_Y02_476_544\", \"ini\": 1449, \"clust\": 2128, \"rank\": 2450, \"rankvar\": 2697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1377, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2018, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2319, \"group\": [2126.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57441_BALBc-1_X01_Y02_476_598\", \"ini\": 1448, \"clust\": 682, \"rank\": 526, \"rankvar\": 780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1378, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 205, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2385, \"group\": [682.0, 450.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57487_BALBc-1_X01_Y02_477_186\", \"ini\": 1447, \"clust\": 2744, \"rank\": 913, \"rankvar\": 2093, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1379, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1232, \"cat-2\": \"Density: 24\", \"cat_2_index\": 520, \"group\": [2744.0, 1479.0, 437.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57490_BALBc-1_X01_Y02_477_220\", \"ini\": 1446, \"clust\": 96, \"rank\": 574, \"rankvar\": 1923, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1380, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1233, \"cat-2\": \"Density: 23\", \"cat_2_index\": 403, \"group\": [96.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57549_BALBc-1_X01_Y02_477_962\", \"ini\": 1445, \"clust\": 738, \"rank\": 632, \"rankvar\": 695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1381, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 206, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1984, \"group\": [740.0, 467.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57571_BALBc-1_X01_Y02_478_269\", \"ini\": 1444, \"clust\": 404, \"rank\": 442, \"rankvar\": 724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1382, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1234, \"cat-2\": \"Density: 24\", \"cat_2_index\": 521, \"group\": [404.0, 282.0, 96.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57683_BALBc-1_X01_Y02_479_571\", \"ini\": 1443, \"clust\": 2071, \"rank\": 2563, \"rankvar\": 2319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1383, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2019, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2560, \"group\": [2070.0, 1151.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57835_BALBc-1_X01_Y02_480_722\", \"ini\": 1442, \"clust\": 969, \"rank\": 813, \"rankvar\": 102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1384, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 207, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2517, \"group\": [972.0, 498.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57878_BALBc-1_X01_Y02_481_244\", \"ini\": 1441, \"clust\": 1165, \"rank\": 780, \"rankvar\": 1980, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1385, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1235, \"cat-2\": \"Density: 22\", \"cat_2_index\": 288, \"group\": [1166.0, 562.0, 156.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58001_BALBc-1_X01_Y02_482_917\", \"ini\": 1440, \"clust\": 2023, \"rank\": 2101, \"rankvar\": 1227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1386, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2020, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2801, \"group\": [2021.0, 1139.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58043_BALBc-1_X01_Y02_483_520\", \"ini\": 1439, \"clust\": 264, \"rank\": 1044, \"rankvar\": 962, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1387, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2021, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2080, \"group\": [264.0, 186.0, 65.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58156_BALBc-1_X01_Y02_484_753\", \"ini\": 1438, \"clust\": 2437, \"rank\": 891, \"rankvar\": 986, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1388, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2022, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2704, \"group\": [2438.0, 1298.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58206_BALBc-1_X01_Y02_485_407\", \"ini\": 1437, \"clust\": 1092, \"rank\": 143, \"rankvar\": 119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1389, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2023, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1531, \"group\": [1093.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58226_BALBc-1_X01_Y02_485_621\", \"ini\": 1436, \"clust\": 1125, \"rank\": 1177, \"rankvar\": 1540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1390, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 208, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2081, \"group\": [1125.0, 527.0, 141.0, 35.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58228_BALBc-1_X01_Y02_485_649\", \"ini\": 1435, \"clust\": 2088, \"rank\": 2540, \"rankvar\": 2337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1391, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1236, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2248, \"group\": [2087.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58327_BALBc-1_X01_Y02_486_99\", \"ini\": 1434, \"clust\": 1319, \"rank\": 822, \"rankvar\": 777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1392, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1655, \"cat-2\": \"Density: 27\", \"cat_2_index\": 956, \"group\": [1319.0, 687.0, 204.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58359_BALBc-1_X01_Y02_487_496\", \"ini\": 1433, \"clust\": 2129, \"rank\": 2177, \"rankvar\": 2184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1393, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2024, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2082, \"group\": [2127.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58404_BALBc-1_X01_Y02_487_980\", \"ini\": 1432, \"clust\": 867, \"rank\": 31, \"rankvar\": 963, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1394, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 209, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1664, \"group\": [866.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58545_BALBc-1_X01_Y02_489_773\", \"ini\": 1431, \"clust\": 1941, \"rank\": 2071, \"rankvar\": 667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1395, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2025, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2518, \"group\": [1941.0, 1112.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58554_BALBc-1_X01_Y02_489_847\", \"ini\": 1430, \"clust\": 2073, \"rank\": 2454, \"rankvar\": 1694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1396, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2026, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2705, \"group\": [2073.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58565_BALBc-1_X01_Y02_489_942\", \"ini\": 1429, \"clust\": 1729, \"rank\": 2244, \"rankvar\": 1004, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1397, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 210, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2519, \"group\": [1729.0, 974.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58586_BALBc-1_X01_Y02_49_255\", \"ini\": 1428, \"clust\": 1646, \"rank\": 1305, \"rankvar\": 2644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1398, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1237, \"cat-2\": \"Density: 18\", \"cat_2_index\": 97, \"group\": [1642.0, 905.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58666_BALBc-1_X01_Y02_490_220\", \"ini\": 1427, \"clust\": 1419, \"rank\": 1814, \"rankvar\": 952, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1399, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 211, \"cat-2\": \"Density: 23\", \"cat_2_index\": 404, \"group\": [1420.0, 767.0, 227.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58836_BALBc-1_X01_Y02_492_696\", \"ini\": 1426, \"clust\": 2022, \"rank\": 2045, \"rankvar\": 797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1400, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2027, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2612, \"group\": [2023.0, 1139.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58842_BALBc-1_X01_Y02_492_801\", \"ini\": 1425, \"clust\": 470, \"rank\": 997, \"rankvar\": 1318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1401, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2028, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2458, \"group\": [468.0, 327.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59277_BALBc-1_X01_Y02_497_952\", \"ini\": 1424, \"clust\": 2515, \"rank\": 1743, \"rankvar\": 815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1402, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2029, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1985, \"group\": [2515.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59332_BALBc-1_X01_Y02_498_722\", \"ini\": 1423, \"clust\": 474, \"rank\": 540, \"rankvar\": 584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1403, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2030, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2520, \"group\": [478.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59402_BALBc-1_X01_Y02_499_631\", \"ini\": 1422, \"clust\": 2462, \"rank\": 1500, \"rankvar\": 1077, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1404, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2031, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2249, \"group\": [2460.0, 1309.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59433_BALBc-1_X01_Y02_499_987\", \"ini\": 1421, \"clust\": 2082, \"rank\": 2606, \"rankvar\": 2360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1405, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2032, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1254, \"group\": [2081.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59455_BALBc-1_X01_Y02_5_514\", \"ini\": 1420, \"clust\": 2497, \"rank\": 2248, \"rankvar\": 2183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1406, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 846, \"cat-2\": \"Density: 13\", \"cat_2_index\": 19, \"group\": [2507.0, 1347.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59697_BALBc-1_X01_Y02_502_382\", \"ini\": 1419, \"clust\": 1005, \"rank\": 384, \"rankvar\": 545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1407, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2561, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1255, \"group\": [1003.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59815_BALBc-1_X01_Y02_504_15\", \"ini\": 1418, \"clust\": 73, \"rank\": 605, \"rankvar\": 379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1408, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1970, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1106, \"group\": [74.0, 55.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60055_BALBc-1_X01_Y02_507_1005\", \"ini\": 1417, \"clust\": 2110, \"rank\": 2682, \"rankvar\": 2514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1409, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 212, \"cat-2\": \"Density: 26\", \"cat_2_index\": 806, \"group\": [2109.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60088_BALBc-1_X01_Y02_507_454\", \"ini\": 1416, \"clust\": 2190, \"rank\": 2003, \"rankvar\": 2479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1410, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 213, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1876, \"group\": [2186.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60268_BALBc-1_X01_Y02_509_70\", \"ini\": 1415, \"clust\": 687, \"rank\": 354, \"rankvar\": 529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1411, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1656, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1107, \"group\": [690.0, 454.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60435_BALBc-1_X01_Y02_510_900\", \"ini\": 1414, \"clust\": 2056, \"rank\": 2655, \"rankvar\": 2439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1412, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2033, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2664, \"group\": [2054.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60513_BALBc-1_X01_Y02_511_842\", \"ini\": 1413, \"clust\": 2428, \"rank\": 1051, \"rankvar\": 858, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1413, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 214, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2613, \"group\": [2429.0, 1294.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60591_BALBc-1_X01_Y02_512_878\", \"ini\": 1412, \"clust\": 1049, \"rank\": 339, \"rankvar\": 1289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1414, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2034, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2561, \"group\": [1052.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60694_BALBc-1_X01_Y02_514_485\", \"ini\": 1411, \"clust\": 1182, \"rank\": 1507, \"rankvar\": 1074, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1415, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2035, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2459, \"group\": [1183.0, 576.0, 160.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60776_BALBc-1_X01_Y02_515_521\", \"ini\": 1410, \"clust\": 2194, \"rank\": 1832, \"rankvar\": 2552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1416, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 215, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2083, \"group\": [2191.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60841_BALBc-1_X01_Y02_516_211\", \"ini\": 1409, \"clust\": 610, \"rank\": 480, \"rankvar\": 544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1417, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2562, \"cat-2\": \"Density: 23\", \"cat_2_index\": 405, \"group\": [608.0, 413.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60860_BALBc-1_X01_Y02_516_505\", \"ini\": 1408, \"clust\": 2344, \"rank\": 2445, \"rankvar\": 1748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1418, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 216, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2084, \"group\": [2355.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60875_BALBc-1_X01_Y02_516_818\", \"ini\": 1407, \"clust\": 2186, \"rank\": 1388, \"rankvar\": 1165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1419, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2036, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2745, \"group\": [2184.0, 1186.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60902_BALBc-1_X01_Y02_517_236\", \"ini\": 1406, \"clust\": 1276, \"rank\": 1607, \"rankvar\": 2371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1420, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 217, \"cat-2\": \"Density: 21\", \"cat_2_index\": 209, \"group\": [1278.0, 653.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61018_BALBc-1_X01_Y02_518_607\", \"ini\": 1405, \"clust\": 2072, \"rank\": 2542, \"rankvar\": 2495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1421, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2037, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2164, \"group\": [2071.0, 1151.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61271_BALBc-1_X01_Y02_520_570\", \"ini\": 1404, \"clust\": 435, \"rank\": 355, \"rankvar\": 1754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1422, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2038, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2460, \"group\": [435.0, 308.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61339_BALBc-1_X01_Y02_521_434\", \"ini\": 1403, \"clust\": 2252, \"rank\": 1106, \"rankvar\": 613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1423, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2039, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1986, \"group\": [2253.0, 1230.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61380_BALBc-1_X01_Y02_521_947\", \"ini\": 1402, \"clust\": 2055, \"rank\": 2633, \"rankvar\": 1535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1424, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1238, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2320, \"group\": [2059.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61674_BALBc-1_X01_Y02_525_652\", \"ini\": 1401, \"clust\": 2093, \"rank\": 2438, \"rankvar\": 2385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1425, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1239, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2321, \"group\": [2092.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61704_BALBc-1_X01_Y02_525_994\", \"ini\": 1400, \"clust\": 2378, \"rank\": 2552, \"rankvar\": 1756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1426, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2040, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1256, \"group\": [2377.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61719_BALBc-1_X01_Y02_526_269\", \"ini\": 1399, \"clust\": 2803, \"rank\": 2102, \"rankvar\": 2513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1427, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2563, \"cat-2\": \"Density: 20\", \"cat_2_index\": 158, \"group\": [2804.0, 1522.0, 453.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61758_BALBc-1_X01_Y02_526_905\", \"ini\": 1398, \"clust\": 804, \"rank\": 576, \"rankvar\": 96, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1428, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 218, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2461, \"group\": [805.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61791_BALBc-1_X01_Y02_527_347\", \"ini\": 1397, \"clust\": 1176, \"rank\": 1317, \"rankvar\": 58, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1429, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2564, \"cat-2\": \"Density: 25\", \"cat_2_index\": 662, \"group\": [1177.0, 570.0, 158.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61831_BALBc-1_X01_Y02_527_730\", \"ini\": 1396, \"clust\": 1046, \"rank\": 132, \"rankvar\": 1195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1430, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2041, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2562, \"group\": [1045.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61836_BALBc-1_X01_Y02_527_777\", \"ini\": 1395, \"clust\": 2223, \"rank\": 1710, \"rankvar\": 1902, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1431, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2042, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2386, \"group\": [2222.0, 1203.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61953_BALBc-1_X01_Y02_529_35\", \"ini\": 1394, \"clust\": 397, \"rank\": 994, \"rankvar\": 1475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1432, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1657, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1108, \"group\": [394.0, 275.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61991_BALBc-1_X01_Y02_529_837\", \"ini\": 1393, \"clust\": 998, \"rank\": 674, \"rankvar\": 556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1433, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 219, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2563, \"group\": [997.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62023_BALBc-1_X01_Y02_53_321\", \"ini\": 1392, \"clust\": 684, \"rank\": 538, \"rankvar\": 1723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1434, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1240, \"cat-2\": \"Density: 21\", \"cat_2_index\": 210, \"group\": [687.0, 452.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62344_BALBc-1_X01_Y02_533_462\", \"ini\": 1391, \"clust\": 478, \"rank\": 428, \"rankvar\": 901, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1435, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2043, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2322, \"group\": [483.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62399_BALBc-1_X01_Y02_534_418\", \"ini\": 1390, \"clust\": 1059, \"rank\": 637, \"rankvar\": 364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1436, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2044, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1987, \"group\": [1059.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62425_BALBc-1_X01_Y02_534_752\", \"ini\": 1389, \"clust\": 1852, \"rank\": 2267, \"rankvar\": 1506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1437, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2045, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2462, \"group\": [1849.0, 1042.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62434_BALBc-1_X01_Y02_534_821\", \"ini\": 1388, \"clust\": 2189, \"rank\": 1863, \"rankvar\": 1743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1438, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2046, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2706, \"group\": [2188.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62442_BALBc-1_X01_Y02_534_888\", \"ini\": 1387, \"clust\": 2420, \"rank\": 901, \"rankvar\": 193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1439, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 220, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2463, \"group\": [2420.0, 1288.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62492_BALBc-1_X01_Y02_535_508\", \"ini\": 1386, \"clust\": 2225, \"rank\": 1363, \"rankvar\": 1078, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1440, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2047, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2165, \"group\": [2224.0, 1204.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62565_BALBc-1_X01_Y02_536_544\", \"ini\": 1385, \"clust\": 1999, \"rank\": 2366, \"rankvar\": 2116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1441, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2048, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2387, \"group\": [1999.0, 1131.0, 339.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62586_BALBc-1_X01_Y02_536_855\", \"ini\": 1384, \"clust\": 1977, \"rank\": 2759, \"rankvar\": 2469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1442, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 221, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2614, \"group\": [1972.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62671_BALBc-1_X01_Y02_537_981\", \"ini\": 1383, \"clust\": 2202, \"rank\": 1304, \"rankvar\": 2106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1443, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1241, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1770, \"group\": [2205.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62763_BALBc-1_X01_Y02_539_389\", \"ini\": 1382, \"clust\": 2418, \"rank\": 1176, \"rankvar\": 380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1444, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2049, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1257, \"group\": [2417.0, 1285.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62777_BALBc-1_X01_Y02_539_557\", \"ini\": 1381, \"clust\": 2030, \"rank\": 2675, \"rankvar\": 2226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1445, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2050, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2250, \"group\": [2029.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62788_BALBc-1_X01_Y02_539_712\", \"ini\": 1380, \"clust\": 2109, \"rank\": 2802, \"rankvar\": 2769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1446, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1242, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2388, \"group\": [2113.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62960_BALBc-1_X01_Y02_541_26\", \"ini\": 1379, \"clust\": 198, \"rank\": 395, \"rankvar\": 846, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1447, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1971, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1109, \"group\": [198.0, 132.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62991_BALBc-1_X01_Y02_541_75\", \"ini\": 1378, \"clust\": 207, \"rank\": 1024, \"rankvar\": 735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1448, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 847, \"cat-2\": \"Density: 26\", \"cat_2_index\": 807, \"group\": [206.0, 139.0, 47.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63595_BALBc-1_X01_Y02_548_853\", \"ini\": 1377, \"clust\": 2166, \"rank\": 1538, \"rankvar\": 1438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1449, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2051, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2615, \"group\": [2167.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63686_BALBc-1_X01_Y02_549_947\", \"ini\": 1376, \"clust\": 2374, \"rank\": 2519, \"rankvar\": 1675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1450, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1243, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2323, \"group\": [2372.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63912_BALBc-1_X01_Y02_551_904\", \"ini\": 1375, \"clust\": 2152, \"rank\": 1207, \"rankvar\": 1122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1451, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 222, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2521, \"group\": [2153.0, 1168.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63952_BALBc-1_X01_Y02_552_377\", \"ini\": 1374, \"clust\": 2419, \"rank\": 1067, \"rankvar\": 221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1452, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 223, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1110, \"group\": [2422.0, 1289.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64119_BALBc-1_X01_Y02_554_637\", \"ini\": 1373, \"clust\": 2533, \"rank\": 1454, \"rankvar\": 1708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1453, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2052, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2564, \"group\": [2532.0, 1358.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64205_BALBc-1_X01_Y02_555_738\", \"ini\": 1372, \"clust\": 434, \"rank\": 788, \"rankvar\": 1846, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1454, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 224, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2389, \"group\": [437.0, 308.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64551_BALBc-1_X01_Y02_56_237\", \"ini\": 1371, \"clust\": 1409, \"rank\": 1591, \"rankvar\": 1920, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1455, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1244, \"cat-2\": \"Density: 20\", \"cat_2_index\": 159, \"group\": [1409.0, 758.0, 224.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64699_BALBc-1_X01_Y02_560_94\", \"ini\": 1370, \"clust\": 1638, \"rank\": 2516, \"rankvar\": 2700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1456, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2455, \"cat-2\": \"Density: 27\", \"cat_2_index\": 957, \"group\": [1637.0, 902.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64829_BALBc-1_X01_Y02_562_691\", \"ini\": 1369, \"clust\": 438, \"rank\": 272, \"rankvar\": 1546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1457, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1245, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2616, \"group\": [439.0, 309.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64850_BALBc-1_X01_Y02_562_963\", \"ini\": 1368, \"clust\": 2204, \"rank\": 1162, \"rankvar\": 1847, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1458, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1246, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2251, \"group\": [2200.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64896_BALBc-1_X01_Y02_563_569\", \"ini\": 1367, \"clust\": 1053, \"rank\": 547, \"rankvar\": 583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1459, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2053, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2464, \"group\": [1054.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64897_BALBc-1_X01_Y02_563_602\", \"ini\": 1366, \"clust\": 2387, \"rank\": 2763, \"rankvar\": 1891, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1460, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2054, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2465, \"group\": [2384.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64941_BALBc-1_X01_Y02_564_31\", \"ini\": 1365, \"clust\": 1129, \"rank\": 1269, \"rankvar\": 118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1461, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1972, \"cat-2\": \"Density: 24\", \"cat_2_index\": 522, \"group\": [1133.0, 535.0, 145.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64994_BALBc-1_X01_Y02_564_874\", \"ini\": 1364, \"clust\": 44, \"rank\": 775, \"rankvar\": 805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1462, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2055, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2466, \"group\": [47.0, 39.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65052_BALBc-1_X01_Y02_565_665\", \"ini\": 1363, \"clust\": 2120, \"rank\": 2423, \"rankvar\": 2309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1463, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 225, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2565, \"group\": [2118.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65064_BALBc-1_X01_Y02_565_759\", \"ini\": 1362, \"clust\": 2089, \"rank\": 2669, \"rankvar\": 2465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1464, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2565, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2522, \"group\": [2088.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65075_BALBc-1_X01_Y02_565_925\", \"ini\": 1361, \"clust\": 683, \"rank\": 399, \"rankvar\": 774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1465, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 622, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2707, \"group\": [683.0, 450.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65095_BALBc-1_X01_Y02_566_271\", \"ini\": 1360, \"clust\": 1926, \"rank\": 2771, \"rankvar\": 2805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1466, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2566, \"cat-2\": \"Density: 21\", \"cat_2_index\": 211, \"group\": [1926.0, 1107.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65299_BALBc-1_X01_Y02_568_889\", \"ini\": 1359, \"clust\": 2363, \"rank\": 1838, \"rankvar\": 1205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1467, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 226, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2566, \"group\": [2363.0, 1262.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65326_BALBc-1_X01_Y02_569_433\", \"ini\": 1358, \"clust\": 2161, \"rank\": 1098, \"rankvar\": 682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1468, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2056, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2085, \"group\": [2158.0, 1172.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65481_BALBc-1_X01_Y02_570_500\", \"ini\": 1357, \"clust\": 2195, \"rank\": 1736, \"rankvar\": 2188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1469, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2057, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2324, \"group\": [2189.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65533_BALBc-1_X01_Y02_571_197\", \"ini\": 1356, \"clust\": 1395, \"rank\": 1714, \"rankvar\": 1117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1470, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2491, \"cat-2\": \"Density: 23\", \"cat_2_index\": 406, \"group\": [1394.0, 745.0, 218.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65552_BALBc-1_X01_Y02_571_380\", \"ini\": 1355, \"clust\": 2003, \"rank\": 1884, \"rankvar\": 969, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1471, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2058, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1877, \"group\": [2005.0, 1135.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65700_BALBc-1_X01_Y02_573_349\", \"ini\": 1354, \"clust\": 1066, \"rank\": 335, \"rankvar\": 593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1472, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2567, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1406, \"group\": [1068.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65716_BALBc-1_X01_Y02_573_564\", \"ini\": 1353, \"clust\": 1956, \"rank\": 2652, \"rankvar\": 2287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1473, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2059, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2390, \"group\": [1957.0, 1116.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65744_BALBc-1_X01_Y02_573_899\", \"ini\": 1352, \"clust\": 2146, \"rank\": 1447, \"rankvar\": 30, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1474, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 623, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2746, \"group\": [2154.0, 1169.0, 344.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65912_BALBc-1_X01_Y02_575_992\", \"ini\": 1351, \"clust\": 2020, \"rank\": 2044, \"rankvar\": 822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1475, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 227, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1111, \"group\": [2039.0, 1144.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65965_BALBc-1_X01_Y02_576_941\", \"ini\": 1350, \"clust\": 2351, \"rank\": 2549, \"rankvar\": 1863, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1476, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 624, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2617, \"group\": [2345.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66161_BALBc-1_X01_Y02_579_641\", \"ini\": 1349, \"clust\": 2364, \"rank\": 1903, \"rankvar\": 1355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1477, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 228, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2467, \"group\": [2364.0, 1262.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66381_BALBc-1_X01_Y02_581_736\", \"ini\": 1348, \"clust\": 2040, \"rank\": 2213, \"rankvar\": 1934, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1478, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 229, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2391, \"group\": [2041.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66539_BALBc-1_X01_Y02_583_714\", \"ini\": 1347, \"clust\": 2104, \"rank\": 2775, \"rankvar\": 2669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1479, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 230, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2567, \"group\": [2102.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66625_BALBc-1_X01_Y02_584_872\", \"ini\": 1346, \"clust\": 1073, \"rank\": 273, \"rankvar\": 1123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1480, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2060, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2523, \"group\": [1074.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66780_BALBc-1_X01_Y02_586_608\", \"ini\": 1345, \"clust\": 916, \"rank\": 188, \"rankvar\": 2, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 231, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2568, \"group\": [915.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66849_BALBc-1_X01_Y02_587_46\", \"ini\": 1344, \"clust\": 361, \"rank\": 348, \"rankvar\": 2269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1482, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 232, \"cat-2\": \"Density: 24\", \"cat_2_index\": 523, \"group\": [359.0, 251.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67001_BALBc-1_X01_Y02_589_528\", \"ini\": 1343, \"clust\": 1000, \"rank\": 481, \"rankvar\": 538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1483, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2061, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2166, \"group\": [1000.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67087_BALBc-1_X01_Y02_59_592\", \"ini\": 1342, \"clust\": 1295, \"rank\": 1593, \"rankvar\": 394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1484, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1247, \"cat-2\": \"Density: 20\", \"cat_2_index\": 160, \"group\": [1295.0, 666.0, 192.0, 54.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67176_BALBc-1_X01_Y02_590_64\", \"ini\": 1341, \"clust\": 646, \"rank\": 623, \"rankvar\": 281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1485, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1973, \"cat-2\": \"Density: 23\", \"cat_2_index\": 407, \"group\": [666.0, 441.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67186_BALBc-1_X01_Y02_590_689\", \"ini\": 1340, \"clust\": 1889, \"rank\": 2825, \"rankvar\": 2783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1486, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 233, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2468, \"group\": [1889.0, 1079.0, 329.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67202_BALBc-1_X01_Y02_590_825\", \"ini\": 1339, \"clust\": 735, \"rank\": 319, \"rankvar\": 396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1487, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2062, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2618, \"group\": [735.0, 466.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67369_BALBc-1_X01_Y02_593_1000\", \"ini\": 1338, \"clust\": 866, \"rank\": 138, \"rankvar\": 255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1488, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1248, \"cat-2\": \"Density: 24\", \"cat_2_index\": 524, \"group\": [879.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67476_BALBc-1_X01_Y02_594_578\", \"ini\": 1337, \"clust\": 1011, \"rank\": 571, \"rankvar\": 489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1489, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 234, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2569, \"group\": [1009.0, 514.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67538_BALBc-1_X01_Y02_595_430\", \"ini\": 1336, \"clust\": 2090, \"rank\": 2679, \"rankvar\": 2584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1490, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2063, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2167, \"group\": [2089.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67823_BALBc-1_X01_Y02_598_978\", \"ini\": 1335, \"clust\": 899, \"rank\": 37, \"rankvar\": 610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1491, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1249, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1532, \"group\": [898.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68029_BALBc-1_X01_Y02_600_513\", \"ini\": 1334, \"clust\": 2057, \"rank\": 2767, \"rankvar\": 2381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2568, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2392, \"group\": [2055.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68242_BALBc-1_X01_Y02_603_235\", \"ini\": 1333, \"clust\": 1987, \"rank\": 2263, \"rankvar\": 1965, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1493, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 235, \"cat-2\": \"Density: 20\", \"cat_2_index\": 161, \"group\": [1992.0, 1126.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68295_BALBc-1_X01_Y02_603_794\", \"ini\": 1332, \"clust\": 49, \"rank\": 864, \"rankvar\": 779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1494, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2064, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2665, \"group\": [49.0, 40.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68341_BALBc-1_X01_Y02_604_634\", \"ini\": 1331, \"clust\": 466, \"rank\": 1093, \"rankvar\": 594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1495, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2065, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2325, \"group\": [471.0, 329.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68346_BALBc-1_X01_Y02_604_71\", \"ini\": 1330, \"clust\": 1981, \"rank\": 2501, \"rankvar\": 1928, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1496, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1250, \"cat-2\": \"Density: 25\", \"cat_2_index\": 663, \"group\": [1982.0, 1123.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68427_BALBc-1_X01_Y02_605_663\", \"ini\": 1329, \"clust\": 153, \"rank\": 1817, \"rankvar\": 2193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1497, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2066, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2393, \"group\": [153.0, 96.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68484_BALBc-1_X01_Y02_606_336\", \"ini\": 1328, \"clust\": 2101, \"rank\": 2579, \"rankvar\": 2251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1498, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2569, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1258, \"group\": [2100.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68508_BALBc-1_X01_Y02_606_611\", \"ini\": 1327, \"clust\": 2270, \"rank\": 1512, \"rankvar\": 1429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1499, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2067, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2747, \"group\": [2271.0, 1239.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68608_BALBc-1_X01_Y02_607_745\", \"ini\": 1326, \"clust\": 2046, \"rank\": 2446, \"rankvar\": 1561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1500, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 236, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2524, \"group\": [2045.0, 1146.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68626_BALBc-1_X01_Y02_607_953\", \"ini\": 1325, \"clust\": 1985, \"rank\": 2309, \"rankvar\": 1582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1501, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 625, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2326, \"group\": [1984.0, 1124.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68666_BALBc-1_X01_Y02_608_396\", \"ini\": 1324, \"clust\": 2345, \"rank\": 2274, \"rankvar\": 1381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1502, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2570, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2086, \"group\": [2342.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68709_BALBc-1_X01_Y02_608_893\", \"ini\": 1323, \"clust\": 2330, \"rank\": 2059, \"rankvar\": 1153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1503, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2571, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2708, \"group\": [2327.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68790_BALBc-1_X01_Y02_609_760\", \"ini\": 1322, \"clust\": 1003, \"rank\": 198, \"rankvar\": 1311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1504, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 237, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2394, \"group\": [1004.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68847_BALBc-1_X01_Y02_61_732\", \"ini\": 1321, \"clust\": 15, \"rank\": 1560, \"rankvar\": 2265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1505, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2572, \"cat-2\": \"Density: 20\", \"cat_2_index\": 162, \"group\": [18.0, 17.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68852_BALBc-1_X01_Y02_61_768\", \"ini\": 1320, \"clust\": 409, \"rank\": 455, \"rankvar\": 1777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1506, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2243, \"cat-2\": \"Density: 22\", \"cat_2_index\": 289, \"group\": [409.0, 287.0, 98.0, 29.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68930_BALBc-1_X01_Y02_610_841\", \"ini\": 1319, \"clust\": 2365, \"rank\": 2299, \"rankvar\": 1588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1507, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2573, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2525, \"group\": [2365.0, 1262.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69043_BALBc-1_X01_Y02_612_22\", \"ini\": 1318, \"clust\": 1543, \"rank\": 2449, \"rankvar\": 1942, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1508, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1974, \"cat-2\": \"Density: 24\", \"cat_2_index\": 525, \"group\": [1543.0, 835.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69048_BALBc-1_X01_Y02_612_265\", \"ini\": 1317, \"clust\": 205, \"rank\": 847, \"rankvar\": 997, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1509, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2574, \"cat-2\": \"Density: 22\", \"cat_2_index\": 290, \"group\": [205.0, 138.0, 46.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69070_BALBc-1_X01_Y02_612_557\", \"ini\": 1316, \"clust\": 2084, \"rank\": 2434, \"rankvar\": 2211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1510, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2068, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2469, \"group\": [2085.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69187_BALBc-1_X01_Y02_614_192\", \"ini\": 1315, \"clust\": 1137, \"rank\": 895, \"rankvar\": 1091, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1511, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2314, \"cat-2\": \"Density: 19\", \"cat_2_index\": 122, \"group\": [1138.0, 540.0, 148.0, 37.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69384_BALBc-1_X01_Y02_616_696\", \"ini\": 1314, \"clust\": 2111, \"rank\": 2760, \"rankvar\": 2575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1512, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2069, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2470, \"group\": [2107.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69441_BALBc-1_X01_Y02_617_581\", \"ini\": 1313, \"clust\": 2527, \"rank\": 1438, \"rankvar\": 1520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1513, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2070, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2666, \"group\": [2527.0, 1355.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69814_BALBc-1_X01_Y02_621_448\", \"ini\": 1312, \"clust\": 2121, \"rank\": 2164, \"rankvar\": 2342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1514, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2071, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2252, \"group\": [2119.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69943_BALBc-1_X01_Y02_622_815\", \"ini\": 1311, \"clust\": 664, \"rank\": 201, \"rankvar\": 1017, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1515, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2072, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2570, \"group\": [663.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70167_BALBc-1_X01_Y02_625_622\", \"ini\": 1310, \"clust\": 2037, \"rank\": 2441, \"rankvar\": 1677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1516, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2073, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2667, \"group\": [2034.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70245_BALBc-1_X01_Y02_626_657\", \"ini\": 1309, \"clust\": 419, \"rank\": 1103, \"rankvar\": 762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1517, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2074, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2571, \"group\": [424.0, 300.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70250_BALBc-1_X01_Y02_626_738\", \"ini\": 1308, \"clust\": 2114, \"rank\": 2731, \"rankvar\": 2693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1518, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2075, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2619, \"group\": [2110.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70390_BALBc-1_X01_Y02_628_794\", \"ini\": 1307, \"clust\": 115, \"rank\": 620, \"rankvar\": 944, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1519, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 915, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2620, \"group\": [118.0, 74.0, 24.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70677_BALBc-1_X01_Y02_631_569\", \"ini\": 1306, \"clust\": 887, \"rank\": 22, \"rankvar\": 236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1520, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 238, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2621, \"group\": [887.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70732_BALBc-1_X01_Y02_632_214\", \"ini\": 1305, \"clust\": 1350, \"rank\": 1361, \"rankvar\": 2658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1521, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2575, \"cat-2\": \"Density: 22\", \"cat_2_index\": 291, \"group\": [1351.0, 712.0, 211.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70788_BALBc-1_X01_Y02_632_885\", \"ini\": 1304, \"clust\": 635, \"rank\": 383, \"rankvar\": 587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1522, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2576, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2526, \"group\": [637.0, 428.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70792_BALBc-1_X01_Y02_632_917\", \"ini\": 1303, \"clust\": 2316, \"rank\": 2043, \"rankvar\": 1299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1523, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 626, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2622, \"group\": [2317.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71010_BALBc-1_X01_Y02_635_775\", \"ini\": 1302, \"clust\": 2053, \"rank\": 2796, \"rankvar\": 2639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1524, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2076, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2471, \"group\": [2050.0, 1148.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71015_BALBc-1_X01_Y02_635_841\", \"ini\": 1301, \"clust\": 2767, \"rank\": 1939, \"rankvar\": 1304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1525, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 916, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2327, \"group\": [2768.0, 1499.0, 447.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71192_BALBc-1_X01_Y02_638_152\", \"ini\": 1300, \"clust\": 125, \"rank\": 964, \"rankvar\": 820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1526, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1251, \"cat-2\": \"Density: 23\", \"cat_2_index\": 408, \"group\": [128.0, 80.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71313_BALBc-1_X01_Y02_639_527\", \"ini\": 1299, \"clust\": 1847, \"rank\": 2137, \"rankvar\": 1783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1527, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2077, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2395, \"group\": [1848.0, 1041.0, 313.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71373_BALBc-1_X01_Y02_64_410\", \"ini\": 1298, \"clust\": 1406, \"rank\": 1859, \"rankvar\": 1050, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1528, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1252, \"cat-2\": \"Density: 21\", \"cat_2_index\": 212, \"group\": [1406.0, 756.0, 223.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71596_BALBc-1_X01_Y02_642_538\", \"ini\": 1297, \"clust\": 2435, \"rank\": 1226, \"rankvar\": 1432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1529, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2078, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2328, \"group\": [2436.0, 1297.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71667_BALBc-1_X01_Y02_643_341\", \"ini\": 1296, \"clust\": 2203, \"rank\": 1194, \"rankvar\": 1310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1530, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2079, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1771, \"group\": [2204.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71767_BALBc-1_X01_Y02_644_390\", \"ini\": 1295, \"clust\": 2036, \"rank\": 2265, \"rankvar\": 954, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1531, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2080, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1988, \"group\": [2036.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71919_BALBc-1_X01_Y02_646_330\", \"ini\": 1294, \"clust\": 2274, \"rank\": 1879, \"rankvar\": 1258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1532, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2081, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1407, \"group\": [2273.0, 1240.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72032_BALBc-1_X01_Y02_647_871\", \"ini\": 1293, \"clust\": 2399, \"rank\": 2706, \"rankvar\": 1553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1533, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2577, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2623, \"group\": [2400.0, 1270.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72139_BALBc-1_X01_Y02_649_280\", \"ini\": 1292, \"clust\": 2704, \"rank\": 2673, \"rankvar\": 2519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1534, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2578, \"cat-2\": \"Density: 26\", \"cat_2_index\": 808, \"group\": [2705.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72165_BALBc-1_X01_Y02_649_642\", \"ini\": 1291, \"clust\": 2100, \"rank\": 2747, \"rankvar\": 2753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1535, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2082, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2777, \"group\": [2115.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72176_BALBc-1_X01_Y02_649_80\", \"ini\": 1290, \"clust\": 810, \"rank\": 68, \"rankvar\": 684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1536, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1253, \"cat-2\": \"Density: 22\", \"cat_2_index\": 292, \"group\": [809.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72245_BALBc-1_X01_Y02_65_662\", \"ini\": 1289, \"clust\": 1163, \"rank\": 1276, \"rankvar\": 2408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1537, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1254, \"cat-2\": \"Density: 21\", \"cat_2_index\": 213, \"group\": [1162.0, 559.0, 155.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72484_BALBc-1_X01_Y02_652_944\", \"ini\": 1288, \"clust\": 2175, \"rank\": 1980, \"rankvar\": 1919, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1538, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 239, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2253, \"group\": [2174.0, 1180.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72716_BALBc-1_X01_Y02_656_182\", \"ini\": 1287, \"clust\": 2695, \"rank\": 2772, \"rankvar\": 2540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1539, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2579, \"cat-2\": \"Density: 24\", \"cat_2_index\": 526, \"group\": [2696.0, 1452.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72777_BALBc-1_X01_Y02_656_712\", \"ini\": 1286, \"clust\": 2079, \"rank\": 2716, \"rankvar\": 2270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1540, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2083, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2624, \"group\": [2077.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72835_BALBc-1_X01_Y02_657_361\", \"ini\": 1285, \"clust\": 802, \"rank\": 302, \"rankvar\": 22, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1541, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2580, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2254, \"group\": [803.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72877_BALBc-1_X01_Y02_657_890\", \"ini\": 1284, \"clust\": 1047, \"rank\": 153, \"rankvar\": 717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 917, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2625, \"group\": [1046.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72970_BALBc-1_X01_Y02_659_402\", \"ini\": 1283, \"clust\": 855, \"rank\": 6, \"rankvar\": 970, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1543, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2084, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2168, \"group\": [853.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72984_BALBc-1_X01_Y02_659_578\", \"ini\": 1282, \"clust\": 2103, \"rank\": 2581, \"rankvar\": 2321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1544, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2085, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2668, \"group\": [2114.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73026_BALBc-1_X01_Y02_659_964\", \"ini\": 1281, \"clust\": 2375, \"rank\": 2561, \"rankvar\": 2491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1545, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2581, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1772, \"group\": [2374.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73130_BALBc-1_X01_Y02_660_371\", \"ini\": 1280, \"clust\": 970, \"rank\": 814, \"rankvar\": 388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1546, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 240, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2169, \"group\": [970.0, 497.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73323_BALBc-1_X01_Y02_662_515\", \"ini\": 1279, \"clust\": 991, \"rank\": 645, \"rankvar\": 1181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1547, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2086, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2087, \"group\": [992.0, 509.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73330_BALBc-1_X01_Y02_662_600\", \"ini\": 1278, \"clust\": 483, \"rank\": 948, \"rankvar\": 213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1548, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2087, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2709, \"group\": [484.0, 332.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73406_BALBc-1_X01_Y02_663_676\", \"ini\": 1277, \"clust\": 2014, \"rank\": 2195, \"rankvar\": 2127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1549, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2088, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2669, \"group\": [2017.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73682_BALBc-1_X01_Y02_667_559\", \"ini\": 1276, \"clust\": 1050, \"rank\": 337, \"rankvar\": 1590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1550, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2089, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2626, \"group\": [1051.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73864_BALBc-1_X01_Y02_669_904\", \"ini\": 1275, \"clust\": 2025, \"rank\": 2527, \"rankvar\": 1764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 241, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2396, \"group\": [2024.0, 1140.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74137_BALBc-1_X01_Y02_672_747\", \"ini\": 1274, \"clust\": 868, \"rank\": 67, \"rankvar\": 269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1552, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2090, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2572, \"group\": [867.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74157_BALBc-1_X01_Y02_672_938\", \"ini\": 1273, \"clust\": 898, \"rank\": 45, \"rankvar\": 535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1553, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1255, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2170, \"group\": [897.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74183_BALBc-1_X01_Y02_673_288\", \"ini\": 1272, \"clust\": 523, \"rank\": 423, \"rankvar\": 1607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1554, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2091, \"cat-2\": \"Density: 27\", \"cat_2_index\": 958, \"group\": [523.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74202_BALBc-1_X01_Y02_673_537\", \"ini\": 1271, \"clust\": 1134, \"rank\": 987, \"rankvar\": 879, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1555, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2092, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2255, \"group\": [1134.0, 536.0, 146.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74319_BALBc-1_X01_Y02_674_785\", \"ini\": 1270, \"clust\": 1354, \"rank\": 946, \"rankvar\": 927, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1556, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 918, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2527, \"group\": [1355.0, 716.0, 212.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74367_BALBc-1_X01_Y02_675_381\", \"ini\": 1269, \"clust\": 2356, \"rank\": 2639, \"rankvar\": 2100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1557, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 242, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2256, \"group\": [2351.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74379_BALBc-1_X01_Y02_675_428\", \"ini\": 1268, \"clust\": 2106, \"rank\": 2629, \"rankvar\": 2254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1558, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2093, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2171, \"group\": [2106.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74438_BALBc-1_X01_Y02_676_159\", \"ini\": 1267, \"clust\": 1260, \"rank\": 2503, \"rankvar\": 2562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1559, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2456, \"cat-2\": \"Density: 21\", \"cat_2_index\": 214, \"group\": [1260.0, 639.0, 183.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74507_BALBc-1_X01_Y02_676_988\", \"ini\": 1266, \"clust\": 2267, \"rank\": 1808, \"rankvar\": 1344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1560, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1256, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1112, \"group\": [2267.0, 1238.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74529_BALBc-1_X01_Y02_677_328\", \"ini\": 1265, \"clust\": 2236, \"rank\": 1577, \"rankvar\": 378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1561, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2094, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1773, \"group\": [2237.0, 1216.0, 363.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74573_BALBc-1_X01_Y02_677_811\", \"ini\": 1264, \"clust\": 1848, \"rank\": 2152, \"rankvar\": 2413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1562, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1257, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2670, \"group\": [1854.0, 1046.0, 315.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74598_BALBc-1_X01_Y02_678_172\", \"ini\": 1263, \"clust\": 2731, \"rank\": 2350, \"rankvar\": 2557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1563, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2582, \"cat-2\": \"Density: 24\", \"cat_2_index\": 527, \"group\": [2733.0, 1468.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74641_BALBc-1_X01_Y02_678_615\", \"ini\": 1262, \"clust\": 2130, \"rank\": 2615, \"rankvar\": 2646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1564, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2095, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2778, \"group\": [2128.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74779_BALBc-1_X01_Y02_68_443\", \"ini\": 1261, \"clust\": 1074, \"rank\": 575, \"rankvar\": 1096, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1565, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 704, \"cat-2\": \"Density: 26\", \"cat_2_index\": 809, \"group\": [1075.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74924_BALBc-1_X01_Y02_681_731\", \"ini\": 1260, \"clust\": 2352, \"rank\": 2483, \"rankvar\": 1422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1566, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2096, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2397, \"group\": [2347.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75385_BALBc-1_X01_Y02_687_918\", \"ini\": 1259, \"clust\": 717, \"rank\": 512, \"rankvar\": 459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1567, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1258, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2472, \"group\": [719.0, 460.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75452_BALBc-1_X01_Y02_688_793\", \"ini\": 1258, \"clust\": 1079, \"rank\": 189, \"rankvar\": 957, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1568, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1259, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2573, \"group\": [1082.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75503_BALBc-1_X01_Y02_689_468\", \"ini\": 1257, \"clust\": 2107, \"rank\": 2739, \"rankvar\": 2462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1569, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2097, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2329, \"group\": [2104.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75575_BALBc-1_X01_Y02_69_548\", \"ini\": 1256, \"clust\": 2774, \"rank\": 2320, \"rankvar\": 2094, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1570, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 243, \"cat-2\": \"Density: 26\", \"cat_2_index\": 810, \"group\": [2773.0, 1502.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75777_BALBc-1_X01_Y02_692_441\", \"ini\": 1255, \"clust\": 878, \"rank\": 2, \"rankvar\": 478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1571, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 244, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1989, \"group\": [875.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75798_BALBc-1_X01_Y02_692_654\", \"ini\": 1254, \"clust\": 2041, \"rank\": 1757, \"rankvar\": 1168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1572, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2098, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2748, \"group\": [2044.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75805_BALBc-1_X01_Y02_692_719\", \"ini\": 1253, \"clust\": 812, \"rank\": 230, \"rankvar\": 84, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1573, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2099, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2749, \"group\": [815.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76045_BALBc-1_X01_Y02_695_763\", \"ini\": 1252, \"clust\": 2361, \"rank\": 2315, \"rankvar\": 1511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1574, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1260, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2671, \"group\": [2361.0, 1261.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76047_BALBc-1_X01_Y02_695_820\", \"ini\": 1251, \"clust\": 1843, \"rank\": 1747, \"rankvar\": 1925, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1261, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2627, \"group\": [1841.0, 1034.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76155_BALBc-1_X01_Y02_697_37\", \"ini\": 1250, \"clust\": 562, \"rank\": 1274, \"rankvar\": 854, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1576, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2492, \"cat-2\": \"Density: 20\", \"cat_2_index\": 163, \"group\": [562.0, 386.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76157_BALBc-1_X01_Y02_697_390\", \"ini\": 1249, \"clust\": 875, \"rank\": 4, \"rankvar\": 526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1577, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 245, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2257, \"group\": [872.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76261_BALBc-1_X01_Y02_698_588\", \"ini\": 1248, \"clust\": 1808, \"rank\": 2788, \"rankvar\": 2817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1578, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2100, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2750, \"group\": [1809.0, 1023.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76284_BALBc-1_X01_Y02_698_894\", \"ini\": 1247, \"clust\": 996, \"rank\": 414, \"rankvar\": 888, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1579, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 919, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2710, \"group\": [1006.0, 512.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76311_BALBc-1_X01_Y02_699_282\", \"ini\": 1246, \"clust\": 1680, \"rank\": 2074, \"rankvar\": 1610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1580, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2583, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1259, \"group\": [1681.0, 938.0, 278.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76337_BALBc-1_X01_Y02_699_564\", \"ini\": 1245, \"clust\": 1853, \"rank\": 2714, \"rankvar\": 2180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1581, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2101, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2628, \"group\": [1850.0, 1042.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76344_BALBc-1_X01_Y02_699_679\", \"ini\": 1244, \"clust\": 1126, \"rank\": 1164, \"rankvar\": 1056, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1582, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2102, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2629, \"group\": [1126.0, 528.0, 142.0, 35.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76479_BALBc-1_X01_Y02_70_471\", \"ini\": 1243, \"clust\": 1800, \"rank\": 2319, \"rankvar\": 2629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1583, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2457, \"cat-2\": \"Density: 26\", \"cat_2_index\": 811, \"group\": [1804.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76545_BALBc-1_X01_Y02_700_356\", \"ini\": 1242, \"clust\": 1030, \"rank\": 323, \"rankvar\": 462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1584, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 246, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2088, \"group\": [1028.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76565_BALBc-1_X01_Y02_700_603\", \"ini\": 1241, \"clust\": 2077, \"rank\": 2776, \"rankvar\": 2767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1585, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 247, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2751, \"group\": [2080.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76633_BALBc-1_X01_Y02_701_469\", \"ini\": 1240, \"clust\": 651, \"rank\": 264, \"rankvar\": 448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1586, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 248, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2258, \"group\": [651.0, 437.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77012_BALBc-1_X01_Y02_706_499\", \"ini\": 1239, \"clust\": 2251, \"rank\": 1764, \"rankvar\": 524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1587, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2103, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2330, \"group\": [2251.0, 1228.0, 370.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77022_BALBc-1_X01_Y02_706_622\", \"ini\": 1238, \"clust\": 2409, \"rank\": 1145, \"rankvar\": 1353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1588, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2104, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2711, \"group\": [2413.0, 1283.0, 385.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77055_BALBc-1_X01_Y02_706_998\", \"ini\": 1237, \"clust\": 2415, \"rank\": 1271, \"rankvar\": 670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1589, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1262, \"cat-2\": \"Density: 22\", \"cat_2_index\": 293, \"group\": [2419.0, 1287.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77190_BALBc-1_X01_Y02_708_738\", \"ini\": 1236, \"clust\": 468, \"rank\": 752, \"rankvar\": 500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1590, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1263, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2574, \"group\": [469.0, 327.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77401_BALBc-1_X01_Y02_710_828\", \"ini\": 1235, \"clust\": 1012, \"rank\": 444, \"rankvar\": 43, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1264, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2630, \"group\": [1010.0, 514.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77491_BALBc-1_X01_Y02_711_906\", \"ini\": 1234, \"clust\": 2376, \"rank\": 2332, \"rankvar\": 1898, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1592, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 249, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2672, \"group\": [2375.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77533_BALBc-1_X01_Y02_712_413\", \"ini\": 1233, \"clust\": 2366, \"rank\": 2065, \"rankvar\": 880, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1593, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2105, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2331, \"group\": [2366.0, 1262.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77644_BALBc-1_X01_Y02_713_803\", \"ini\": 1232, \"clust\": 1830, \"rank\": 2668, \"rankvar\": 2177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1594, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1265, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2631, \"group\": [1829.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77833_BALBc-1_X01_Y02_716_257\", \"ini\": 1231, \"clust\": 258, \"rank\": 849, \"rankvar\": 759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1595, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2584, \"cat-2\": \"Density: 24\", \"cat_2_index\": 528, \"group\": [257.0, 180.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77991_BALBc-1_X01_Y02_718_159\", \"ini\": 1230, \"clust\": 1256, \"rank\": 2063, \"rankvar\": 1984, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1596, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2585, \"cat-2\": \"Density: 22\", \"cat_2_index\": 294, \"group\": [1261.0, 640.0, 184.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78053_BALBc-1_X01_Y02_718_850\", \"ini\": 1229, \"clust\": 1151, \"rank\": 2016, \"rankvar\": 2090, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1597, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1266, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2473, \"group\": [1152.0, 552.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78060_BALBc-1_X01_Y02_718_925\", \"ini\": 1228, \"clust\": 1093, \"rank\": 227, \"rankvar\": 338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1598, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1267, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2575, \"group\": [1094.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78089_BALBc-1_X01_Y02_719_369\", \"ini\": 1227, \"clust\": 1923, \"rank\": 2324, \"rankvar\": 2002, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1599, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 250, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2172, \"group\": [1923.0, 1105.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78113_BALBc-1_X01_Y02_719_632\", \"ini\": 1226, \"clust\": 2080, \"rank\": 2774, \"rankvar\": 2615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1600, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 251, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2752, \"group\": [2078.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78309_BALBc-1_X01_Y02_721_333\", \"ini\": 1225, \"clust\": 718, \"rank\": 147, \"rankvar\": 85, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1601, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 252, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1990, \"group\": [717.0, 460.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78374_BALBc-1_X01_Y02_721_954\", \"ini\": 1224, \"clust\": 1204, \"rank\": 962, \"rankvar\": 1824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1602, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1268, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2089, \"group\": [1203.0, 596.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78457_BALBc-1_X01_Y02_722_887\", \"ini\": 1223, \"clust\": 2242, \"rank\": 2094, \"rankvar\": 482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1603, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 253, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2816, \"group\": [2241.0, 1219.0, 366.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78466_BALBc-1_X01_Y02_723_123\", \"ini\": 1222, \"clust\": 2814, \"rank\": 1509, \"rankvar\": 1368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1604, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 920, \"cat-2\": \"Density: 21\", \"cat_2_index\": 215, \"group\": [2813.0, 1528.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78589_BALBc-1_X01_Y02_724_723\", \"ini\": 1221, \"clust\": 2545, \"rank\": 1840, \"rankvar\": 1661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1605, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2106, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2474, \"group\": [2546.0, 1371.0, 408.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78729_BALBc-1_X01_Y02_726_667\", \"ini\": 1220, \"clust\": 1060, \"rank\": 251, \"rankvar\": 1163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1606, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 254, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2753, \"group\": [1060.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78765_BALBc-1_X01_Y02_727_233\", \"ini\": 1219, \"clust\": 2688, \"rank\": 2812, \"rankvar\": 2451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1607, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2586, \"cat-2\": \"Density: 25\", \"cat_2_index\": 664, \"group\": [2692.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78858_BALBc-1_X01_Y02_728_317\", \"ini\": 1218, \"clust\": 1938, \"rank\": 1938, \"rankvar\": 1234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1608, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 255, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2090, \"group\": [1939.0, 1111.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78883_BALBc-1_X01_Y02_728_677\", \"ini\": 1217, \"clust\": 500, \"rank\": 975, \"rankvar\": 143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1609, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2107, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2632, \"group\": [499.0, 340.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78937_BALBc-1_X01_Y02_729_454\", \"ini\": 1216, \"clust\": 2346, \"rank\": 2196, \"rankvar\": 1187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1610, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2108, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2259, \"group\": [2343.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78946_BALBc-1_X01_Y02_729_586\", \"ini\": 1215, \"clust\": 2112, \"rank\": 2783, \"rankvar\": 2563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1611, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2109, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2673, \"group\": [2108.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79000_BALBc-1_X01_Y02_73_364\", \"ini\": 1214, \"clust\": 1270, \"rank\": 1206, \"rankvar\": 1626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1612, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1269, \"cat-2\": \"Density: 21\", \"cat_2_index\": 216, \"group\": [1271.0, 650.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79124_BALBc-1_X01_Y02_730_931\", \"ini\": 1213, \"clust\": 1828, \"rank\": 2481, \"rankvar\": 1609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1613, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1270, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2332, \"group\": [1828.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79128_BALBc-1_X01_Y02_730_977\", \"ini\": 1212, \"clust\": 1855, \"rank\": 2664, \"rankvar\": 2679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1614, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1271, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1533, \"group\": [1856.0, 1048.0, 316.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79171_BALBc-1_X01_Y02_731_534\", \"ini\": 1211, \"clust\": 2277, \"rank\": 1888, \"rankvar\": 1455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1615, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2110, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2633, \"group\": [2277.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79269_BALBc-1_X01_Y02_732_742\", \"ini\": 1210, \"clust\": 2484, \"rank\": 1478, \"rankvar\": 542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1616, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1272, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2634, \"group\": [2483.0, 1330.0, 396.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79364_BALBc-1_X01_Y02_733_888\", \"ini\": 1209, \"clust\": 918, \"rank\": 95, \"rankvar\": 28, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1617, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1273, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2635, \"group\": [918.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79543_BALBc-1_X01_Y02_735_827\", \"ini\": 1208, \"clust\": 895, \"rank\": 42, \"rankvar\": 344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1618, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 256, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2528, \"group\": [894.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79586_BALBc-1_X01_Y02_736_403\", \"ini\": 1207, \"clust\": 1054, \"rank\": 668, \"rankvar\": 433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1619, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2111, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2398, \"group\": [1055.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79601_BALBc-1_X01_Y02_736_604\", \"ini\": 1206, \"clust\": 1094, \"rank\": 124, \"rankvar\": 623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1620, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 257, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2636, \"group\": [1103.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79632_BALBc-1_X01_Y02_737_250\", \"ini\": 1205, \"clust\": 1099, \"rank\": 52, \"rankvar\": 166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1621, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 258, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1113, \"group\": [1096.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79634_BALBc-1_X01_Y02_737_3\", \"ini\": 1204, \"clust\": 1460, \"rank\": 2313, \"rankvar\": 1599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1622, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2812, \"cat-2\": \"Density: 25\", \"cat_2_index\": 665, \"group\": [1460.0, 796.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79643_BALBc-1_X01_Y02_737_366\", \"ini\": 1203, \"clust\": 2094, \"rank\": 2562, \"rankvar\": 2686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1623, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 259, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2260, \"group\": [2093.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79664_BALBc-1_X01_Y02_737_57\", \"ini\": 1202, \"clust\": 127, \"rank\": 934, \"rankvar\": 481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1624, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2493, \"cat-2\": \"Density: 22\", \"cat_2_index\": 295, \"group\": [127.0, 80.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79820_BALBc-1_X01_Y02_739_546\", \"ini\": 1201, \"clust\": 2086, \"rank\": 2386, \"rankvar\": 2359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1625, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2112, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2754, \"group\": [2084.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79964_BALBc-1_X01_Y02_740_484\", \"ini\": 1200, \"clust\": 2105, \"rank\": 2804, \"rankvar\": 2698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1626, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 260, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1991, \"group\": [2103.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80233_BALBc-1_X01_Y02_744_315\", \"ini\": 1199, \"clust\": 2208, \"rank\": 1566, \"rankvar\": 1363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1627, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1274, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1992, \"group\": [2208.0, 1190.0, 349.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80367_BALBc-1_X01_Y02_746_112\", \"ini\": 1198, \"clust\": 66, \"rank\": 1100, \"rankvar\": 2059, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1628, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2315, \"cat-2\": \"Density: 20\", \"cat_2_index\": 164, \"group\": [64.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80487_BALBc-1_X01_Y02_747_644\", \"ini\": 1197, \"clust\": 479, \"rank\": 374, \"rankvar\": 753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1629, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2113, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2779, \"group\": [479.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80586_BALBc-1_X01_Y02_748_800\", \"ini\": 1196, \"clust\": 1815, \"rank\": 2566, \"rankvar\": 1194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1630, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1275, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2637, \"group\": [1816.0, 1027.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80591_BALBc-1_X01_Y02_748_849\", \"ini\": 1195, \"clust\": 2394, \"rank\": 2412, \"rankvar\": 873, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1631, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 261, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2712, \"group\": [2397.0, 1269.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80621_BALBc-1_X01_Y02_749_281\", \"ini\": 1194, \"clust\": 2596, \"rank\": 1606, \"rankvar\": 430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1632, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 262, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1534, \"group\": [2595.0, 1403.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80660_BALBc-1_X01_Y02_749_710\", \"ini\": 1193, \"clust\": 2173, \"rank\": 1392, \"rankvar\": 1082, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1633, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 263, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2713, \"group\": [2172.0, 1178.0, 347.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80840_BALBc-1_X01_Y02_750_977\", \"ini\": 1192, \"clust\": 429, \"rank\": 554, \"rankvar\": 1006, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1634, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1276, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1665, \"group\": [428.0, 303.0, 105.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80920_BALBc-1_X01_Y02_752_157\", \"ini\": 1191, \"clust\": 556, \"rank\": 794, \"rankvar\": 286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1635, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 264, \"cat-2\": \"Density: 21\", \"cat_2_index\": 217, \"group\": [555.0, 380.0, 127.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80933_BALBc-1_X01_Y02_752_347\", \"ini\": 1190, \"clust\": 389, \"rank\": 1144, \"rankvar\": 2096, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1636, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1277, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2173, \"group\": [389.0, 271.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80959_BALBc-1_X01_Y02_752_681\", \"ini\": 1189, \"clust\": 2321, \"rank\": 1979, \"rankvar\": 1349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1637, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 265, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2576, \"group\": [2319.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81055_BALBc-1_X01_Y02_753_730\", \"ini\": 1188, \"clust\": 2031, \"rank\": 2593, \"rankvar\": 2243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1638, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 266, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2674, \"group\": [2030.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81183_BALBc-1_X01_Y02_755_360\", \"ini\": 1187, \"clust\": 2209, \"rank\": 1469, \"rankvar\": 650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1639, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1278, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2174, \"group\": [2209.0, 1190.0, 349.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81243_BALBc-1_X01_Y02_756_213\", \"ini\": 1186, \"clust\": 2613, \"rank\": 1598, \"rankvar\": 946, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1640, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2587, \"cat-2\": \"Density: 24\", \"cat_2_index\": 529, \"group\": [2614.0, 1411.0, 417.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81269_BALBc-1_X01_Y02_756_466\", \"ini\": 1185, \"clust\": 2092, \"rank\": 2528, \"rankvar\": 2536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1641, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 267, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2091, \"group\": [2091.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81277_BALBc-1_X01_Y02_756_573\", \"ini\": 1184, \"clust\": 837, \"rank\": 208, \"rankvar\": 94, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1642, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 268, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2802, \"group\": [840.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81309_BALBc-1_X01_Y02_756_874\", \"ini\": 1183, \"clust\": 3, \"rank\": 1554, \"rankvar\": 850, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1643, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1279, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2638, \"group\": [4.0, 4.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81353_BALBc-1_X01_Y02_757_444\", \"ini\": 1182, \"clust\": 2131, \"rank\": 2347, \"rankvar\": 1842, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1644, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2114, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2175, \"group\": [2129.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81355_BALBc-1_X01_Y02_757_476\", \"ini\": 1181, \"clust\": 725, \"rank\": 711, \"rankvar\": 50, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1645, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2115, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2092, \"group\": [742.0, 469.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81446_BALBc-1_X01_Y02_758_596\", \"ini\": 1180, \"clust\": 2116, \"rank\": 2140, \"rankvar\": 1908, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1646, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 269, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2780, \"group\": [2116.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81458_BALBc-1_X01_Y02_758_756\", \"ini\": 1179, \"clust\": 790, \"rank\": 84, \"rankvar\": 982, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1647, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1280, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2714, \"group\": [791.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81459_BALBc-1_X01_Y02_758_783\", \"ini\": 1178, \"clust\": 2424, \"rank\": 1370, \"rankvar\": 823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1648, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1281, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2675, \"group\": [2425.0, 1292.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81463_BALBc-1_X01_Y02_758_825\", \"ini\": 1177, \"clust\": 1886, \"rank\": 2165, \"rankvar\": 1845, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1649, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 270, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2676, \"group\": [1886.0, 1076.0, 328.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81725_BALBc-1_X01_Y02_761_43\", \"ini\": 1176, \"clust\": 2824, \"rank\": 1891, \"rankvar\": 1468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1650, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2316, \"cat-2\": \"Density: 20\", \"cat_2_index\": 165, \"group\": [2822.0, 1534.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81746_BALBc-1_X01_Y02_761_621\", \"ini\": 1175, \"clust\": 2380, \"rank\": 2658, \"rankvar\": 1949, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1651, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2116, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2715, \"group\": [2380.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81892_BALBc-1_X01_Y02_763_542\", \"ini\": 1174, \"clust\": 2118, \"rank\": 2209, \"rankvar\": 2482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1652, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 271, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2716, \"group\": [2121.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82092_BALBc-1_X01_Y02_766_413\", \"ini\": 1173, \"clust\": 2191, \"rank\": 1704, \"rankvar\": 1972, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1653, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2117, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2176, \"group\": [2187.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82120_BALBc-1_X01_Y02_766_839\", \"ini\": 1172, \"clust\": 549, \"rank\": 732, \"rankvar\": 1528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1654, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 272, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2781, \"group\": [554.0, 379.0, 126.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82269_BALBc-1_X01_Y02_768_578\", \"ini\": 1171, \"clust\": 2317, \"rank\": 2078, \"rankvar\": 1737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1655, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 273, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2677, \"group\": [2316.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82462_BALBc-1_X01_Y02_770_223\", \"ini\": 1170, \"clust\": 2579, \"rank\": 1640, \"rankvar\": 1973, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1656, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 274, \"cat-2\": \"Density: 25\", \"cat_2_index\": 666, \"group\": [2579.0, 1393.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82468_BALBc-1_X01_Y02_770_255\", \"ini\": 1169, \"clust\": 259, \"rank\": 969, \"rankvar\": 263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1657, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 275, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1408, \"group\": [258.0, 181.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82542_BALBc-1_X01_Y02_771_302\", \"ini\": 1168, \"clust\": 449, \"rank\": 396, \"rankvar\": 324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1658, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1282, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1774, \"group\": [448.0, 313.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82661_BALBc-1_X01_Y02_772_660\", \"ini\": 1167, \"clust\": 2150, \"rank\": 957, \"rankvar\": 270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1659, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2118, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2782, \"group\": [2148.0, 1165.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82801_BALBc-1_X01_Y02_774_517\", \"ini\": 1166, \"clust\": 2224, \"rank\": 1463, \"rankvar\": 1476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1660, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2119, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2333, \"group\": [2223.0, 1203.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82803_BALBc-1_X01_Y02_774_554\", \"ini\": 1165, \"clust\": 512, \"rank\": 719, \"rankvar\": 307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1661, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 276, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2678, \"group\": [513.0, 352.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82911_BALBc-1_X01_Y02_776_103\", \"ini\": 1164, \"clust\": 2770, \"rank\": 1976, \"rankvar\": 1216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1662, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1283, \"cat-2\": \"Density: 20\", \"cat_2_index\": 166, \"group\": [2770.0, 1500.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83429_BALBc-1_X01_Y02_781_749\", \"ini\": 1163, \"clust\": 2308, \"rank\": 1915, \"rankvar\": 1712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1663, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 277, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2679, \"group\": [2305.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83606_BALBc-1_X01_Y02_784_170\", \"ini\": 1162, \"clust\": 691, \"rank\": 170, \"rankvar\": 1780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1664, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 278, \"cat-2\": \"Density: 24\", \"cat_2_index\": 530, \"group\": [692.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83627_BALBc-1_X01_Y02_784_444\", \"ini\": 1161, \"clust\": 1052, \"rank\": 508, \"rankvar\": 978, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1665, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 279, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2177, \"group\": [1050.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83644_BALBc-1_X01_Y02_784_688\", \"ini\": 1160, \"clust\": 2163, \"rank\": 1592, \"rankvar\": 1220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1666, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 280, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2755, \"group\": [2168.0, 1174.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83649_BALBc-1_X01_Y02_784_705\", \"ini\": 1159, \"clust\": 1928, \"rank\": 2648, \"rankvar\": 2653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1667, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 281, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2577, \"group\": [1930.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83656_BALBc-1_X01_Y02_784_772\", \"ini\": 1158, \"clust\": 276, \"rank\": 1301, \"rankvar\": 240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1668, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 282, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2756, \"group\": [279.0, 201.0, 73.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83744_BALBc-1_X01_Y02_785_846\", \"ini\": 1157, \"clust\": 1188, \"rank\": 1412, \"rankvar\": 1592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1669, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1284, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2803, \"group\": [1193.0, 586.0, 164.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83780_BALBc-1_X01_Y02_786_374\", \"ini\": 1156, \"clust\": 1790, \"rank\": 2377, \"rankvar\": 2657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1670, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1285, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2178, \"group\": [1795.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84081_BALBc-1_X01_Y02_789_906\", \"ini\": 1155, \"clust\": 2369, \"rank\": 2356, \"rankvar\": 1732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1671, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1286, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2717, \"group\": [2376.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84286_BALBc-1_X01_Y02_791_823\", \"ini\": 1154, \"clust\": 1193, \"rank\": 896, \"rankvar\": 188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1672, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 283, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2783, \"group\": [1194.0, 587.0, 165.0, 44.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84428_BALBc-1_X01_Y02_793_482\", \"ini\": 1153, \"clust\": 2349, \"rank\": 2573, \"rankvar\": 1413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1673, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2120, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2578, \"group\": [2346.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84437_BALBc-1_X01_Y02_793_558\", \"ini\": 1152, \"clust\": 2038, \"rank\": 2537, \"rankvar\": 1986, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1674, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 284, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2639, \"group\": [2035.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84444_BALBc-1_X01_Y02_793_629\", \"ini\": 1151, \"clust\": 2075, \"rank\": 2591, \"rankvar\": 2678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1675, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2121, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2718, \"group\": [2075.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84524_BALBc-1_X01_Y02_794_639\", \"ini\": 1150, \"clust\": 480, \"rank\": 304, \"rankvar\": 1125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1676, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2122, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2719, \"group\": [480.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84668_BALBc-1_X01_Y02_796_252\", \"ini\": 1149, \"clust\": 2678, \"rank\": 2041, \"rankvar\": 761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1677, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 285, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1114, \"group\": [2680.0, 1445.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84693_BALBc-1_X01_Y02_796_606\", \"ini\": 1148, \"clust\": 2211, \"rank\": 1590, \"rankvar\": 154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1678, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2123, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2822, \"group\": [2211.0, 1192.0, 350.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84771_BALBc-1_X01_Y02_797_576\", \"ini\": 1147, \"clust\": 481, \"rank\": 279, \"rankvar\": 857, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1679, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 286, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2804, \"group\": [481.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84890_BALBc-1_X01_Y02_799_133\", \"ini\": 1146, \"clust\": 97, \"rank\": 745, \"rankvar\": 1670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1680, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1287, \"cat-2\": \"Density: 22\", \"cat_2_index\": 296, \"group\": [97.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85210_BALBc-1_X01_Y02_801_416\", \"ini\": 1145, \"clust\": 491, \"rank\": 944, \"rankvar\": 195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1681, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2124, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2334, \"group\": [492.0, 336.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85318_BALBc-1_X01_Y02_802_791\", \"ini\": 1144, \"clust\": 2147, \"rank\": 1247, \"rankvar\": 547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1682, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 287, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2720, \"group\": [2146.0, 1163.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85392_BALBc-1_X01_Y02_803_774\", \"ini\": 1143, \"clust\": 2393, \"rank\": 2343, \"rankvar\": 1207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1683, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 288, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2757, \"group\": [2392.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85429_BALBc-1_X01_Y02_804_316\", \"ini\": 1142, \"clust\": 2485, \"rank\": 1812, \"rankvar\": 1298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1684, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1288, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1535, \"group\": [2484.0, 1331.0, 396.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85448_BALBc-1_X01_Y02_804_541\", \"ini\": 1141, \"clust\": 2480, \"rank\": 1959, \"rankvar\": 392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1685, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 289, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2640, \"group\": [2481.0, 1328.0, 395.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85463_BALBc-1_X01_Y02_804_714\", \"ini\": 1140, \"clust\": 472, \"rank\": 509, \"rankvar\": 268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1686, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 290, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2721, \"group\": [472.0, 330.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85557_BALBc-1_X01_Y02_805_753\", \"ini\": 1139, \"clust\": 2167, \"rank\": 1547, \"rankvar\": 1027, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1687, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 291, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2758, \"group\": [2166.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85602_BALBc-1_X01_Y02_806_33\", \"ini\": 1138, \"clust\": 1061, \"rank\": 669, \"rankvar\": 75, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1688, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2458, \"cat-2\": \"Density: 25\", \"cat_2_index\": 667, \"group\": [1065.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85669_BALBc-1_X01_Y02_807_182\", \"ini\": 1137, \"clust\": 2701, \"rank\": 2694, \"rankvar\": 2494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1689, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2588, \"cat-2\": \"Density: 27\", \"cat_2_index\": 959, \"group\": [2698.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85834_BALBc-1_X01_Y02_809_436\", \"ini\": 1136, \"clust\": 1908, \"rank\": 2185, \"rankvar\": 2147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1690, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2125, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2261, \"group\": [1907.0, 1094.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85868_BALBc-1_X01_Y02_809_912\", \"ini\": 1135, \"clust\": 1751, \"rank\": 359, \"rankvar\": 2203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1691, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1289, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2805, \"group\": [1750.0, 991.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85898_BALBc-1_X01_Y02_81_389\", \"ini\": 1134, \"clust\": 1327, \"rank\": 976, \"rankvar\": 1971, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1692, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1290, \"cat-2\": \"Density: 21\", \"cat_2_index\": 218, \"group\": [1327.0, 694.0, 207.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85923_BALBc-1_X01_Y02_81_743\", \"ini\": 1133, \"clust\": 1738, \"rank\": 2729, \"rankvar\": 2759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1693, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2589, \"cat-2\": \"Density: 25\", \"cat_2_index\": 668, \"group\": [1738.0, 981.0, 293.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85974_BALBc-1_X01_Y02_810_459\", \"ini\": 1132, \"clust\": 2196, \"rank\": 1627, \"rankvar\": 2332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1694, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 292, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2262, \"group\": [2190.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85979_BALBc-1_X01_Y02_810_520\", \"ini\": 1131, \"clust\": 2032, \"rank\": 2214, \"rankvar\": 1604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1695, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2126, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2475, \"group\": [2033.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86074_BALBc-1_X01_Y02_811_664\", \"ini\": 1130, \"clust\": 2370, \"rank\": 2351, \"rankvar\": 1230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1696, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 293, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2759, \"group\": [2369.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86098_BALBc-1_X01_Y02_811_975\", \"ini\": 1129, \"clust\": 2430, \"rank\": 837, \"rankvar\": 608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1697, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1291, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1666, \"group\": [2435.0, 1296.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86157_BALBc-1_X01_Y02_812_892\", \"ini\": 1128, \"clust\": 14, \"rank\": 1117, \"rankvar\": 306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1698, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1292, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2806, \"group\": [15.0, 14.0, 8.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86213_BALBc-1_X01_Y02_813_595\", \"ini\": 1127, \"clust\": 2076, \"rank\": 2618, \"rankvar\": 2559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1699, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 294, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2680, \"group\": [2076.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86243_BALBc-1_X01_Y02_813_835\", \"ini\": 1126, \"clust\": 2444, \"rank\": 1645, \"rankvar\": 828, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1700, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 295, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2722, \"group\": [2445.0, 1301.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86335_BALBc-1_X01_Y02_814_809\", \"ini\": 1125, \"clust\": 637, \"rank\": 254, \"rankvar\": 342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1701, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 296, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2723, \"group\": [636.0, 428.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86391_BALBc-1_X01_Y02_815_690\", \"ini\": 1124, \"clust\": 847, \"rank\": 333, \"rankvar\": 66, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1702, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 297, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2784, \"group\": [847.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86425_BALBc-1_X01_Y02_816_222\", \"ini\": 1123, \"clust\": 2481, \"rank\": 1968, \"rankvar\": 1479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1703, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 298, \"cat-2\": \"Density: 27\", \"cat_2_index\": 960, \"group\": [2482.0, 1329.0, 395.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86647_BALBc-1_X01_Y02_819_250\", \"ini\": 1122, \"clust\": 2651, \"rank\": 2055, \"rankvar\": 341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1704, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 299, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1115, \"group\": [2652.0, 1439.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86676_BALBc-1_X01_Y02_819_581\", \"ini\": 1121, \"clust\": 2115, \"rank\": 2758, \"rankvar\": 2638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1705, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 300, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2681, \"group\": [2111.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86754_BALBc-1_X01_Y02_82_796\", \"ini\": 1120, \"clust\": 2684, \"rank\": 2586, \"rankvar\": 2235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1706, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1293, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1116, \"group\": [2687.0, 1448.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86790_BALBc-1_X01_Y02_820_302\", \"ini\": 1119, \"clust\": 161, \"rank\": 1394, \"rankvar\": 840, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1707, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 301, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1775, \"group\": [162.0, 103.0, 34.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86794_BALBc-1_X01_Y02_820_348\", \"ini\": 1118, \"clust\": 1764, \"rank\": 2080, \"rankvar\": 2742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1708, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1294, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2093, \"group\": [1765.0, 1000.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86829_BALBc-1_X01_Y02_820_75\", \"ini\": 1117, \"clust\": 674, \"rank\": 494, \"rankvar\": 1333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1709, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1295, \"cat-2\": \"Density: 22\", \"cat_2_index\": 297, \"group\": [675.0, 447.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86839_BALBc-1_X01_Y02_820_855\", \"ini\": 1116, \"clust\": 2431, \"rank\": 852, \"rankvar\": 402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1710, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1296, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2785, \"group\": [2434.0, 1295.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86899_BALBc-1_X01_Y02_821_630\", \"ini\": 1115, \"clust\": 495, \"rank\": 1585, \"rankvar\": 1079, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1711, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 302, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2724, \"group\": [496.0, 338.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87034_BALBc-1_X01_Y02_823_34\", \"ini\": 1114, \"clust\": 2528, \"rank\": 1691, \"rankvar\": 977, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1712, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2459, \"cat-2\": \"Density: 25\", \"cat_2_index\": 669, \"group\": [2535.0, 1361.0, 403.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87221_BALBc-1_X01_Y02_825_543\", \"ini\": 1113, \"clust\": 2512, \"rank\": 1403, \"rankvar\": 1681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1713, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 303, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2579, \"group\": [2513.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87372_BALBc-1_X01_Y02_827_730\", \"ini\": 1112, \"clust\": 2359, \"rank\": 1792, \"rankvar\": 227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1714, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 304, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2682, \"group\": [2358.0, 1259.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87470_BALBc-1_X01_Y02_828_775\", \"ini\": 1111, \"clust\": 2002, \"rank\": 2019, \"rankvar\": 1373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1715, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2127, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2760, \"group\": [2006.0, 1135.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87639_BALBc-1_X01_Y02_830_197\", \"ini\": 1110, \"clust\": 2593, \"rank\": 1192, \"rankvar\": 1991, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1716, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1297, \"cat-2\": \"Density: 24\", \"cat_2_index\": 531, \"group\": [2591.0, 1401.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87741_BALBc-1_X01_Y02_831_562\", \"ini\": 1109, \"clust\": 2388, \"rank\": 2654, \"rankvar\": 1758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1717, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 305, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2641, \"group\": [2385.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87745_BALBc-1_X01_Y02_831_662\", \"ini\": 1108, \"clust\": 2205, \"rank\": 1444, \"rankvar\": 2071, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1718, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1298, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2725, \"group\": [2201.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87997_BALBc-1_X01_Y02_835_259\", \"ini\": 1107, \"clust\": 2148, \"rank\": 1303, \"rankvar\": 727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1719, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 306, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1409, \"group\": [2147.0, 1164.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88002_BALBc-1_X01_Y02_835_327\", \"ini\": 1106, \"clust\": 679, \"rank\": 305, \"rankvar\": 230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1720, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2590, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1993, \"group\": [679.0, 449.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88095_BALBc-1_X01_Y02_836_515\", \"ini\": 1105, \"clust\": 2095, \"rank\": 2507, \"rankvar\": 2350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1721, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2128, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2580, \"group\": [2099.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88266_BALBc-1_X01_Y02_838_738\", \"ini\": 1104, \"clust\": 999, \"rank\": 772, \"rankvar\": 731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1722, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 307, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2761, \"group\": [998.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88354_BALBc-1_X01_Y02_839_825\", \"ini\": 1103, \"clust\": 1724, \"rank\": 2738, \"rankvar\": 2809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1723, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 308, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2823, \"group\": [1723.0, 970.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88357_BALBc-1_X01_Y02_839_852\", \"ini\": 1102, \"clust\": 2291, \"rank\": 1830, \"rankvar\": 784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1724, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1299, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2817, \"group\": [2357.0, 1258.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88496_BALBc-1_X01_Y02_840_696\", \"ini\": 1101, \"clust\": 2432, \"rank\": 892, \"rankvar\": 314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1725, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1300, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2762, \"group\": [2433.0, 1295.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88510_BALBc-1_X01_Y02_840_903\", \"ini\": 1100, \"clust\": 1755, \"rank\": 2048, \"rankvar\": 2045, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1726, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1301, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2807, \"group\": [1753.0, 994.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88541_BALBc-1_X01_Y02_841_302\", \"ini\": 1099, \"clust\": 2183, \"rank\": 1727, \"rankvar\": 1062, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1727, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2591, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1994, \"group\": [2206.0, 1188.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88548_BALBc-1_X01_Y02_841_352\", \"ini\": 1098, \"clust\": 2019, \"rank\": 1868, \"rankvar\": 1698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1728, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2129, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2335, \"group\": [2020.0, 1138.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88675_BALBc-1_X01_Y02_843_224\", \"ini\": 1097, \"clust\": 22, \"rank\": 748, \"rankvar\": 107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1729, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1302, \"cat-2\": \"Density: 26\", \"cat_2_index\": 812, \"group\": [22.0, 21.0, 12.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88693_BALBc-1_X01_Y02_843_446\", \"ini\": 1096, \"clust\": 2078, \"rank\": 2689, \"rankvar\": 2490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1730, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2130, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2399, \"group\": [2079.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88704_BALBc-1_X01_Y02_843_602\", \"ini\": 1095, \"clust\": 2125, \"rank\": 2700, \"rankvar\": 2651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1731, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2131, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2763, \"group\": [2123.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88810_BALBc-1_X01_Y02_844_808\", \"ini\": 1094, \"clust\": 676, \"rank\": 625, \"rankvar\": 862, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1732, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 309, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2764, \"group\": [677.0, 448.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88868_BALBc-1_X01_Y02_845_558\", \"ini\": 1093, \"clust\": 890, \"rank\": 7, \"rankvar\": 591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1733, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 310, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2683, \"group\": [890.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88930_BALBc-1_X01_Y02_846_528\", \"ini\": 1092, \"clust\": 277, \"rank\": 1646, \"rankvar\": 889, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1734, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 311, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2400, \"group\": [277.0, 199.0, 72.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89014_BALBc-1_X01_Y02_847_497\", \"ini\": 1091, \"clust\": 1913, \"rank\": 1886, \"rankvar\": 662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1735, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2132, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2476, \"group\": [1913.0, 1099.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89025_BALBc-1_X01_Y02_847_613\", \"ini\": 1090, \"clust\": 496, \"rank\": 1170, \"rankvar\": 876, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1736, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2133, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2808, \"group\": [497.0, 339.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89310_BALBc-1_X01_Y02_850_368\", \"ini\": 1089, \"clust\": 494, \"rank\": 1007, \"rankvar\": 771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1737, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2134, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2336, \"group\": [494.0, 337.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89480_BALBc-1_X01_Y02_852_712\", \"ini\": 1088, \"clust\": 924, \"rank\": 166, \"rankvar\": 45, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1738, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1303, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2684, \"group\": [923.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89535_BALBc-1_X01_Y02_853_431\", \"ini\": 1087, \"clust\": 2176, \"rank\": 1693, \"rankvar\": 1223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1739, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2135, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2401, \"group\": [2175.0, 1180.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89554_BALBc-1_X01_Y02_853_632\", \"ini\": 1086, \"clust\": 482, \"rank\": 197, \"rankvar\": 253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1740, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 312, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2685, \"group\": [482.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89574_BALBc-1_X01_Y02_853_890\", \"ini\": 1085, \"clust\": 954, \"rank\": 644, \"rankvar\": 383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1741, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1304, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2786, \"group\": [955.0, 488.0, 139.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89619_BALBc-1_X01_Y02_854_42\", \"ini\": 1084, \"clust\": 675, \"rank\": 413, \"rankvar\": 1767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1742, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1975, \"cat-2\": \"Density: 25\", \"cat_2_index\": 670, \"group\": [676.0, 447.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89667_BALBc-1_X01_Y02_854_933\", \"ini\": 1083, \"clust\": 2425, \"rank\": 1354, \"rankvar\": 767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1743, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1305, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2642, \"group\": [2426.0, 1292.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89670_BALBc-1_X01_Y02_854_970\", \"ini\": 1082, \"clust\": 921, \"rank\": 25, \"rankvar\": 460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1744, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1306, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1776, \"group\": [921.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89808_BALBc-1_X01_Y02_856_577\", \"ini\": 1081, \"clust\": 477, \"rank\": 570, \"rankvar\": 799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1745, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2136, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2787, \"group\": [476.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89834_BALBc-1_X01_Y02_856_743\", \"ini\": 1080, \"clust\": 2327, \"rank\": 1917, \"rankvar\": 1388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1746, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2137, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2686, \"group\": [2325.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89916_BALBc-1_X01_Y02_857_916\", \"ini\": 1079, \"clust\": 935, \"rank\": 168, \"rankvar\": 454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1747, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1307, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2765, \"group\": [936.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90046_BALBc-1_X01_Y02_859_832\", \"ini\": 1078, \"clust\": 1085, \"rank\": 382, \"rankvar\": 565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1748, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 313, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2788, \"group\": [1086.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90073_BALBc-1_X01_Y02_86_249\", \"ini\": 1077, \"clust\": 1636, \"rank\": 2009, \"rankvar\": 1917, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1749, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1308, \"cat-2\": \"Density: 24\", \"cat_2_index\": 532, \"group\": [1648.0, 908.0, 263.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90207_BALBc-1_X01_Y02_860_848\", \"ini\": 1076, \"clust\": 1795, \"rank\": 1860, \"rankvar\": 2351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1750, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1309, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2726, \"group\": [1799.0, 1017.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90347_BALBc-1_X01_Y02_862_790\", \"ini\": 1075, \"clust\": 2386, \"rank\": 2567, \"rankvar\": 1613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1751, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2138, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2687, \"group\": [2386.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90484_BALBc-1_X01_Y02_864_649\", \"ini\": 1074, \"clust\": 2083, \"rank\": 2725, \"rankvar\": 2650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1752, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 314, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2824, \"group\": [2082.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90517_BALBc-1_X01_Y02_865_117\", \"ini\": 1073, \"clust\": 120, \"rank\": 1107, \"rankvar\": 198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1753, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1310, \"cat-2\": \"Density: 25\", \"cat_2_index\": 671, \"group\": [121.0, 77.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90526_BALBc-1_X01_Y02_865_275\", \"ini\": 1072, \"clust\": 516, \"rank\": 446, \"rankvar\": 11, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1754, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2592, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1536, \"group\": [515.0, 353.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90627_BALBc-1_X01_Y02_866_672\", \"ini\": 1071, \"clust\": 1809, \"rank\": 2617, \"rankvar\": 2605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1755, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1311, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2766, \"group\": [1810.0, 1023.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90717_BALBc-1_X01_Y02_867_77\", \"ini\": 1070, \"clust\": 140, \"rank\": 1522, \"rankvar\": 199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1756, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1312, \"cat-2\": \"Density: 23\", \"cat_2_index\": 409, \"group\": [140.0, 86.0, 27.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90877_BALBc-1_X01_Y02_869_470\", \"ini\": 1069, \"clust\": 747, \"rank\": 626, \"rankvar\": 424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1757, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 315, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2477, \"group\": [746.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91022_BALBc-1_X01_Y02_870_430\", \"ini\": 1068, \"clust\": 1122, \"rank\": 821, \"rankvar\": 184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1758, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 316, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2263, \"group\": [1123.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91052_BALBc-1_X01_Y02_870_812\", \"ini\": 1067, \"clust\": 1033, \"rank\": 498, \"rankvar\": 144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1759, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 317, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2809, \"group\": [1034.0, 520.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91129_BALBc-1_X01_Y02_871_893\", \"ini\": 1066, \"clust\": 1824, \"rank\": 2560, \"rankvar\": 2343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1760, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1313, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2789, \"group\": [1824.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91141_BALBc-1_X01_Y02_872_170\", \"ini\": 1065, \"clust\": 254, \"rank\": 1289, \"rankvar\": 626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1761, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1314, \"cat-2\": \"Density: 24\", \"cat_2_index\": 533, \"group\": [256.0, 179.0, 62.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91166_BALBc-1_X01_Y02_872_397\", \"ini\": 1064, \"clust\": 527, \"rank\": 145, \"rankvar\": 1674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1762, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2139, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2337, \"group\": [526.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91495_BALBc-1_X01_Y02_876_48\", \"ini\": 1063, \"clust\": 1123, \"rank\": 695, \"rankvar\": 389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1763, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2593, \"cat-2\": \"Density: 24\", \"cat_2_index\": 534, \"group\": [1124.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91511_BALBc-1_X01_Y02_876_712\", \"ini\": 1062, \"clust\": 471, \"rank\": 899, \"rankvar\": 1, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1764, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1315, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2581, \"group\": [474.0, 330.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91600_BALBc-1_X01_Y02_877_848\", \"ini\": 1061, \"clust\": 442, \"rank\": 364, \"rankvar\": 706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1765, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1316, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2688, \"group\": [442.0, 310.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91734_BALBc-1_X01_Y02_879_562\", \"ini\": 1060, \"clust\": 2509, \"rank\": 1671, \"rankvar\": 652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1766, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2140, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2478, \"group\": [2512.0, 1350.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91760_BALBc-1_X01_Y02_879_747\", \"ini\": 1059, \"clust\": 1817, \"rank\": 2625, \"rankvar\": 2610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1767, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2141, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2767, \"group\": [1818.0, 1028.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91896_BALBc-1_X01_Y02_880_618\", \"ini\": 1058, \"clust\": 2288, \"rank\": 2392, \"rankvar\": 1543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1768, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2142, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2768, \"group\": [2287.0, 1245.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91987_BALBc-1_X01_Y02_881_761\", \"ini\": 1057, \"clust\": 2449, \"rank\": 1364, \"rankvar\": 911, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1769, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2143, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2727, \"group\": [2449.0, 1303.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92091_BALBc-1_X01_Y02_883_354\", \"ini\": 1056, \"clust\": 2162, \"rank\": 1184, \"rankvar\": 1236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1770, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 318, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2264, \"group\": [2159.0, 1172.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92101_BALBc-1_X01_Y02_883_525\", \"ini\": 1055, \"clust\": 644, \"rank\": 545, \"rankvar\": 554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1771, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 319, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2479, \"group\": [644.0, 432.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92192_BALBc-1_X01_Y02_884_787\", \"ini\": 1054, \"clust\": 1130, \"rank\": 889, \"rankvar\": 768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1772, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2144, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2790, \"group\": [1132.0, 534.0, 145.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92232_BALBc-1_X01_Y02_885_452\", \"ini\": 1053, \"clust\": 524, \"rank\": 457, \"rankvar\": 637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1773, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 320, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2402, \"group\": [524.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92319_BALBc-1_X01_Y02_886_720\", \"ini\": 1052, \"clust\": 726, \"rank\": 507, \"rankvar\": 115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1774, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 321, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2728, \"group\": [726.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92390_BALBc-1_X01_Y02_887_673\", \"ini\": 1051, \"clust\": 492, \"rank\": 781, \"rankvar\": 600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1775, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1317, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2729, \"group\": [495.0, 337.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92396_BALBc-1_X01_Y02_887_730\", \"ini\": 1050, \"clust\": 2347, \"rank\": 2534, \"rankvar\": 1651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1776, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 322, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2582, \"group\": [2354.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92444_BALBc-1_X01_Y02_888_377\", \"ini\": 1049, \"clust\": 364, \"rank\": 801, \"rankvar\": 1652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1777, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 323, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2403, \"group\": [364.0, 252.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92446_BALBc-1_X01_Y02_888_392\", \"ini\": 1048, \"clust\": 2307, \"rank\": 2039, \"rankvar\": 1645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1778, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 324, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2265, \"group\": [2307.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92557_BALBc-1_X01_Y02_889_842\", \"ini\": 1047, \"clust\": 1835, \"rank\": 2500, \"rankvar\": 2029, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1779, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1318, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2810, \"group\": [1834.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92644_BALBc-1_X01_Y02_890_129\", \"ini\": 1046, \"clust\": 2616, \"rank\": 1539, \"rankvar\": 1744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1780, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2594, \"cat-2\": \"Density: 27\", \"cat_2_index\": 961, \"group\": [2617.0, 1414.0, 417.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92729_BALBc-1_X01_Y02_891_16\", \"ini\": 1045, \"clust\": 1293, \"rank\": 1699, \"rankvar\": 934, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1781, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2595, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1117, \"group\": [1291.0, 662.0, 190.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92737_BALBc-1_X01_Y02_891_219\", \"ini\": 1044, \"clust\": 135, \"rank\": 779, \"rankvar\": 245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1782, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1319, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1260, \"group\": [139.0, 85.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92747_BALBc-1_X01_Y02_891_339\", \"ini\": 1043, \"clust\": 1907, \"rank\": 1972, \"rankvar\": 1090, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1783, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2596, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2266, \"group\": [1909.0, 1095.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92963_BALBc-1_X01_Y02_894_270\", \"ini\": 1042, \"clust\": 1902, \"rank\": 2462, \"rankvar\": 2613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1784, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2597, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1410, \"group\": [1904.0, 1091.0, 333.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92994_BALBc-1_X01_Y02_894_579\", \"ini\": 1041, \"clust\": 1818, \"rank\": 2110, \"rankvar\": 2259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1785, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2145, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2643, \"group\": [1819.0, 1028.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93017_BALBc-1_X01_Y02_894_895\", \"ini\": 1040, \"clust\": 1756, \"rank\": 1716, \"rankvar\": 2054, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1786, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1320, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2644, \"group\": [1754.0, 994.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93023_BALBc-1_X01_Y02_894_972\", \"ini\": 1039, \"clust\": 1760, \"rank\": 918, \"rankvar\": 1713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1787, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1321, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1261, \"group\": [1759.0, 995.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93058_BALBc-1_X01_Y02_895_417\", \"ini\": 1038, \"clust\": 1154, \"rank\": 1350, \"rankvar\": 1360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1788, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 325, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2179, \"group\": [1154.0, 554.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93151_BALBc-1_X01_Y02_896_819\", \"ini\": 1037, \"clust\": 385, \"rank\": 747, \"rankvar\": 1580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1789, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1322, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2791, \"group\": [384.0, 266.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93204_BALBc-1_X01_Y02_897_498\", \"ini\": 1036, \"clust\": 2362, \"rank\": 2018, \"rankvar\": 890, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1790, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 326, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2480, \"group\": [2362.0, 1261.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93411_BALBc-1_X01_Y02_9_314\", \"ini\": 1035, \"clust\": 708, \"rank\": 231, \"rankvar\": 1710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1791, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1323, \"cat-2\": \"Density: 12\", \"cat_2_index\": 8, \"group\": [707.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93436_BALBc-1_X01_Y02_9_681\", \"ini\": 1034, \"clust\": 2229, \"rank\": 2116, \"rankvar\": 1822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1792, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 327, \"cat-2\": \"Density: 12\", \"cat_2_index\": 9, \"group\": [2230.0, 1209.0, 359.0, 98.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93586_BALBc-1_X01_Y02_900_660\", \"ini\": 1033, \"clust\": 2134, \"rank\": 2394, \"rankvar\": 1930, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1793, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 328, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2645, \"group\": [2134.0, 1153.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93735_BALBc-1_X01_Y02_902_696\", \"ini\": 1032, \"clust\": 278, \"rank\": 1480, \"rankvar\": 1404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1794, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 329, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2646, \"group\": [278.0, 200.0, 72.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93759_BALBc-1_X01_Y02_903_167\", \"ini\": 1031, \"clust\": 1027, \"rank\": 167, \"rankvar\": 48, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1795, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2813, \"cat-2\": \"Density: 25\", \"cat_2_index\": 672, \"group\": [1026.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93900_BALBc-1_X01_Y02_905_185\", \"ini\": 1030, \"clust\": 2482, \"rank\": 1604, \"rankvar\": 1251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1796, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2598, \"cat-2\": \"Density: 27\", \"cat_2_index\": 962, \"group\": [2486.0, 1333.0, 397.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93911_BALBc-1_X01_Y02_905_312\", \"ini\": 1029, \"clust\": 586, \"rank\": 590, \"rankvar\": 1046, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1797, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2599, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1878, \"group\": [583.0, 399.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94069_BALBc-1_X01_Y02_907_471\", \"ini\": 1028, \"clust\": 2074, \"rank\": 2406, \"rankvar\": 1547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1798, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 330, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2481, \"group\": [2074.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94075_BALBc-1_X01_Y02_907_532\", \"ini\": 1027, \"clust\": 1080, \"rank\": 172, \"rankvar\": 216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1799, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 331, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2180, \"group\": [1080.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94153_BALBc-1_X01_Y02_908_623\", \"ini\": 1026, \"clust\": 421, \"rank\": 1316, \"rankvar\": 983, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1800, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1976, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2583, \"group\": [421.0, 297.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94234_BALBc-1_X01_Y02_909_73\", \"ini\": 1025, \"clust\": 1541, \"rank\": 2388, \"rankvar\": 2107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1801, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2600, \"cat-2\": \"Density: 25\", \"cat_2_index\": 673, \"group\": [1541.0, 834.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94463_BALBc-1_X01_Y02_911_790\", \"ini\": 1024, \"clust\": 2332, \"rank\": 2176, \"rankvar\": 1600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1802, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1324, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2730, \"group\": [2335.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94538_BALBc-1_X01_Y02_912_752\", \"ini\": 1023, \"clust\": 1986, \"rank\": 2256, \"rankvar\": 1566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1803, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2317, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2769, \"group\": [1985.0, 1124.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94605_BALBc-1_X01_Y02_913_728\", \"ini\": 1022, \"clust\": 988, \"rank\": 603, \"rankvar\": 845, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1804, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2318, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2584, \"group\": [989.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94692_BALBc-1_X01_Y02_914_972\", \"ini\": 1021, \"clust\": 1671, \"rank\": 1472, \"rankvar\": 633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1805, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1325, \"cat-2\": \"Density: 27\", \"cat_2_index\": 963, \"group\": [1673.0, 930.0, 272.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94737_BALBc-1_X01_Y02_915_653\", \"ini\": 1020, \"clust\": 2367, \"rank\": 2187, \"rankvar\": 1653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1806, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 332, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2647, \"group\": [2367.0, 1263.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94800_BALBc-1_X01_Y02_916_392\", \"ini\": 1019, \"clust\": 652, \"rank\": 712, \"rankvar\": 139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1807, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 333, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2404, \"group\": [652.0, 437.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94865_BALBc-1_X01_Y02_917_414\", \"ini\": 1018, \"clust\": 1158, \"rank\": 829, \"rankvar\": 851, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1808, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 334, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2267, \"group\": [1161.0, 558.0, 154.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94917_BALBc-1_X01_Y02_918_144\", \"ini\": 1017, \"clust\": 2216, \"rank\": 1488, \"rankvar\": 52, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1809, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2601, \"cat-2\": \"Density: 23\", \"cat_2_index\": 410, \"group\": [2217.0, 1198.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94976_BALBc-1_X01_Y02_918_685\", \"ini\": 1016, \"clust\": 2379, \"rank\": 2512, \"rankvar\": 1084, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1810, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 335, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2585, \"group\": [2378.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95031_BALBc-1_X01_Y02_919_496\", \"ini\": 1015, \"clust\": 1155, \"rank\": 1251, \"rankvar\": 1281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1811, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 336, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2181, \"group\": [1155.0, 554.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95151_BALBc-1_X01_Y02_920_106\", \"ini\": 1014, \"clust\": 760, \"rank\": 267, \"rankvar\": 278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1812, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2602, \"cat-2\": \"Density: 25\", \"cat_2_index\": 674, \"group\": [760.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95247_BALBc-1_X01_Y02_921_339\", \"ini\": 1013, \"clust\": 1058, \"rank\": 730, \"rankvar\": 359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1813, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 337, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2268, \"group\": [1061.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95323_BALBc-1_X01_Y02_922_248\", \"ini\": 1012, \"clust\": 2599, \"rank\": 1756, \"rankvar\": 1334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1814, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2603, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1411, \"group\": [2612.0, 1409.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95511_BALBc-1_X01_Y02_924_552\", \"ini\": 1011, \"clust\": 1823, \"rank\": 2737, \"rankvar\": 2729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1815, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 338, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2405, \"group\": [1823.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95603_BALBc-1_X01_Y02_925_713\", \"ini\": 1010, \"clust\": 1916, \"rank\": 2181, \"rankvar\": 923, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1816, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2319, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2770, \"group\": [1917.0, 1101.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95670_BALBc-1_X01_Y02_926_592\", \"ini\": 1009, \"clust\": 1784, \"rank\": 1428, \"rankvar\": 2502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1817, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1977, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2586, \"group\": [1785.0, 1014.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95679_BALBc-1_X01_Y02_926_670\", \"ini\": 1008, \"clust\": 475, \"rank\": 687, \"rankvar\": 830, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1818, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 339, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2689, \"group\": [477.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95702_BALBc-1_X01_Y02_926_934\", \"ini\": 1007, \"clust\": 1706, \"rank\": 2818, \"rankvar\": 2818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1819, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1326, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2529, \"group\": [1708.0, 961.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95782_BALBc-1_X01_Y02_927_871\", \"ini\": 1006, \"clust\": 843, \"rank\": 81, \"rankvar\": 178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1820, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1327, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2818, \"group\": [843.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95802_BALBc-1_X01_Y02_928_19\", \"ini\": 1005, \"clust\": 572, \"rank\": 366, \"rankvar\": 207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1821, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2604, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1262, \"group\": [571.0, 391.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95821_BALBc-1_X01_Y02_928_362\", \"ini\": 1004, \"clust\": 528, \"rank\": 1045, \"rankvar\": 206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1822, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 340, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2482, \"group\": [528.0, 360.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95912_BALBc-1_X01_Y02_929_417\", \"ini\": 1003, \"clust\": 740, \"rank\": 242, \"rankvar\": 317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1823, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 341, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2483, \"group\": [737.0, 467.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95959_BALBc-1_X01_Y02_93_212\", \"ini\": 1002, \"clust\": 536, \"rank\": 192, \"rankvar\": 1217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1824, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2244, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1263, \"group\": [537.0, 367.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96011_BALBc-1_X01_Y02_93_891\", \"ini\": 1001, \"clust\": 1924, \"rank\": 2637, \"rankvar\": 2486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1825, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2320, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1264, \"group\": [1924.0, 1106.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96026_BALBc-1_X01_Y02_930_183\", \"ini\": 1000, \"clust\": 1766, \"rank\": 2784, \"rankvar\": 2823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1826, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2605, \"cat-2\": \"Density: 25\", \"cat_2_index\": 675, \"group\": [1768.0, 1001.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96035_BALBc-1_X01_Y02_930_310\", \"ini\": 999, \"clust\": 2537, \"rank\": 1516, \"rankvar\": 649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1827, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2321, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2094, \"group\": [2538.0, 1363.0, 404.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96049_BALBc-1_X01_Y02_930_522\", \"ini\": 998, \"clust\": 2180, \"rank\": 1674, \"rankvar\": 894, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1828, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 342, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2182, \"group\": [2180.0, 1184.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96059_BALBc-1_X01_Y02_930_618\", \"ini\": 997, \"clust\": 2341, \"rank\": 2128, \"rankvar\": 737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1829, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 343, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2587, \"group\": [2341.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96129_BALBc-1_X01_Y02_931_639\", \"ini\": 996, \"clust\": 643, \"rank\": 558, \"rankvar\": 345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1830, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 344, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2588, \"group\": [642.0, 431.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96358_BALBc-1_X01_Y02_934_786\", \"ini\": 995, \"clust\": 408, \"rank\": 793, \"rankvar\": 1672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1831, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1328, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2690, \"group\": [411.0, 288.0, 99.0, 29.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96494_BALBc-1_X01_Y02_936_390\", \"ini\": 994, \"clust\": 2447, \"rank\": 1750, \"rankvar\": 964, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1832, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 345, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2484, \"group\": [2448.0, 1302.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96556_BALBc-1_X01_Y02_937_334\", \"ini\": 993, \"clust\": 1042, \"rank\": 435, \"rankvar\": 155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1833, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 346, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2485, \"group\": [1043.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96785_BALBc-1_X01_Y02_94_443\", \"ini\": 992, \"clust\": 186, \"rank\": 1290, \"rankvar\": 1673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1834, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2460, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1118, \"group\": [187.0, 123.0, 40.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96861_BALBc-1_X01_Y02_940_441\", \"ini\": 991, \"clust\": 2469, \"rank\": 1657, \"rankvar\": 261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1835, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 347, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2406, \"group\": [2470.0, 1318.0, 390.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97094_BALBc-1_X01_Y02_943_554\", \"ini\": 990, \"clust\": 2181, \"rank\": 1282, \"rankvar\": 836, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1836, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 348, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2183, \"group\": [2181.0, 1184.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97328_BALBc-1_X01_Y02_946_392\", \"ini\": 989, \"clust\": 2151, \"rank\": 806, \"rankvar\": 572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1837, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 349, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2530, \"group\": [2149.0, 1165.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97429_BALBc-1_X01_Y02_947_898\", \"ini\": 988, \"clust\": 1010, \"rank\": 283, \"rankvar\": 1098, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1838, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1329, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2691, \"group\": [1011.0, 514.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97487_BALBc-1_X01_Y02_948_863\", \"ini\": 987, \"clust\": 1778, \"rank\": 1897, \"rankvar\": 427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1839, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1658, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2771, \"group\": [1781.0, 1011.0, 306.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97559_BALBc-1_X01_Y02_949_682\", \"ini\": 986, \"clust\": 446, \"rank\": 726, \"rankvar\": 788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1840, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 350, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2692, \"group\": [450.0, 314.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97703_BALBc-1_X01_Y02_950_608\", \"ini\": 985, \"clust\": 842, \"rank\": 160, \"rankvar\": 72, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1841, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2146, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2648, \"group\": [845.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97845_BALBc-1_X01_Y02_952_483\", \"ini\": 984, \"clust\": 1152, \"rank\": 2087, \"rankvar\": 1148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1842, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 351, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2531, \"group\": [1153.0, 553.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97851_BALBc-1_X01_Y02_952_581\", \"ini\": 983, \"clust\": 1825, \"rank\": 2742, \"rankvar\": 2718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1843, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 352, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2532, \"group\": [1825.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97911_BALBc-1_X01_Y02_953_421\", \"ini\": 982, \"clust\": 951, \"rank\": 672, \"rankvar\": 716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1844, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 353, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2649, \"group\": [950.0, 483.0, 138.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98041_BALBc-1_X01_Y02_955_11\", \"ini\": 981, \"clust\": 1762, \"rank\": 2021, \"rankvar\": 2119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1845, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1330, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1265, \"group\": [1763.0, 998.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98050_BALBc-1_X01_Y02_955_156\", \"ini\": 980, \"clust\": 63, \"rank\": 1413, \"rankvar\": 336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1846, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2606, \"cat-2\": \"Density: 27\", \"cat_2_index\": 964, \"group\": [70.0, 52.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98324_BALBc-1_X01_Y02_958_818\", \"ini\": 979, \"clust\": 1081, \"rank\": 255, \"rankvar\": 330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1847, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1331, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2589, \"group\": [1081.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98534_BALBc-1_X01_Y02_960_63\", \"ini\": 978, \"clust\": 775, \"rank\": 141, \"rankvar\": 510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1848, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2607, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1412, \"group\": [774.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98596_BALBc-1_X01_Y02_961_438\", \"ini\": 977, \"clust\": 2360, \"rank\": 1690, \"rankvar\": 319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1849, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2608, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2693, \"group\": [2359.0, 1259.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98752_BALBc-1_X01_Y02_963_631\", \"ini\": 976, \"clust\": 2123, \"rank\": 2278, \"rankvar\": 2379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1850, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2147, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2486, \"group\": [2130.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98837_BALBc-1_X01_Y02_964_510\", \"ini\": 975, \"clust\": 2400, \"rank\": 2744, \"rankvar\": 2083, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1851, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 354, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2407, \"group\": [2398.0, 1270.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98921_BALBc-1_X01_Y02_965_673\", \"ini\": 974, \"clust\": 2283, \"rank\": 1965, \"rankvar\": 1668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1852, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 355, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2694, \"group\": [2285.0, 1244.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98956_BALBc-1_X01_Y02_966_344\", \"ini\": 973, \"clust\": 2438, \"rank\": 1126, \"rankvar\": 578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1853, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 356, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2487, \"group\": [2439.0, 1298.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99211_BALBc-1_X01_Y02_969_41\", \"ini\": 972, \"clust\": 1164, \"rank\": 1000, \"rankvar\": 1440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1854, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1332, \"cat-2\": \"Density: 26\", \"cat_2_index\": 813, \"group\": [1163.0, 559.0, 155.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99244_BALBc-1_X01_Y02_969_891\", \"ini\": 971, \"clust\": 1781, \"rank\": 2515, \"rankvar\": 2103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1855, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1333, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2488, \"group\": [1784.0, 1013.0, 307.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99284_BALBc-1_X01_Y02_97_366\", \"ini\": 970, \"clust\": 1024, \"rank\": 388, \"rankvar\": 23, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1856, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1334, \"cat-2\": \"Density: 24\", \"cat_2_index\": 535, \"group\": [1024.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99306_BALBc-1_X01_Y02_97_619\", \"ini\": 969, \"clust\": 2470, \"rank\": 1594, \"rankvar\": 1950, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1857, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1335, \"cat-2\": \"Density: 24\", \"cat_2_index\": 536, \"group\": [2471.0, 1319.0, 391.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99355_BALBc-1_X01_Y02_970_403\", \"ini\": 968, \"clust\": 1124, \"rank\": 1256, \"rankvar\": 169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1858, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 357, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2695, \"group\": [1127.0, 529.0, 143.0, 35.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99386_BALBc-1_X01_Y02_970_788\", \"ini\": 967, \"clust\": 1831, \"rank\": 2311, \"rankvar\": 2185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1859, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1336, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2533, \"group\": [1830.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99599_BALBc-1_X01_Y02_973_494\", \"ini\": 966, \"clust\": 869, \"rank\": 43, \"rankvar\": 247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1860, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 358, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2489, \"group\": [870.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99666_BALBc-1_X01_Y02_974_301\", \"ini\": 965, \"clust\": 2661, \"rank\": 2183, \"rankvar\": 1173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1861, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2148, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1995, \"group\": [2666.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99919_BALBc-1_X01_Y02_977_839\", \"ini\": 964, \"clust\": 1836, \"rank\": 2781, \"rankvar\": 2624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1862, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2814, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2338, \"group\": [1835.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99966_BALBc-1_X01_Y02_978_469\", \"ini\": 963, \"clust\": 1072, \"rank\": 405, \"rankvar\": 834, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1863, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2609, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2792, \"group\": [1071.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99984_BALBc-1_X01_Y02_978_659\", \"ini\": 962, \"clust\": 1909, \"rank\": 2189, \"rankvar\": 1054, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1864, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2149, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2490, \"group\": [1908.0, 1094.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99988_BALBc-1_X01_Y02_978_700\", \"ini\": 961, \"clust\": 439, \"rank\": 234, \"rankvar\": 2370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1865, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 359, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2731, \"group\": [440.0, 309.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100113_BALBc-1_X01_Y02_98_33\", \"ini\": 960, \"clust\": 1625, \"rank\": 2053, \"rankvar\": 2512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1866, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1337, \"cat-2\": \"Density: 20\", \"cat_2_index\": 167, \"group\": [1626.0, 893.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100128_BALBc-1_X01_Y02_98_529\", \"ini\": 959, \"clust\": 2426, \"rank\": 985, \"rankvar\": 95, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1867, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2322, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1667, \"group\": [2427.0, 1293.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100158_BALBc-1_X01_Y02_98_936\", \"ini\": 958, \"clust\": 1894, \"rank\": 2475, \"rankvar\": 2620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1868, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1751, \"cat-2\": \"Density: 26\", \"cat_2_index\": 814, \"group\": [1894.0, 1084.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100196_BALBc-1_X01_Y02_980_535\", \"ini\": 957, \"clust\": 640, \"rank\": 628, \"rankvar\": 1820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1869, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 360, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2491, \"group\": [646.0, 434.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100343_BALBc-1_X01_Y02_982_719\", \"ini\": 956, \"clust\": 2253, \"rank\": 1527, \"rankvar\": 1248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1870, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1338, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2534, \"group\": [2254.0, 1231.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100409_BALBc-1_X01_Y02_983_525\", \"ini\": 955, \"clust\": 2443, \"rank\": 714, \"rankvar\": 1679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1871, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 361, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2535, \"group\": [2443.0, 1299.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100453_BALBc-1_X01_Y02_984_217\", \"ini\": 954, \"clust\": 2595, \"rank\": 1759, \"rankvar\": 1639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1872, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2610, \"cat-2\": \"Density: 25\", \"cat_2_index\": 676, \"group\": [2597.0, 1404.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100476_BALBc-1_X01_Y02_984_546\", \"ini\": 953, \"clust\": 2401, \"rank\": 2789, \"rankvar\": 2227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1873, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 362, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2536, \"group\": [2399.0, 1270.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100533_BALBc-1_X01_Y02_985_319\", \"ini\": 952, \"clust\": 1717, \"rank\": 2049, \"rankvar\": 1829, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1874, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 363, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1777, \"group\": [1718.0, 968.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100537_BALBc-1_X01_Y02_985_370\", \"ini\": 951, \"clust\": 529, \"rank\": 790, \"rankvar\": 1014, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1875, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 364, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2537, \"group\": [529.0, 361.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100546_BALBc-1_X01_Y02_985_427\", \"ini\": 950, \"clust\": 1727, \"rank\": 2182, \"rankvar\": 346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1876, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2611, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2732, \"group\": [1726.0, 972.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100828_BALBc-1_X01_Y02_989_180\", \"ini\": 949, \"clust\": 1067, \"rank\": 407, \"rankvar\": 589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1877, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2612, \"cat-2\": \"Density: 26\", \"cat_2_index\": 815, \"group\": [1066.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101159_BALBc-1_X01_Y02_992_512\", \"ini\": 948, \"clust\": 641, \"rank\": 583, \"rankvar\": 288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1878, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 365, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2650, \"group\": [643.0, 431.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101202_BALBc-1_X01_Y02_992_939\", \"ini\": 947, \"clust\": 1198, \"rank\": 589, \"rankvar\": 1237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1879, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1339, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1668, \"group\": [1198.0, 591.0, 167.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101248_BALBc-1_X01_Y02_993_593\", \"ini\": 946, \"clust\": 730, \"rank\": 307, \"rankvar\": 283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1880, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2150, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2590, \"group\": [732.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101494_BALBc-1_X01_Y02_996_395\", \"ini\": 945, \"clust\": 33, \"rank\": 923, \"rankvar\": 415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1881, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2613, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2772, \"group\": [33.0, 31.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101598_BALBc-1_X01_Y02_997_656\", \"ini\": 944, \"clust\": 1810, \"rank\": 2331, \"rankvar\": 1927, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1882, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2151, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2591, \"group\": [1813.0, 1025.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101724_BALBc-1_X01_Y02_999_337\", \"ini\": 943, \"clust\": 1089, \"rank\": 445, \"rankvar\": 8, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1883, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 366, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2269, \"group\": [1092.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-742_BALBc-1_X02_Y02_100_496\", \"ini\": 942, \"clust\": 1878, \"rank\": 961, \"rankvar\": 1878, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1884, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1340, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1879, \"group\": [1877.0, 1067.0, 324.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-763_BALBc-1_X02_Y02_100_736\", \"ini\": 941, \"clust\": 2539, \"rank\": 1670, \"rankvar\": 1914, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1885, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1341, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1880, \"group\": [2542.0, 1367.0, 406.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-824_BALBc-1_X02_Y02_1000_584\", \"ini\": 940, \"clust\": 506, \"rank\": 679, \"rankvar\": 865, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1886, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1581, \"cat-2\": \"Density: 26\", \"cat_2_index\": 816, \"group\": [507.0, 347.0, 117.0, 33.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1111_BALBc-1_X02_Y02_1004_421\", \"ini\": 939, \"clust\": 51, \"rank\": 1016, \"rankvar\": 303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1887, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 921, \"cat-2\": \"Density: 23\", \"cat_2_index\": 411, \"group\": [54.0, 43.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1386_BALBc-1_X02_Y02_1007_914\", \"ini\": 938, \"clust\": 992, \"rank\": 939, \"rankvar\": 1407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1888, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2152, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1266, \"group\": [993.0, 509.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1461_BALBc-1_X02_Y02_1008_949\", \"ini\": 937, \"clust\": 2237, \"rank\": 1360, \"rankvar\": 31, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1889, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2153, \"cat-2\": \"Density: 22\", \"cat_2_index\": 298, \"group\": [2238.0, 1217.0, 364.0, 100.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1779_BALBc-1_X02_Y02_1011_766\", \"ini\": 936, \"clust\": 2244, \"rank\": 1738, \"rankvar\": 1306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1890, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2614, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1669, \"group\": [2246.0, 1223.0, 367.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1887_BALBc-1_X02_Y02_1013_366\", \"ini\": 935, \"clust\": 600, \"rank\": 529, \"rankvar\": 142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1891, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 367, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1267, \"group\": [600.0, 411.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2061_BALBc-1_X02_Y02_1015_519\", \"ini\": 934, \"clust\": 2793, \"rank\": 1634, \"rankvar\": 2139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1892, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2615, \"cat-2\": \"Density: 23\", \"cat_2_index\": 412, \"group\": [2792.0, 1514.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2081_BALBc-1_X02_Y02_1015_789\", \"ini\": 933, \"clust\": 579, \"rank\": 854, \"rankvar\": 1249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1893, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1119, \"group\": [579.0, 396.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2117_BALBc-1_X02_Y02_1016_330\", \"ini\": 932, \"clust\": 85, \"rank\": 1119, \"rankvar\": 274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1894, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1978, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1120, \"group\": [86.0, 63.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2209_BALBc-1_X02_Y02_1017_624\", \"ini\": 931, \"clust\": 2720, \"rank\": 1899, \"rankvar\": 1364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1895, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2617, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1413, \"group\": [2719.0, 1460.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2250_BALBc-1_X02_Y02_1017_995\", \"ini\": 930, \"clust\": 2066, \"rank\": 2809, \"rankvar\": 2295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1896, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2154, \"cat-2\": \"Density: 16\", \"cat_2_index\": 61, \"group\": [2064.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2321_BALBc-1_X02_Y02_1018_895\", \"ini\": 929, \"clust\": 2605, \"rank\": 1476, \"rankvar\": 2011, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1897, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2155, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1121, \"group\": [2604.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2469_BALBc-1_X02_Y02_1020_120\", \"ini\": 928, \"clust\": 268, \"rank\": 1293, \"rankvar\": 343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1898, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1342, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1537, \"group\": [271.0, 193.0, 69.0, 21.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2761_BALBc-1_X02_Y02_1023_729\", \"ini\": 927, \"clust\": 827, \"rank\": 218, \"rankvar\": 395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1899, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1343, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1996, \"group\": [829.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2871_BALBc-1_X02_Y02_1025_203\", \"ini\": 926, \"clust\": 381, \"rank\": 1221, \"rankvar\": 1715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1900, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 848, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1268, \"group\": [381.0, 265.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2901_BALBc-1_X02_Y02_1025_465\", \"ini\": 925, \"clust\": 2696, \"rank\": 2280, \"rankvar\": 575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1901, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2618, \"cat-2\": \"Density: 24\", \"cat_2_index\": 537, \"group\": [2697.0, 1452.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3027_BALBc-1_X02_Y02_1027_146\", \"ini\": 924, \"clust\": 1407, \"rank\": 1484, \"rankvar\": 1051, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1902, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1344, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1670, \"group\": [1410.0, 759.0, 224.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3163_BALBc-1_X02_Y02_1028_557\", \"ini\": 923, \"clust\": 2611, \"rank\": 2371, \"rankvar\": 2278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1903, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1582, \"cat-2\": \"Density: 25\", \"cat_2_index\": 677, \"group\": [2608.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3345_BALBc-1_X02_Y02_103_855\", \"ini\": 922, \"clust\": 1874, \"rank\": 1543, \"rankvar\": 1061, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1904, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1345, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1269, \"group\": [1880.0, 1070.0, 325.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3406_BALBc-1_X02_Y02_1030_786\", \"ini\": 921, \"clust\": 1768, \"rank\": 2614, \"rankvar\": 2820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1905, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2619, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1414, \"group\": [1767.0, 1001.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3462_BALBc-1_X02_Y02_1031_450\", \"ini\": 920, \"clust\": 764, \"rank\": 33, \"rankvar\": 603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1906, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 368, \"cat-2\": \"Density: 24\", \"cat_2_index\": 538, \"group\": [765.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3716_BALBc-1_X02_Y02_1034_825\", \"ini\": 919, \"clust\": 2255, \"rank\": 1223, \"rankvar\": 1255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1907, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2620, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1415, \"group\": [2255.0, 1232.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3723_BALBc-1_X02_Y02_1034_946\", \"ini\": 918, \"clust\": 919, \"rank\": 63, \"rankvar\": 237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1908, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 369, \"cat-2\": \"Density: 21\", \"cat_2_index\": 219, \"group\": [919.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3800_BALBc-1_X02_Y02_1035_754\", \"ini\": 917, \"clust\": 2214, \"rank\": 1524, \"rankvar\": 398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1909, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2621, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1538, \"group\": [2215.0, 1196.0, 354.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3958_BALBc-1_X02_Y02_1037_680\", \"ini\": 916, \"clust\": 908, \"rank\": 94, \"rankvar\": 101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1910, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1346, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1881, \"group\": [907.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3996_BALBc-1_X02_Y02_1038_233\", \"ini\": 915, \"clust\": 123, \"rank\": 566, \"rankvar\": 993, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1911, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1347, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1416, \"group\": [123.0, 78.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4123_BALBc-1_X02_Y02_1039_704\", \"ini\": 914, \"clust\": 2646, \"rank\": 2375, \"rankvar\": 1648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1912, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1348, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1997, \"group\": [2648.0, 1437.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4307_BALBc-1_X02_Y02_1041_402\", \"ini\": 913, \"clust\": 170, \"rank\": 406, \"rankvar\": 129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1913, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 922, \"cat-2\": \"Density: 25\", \"cat_2_index\": 678, \"group\": [169.0, 110.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4349_BALBc-1_X02_Y02_1041_855\", \"ini\": 912, \"clust\": 2600, \"rank\": 2036, \"rankvar\": 1855, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1914, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2787, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1270, \"group\": [2599.0, 1406.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4398_BALBc-1_X02_Y02_1042_440\", \"ini\": 911, \"clust\": 2724, \"rank\": 1836, \"rankvar\": 1490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1915, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 923, \"cat-2\": \"Density: 27\", \"cat_2_index\": 965, \"group\": [2727.0, 1466.0, 430.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4443_BALBc-1_X02_Y02_1042_919\", \"ini\": 910, \"clust\": 1959, \"rank\": 2699, \"rankvar\": 2044, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1916, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 370, \"cat-2\": \"Density: 23\", \"cat_2_index\": 413, \"group\": [1978.0, 1119.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4730_BALBc-1_X02_Y02_1046_644\", \"ini\": 909, \"clust\": 741, \"rank\": 443, \"rankvar\": 803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1917, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2622, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1671, \"group\": [738.0, 467.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5035_BALBc-1_X02_Y02_105_291\", \"ini\": 908, \"clust\": 141, \"rank\": 1935, \"rankvar\": 1711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1918, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2623, \"cat-2\": \"Density: 21\", \"cat_2_index\": 220, \"group\": [141.0, 87.0, 27.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5098_BALBc-1_X02_Y02_1050_351\", \"ini\": 907, \"clust\": 863, \"rank\": 16, \"rankvar\": 843, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1919, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 371, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1271, \"group\": [880.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5288_BALBc-1_X02_Y02_1052_892\", \"ini\": 906, \"clust\": 1169, \"rank\": 860, \"rankvar\": 1043, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1920, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 372, \"cat-2\": \"Density: 25\", \"cat_2_index\": 679, \"group\": [1172.0, 567.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5378_BALBc-1_X02_Y02_1054_302\", \"ini\": 905, \"clust\": 321, \"rank\": 1910, \"rankvar\": 2169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1921, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1979, \"cat-2\": \"Density: 26\", \"cat_2_index\": 817, \"group\": [319.0, 222.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5521_BALBc-1_X02_Y02_1055_965\", \"ini\": 904, \"clust\": 2026, \"rank\": 2150, \"rankvar\": 505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1922, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2624, \"cat-2\": \"Density: 20\", \"cat_2_index\": 168, \"group\": [2025.0, 1140.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5598_BALBc-1_X02_Y02_1056_814\", \"ini\": 903, \"clust\": 582, \"rank\": 334, \"rankvar\": 1979, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1923, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 373, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1417, \"group\": [581.0, 398.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5789_BALBc-1_X02_Y02_1059_368\", \"ini\": 902, \"clust\": 1712, \"rank\": 2421, \"rankvar\": 2252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1924, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1659, \"cat-2\": \"Density: 27\", \"cat_2_index\": 966, \"group\": [1713.0, 965.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5813_BALBc-1_X02_Y02_1059_633\", \"ini\": 901, \"clust\": 1943, \"rank\": 1835, \"rankvar\": 905, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1925, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 374, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1998, \"group\": [1946.0, 1113.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5959_BALBc-1_X02_Y02_1060_547\", \"ini\": 900, \"clust\": 1736, \"rank\": 1784, \"rankvar\": 1526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1926, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2625, \"cat-2\": \"Density: 24\", \"cat_2_index\": 539, \"group\": [1739.0, 982.0, 294.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5972_BALBc-1_X02_Y02_1060_686\", \"ini\": 899, \"clust\": 892, \"rank\": 20, \"rankvar\": 211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1927, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 375, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1882, \"group\": [889.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6003_BALBc-1_X02_Y02_1061_164\", \"ini\": 898, \"clust\": 365, \"rank\": 1066, \"rankvar\": 2232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1928, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1349, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1672, \"group\": [365.0, 253.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6056_BALBc-1_X02_Y02_1061_611\", \"ini\": 897, \"clust\": 418, \"rank\": 904, \"rankvar\": 436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1929, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1583, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1673, \"group\": [418.0, 294.0, 102.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6125_BALBc-1_X02_Y02_1062_291\", \"ini\": 896, \"clust\": 104, \"rank\": 777, \"rankvar\": 680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1930, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2788, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1272, \"group\": [104.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6156_BALBc-1_X02_Y02_1062_576\", \"ini\": 895, \"clust\": 1771, \"rank\": 1885, \"rankvar\": 1502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1931, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1584, \"cat-2\": \"Density: 27\", \"cat_2_index\": 967, \"group\": [1775.0, 1007.0, 303.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6277_BALBc-1_X02_Y02_1064_324\", \"ini\": 894, \"clust\": 848, \"rank\": 54, \"rankvar\": 408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1932, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 376, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1122, \"group\": [849.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6307_BALBc-1_X02_Y02_1064_651\", \"ini\": 893, \"clust\": 2348, \"rank\": 2239, \"rankvar\": 1083, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1933, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 377, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1883, \"group\": [2353.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6501_BALBc-1_X02_Y02_1067_391\", \"ini\": 892, \"clust\": 722, \"rank\": 515, \"rankvar\": 423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1934, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1660, \"cat-2\": \"Density: 27\", \"cat_2_index\": 968, \"group\": [725.0, 464.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6716_BALBc-1_X02_Y02_1069_716\", \"ini\": 891, \"clust\": 2247, \"rank\": 1761, \"rankvar\": 291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1935, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2626, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2095, \"group\": [2248.0, 1225.0, 369.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6732_BALBc-1_X02_Y02_1069_881\", \"ini\": 890, \"clust\": 2136, \"rank\": 2414, \"rankvar\": 1564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1936, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2789, \"cat-2\": \"Density: 25\", \"cat_2_index\": 680, \"group\": [2137.0, 1155.0, 341.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6777_BALBc-1_X02_Y02_107_560\", \"ini\": 889, \"clust\": 1740, \"rank\": 2254, \"rankvar\": 2515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1937, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1569, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2096, \"group\": [1741.0, 984.0, 295.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6883_BALBc-1_X02_Y02_1070_927\", \"ini\": 888, \"clust\": 1153, \"rank\": 1800, \"rankvar\": 2024, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1938, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2627, \"cat-2\": \"Density: 22\", \"cat_2_index\": 299, \"group\": [1158.0, 556.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6955_BALBc-1_X02_Y02_1071_815\", \"ini\": 887, \"clust\": 2145, \"rank\": 1611, \"rankvar\": 1369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1939, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2790, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1539, \"group\": [2212.0, 1193.0, 351.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7044_BALBc-1_X02_Y02_1072_750\", \"ini\": 886, \"clust\": 2231, \"rank\": 1622, \"rankvar\": 366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1940, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2628, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1884, \"group\": [2232.0, 1211.0, 360.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7048_BALBc-1_X02_Y02_1072_786\", \"ini\": 885, \"clust\": 590, \"rank\": 505, \"rankvar\": 902, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1941, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2629, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1674, \"group\": [589.0, 401.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7330_BALBc-1_X02_Y02_1076_192\", \"ini\": 884, \"clust\": 37, \"rank\": 831, \"rankvar\": 226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1942, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1350, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1418, \"group\": [40.0, 34.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7866_BALBc-1_X02_Y02_1082_334\", \"ini\": 883, \"clust\": 32, \"rank\": 1011, \"rankvar\": 520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1943, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1661, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1273, \"group\": [37.0, 32.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8112_BALBc-1_X02_Y02_1085_691\", \"ini\": 882, \"clust\": 2217, \"rank\": 1385, \"rankvar\": 157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1944, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 378, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1885, \"group\": [2218.0, 1199.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8233_BALBc-1_X02_Y02_1087_411\", \"ini\": 881, \"clust\": 162, \"rank\": 1171, \"rankvar\": 181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1945, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1662, \"cat-2\": \"Density: 27\", \"cat_2_index\": 969, \"group\": [163.0, 104.0, 34.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8249_BALBc-1_X02_Y02_1087_626\", \"ini\": 880, \"clust\": 1091, \"rank\": 210, \"rankvar\": 258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1946, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 379, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1886, \"group\": [1091.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8448_BALBc-1_X02_Y02_109_151\", \"ini\": 879, \"clust\": 99, \"rank\": 580, \"rankvar\": 1052, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1947, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2630, \"cat-2\": \"Density: 23\", \"cat_2_index\": 414, \"group\": [102.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8463_BALBc-1_X02_Y02_109_451\", \"ini\": 878, \"clust\": 2541, \"rank\": 1222, \"rankvar\": 1214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1948, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2631, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1675, \"group\": [2541.0, 1366.0, 405.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8476_BALBc-1_X02_Y02_109_610\", \"ini\": 877, \"clust\": 201, \"rank\": 1359, \"rankvar\": 1883, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1949, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1351, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2097, \"group\": [211.0, 143.0, 49.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8551_BALBc-1_X02_Y02_1090_469\", \"ini\": 876, \"clust\": 373, \"rank\": 1023, \"rankvar\": 592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1950, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2632, \"cat-2\": \"Density: 24\", \"cat_2_index\": 540, \"group\": [374.0, 260.0, 89.0, 25.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8576_BALBc-1_X02_Y02_1090_711\", \"ini\": 875, \"clust\": 914, \"rank\": 248, \"rankvar\": 10, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1951, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2156, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2098, \"group\": [920.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8913_BALBc-1_X02_Y02_1095_144\", \"ini\": 874, \"clust\": 1250, \"rank\": 2357, \"rankvar\": 2601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1952, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1663, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1274, \"group\": [1254.0, 635.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8990_BALBc-1_X02_Y02_1096_180\", \"ini\": 873, \"clust\": 854, \"rank\": 5, \"rankvar\": 710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1953, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 380, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1540, \"group\": [855.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9078_BALBc-1_X02_Y02_1097_291\", \"ini\": 872, \"clust\": 30, \"rank\": 1340, \"rankvar\": 1401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1954, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2791, \"cat-2\": \"Density: 27\", \"cat_2_index\": 970, \"group\": [31.0, 29.0, 17.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9244_BALBc-1_X02_Y02_1099_550\", \"ini\": 871, \"clust\": 2522, \"rank\": 1278, \"rankvar\": 1386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1955, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 627, \"cat-2\": \"Density: 27\", \"cat_2_index\": 971, \"group\": [2522.0, 1353.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9402_BALBc-1_X02_Y02_110_392\", \"ini\": 870, \"clust\": 2607, \"rank\": 2440, \"rankvar\": 2611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1956, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2633, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1676, \"group\": [2611.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9494_BALBc-1_X02_Y02_1100_508\", \"ini\": 869, \"clust\": 2728, \"rank\": 2391, \"rankvar\": 2777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1957, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2634, \"cat-2\": \"Density: 26\", \"cat_2_index\": 818, \"group\": [2728.0, 1467.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9511_BALBc-1_X02_Y02_1100_671\", \"ini\": 868, \"clust\": 587, \"rank\": 797, \"rankvar\": 501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1958, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 381, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2099, \"group\": [584.0, 399.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9687_BALBc-1_X02_Y02_1103_195\", \"ini\": 867, \"clust\": 2292, \"rank\": 1848, \"rankvar\": 449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1959, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 382, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1677, \"group\": [2291.0, 1248.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9726_BALBc-1_X02_Y02_1103_600\", \"ini\": 866, \"clust\": 2141, \"rank\": 2460, \"rankvar\": 474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1960, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 383, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1678, \"group\": [2140.0, 1157.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9731_BALBc-1_X02_Y02_1103_641\", \"ini\": 865, \"clust\": 274, \"rank\": 1659, \"rankvar\": 1150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1961, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 384, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1999, \"group\": [275.0, 197.0, 71.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10109_BALBc-1_X02_Y02_1108_209\", \"ini\": 864, \"clust\": 917, \"rank\": 56, \"rankvar\": 77, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1962, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1352, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1419, \"group\": [916.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10196_BALBc-1_X02_Y02_1109_33\", \"ini\": 863, \"clust\": 1611, \"rank\": 1424, \"rankvar\": 1643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1963, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1980, \"cat-2\": \"Density: 22\", \"cat_2_index\": 300, \"group\": [1610.0, 888.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10201_BALBc-1_X02_Y02_1109_425\", \"ini\": 862, \"clust\": 89, \"rank\": 697, \"rankvar\": 1505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1964, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 924, \"cat-2\": \"Density: 26\", \"cat_2_index\": 819, \"group\": [90.0, 64.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10450_BALBc-1_X02_Y02_1111_750\", \"ini\": 861, \"clust\": 2187, \"rank\": 1456, \"rankvar\": 1390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1965, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2157, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1679, \"group\": [2185.0, 1186.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10495_BALBc-1_X02_Y02_1112_333\", \"ini\": 860, \"clust\": 831, \"rank\": 237, \"rankvar\": 65, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1966, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1664, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1420, \"group\": [831.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10548_BALBc-1_X02_Y02_1112_995\", \"ini\": 859, \"clust\": 253, \"rank\": 1283, \"rankvar\": 833, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1967, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2635, \"cat-2\": \"Density: 17\", \"cat_2_index\": 81, \"group\": [268.0, 190.0, 67.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10672_BALBc-1_X02_Y02_1114_725\", \"ini\": 858, \"clust\": 984, \"rank\": 800, \"rankvar\": 233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1968, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2158, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1887, \"group\": [987.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10918_BALBc-1_X02_Y02_1117_812\", \"ini\": 857, \"clust\": 522, \"rank\": 660, \"rankvar\": 1704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1969, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2792, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1680, \"group\": [521.0, 357.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10970_BALBc-1_X02_Y02_1118_562\", \"ini\": 856, \"clust\": 2625, \"rank\": 2233, \"rankvar\": 2079, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1970, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2636, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1541, \"group\": [2625.0, 1418.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11111_BALBc-1_X02_Y02_112_780\", \"ini\": 855, \"clust\": 1195, \"rank\": 1013, \"rankvar\": 1087, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1971, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1353, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1421, \"group\": [1196.0, 589.0, 166.0, 44.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11132_BALBc-1_X02_Y02_1120_160\", \"ini\": 854, \"clust\": 1078, \"rank\": 503, \"rankvar\": 82, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1972, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2323, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1275, \"group\": [1079.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11248_BALBc-1_X02_Y02_1121_389\", \"ini\": 853, \"clust\": 367, \"rank\": 1053, \"rankvar\": 765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1973, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1665, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1123, \"group\": [373.0, 259.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11332_BALBc-1_X02_Y02_1122_490\", \"ini\": 852, \"clust\": 1939, \"rank\": 1984, \"rankvar\": 1433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1974, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2793, \"cat-2\": \"Density: 24\", \"cat_2_index\": 541, \"group\": [1940.0, 1111.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11531_BALBc-1_X02_Y02_1125_113\", \"ini\": 851, \"clust\": 81, \"rank\": 870, \"rankvar\": 536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1975, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1981, \"cat-2\": \"Density: 26\", \"cat_2_index\": 820, \"group\": [81.0, 60.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11546_BALBc-1_X02_Y02_1125_315\", \"ini\": 850, \"clust\": 2745, \"rank\": 2005, \"rankvar\": 1512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1976, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2637, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1124, \"group\": [2746.0, 1481.0, 438.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11566_BALBc-1_X02_Y02_1125_577\", \"ini\": 849, \"clust\": 719, \"rank\": 262, \"rankvar\": 147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1977, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 385, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1888, \"group\": [718.0, 460.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11573_BALBc-1_X02_Y02_1125_626\", \"ini\": 848, \"clust\": 35, \"rank\": 659, \"rankvar\": 558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1978, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 386, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1778, \"group\": [35.0, 31.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11614_BALBc-1_X02_Y02_1126_250\", \"ini\": 847, \"clust\": 615, \"rank\": 825, \"rankvar\": 242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1979, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1354, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1542, \"group\": [614.0, 415.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11867_BALBc-1_X02_Y02_1129_599\", \"ini\": 846, \"clust\": 498, \"rank\": 1212, \"rankvar\": 183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1980, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 387, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1889, \"group\": [502.0, 342.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11912_BALBc-1_X02_Y02_113_34\", \"ini\": 845, \"clust\": 1346, \"rank\": 1142, \"rankvar\": 2585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1981, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1355, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1543, \"group\": [1347.0, 709.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12036_BALBc-1_X02_Y02_1130_842\", \"ini\": 844, \"clust\": 2421, \"rank\": 966, \"rankvar\": 160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1982, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2794, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1544, \"group\": [2421.0, 1288.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12076_BALBc-1_X02_Y02_1131_409\", \"ini\": 843, \"clust\": 356, \"rank\": 856, \"rankvar\": 1024, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1983, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 388, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1125, \"group\": [356.0, 249.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12101_BALBc-1_X02_Y02_1131_782\", \"ini\": 842, \"clust\": 2333, \"rank\": 2249, \"rankvar\": 2050, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1984, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2245, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1545, \"group\": [2330.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12136_BALBc-1_X02_Y02_1132_190\", \"ini\": 841, \"clust\": 517, \"rank\": 1090, \"rankvar\": 79, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1985, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1356, \"cat-2\": \"Density: 27\", \"cat_2_index\": 972, \"group\": [518.0, 355.0, 120.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12165_BALBc-1_X02_Y02_1132_447\", \"ini\": 840, \"clust\": 712, \"rank\": 235, \"rankvar\": 1030, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1986, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2795, \"cat-2\": \"Density: 22\", \"cat_2_index\": 301, \"group\": [710.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12320_BALBc-1_X02_Y02_1134_679\", \"ini\": 839, \"clust\": 2293, \"rank\": 1639, \"rankvar\": 686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1987, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2159, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2339, \"group\": [2292.0, 1249.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12365_BALBc-1_X02_Y02_1135_365\", \"ini\": 838, \"clust\": 169, \"rank\": 818, \"rankvar\": 81, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1988, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1666, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1126, \"group\": [171.0, 110.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12416_BALBc-1_X02_Y02_1135_962\", \"ini\": 837, \"clust\": 2013, \"rank\": 2089, \"rankvar\": 2087, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1989, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2638, \"cat-2\": \"Density: 21\", \"cat_2_index\": 221, \"group\": [2013.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12735_BALBc-1_X02_Y02_1139_866\", \"ini\": 836, \"clust\": 2248, \"rank\": 2056, \"rankvar\": 574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1990, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2796, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1890, \"group\": [2249.0, 1226.0, 369.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12751_BALBc-1_X02_Y02_114_194\", \"ini\": 835, \"clust\": 130, \"rank\": 551, \"rankvar\": 1100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1991, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2639, \"cat-2\": \"Density: 22\", \"cat_2_index\": 302, \"group\": [129.0, 81.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12784_BALBc-1_X02_Y02_114_729\", \"ini\": 834, \"clust\": 2565, \"rank\": 1996, \"rankvar\": 2457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1992, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1357, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2000, \"group\": [2566.0, 1386.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12833_BALBc-1_X02_Y02_1140_332\", \"ini\": 833, \"clust\": 138, \"rank\": 432, \"rankvar\": 185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1993, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2797, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1276, \"group\": [137.0, 84.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12954_BALBc-1_X02_Y02_1141_896\", \"ini\": 832, \"clust\": 2601, \"rank\": 2156, \"rankvar\": 2171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1994, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2640, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1681, \"group\": [2600.0, 1406.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12956_BALBc-1_X02_Y02_1141_931\", \"ini\": 831, \"clust\": 825, \"rank\": 92, \"rankvar\": 109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1995, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2641, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1422, \"group\": [826.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13018_BALBc-1_X02_Y02_1142_616\", \"ini\": 830, \"clust\": 593, \"rank\": 885, \"rankvar\": 1212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1996, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 389, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1779, \"group\": [591.0, 403.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13318_BALBc-1_X02_Y02_1146_668\", \"ini\": 829, \"clust\": 2159, \"rank\": 1082, \"rankvar\": 1687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1997, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2160, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2184, \"group\": [2169.0, 1175.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13570_BALBc-1_X02_Y02_1149_984\", \"ini\": 828, \"clust\": 2263, \"rank\": 1387, \"rankvar\": 331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1998, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 390, \"cat-2\": \"Density: 22\", \"cat_2_index\": 303, \"group\": [2261.0, 1235.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13572_BALBc-1_X02_Y02_115_109\", \"ini\": 827, \"clust\": 704, \"rank\": 107, \"rankvar\": 869, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1999, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 705, \"cat-2\": \"Density: 27\", \"cat_2_index\": 973, \"group\": [705.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13710_BALBc-1_X02_Y02_1150_801\", \"ini\": 826, \"clust\": 677, \"rank\": 233, \"rankvar\": 1471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2000, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2642, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1780, \"group\": [678.0, 448.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13772_BALBc-1_X02_Y02_1151_585\", \"ini\": 825, \"clust\": 2590, \"rank\": 1713, \"rankvar\": 1238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2001, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2643, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2001, \"group\": [2593.0, 1401.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13938_BALBc-1_X02_Y02_1153_645\", \"ini\": 824, \"clust\": 352, \"rank\": 1115, \"rankvar\": 1140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2002, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 391, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1891, \"group\": [353.0, 247.0, 87.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14156_BALBc-1_X02_Y02_1156_744\", \"ini\": 823, \"clust\": 1833, \"rank\": 2805, \"rankvar\": 2422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2003, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2644, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2340, \"group\": [1833.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14485_BALBc-1_X02_Y02_1160_173\", \"ini\": 822, \"clust\": 940, \"rank\": 111, \"rankvar\": 275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2004, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2324, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1127, \"group\": [944.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14492_BALBc-1_X02_Y02_1160_253\", \"ini\": 821, \"clust\": 1314, \"rank\": 1624, \"rankvar\": 656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2005, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1358, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1128, \"group\": [1316.0, 684.0, 202.0, 57.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14502_BALBc-1_X02_Y02_1160_402\", \"ini\": 820, \"clust\": 2740, \"rank\": 995, \"rankvar\": 632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2006, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2798, \"cat-2\": \"Density: 27\", \"cat_2_index\": 974, \"group\": [2741.0, 1476.0, 436.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14546_BALBc-1_X02_Y02_1160_824\", \"ini\": 819, \"clust\": 739, \"rank\": 616, \"rankvar\": 350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2007, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 392, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1781, \"group\": [739.0, 467.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14684_BALBc-1_X02_Y02_1162_447\", \"ini\": 818, \"clust\": 2516, \"rank\": 1732, \"rankvar\": 1646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2008, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2799, \"cat-2\": \"Density: 23\", \"cat_2_index\": 415, \"group\": [2516.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14743_BALBc-1_X02_Y02_1163_128\", \"ini\": 817, \"clust\": 699, \"rank\": 82, \"rankvar\": 1105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2009, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1982, \"cat-2\": \"Density: 26\", \"cat_2_index\": 821, \"group\": [697.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14867_BALBc-1_X02_Y02_1164_624\", \"ini\": 816, \"clust\": 1995, \"rank\": 2344, \"rankvar\": 2356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2010, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2645, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1782, \"group\": [1993.0, 1127.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14896_BALBc-1_X02_Y02_1164_922\", \"ini\": 815, \"clust\": 2164, \"rank\": 1641, \"rankvar\": 1191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2011, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 393, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1783, \"group\": [2161.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14971_BALBc-1_X02_Y02_1165_840\", \"ini\": 814, \"clust\": 1100, \"rank\": 182, \"rankvar\": 16, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2012, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 394, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1892, \"group\": [1101.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15063_BALBc-1_X02_Y02_1166_969\", \"ini\": 813, \"clust\": 2027, \"rank\": 2178, \"rankvar\": 1275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2013, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 395, \"cat-2\": \"Density: 24\", \"cat_2_index\": 542, \"group\": [2027.0, 1142.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15135_BALBc-1_X02_Y02_1167_999\", \"ini\": 812, \"clust\": 2113, \"rank\": 2787, \"rankvar\": 2533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2014, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2161, \"cat-2\": \"Density: 20\", \"cat_2_index\": 169, \"group\": [2112.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15303_BALBc-1_X02_Y02_117_410\", \"ini\": 811, \"clust\": 901, \"rank\": 41, \"rankvar\": 382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2015, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2646, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1682, \"group\": [902.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15305_BALBc-1_X02_Y02_117_463\", \"ini\": 810, \"clust\": 2143, \"rank\": 2782, \"rankvar\": 2688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2016, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 849, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1893, \"group\": [2143.0, 1160.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15393_BALBc-1_X02_Y02_1170_650\", \"ini\": 809, \"clust\": 2016, \"rank\": 2173, \"rankvar\": 2143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2017, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 396, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2002, \"group\": [2014.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15414_BALBc-1_X02_Y02_1170_876\", \"ini\": 808, \"clust\": 2335, \"rank\": 2168, \"rankvar\": 1178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2018, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 397, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1784, \"group\": [2334.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15423_BALBc-1_X02_Y02_1170_954\", \"ini\": 807, \"clust\": 798, \"rank\": 129, \"rankvar\": 729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2019, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 398, \"cat-2\": \"Density: 26\", \"cat_2_index\": 822, \"group\": [800.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15568_BALBc-1_X02_Y02_1172_980\", \"ini\": 806, \"clust\": 734, \"rank\": 226, \"rankvar\": 630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2020, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 399, \"cat-2\": \"Density: 22\", \"cat_2_index\": 304, \"group\": [734.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15595_BALBc-1_X02_Y02_1173_333\", \"ini\": 805, \"clust\": 139, \"rank\": 1621, \"rankvar\": 296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2021, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2800, \"cat-2\": \"Density: 26\", \"cat_2_index\": 823, \"group\": [142.0, 88.0, 28.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15880_BALBc-1_X02_Y02_1176_923\", \"ini\": 804, \"clust\": 2010, \"rank\": 1876, \"rankvar\": 1378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2022, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 400, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2003, \"group\": [2011.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15939_BALBc-1_X02_Y02_1177_805\", \"ini\": 803, \"clust\": 1942, \"rank\": 2058, \"rankvar\": 508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2023, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 401, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1894, \"group\": [1942.0, 1112.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15968_BALBc-1_X02_Y02_1178_208\", \"ini\": 802, \"clust\": 933, \"rank\": 257, \"rankvar\": 781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2024, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1359, \"cat-2\": \"Density: 26\", \"cat_2_index\": 824, \"group\": [933.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15986_BALBc-1_X02_Y02_1178_415\", \"ini\": 801, \"clust\": 90, \"rank\": 681, \"rankvar\": 335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2025, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2647, \"cat-2\": \"Density: 24\", \"cat_2_index\": 543, \"group\": [91.0, 64.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16048_BALBc-1_X02_Y02_1178_942\", \"ini\": 800, \"clust\": 1965, \"rank\": 2382, \"rankvar\": 1779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2026, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 402, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1683, \"group\": [1963.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16314_BALBc-1_X02_Y02_1181_752\", \"ini\": 799, \"clust\": 1971, \"rank\": 2498, \"rankvar\": 1823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2027, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2648, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2100, \"group\": [1965.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16545_BALBc-1_X02_Y02_1184_787\", \"ini\": 798, \"clust\": 859, \"rank\": 112, \"rankvar\": 172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2028, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2649, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1785, \"group\": [860.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16556_BALBc-1_X02_Y02_1184_889\", \"ini\": 797, \"clust\": 851, \"rank\": 75, \"rankvar\": 1025, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2029, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 403, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2101, \"group\": [852.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16843_BALBc-1_X02_Y02_1188_851\", \"ini\": 796, \"clust\": 2169, \"rank\": 1731, \"rankvar\": 1277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2030, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 404, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2102, \"group\": [2163.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16917_BALBc-1_X02_Y02_1189_710\", \"ini\": 795, \"clust\": 2017, \"rank\": 2105, \"rankvar\": 1416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2031, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2162, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1684, \"group\": [2015.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17166_BALBc-1_X02_Y02_1192_172\", \"ini\": 794, \"clust\": 709, \"rank\": 484, \"rankvar\": 1192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2032, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 850, \"cat-2\": \"Density: 27\", \"cat_2_index\": 975, \"group\": [712.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17200_BALBc-1_X02_Y02_1192_66\", \"ini\": 793, \"clust\": 1554, \"rank\": 1806, \"rankvar\": 453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2033, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 851, \"cat-2\": \"Density: 22\", \"cat_2_index\": 305, \"group\": [1558.0, 848.0, 247.0, 70.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17277_BALBc-1_X02_Y02_1193_669\", \"ini\": 792, \"clust\": 974, \"rank\": 932, \"rankvar\": 15, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2034, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2163, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2004, \"group\": [974.0, 499.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17324_BALBc-1_X02_Y02_1194_343\", \"ini\": 791, \"clust\": 938, \"rank\": 29, \"rankvar\": 1111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2035, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2801, \"cat-2\": \"Density: 24\", \"cat_2_index\": 544, \"group\": [938.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17418_BALBc-1_X02_Y02_1195_565\", \"ini\": 790, \"clust\": 2218, \"rank\": 1068, \"rankvar\": 866, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2036, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2650, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1277, \"group\": [2221.0, 1202.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17557_BALBc-1_X02_Y02_1197_533\", \"ini\": 789, \"clust\": 443, \"rank\": 109, \"rankvar\": 1625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2037, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2651, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1423, \"group\": [443.0, 310.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17661_BALBc-1_X02_Y02_1198_827\", \"ini\": 788, \"clust\": 1698, \"rank\": 1953, \"rankvar\": 2685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2038, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 405, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2103, \"group\": [1699.0, 956.0, 286.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17686_BALBc-1_X02_Y02_1199_215\", \"ini\": 787, \"clust\": 2822, \"rank\": 1911, \"rankvar\": 1922, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2039, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2248, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1278, \"group\": [2825.0, 1536.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17736_BALBc-1_X02_Y02_1199_815\", \"ini\": 786, \"clust\": 2098, \"rank\": 2650, \"rankvar\": 2522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2040, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 406, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2104, \"group\": [2095.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17809_BALBc-1_X02_Y02_12_793\", \"ini\": 785, \"clust\": 2715, \"rank\": 2218, \"rankvar\": 1810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2041, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1360, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1786, \"group\": [2716.0, 1458.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18091_BALBc-1_X02_Y02_1202_280\", \"ini\": 784, \"clust\": 1271, \"rank\": 1127, \"rankvar\": 1760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2042, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2249, \"cat-2\": \"Density: 24\", \"cat_2_index\": 545, \"group\": [1272.0, 651.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18146_BALBc-1_X02_Y02_1202_911\", \"ini\": 783, \"clust\": 2357, \"rank\": 2627, \"rankvar\": 1921, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2043, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 407, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2492, \"group\": [2352.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18155_BALBc-1_X02_Y02_1202_975\", \"ini\": 782, \"clust\": 473, \"rank\": 362, \"rankvar\": 604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2044, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 408, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1129, \"group\": [473.0, 330.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18172_BALBc-1_X02_Y02_1203_305\", \"ini\": 781, \"clust\": 171, \"rank\": 588, \"rankvar\": 463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2045, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2652, \"cat-2\": \"Density: 25\", \"cat_2_index\": 681, \"group\": [170.0, 110.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18233_BALBc-1_X02_Y02_1204_137\", \"ini\": 780, \"clust\": 1591, \"rank\": 1505, \"rankvar\": 1492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2046, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 706, \"cat-2\": \"Density: 23\", \"cat_2_index\": 416, \"group\": [1595.0, 878.0, 256.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18261_BALBc-1_X02_Y02_1204_367\", \"ini\": 779, \"clust\": 1117, \"rank\": 678, \"rankvar\": 495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2047, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2802, \"cat-2\": \"Density: 26\", \"cat_2_index\": 825, \"group\": [1120.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18290_BALBc-1_X02_Y02_1204_637\", \"ini\": 778, \"clust\": 2200, \"rank\": 1397, \"rankvar\": 1197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2048, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2164, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1895, \"group\": [2198.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18505_BALBc-1_X02_Y02_1207_236\", \"ini\": 777, \"clust\": 807, \"rank\": 69, \"rankvar\": 770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2049, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2250, \"cat-2\": \"Density: 25\", \"cat_2_index\": 682, \"group\": [811.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18616_BALBc-1_X02_Y02_1208_730\", \"ini\": 776, \"clust\": 2201, \"rank\": 1335, \"rankvar\": 499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2050, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 409, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2341, \"group\": [2199.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18834_BALBc-1_X02_Y02_1210_68\", \"ini\": 775, \"clust\": 1333, \"rank\": 1138, \"rankvar\": 681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2051, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 852, \"cat-2\": \"Density: 22\", \"cat_2_index\": 306, \"group\": [1334.0, 700.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18835_BALBc-1_X02_Y02_1210_690\", \"ini\": 774, \"clust\": 1041, \"rank\": 469, \"rankvar\": 533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2052, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 410, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1685, \"group\": [1044.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18895_BALBc-1_X02_Y02_1211_550\", \"ini\": 773, \"clust\": 2493, \"rank\": 1610, \"rankvar\": 2162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2053, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1361, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1279, \"group\": [2494.0, 1341.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18963_BALBc-1_X02_Y02_1212_417\", \"ini\": 772, \"clust\": 113, \"rank\": 491, \"rankvar\": 679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2054, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2653, \"cat-2\": \"Density: 23\", \"cat_2_index\": 417, \"group\": [112.0, 69.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19058_BALBc-1_X02_Y02_1213_786\", \"ini\": 771, \"clust\": 844, \"rank\": 49, \"rankvar\": 337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2055, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 411, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2185, \"group\": [844.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19143_BALBc-1_X02_Y02_1214_853\", \"ini\": 770, \"clust\": 2168, \"rank\": 1513, \"rankvar\": 1120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2056, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 412, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2186, \"group\": [2165.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19158_BALBc-1_X02_Y02_1214_998\", \"ini\": 769, \"clust\": 2339, \"rank\": 2235, \"rankvar\": 1180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2057, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 413, \"cat-2\": \"Density: 22\", \"cat_2_index\": 307, \"group\": [2336.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19934_BALBc-1_X02_Y02_1224_37\", \"ini\": 768, \"clust\": 426, \"rank\": 933, \"rankvar\": 120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2058, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 853, \"cat-2\": \"Density: 23\", \"cat_2_index\": 418, \"group\": [430.0, 305.0, 105.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19942_BALBc-1_X02_Y02_1224_457\", \"ini\": 767, \"clust\": 698, \"rank\": 48, \"rankvar\": 929, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2059, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2654, \"cat-2\": \"Density: 24\", \"cat_2_index\": 546, \"group\": [699.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19965_BALBc-1_X02_Y02_1224_717\", \"ini\": 766, \"clust\": 2099, \"rank\": 2711, \"rankvar\": 2539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2060, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 414, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2105, \"group\": [2096.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20040_BALBc-1_X02_Y02_1225_677\", \"ini\": 765, \"clust\": 2117, \"rank\": 2243, \"rankvar\": 2037, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2061, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 415, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2187, \"group\": [2117.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20113_BALBc-1_X02_Y02_1226_605\", \"ini\": 764, \"clust\": 2427, \"rank\": 1255, \"rankvar\": 210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2062, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2165, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2005, \"group\": [2428.0, 1293.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20117_BALBc-1_X02_Y02_1226_636\", \"ini\": 763, \"clust\": 576, \"rank\": 791, \"rankvar\": 607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2063, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 416, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2342, \"group\": [577.0, 394.0, 131.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20128_BALBc-1_X02_Y02_1226_776\", \"ini\": 762, \"clust\": 2000, \"rank\": 1794, \"rankvar\": 1260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2064, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2166, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2270, \"group\": [2001.0, 1133.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20281_BALBc-1_X02_Y02_1228_895\", \"ini\": 761, \"clust\": 2513, \"rank\": 1376, \"rankvar\": 1541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2065, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 417, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2271, \"group\": [2514.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20297_BALBc-1_X02_Y02_1229_260\", \"ini\": 760, \"clust\": 796, \"rank\": 420, \"rankvar\": 384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2066, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 418, \"cat-2\": \"Density: 24\", \"cat_2_index\": 547, \"group\": [797.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20538_BALBc-1_X02_Y02_1231_364\", \"ini\": 759, \"clust\": 2741, \"rank\": 1391, \"rankvar\": 1899, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2067, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 925, \"cat-2\": \"Density: 23\", \"cat_2_index\": 419, \"group\": [2742.0, 1477.0, 436.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20631_BALBc-1_X02_Y02_1232_383\", \"ini\": 758, \"clust\": 1034, \"rank\": 496, \"rankvar\": 74, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2068, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 419, \"cat-2\": \"Density: 22\", \"cat_2_index\": 308, \"group\": [1035.0, 520.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20752_BALBc-1_X02_Y02_1233_882\", \"ini\": 757, \"clust\": 2232, \"rank\": 1550, \"rankvar\": 282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2069, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 420, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2343, \"group\": [2233.0, 1212.0, 361.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20757_BALBc-1_X02_Y02_1233_942\", \"ini\": 756, \"clust\": 133, \"rank\": 823, \"rankvar\": 414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2070, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 421, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2006, \"group\": [133.0, 83.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20801_BALBc-1_X02_Y02_1234_579\", \"ini\": 755, \"clust\": 934, \"rank\": 276, \"rankvar\": 400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2071, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1362, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1686, \"group\": [934.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20824_BALBc-1_X02_Y02_1234_805\", \"ini\": 754, \"clust\": 2296, \"rank\": 1823, \"rankvar\": 688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2072, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2167, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2408, \"group\": [2294.0, 1250.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20990_BALBc-1_X02_Y02_1236_981\", \"ini\": 753, \"clust\": 876, \"rank\": 9, \"rankvar\": 457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2073, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2655, \"cat-2\": \"Density: 27\", \"cat_2_index\": 976, \"group\": [873.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21052_BALBc-1_X02_Y02_1238_118\", \"ini\": 752, \"clust\": 700, \"rank\": 121, \"rankvar\": 285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2074, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 707, \"cat-2\": \"Density: 24\", \"cat_2_index\": 548, \"group\": [698.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21101_BALBc-1_X02_Y02_1238_698\", \"ini\": 751, \"clust\": 990, \"rank\": 815, \"rankvar\": 725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2075, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 422, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2106, \"group\": [991.0, 508.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21177_BALBc-1_X02_Y02_1239_735\", \"ini\": 750, \"clust\": 744, \"rank\": 130, \"rankvar\": 1259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2076, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 423, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2188, \"group\": [743.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21417_BALBc-1_X02_Y02_1241_859\", \"ini\": 749, \"clust\": 905, \"rank\": 100, \"rankvar\": 13, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2077, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2168, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2189, \"group\": [903.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21484_BALBc-1_X02_Y02_1242_93\", \"ini\": 748, \"clust\": 2810, \"rank\": 1553, \"rankvar\": 1941, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2078, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 854, \"cat-2\": \"Density: 23\", \"cat_2_index\": 420, \"group\": [2809.0, 1526.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21581_BALBc-1_X02_Y02_1244_226\", \"ini\": 747, \"clust\": 163, \"rank\": 1514, \"rankvar\": 487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2079, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 855, \"cat-2\": \"Density: 27\", \"cat_2_index\": 977, \"group\": [164.0, 105.0, 34.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21628_BALBc-1_X02_Y02_1244_966\", \"ini\": 746, \"clust\": 2354, \"rank\": 2558, \"rankvar\": 1813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2080, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2656, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1424, \"group\": [2349.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21630_BALBc-1_X02_Y02_1244_997\", \"ini\": 745, \"clust\": 2312, \"rank\": 2026, \"rankvar\": 821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2081, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2657, \"cat-2\": \"Density: 22\", \"cat_2_index\": 309, \"group\": [2313.0, 1253.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21647_BALBc-1_X02_Y02_1245_199\", \"ini\": 744, \"clust\": 680, \"rank\": 599, \"rankvar\": 229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2082, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 708, \"cat-2\": \"Density: 27\", \"cat_2_index\": 978, \"group\": [680.0, 449.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21656_BALBc-1_X02_Y02_1245_280\", \"ini\": 743, \"clust\": 178, \"rank\": 662, \"rankvar\": 1057, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2083, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 926, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1280, \"group\": [181.0, 118.0, 38.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21832_BALBc-1_X02_Y02_1247_883\", \"ini\": 742, \"clust\": 134, \"rank\": 685, \"rankvar\": 1094, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2084, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 424, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2190, \"group\": [134.0, 83.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22423_BALBc-1_X02_Y02_1254_748\", \"ini\": 741, \"clust\": 1966, \"rank\": 2417, \"rankvar\": 1358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2085, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 425, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2344, \"group\": [1961.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22543_BALBc-1_X02_Y02_1256_600\", \"ini\": 740, \"clust\": 2494, \"rank\": 1751, \"rankvar\": 1424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2086, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 426, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2107, \"group\": [2495.0, 1341.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22609_BALBc-1_X02_Y02_1257_427\", \"ini\": 739, \"clust\": 350, \"rank\": 1325, \"rankvar\": 868, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2087, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1363, \"cat-2\": \"Density: 21\", \"cat_2_index\": 222, \"group\": [351.0, 246.0, 86.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22632_BALBc-1_X02_Y02_1257_646\", \"ini\": 738, \"clust\": 154, \"rank\": 1655, \"rankvar\": 1391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2088, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 427, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2108, \"group\": [154.0, 96.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22899_BALBc-1_X02_Y02_1260_506\", \"ini\": 737, \"clust\": 952, \"rank\": 739, \"rankvar\": 357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2089, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1364, \"cat-2\": \"Density: 25\", \"cat_2_index\": 683, \"group\": [953.0, 486.0, 139.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22914_BALBc-1_X02_Y02_1260_721\", \"ini\": 736, \"clust\": 1953, \"rank\": 2052, \"rankvar\": 2033, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2090, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 428, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2007, \"group\": [1955.0, 1115.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22990_BALBc-1_X02_Y02_1261_872\", \"ini\": 735, \"clust\": 1944, \"rank\": 1892, \"rankvar\": 609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2091, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 429, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1896, \"group\": [1944.0, 1113.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23225_BALBc-1_X02_Y02_1264_989\", \"ini\": 734, \"clust\": 2338, \"rank\": 2491, \"rankvar\": 1215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2092, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2169, \"cat-2\": \"Density: 20\", \"cat_2_index\": 170, \"group\": [2338.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23259_BALBc-1_X02_Y02_1265_403\", \"ini\": 733, \"clust\": 849, \"rank\": 207, \"rankvar\": 112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2093, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 430, \"cat-2\": \"Density: 19\", \"cat_2_index\": 123, \"group\": [850.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23400_BALBc-1_X02_Y02_1267_557\", \"ini\": 732, \"clust\": 6, \"rank\": 1308, \"rankvar\": 2407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2094, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1365, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1130, \"group\": [6.0, 6.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23411_BALBc-1_X02_Y02_1267_797\", \"ini\": 731, \"clust\": 431, \"rank\": 914, \"rankvar\": 1832, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2095, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2170, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1897, \"group\": [432.0, 306.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23420_BALBc-1_X02_Y02_1267_912\", \"ini\": 730, \"clust\": 2384, \"rank\": 2502, \"rankvar\": 1569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2096, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 431, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1425, \"group\": [2383.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23445_BALBc-1_X02_Y02_1268_264\", \"ini\": 729, \"clust\": 215, \"rank\": 1250, \"rankvar\": 409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2097, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 709, \"cat-2\": \"Density: 23\", \"cat_2_index\": 421, \"group\": [218.0, 150.0, 52.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23486_BALBc-1_X02_Y02_1268_775\", \"ini\": 728, \"clust\": 2532, \"rank\": 1353, \"rankvar\": 329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2098, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2171, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2191, \"group\": [2530.0, 1356.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23578_BALBc-1_X02_Y02_127_136\", \"ini\": 727, \"clust\": 2730, \"rank\": 2674, \"rankvar\": 2755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2099, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 432, \"cat-2\": \"Density: 22\", \"cat_2_index\": 310, \"group\": [2734.0, 1469.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23693_BALBc-1_X02_Y02_1270_691\", \"ini\": 726, \"clust\": 2068, \"rank\": 2710, \"rankvar\": 2144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2100, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 433, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1787, \"group\": [2068.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23786_BALBc-1_X02_Y02_1272_150\", \"ini\": 725, \"clust\": 903, \"rank\": 47, \"rankvar\": 98, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2101, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 710, \"cat-2\": \"Density: 20\", \"cat_2_index\": 171, \"group\": [901.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23903_BALBc-1_X02_Y02_1273_584\", \"ini\": 724, \"clust\": 425, \"rank\": 1234, \"rankvar\": 971, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2102, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 434, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1546, \"group\": [426.0, 302.0, 104.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23932_BALBc-1_X02_Y02_1273_933\", \"ini\": 723, \"clust\": 975, \"rank\": 938, \"rankvar\": 469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2103, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 435, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1281, \"group\": [978.0, 502.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24090_BALBc-1_X02_Y02_1275_977\", \"ini\": 722, \"clust\": 2001, \"rank\": 1698, \"rankvar\": 704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2104, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2172, \"cat-2\": \"Density: 20\", \"cat_2_index\": 172, \"group\": [2002.0, 1134.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24259_BALBc-1_X02_Y02_1278_364\", \"ini\": 721, \"clust\": 1315, \"rank\": 1928, \"rankvar\": 1250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2105, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1667, \"cat-2\": \"Density: 18\", \"cat_2_index\": 98, \"group\": [1314.0, 682.0, 201.0, 57.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24308_BALBc-1_X02_Y02_1278_906\", \"ini\": 720, \"clust\": 2178, \"rank\": 2139, \"rankvar\": 2526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2106, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 436, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1282, \"group\": [2177.0, 1182.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24363_BALBc-1_X02_Y02_1279_658\", \"ini\": 719, \"clust\": 2197, \"rank\": 1416, \"rankvar\": 1510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2107, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 437, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2109, \"group\": [2197.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24400_BALBc-1_X02_Y02_128_401\", \"ini\": 718, \"clust\": 7, \"rank\": 1311, \"rankvar\": 2388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2108, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2658, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1547, \"group\": [7.0, 6.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24702_BALBc-1_X02_Y02_1283_757\", \"ini\": 717, \"clust\": 889, \"rank\": 35, \"rankvar\": 640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2109, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 438, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1687, \"group\": [891.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24791_BALBc-1_X02_Y02_1284_937\", \"ini\": 716, \"clust\": 1967, \"rank\": 2271, \"rankvar\": 881, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2110, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2173, \"cat-2\": \"Density: 25\", \"cat_2_index\": 684, \"group\": [1962.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24871_BALBc-1_X02_Y02_1286_196\", \"ini\": 715, \"clust\": 545, \"rank\": 808, \"rankvar\": 772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2111, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 711, \"cat-2\": \"Density: 23\", \"cat_2_index\": 422, \"group\": [548.0, 374.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24910_BALBc-1_X02_Y02_1286_61\", \"ini\": 714, \"clust\": 179, \"rank\": 640, \"rankvar\": 212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2112, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 856, \"cat-2\": \"Density: 22\", \"cat_2_index\": 311, \"group\": [179.0, 116.0, 38.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24930_BALBc-1_X02_Y02_1286_94\", \"ini\": 713, \"clust\": 411, \"rank\": 1495, \"rankvar\": 1041, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2113, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 857, \"cat-2\": \"Density: 21\", \"cat_2_index\": 223, \"group\": [414.0, 291.0, 100.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24997_BALBc-1_X02_Y02_1287_830\", \"ini\": 712, \"clust\": 2289, \"rank\": 2211, \"rankvar\": 1509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2114, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2174, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1548, \"group\": [2289.0, 1246.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25247_BALBc-1_X02_Y02_1290_427\", \"ini\": 711, \"clust\": 544, \"rank\": 783, \"rankvar\": 1731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2115, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1366, \"cat-2\": \"Density: 18\", \"cat_2_index\": 99, \"group\": [549.0, 375.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25317_BALBc-1_X02_Y02_1291_314\", \"ini\": 710, \"clust\": 114, \"rank\": 649, \"rankvar\": 1170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2116, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 712, \"cat-2\": \"Density: 20\", \"cat_2_index\": 173, \"group\": [113.0, 69.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25428_BALBc-1_X02_Y02_1292_703\", \"ini\": 709, \"clust\": 1194, \"rank\": 663, \"rankvar\": 289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2117, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 439, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1688, \"group\": [1195.0, 588.0, 165.0, 44.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25511_BALBc-1_X02_Y02_1293_680\", \"ini\": 708, \"clust\": 1043, \"rank\": 222, \"rankvar\": 461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2118, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 440, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1689, \"group\": [1041.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25661_BALBc-1_X02_Y02_1295_739\", \"ini\": 707, \"clust\": 671, \"rank\": 560, \"rankvar\": 785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2119, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 441, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1898, \"group\": [674.0, 446.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25688_BALBc-1_X02_Y02_1296_24\", \"ini\": 706, \"clust\": 210, \"rank\": 763, \"rankvar\": 1326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2120, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1367, \"cat-2\": \"Density: 22\", \"cat_2_index\": 312, \"group\": [209.0, 141.0, 47.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25752_BALBc-1_X02_Y02_1297_227\", \"ini\": 705, \"clust\": 1267, \"rank\": 1368, \"rankvar\": 1161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2121, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2494, \"cat-2\": \"Density: 23\", \"cat_2_index\": 423, \"group\": [1270.0, 649.0, 187.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26022_BALBc-1_X02_Y02_13_668\", \"ini\": 704, \"clust\": 119, \"rank\": 1005, \"rankvar\": 539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2122, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1368, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1283, \"group\": [120.0, 76.0, 25.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26077_BALBc-1_X02_Y02_130_473\", \"ini\": 703, \"clust\": 1203, \"rank\": 992, \"rankvar\": 2277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2123, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 858, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1549, \"group\": [1205.0, 598.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26124_BALBc-1_X02_Y02_1300_173\", \"ini\": 702, \"clust\": 627, \"rank\": 468, \"rankvar\": 197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2124, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 442, \"cat-2\": \"Density: 19\", \"cat_2_index\": 124, \"group\": [626.0, 423.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26182_BALBc-1_X02_Y02_1300_787\", \"ini\": 701, \"clust\": 2458, \"rank\": 1061, \"rankvar\": 215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2125, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2175, \"cat-2\": \"Density: 27\", \"cat_2_index\": 979, \"group\": [2457.0, 1307.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26230_BALBc-1_X02_Y02_1301_568\", \"ini\": 700, \"clust\": 2663, \"rank\": 2755, \"rankvar\": 2499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2126, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2659, \"cat-2\": \"Density: 26\", \"cat_2_index\": 826, \"group\": [2664.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26312_BALBc-1_X02_Y02_1302_626\", \"ini\": 699, \"clust\": 1669, \"rank\": 1582, \"rankvar\": 1063, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2127, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 443, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1131, \"group\": [1670.0, 927.0, 271.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26315_BALBc-1_X02_Y02_1302_700\", \"ini\": 698, \"clust\": 150, \"rank\": 2047, \"rankvar\": 1802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2128, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 444, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1550, \"group\": [150.0, 94.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26391_BALBc-1_X02_Y02_1303_927\", \"ini\": 697, \"clust\": 871, \"rank\": 17, \"rankvar\": 203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2129, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2176, \"cat-2\": \"Density: 23\", \"cat_2_index\": 424, \"group\": [869.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26449_BALBc-1_X02_Y02_1304_811\", \"ini\": 696, \"clust\": 856, \"rank\": 12, \"rankvar\": 751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2130, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2177, \"cat-2\": \"Density: 26\", \"cat_2_index\": 827, \"group\": [854.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26566_BALBc-1_X02_Y02_1306_658\", \"ini\": 695, \"clust\": 1017, \"rank\": 667, \"rankvar\": 151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2131, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 445, \"cat-2\": \"Density: 26\", \"cat_2_index\": 828, \"group\": [1015.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26693_BALBc-1_X02_Y02_1308_47\", \"ini\": 694, \"clust\": 61, \"rank\": 1329, \"rankvar\": 1983, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2132, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 859, \"cat-2\": \"Density: 20\", \"cat_2_index\": 174, \"group\": [60.0, 49.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26715_BALBc-1_X02_Y02_1308_750\", \"ini\": 693, \"clust\": 1958, \"rank\": 2541, \"rankvar\": 2304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2133, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 446, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1426, \"group\": [1979.0, 1120.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26846_BALBc-1_X02_Y02_131_495\", \"ini\": 692, \"clust\": 1021, \"rank\": 268, \"rankvar\": 57, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2134, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 447, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1427, \"group\": [1020.0, 517.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27069_BALBc-1_X02_Y02_1312_571\", \"ini\": 691, \"clust\": 793, \"rank\": 136, \"rankvar\": 1431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2135, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2660, \"cat-2\": \"Density: 23\", \"cat_2_index\": 425, \"group\": [792.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27073_BALBc-1_X02_Y02_1312_596\", \"ini\": 690, \"clust\": 1031, \"rank\": 377, \"rankvar\": 60, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2136, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 448, \"cat-2\": \"Density: 24\", \"cat_2_index\": 549, \"group\": [1030.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27093_BALBc-1_X02_Y02_1312_855\", \"ini\": 689, \"clust\": 2182, \"rank\": 1371, \"rankvar\": 973, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2137, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 449, \"cat-2\": \"Density: 27\", \"cat_2_index\": 980, \"group\": [2207.0, 1189.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27175_BALBc-1_X02_Y02_1313_889\", \"ini\": 688, \"clust\": 1700, \"rank\": 2221, \"rankvar\": 568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2138, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 450, \"cat-2\": \"Density: 21\", \"cat_2_index\": 224, \"group\": [1704.0, 959.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27201_BALBc-1_X02_Y02_1314_469\", \"ini\": 687, \"clust\": 121, \"rank\": 1167, \"rankvar\": 300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2139, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2661, \"cat-2\": \"Density: 16\", \"cat_2_index\": 62, \"group\": [122.0, 77.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27203_BALBc-1_X02_Y02_1314_500\", \"ini\": 686, \"clust\": 34, \"rank\": 773, \"rankvar\": 1007, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2140, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2662, \"cat-2\": \"Density: 19\", \"cat_2_index\": 125, \"group\": [34.0, 31.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27300_BALBc-1_X02_Y02_1315_692\", \"ini\": 685, \"clust\": 936, \"rank\": 179, \"rankvar\": 618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2141, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 451, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1132, \"group\": [937.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27591_BALBc-1_X02_Y02_1319_767\", \"ini\": 684, \"clust\": 584, \"rank\": 607, \"rankvar\": 1403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2142, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 452, \"cat-2\": \"Density: 26\", \"cat_2_index\": 829, \"group\": [586.0, 399.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27698_BALBc-1_X02_Y02_1320_253\", \"ini\": 683, \"clust\": 1020, \"rank\": 320, \"rankvar\": 35, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2143, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2495, \"cat-2\": \"Density: 19\", \"cat_2_index\": 126, \"group\": [1022.0, 517.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27744_BALBc-1_X02_Y02_1320_827\", \"ini\": 682, \"clust\": 2309, \"rank\": 1842, \"rankvar\": 1515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2144, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 453, \"cat-2\": \"Density: 21\", \"cat_2_index\": 225, \"group\": [2306.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27802_BALBc-1_X02_Y02_1321_633\", \"ini\": 681, \"clust\": 2256, \"rank\": 1633, \"rankvar\": 1530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2145, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 454, \"cat-2\": \"Density: 24\", \"cat_2_index\": 550, \"group\": [2256.0, 1232.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27977_BALBc-1_X02_Y02_1324_135\", \"ini\": 680, \"clust\": 2630, \"rank\": 2301, \"rankvar\": 835, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2146, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1369, \"cat-2\": \"Density: 15\", \"cat_2_index\": 45, \"group\": [2637.0, 1429.0, 421.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28001_BALBc-1_X02_Y02_1324_408\", \"ini\": 679, \"clust\": 110, \"rank\": 903, \"rankvar\": 1076, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2147, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1668, \"cat-2\": \"Density: 13\", \"cat_2_index\": 20, \"group\": [110.0, 67.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28058_BALBc-1_X02_Y02_1325_209\", \"ini\": 678, \"clust\": 189, \"rank\": 1270, \"rankvar\": 980, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2148, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1983, \"cat-2\": \"Density: 18\", \"cat_2_index\": 100, \"group\": [189.0, 125.0, 41.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28143_BALBc-1_X02_Y02_1326_180\", \"ini\": 677, \"clust\": 303, \"rank\": 291, \"rankvar\": 2098, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2149, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 455, \"cat-2\": \"Density: 15\", \"cat_2_index\": 46, \"group\": [300.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28240_BALBc-1_X02_Y02_1327_430\", \"ini\": 676, \"clust\": 2721, \"rank\": 1992, \"rankvar\": 1021, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2150, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1984, \"cat-2\": \"Density: 12\", \"cat_2_index\": 10, \"group\": [2724.0, 1463.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28326_BALBc-1_X02_Y02_1328_311\", \"ini\": 675, \"clust\": 60, \"rank\": 1504, \"rankvar\": 1351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2151, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1370, \"cat-2\": \"Density: 13\", \"cat_2_index\": 21, \"group\": [62.0, 49.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28355_BALBc-1_X02_Y02_1328_671\", \"ini\": 674, \"clust\": 2282, \"rank\": 2370, \"rankvar\": 1722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2152, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2178, \"cat-2\": \"Density: 21\", \"cat_2_index\": 226, \"group\": [2404.0, 1274.0, 378.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28450_BALBc-1_X02_Y02_1329_795\", \"ini\": 673, \"clust\": 2281, \"rank\": 1970, \"rankvar\": 877, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2153, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 456, \"cat-2\": \"Density: 21\", \"cat_2_index\": 227, \"group\": [2281.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28468_BALBc-1_X02_Y02_1329_935\", \"ini\": 672, \"clust\": 2108, \"rank\": 2779, \"rankvar\": 2503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2154, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2179, \"cat-2\": \"Density: 17\", \"cat_2_index\": 82, \"group\": [2105.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28590_BALBc-1_X02_Y02_1330_719\", \"ini\": 671, \"clust\": 2081, \"rank\": 2451, \"rankvar\": 1700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2155, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2180, \"cat-2\": \"Density: 25\", \"cat_2_index\": 685, \"group\": [2094.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28625_BALBc-1_X02_Y02_1331_165\", \"ini\": 670, \"clust\": 180, \"rank\": 978, \"rankvar\": 18, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2156, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 628, \"cat-2\": \"Density: 14\", \"cat_2_index\": 32, \"group\": [180.0, 117.0, 38.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28658_BALBc-1_X02_Y02_1331_656\", \"ini\": 669, \"clust\": 732, \"rank\": 411, \"rankvar\": 541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2157, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2181, \"cat-2\": \"Density: 23\", \"cat_2_index\": 426, \"group\": [731.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28726_BALBc-1_X02_Y02_1332_561\", \"ini\": 668, \"clust\": 2709, \"rank\": 2661, \"rankvar\": 2324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2158, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2663, \"cat-2\": \"Density: 19\", \"cat_2_index\": 127, \"group\": [2711.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28748_BALBc-1_X02_Y02_1332_775\", \"ini\": 667, \"clust\": 2517, \"rank\": 1345, \"rankvar\": 736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2159, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 457, \"cat-2\": \"Density: 20\", \"cat_2_index\": 175, \"group\": [2520.0, 1352.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28827_BALBc-1_X02_Y02_1333_879\", \"ini\": 666, \"clust\": 2198, \"rank\": 1217, \"rankvar\": 1357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2160, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2182, \"cat-2\": \"Density: 18\", \"cat_2_index\": 101, \"group\": [2195.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28880_BALBc-1_X02_Y02_1334_638\", \"ini\": 665, \"clust\": 116, \"rank\": 736, \"rankvar\": 138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2161, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 458, \"cat-2\": \"Density: 20\", \"cat_2_index\": 176, \"group\": [116.0, 72.0, 24.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29002_BALBc-1_X02_Y02_1336_613\", \"ini\": 664, \"clust\": 142, \"rank\": 1652, \"rankvar\": 884, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2162, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 459, \"cat-2\": \"Density: 19\", \"cat_2_index\": 128, \"group\": [145.0, 90.0, 29.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29036_BALBc-1_X02_Y02_1337_280\", \"ini\": 663, \"clust\": 382, \"rank\": 1617, \"rankvar\": 2395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2163, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1371, \"cat-2\": \"Density: 13\", \"cat_2_index\": 22, \"group\": [382.0, 265.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29306_BALBc-1_X02_Y02_135_188\", \"ini\": 662, \"clust\": 1410, \"rank\": 1684, \"rankvar\": 1735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2164, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1372, \"cat-2\": \"Density: 23\", \"cat_2_index\": 427, \"group\": [1411.0, 760.0, 225.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29325_BALBc-1_X02_Y02_135_44\", \"ini\": 661, \"clust\": 1065, \"rank\": 466, \"rankvar\": 966, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2165, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1373, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1690, \"group\": [1069.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29381_BALBc-1_X02_Y02_136_322\", \"ini\": 660, \"clust\": 1934, \"rank\": 2811, \"rankvar\": 2682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2166, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2664, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1428, \"group\": [1934.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29406_BALBc-1_X02_Y02_136_579\", \"ini\": 659, \"clust\": 1774, \"rank\": 2145, \"rankvar\": 2192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2167, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 460, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2110, \"group\": [1773.0, 1005.0, 303.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29538_BALBc-1_X02_Y02_138_553\", \"ini\": 658, \"clust\": 423, \"rank\": 1015, \"rankvar\": 63, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2168, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 461, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2272, \"group\": [423.0, 299.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29589_BALBc-1_X02_Y02_139_229\", \"ini\": 657, \"clust\": 2729, \"rank\": 2574, \"rankvar\": 2810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2169, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1374, \"cat-2\": \"Density: 22\", \"cat_2_index\": 313, \"group\": [2729.0, 1467.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29755_BALBc-1_X02_Y02_140_609\", \"ini\": 656, \"clust\": 948, \"rank\": 1213, \"rankvar\": 711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2170, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1375, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2008, \"group\": [952.0, 485.0, 138.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29945_BALBc-1_X02_Y02_143_270\", \"ini\": 655, \"clust\": 2808, \"rank\": 1618, \"rankvar\": 2550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2171, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1552, \"cat-2\": \"Density: 23\", \"cat_2_index\": 428, \"group\": [2817.0, 1531.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29975_BALBc-1_X02_Y02_143_638\", \"ini\": 654, \"clust\": 2466, \"rank\": 1240, \"rankvar\": 1312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2172, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1376, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2192, \"group\": [2469.0, 1317.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29979_BALBc-1_X02_Y02_143_672\", \"ini\": 653, \"clust\": 1205, \"rank\": 1344, \"rankvar\": 2233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2173, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1377, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2009, \"group\": [1204.0, 597.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30142_BALBc-1_X02_Y02_145_833\", \"ini\": 652, \"clust\": 1798, \"rank\": 2413, \"rankvar\": 2581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2174, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1378, \"cat-2\": \"Density: 26\", \"cat_2_index\": 830, \"group\": [1797.0, 1016.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30179_BALBc-1_X02_Y02_146_479\", \"ini\": 651, \"clust\": 2708, \"rank\": 2295, \"rankvar\": 1680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2175, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 860, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1429, \"group\": [2712.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30188_BALBc-1_X02_Y02_146_532\", \"ini\": 650, \"clust\": 585, \"rank\": 454, \"rankvar\": 675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2176, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1379, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1788, \"group\": [585.0, 399.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30434_BALBc-1_X02_Y02_149_94\", \"ini\": 649, \"clust\": 2503, \"rank\": 2522, \"rankvar\": 2713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2177, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 713, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1284, \"group\": [2502.0, 1345.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30646_BALBc-1_X02_Y02_151_872\", \"ini\": 648, \"clust\": 1032, \"rank\": 178, \"rankvar\": 293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2178, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1380, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1285, \"group\": [1031.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30861_BALBc-1_X02_Y02_154_562\", \"ini\": 647, \"clust\": 2228, \"rank\": 1266, \"rankvar\": 646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2179, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1381, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2010, \"group\": [2227.0, 1206.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30899_BALBc-1_X02_Y02_155_136\", \"ini\": 646, \"clust\": 2635, \"rank\": 2556, \"rankvar\": 1128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2180, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 462, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1133, \"group\": [2633.0, 1426.0, 420.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30927_BALBc-1_X02_Y02_155_518\", \"ini\": 645, \"clust\": 2222, \"rank\": 1602, \"rankvar\": 418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2181, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1382, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1551, \"group\": [2228.0, 1207.0, 357.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31105_BALBc-1_X02_Y02_157_714\", \"ini\": 644, \"clust\": 1856, \"rank\": 2234, \"rankvar\": 1649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2182, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1383, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1899, \"group\": [1857.0, 1049.0, 316.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31639_BALBc-1_X02_Y02_164_25\", \"ini\": 643, \"clust\": 2811, \"rank\": 1501, \"rankvar\": 1875, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1384, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1286, \"group\": [2812.0, 1527.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31675_BALBc-1_X02_Y02_164_786\", \"ini\": 642, \"clust\": 2713, \"rank\": 1775, \"rankvar\": 1235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2184, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1385, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1287, \"group\": [2714.0, 1457.0, 428.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31758_BALBc-1_X02_Y02_165_987\", \"ini\": 641, \"clust\": 1777, \"rank\": 1963, \"rankvar\": 2460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2185, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1386, \"cat-2\": \"Density: 18\", \"cat_2_index\": 102, \"group\": [1777.0, 1008.0, 304.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31767_BALBc-1_X02_Y02_166_176\", \"ini\": 640, \"clust\": 624, \"rank\": 693, \"rankvar\": 356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2186, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1387, \"cat-2\": \"Density: 22\", \"cat_2_index\": 314, \"group\": [625.0, 422.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31803_BALBc-1_X02_Y02_166_611\", \"ini\": 639, \"clust\": 1673, \"rank\": 1445, \"rankvar\": 856, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2187, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 463, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1789, \"group\": [1672.0, 929.0, 272.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31929_BALBc-1_X02_Y02_168_588\", \"ini\": 638, \"clust\": 2441, \"rank\": 1430, \"rankvar\": 734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2188, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1388, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1691, \"group\": [2444.0, 1300.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31935_BALBc-1_X02_Y02_168_629\", \"ini\": 637, \"clust\": 1796, \"rank\": 2436, \"rankvar\": 2401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2189, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1389, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1790, \"group\": [1798.0, 1016.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32146_BALBc-1_X02_Y02_170_52\", \"ini\": 636, \"clust\": 313, \"rank\": 1529, \"rankvar\": 2445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2190, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 714, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1430, \"group\": [310.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32156_BALBc-1_X02_Y02_170_685\", \"ini\": 635, \"clust\": 727, \"rank\": 321, \"rankvar\": 56, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2191, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1390, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1791, \"group\": [727.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32358_BALBc-1_X02_Y02_173_739\", \"ini\": 634, \"clust\": 1787, \"rank\": 1944, \"rankvar\": 2735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2192, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1391, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1552, \"group\": [1789.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32397_BALBc-1_X02_Y02_174_285\", \"ini\": 633, \"clust\": 2785, \"rank\": 1829, \"rankvar\": 2691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2193, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 715, \"cat-2\": \"Density: 21\", \"cat_2_index\": 228, \"group\": [2786.0, 1508.0, 449.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32509_BALBc-1_X02_Y02_175_663\", \"ini\": 632, \"clust\": 387, \"rank\": 716, \"rankvar\": 2572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2194, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1392, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1792, \"group\": [387.0, 269.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32671_BALBc-1_X02_Y02_177_97\", \"ini\": 631, \"clust\": 1779, \"rank\": 2683, \"rankvar\": 2571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2195, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 716, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1431, \"group\": [1779.0, 1010.0, 306.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32767_BALBc-1_X02_Y02_179_372\", \"ini\": 630, \"clust\": 583, \"rank\": 915, \"rankvar\": 1366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2196, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2665, \"cat-2\": \"Density: 23\", \"cat_2_index\": 429, \"group\": [582.0, 398.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32865_BALBc-1_X02_Y02_18_566\", \"ini\": 629, \"clust\": 1863, \"rank\": 1425, \"rankvar\": 1244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2197, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1393, \"cat-2\": \"Density: 24\", \"cat_2_index\": 551, \"group\": [1864.0, 1055.0, 318.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32892_BALBc-1_X02_Y02_18_931\", \"ini\": 628, \"clust\": 255, \"rank\": 908, \"rankvar\": 773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2198, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1394, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1288, \"group\": [254.0, 177.0, 62.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33131_BALBc-1_X02_Y02_183_257\", \"ini\": 627, \"clust\": 234, \"rank\": 991, \"rankvar\": 1466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2199, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1395, \"cat-2\": \"Density: 20\", \"cat_2_index\": 177, \"group\": [238.0, 166.0, 58.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33364_BALBc-1_X02_Y02_186_477\", \"ini\": 626, \"clust\": 415, \"rank\": 972, \"rankvar\": 7, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2200, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 861, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1432, \"group\": [416.0, 293.0, 101.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33643_BALBc-1_X02_Y02_19_416\", \"ini\": 625, \"clust\": 1731, \"rank\": 1971, \"rankvar\": 2415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2201, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 862, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2111, \"group\": [1736.0, 979.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33747_BALBc-1_X02_Y02_190_764\", \"ini\": 624, \"clust\": 2714, \"rank\": 2014, \"rankvar\": 1093, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2202, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1396, \"cat-2\": \"Density: 27\", \"cat_2_index\": 981, \"group\": [2715.0, 1457.0, 428.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33886_BALBc-1_X02_Y02_192_590\", \"ini\": 623, \"clust\": 260, \"rank\": 592, \"rankvar\": 1483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2203, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2666, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2112, \"group\": [259.0, 182.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34093_BALBc-1_X02_Y02_195_549\", \"ini\": 622, \"clust\": 2765, \"rank\": 2380, \"rankvar\": 2215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2204, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1397, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1289, \"group\": [2766.0, 1497.0, 446.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34272_BALBc-1_X02_Y02_197_884\", \"ini\": 621, \"clust\": 2644, \"rank\": 2734, \"rankvar\": 2594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2205, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 629, \"cat-2\": \"Density: 27\", \"cat_2_index\": 982, \"group\": [2644.0, 1435.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34519_BALBc-1_X02_Y02_200_308\", \"ini\": 620, \"clust\": 124, \"rank\": 897, \"rankvar\": 590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2206, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2667, \"cat-2\": \"Density: 25\", \"cat_2_index\": 686, \"group\": [124.0, 78.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34660_BALBc-1_X02_Y02_202_393\", \"ini\": 619, \"clust\": 2622, \"rank\": 1483, \"rankvar\": 863, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2207, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2668, \"cat-2\": \"Density: 25\", \"cat_2_index\": 687, \"group\": [2627.0, 1420.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34801_BALBc-1_X02_Y02_203_987\", \"ini\": 618, \"clust\": 2552, \"rank\": 2369, \"rankvar\": 1974, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2208, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1398, \"cat-2\": \"Density: 17\", \"cat_2_index\": 83, \"group\": [2558.0, 1380.0, 411.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34909_BALBc-1_X02_Y02_205_632\", \"ini\": 617, \"clust\": 2617, \"rank\": 2536, \"rankvar\": 2821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2209, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1399, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2011, \"group\": [2618.0, 1415.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34936_BALBc-1_X02_Y02_205_931\", \"ini\": 616, \"clust\": 1813, \"rank\": 2730, \"rankvar\": 2768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2210, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1400, \"cat-2\": \"Density: 26\", \"cat_2_index\": 831, \"group\": [1814.0, 1026.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35064_BALBc-1_X02_Y02_207_701\", \"ini\": 615, \"clust\": 2454, \"rank\": 1572, \"rankvar\": 1015, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2211, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1401, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1692, \"group\": [2454.0, 1305.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35117_BALBc-1_X02_Y02_208_445\", \"ini\": 614, \"clust\": 1045, \"rank\": 646, \"rankvar\": 182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2212, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2669, \"cat-2\": \"Density: 26\", \"cat_2_index\": 832, \"group\": [1047.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35215_BALBc-1_X02_Y02_209_729\", \"ini\": 613, \"clust\": 17, \"rank\": 1218, \"rankvar\": 776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2213, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1752, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1134, \"group\": [17.0, 16.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35344_BALBc-1_X02_Y02_210_512\", \"ini\": 612, \"clust\": 261, \"rank\": 941, \"rankvar\": 2019, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2214, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2670, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1135, \"group\": [260.0, 182.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35379_BALBc-1_X02_Y02_211_205\", \"ini\": 611, \"clust\": 74, \"rank\": 859, \"rankvar\": 249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2215, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1402, \"cat-2\": \"Density: 22\", \"cat_2_index\": 315, \"group\": [75.0, 56.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35409_BALBc-1_X02_Y02_211_663\", \"ini\": 610, \"clust\": 294, \"rank\": 1302, \"rankvar\": 1792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2216, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1403, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1553, \"group\": [295.0, 211.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35439_BALBc-1_X02_Y02_212_134\", \"ini\": 609, \"clust\": 208, \"rank\": 680, \"rankvar\": 1616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2217, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1404, \"cat-2\": \"Density: 27\", \"cat_2_index\": 983, \"group\": [207.0, 139.0, 47.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35525_BALBc-1_X02_Y02_213_248\", \"ini\": 608, \"clust\": 58, \"rank\": 1205, \"rankvar\": 885, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2218, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1405, \"cat-2\": \"Density: 22\", \"cat_2_index\": 316, \"group\": [59.0, 48.0, 21.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35690_BALBc-1_X02_Y02_215_161\", \"ini\": 607, \"clust\": 2726, \"rank\": 1312, \"rankvar\": 2150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2219, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1406, \"cat-2\": \"Density: 19\", \"cat_2_index\": 129, \"group\": [2726.0, 1465.0, 430.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36203_BALBc-1_X02_Y02_221_61\", \"ini\": 606, \"clust\": 548, \"rank\": 436, \"rankvar\": 1778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2220, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 717, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1433, \"group\": [546.0, 372.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36421_BALBc-1_X02_Y02_224_50\", \"ini\": 605, \"clust\": 374, \"rank\": 1417, \"rankvar\": 2130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2221, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2325, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1434, \"group\": [375.0, 261.0, 90.0, 25.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36428_BALBc-1_X02_Y02_224_564\", \"ini\": 604, \"clust\": 2464, \"rank\": 1021, \"rankvar\": 744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2222, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2671, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1435, \"group\": [2465.0, 1313.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36602_BALBc-1_X02_Y02_226_849\", \"ini\": 603, \"clust\": 2682, \"rank\": 2482, \"rankvar\": 2508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2223, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1407, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1136, \"group\": [2682.0, 1447.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36662_BALBc-1_X02_Y02_227_672\", \"ini\": 602, \"clust\": 2564, \"rank\": 1870, \"rankvar\": 1449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2224, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1753, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1436, \"group\": [2565.0, 1385.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37114_BALBc-1_X02_Y02_232_789\", \"ini\": 601, \"clust\": 1948, \"rank\": 2027, \"rankvar\": 1870, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2225, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1408, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1137, \"group\": [1952.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37225_BALBc-1_X02_Y02_234_543\", \"ini\": 600, \"clust\": 2573, \"rank\": 2240, \"rankvar\": 2322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2226, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 464, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1138, \"group\": [2572.0, 1391.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37303_BALBc-1_X02_Y02_235_622\", \"ini\": 599, \"clust\": 1184, \"rank\": 1058, \"rankvar\": 485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2227, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2672, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1437, \"group\": [1185.0, 578.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37334_BALBc-1_X02_Y02_236_115\", \"ini\": 598, \"clust\": 1750, \"rank\": 986, \"rankvar\": 1728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2228, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1409, \"cat-2\": \"Density: 27\", \"cat_2_index\": 984, \"group\": [1752.0, 993.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37540_BALBc-1_X02_Y02_238_897\", \"ini\": 597, \"clust\": 2645, \"rank\": 2748, \"rankvar\": 2661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2229, \"cat-1\": \"Neighbor: CD3(+) other markers (-)\", \"cat_1_index\": 948, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1793, \"group\": [2645.0, 1435.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37573_BALBc-1_X02_Y02_239_298\", \"ini\": 596, \"clust\": 1115, \"rank\": 597, \"rankvar\": 1058, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2230, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 718, \"cat-2\": \"Density: 24\", \"cat_2_index\": 552, \"group\": [1116.0, 525.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37791_BALBc-1_X02_Y02_241_389\", \"ini\": 595, \"clust\": 2543, \"rank\": 1079, \"rankvar\": 749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2231, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2673, \"cat-2\": \"Density: 22\", \"cat_2_index\": 317, \"group\": [2544.0, 1369.0, 407.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37827_BALBc-1_X02_Y02_242_102\", \"ini\": 594, \"clust\": 546, \"rank\": 127, \"rankvar\": 1247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2232, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1410, \"cat-2\": \"Density: 27\", \"cat_2_index\": 985, \"group\": [547.0, 373.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37931_BALBc-1_X02_Y02_243_508\", \"ini\": 593, \"clust\": 1022, \"rank\": 441, \"rankvar\": 4, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2233, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1411, \"cat-2\": \"Density: 26\", \"cat_2_index\": 833, \"group\": [1021.0, 517.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38145_BALBc-1_X02_Y02_246_163\", \"ini\": 592, \"clust\": 1676, \"rank\": 2134, \"rankvar\": 671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2234, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1412, \"cat-2\": \"Density: 20\", \"cat_2_index\": 178, \"group\": [1676.0, 933.0, 274.0, 78.0, 16.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38443_BALBc-1_X02_Y02_25_159\", \"ini\": 591, \"clust\": 187, \"rank\": 1551, \"rankvar\": 339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2235, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2674, \"cat-2\": \"Density: 20\", \"cat_2_index\": 179, \"group\": [190.0, 126.0, 42.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38529_BALBc-1_X02_Y02_250_569\", \"ini\": 590, \"clust\": 1206, \"rank\": 952, \"rankvar\": 697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2236, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2675, \"cat-2\": \"Density: 26\", \"cat_2_index\": 834, \"group\": [1209.0, 602.0, 170.0, 46.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38579_BALBc-1_X02_Y02_251_215\", \"ini\": 589, \"clust\": 2821, \"rank\": 2616, \"rankvar\": 2558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2237, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1585, \"cat-2\": \"Density: 23\", \"cat_2_index\": 430, \"group\": [2819.0, 1532.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38688_BALBc-1_X02_Y02_252_435\", \"ini\": 588, \"clust\": 2574, \"rank\": 2326, \"rankvar\": 2766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2238, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2676, \"cat-2\": \"Density: 22\", \"cat_2_index\": 318, \"group\": [2575.0, 1392.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38696_BALBc-1_X02_Y02_252_541\", \"ini\": 587, \"clust\": 2763, \"rank\": 1722, \"rankvar\": 1023, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2239, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 927, \"cat-2\": \"Density: 26\", \"cat_2_index\": 835, \"group\": [2764.0, 1496.0, 446.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38727_BALBc-1_X02_Y02_252_932\", \"ini\": 586, \"clust\": 1186, \"rank\": 1038, \"rankvar\": 764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2240, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1413, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1554, \"group\": [1186.0, 579.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38830_BALBc-1_X02_Y02_254_340\", \"ini\": 585, \"clust\": 445, \"rank\": 486, \"rankvar\": 614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2241, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2677, \"cat-2\": \"Density: 26\", \"cat_2_index\": 836, \"group\": [446.0, 312.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38872_BALBc-1_X02_Y02_254_893\", \"ini\": 584, \"clust\": 2683, \"rank\": 2466, \"rankvar\": 2135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2242, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1414, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1555, \"group\": [2683.0, 1447.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38912_BALBc-1_X02_Y02_255_475\", \"ini\": 583, \"clust\": 2586, \"rank\": 1436, \"rankvar\": 994, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2243, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1415, \"cat-2\": \"Density: 25\", \"cat_2_index\": 688, \"group\": [2586.0, 1398.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39046_BALBc-1_X02_Y02_257_270\", \"ini\": 582, \"clust\": 86, \"rank\": 820, \"rankvar\": 1042, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2244, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 719, \"cat-2\": \"Density: 21\", \"cat_2_index\": 229, \"group\": [87.0, 63.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39285_BALBc-1_X02_Y02_26_589\", \"ini\": 581, \"clust\": 743, \"rank\": 648, \"rankvar\": 703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2245, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1416, \"cat-2\": \"Density: 27\", \"cat_2_index\": 986, \"group\": [747.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39521_BALBc-1_X02_Y02_262_59\", \"ini\": 580, \"clust\": 2632, \"rank\": 2085, \"rankvar\": 2030, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2246, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1417, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1556, \"group\": [2632.0, 1425.0, 419.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39680_BALBc-1_X02_Y02_264_831\", \"ini\": 579, \"clust\": 2772, \"rank\": 2327, \"rankvar\": 1896, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2247, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1418, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1139, \"group\": [2774.0, 1502.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39683_BALBc-1_X02_Y02_264_853\", \"ini\": 578, \"clust\": 159, \"rank\": 1088, \"rankvar\": 1559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2248, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1419, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1557, \"group\": [158.0, 100.0, 33.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39823_BALBc-1_X02_Y02_266_650\", \"ini\": 577, \"clust\": 2647, \"rank\": 2575, \"rankvar\": 2133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2249, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2678, \"cat-2\": \"Density: 27\", \"cat_2_index\": 987, \"group\": [2646.0, 1436.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40170_BALBc-1_X02_Y02_270_307\", \"ini\": 576, \"clust\": 2495, \"rank\": 1755, \"rankvar\": 951, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2250, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 465, \"cat-2\": \"Density: 22\", \"cat_2_index\": 319, \"group\": [2496.0, 1342.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40172_BALBc-1_X02_Y02_270_325\", \"ini\": 575, \"clust\": 2735, \"rank\": 1531, \"rankvar\": 1647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2251, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2679, \"cat-2\": \"Density: 22\", \"cat_2_index\": 320, \"group\": [2736.0, 1471.0, 432.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40222_BALBc-1_X02_Y02_270_961\", \"ini\": 574, \"clust\": 1670, \"rank\": 1702, \"rankvar\": 1608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2252, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2326, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1140, \"group\": [1674.0, 931.0, 273.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40524_BALBc-1_X02_Y02_275_413\", \"ini\": 573, \"clust\": 617, \"rank\": 631, \"rankvar\": 842, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2253, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2680, \"cat-2\": \"Density: 19\", \"cat_2_index\": 130, \"group\": [618.0, 418.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40563_BALBc-1_X02_Y02_275_847\", \"ini\": 572, \"clust\": 301, \"rank\": 331, \"rankvar\": 2306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2254, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 466, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1290, \"group\": [301.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40879_BALBc-1_X02_Y02_28_120\", \"ini\": 571, \"clust\": 70, \"rank\": 638, \"rankvar\": 2047, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2255, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2681, \"cat-2\": \"Density: 21\", \"cat_2_index\": 230, \"group\": [66.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41079_BALBc-1_X02_Y02_281_863\", \"ini\": 570, \"clust\": 2463, \"rank\": 1408, \"rankvar\": 1650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2256, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1420, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1438, \"group\": [2461.0, 1309.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41088_BALBc-1_X02_Y02_281_933\", \"ini\": 569, \"clust\": 1869, \"rank\": 1154, \"rankvar\": 1188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2257, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2327, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2012, \"group\": [1869.0, 1059.0, 320.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41109_BALBc-1_X02_Y02_282_19\", \"ini\": 568, \"clust\": 83, \"rank\": 931, \"rankvar\": 1331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2258, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1421, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1291, \"group\": [84.0, 63.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41853_BALBc-1_X02_Y02_291_291\", \"ini\": 567, \"clust\": 2491, \"rank\": 1807, \"rankvar\": 748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2259, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1669, \"cat-2\": \"Density: 21\", \"cat_2_index\": 231, \"group\": [2491.0, 1338.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41921_BALBc-1_X02_Y02_292_234\", \"ini\": 566, \"clust\": 1159, \"rank\": 753, \"rankvar\": 222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2260, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2682, \"cat-2\": \"Density: 26\", \"cat_2_index\": 837, \"group\": [1159.0, 557.0, 154.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41969_BALBc-1_X02_Y02_292_826\", \"ini\": 565, \"clust\": 2215, \"rank\": 1648, \"rankvar\": 1457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2261, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1422, \"cat-2\": \"Density: 27\", \"cat_2_index\": 988, \"group\": [2216.0, 1197.0, 354.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42255_BALBc-1_X02_Y02_296_91\", \"ini\": 564, \"clust\": 91, \"rank\": 393, \"rankvar\": 2081, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2262, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1423, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1439, \"group\": [92.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42361_BALBc-1_X02_Y02_298_51\", \"ini\": 563, \"clust\": 2530, \"rank\": 1429, \"rankvar\": 647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2263, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1553, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1440, \"group\": [2531.0, 1357.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42376_BALBc-1_X02_Y02_298_688\", \"ini\": 562, \"clust\": 2139, \"rank\": 2247, \"rankvar\": 1833, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2264, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1754, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1292, \"group\": [2141.0, 1158.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42549_BALBc-1_X02_Y02_30_717\", \"ini\": 561, \"clust\": 1804, \"rank\": 2520, \"rankvar\": 2803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2265, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1424, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1558, \"group\": [1801.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42623_BALBc-1_X02_Y02_300_742\", \"ini\": 560, \"clust\": 2626, \"rank\": 2361, \"rankvar\": 2145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2266, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1755, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1293, \"group\": [2626.0, 1419.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42724_BALBc-1_X02_Y02_301_912\", \"ini\": 559, \"clust\": 400, \"rank\": 328, \"rankvar\": 1726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2267, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1425, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2013, \"group\": [399.0, 279.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43016_BALBc-1_X02_Y02_305_789\", \"ini\": 558, \"clust\": 1793, \"rank\": 2564, \"rankvar\": 2721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2268, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2683, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1141, \"group\": [1791.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43073_BALBc-1_X02_Y02_306_759\", \"ini\": 557, \"clust\": 131, \"rank\": 596, \"rankvar\": 1405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2269, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2684, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1142, \"group\": [130.0, 81.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43104_BALBc-1_X02_Y02_307_25\", \"ini\": 556, \"clust\": 650, \"rank\": 690, \"rankvar\": 17, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2270, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2461, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1559, \"group\": [650.0, 436.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43260_BALBc-1_X02_Y02_309_581\", \"ini\": 555, \"clust\": 2685, \"rank\": 2555, \"rankvar\": 2380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2271, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2685, \"cat-2\": \"Density: 23\", \"cat_2_index\": 431, \"group\": [2685.0, 1448.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43563_BALBc-1_X02_Y02_312_481\", \"ini\": 554, \"clust\": 2791, \"rank\": 1200, \"rankvar\": 1549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2272, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2686, \"cat-2\": \"Density: 23\", \"cat_2_index\": 432, \"group\": [2803.0, 1521.0, 452.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43574_BALBc-1_X02_Y02_312_648\", \"ini\": 553, \"clust\": 2648, \"rank\": 2701, \"rankvar\": 2551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2273, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2687, \"cat-2\": \"Density: 25\", \"cat_2_index\": 689, \"group\": [2647.0, 1436.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43750_BALBc-1_X02_Y02_315_261\", \"ini\": 552, \"clust\": 2746, \"rank\": 1642, \"rankvar\": 363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2274, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1670, \"cat-2\": \"Density: 25\", \"cat_2_index\": 690, \"group\": [2747.0, 1482.0, 439.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43996_BALBc-1_X02_Y02_318_328\", \"ini\": 551, \"clust\": 2487, \"rank\": 1937, \"rankvar\": 807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2275, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2688, \"cat-2\": \"Density: 25\", \"cat_2_index\": 691, \"group\": [2488.0, 1335.0, 398.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44586_BALBc-1_X02_Y02_324_940\", \"ini\": 550, \"clust\": 553, \"rank\": 238, \"rankvar\": 1176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2276, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2328, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1794, \"group\": [551.0, 376.0, 124.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44663_BALBc-1_X02_Y02_326_112\", \"ini\": 549, \"clust\": 62, \"rank\": 1326, \"rankvar\": 1977, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2277, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1426, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1294, \"group\": [61.0, 49.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44734_BALBc-1_X02_Y02_326_893\", \"ini\": 548, \"clust\": 911, \"rank\": 55, \"rankvar\": 351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2278, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1427, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2193, \"group\": [909.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44795_BALBc-1_X02_Y02_327_686\", \"ini\": 547, \"clust\": 1753, \"rank\": 1749, \"rankvar\": 1727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2279, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2689, \"cat-2\": \"Density: 26\", \"cat_2_index\": 838, \"group\": [1760.0, 996.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44797_BALBc-1_X02_Y02_327_702\", \"ini\": 546, \"clust\": 1209, \"rank\": 1318, \"rankvar\": 241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2280, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2690, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1295, \"group\": [1213.0, 606.0, 171.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44833_BALBc-1_X02_Y02_328_182\", \"ini\": 545, \"clust\": 1714, \"rank\": 2785, \"rankvar\": 2793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2281, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1586, \"cat-2\": \"Density: 25\", \"cat_2_index\": 692, \"group\": [1715.0, 966.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44890_BALBc-1_X02_Y02_328_742\", \"ini\": 544, \"clust\": 1180, \"rank\": 1827, \"rankvar\": 1443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2282, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1428, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1693, \"group\": [1180.0, 573.0, 159.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45097_BALBc-1_X02_Y02_330_51\", \"ini\": 543, \"clust\": 1632, \"rank\": 1768, \"rankvar\": 1644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2283, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2462, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1143, \"group\": [1636.0, 901.0, 261.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45134_BALBc-1_X02_Y02_330_922\", \"ini\": 542, \"clust\": 77, \"rank\": 956, \"rankvar\": 841, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2284, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1429, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2273, \"group\": [77.0, 57.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45153_BALBc-1_X02_Y02_331_217\", \"ini\": 541, \"clust\": 533, \"rank\": 463, \"rankvar\": 416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2285, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1587, \"cat-2\": \"Density: 22\", \"cat_2_index\": 321, \"group\": [533.0, 365.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45435_BALBc-1_X02_Y02_334_951\", \"ini\": 540, \"clust\": 1662, \"rank\": 1728, \"rankvar\": 2764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2286, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2329, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1795, \"group\": [1662.0, 920.0, 268.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45581_BALBc-1_X02_Y02_336_819\", \"ini\": 539, \"clust\": 2395, \"rank\": 2492, \"rankvar\": 1943, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2287, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 467, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1560, \"group\": [2396.0, 1268.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45601_BALBc-1_X02_Y02_337_15\", \"ini\": 538, \"clust\": 1872, \"rank\": 1401, \"rankvar\": 950, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2288, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1554, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1796, \"group\": [1873.0, 1063.0, 322.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45622_BALBc-1_X02_Y02_337_558\", \"ini\": 537, \"clust\": 262, \"rank\": 312, \"rankvar\": 1035, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2289, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2691, \"cat-2\": \"Density: 22\", \"cat_2_index\": 322, \"group\": [261.0, 183.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45630_BALBc-1_X02_Y02_337_608\", \"ini\": 536, \"clust\": 2492, \"rank\": 1798, \"rankvar\": 1753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2290, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1430, \"cat-2\": \"Density: 25\", \"cat_2_index\": 693, \"group\": [2492.0, 1339.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45716_BALBc-1_X02_Y02_338_787\", \"ini\": 535, \"clust\": 1785, \"rank\": 2219, \"rankvar\": 2684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2291, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1431, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1694, \"group\": [1786.0, 1014.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45734_BALBc-1_X02_Y02_338_973\", \"ini\": 534, \"clust\": 1424, \"rank\": 774, \"rankvar\": 2140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2292, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2330, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1296, \"group\": [1429.0, 775.0, 231.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46044_BALBc-1_X02_Y02_342_196\", \"ini\": 533, \"clust\": 1286, \"rank\": 894, \"rankvar\": 2347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2293, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1756, \"cat-2\": \"Density: 23\", \"cat_2_index\": 433, \"group\": [1285.0, 656.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46376_BALBc-1_X02_Y02_346_38\", \"ini\": 532, \"clust\": 865, \"rank\": 15, \"rankvar\": 642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2294, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1671, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1695, \"group\": [865.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46496_BALBc-1_X02_Y02_347_862\", \"ini\": 531, \"clust\": 1814, \"rank\": 2824, \"rankvar\": 2800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2295, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1432, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2113, \"group\": [1815.0, 1026.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46558_BALBc-1_X02_Y02_348_812\", \"ini\": 530, \"clust\": 592, \"rank\": 949, \"rankvar\": 146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2296, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 468, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1797, \"group\": [593.0, 404.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46798_BALBc-1_X02_Y02_350_899\", \"ini\": 529, \"clust\": 1063, \"rank\": 350, \"rankvar\": 800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2297, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1433, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2194, \"group\": [1062.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46832_BALBc-1_X02_Y02_351_395\", \"ini\": 528, \"clust\": 1038, \"rank\": 376, \"rankvar\": 1179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2298, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2692, \"cat-2\": \"Density: 18\", \"cat_2_index\": 103, \"group\": [1048.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47131_BALBc-1_X02_Y02_355_343\", \"ini\": 527, \"clust\": 1313, \"rank\": 1883, \"rankvar\": 298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2299, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1672, \"cat-2\": \"Density: 18\", \"cat_2_index\": 104, \"group\": [1317.0, 685.0, 203.0, 58.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47280_BALBc-1_X02_Y02_357_240\", \"ini\": 526, \"clust\": 2614, \"rank\": 1568, \"rankvar\": 265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2300, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 469, \"cat-2\": \"Density: 23\", \"cat_2_index\": 434, \"group\": [2615.0, 1412.0, 417.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47378_BALBc-1_X02_Y02_358_713\", \"ini\": 525, \"clust\": 672, \"rank\": 627, \"rankvar\": 316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2301, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1434, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2014, \"group\": [672.0, 445.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47461_BALBc-1_X02_Y02_359_961\", \"ini\": 524, \"clust\": 2489, \"rank\": 1595, \"rankvar\": 1807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2302, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1985, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1798, \"group\": [2489.0, 1336.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47870_BALBc-1_X02_Y02_364_646\", \"ini\": 523, \"clust\": 2577, \"rank\": 1496, \"rankvar\": 2576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2303, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 470, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1441, \"group\": [2578.0, 1392.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47876_BALBc-1_X02_Y02_364_679\", \"ini\": 522, \"clust\": 4, \"rank\": 1339, \"rankvar\": 403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2304, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2693, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1900, \"group\": [5.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47961_BALBc-1_X02_Y02_365_605\", \"ini\": 521, \"clust\": 2629, \"rank\": 2025, \"rankvar\": 1734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2305, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2694, \"cat-2\": \"Density: 26\", \"cat_2_index\": 839, \"group\": [2629.0, 1422.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48010_BALBc-1_X02_Y02_366_148\", \"ini\": 520, \"clust\": 1765, \"rank\": 2712, \"rankvar\": 2813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2306, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1435, \"cat-2\": \"Density: 25\", \"cat_2_index\": 694, \"group\": [1769.0, 1002.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48086_BALBc-1_X02_Y02_367_266\", \"ini\": 519, \"clust\": 1308, \"rank\": 2158, \"rankvar\": 2271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2307, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1673, \"cat-2\": \"Density: 21\", \"cat_2_index\": 232, \"group\": [1308.0, 678.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48310_BALBc-1_X02_Y02_369_971\", \"ini\": 518, \"clust\": 1663, \"rank\": 1734, \"rankvar\": 2178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2308, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2331, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1297, \"group\": [1663.0, 920.0, 268.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48337_BALBc-1_X02_Y02_37_334\", \"ini\": 517, \"clust\": 1865, \"rank\": 2117, \"rankvar\": 1631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2309, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2695, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1298, \"group\": [1865.0, 1056.0, 319.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48352_BALBc-1_X02_Y02_37_533\", \"ini\": 516, \"clust\": 2737, \"rank\": 1662, \"rankvar\": 925, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2310, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1436, \"cat-2\": \"Density: 27\", \"cat_2_index\": 989, \"group\": [2738.0, 1473.0, 434.0, 113.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48474_BALBc-1_X02_Y02_371_45\", \"ini\": 515, \"clust\": 1178, \"rank\": 1869, \"rankvar\": 1283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2311, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1674, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1799, \"group\": [1181.0, 574.0, 159.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48542_BALBc-1_X02_Y02_372_378\", \"ini\": 514, \"clust\": 1199, \"rank\": 984, \"rankvar\": 2001, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2312, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2696, \"cat-2\": \"Density: 16\", \"cat_2_index\": 63, \"group\": [1199.0, 592.0, 167.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48653_BALBc-1_X02_Y02_373_710\", \"ini\": 513, \"clust\": 2238, \"rank\": 1537, \"rankvar\": 570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2313, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1437, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2114, \"group\": [2239.0, 1218.0, 365.0, 100.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48742_BALBc-1_X02_Y02_374_766\", \"ini\": 512, \"clust\": 2258, \"rank\": 1481, \"rankvar\": 722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2314, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1438, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2274, \"group\": [2266.0, 1237.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48757_BALBc-1_X02_Y02_375_1002\", \"ini\": 511, \"clust\": 410, \"rank\": 614, \"rankvar\": 1550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2315, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1439, \"cat-2\": \"Density: 23\", \"cat_2_index\": 435, \"group\": [410.0, 287.0, 98.0, 29.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48766_BALBc-1_X02_Y02_375_206\", \"ini\": 510, \"clust\": 1257, \"rank\": 2070, \"rankvar\": 2394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2316, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1757, \"cat-2\": \"Density: 25\", \"cat_2_index\": 695, \"group\": [1257.0, 638.0, 183.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49046_BALBc-1_X02_Y02_378_827\", \"ini\": 509, \"clust\": 2566, \"rank\": 1656, \"rankvar\": 1818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2317, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1440, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2115, \"group\": [2567.0, 1387.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49131_BALBc-1_X02_Y02_379_932\", \"ini\": 508, \"clust\": 1857, \"rank\": 1914, \"rankvar\": 1112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2318, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1441, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2015, \"group\": [1858.0, 1050.0, 316.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49273_BALBc-1_X02_Y02_380_907\", \"ini\": 507, \"clust\": 1133, \"rank\": 1306, \"rankvar\": 1619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2319, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1442, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2275, \"group\": [1136.0, 538.0, 146.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49542_BALBc-1_X02_Y02_384_270\", \"ini\": 506, \"clust\": 2496, \"rank\": 2269, \"rankvar\": 2358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2320, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 720, \"cat-2\": \"Density: 21\", \"cat_2_index\": 233, \"group\": [2497.0, 1343.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49696_BALBc-1_X02_Y02_386_104\", \"ini\": 505, \"clust\": 1893, \"rank\": 2418, \"rankvar\": 2108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2321, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 721, \"cat-2\": \"Density: 26\", \"cat_2_index\": 840, \"group\": [1893.0, 1083.0, 330.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49859_BALBc-1_X02_Y02_387_719\", \"ini\": 504, \"clust\": 2336, \"rank\": 2179, \"rankvar\": 1233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2322, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1443, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2276, \"group\": [2332.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49926_BALBc-1_X02_Y02_388_683\", \"ini\": 503, \"clust\": 2588, \"rank\": 1367, \"rankvar\": 1579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2323, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 471, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2116, \"group\": [2589.0, 1400.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49970_BALBc-1_X02_Y02_389_234\", \"ini\": 502, \"clust\": 1008, \"rank\": 782, \"rankvar\": 332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2324, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 722, \"cat-2\": \"Density: 24\", \"cat_2_index\": 553, \"group\": [1019.0, 516.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50081_BALBc-1_X02_Y02_39_906\", \"ini\": 501, \"clust\": 893, \"rank\": 119, \"rankvar\": 598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2325, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1444, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1561, \"group\": [912.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50288_BALBc-1_X02_Y02_392_752\", \"ini\": 500, \"clust\": 721, \"rank\": 715, \"rankvar\": 69, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2326, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1445, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2409, \"group\": [721.0, 461.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50373_BALBc-1_X02_Y02_393_952\", \"ini\": 499, \"clust\": 811, \"rank\": 332, \"rankvar\": 39, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2327, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 472, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1901, \"group\": [818.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50545_BALBc-1_X02_Y02_396_299\", \"ini\": 498, \"clust\": 1160, \"rank\": 717, \"rankvar\": 855, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2328, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1675, \"cat-2\": \"Density: 21\", \"cat_2_index\": 234, \"group\": [1160.0, 557.0, 154.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50577_BALBc-1_X02_Y02_396_66\", \"ini\": 497, \"clust\": 362, \"rank\": 440, \"rankvar\": 2399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2329, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2463, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1562, \"group\": [360.0, 251.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50639_BALBc-1_X02_Y02_397_506\", \"ini\": 496, \"clust\": 2710, \"rank\": 2671, \"rankvar\": 2384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2330, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2697, \"cat-2\": \"Density: 20\", \"cat_2_index\": 180, \"group\": [2710.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50667_BALBc-1_X02_Y02_397_837\", \"ini\": 495, \"clust\": 2455, \"rank\": 1805, \"rankvar\": 1330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2331, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1446, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2117, \"group\": [2455.0, 1305.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50671_BALBc-1_X02_Y02_397_871\", \"ini\": 494, \"clust\": 117, \"rank\": 740, \"rankvar\": 796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2332, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1447, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2016, \"group\": [117.0, 73.0, 24.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50773_BALBc-1_X02_Y02_399_185\", \"ini\": 493, \"clust\": 695, \"rank\": 409, \"rankvar\": 1801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2333, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1758, \"cat-2\": \"Density: 26\", \"cat_2_index\": 841, \"group\": [694.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50866_BALBc-1_X02_Y02_4_371\", \"ini\": 492, \"clust\": 1719, \"rank\": 2741, \"rankvar\": 2421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2334, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1676, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1563, \"group\": [1720.0, 969.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51013_BALBc-1_X02_Y02_400_654\", \"ini\": 491, \"clust\": 2676, \"rank\": 2764, \"rankvar\": 2668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2335, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 473, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2118, \"group\": [2675.0, 1444.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51178_BALBc-1_X02_Y02_402_800\", \"ini\": 490, \"clust\": 2702, \"rank\": 2670, \"rankvar\": 2290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2336, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 474, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2538, \"group\": [2699.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51223_BALBc-1_X02_Y02_403_448\", \"ini\": 489, \"clust\": 2507, \"rank\": 1681, \"rankvar\": 1372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2337, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 630, \"cat-2\": \"Density: 18\", \"cat_2_index\": 105, \"group\": [2508.0, 1348.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51252_BALBc-1_X02_Y02_403_925\", \"ini\": 488, \"clust\": 1035, \"rank\": 533, \"rankvar\": 312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2338, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 475, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2345, \"group\": [1038.0, 521.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51314_BALBc-1_X02_Y02_404_700\", \"ini\": 487, \"clust\": 2249, \"rank\": 1729, \"rankvar\": 1156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2339, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1570, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2017, \"group\": [2252.0, 1229.0, 371.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51733_BALBc-1_X02_Y02_409_627\", \"ini\": 486, \"clust\": 2582, \"rank\": 1443, \"rankvar\": 1264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2340, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 476, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1800, \"group\": [2581.0, 1395.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51815_BALBc-1_X02_Y02_41_743\", \"ini\": 485, \"clust\": 1135, \"rank\": 375, \"rankvar\": 1175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2341, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1448, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1801, \"group\": [1135.0, 537.0, 146.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51858_BALBc-1_X02_Y02_410_359\", \"ini\": 484, \"clust\": 2508, \"rank\": 1272, \"rankvar\": 995, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2342, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 631, \"cat-2\": \"Density: 16\", \"cat_2_index\": 64, \"group\": [2509.0, 1349.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51875_BALBc-1_X02_Y02_410_48\", \"ini\": 483, \"clust\": 1255, \"rank\": 2013, \"rankvar\": 1141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2343, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1677, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1564, \"group\": [1256.0, 637.0, 182.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51967_BALBc-1_X02_Y02_411_743\", \"ini\": 482, \"clust\": 273, \"rank\": 1411, \"rankvar\": 918, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2344, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1571, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2346, \"group\": [273.0, 195.0, 70.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52455_BALBc-1_X02_Y02_417_999\", \"ini\": 481, \"clust\": 2434, \"rank\": 833, \"rankvar\": 926, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2345, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1449, \"cat-2\": \"Density: 22\", \"cat_2_index\": 323, \"group\": [2432.0, 1295.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52537_BALBc-1_X02_Y02_418_969\", \"ini\": 480, \"clust\": 1873, \"rank\": 1669, \"rankvar\": 912, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2346, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1450, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1565, \"group\": [1874.0, 1064.0, 322.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52561_BALBc-1_X02_Y02_419_278\", \"ini\": 479, \"clust\": 2792, \"rank\": 2069, \"rankvar\": 2112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2347, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 723, \"cat-2\": \"Density: 21\", \"cat_2_index\": 235, \"group\": [2794.0, 1515.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52608_BALBc-1_X02_Y02_419_84\", \"ini\": 478, \"clust\": 519, \"rank\": 805, \"rankvar\": 792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2348, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1451, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1802, \"group\": [530.0, 362.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52692_BALBc-1_X02_Y02_420_10\", \"ini\": 477, \"clust\": 164, \"rank\": 1415, \"rankvar\": 217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2349, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1452, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1696, \"group\": [165.0, 106.0, 34.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52698_BALBc-1_X02_Y02_420_121\", \"ini\": 476, \"clust\": 1300, \"rank\": 1575, \"rankvar\": 2149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2350, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 724, \"cat-2\": \"Density: 27\", \"cat_2_index\": 990, \"group\": [1304.0, 675.0, 198.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52763_BALBc-1_X02_Y02_420_947\", \"ini\": 475, \"clust\": 673, \"rank\": 400, \"rankvar\": 451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2351, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 477, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1902, \"group\": [673.0, 445.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52982_BALBc-1_X02_Y02_423_748\", \"ini\": 474, \"clust\": 1914, \"rank\": 1964, \"rankvar\": 1159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2352, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 478, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2347, \"group\": [1914.0, 1099.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53042_BALBc-1_X02_Y02_424_598\", \"ini\": 473, \"clust\": 2567, \"rank\": 1760, \"rankvar\": 2195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2353, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2698, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1299, \"group\": [2570.0, 1390.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53143_BALBc-1_X02_Y02_425_911\", \"ini\": 472, \"clust\": 2268, \"rank\": 1559, \"rankvar\": 1245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2354, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1453, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2493, \"group\": [2268.0, 1238.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53612_BALBc-1_X02_Y02_430_780\", \"ini\": 471, \"clust\": 2672, \"rank\": 2718, \"rankvar\": 2153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2355, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 479, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2277, \"group\": [2671.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53651_BALBc-1_X02_Y02_431_210\", \"ini\": 470, \"clust\": 2505, \"rank\": 1810, \"rankvar\": 1323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2356, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 725, \"cat-2\": \"Density: 27\", \"cat_2_index\": 991, \"group\": [2504.0, 1346.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53748_BALBc-1_X02_Y02_432_458\", \"ini\": 469, \"clust\": 2778, \"rank\": 2321, \"rankvar\": 2487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2357, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2699, \"cat-2\": \"Density: 18\", \"cat_2_index\": 106, \"group\": [2778.0, 1504.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53769_BALBc-1_X02_Y02_432_657\", \"ini\": 468, \"clust\": 1718, \"rank\": 2458, \"rankvar\": 2327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2358, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 480, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2018, \"group\": [1719.0, 968.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53818_BALBc-1_X02_Y02_433_32\", \"ini\": 467, \"clust\": 716, \"rank\": 734, \"rankvar\": 503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2359, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 863, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1903, \"group\": [722.0, 462.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53861_BALBc-1_X02_Y02_433_832\", \"ini\": 466, \"clust\": 2637, \"rank\": 1608, \"rankvar\": 140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2360, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2700, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2494, \"group\": [2641.0, 1433.0, 423.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53918_BALBc-1_X02_Y02_434_639\", \"ini\": 465, \"clust\": 2465, \"rank\": 1215, \"rankvar\": 1055, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2361, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 481, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1803, \"group\": [2466.0, 1314.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53990_BALBc-1_X02_Y02_435_547\", \"ini\": 464, \"clust\": 2686, \"rank\": 2601, \"rankvar\": 2649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2362, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2701, \"cat-2\": \"Density: 24\", \"cat_2_index\": 554, \"group\": [2686.0, 1448.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54076_BALBc-1_X02_Y02_436_716\", \"ini\": 463, \"clust\": 2337, \"rank\": 2121, \"rankvar\": 1103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2363, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1572, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2348, \"group\": [2333.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54081_BALBc-1_X02_Y02_436_770\", \"ini\": 462, \"clust\": 266, \"rank\": 1246, \"rankvar\": 1288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2364, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 482, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2410, \"group\": [266.0, 188.0, 66.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54253_BALBc-1_X02_Y02_438_736\", \"ini\": 461, \"clust\": 467, \"rank\": 1149, \"rankvar\": 315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2365, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 483, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2349, \"group\": [470.0, 328.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54323_BALBc-1_X02_Y02_439_680\", \"ini\": 460, \"clust\": 2488, \"rank\": 1576, \"rankvar\": 201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2366, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 484, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2278, \"group\": [2493.0, 1340.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54356_BALBc-1_X02_Y02_44_193\", \"ini\": 459, \"clust\": 2538, \"rank\": 1742, \"rankvar\": 1157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2367, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2702, \"cat-2\": \"Density: 21\", \"cat_2_index\": 236, \"group\": [2539.0, 1364.0, 404.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54458_BALBc-1_X02_Y02_440_577\", \"ini\": 458, \"clust\": 2798, \"rank\": 1873, \"rankvar\": 1932, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2368, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2703, \"cat-2\": \"Density: 24\", \"cat_2_index\": 555, \"group\": [2797.0, 1518.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54556_BALBc-1_X02_Y02_441_892\", \"ini\": 457, \"clust\": 2069, \"rank\": 2810, \"rankvar\": 2057, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2369, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1454, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2350, \"group\": [2069.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54798_BALBc-1_X02_Y02_444_961\", \"ini\": 456, \"clust\": 256, \"rank\": 1236, \"rankvar\": 370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2370, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1455, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1442, \"group\": [255.0, 178.0, 62.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54819_BALBc-1_X02_Y02_445_21\", \"ini\": 455, \"clust\": 2246, \"rank\": 1985, \"rankvar\": 1695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2371, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 485, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1904, \"group\": [2245.0, 1222.0, 367.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54862_BALBc-1_X02_Y02_445_938\", \"ini\": 454, \"clust\": 2468, \"rank\": 1264, \"rankvar\": 175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2372, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 632, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2019, \"group\": [2468.0, 1316.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55022_BALBc-1_X02_Y02_448_177\", \"ini\": 453, \"clust\": 766, \"rank\": 96, \"rankvar\": 540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2373, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1456, \"cat-2\": \"Density: 27\", \"cat_2_index\": 992, \"group\": [767.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55154_BALBc-1_X02_Y02_449_850\", \"ini\": 452, \"clust\": 2102, \"rank\": 2488, \"rankvar\": 1903, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2374, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2704, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2279, \"group\": [2101.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55263_BALBc-1_X02_Y02_450_401\", \"ini\": 451, \"clust\": 1185, \"rank\": 1257, \"rankvar\": 576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2375, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1457, \"cat-2\": \"Density: 18\", \"cat_2_index\": 107, \"group\": [1188.0, 581.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55369_BALBc-1_X02_Y02_451_799\", \"ini\": 450, \"clust\": 639, \"rank\": 577, \"rankvar\": 354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2376, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 486, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2280, \"group\": [640.0, 430.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55395_BALBc-1_X02_Y02_452_153\", \"ini\": 449, \"clust\": 31, \"rank\": 1355, \"rankvar\": 349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2377, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 726, \"cat-2\": \"Density: 25\", \"cat_2_index\": 696, \"group\": [32.0, 30.0, 18.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55452_BALBc-1_X02_Y02_452_751\", \"ini\": 448, \"clust\": 900, \"rank\": 23, \"rankvar\": 302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2378, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 487, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2281, \"group\": [899.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55453_BALBc-1_X02_Y02_452_762\", \"ini\": 447, \"clust\": 2284, \"rank\": 2010, \"rankvar\": 480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2379, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 488, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2411, \"group\": [2283.0, 1243.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55520_BALBc-1_X02_Y02_453_611\", \"ini\": 446, \"clust\": 392, \"rank\": 1076, \"rankvar\": 1954, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2380, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 489, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1300, \"group\": [392.0, 274.0, 93.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55535_BALBc-1_X02_Y02_453_779\", \"ini\": 445, \"clust\": 2520, \"rank\": 1450, \"rankvar\": 1302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2381, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 490, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2351, \"group\": [2523.0, 1353.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55769_BALBc-1_X02_Y02_456_717\", \"ini\": 444, \"clust\": 580, \"rank\": 858, \"rankvar\": 295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2382, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 491, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2539, \"group\": [580.0, 397.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55815_BALBc-1_X02_Y02_457_41\", \"ini\": 443, \"clust\": 1168, \"rank\": 912, \"rankvar\": 2196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2383, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1986, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1697, \"group\": [1169.0, 565.0, 156.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55836_BALBc-1_X02_Y02_457_651\", \"ini\": 442, \"clust\": 594, \"rank\": 729, \"rankvar\": 1606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2384, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 492, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1905, \"group\": [592.0, 403.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55853_BALBc-1_X02_Y02_457_820\", \"ini\": 441, \"clust\": 1001, \"rank\": 621, \"rankvar\": 259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2385, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 493, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2540, \"group\": [1001.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55927_BALBc-1_X02_Y02_458_893\", \"ini\": 440, \"clust\": 433, \"rank\": 725, \"rankvar\": 2376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2386, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 633, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2412, \"group\": [434.0, 307.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56318_BALBc-1_X02_Y02_462_867\", \"ini\": 439, \"clust\": 1730, \"rank\": 2580, \"rankvar\": 1496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2387, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 634, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2495, \"group\": [1730.0, 975.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56467_BALBc-1_X02_Y02_465_167\", \"ini\": 438, \"clust\": 630, \"rank\": 471, \"rankvar\": 509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2388, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 494, \"cat-2\": \"Density: 26\", \"cat_2_index\": 842, \"group\": [629.0, 424.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56525_BALBc-1_X02_Y02_465_852\", \"ini\": 437, \"clust\": 1973, \"rank\": 2647, \"rankvar\": 2249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2389, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 495, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2413, \"group\": [1975.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56552_BALBc-1_X02_Y02_466_269\", \"ini\": 436, \"clust\": 2144, \"rank\": 2740, \"rankvar\": 2567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2390, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1458, \"cat-2\": \"Density: 23\", \"cat_2_index\": 436, \"group\": [2144.0, 1161.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56674_BALBc-1_X02_Y02_467_624\", \"ini\": 435, \"clust\": 2549, \"rank\": 2457, \"rankvar\": 2520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2391, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 496, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1804, \"group\": [2552.0, 1375.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56705_BALBc-1_X02_Y02_467_999\", \"ini\": 434, \"clust\": 1911, \"rank\": 2398, \"rankvar\": 1838, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2392, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1459, \"cat-2\": \"Density: 21\", \"cat_2_index\": 237, \"group\": [1912.0, 1098.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56787_BALBc-1_X02_Y02_469_24\", \"ini\": 433, \"clust\": 380, \"rank\": 785, \"rankvar\": 903, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2393, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1460, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2119, \"group\": [379.0, 263.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56914_BALBc-1_X02_Y02_47_868\", \"ini\": 432, \"clust\": 1775, \"rank\": 1802, \"rankvar\": 2063, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2394, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1461, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1805, \"group\": [1778.0, 1009.0, 305.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57003_BALBc-1_X02_Y02_470_953\", \"ini\": 431, \"clust\": 143, \"rank\": 1589, \"rankvar\": 464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2395, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 635, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1443, \"group\": [143.0, 89.0, 29.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57113_BALBc-1_X02_Y02_472_681\", \"ini\": 430, \"clust\": 2285, \"rank\": 2277, \"rankvar\": 1145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2396, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 497, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2352, \"group\": [2284.0, 1243.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57374_BALBc-1_X02_Y02_475_756\", \"ini\": 429, \"clust\": 922, \"rank\": 64, \"rankvar\": 397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2397, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 498, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2414, \"group\": [922.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57405_BALBc-1_X02_Y02_476_220\", \"ini\": 428, \"clust\": 148, \"rank\": 1268, \"rankvar\": 466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2398, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2705, \"cat-2\": \"Density: 26\", \"cat_2_index\": 843, \"group\": [149.0, 93.0, 30.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57527_BALBc-1_X02_Y02_477_735\", \"ini\": 427, \"clust\": 2371, \"rank\": 2317, \"rankvar\": 440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2399, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 499, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2496, \"group\": [2370.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57580_BALBc-1_X02_Y02_478_330\", \"ini\": 426, \"clust\": 2583, \"rank\": 1533, \"rankvar\": 1669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2400, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1462, \"cat-2\": \"Density: 18\", \"cat_2_index\": 108, \"group\": [2582.0, 1395.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57688_BALBc-1_X02_Y02_479_626\", \"ini\": 425, \"clust\": 2226, \"rank\": 1689, \"rankvar\": 1656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2401, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 500, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1566, \"group\": [2225.0, 1204.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57711_BALBc-1_X02_Y02_48_105\", \"ini\": 424, \"clust\": 1639, \"rank\": 2092, \"rankvar\": 2573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2402, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2464, \"cat-2\": \"Density: 22\", \"cat_2_index\": 324, \"group\": [1638.0, 902.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57920_BALBc-1_X02_Y02_481_785\", \"ini\": 423, \"clust\": 144, \"rank\": 1783, \"rankvar\": 1558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2403, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 501, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2282, \"group\": [144.0, 89.0, 29.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58105_BALBc-1_X02_Y02_484_252\", \"ini\": 422, \"clust\": 72, \"rank\": 511, \"rankvar\": 530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2404, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1463, \"cat-2\": \"Density: 23\", \"cat_2_index\": 437, \"group\": [73.0, 54.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58124_BALBc-1_X02_Y02_484_432\", \"ini\": 421, \"clust\": 2624, \"rank\": 1599, \"rankvar\": 2475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2405, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1464, \"cat-2\": \"Density: 20\", \"cat_2_index\": 181, \"group\": [2624.0, 1417.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58170_BALBc-1_X02_Y02_484_987\", \"ini\": 420, \"clust\": 2343, \"rank\": 2153, \"rankvar\": 898, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2406, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 502, \"cat-2\": \"Density: 24\", \"cat_2_index\": 556, \"group\": [2340.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58222_BALBc-1_X02_Y02_485_578\", \"ini\": 419, \"clust\": 2664, \"rank\": 2713, \"rankvar\": 2261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2407, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2706, \"cat-2\": \"Density: 27\", \"cat_2_index\": 993, \"group\": [2662.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58242_BALBc-1_X02_Y02_485_832\", \"ini\": 418, \"clust\": 2028, \"rank\": 2303, \"rankvar\": 1008, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2408, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 503, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2415, \"group\": [2028.0, 1142.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58476_BALBc-1_X02_Y02_488_845\", \"ini\": 417, \"clust\": 1112, \"rank\": 386, \"rankvar\": 145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2409, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 504, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2353, \"group\": [1111.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58566_BALBc-1_X02_Y02_489_956\", \"ini\": 416, \"clust\": 2390, \"rank\": 2258, \"rankvar\": 1532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2410, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 636, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1567, \"group\": [2390.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58719_BALBc-1_X02_Y02_491_17\", \"ini\": 415, \"clust\": 10, \"rank\": 1319, \"rankvar\": 677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2411, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1465, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2283, \"group\": [10.0, 9.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58720_BALBc-1_X02_Y02_491_183\", \"ini\": 414, \"clust\": 333, \"rank\": 887, \"rankvar\": 1521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2412, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 505, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1444, \"group\": [336.0, 236.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58765_BALBc-1_X02_Y02_491_801\", \"ini\": 413, \"clust\": 2334, \"rank\": 1946, \"rankvar\": 1473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2413, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 506, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2497, \"group\": [2331.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58869_BALBc-1_X02_Y02_493_117\", \"ini\": 412, \"clust\": 405, \"rank\": 728, \"rankvar\": 47, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2414, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1466, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1568, \"group\": [405.0, 283.0, 96.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58906_BALBc-1_X02_Y02_493_620\", \"ini\": 411, \"clust\": 1929, \"rank\": 2732, \"rankvar\": 2788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2415, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 507, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1698, \"group\": [1928.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58994_BALBc-1_X02_Y02_494_645\", \"ini\": 410, \"clust\": 1974, \"rank\": 2651, \"rankvar\": 2607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2416, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 508, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1806, \"group\": [1970.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59111_BALBc-1_X02_Y02_496_195\", \"ini\": 409, \"clust\": 794, \"rank\": 71, \"rankvar\": 1733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2417, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 727, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1144, \"group\": [793.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59190_BALBc-1_X02_Y02_496_937\", \"ini\": 408, \"clust\": 36, \"rank\": 756, \"rankvar\": 798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2418, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 637, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2020, \"group\": [36.0, 31.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59361_BALBc-1_X02_Y02_499_164\", \"ini\": 407, \"clust\": 168, \"rank\": 850, \"rankvar\": 228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2419, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 728, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1569, \"group\": [172.0, 111.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59627_BALBc-1_X02_Y02_501_380\", \"ini\": 406, \"clust\": 151, \"rank\": 1872, \"rankvar\": 1880, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2420, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1467, \"cat-2\": \"Density: 20\", \"cat_2_index\": 182, \"group\": [151.0, 94.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59630_BALBc-1_X02_Y02_501_406\", \"ini\": 405, \"clust\": 1068, \"rank\": 295, \"rankvar\": 624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2421, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 509, \"cat-2\": \"Density: 21\", \"cat_2_index\": 238, \"group\": [1067.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59720_BALBc-1_X02_Y02_502_671\", \"ini\": 404, \"clust\": 146, \"rank\": 1033, \"rankvar\": 1137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2422, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 510, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1807, \"group\": [147.0, 91.0, 30.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59726_BALBc-1_X02_Y02_502_707\", \"ini\": 403, \"clust\": 2429, \"rank\": 1047, \"rankvar\": 192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2423, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 511, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2592, \"group\": [2430.0, 1294.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59879_BALBc-1_X02_Y02_504_867\", \"ini\": 402, \"clust\": 1957, \"rank\": 2597, \"rankvar\": 1570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2424, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 638, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2120, \"group\": [1958.0, 1117.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59993_BALBc-1_X02_Y02_506_250\", \"ini\": 401, \"clust\": 2560, \"rank\": 2246, \"rankvar\": 1831, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2425, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1468, \"cat-2\": \"Density: 25\", \"cat_2_index\": 697, \"group\": [2561.0, 1382.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60209_BALBc-1_X02_Y02_508_95\", \"ini\": 400, \"clust\": 300, \"rank\": 459, \"rankvar\": 1348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2426, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 928, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1808, \"group\": [302.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60246_BALBc-1_X02_Y02_509_500\", \"ini\": 399, \"clust\": 2786, \"rank\": 1908, \"rankvar\": 2074, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2427, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2707, \"cat-2\": \"Density: 22\", \"cat_2_index\": 325, \"group\": [2787.0, 1509.0, 449.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60484_BALBc-1_X02_Y02_511_481\", \"ini\": 398, \"clust\": 2212, \"rank\": 1612, \"rankvar\": 943, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2428, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1469, \"cat-2\": \"Density: 19\", \"cat_2_index\": 131, \"group\": [2213.0, 1194.0, 352.0, 96.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60509_BALBc-1_X02_Y02_511_799\", \"ini\": 397, \"clust\": 2264, \"rank\": 1395, \"rankvar\": 117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2429, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 512, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2498, \"group\": [2265.0, 1236.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60571_BALBc-1_X02_Y02_512_687\", \"ini\": 396, \"clust\": 2294, \"rank\": 1894, \"rankvar\": 1266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2430, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 513, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2121, \"group\": [2295.0, 1250.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60617_BALBc-1_X02_Y02_513_306\", \"ini\": 395, \"clust\": 2783, \"rank\": 2033, \"rankvar\": 1454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2431, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1470, \"cat-2\": \"Density: 22\", \"cat_2_index\": 326, \"group\": [2784.0, 1507.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60829_BALBc-1_X02_Y02_515_980\", \"ini\": 394, \"clust\": 1064, \"rank\": 330, \"rankvar\": 739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2432, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 639, \"cat-2\": \"Density: 24\", \"cat_2_index\": 557, \"group\": [1063.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60871_BALBc-1_X02_Y02_516_759\", \"ini\": 393, \"clust\": 2666, \"rank\": 2589, \"rankvar\": 1696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2433, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 514, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2541, \"group\": [2667.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61279_BALBc-1_X02_Y02_520_66\", \"ini\": 392, \"clust\": 167, \"rank\": 1342, \"rankvar\": 882, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2434, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1987, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1906, \"group\": [167.0, 108.0, 35.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61334_BALBc-1_X02_Y02_521_353\", \"ini\": 391, \"clust\": 932, \"rank\": 586, \"rankvar\": 519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2435, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2803, \"cat-2\": \"Density: 21\", \"cat_2_index\": 239, \"group\": [935.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61348_BALBc-1_X02_Y02_521_546\", \"ini\": 390, \"clust\": 1935, \"rank\": 2726, \"rankvar\": 2279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2436, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2708, \"cat-2\": \"Density: 24\", \"cat_2_index\": 558, \"group\": [1935.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61372_BALBc-1_X02_Y02_521_896\", \"ini\": 389, \"clust\": 2358, \"rank\": 1993, \"rankvar\": 441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2437, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 640, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2416, \"group\": [2360.0, 1260.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61534_BALBc-1_X02_Y02_523_860\", \"ini\": 388, \"clust\": 1930, \"rank\": 2769, \"rankvar\": 2746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2438, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 515, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2354, \"group\": [1929.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61617_BALBc-1_X02_Y02_525_120\", \"ini\": 387, \"clust\": 626, \"rank\": 387, \"rankvar\": 322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2439, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 929, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1907, \"group\": [628.0, 423.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61773_BALBc-1_X02_Y02_527_152\", \"ini\": 386, \"clust\": 1173, \"rank\": 1049, \"rankvar\": 1621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2440, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 729, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1570, \"group\": [1175.0, 568.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61824_BALBc-1_X02_Y02_527_636\", \"ini\": 385, \"clust\": 2322, \"rank\": 2051, \"rankvar\": 1177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2441, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2709, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1445, \"group\": [2320.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61842_BALBc-1_X02_Y02_527_845\", \"ini\": 384, \"clust\": 2705, \"rank\": 2531, \"rankvar\": 2067, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2442, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 516, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2499, \"group\": [2713.0, 1456.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61916_BALBc-1_X02_Y02_528_823\", \"ini\": 383, \"clust\": 971, \"rank\": 1034, \"rankvar\": 260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2443, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 517, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2355, \"group\": [971.0, 497.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61962_BALBc-1_X02_Y02_529_428\", \"ini\": 382, \"clust\": 1196, \"rank\": 1029, \"rankvar\": 333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2444, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 518, \"cat-2\": \"Density: 23\", \"cat_2_index\": 438, \"group\": [1197.0, 590.0, 166.0, 44.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61994_BALBc-1_X02_Y02_529_877\", \"ini\": 381, \"clust\": 2460, \"rank\": 1393, \"rankvar\": 638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2445, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 519, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2284, \"group\": [2463.0, 1311.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62001_BALBc-1_X02_Y02_529_999\", \"ini\": 380, \"clust\": 1978, \"rank\": 2777, \"rankvar\": 2504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2446, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 520, \"cat-2\": \"Density: 19\", \"cat_2_index\": 132, \"group\": [1973.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62024_BALBc-1_X02_Y02_53_346\", \"ini\": 379, \"clust\": 298, \"rank\": 1042, \"rankvar\": 2737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2447, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1588, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1301, \"group\": [297.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62088_BALBc-1_X02_Y02_530_268\", \"ini\": 378, \"clust\": 87, \"rank\": 812, \"rankvar\": 438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2448, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1471, \"cat-2\": \"Density: 23\", \"cat_2_index\": 439, \"group\": [88.0, 64.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62119_BALBc-1_X02_Y02_530_680\", \"ini\": 377, \"clust\": 2353, \"rank\": 2480, \"rankvar\": 1682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2449, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 521, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1908, \"group\": [2348.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62139_BALBc-1_X02_Y02_530_910\", \"ini\": 376, \"clust\": 1936, \"rank\": 1721, \"rankvar\": 1485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2450, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 522, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2356, \"group\": [1937.0, 1110.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62142_BALBc-1_X02_Y02_530_925\", \"ini\": 375, \"clust\": 2257, \"rank\": 1510, \"rankvar\": 1393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2451, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 641, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2357, \"group\": [2282.0, 1242.0, 374.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62170_BALBc-1_X02_Y02_531_40\", \"ini\": 374, \"clust\": 884, \"rank\": 10, \"rankvar\": 377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2452, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2246, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1809, \"group\": [884.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62352_BALBc-1_X02_Y02_533_593\", \"ini\": 373, \"clust\": 2777, \"rank\": 1948, \"rankvar\": 2089, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2453, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2710, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1145, \"group\": [2780.0, 1505.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62487_BALBc-1_X02_Y02_535_456\", \"ini\": 372, \"clust\": 1879, \"rank\": 1095, \"rankvar\": 644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2454, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2711, \"cat-2\": \"Density: 22\", \"cat_2_index\": 327, \"group\": [1878.0, 1068.0, 324.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62584_BALBc-1_X02_Y02_536_793\", \"ini\": 371, \"clust\": 1062, \"rank\": 731, \"rankvar\": 225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2455, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 523, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2285, \"group\": [1064.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62698_BALBc-1_X02_Y02_538_395\", \"ini\": 370, \"clust\": 2575, \"rank\": 2338, \"rankvar\": 2635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2456, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2804, \"cat-2\": \"Density: 23\", \"cat_2_index\": 440, \"group\": [2576.0, 1392.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62842_BALBc-1_X02_Y02_54_556\", \"ini\": 369, \"clust\": 1866, \"rank\": 2022, \"rankvar\": 2052, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2457, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1573, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1146, \"group\": [1866.0, 1057.0, 319.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62982_BALBc-1_X02_Y02_541_688\", \"ini\": 368, \"clust\": 2794, \"rank\": 1520, \"rankvar\": 1002, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2458, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 524, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2021, \"group\": [2793.0, 1514.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63073_BALBc-1_X02_Y02_542_677\", \"ini\": 367, \"clust\": 353, \"rank\": 1314, \"rankvar\": 714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2459, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 525, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1810, \"group\": [354.0, 248.0, 87.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63152_BALBc-1_X02_Y02_543_663\", \"ini\": 366, \"clust\": 860, \"rank\": 286, \"rankvar\": 61, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2460, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2712, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1302, \"group\": [861.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63263_BALBc-1_X02_Y02_544_724\", \"ini\": 365, \"clust\": 2490, \"rank\": 1687, \"rankvar\": 1571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2461, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1472, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2195, \"group\": [2490.0, 1337.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63356_BALBc-1_X02_Y02_545_764\", \"ini\": 364, \"clust\": 2459, \"rank\": 1150, \"rankvar\": 476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2462, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 526, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2417, \"group\": [2458.0, 1307.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63594_BALBc-1_X02_Y02_548_836\", \"ini\": 363, \"clust\": 2668, \"rank\": 2757, \"rankvar\": 2411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2463, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 527, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2500, \"group\": [2669.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63611_BALBc-1_X02_Y02_548_990\", \"ini\": 362, \"clust\": 745, \"rank\": 193, \"rankvar\": 968, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2464, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 642, \"cat-2\": \"Density: 21\", \"cat_2_index\": 240, \"group\": [744.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63621_BALBc-1_X02_Y02_549_222\", \"ini\": 361, \"clust\": 1249, \"rank\": 1913, \"rankvar\": 2097, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2465, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2713, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1571, \"group\": [1249.0, 630.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63732_BALBc-1_X02_Y02_55_601\", \"ini\": 360, \"clust\": 2328, \"rank\": 1820, \"rankvar\": 1210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2466, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 946, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1303, \"group\": [2328.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63834_BALBc-1_X02_Y02_550_878\", \"ini\": 359, \"clust\": 2639, \"rank\": 2316, \"rankvar\": 685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2467, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 528, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2286, \"group\": [2638.0, 1430.0, 422.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64028_BALBc-1_X02_Y02_553_519\", \"ini\": 358, \"clust\": 1925, \"rank\": 2354, \"rankvar\": 2129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2468, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 864, \"cat-2\": \"Density: 22\", \"cat_2_index\": 328, \"group\": [1925.0, 1106.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64073_BALBc-1_X02_Y02_553_924\", \"ini\": 357, \"clust\": 1086, \"rank\": 258, \"rankvar\": 567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2469, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 643, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2196, \"group\": [1087.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64372_BALBc-1_X02_Y02_558_116\", \"ini\": 356, \"clust\": 1685, \"rank\": 1950, \"rankvar\": 1821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2470, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 930, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1811, \"group\": [1683.0, 940.0, 279.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64456_BALBc-1_X02_Y02_558_995\", \"ini\": 355, \"clust\": 2690, \"rank\": 2786, \"rankvar\": 1905, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2471, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 529, \"cat-2\": \"Density: 22\", \"cat_2_index\": 329, \"group\": [2690.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64463_BALBc-1_X02_Y02_559_16\", \"ini\": 354, \"clust\": 667, \"rank\": 451, \"rankvar\": 1834, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2472, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2247, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1699, \"group\": [670.0, 443.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64505_BALBc-1_X02_Y02_559_58\", \"ini\": 353, \"clust\": 560, \"rank\": 902, \"rankvar\": 297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2473, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 931, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1909, \"group\": [560.0, 384.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64571_BALBc-1_X02_Y02_56_412\", \"ini\": 352, \"clust\": 1794, \"rank\": 2294, \"rankvar\": 2701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2474, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2714, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2122, \"group\": [1792.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64626_BALBc-1_X02_Y02_560_186\", \"ini\": 351, \"clust\": 601, \"rank\": 292, \"rankvar\": 244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2475, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 730, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1700, \"group\": [601.0, 411.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64676_BALBc-1_X02_Y02_560_746\", \"ini\": 350, \"clust\": 2044, \"rank\": 2180, \"rankvar\": 935, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2476, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1473, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2123, \"group\": [2048.0, 1147.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64706_BALBc-1_X02_Y02_561_129\", \"ini\": 349, \"clust\": 108, \"rank\": 907, \"rankvar\": 1190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2477, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1474, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1910, \"group\": [111.0, 68.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64758_BALBc-1_X02_Y02_561_689\", \"ini\": 348, \"clust\": 2801, \"rank\": 1292, \"rankvar\": 1133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2478, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 530, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1812, \"group\": [2800.0, 1519.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64883_BALBc-1_X02_Y02_563_442\", \"ini\": 347, \"clust\": 2797, \"rank\": 1744, \"rankvar\": 1335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2479, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1574, \"cat-2\": \"Density: 26\", \"cat_2_index\": 844, \"group\": [2799.0, 1518.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64889_BALBc-1_X02_Y02_563_483\", \"ini\": 346, \"clust\": 2571, \"rank\": 2328, \"rankvar\": 2535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2480, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2715, \"cat-2\": \"Density: 23\", \"cat_2_index\": 441, \"group\": [2573.0, 1391.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64905_BALBc-1_X02_Y02_563_774\", \"ini\": 345, \"clust\": 271, \"rank\": 1128, \"rankvar\": 1149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 531, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2358, \"group\": [274.0, 196.0, 70.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65149_BALBc-1_X02_Y02_566_81\", \"ini\": 344, \"clust\": 1919, \"rank\": 2155, \"rankvar\": 1106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2482, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 865, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1911, \"group\": [1936.0, 1109.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65186_BALBc-1_X02_Y02_567_271\", \"ini\": 343, \"clust\": 412, \"rank\": 1078, \"rankvar\": 559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2483, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1988, \"cat-2\": \"Density: 25\", \"cat_2_index\": 698, \"group\": [412.0, 289.0, 100.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65292_BALBc-1_X02_Y02_568_797\", \"ini\": 342, \"clust\": 2311, \"rank\": 2096, \"rankvar\": 910, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2484, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 532, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2359, \"group\": [2310.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65906_BALBc-1_X02_Y02_575_921\", \"ini\": 341, \"clust\": 1921, \"rank\": 2286, \"rankvar\": 2000, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2485, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2716, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2197, \"group\": [1921.0, 1104.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66097_BALBc-1_X02_Y02_578_646\", \"ini\": 340, \"clust\": 2680, \"rank\": 2363, \"rankvar\": 1542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2486, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2717, \"cat-2\": \"Density: 27\", \"cat_2_index\": 994, \"group\": [2679.0, 1445.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66183_BALBc-1_X02_Y02_579_966\", \"ini\": 339, \"clust\": 2667, \"rank\": 2653, \"rankvar\": 1142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2487, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 644, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1147, \"group\": [2668.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66339_BALBc-1_X02_Y02_581_317\", \"ini\": 338, \"clust\": 82, \"rank\": 809, \"rankvar\": 839, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2488, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1989, \"cat-2\": \"Density: 23\", \"cat_2_index\": 442, \"group\": [82.0, 61.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66357_BALBc-1_X02_Y02_581_49\", \"ini\": 337, \"clust\": 84, \"rank\": 875, \"rankvar\": 1702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2489, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1678, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2022, \"group\": [85.0, 63.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66415_BALBc-1_X02_Y02_582_178\", \"ini\": 336, \"clust\": 1647, \"rank\": 1431, \"rankvar\": 2756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2490, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2496, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1572, \"group\": [1643.0, 905.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66616_BALBc-1_X02_Y02_584_773\", \"ini\": 335, \"clust\": 2177, \"rank\": 1528, \"rankvar\": 1618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2491, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 533, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2198, \"group\": [2179.0, 1183.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66755_BALBc-1_X02_Y02_586_349\", \"ini\": 334, \"clust\": 1696, \"rank\": 2340, \"rankvar\": 2806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2718, \"cat-2\": \"Density: 23\", \"cat_2_index\": 443, \"group\": [1696.0, 953.0, 285.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66774_BALBc-1_X02_Y02_586_530\", \"ini\": 333, \"clust\": 2620, \"rank\": 2523, \"rankvar\": 2757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2493, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2719, \"cat-2\": \"Density: 22\", \"cat_2_index\": 330, \"group\": [2620.0, 1416.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66875_BALBc-1_X02_Y02_587_790\", \"ini\": 332, \"clust\": 2589, \"rank\": 1323, \"rankvar\": 1781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2494, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 534, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2199, \"group\": [2594.0, 1402.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66943_BALBc-1_X02_Y02_588_705\", \"ini\": 331, \"clust\": 2286, \"rank\": 2595, \"rankvar\": 2137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2495, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1475, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1912, \"group\": [2288.0, 1245.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67033_BALBc-1_X02_Y02_589_854\", \"ini\": 330, \"clust\": 788, \"rank\": 296, \"rankvar\": 320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2496, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 535, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2418, \"group\": [789.0, 478.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67050_BALBc-1_X02_Y02_59_136\", \"ini\": 329, \"clust\": 241, \"rank\": 710, \"rankvar\": 917, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2497, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2720, \"cat-2\": \"Density: 22\", \"cat_2_index\": 331, \"group\": [240.0, 167.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67117_BALBc-1_X02_Y02_59_886\", \"ini\": 328, \"clust\": 1754, \"rank\": 1931, \"rankvar\": 2389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2498, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1476, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1304, \"group\": [1755.0, 994.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67206_BALBc-1_X02_Y02_590_941\", \"ini\": 327, \"clust\": 1018, \"rank\": 427, \"rankvar\": 267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2499, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2721, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1913, \"group\": [1016.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67342_BALBc-1_X02_Y02_592_741\", \"ini\": 326, \"clust\": 1826, \"rank\": 2432, \"rankvar\": 2230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2500, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1477, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2287, \"group\": [1837.0, 1031.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67356_BALBc-1_X02_Y02_592_870\", \"ini\": 325, \"clust\": 1976, \"rank\": 2681, \"rankvar\": 2330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2501, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2722, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2200, \"group\": [1974.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67680_BALBc-1_X02_Y02_596_996\", \"ini\": 324, \"clust\": 737, \"rank\": 796, \"rankvar\": 156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2502, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 536, \"cat-2\": \"Density: 21\", \"cat_2_index\": 241, \"group\": [741.0, 468.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67689_BALBc-1_X02_Y02_597_244\", \"ini\": 323, \"clust\": 686, \"rank\": 563, \"rankvar\": 1011, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2503, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1759, \"cat-2\": \"Density: 24\", \"cat_2_index\": 559, \"group\": [686.0, 451.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67735_BALBc-1_X02_Y02_597_815\", \"ini\": 322, \"clust\": 2597, \"rank\": 1541, \"rankvar\": 2201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2504, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 537, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2288, \"group\": [2596.0, 1403.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67822_BALBc-1_X02_Y02_598_971\", \"ini\": 321, \"clust\": 1882, \"rank\": 1834, \"rankvar\": 1867, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2505, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 538, \"cat-2\": \"Density: 25\", \"cat_2_index\": 699, \"group\": [1883.0, 1073.0, 327.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67827_BALBc-1_X02_Y02_599_124\", \"ini\": 320, \"clust\": 2825, \"rank\": 2229, \"rankvar\": 2008, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2506, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1478, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1573, \"group\": [2823.0, 1534.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67881_BALBc-1_X02_Y02_599_836\", \"ini\": 319, \"clust\": 1187, \"rank\": 1489, \"rankvar\": 838, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2507, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 539, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2501, \"group\": [1187.0, 580.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68161_BALBc-1_X02_Y02_602_173\", \"ini\": 318, \"clust\": 1411, \"rank\": 1493, \"rankvar\": 2088, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2508, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1479, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1305, \"group\": [1412.0, 761.0, 225.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68329_BALBc-1_X02_Y02_604_479\", \"ini\": 317, \"clust\": 2655, \"rank\": 2463, \"rankvar\": 2027, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2509, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2465, \"cat-2\": \"Density: 26\", \"cat_2_index\": 845, \"group\": [2656.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68364_BALBc-1_X02_Y02_604_898\", \"ini\": 316, \"clust\": 484, \"rank\": 698, \"rankvar\": 248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2510, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2723, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2201, \"group\": [485.0, 332.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68650_BALBc-1_X02_Y02_608_247\", \"ini\": 315, \"clust\": 19, \"rank\": 942, \"rankvar\": 369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2511, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1679, \"cat-2\": \"Density: 24\", \"cat_2_index\": 560, \"group\": [20.0, 19.0, 11.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68746_BALBc-1_X02_Y02_609_287\", \"ini\": 314, \"clust\": 1845, \"rank\": 2416, \"rankvar\": 1762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2512, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 540, \"cat-2\": \"Density: 24\", \"cat_2_index\": 561, \"group\": [1846.0, 1039.0, 312.0, 86.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68769_BALBc-1_X02_Y02_609_505\", \"ini\": 313, \"clust\": 972, \"rank\": 770, \"rankvar\": 601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2513, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2724, \"cat-2\": \"Density: 21\", \"cat_2_index\": 242, \"group\": [975.0, 500.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68812_BALBc-1_X02_Y02_61_160\", \"ini\": 312, \"clust\": 2501, \"rank\": 2144, \"rankvar\": 2208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2514, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 541, \"cat-2\": \"Density: 19\", \"cat_2_index\": 133, \"group\": [2503.0, 1345.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68919_BALBc-1_X02_Y02_610_685\", \"ini\": 311, \"clust\": 2606, \"rank\": 1753, \"rankvar\": 2064, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2515, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1480, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1813, \"group\": [2605.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68936_BALBc-1_X02_Y02_610_908\", \"ini\": 310, \"clust\": 1932, \"rank\": 2592, \"rankvar\": 2128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2516, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2725, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2202, \"group\": [1931.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69083_BALBc-1_X02_Y02_612_642\", \"ini\": 309, \"clust\": 2213, \"rank\": 1711, \"rankvar\": 1201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2517, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1481, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1148, \"group\": [2214.0, 1195.0, 353.0, 96.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69172_BALBc-1_X02_Y02_613_941\", \"ini\": 308, \"clust\": 1969, \"rank\": 2242, \"rankvar\": 1799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2518, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2726, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1574, \"group\": [1966.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69269_BALBc-1_X02_Y02_615_12\", \"ini\": 307, \"clust\": 235, \"rank\": 936, \"rankvar\": 549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2519, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1482, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1575, \"group\": [237.0, 165.0, 58.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69314_BALBc-1_X02_Y02_615_721\", \"ini\": 306, \"clust\": 42, \"rank\": 746, \"rankvar\": 1999, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2520, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1483, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2023, \"group\": [41.0, 35.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69385_BALBc-1_X02_Y02_616_708\", \"ini\": 305, \"clust\": 1850, \"rank\": 2339, \"rankvar\": 1709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2521, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 542, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1814, \"group\": [1852.0, 1044.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69392_BALBc-1_X02_Y02_616_80\", \"ini\": 304, \"clust\": 1191, \"rank\": 1374, \"rankvar\": 1089, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2522, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 866, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1815, \"group\": [1189.0, 582.0, 162.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69516_BALBc-1_X02_Y02_618_346\", \"ini\": 303, \"clust\": 763, \"rank\": 300, \"rankvar\": 972, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2523, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2727, \"cat-2\": \"Density: 26\", \"cat_2_index\": 846, \"group\": [764.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69550_BALBc-1_X02_Y02_618_772\", \"ini\": 302, \"clust\": 1960, \"rank\": 2420, \"rankvar\": 2015, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2524, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1680, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2124, \"group\": [1977.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69694_BALBc-1_X02_Y02_62_685\", \"ini\": 301, \"clust\": 1812, \"rank\": 2403, \"rankvar\": 2643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2525, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1484, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1576, \"group\": [1812.0, 1024.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69845_BALBc-1_X02_Y02_621_738\", \"ini\": 300, \"clust\": 1849, \"rank\": 1902, \"rankvar\": 1741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2526, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 543, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2125, \"group\": [1853.0, 1045.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69869_BALBc-1_X02_Y02_621_980\", \"ini\": 299, \"clust\": 1950, \"rank\": 1994, \"rankvar\": 1374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2527, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 544, \"cat-2\": \"Density: 22\", \"cat_2_index\": 332, \"group\": [1949.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69947_BALBc-1_X02_Y02_622_856\", \"ini\": 298, \"clust\": 1964, \"rank\": 2199, \"rankvar\": 1464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2528, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2728, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2419, \"group\": [1968.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70036_BALBc-1_X02_Y02_623_791\", \"ini\": 297, \"clust\": 1897, \"rank\": 2100, \"rankvar\": 1193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2529, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1681, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2203, \"group\": [1897.0, 1086.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70145_BALBc-1_X02_Y02_625_402\", \"ini\": 296, \"clust\": 1166, \"rank\": 299, \"rankvar\": 2580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2530, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2332, \"cat-2\": \"Density: 23\", \"cat_2_index\": 444, \"group\": [1167.0, 563.0, 156.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70178_BALBc-1_X02_Y02_625_825\", \"ini\": 295, \"clust\": 2445, \"rank\": 1839, \"rankvar\": 1437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2531, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1485, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2360, \"group\": [2446.0, 1301.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70445_BALBc-1_X02_Y02_629_611\", \"ini\": 294, \"clust\": 2568, \"rank\": 2437, \"rankvar\": 2516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2532, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2729, \"cat-2\": \"Density: 24\", \"cat_2_index\": 562, \"group\": [2568.0, 1388.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70500_BALBc-1_X02_Y02_63_385\", \"ini\": 293, \"clust\": 299, \"rank\": 373, \"rankvar\": 2420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2533, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2730, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2024, \"group\": [298.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70692_BALBc-1_X02_Y02_631_72\", \"ini\": 292, \"clust\": 1397, \"rank\": 1880, \"rankvar\": 1894, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2534, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 545, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1701, \"group\": [1398.0, 748.0, 219.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70695_BALBc-1_X02_Y02_631_748\", \"ini\": 291, \"clust\": 1952, \"rank\": 2040, \"rankvar\": 1594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2535, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1682, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2204, \"group\": [1956.0, 1115.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70916_BALBc-1_X02_Y02_634_5\", \"ini\": 290, \"clust\": 1275, \"rank\": 543, \"rankvar\": 1738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2536, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1683, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1577, \"group\": [1279.0, 653.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70961_BALBc-1_X02_Y02_635_253\", \"ini\": 289, \"clust\": 1006, \"rank\": 865, \"rankvar\": 733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2537, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1684, \"cat-2\": \"Density: 24\", \"cat_2_index\": 563, \"group\": [1007.0, 513.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71202_BALBc-1_X02_Y02_638_308\", \"ini\": 288, \"clust\": 2815, \"rank\": 1555, \"rankvar\": 2236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2538, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1486, \"cat-2\": \"Density: 24\", \"cat_2_index\": 564, \"group\": [2814.0, 1528.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71220_BALBc-1_X02_Y02_638_474\", \"ini\": 287, \"clust\": 2784, \"rank\": 2471, \"rankvar\": 2220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2539, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2731, \"cat-2\": \"Density: 26\", \"cat_2_index\": 847, \"group\": [2785.0, 1507.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71595_BALBc-1_X02_Y02_642_520\", \"ini\": 286, \"clust\": 1177, \"rank\": 1310, \"rankvar\": 429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2540, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2732, \"cat-2\": \"Density: 22\", \"cat_2_index\": 333, \"group\": [1178.0, 571.0, 158.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71629_BALBc-1_X02_Y02_642_830\", \"ini\": 285, \"clust\": 1758, \"rank\": 1530, \"rankvar\": 2307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2541, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1487, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2289, \"group\": [1757.0, 995.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71736_BALBc-1_X02_Y02_644_115\", \"ini\": 284, \"clust\": 2413, \"rank\": 1349, \"rankvar\": 741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 867, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1702, \"group\": [2414.0, 1284.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71739_BALBc-1_X02_Y02_644_155\", \"ini\": 283, \"clust\": 1304, \"rank\": 2017, \"rankvar\": 1995, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2543, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1760, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1816, \"group\": [1305.0, 676.0, 199.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71744_BALBc-1_X02_Y02_644_213\", \"ini\": 282, \"clust\": 1984, \"rank\": 2576, \"rankvar\": 1839, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2544, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1761, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1578, \"group\": [1986.0, 1124.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71785_BALBc-1_X02_Y02_644_568\", \"ini\": 281, \"clust\": 2621, \"rank\": 2621, \"rankvar\": 2804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2545, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2733, \"cat-2\": \"Density: 23\", \"cat_2_index\": 445, \"group\": [2621.0, 1416.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71963_BALBc-1_X02_Y02_646_955\", \"ini\": 280, \"clust\": 2061, \"rank\": 2551, \"rankvar\": 1134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2546, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2183, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1149, \"group\": [2063.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72006_BALBc-1_X02_Y02_647_56\", \"ini\": 279, \"clust\": 665, \"rank\": 177, \"rankvar\": 1048, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2547, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 546, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1703, \"group\": [664.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72118_BALBc-1_X02_Y02_648_980\", \"ini\": 278, \"clust\": 906, \"rank\": 62, \"rankvar\": 41, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2548, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 547, \"cat-2\": \"Density: 25\", \"cat_2_index\": 700, \"group\": [904.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72144_BALBc-1_X02_Y02_649_345\", \"ini\": 277, \"clust\": 2779, \"rank\": 2226, \"rankvar\": 2159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2549, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2333, \"cat-2\": \"Density: 24\", \"cat_2_index\": 565, \"group\": [2779.0, 1504.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72328_BALBc-1_X02_Y02_650_881\", \"ini\": 276, \"clust\": 2313, \"rank\": 2154, \"rankvar\": 1116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2550, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2734, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2126, \"group\": [2311.0, 1253.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72406_BALBc-1_X02_Y02_651_83\", \"ini\": 275, \"clust\": 829, \"rank\": 181, \"rankvar\": 446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 548, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2025, \"group\": [828.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72482_BALBc-1_X02_Y02_652_908\", \"ini\": 274, \"clust\": 2047, \"rank\": 2298, \"rankvar\": 1598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2552, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2184, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2205, \"group\": [2046.0, 1146.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72586_BALBc-1_X02_Y02_654_266\", \"ini\": 273, \"clust\": 106, \"rank\": 874, \"rankvar\": 1706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2553, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1488, \"cat-2\": \"Density: 24\", \"cat_2_index\": 566, \"group\": [106.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72771_BALBc-1_X02_Y02_656_677\", \"ini\": 272, \"clust\": 550, \"rank\": 906, \"rankvar\": 555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2554, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1489, \"cat-2\": \"Density: 27\", \"cat_2_index\": 995, \"group\": [553.0, 378.0, 125.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72775_BALBc-1_X02_Y02_656_705\", \"ini\": 271, \"clust\": 2569, \"rank\": 1895, \"rankvar\": 1911, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2555, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 549, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1817, \"group\": [2569.0, 1389.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72872_BALBc-1_X02_Y02_657_832\", \"ini\": 270, \"clust\": 1829, \"rank\": 2719, \"rankvar\": 2542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2556, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1490, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2290, \"group\": [1831.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73062_BALBc-1_X02_Y02_66_601\", \"ini\": 269, \"clust\": 1076, \"rank\": 495, \"rankvar\": 631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2557, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 550, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1306, \"group\": [1077.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73332_BALBc-1_X02_Y02_662_61\", \"ini\": 268, \"clust\": 310, \"rank\": 2122, \"rankvar\": 2675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2558, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 551, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1579, \"group\": [314.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73887_BALBc-1_X02_Y02_67_263\", \"ini\": 267, \"clust\": 196, \"rank\": 416, \"rankvar\": 651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2559, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2735, \"cat-2\": \"Density: 19\", \"cat_2_index\": 134, \"group\": [196.0, 131.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73953_BALBc-1_X02_Y02_670_242\", \"ini\": 266, \"clust\": 2817, \"rank\": 1603, \"rankvar\": 1500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2560, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1491, \"cat-2\": \"Density: 23\", \"cat_2_index\": 446, \"group\": [2816.0, 1530.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73968_BALBc-1_X02_Y02_670_412\", \"ini\": 265, \"clust\": 659, \"rank\": 303, \"rankvar\": 658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2561, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2736, \"cat-2\": \"Density: 23\", \"cat_2_index\": 447, \"group\": [658.0, 439.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73976_BALBc-1_X02_Y02_670_483\", \"ini\": 264, \"clust\": 43, \"rank\": 389, \"rankvar\": 1819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2562, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1492, \"cat-2\": \"Density: 24\", \"cat_2_index\": 567, \"group\": [42.0, 35.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74149_BALBc-1_X02_Y02_672_855\", \"ini\": 263, \"clust\": 728, \"rank\": 274, \"rankvar\": 176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2563, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 552, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2502, \"group\": [728.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74167_BALBc-1_X02_Y02_673_108\", \"ini\": 262, \"clust\": 628, \"rank\": 609, \"rankvar\": 511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2564, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 932, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1150, \"group\": [627.0, 423.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74236_BALBc-1_X02_Y02_673_890\", \"ini\": 261, \"clust\": 1056, \"rank\": 548, \"rankvar\": 527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2565, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 553, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2206, \"group\": [1056.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74383_BALBc-1_X02_Y02_675_456\", \"ini\": 260, \"clust\": 406, \"rank\": 755, \"rankvar\": 1365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2566, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1493, \"cat-2\": \"Density: 24\", \"cat_2_index\": 568, \"group\": [406.0, 284.0, 96.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74388_BALBc-1_X02_Y02_675_540\", \"ini\": 259, \"clust\": 1118, \"rank\": 615, \"rankvar\": 486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2567, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 554, \"cat-2\": \"Density: 24\", \"cat_2_index\": 569, \"group\": [1118.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74441_BALBc-1_X02_Y02_676_169\", \"ini\": 258, \"clust\": 1296, \"rank\": 1182, \"rankvar\": 984, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2568, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 933, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1307, \"group\": [1296.0, 667.0, 193.0, 54.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74508_BALBc-1_X02_Y02_676_991\", \"ini\": 257, \"clust\": 2340, \"rank\": 2237, \"rankvar\": 958, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2569, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 555, \"cat-2\": \"Density: 18\", \"cat_2_index\": 109, \"group\": [2337.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74535_BALBc-1_X02_Y02_677_385\", \"ini\": 256, \"clust\": 2804, \"rank\": 2419, \"rankvar\": 2246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2570, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2334, \"cat-2\": \"Density: 26\", \"cat_2_index\": 848, \"group\": [2805.0, 1523.0, 453.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74729_BALBc-1_X02_Y02_679_790\", \"ini\": 255, \"clust\": 2011, \"rank\": 1997, \"rankvar\": 2335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2571, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1494, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2291, \"group\": [2018.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74731_BALBc-1_X02_Y02_679_812\", \"ini\": 254, \"clust\": 1839, \"rank\": 1328, \"rankvar\": 1229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2572, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1495, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2361, \"group\": [1844.0, 1037.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74790_BALBc-1_X02_Y02_68_580\", \"ini\": 253, \"clust\": 2220, \"rank\": 1089, \"rankvar\": 158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2573, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1575, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1151, \"group\": [2220.0, 1201.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74845_BALBc-1_X02_Y02_680_497\", \"ini\": 252, \"clust\": 1991, \"rank\": 2075, \"rankvar\": 1699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2574, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1496, \"cat-2\": \"Density: 23\", \"cat_2_index\": 448, \"group\": [1989.0, 1125.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74920_BALBc-1_X02_Y02_681_628\", \"ini\": 251, \"clust\": 983, \"rank\": 528, \"rankvar\": 251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1497, \"cat-2\": \"Density: 23\", \"cat_2_index\": 449, \"group\": [982.0, 504.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75012_BALBc-1_X02_Y02_682_927\", \"ini\": 250, \"clust\": 1951, \"rank\": 2012, \"rankvar\": 1769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2576, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2185, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2026, \"group\": [1950.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75078_BALBc-1_X02_Y02_683_754\", \"ini\": 249, \"clust\": 2665, \"rank\": 2720, \"rankvar\": 2416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2577, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1685, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2127, \"group\": [2663.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75093_BALBc-1_X02_Y02_683_961\", \"ini\": 248, \"clust\": 1190, \"rank\": 1451, \"rankvar\": 1575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2578, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2186, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1152, \"group\": [1191.0, 584.0, 162.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75122_BALBc-1_X02_Y02_684_41\", \"ini\": 247, \"clust\": 832, \"rank\": 190, \"rankvar\": 134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2579, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1686, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1580, \"group\": [832.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75210_BALBc-1_X02_Y02_685_709\", \"ini\": 246, \"clust\": 2802, \"rank\": 1526, \"rankvar\": 1240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2580, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 556, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1914, \"group\": [2801.0, 1519.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75222_BALBc-1_X02_Y02_685_85\", \"ini\": 245, \"clust\": 573, \"rank\": 553, \"rankvar\": 597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2581, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 557, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1153, \"group\": [572.0, 391.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75253_BALBc-1_X02_Y02_686_343\", \"ini\": 244, \"clust\": 1258, \"rank\": 1925, \"rankvar\": 1634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2582, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 868, \"cat-2\": \"Density: 22\", \"cat_2_index\": 334, \"group\": [1258.0, 638.0, 183.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75823_BALBc-1_X02_Y02_692_891\", \"ini\": 243, \"clust\": 2206, \"rank\": 1203, \"rankvar\": 1627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2583, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 558, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2292, \"group\": [2202.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75887_BALBc-1_X02_Y02_693_684\", \"ini\": 242, \"clust\": 2610, \"rank\": 2227, \"rankvar\": 2317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2584, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 869, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1446, \"group\": [2610.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76096_BALBc-1_X02_Y02_696_645\", \"ini\": 241, \"clust\": 2612, \"rank\": 2359, \"rankvar\": 2242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2585, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 870, \"cat-2\": \"Density: 27\", \"cat_2_index\": 996, \"group\": [2609.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76103_BALBc-1_X02_Y02_696_735\", \"ini\": 240, \"clust\": 977, \"rank\": 582, \"rankvar\": 1221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2586, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 559, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2027, \"group\": [977.0, 501.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76294_BALBc-1_X02_Y02_699_112\", \"ini\": 239, \"clust\": 882, \"rank\": 253, \"rankvar\": 90, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2587, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 934, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1154, \"group\": [885.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76538_BALBc-1_X02_Y02_700_290\", \"ini\": 238, \"clust\": 107, \"rank\": 483, \"rankvar\": 1725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2588, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1498, \"cat-2\": \"Density: 24\", \"cat_2_index\": 570, \"group\": [107.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76553_BALBc-1_X02_Y02_700_423\", \"ini\": 237, \"clust\": 629, \"rank\": 497, \"rankvar\": 1203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2589, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1499, \"cat-2\": \"Density: 23\", \"cat_2_index\": 450, \"group\": [631.0, 424.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76803_BALBc-1_X02_Y02_703_773\", \"ini\": 236, \"clust\": 295, \"rank\": 953, \"rankvar\": 2437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2590, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 560, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2362, \"group\": [296.0, 211.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76901_BALBc-1_X02_Y02_704_869\", \"ini\": 235, \"clust\": 1734, \"rank\": 2401, \"rankvar\": 2592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1500, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2207, \"group\": [1732.0, 977.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77001_BALBc-1_X02_Y02_706_34\", \"ini\": 234, \"clust\": 2230, \"rank\": 1919, \"rankvar\": 1183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2592, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1687, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1581, \"group\": [2231.0, 1210.0, 359.0, 98.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77014_BALBc-1_X02_Y02_706_510\", \"ini\": 233, \"clust\": 2806, \"rank\": 1623, \"rankvar\": 1342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2593, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1501, \"cat-2\": \"Density: 24\", \"cat_2_index\": 571, \"group\": [2806.0, 1524.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77039_BALBc-1_X02_Y02_706_830\", \"ini\": 232, \"clust\": 2165, \"rank\": 1423, \"rankvar\": 1069, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2594, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1502, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2420, \"group\": [2162.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77074_BALBc-1_X02_Y02_707_326\", \"ini\": 231, \"clust\": 1838, \"rank\": 1769, \"rankvar\": 691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2595, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1503, \"cat-2\": \"Density: 22\", \"cat_2_index\": 335, \"group\": [1839.0, 1033.0, 309.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77093_BALBc-1_X02_Y02_707_617\", \"ini\": 230, \"clust\": 2550, \"rank\": 2584, \"rankvar\": 2560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2596, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2737, \"cat-2\": \"Density: 27\", \"cat_2_index\": 997, \"group\": [2550.0, 1374.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77135_BALBc-1_X02_Y02_707_975\", \"ini\": 229, \"clust\": 1014, \"rank\": 535, \"rankvar\": 161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2597, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 561, \"cat-2\": \"Density: 23\", \"cat_2_index\": 451, \"group\": [1013.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77220_BALBc-1_X02_Y02_709_226\", \"ini\": 228, \"clust\": 2805, \"rank\": 1882, \"rankvar\": 1909, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2598, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1762, \"cat-2\": \"Density: 21\", \"cat_2_index\": 243, \"group\": [2826.0, 1537.0, 456.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77373_BALBc-1_X02_Y02_710_537\", \"ini\": 227, \"clust\": 2799, \"rank\": 1427, \"rankvar\": 1886, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2599, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1504, \"cat-2\": \"Density: 26\", \"cat_2_index\": 849, \"group\": [2798.0, 1518.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77376_BALBc-1_X02_Y02_710_565\", \"ini\": 226, \"clust\": 2756, \"rank\": 2020, \"rankvar\": 1849, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2600, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2738, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1155, \"group\": [2758.0, 1491.0, 443.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77395_BALBc-1_X02_Y02_710_791\", \"ini\": 225, \"clust\": 1933, \"rank\": 2620, \"rankvar\": 2449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2601, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 562, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2028, \"group\": [1932.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77586_BALBc-1_X02_Y02_712_99\", \"ini\": 224, \"clust\": 1396, \"rank\": 1486, \"rankvar\": 989, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2602, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 563, \"cat-2\": \"Density: 27\", \"cat_2_index\": 998, \"group\": [1399.0, 749.0, 219.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77673_BALBc-1_X02_Y02_714_203\", \"ini\": 223, \"clust\": 1450, \"rank\": 2362, \"rankvar\": 2510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2603, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2739, \"cat-2\": \"Density: 24\", \"cat_2_index\": 572, \"group\": [1449.0, 787.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77790_BALBc-1_X02_Y02_715_74\", \"ini\": 222, \"clust\": 767, \"rank\": 90, \"rankvar\": 1068, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2604, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1990, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1156, \"group\": [768.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77983_BALBc-1_X02_Y02_717_921\", \"ini\": 221, \"clust\": 2325, \"rank\": 2232, \"rankvar\": 1678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2605, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 564, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1915, \"group\": [2323.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78066_BALBc-1_X02_Y02_719_1006\", \"ini\": 220, \"clust\": 2314, \"rank\": 2282, \"rankvar\": 887, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2606, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 565, \"cat-2\": \"Density: 16\", \"cat_2_index\": 65, \"group\": [2312.0, 1253.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78175_BALBc-1_X02_Y02_72_479\", \"ini\": 219, \"clust\": 2397, \"rank\": 2815, \"rankvar\": 2707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2607, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 871, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2029, \"group\": [2395.0, 1268.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78545_BALBc-1_X02_Y02_724_169\", \"ini\": 218, \"clust\": 182, \"rank\": 1025, \"rankvar\": 2616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2608, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 935, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1582, \"group\": [183.0, 120.0, 39.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78626_BALBc-1_X02_Y02_725_382\", \"ini\": 217, \"clust\": 1281, \"rank\": 1209, \"rankvar\": 1325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2609, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 872, \"cat-2\": \"Density: 22\", \"cat_2_index\": 336, \"group\": [1282.0, 654.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78655_BALBc-1_X02_Y02_725_758\", \"ini\": 216, \"clust\": 2546, \"rank\": 2250, \"rankvar\": 2105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2610, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 566, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1818, \"group\": [2549.0, 1373.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78673_BALBc-1_X02_Y02_725_953\", \"ini\": 215, \"clust\": 1975, \"rank\": 2685, \"rankvar\": 2318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2611, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2187, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1157, \"group\": [1971.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78684_BALBc-1_X02_Y02_726_124\", \"ini\": 214, \"clust\": 25, \"rank\": 1225, \"rankvar\": 715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2612, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 873, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1158, \"group\": [26.0, 25.0, 15.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78789_BALBc-1_X02_Y02_727_511\", \"ini\": 213, \"clust\": 1264, \"rank\": 1754, \"rankvar\": 2080, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2613, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1505, \"cat-2\": \"Density: 23\", \"cat_2_index\": 452, \"group\": [1267.0, 646.0, 186.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78889_BALBc-1_X02_Y02_728_781\", \"ini\": 212, \"clust\": 275, \"rank\": 1466, \"rankvar\": 1688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2614, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 567, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2128, \"group\": [276.0, 198.0, 71.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78953_BALBc-1_X02_Y02_729_688\", \"ini\": 211, \"clust\": 1895, \"rank\": 2430, \"rankvar\": 2043, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2615, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2740, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1583, \"group\": [1895.0, 1084.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78974_BALBc-1_X02_Y02_729_890\", \"ini\": 210, \"clust\": 896, \"rank\": 79, \"rankvar\": 266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2616, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 568, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2208, \"group\": [895.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78999_BALBc-1_X02_Y02_73_354\", \"ini\": 209, \"clust\": 2551, \"rank\": 2546, \"rankvar\": 2660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2617, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2741, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1159, \"group\": [2551.0, 1374.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79016_BALBc-1_X02_Y02_73_624\", \"ini\": 208, \"clust\": 1720, \"rank\": 2728, \"rankvar\": 2673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2618, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1506, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1584, \"group\": [1721.0, 969.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79095_BALBc-1_X02_Y02_730_647\", \"ini\": 207, \"clust\": 1937, \"rank\": 1975, \"rankvar\": 1976, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2619, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2742, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1447, \"group\": [1938.0, 1110.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79236_BALBc-1_X02_Y02_732_35\", \"ini\": 206, \"clust\": 1217, \"rank\": 951, \"rankvar\": 1720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2620, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 941, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1308, \"group\": [1217.0, 609.0, 173.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79458_BALBc-1_X02_Y02_734_917\", \"ini\": 205, \"clust\": 1735, \"rank\": 2724, \"rankvar\": 2752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2621, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2188, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2030, \"group\": [1733.0, 977.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79623_BALBc-1_X02_Y02_737_105\", \"ini\": 204, \"clust\": 575, \"rank\": 733, \"rankvar\": 629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2622, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 874, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1160, \"group\": [574.0, 391.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79762_BALBc-1_X02_Y02_738_804\", \"ini\": 203, \"clust\": 1189, \"rank\": 1571, \"rankvar\": 577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2623, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1507, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2209, \"group\": [1192.0, 585.0, 163.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79767_BALBc-1_X02_Y02_738_865\", \"ini\": 202, \"clust\": 2450, \"rank\": 1473, \"rankvar\": 1047, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2624, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1508, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2421, \"group\": [2450.0, 1303.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79785_BALBc-1_X02_Y02_739_196\", \"ini\": 201, \"clust\": 941, \"rank\": 144, \"rankvar\": 136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2625, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2743, \"cat-2\": \"Density: 24\", \"cat_2_index\": 573, \"group\": [943.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79862_BALBc-1_X02_Y02_739_981\", \"ini\": 200, \"clust\": 830, \"rank\": 187, \"rankvar\": 190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2626, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2189, \"cat-2\": \"Density: 22\", \"cat_2_index\": 337, \"group\": [833.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79984_BALBc-1_X02_Y02_740_709\", \"ini\": 199, \"clust\": 2618, \"rank\": 1735, \"rankvar\": 2621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2627, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2744, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1916, \"group\": [2619.0, 1415.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80165_BALBc-1_X02_Y02_743_497\", \"ini\": 198, \"clust\": 316, \"rank\": 1249, \"rankvar\": 2402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2628, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1509, \"cat-2\": \"Density: 25\", \"cat_2_index\": 701, \"group\": [316.0, 220.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80587_BALBc-1_X02_Y02_748_815\", \"ini\": 197, \"clust\": 2199, \"rank\": 1224, \"rankvar\": 1663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2629, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2190, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2210, \"group\": [2196.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80635_BALBc-1_X02_Y02_749_454\", \"ini\": 196, \"clust\": 1982, \"rank\": 2217, \"rankvar\": 1884, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2630, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1510, \"cat-2\": \"Density: 27\", \"cat_2_index\": 999, \"group\": [1983.0, 1123.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80695_BALBc-1_X02_Y02_75_13\", \"ini\": 195, \"clust\": 2423, \"rank\": 1008, \"rankvar\": 812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2631, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1511, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1309, \"group\": [2424.0, 1291.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80817_BALBc-1_X02_Y02_750_584\", \"ini\": 194, \"clust\": 2697, \"rank\": 2798, \"rankvar\": 2790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2632, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1512, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1161, \"group\": [2703.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81059_BALBc-1_X02_Y02_753_779\", \"ini\": 193, \"clust\": 440, \"rank\": 618, \"rankvar\": 2496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2633, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 569, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2129, \"group\": [441.0, 309.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81060_BALBc-1_X02_Y02_753_793\", \"ini\": 192, \"clust\": 2436, \"rank\": 1327, \"rankvar\": 867, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2634, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 570, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2130, \"group\": [2437.0, 1297.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81068_BALBc-1_X02_Y02_753_897\", \"ini\": 191, \"clust\": 2137, \"rank\": 2050, \"rankvar\": 1556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2635, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2191, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2131, \"group\": [2138.0, 1156.0, 341.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81108_BALBc-1_X02_Y02_754_416\", \"ini\": 190, \"clust\": 557, \"rank\": 764, \"rankvar\": 128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2636, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 571, \"cat-2\": \"Density: 25\", \"cat_2_index\": 702, \"group\": [556.0, 380.0, 127.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81179_BALBc-1_X02_Y02_755_323\", \"ini\": 189, \"clust\": 244, \"rank\": 1035, \"rankvar\": 1718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2637, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 875, \"cat-2\": \"Density: 22\", \"cat_2_index\": 338, \"group\": [244.0, 170.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81222_BALBc-1_X02_Y02_755_881\", \"ini\": 188, \"clust\": 2008, \"rank\": 1960, \"rankvar\": 1929, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2638, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2192, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1917, \"group\": [2008.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81284_BALBc-1_X02_Y02_756_634\", \"ini\": 187, \"clust\": 2598, \"rank\": 2225, \"rankvar\": 1497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2639, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2745, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1819, \"group\": [2613.0, 1410.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81466_BALBc-1_X02_Y02_758_853\", \"ini\": 186, \"clust\": 2126, \"rank\": 2470, \"rankvar\": 2427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2640, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2193, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2422, \"group\": [2124.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81536_BALBc-1_X02_Y02_759_820\", \"ini\": 185, \"clust\": 2160, \"rank\": 830, \"rankvar\": 627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2641, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2194, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2031, \"group\": [2160.0, 1172.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81627_BALBc-1_X02_Y02_760_153\", \"ini\": 184, \"clust\": 52, \"rank\": 843, \"rankvar\": 806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2642, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 876, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1162, \"group\": [53.0, 42.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81992_BALBc-1_X02_Y02_764_995\", \"ini\": 183, \"clust\": 2355, \"rank\": 2447, \"rankvar\": 1578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2643, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2195, \"cat-2\": \"Density: 21\", \"cat_2_index\": 244, \"group\": [2350.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82113_BALBc-1_X02_Y02_766_756\", \"ini\": 182, \"clust\": 265, \"rank\": 1113, \"rankvar\": 219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2644, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2746, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2293, \"group\": [265.0, 187.0, 65.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82616_BALBc-1_X02_Y02_772_197\", \"ini\": 181, \"clust\": 780, \"rank\": 270, \"rankvar\": 91, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2645, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2747, \"cat-2\": \"Density: 26\", \"cat_2_index\": 850, \"group\": [778.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82799_BALBc-1_X02_Y02_774_509\", \"ini\": 180, \"clust\": 1202, \"rank\": 1050, \"rankvar\": 1441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2646, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1513, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1000, \"group\": [1202.0, 595.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82871_BALBc-1_X02_Y02_775_626\", \"ini\": 179, \"clust\": 2045, \"rank\": 2474, \"rankvar\": 2160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2647, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2815, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2032, \"group\": [2047.0, 1146.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82932_BALBc-1_X02_Y02_776_234\", \"ini\": 178, \"clust\": 270, \"rank\": 1279, \"rankvar\": 2530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2648, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2748, \"cat-2\": \"Density: 25\", \"cat_2_index\": 703, \"group\": [270.0, 192.0, 68.0, 21.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83113_BALBc-1_X02_Y02_778_564\", \"ini\": 177, \"clust\": 1820, \"rank\": 2813, \"rankvar\": 2824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2649, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1555, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1310, \"group\": [1821.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83255_BALBc-1_X02_Y02_78_243\", \"ini\": 176, \"clust\": 791, \"rank\": 343, \"rankvar\": 1396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2650, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2749, \"cat-2\": \"Density: 19\", \"cat_2_index\": 135, \"group\": [795.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83347_BALBc-1_X02_Y02_780_648\", \"ini\": 175, \"clust\": 2716, \"rank\": 1878, \"rankvar\": 2041, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2651, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2750, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1918, \"group\": [2717.0, 1459.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83401_BALBc-1_X02_Y02_781_370\", \"ini\": 174, \"clust\": 2548, \"rank\": 2645, \"rankvar\": 2523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2652, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 877, \"cat-2\": \"Density: 23\", \"cat_2_index\": 453, \"group\": [2548.0, 1372.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83432_BALBc-1_X02_Y02_781_781\", \"ini\": 173, \"clust\": 2670, \"rank\": 2624, \"rankvar\": 1434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2653, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 572, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2211, \"group\": [2674.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83518_BALBc-1_X02_Y02_782_947\", \"ini\": 172, \"clust\": 2298, \"rank\": 1508, \"rankvar\": 1453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2654, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2196, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1585, \"group\": [2298.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83545_BALBc-1_X02_Y02_783_408\", \"ini\": 171, \"clust\": 1007, \"rank\": 855, \"rankvar\": 131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2655, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 573, \"cat-2\": \"Density: 20\", \"cat_2_index\": 183, \"group\": [1008.0, 513.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83579_BALBc-1_X02_Y02_783_829\", \"ini\": 170, \"clust\": 2170, \"rank\": 1726, \"rankvar\": 1640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2656, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2197, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2212, \"group\": [2164.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83813_BALBc-1_X02_Y02_786_688\", \"ini\": 169, \"clust\": 2671, \"rank\": 2756, \"rankvar\": 2298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2657, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2751, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1919, \"group\": [2673.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83857_BALBc-1_X02_Y02_787_296\", \"ini\": 168, \"clust\": 2813, \"rank\": 1661, \"rankvar\": 1873, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2658, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1763, \"cat-2\": \"Density: 23\", \"cat_2_index\": 454, \"group\": [2811.0, 1527.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84179_BALBc-1_X02_Y02_790_487\", \"ini\": 167, \"clust\": 1681, \"rank\": 2571, \"rankvar\": 2456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2659, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2752, \"cat-2\": \"Density: 22\", \"cat_2_index\": 339, \"group\": [1682.0, 939.0, 278.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84223_BALBc-1_X02_Y02_791_169\", \"ini\": 166, \"clust\": 1351, \"rank\": 1334, \"rankvar\": 1624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2660, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 731, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1163, \"group\": [1352.0, 713.0, 212.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84480_BALBc-1_X02_Y02_793_920\", \"ini\": 165, \"clust\": 2064, \"rank\": 2806, \"rankvar\": 2677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2661, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2198, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1920, \"group\": [2067.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84554_BALBc-1_X02_Y02_794_978\", \"ini\": 164, \"clust\": 1107, \"rank\": 474, \"rankvar\": 130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2662, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2199, \"cat-2\": \"Density: 24\", \"cat_2_index\": 574, \"group\": [1106.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84577_BALBc-1_X02_Y02_795_333\", \"ini\": 163, \"clust\": 2776, \"rank\": 2273, \"rankvar\": 1654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2663, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 574, \"cat-2\": \"Density: 23\", \"cat_2_index\": 455, \"group\": [2777.0, 1503.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84864_BALBc-1_X02_Y02_798_754\", \"ini\": 162, \"clust\": 1192, \"rank\": 1284, \"rankvar\": 2069, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2664, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1514, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2213, \"group\": [1190.0, 583.0, 162.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85074_BALBc-1_X02_Y02_80_689\", \"ini\": 161, \"clust\": 953, \"rank\": 838, \"rankvar\": 167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2665, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1515, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2132, \"group\": [954.0, 487.0, 139.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85146_BALBc-1_X02_Y02_800_596\", \"ini\": 160, \"clust\": 2412, \"rank\": 1386, \"rankvar\": 1073, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2666, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2816, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1586, \"group\": [2411.0, 1281.0, 383.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85365_BALBc-1_X02_Y02_803_450\", \"ini\": 159, \"clust\": 645, \"rank\": 460, \"rankvar\": 477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2667, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 575, \"cat-2\": \"Density: 22\", \"cat_2_index\": 340, \"group\": [645.0, 433.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85452_BALBc-1_X02_Y02_804_6\", \"ini\": 158, \"clust\": 1657, \"rank\": 2302, \"rankvar\": 2477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2668, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 942, \"cat-2\": \"Density: 26\", \"cat_2_index\": 851, \"group\": [1658.0, 916.0, 266.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85759_BALBc-1_X02_Y02_808_377\", \"ini\": 157, \"clust\": 324, \"rank\": 1774, \"rankvar\": 2473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2669, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 576, \"cat-2\": \"Density: 23\", \"cat_2_index\": 456, \"group\": [326.0, 227.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85916_BALBc-1_X02_Y02_81_656\", \"ini\": 156, \"clust\": 1412, \"rank\": 2095, \"rankvar\": 1852, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2670, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1516, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2214, \"group\": [1416.0, 764.0, 226.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85926_BALBc-1_X02_Y02_81_785\", \"ini\": 155, \"clust\": 2381, \"rank\": 2568, \"rankvar\": 1749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2671, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1517, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1001, \"group\": [2381.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85942_BALBc-1_X02_Y02_81_991\", \"ini\": 154, \"clust\": 577, \"rank\": 840, \"rankvar\": 1787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2672, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1518, \"cat-2\": \"Density: 16\", \"cat_2_index\": 66, \"group\": [578.0, 395.0, 131.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86002_BALBc-1_X02_Y02_810_796\", \"ini\": 153, \"clust\": 986, \"rank\": 390, \"rankvar\": 689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2673, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 577, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2294, \"group\": [986.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86177_BALBc-1_X02_Y02_813_187\", \"ini\": 152, \"clust\": 457, \"rank\": 523, \"rankvar\": 2468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2674, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1556, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1164, \"group\": [457.0, 318.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86247_BALBc-1_X02_Y02_813_882\", \"ini\": 151, \"clust\": 2006, \"rank\": 1719, \"rankvar\": 1601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2675, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2200, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2033, \"group\": [2009.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86277_BALBc-1_X02_Y02_814_239\", \"ini\": 150, \"clust\": 765, \"rank\": 113, \"rankvar\": 837, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2676, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2497, \"cat-2\": \"Density: 24\", \"cat_2_index\": 575, \"group\": [766.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86338_BALBc-1_X02_Y02_814_833\", \"ini\": 149, \"clust\": 2127, \"rank\": 2123, \"rankvar\": 1887, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2677, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2201, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2295, \"group\": [2125.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86350_BALBc-1_X02_Y02_815_1001\", \"ini\": 148, \"clust\": 1851, \"rank\": 2272, \"rankvar\": 1691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2678, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 578, \"cat-2\": \"Density: 17\", \"cat_2_index\": 84, \"group\": [1851.0, 1043.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86446_BALBc-1_X02_Y02_816_410\", \"ini\": 147, \"clust\": 678, \"rank\": 664, \"rankvar\": 287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2679, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 579, \"cat-2\": \"Density: 25\", \"cat_2_index\": 704, \"group\": [681.0, 449.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86456_BALBc-1_X02_Y02_816_577\", \"ini\": 146, \"clust\": 1116, \"rank\": 608, \"rankvar\": 1399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2680, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1557, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1448, \"group\": [1117.0, 525.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86485_BALBc-1_X02_Y02_816_906\", \"ini\": 145, \"clust\": 2207, \"rank\": 1362, \"rankvar\": 1394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2681, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2202, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1820, \"group\": [2203.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86584_BALBc-1_X02_Y02_818_376\", \"ini\": 144, \"clust\": 336, \"rank\": 288, \"rankvar\": 1912, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2682, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 580, \"cat-2\": \"Density: 24\", \"cat_2_index\": 576, \"group\": [337.0, 237.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86654_BALBc-1_X02_Y02_819_312\", \"ini\": 143, \"clust\": 1312, \"rank\": 927, \"rankvar\": 1996, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2683, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 581, \"cat-2\": \"Density: 23\", \"cat_2_index\": 457, \"group\": [1310.0, 679.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86760_BALBc-1_X02_Y02_82_873\", \"ini\": 142, \"clust\": 1119, \"rank\": 157, \"rankvar\": 1414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2684, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1519, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1311, \"group\": [1119.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86819_BALBc-1_X02_Y02_820_592\", \"ini\": 141, \"clust\": 955, \"rank\": 584, \"rankvar\": 750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2685, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 582, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1587, \"group\": [956.0, 489.0, 139.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86859_BALBc-1_X02_Y02_821_272\", \"ini\": 140, \"clust\": 95, \"rank\": 893, \"rankvar\": 1707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2686, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 583, \"cat-2\": \"Density: 24\", \"cat_2_index\": 577, \"group\": [98.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86882_BALBc-1_X02_Y02_821_469\", \"ini\": 139, \"clust\": 783, \"rank\": 349, \"rankvar\": 484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2687, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2753, \"cat-2\": \"Density: 22\", \"cat_2_index\": 341, \"group\": [783.0, 475.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86995_BALBc-1_X02_Y02_822_773\", \"ini\": 138, \"clust\": 1992, \"rank\": 1866, \"rankvar\": 133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2688, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 584, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2034, \"group\": [1997.0, 1130.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87010_BALBc-1_X02_Y02_822_970\", \"ini\": 137, \"clust\": 2193, \"rank\": 2157, \"rankvar\": 2329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2689, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2203, \"cat-2\": \"Density: 25\", \"cat_2_index\": 705, \"group\": [2192.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87223_BALBc-1_X02_Y02_825_637\", \"ini\": 136, \"clust\": 845, \"rank\": 277, \"rankvar\": 76, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2690, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2754, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2035, \"group\": [848.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87231_BALBc-1_X02_Y02_825_685\", \"ini\": 135, \"clust\": 1816, \"rank\": 2823, \"rankvar\": 2720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2691, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1520, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2215, \"group\": [1817.0, 1027.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87361_BALBc-1_X02_Y02_827_663\", \"ini\": 134, \"clust\": 1927, \"rank\": 2663, \"rankvar\": 2446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2692, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2755, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2423, \"group\": [1927.0, 1107.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87401_BALBc-1_X02_Y02_828_136\", \"ini\": 133, \"clust\": 531, \"rank\": 888, \"rankvar\": 401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2693, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 878, \"cat-2\": \"Density: 25\", \"cat_2_index\": 706, \"group\": [532.0, 364.0, 122.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87753_BALBc-1_X02_Y02_831_750\", \"ini\": 132, \"clust\": 2414, \"rank\": 1191, \"rankvar\": 123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2694, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1521, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2036, \"group\": [2415.0, 1284.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87772_BALBc-1_X02_Y02_832_176\", \"ini\": 131, \"clust\": 1352, \"rank\": 1199, \"rankvar\": 1545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2695, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1558, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1165, \"group\": [1353.0, 714.0, 212.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87940_BALBc-1_X02_Y02_834_449\", \"ini\": 130, \"clust\": 160, \"rank\": 1201, \"rankvar\": 899, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2696, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 585, \"cat-2\": \"Density: 22\", \"cat_2_index\": 342, \"group\": [159.0, 100.0, 33.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88160_BALBc-1_X02_Y02_837_355\", \"ini\": 129, \"clust\": 337, \"rank\": 199, \"rankvar\": 1383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2697, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 586, \"cat-2\": \"Density: 23\", \"cat_2_index\": 458, \"group\": [338.0, 237.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88190_BALBc-1_X02_Y02_837_668\", \"ini\": 128, \"clust\": 525, \"rank\": 149, \"rankvar\": 1272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2698, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 587, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2296, \"group\": [527.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88264_BALBc-1_X02_Y02_838_719\", \"ini\": 127, \"clust\": 2519, \"rank\": 1435, \"rankvar\": 1573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2699, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1522, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2133, \"group\": [2519.0, 1352.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88363_BALBc-1_X02_Y02_839_932\", \"ini\": 126, \"clust\": 2234, \"rank\": 1299, \"rankvar\": 174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2700, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2204, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1704, \"group\": [2235.0, 1214.0, 362.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88394_BALBc-1_X02_Y02_84_515\", \"ini\": 125, \"clust\": 436, \"rank\": 598, \"rankvar\": 2425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2701, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1523, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1921, \"group\": [436.0, 308.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88440_BALBc-1_X02_Y02_84_969\", \"ini\": 124, \"clust\": 1070, \"rank\": 345, \"rankvar\": 1293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2702, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1524, \"cat-2\": \"Density: 20\", \"cat_2_index\": 184, \"group\": [1072.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88503_BALBc-1_X02_Y02_840_832\", \"ini\": 123, \"clust\": 2275, \"rank\": 1668, \"rankvar\": 809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2703, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 588, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2134, \"group\": [2274.0, 1240.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88555_BALBc-1_X02_Y02_841_439\", \"ini\": 122, \"clust\": 570, \"rank\": 1245, \"rankvar\": 708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2704, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 589, \"cat-2\": \"Density: 23\", \"cat_2_index\": 459, \"group\": [576.0, 393.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88760_BALBc-1_X02_Y02_844_277\", \"ini\": 121, \"clust\": 407, \"rank\": 802, \"rankvar\": 153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2705, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 590, \"cat-2\": \"Density: 22\", \"cat_2_index\": 343, \"group\": [407.0, 285.0, 96.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88917_BALBc-1_X02_Y02_846_331\", \"ini\": 120, \"clust\": 1109, \"rank\": 464, \"rankvar\": 14, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2706, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 591, \"cat-2\": \"Density: 24\", \"cat_2_index\": 578, \"group\": [1113.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88934_BALBc-1_X02_Y02_846_601\", \"ini\": 119, \"clust\": 1321, \"rank\": 1357, \"rankvar\": 718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2707, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2756, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1705, \"group\": [1322.0, 690.0, 205.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88985_BALBc-1_X02_Y02_847_249\", \"ini\": 118, \"clust\": 335, \"rank\": 1056, \"rankvar\": 793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2708, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2498, \"cat-2\": \"Density: 25\", \"cat_2_index\": 707, \"group\": [335.0, 235.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89032_BALBc-1_X02_Y02_847_706\", \"ini\": 117, \"clust\": 2174, \"rank\": 2023, \"rankvar\": 1729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2709, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 592, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2216, \"group\": [2176.0, 1181.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89042_BALBc-1_X02_Y02_847_797\", \"ini\": 116, \"clust\": 1016, \"rank\": 585, \"rankvar\": 512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2710, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2817, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2037, \"group\": [1017.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89169_BALBc-1_X02_Y02_849_386\", \"ini\": 115, \"clust\": 1316, \"rank\": 1588, \"rankvar\": 655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2711, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 593, \"cat-2\": \"Density: 23\", \"cat_2_index\": 460, \"group\": [1315.0, 683.0, 201.0, 57.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89338_BALBc-1_X02_Y02_850_734\", \"ini\": 114, \"clust\": 588, \"rank\": 924, \"rankvar\": 1118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2712, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 594, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2038, \"group\": [590.0, 402.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89357_BALBc-1_X02_Y02_851_140\", \"ini\": 113, \"clust\": 2473, \"rank\": 1130, \"rankvar\": 163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2713, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 879, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1002, \"group\": [2480.0, 1327.0, 394.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89396_BALBc-1_X02_Y02_851_573\", \"ini\": 112, \"clust\": 2712, \"rank\": 2547, \"rankvar\": 2213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2714, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1559, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1312, \"group\": [2709.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89419_BALBc-1_X02_Y02_851_872\", \"ini\": 111, \"clust\": 1057, \"rank\": 519, \"rankvar\": 660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2715, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2205, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1821, \"group\": [1057.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89427_BALBc-1_X02_Y02_852_1004\", \"ini\": 110, \"clust\": 2297, \"rank\": 1977, \"rankvar\": 1452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2716, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 595, \"cat-2\": \"Density: 16\", \"cat_2_index\": 67, \"group\": [2302.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89491_BALBc-1_X02_Y02_852_856\", \"ini\": 109, \"clust\": 504, \"rank\": 881, \"rankvar\": 516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2717, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 596, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1922, \"group\": [505.0, 345.0, 116.0, 33.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89556_BALBc-1_X02_Y02_853_642\", \"ini\": 108, \"clust\": 2331, \"rank\": 2284, \"rankvar\": 892, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2718, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2757, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2135, \"group\": [2356.0, 1257.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89743_BALBc-1_X02_Y02_855_754\", \"ini\": 107, \"clust\": 2368, \"rank\": 1966, \"rankvar\": 159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2719, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2818, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1822, \"group\": [2368.0, 1263.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89977_BALBc-1_X02_Y02_858_899\", \"ini\": 106, \"clust\": 2269, \"rank\": 1204, \"rankvar\": 920, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2720, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2206, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1706, \"group\": [2272.0, 1239.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90055_BALBc-1_X02_Y02_859_983\", \"ini\": 105, \"clust\": 2179, \"rank\": 2255, \"rankvar\": 2141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2721, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 597, \"cat-2\": \"Density: 24\", \"cat_2_index\": 579, \"group\": [2178.0, 1182.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90109_BALBc-1_X02_Y02_86_60\", \"ini\": 104, \"clust\": 1522, \"rank\": 1534, \"rankvar\": 1380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2722, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 732, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1313, \"group\": [1525.0, 824.0, 240.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90319_BALBc-1_X02_Y02_862_37\", \"ini\": 103, \"clust\": 1084, \"rank\": 290, \"rankvar\": 639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2723, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1991, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1003, \"group\": [1084.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90441_BALBc-1_X02_Y02_864_212\", \"ini\": 102, \"clust\": 314, \"rank\": 1383, \"rankvar\": 2630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2724, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2499, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1166, \"group\": [311.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90472_BALBc-1_X02_Y02_864_516\", \"ini\": 101, \"clust\": 551, \"rank\": 453, \"rankvar\": 1307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2725, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1525, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1004, \"group\": [552.0, 377.0, 124.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90584_BALBc-1_X02_Y02_865_954\", \"ini\": 100, \"clust\": 46, \"rank\": 757, \"rankvar\": 1461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2726, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2207, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1314, \"group\": [46.0, 38.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90756_BALBc-1_X02_Y02_868_247\", \"ini\": 99, \"clust\": 1752, \"rank\": 1455, \"rankvar\": 2194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2727, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1764, \"cat-2\": \"Density: 24\", \"cat_2_index\": 580, \"group\": [1751.0, 992.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90964_BALBc-1_X02_Y02_87_810\", \"ini\": 98, \"clust\": 413, \"rank\": 1153, \"rankvar\": 853, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2728, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1688, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1167, \"group\": [413.0, 290.0, 100.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90993_BALBc-1_X02_Y02_870_113\", \"ini\": 97, \"clust\": 358, \"rank\": 341, \"rankvar\": 2070, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2729, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 645, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1005, \"group\": [358.0, 250.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91037_BALBc-1_X02_Y02_870_608\", \"ini\": 96, \"clust\": 2669, \"rank\": 2761, \"rankvar\": 2058, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2730, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2758, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1588, \"group\": [2670.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91170_BALBc-1_X02_Y02_872_455\", \"ini\": 95, \"clust\": 101, \"rank\": 340, \"rankvar\": 1045, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2731, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1526, \"cat-2\": \"Density: 19\", \"cat_2_index\": 136, \"group\": [99.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91208_BALBc-1_X02_Y02_872_797\", \"ini\": 94, \"clust\": 2067, \"rank\": 2727, \"rankvar\": 1895, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2732, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2819, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1923, \"group\": [2065.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91245_BALBc-1_X02_Y02_873_333\", \"ini\": 93, \"clust\": 1282, \"rank\": 1862, \"rankvar\": 2331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2733, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 598, \"cat-2\": \"Density: 25\", \"cat_2_index\": 708, \"group\": [1280.0, 654.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91506_BALBc-1_X02_Y02_876_651\", \"ini\": 92, \"clust\": 913, \"rank\": 86, \"rankvar\": 179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2734, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2759, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2217, \"group\": [914.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91693_BALBc-1_X02_Y02_879_140\", \"ini\": 91, \"clust\": 543, \"rank\": 905, \"rankvar\": 1166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2735, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 646, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1589, \"group\": [544.0, 371.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91994_BALBc-1_X02_Y02_881_868\", \"ini\": 90, \"clust\": 1945, \"rank\": 2002, \"rankvar\": 928, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2736, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2208, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1707, \"group\": [1945.0, 1113.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92030_BALBc-1_X02_Y02_882_354\", \"ini\": 89, \"clust\": 100, \"rank\": 256, \"rankvar\": 1747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2737, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 599, \"cat-2\": \"Density: 23\", \"cat_2_index\": 461, \"group\": [101.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92117_BALBc-1_X02_Y02_883_671\", \"ini\": 88, \"clust\": 2673, \"rank\": 2602, \"rankvar\": 1491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2738, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2760, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2039, \"group\": [2672.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92273_BALBc-1_X02_Y02_886_181\", \"ini\": 87, \"clust\": 1594, \"rank\": 937, \"rankvar\": 860, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2739, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2466, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1315, \"group\": [1593.0, 876.0, 256.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92311_BALBc-1_X02_Y02_886_596\", \"ini\": 86, \"clust\": 2677, \"rank\": 2600, \"rankvar\": 1876, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2740, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2820, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1316, \"group\": [2676.0, 1444.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92434_BALBc-1_X02_Y02_888_295\", \"ini\": 85, \"clust\": 122, \"rank\": 1072, \"rankvar\": 421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2741, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 880, \"cat-2\": \"Density: 25\", \"cat_2_index\": 709, \"group\": [125.0, 79.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92552_BALBc-1_X02_Y02_889_735\", \"ini\": 84, \"clust\": 826, \"rank\": 265, \"rankvar\": 417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2742, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 600, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1924, \"group\": [830.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92558_BALBc-1_X02_Y02_889_853\", \"ini\": 83, \"clust\": 2135, \"rank\": 2224, \"rankvar\": 1630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2743, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 601, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1708, \"group\": [2135.0, 1153.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92570_BALBc-1_X02_Y02_889_96\", \"ini\": 82, \"clust\": 631, \"rank\": 530, \"rankvar\": 132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2744, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 881, \"cat-2\": \"Density: 26\", \"cat_2_index\": 852, \"group\": [630.0, 424.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92700_BALBc-1_X02_Y02_890_746\", \"ini\": 81, \"clust\": 2063, \"rank\": 2677, \"rankvar\": 2013, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2745, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2821, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1709, \"group\": [2062.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92756_BALBc-1_X02_Y02_891_44\", \"ini\": 80, \"clust\": 534, \"rank\": 735, \"rankvar\": 280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2746, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 882, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1168, \"group\": [534.0, 365.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92817_BALBc-1_X02_Y02_892_413\", \"ini\": 79, \"clust\": 567, \"rank\": 493, \"rankvar\": 1862, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2747, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 602, \"cat-2\": \"Density: 26\", \"cat_2_index\": 853, \"group\": [567.0, 389.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92906_BALBc-1_X02_Y02_893_546\", \"ini\": 78, \"clust\": 2636, \"rank\": 2662, \"rankvar\": 1602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2748, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1527, \"cat-2\": \"Density: 24\", \"cat_2_index\": 581, \"group\": [2634.0, 1426.0, 420.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92912_BALBc-1_X02_Y02_893_644\", \"ini\": 77, \"clust\": 1962, \"rank\": 2395, \"rankvar\": 1697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2749, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2761, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1925, \"group\": [1960.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92924_BALBc-1_X02_Y02_893_808\", \"ini\": 76, \"clust\": 925, \"rank\": 34, \"rankvar\": 507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2750, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2822, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1710, \"group\": [924.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93103_BALBc-1_X02_Y02_895_993\", \"ini\": 75, \"clust\": 1955, \"rank\": 2119, \"rankvar\": 1198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2751, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 603, \"cat-2\": \"Density: 17\", \"cat_2_index\": 85, \"group\": [1954.0, 1115.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93223_BALBc-1_X02_Y02_897_705\", \"ini\": 74, \"clust\": 2024, \"rank\": 2204, \"rankvar\": 1772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2752, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2762, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2040, \"group\": [2022.0, 1139.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93348_BALBc-1_X02_Y02_899_389\", \"ini\": 73, \"clust\": 267, \"rank\": 1022, \"rankvar\": 664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2753, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 604, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1006, \"group\": [267.0, 189.0, 66.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93415_BALBc-1_X02_Y02_9_38\", \"ini\": 72, \"clust\": 2558, \"rank\": 1708, \"rankvar\": 621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2754, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2467, \"cat-2\": \"Density: 24\", \"cat_2_index\": 582, \"group\": [2563.0, 1384.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93437_BALBc-1_X02_Y02_9_690\", \"ini\": 71, \"clust\": 2, \"rank\": 1060, \"rankvar\": 1377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2755, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1528, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1711, \"group\": [2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93474_BALBc-1_X02_Y02_90_174\", \"ini\": 70, \"clust\": 251, \"rank\": 1197, \"rankvar\": 262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2756, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2763, \"cat-2\": \"Density: 20\", \"cat_2_index\": 185, \"group\": [252.0, 175.0, 60.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93570_BALBc-1_X02_Y02_900_320\", \"ini\": 69, \"clust\": 1305, \"rank\": 1254, \"rankvar\": 1552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2757, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 605, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1007, \"group\": [1306.0, 677.0, 199.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93778_BALBc-1_X02_Y02_903_445\", \"ini\": 68, \"clust\": 1283, \"rank\": 1277, \"rankvar\": 2077, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2758, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1529, \"cat-2\": \"Density: 23\", \"cat_2_index\": 462, \"group\": [1281.0, 654.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93852_BALBc-1_X02_Y02_904_543\", \"ini\": 67, \"clust\": 263, \"rank\": 531, \"rankvar\": 1498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2759, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1530, \"cat-2\": \"Density: 24\", \"cat_2_index\": 583, \"group\": [262.0, 184.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93948_BALBc-1_X02_Y02_905_80\", \"ini\": 66, \"clust\": 26, \"rank\": 1026, \"rankvar\": 1290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2760, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 883, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1317, \"group\": [27.0, 26.0, 15.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94108_BALBc-1_X02_Y02_907_946\", \"ini\": 65, \"clust\": 2029, \"rank\": 2148, \"rankvar\": 1072, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2761, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2209, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1449, \"group\": [2038.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94454_BALBc-1_X02_Y02_911_705\", \"ini\": 64, \"clust\": 877, \"rank\": 0, \"rankvar\": 636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2762, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2764, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1926, \"group\": [874.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94481_BALBc-1_X02_Y02_912_148\", \"ini\": 63, \"clust\": 88, \"rank\": 767, \"rankvar\": 998, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2763, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 647, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1318, \"group\": [89.0, 64.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94484_BALBc-1_X02_Y02_912_174\", \"ini\": 62, \"clust\": 1108, \"rank\": 410, \"rankvar\": 196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2764, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 606, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1319, \"group\": [1107.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94610_BALBc-1_X02_Y02_913_822\", \"ini\": 61, \"clust\": 2096, \"rank\": 2583, \"rankvar\": 2373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2765, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2765, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1450, \"group\": [2098.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94815_BALBc-1_X02_Y02_916_641\", \"ini\": 60, \"clust\": 729, \"rank\": 456, \"rankvar\": 6, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2766, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2766, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1590, \"group\": [729.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94838_BALBc-1_X02_Y02_916_85\", \"ini\": 59, \"clust\": 823, \"rank\": 308, \"rankvar\": 3, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2767, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 884, \"cat-2\": \"Density: 25\", \"cat_2_index\": 710, \"group\": [824.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94839_BALBc-1_X02_Y02_916_856\", \"ini\": 58, \"clust\": 1996, \"rank\": 2543, \"rankvar\": 2028, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2768, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2767, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1451, \"group\": [1994.0, 1127.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94853_BALBc-1_X02_Y02_917_213\", \"ini\": 57, \"clust\": 836, \"rank\": 123, \"rankvar\": 73, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2769, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 885, \"cat-2\": \"Density: 26\", \"cat_2_index\": 854, \"group\": [835.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94891_BALBc-1_X02_Y02_917_742\", \"ini\": 56, \"clust\": 1044, \"rank\": 368, \"rankvar\": 40, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2770, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 607, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1591, \"group\": [1042.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95053_BALBc-1_X02_Y02_919_786\", \"ini\": 55, \"clust\": 1015, \"rank\": 477, \"rankvar\": 122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2771, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2823, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1823, \"group\": [1014.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95070_BALBc-1_X02_Y02_919_984\", \"ini\": 54, \"clust\": 1088, \"rank\": 175, \"rankvar\": 955, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2772, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2210, \"cat-2\": \"Density: 20\", \"cat_2_index\": 186, \"group\": [1089.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95344_BALBc-1_X02_Y02_922_457\", \"ini\": 53, \"clust\": 1106, \"rank\": 450, \"rankvar\": 515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2773, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1531, \"cat-2\": \"Density: 22\", \"cat_2_index\": 344, \"group\": [1105.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95351_BALBc-1_X02_Y02_922_549\", \"ini\": 52, \"clust\": 2687, \"rank\": 2819, \"rankvar\": 2702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2774, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2768, \"cat-2\": \"Density: 22\", \"cat_2_index\": 345, \"group\": [2693.0, 1450.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95458_BALBc-1_X02_Y02_923_893\", \"ini\": 51, \"clust\": 634, \"rank\": 561, \"rankvar\": 53, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2775, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2211, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1452, \"group\": [638.0, 428.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95495_BALBc-1_X02_Y02_924_349\", \"ini\": 50, \"clust\": 252, \"rank\": 1587, \"rankvar\": 661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2776, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 608, \"cat-2\": \"Density: 24\", \"cat_2_index\": 584, \"group\": [253.0, 176.0, 61.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95866_BALBc-1_X02_Y02_928_872\", \"ini\": 49, \"clust\": 2188, \"rank\": 2341, \"rankvar\": 2216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2777, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2769, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1592, \"group\": [2194.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95874_BALBc-1_X02_Y02_929_132\", \"ini\": 48, \"clust\": 366, \"rank\": 564, \"rankvar\": 2257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2778, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2468, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1320, \"group\": [366.0, 253.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96102_BALBc-1_X02_Y02_931_305\", \"ini\": 47, \"clust\": 92, \"rank\": 741, \"rankvar\": 896, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2779, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 886, \"cat-2\": \"Density: 24\", \"cat_2_index\": 585, \"group\": [93.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96234_BALBc-1_X02_Y02_932_924\", \"ini\": 46, \"clust\": 2015, \"rank\": 2159, \"rankvar\": 1768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2780, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2212, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1593, \"group\": [2016.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96350_BALBc-1_X02_Y02_934_713\", \"ini\": 45, \"clust\": 1994, \"rank\": 2113, \"rankvar\": 1664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2781, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2770, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1594, \"group\": [1995.0, 1128.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96428_BALBc-1_X02_Y02_935_613\", \"ini\": 44, \"clust\": 2559, \"rank\": 1703, \"rankvar\": 1814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2782, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 609, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1321, \"group\": [2562.0, 1383.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96640_BALBc-1_X02_Y02_938_684\", \"ini\": 43, \"clust\": 2634, \"rank\": 2086, \"rankvar\": 422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2783, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2771, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1453, \"group\": [2635.0, 1427.0, 420.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97000_BALBc-1_X02_Y02_942_474\", \"ini\": 42, \"clust\": 2800, \"rank\": 1956, \"rankvar\": 1796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2784, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2772, \"cat-2\": \"Density: 23\", \"cat_2_index\": 463, \"group\": [2802.0, 1520.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97011_BALBc-1_X02_Y02_942_662\", \"ini\": 41, \"clust\": 2456, \"rank\": 1187, \"rankvar\": 900, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2785, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2773, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1454, \"group\": [2464.0, 1312.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97056_BALBc-1_X02_Y02_943_193\", \"ini\": 40, \"clust\": 761, \"rank\": 315, \"rankvar\": 116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2786, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2774, \"cat-2\": \"Density: 25\", \"cat_2_index\": 711, \"group\": [761.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97137_BALBc-1_X02_Y02_944_154\", \"ini\": 39, \"clust\": 1356, \"rank\": 1947, \"rankvar\": 310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2787, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2775, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1824, \"group\": [1357.0, 718.0, 213.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97167_BALBc-1_X02_Y02_944_435\", \"ini\": 38, \"clust\": 943, \"rank\": 146, \"rankvar\": 352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2788, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 936, \"cat-2\": \"Density: 21\", \"cat_2_index\": 245, \"group\": [942.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97214_BALBc-1_X02_Y02_944_966\", \"ini\": 37, \"clust\": 879, \"rank\": 8, \"rankvar\": 698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2789, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2213, \"cat-2\": \"Density: 24\", \"cat_2_index\": 586, \"group\": [876.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97451_BALBc-1_X02_Y02_948_331\", \"ini\": 36, \"clust\": 102, \"rank\": 449, \"rankvar\": 1101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2790, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 610, \"cat-2\": \"Density: 21\", \"cat_2_index\": 246, \"group\": [100.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97491_BALBc-1_X02_Y02_948_932\", \"ini\": 35, \"clust\": 2534, \"rank\": 1597, \"rankvar\": 1327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2791, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2214, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1595, \"group\": [2533.0, 1359.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97517_BALBc-1_X02_Y02_949_240\", \"ini\": 34, \"clust\": 2504, \"rank\": 1616, \"rankvar\": 738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2792, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 887, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1008, \"group\": [2506.0, 1346.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97549_BALBc-1_X02_Y02_949_586\", \"ini\": 33, \"clust\": 2692, \"rank\": 2753, \"rankvar\": 2099, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2793, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1589, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1009, \"group\": [2689.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98069_BALBc-1_X02_Y02_955_308\", \"ini\": 32, \"clust\": 351, \"rank\": 1298, \"rankvar\": 1070, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2794, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 611, \"cat-2\": \"Density: 22\", \"cat_2_index\": 346, \"group\": [352.0, 246.0, 86.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98157_BALBc-1_X02_Y02_956_396\", \"ini\": 31, \"clust\": 1686, \"rank\": 1922, \"rankvar\": 1629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2795, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 612, \"cat-2\": \"Density: 25\", \"cat_2_index\": 712, \"group\": [1684.0, 941.0, 279.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98194_BALBc-1_X02_Y02_956_883\", \"ini\": 30, \"clust\": 2050, \"rank\": 2487, \"rankvar\": 2578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2796, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2215, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1712, \"group\": [2052.0, 1148.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98263_BALBc-1_X02_Y02_957_843\", \"ini\": 29, \"clust\": 881, \"rank\": 97, \"rankvar\": 220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2797, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2776, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1322, \"group\": [882.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98313_BALBc-1_X02_Y02_958_647\", \"ini\": 28, \"clust\": 2633, \"rank\": 2257, \"rankvar\": 1869, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2798, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 613, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1323, \"group\": [2636.0, 1428.0, 420.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98322_BALBc-1_X02_Y02_958_769\", \"ini\": 27, \"clust\": 2192, \"rank\": 1816, \"rankvar\": 1892, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2799, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2777, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1455, \"group\": [2193.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98806_BALBc-1_X02_Y02_964_191\", \"ini\": 26, \"clust\": 2506, \"rank\": 1942, \"rankvar\": 1840, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2800, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 888, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1169, \"group\": [2505.0, 1346.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98856_BALBc-1_X02_Y02_964_78\", \"ini\": 25, \"clust\": 1235, \"rank\": 1028, \"rankvar\": 2765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2801, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 889, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1596, \"group\": [1234.0, 621.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98994_BALBc-1_X02_Y02_966_741\", \"ini\": 24, \"clust\": 1993, \"rank\": 2028, \"rankvar\": 2111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2802, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2778, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1713, \"group\": [1996.0, 1129.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99000_BALBc-1_X02_Y02_966_800\", \"ini\": 23, \"clust\": 2662, \"rank\": 2525, \"rankvar\": 1853, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2803, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2779, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1456, \"group\": [2665.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99040_BALBc-1_X02_Y02_967_294\", \"ini\": 22, \"clust\": 2807, \"rank\": 1332, \"rankvar\": 1152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2804, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 890, \"cat-2\": \"Density: 21\", \"cat_2_index\": 247, \"group\": [2807.0, 1525.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99129_BALBc-1_X02_Y02_968_372\", \"ini\": 21, \"clust\": 105, \"rank\": 448, \"rankvar\": 1354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2805, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 614, \"cat-2\": \"Density: 24\", \"cat_2_index\": 587, \"group\": [105.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99400_BALBc-1_X02_Y02_970_970\", \"ini\": 20, \"clust\": 1728, \"rank\": 2300, \"rankvar\": 1242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2806, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2216, \"cat-2\": \"Density: 22\", \"cat_2_index\": 347, \"group\": [1727.0, 972.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99453_BALBc-1_X02_Y02_971_668\", \"ini\": 19, \"clust\": 1883, \"rank\": 1961, \"rankvar\": 1484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2807, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2780, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1597, \"group\": [1884.0, 1074.0, 327.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99472_BALBc-1_X02_Y02_971_945\", \"ini\": 18, \"clust\": 736, \"rank\": 482, \"rankvar\": 305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2808, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2217, \"cat-2\": \"Density: 25\", \"cat_2_index\": 713, \"group\": [736.0, 466.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99576_BALBc-1_X02_Y02_973_307\", \"ini\": 17, \"clust\": 939, \"rank\": 102, \"rankvar\": 1005, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2809, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 615, \"cat-2\": \"Density: 22\", \"cat_2_index\": 348, \"group\": [939.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99819_BALBc-1_X02_Y02_976_413\", \"ini\": 16, \"clust\": 2823, \"rank\": 1664, \"rankvar\": 1033, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2810, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 937, \"cat-2\": \"Density: 25\", \"cat_2_index\": 714, \"group\": [2824.0, 1535.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99924_BALBc-1_X02_Y02_977_857\", \"ini\": 15, \"clust\": 1931, \"rank\": 2469, \"rankvar\": 1956, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2811, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2218, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1714, \"group\": [1933.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100214_BALBc-1_X02_Y02_980_820\", \"ini\": 14, \"clust\": 158, \"rank\": 1122, \"rankvar\": 173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2812, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2781, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1324, \"group\": [160.0, 101.0, 33.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100337_BALBc-1_X02_Y02_982_632\", \"ini\": 13, \"clust\": 2580, \"rank\": 1637, \"rankvar\": 1676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2813, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2782, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1325, \"group\": [2580.0, 1394.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100367_BALBc-1_X02_Y02_982_992\", \"ini\": 12, \"clust\": 2640, \"rank\": 1973, \"rankvar\": 976, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2814, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2219, \"cat-2\": \"Density: 17\", \"cat_2_index\": 86, \"group\": [2639.0, 1431.0, 422.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100561_BALBc-1_X02_Y02_985_561\", \"ini\": 11, \"clust\": 2604, \"rank\": 2042, \"rankvar\": 2248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2815, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2783, \"cat-2\": \"Density: 22\", \"cat_2_index\": 349, \"group\": [2602.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100649_BALBc-1_X02_Y02_986_672\", \"ini\": 10, \"clust\": 1947, \"rank\": 1962, \"rankvar\": 1285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2816, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2784, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1825, \"group\": [1948.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100670_BALBc-1_X02_Y02_987_14\", \"ini\": 9, \"clust\": 1266, \"rank\": 2166, \"rankvar\": 2448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2817, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1532, \"cat-2\": \"Density: 23\", \"cat_2_index\": 464, \"group\": [1266.0, 645.0, 186.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100764_BALBc-1_X02_Y02_988_366\", \"ini\": 8, \"clust\": 518, \"rank\": 1261, \"rankvar\": 89, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2818, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1170, \"group\": [519.0, 356.0, 120.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100956_BALBc-1_X02_Y02_99_748\", \"ini\": 7, \"clust\": 1726, \"rank\": 2521, \"rankvar\": 2084, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2819, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1533, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1715, \"group\": [1728.0, 973.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100988_BALBc-1_X02_Y02_990_472\", \"ini\": 6, \"clust\": 54, \"rank\": 869, \"rankvar\": 1001, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2820, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 938, \"cat-2\": \"Density: 20\", \"cat_2_index\": 187, \"group\": [52.0, 42.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101005_BALBc-1_X02_Y02_990_71\", \"ini\": 5, \"clust\": 800, \"rank\": 77, \"rankvar\": 1319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2821, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2469, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1010, \"group\": [799.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101037_BALBc-1_X02_Y02_991_103\", \"ini\": 4, \"clust\": 1780, \"rank\": 2557, \"rankvar\": 2517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2822, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2470, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1326, \"group\": [1780.0, 1010.0, 306.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101297_BALBc-1_X02_Y02_994_186\", \"ini\": 3, \"clust\": 1215, \"rank\": 1083, \"rankvar\": 445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2823, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2785, \"cat-2\": \"Density: 26\", \"cat_2_index\": 855, \"group\": [1218.0, 610.0, 173.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101397_BALBc-1_X02_Y02_995_288\", \"ini\": 2, \"clust\": 852, \"rank\": 38, \"rankvar\": 742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2824, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2471, \"cat-2\": \"Density: 23\", \"cat_2_index\": 465, \"group\": [859.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101608_BALBc-1_X02_Y02_997_729\", \"ini\": 1, \"clust\": 2290, \"rank\": 2167, \"rankvar\": 1445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2825, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2786, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2041, \"group\": [2290.0, 1247.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}]}}, {\"N_row_sum\": 20, \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"name\": \"Ly6G\", \"ini\": 20, \"clust\": 18, \"rank\": 0, \"rankvar\": 0, \"group\": [17.0, 17.0, 17.0, 16.0, 12.0, 11.0, 9.0, 5.0, 1.0, 1.0, 1.0]}, {\"name\": \"Ly6C\", \"ini\": 19, \"clust\": 14, \"rank\": 1, \"rankvar\": 1, \"group\": [15.0, 15.0, 15.0, 14.0, 11.0, 10.0, 8.0, 5.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD5\", \"ini\": 18, \"clust\": 12, \"rank\": 2, \"rankvar\": 3, \"group\": [13.0, 13.0, 13.0, 12.0, 10.0, 9.0, 7.0, 5.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD11b\", \"ini\": 17, \"clust\": 19, \"rank\": 3, \"rankvar\": 2, \"group\": [18.0, 18.0, 18.0, 17.0, 12.0, 11.0, 9.0, 5.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD71\", \"ini\": 16, \"clust\": 4, \"rank\": 4, \"rankvar\": 4, \"group\": [5.0, 5.0, 5.0, 5.0, 4.0, 4.0, 3.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD3\", \"ini\": 15, \"clust\": 15, \"rank\": 5, \"rankvar\": 6, \"group\": [16.0, 16.0, 16.0, 15.0, 11.0, 10.0, 8.0, 5.0, 1.0, 1.0, 1.0]}, {\"name\": \"NKp46\", \"ini\": 14, \"clust\": 6, \"rank\": 6, \"rankvar\": 5, \"group\": [10.0, 10.0, 10.0, 10.0, 8.0, 8.0, 6.0, 4.0, 1.0, 1.0, 1.0]}, {\"name\": \"TCR\", \"ini\": 13, \"clust\": 10, \"rank\": 7, \"rankvar\": 7, \"group\": [11.0, 11.0, 11.0, 11.0, 9.0, 9.0, 7.0, 5.0, 1.0, 1.0, 1.0]}, {\"name\": \"IgM\", \"ini\": 12, \"clust\": 0, \"rank\": 8, \"rankvar\": 8, \"group\": [4.0, 4.0, 4.0, 4.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"Ter119\", \"ini\": 11, \"clust\": 5, \"rank\": 9, \"rankvar\": 9, \"group\": [6.0, 6.0, 6.0, 6.0, 5.0, 5.0, 4.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"ERTR7\", \"ini\": 10, \"clust\": 7, \"rank\": 10, \"rankvar\": 11, \"group\": [9.0, 9.0, 9.0, 9.0, 7.0, 7.0, 5.0, 4.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD4\", \"ini\": 9, \"clust\": 13, \"rank\": 11, \"rankvar\": 12, \"group\": [14.0, 14.0, 14.0, 13.0, 10.0, 9.0, 7.0, 5.0, 1.0, 1.0, 1.0]}, {\"name\": \"F480\", \"ini\": 8, \"clust\": 8, \"rank\": 12, \"rankvar\": 10, \"group\": [7.0, 7.0, 7.0, 7.0, 6.0, 6.0, 5.0, 4.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD2135\", \"ini\": 7, \"clust\": 1, \"rank\": 13, \"rankvar\": 13, \"group\": [3.0, 3.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD8a\", \"ini\": 6, \"clust\": 17, \"rank\": 14, \"rankvar\": 14, \"group\": [19.0, 19.0, 19.0, 18.0, 13.0, 12.0, 9.0, 5.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD27\", \"ini\": 5, \"clust\": 11, \"rank\": 15, \"rankvar\": 15, \"group\": [12.0, 12.0, 12.0, 11.0, 9.0, 9.0, 7.0, 5.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD106\", \"ini\": 4, \"clust\": 9, \"rank\": 16, \"rankvar\": 16, \"group\": [8.0, 8.0, 8.0, 8.0, 6.0, 6.0, 5.0, 4.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD169\", \"ini\": 3, \"clust\": 16, \"rank\": 19, \"rankvar\": 19, \"group\": [20.0, 20.0, 20.0, 19.0, 14.0, 13.0, 9.0, 5.0, 1.0, 1.0, 1.0]}, {\"name\": \"B220\", \"ini\": 2, \"clust\": 2, \"rank\": 17, \"rankvar\": 18, \"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"IgD\", \"ini\": 1, \"clust\": 3, \"rank\": 18, \"rankvar\": 17, \"group\": [2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}], \"col_nodes\": [{\"name\": \"C-643_BALBc-1_X01_Y01_10_277\", \"ini\": 2826, \"clust\": 2449, \"rank\": 2273, \"rankvar\": 2273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 0, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2805, \"cat-2\": \"Density: 14\", \"cat_2_index\": 23, \"group\": [2451.0, 1016.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1264_BALBc-1_X01_Y01_1006_490\", \"ini\": 2825, \"clust\": 1505, \"rank\": 494, \"rankvar\": 1756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1765, \"cat-2\": \"Density: 23\", \"cat_2_index\": 350, \"group\": [1505.0, 633.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1589_BALBc-1_X01_Y01_101_504\", \"ini\": 2824, \"clust\": 2712, \"rank\": 2421, \"rankvar\": 2623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2335, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1011, \"group\": [2710.0, 1164.0, 311.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1611_BALBc-1_X01_Y01_101_759\", \"ini\": 2823, \"clust\": 2318, \"rank\": 2631, \"rankvar\": 2541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 3, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2336, \"cat-2\": \"Density: 25\", \"cat_2_index\": 588, \"group\": [2319.0, 947.0, 247.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1873_BALBc-1_X01_Y01_1013_254\", \"ini\": 2822, \"clust\": 2723, \"rank\": 1867, \"rankvar\": 2231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 4, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 949, \"cat-2\": \"Density: 25\", \"cat_2_index\": 589, \"group\": [2736.0, 1181.0, 314.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1877_BALBc-1_X01_Y01_1013_293\", \"ini\": 2821, \"clust\": 2653, \"rank\": 1013, \"rankvar\": 1937, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 5, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2337, \"cat-2\": \"Density: 27\", \"cat_2_index\": 856, \"group\": [2652.0, 1123.0, 293.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1935_BALBc-1_X01_Y01_1013_914\", \"ini\": 2820, \"clust\": 1531, \"rank\": 432, \"rankvar\": 1535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 6, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2338, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1327, \"group\": [1531.0, 646.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2478_BALBc-1_X01_Y01_1020_25\", \"ini\": 2819, \"clust\": 2820, \"rank\": 1441, \"rankvar\": 2138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 7, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1766, \"cat-2\": \"Density: 14\", \"cat_2_index\": 24, \"group\": [2821.0, 1227.0, 326.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2866_BALBc-1_X01_Y01_1025_128\", \"ini\": 2818, \"clust\": 2726, \"rank\": 2681, \"rankvar\": 2664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 8, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2251, \"cat-2\": \"Density: 21\", \"cat_2_index\": 188, \"group\": [2725.0, 1175.0, 314.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2988_BALBc-1_X01_Y01_1026_609\", \"ini\": 2817, \"clust\": 2359, \"rank\": 713, \"rankvar\": 1027, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 9, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 950, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1012, \"group\": [2360.0, 966.0, 251.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3121_BALBc-1_X01_Y01_1028_10\", \"ini\": 2816, \"clust\": 1880, \"rank\": 431, \"rankvar\": 1225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 10, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1767, \"cat-2\": \"Density: 11\", \"cat_2_index\": 4, \"group\": [1878.0, 714.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3220_BALBc-1_X01_Y01_1029_199\", \"ini\": 2815, \"clust\": 2262, \"rank\": 805, \"rankvar\": 1095, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 11, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 951, \"cat-2\": \"Density: 21\", \"cat_2_index\": 189, \"group\": [2261.0, 919.0, 240.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3350_BALBc-1_X01_Y01_103_877\", \"ini\": 2814, \"clust\": 2294, \"rank\": 2620, \"rankvar\": 2777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 12, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1768, \"cat-2\": \"Density: 22\", \"cat_2_index\": 248, \"group\": [2291.0, 933.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3562_BALBc-1_X01_Y01_1032_941\", \"ini\": 2813, \"clust\": 1874, \"rank\": 555, \"rankvar\": 1570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 13, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 648, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1598, \"group\": [1873.0, 711.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3566_BALBc-1_X01_Y01_1032_996\", \"ini\": 2812, \"clust\": 2532, \"rank\": 902, \"rankvar\": 1010, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 14, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 649, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1599, \"group\": [2532.0, 1056.0, 274.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3997_BALBc-1_X01_Y01_1038_240\", \"ini\": 2811, \"clust\": 2287, \"rank\": 1992, \"rankvar\": 2290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 15, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 952, \"cat-2\": \"Density: 23\", \"cat_2_index\": 351, \"group\": [2286.0, 932.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4331_BALBc-1_X01_Y01_1041_691\", \"ini\": 2810, \"clust\": 2471, \"rank\": 1698, \"rankvar\": 2044, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 16, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 953, \"cat-2\": \"Density: 27\", \"cat_2_index\": 857, \"group\": [2472.0, 1020.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4357_BALBc-1_X01_Y01_1041_883\", \"ini\": 2809, \"clust\": 2286, \"rank\": 2230, \"rankvar\": 2052, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 17, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 733, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1013, \"group\": [2302.0, 936.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4446_BALBc-1_X01_Y01_1042_941\", \"ini\": 2808, \"clust\": 1711, \"rank\": 252, \"rankvar\": 1040, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 18, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2500, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1328, \"group\": [1711.0, 681.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4781_BALBc-1_X01_Y01_1047_289\", \"ini\": 2807, \"clust\": 2714, \"rank\": 2588, \"rankvar\": 2813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 19, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2339, \"cat-2\": \"Density: 25\", \"cat_2_index\": 590, \"group\": [2719.0, 1170.0, 312.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6348_BALBc-1_X01_Y01_1065_305\", \"ini\": 2806, \"clust\": 2624, \"rank\": 1526, \"rankvar\": 2452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 20, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2472, \"cat-2\": \"Density: 25\", \"cat_2_index\": 591, \"group\": [2624.0, 1107.0, 287.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6416_BALBc-1_X01_Y01_1066_194\", \"ini\": 2805, \"clust\": 590, \"rank\": 1235, \"rankvar\": 1378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 21, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2340, \"cat-2\": \"Density: 22\", \"cat_2_index\": 249, \"group\": [591.0, 251.0, 73.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6555_BALBc-1_X01_Y01_1068_135\", \"ini\": 2804, \"clust\": 2649, \"rank\": 781, \"rankvar\": 2453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 22, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2252, \"cat-2\": \"Density: 19\", \"cat_2_index\": 110, \"group\": [2649.0, 1122.0, 292.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6697_BALBc-1_X01_Y01_1069_600\", \"ini\": 2803, \"clust\": 2380, \"rank\": 574, \"rankvar\": 986, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 23, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1769, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1329, \"group\": [2381.0, 978.0, 256.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6969_BALBc-1_X01_Y01_1072_106\", \"ini\": 2802, \"clust\": 2728, \"rank\": 2812, \"rankvar\": 2825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 24, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2253, \"cat-2\": \"Density: 22\", \"cat_2_index\": 250, \"group\": [2732.0, 1177.0, 314.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7033_BALBc-1_X01_Y01_1072_670\", \"ini\": 2801, \"clust\": 1486, \"rank\": 449, \"rankvar\": 1886, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 25, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1770, \"cat-2\": \"Density: 24\", \"cat_2_index\": 466, \"group\": [1491.0, 628.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7127_BALBc-1_X01_Y01_1073_75\", \"ini\": 2800, \"clust\": 2650, \"rank\": 1104, \"rankvar\": 2651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 26, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2254, \"cat-2\": \"Density: 23\", \"cat_2_index\": 352, \"group\": [2650.0, 1122.0, 292.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7426_BALBc-1_X01_Y01_1077_266\", \"ini\": 2799, \"clust\": 2623, \"rank\": 1180, \"rankvar\": 1785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 27, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2341, \"cat-2\": \"Density: 27\", \"cat_2_index\": 858, \"group\": [2626.0, 1107.0, 287.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7713_BALBc-1_X01_Y01_1080_242\", \"ini\": 2798, \"clust\": 1895, \"rank\": 205, \"rankvar\": 195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 28, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2342, \"cat-2\": \"Density: 24\", \"cat_2_index\": 467, \"group\": [1895.0, 718.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8117_BALBc-1_X01_Y01_1085_774\", \"ini\": 2797, \"clust\": 2568, \"rank\": 2255, \"rankvar\": 2709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 29, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 954, \"cat-2\": \"Density: 24\", \"cat_2_index\": 468, \"group\": [2568.0, 1071.0, 277.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8161_BALBc-1_X01_Y01_1086_450\", \"ini\": 2796, \"clust\": 2212, \"rank\": 867, \"rankvar\": 1927, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 30, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2220, \"cat-2\": \"Density: 27\", \"cat_2_index\": 859, \"group\": [2212.0, 896.0, 234.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8563_BALBc-1_X01_Y01_1090_6\", \"ini\": 2795, \"clust\": 1528, \"rank\": 956, \"rankvar\": 1742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 31, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 650, \"cat-2\": \"Density: 14\", \"cat_2_index\": 25, \"group\": [1529.0, 645.0, 175.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8628_BALBc-1_X01_Y01_1091_43\", \"ini\": 2794, \"clust\": 2417, \"rank\": 1674, \"rankvar\": 2266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 32, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1591, \"cat-2\": \"Density: 19\", \"cat_2_index\": 111, \"group\": [2417.0, 1005.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9642_BALBc-1_X01_Y01_1102_507\", \"ini\": 2793, \"clust\": 1062, \"rank\": 970, \"rankvar\": 1631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 33, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2255, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1330, \"group\": [1062.0, 473.0, 136.0, 38.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9652_BALBc-1_X01_Y01_1102_662\", \"ini\": 2792, \"clust\": 2418, \"rank\": 2084, \"rankvar\": 2121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 34, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1771, \"cat-2\": \"Density: 23\", \"cat_2_index\": 353, \"group\": [2418.0, 1005.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9706_BALBc-1_X01_Y01_1103_434\", \"ini\": 2791, \"clust\": 1043, \"rank\": 1436, \"rankvar\": 1948, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 35, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 955, \"cat-2\": \"Density: 27\", \"cat_2_index\": 860, \"group\": [1043.0, 463.0, 132.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10170_BALBc-1_X01_Y01_1108_899\", \"ini\": 2790, \"clust\": 2246, \"rank\": 1886, \"rankvar\": 2062, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 36, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 956, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1171, \"group\": [2245.0, 909.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10432_BALBc-1_X01_Y01_1111_474\", \"ini\": 2789, \"clust\": 1034, \"rank\": 1273, \"rankvar\": 2428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 37, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2343, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1331, \"group\": [1034.0, 455.0, 128.0, 35.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10617_BALBc-1_X01_Y01_1113_927\", \"ini\": 2788, \"clust\": 192, \"rank\": 750, \"rankvar\": 905, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 38, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1592, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1014, \"group\": [195.0, 96.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10619_BALBc-1_X01_Y01_1113_965\", \"ini\": 2787, \"clust\": 2607, \"rank\": 154, \"rankvar\": 1384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 39, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1593, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1457, \"group\": [2605.0, 1099.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10837_BALBc-1_X01_Y01_1116_858\", \"ini\": 2786, \"clust\": 2282, \"rank\": 2548, \"rankvar\": 2586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 40, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 734, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1015, \"group\": [2283.0, 929.0, 242.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11085_BALBc-1_X01_Y01_112_387\", \"ini\": 2785, \"clust\": 1572, \"rank\": 692, \"rankvar\": 362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 41, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 651, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1600, \"group\": [1576.0, 667.0, 179.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11633_BALBc-1_X01_Y01_1126_451\", \"ini\": 2784, \"clust\": 1707, \"rank\": 144, \"rankvar\": 377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 42, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2344, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1172, \"group\": [1710.0, 680.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11797_BALBc-1_X01_Y01_1128_484\", \"ini\": 2783, \"clust\": 1417, \"rank\": 990, \"rankvar\": 608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 43, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2345, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1458, \"group\": [1418.0, 588.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12372_BALBc-1_X01_Y01_1135_41\", \"ini\": 2782, \"clust\": 2472, \"rank\": 1422, \"rankvar\": 1994, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 44, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1594, \"cat-2\": \"Density: 16\", \"cat_2_index\": 47, \"group\": [2470.0, 1020.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12571_BALBc-1_X01_Y01_1137_963\", \"ini\": 2781, \"clust\": 2017, \"rank\": 975, \"rankvar\": 412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 45, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 0, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1173, \"group\": [2019.0, 797.0, 208.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12609_BALBc-1_X01_Y01_1138_500\", \"ini\": 2780, \"clust\": 1499, \"rank\": 397, \"rankvar\": 1939, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 46, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2346, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1459, \"group\": [1498.0, 629.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13081_BALBc-1_X01_Y01_1143_436\", \"ini\": 2779, \"clust\": 1069, \"rank\": 1667, \"rankvar\": 1745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 47, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 957, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1016, \"group\": [1069.0, 479.0, 139.0, 39.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13731_BALBc-1_X01_Y01_1150_998\", \"ini\": 2778, \"clust\": 2166, \"rank\": 2199, \"rankvar\": 2275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 48, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2347, \"cat-2\": \"Density: 26\", \"cat_2_index\": 715, \"group\": [2168.0, 860.0, 223.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13749_BALBc-1_X01_Y01_1151_281\", \"ini\": 2777, \"clust\": 1790, \"rank\": 70, \"rankvar\": 951, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 49, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2348, \"cat-2\": \"Density: 21\", \"cat_2_index\": 190, \"group\": [1791.0, 688.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13948_BALBc-1_X01_Y01_1153_833\", \"ini\": 2776, \"clust\": 2283, \"rank\": 2458, \"rankvar\": 2719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 50, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1689, \"cat-2\": \"Density: 26\", \"cat_2_index\": 716, \"group\": [2281.0, 929.0, 242.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14037_BALBc-1_X01_Y01_1154_869\", \"ini\": 2775, \"clust\": 2284, \"rank\": 2111, \"rankvar\": 2401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 51, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1595, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1332, \"group\": [2282.0, 929.0, 242.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14325_BALBc-1_X01_Y01_1158_916\", \"ini\": 2774, \"clust\": 571, \"rank\": 1840, \"rankvar\": 1272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 52, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 1, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1017, \"group\": [576.0, 241.0, 70.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14446_BALBc-1_X01_Y01_116_658\", \"ini\": 2773, \"clust\": 2064, \"rank\": 1069, \"rankvar\": 2037, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 53, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1772, \"cat-2\": \"Density: 27\", \"cat_2_index\": 861, \"group\": [2066.0, 821.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14698_BALBc-1_X01_Y01_1162_538\", \"ini\": 2772, \"clust\": 2327, \"rank\": 1957, \"rankvar\": 2344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 54, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1773, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1826, \"group\": [2327.0, 949.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14855_BALBc-1_X01_Y01_1164_480\", \"ini\": 2771, \"clust\": 2285, \"rank\": 1467, \"rankvar\": 666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 55, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2349, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1716, \"group\": [2303.0, 937.0, 244.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15062_BALBc-1_X01_Y01_1166_964\", \"ini\": 2770, \"clust\": 2533, \"rank\": 1116, \"rankvar\": 1167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 56, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2350, \"cat-2\": \"Density: 27\", \"cat_2_index\": 862, \"group\": [2533.0, 1056.0, 274.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15797_BALBc-1_X01_Y01_1175_906\", \"ini\": 2769, \"clust\": 2599, \"rank\": 879, \"rankvar\": 1178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 57, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 652, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1018, \"group\": [2600.0, 1097.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16293_BALBc-1_X01_Y01_1181_53\", \"ini\": 2768, \"clust\": 2211, \"rank\": 1577, \"rankvar\": 1171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 58, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1774, \"cat-2\": \"Density: 16\", \"cat_2_index\": 48, \"group\": [2214.0, 898.0, 234.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16370_BALBc-1_X01_Y01_1182_491\", \"ini\": 2767, \"clust\": 2735, \"rank\": 1933, \"rankvar\": 1809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 59, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1596, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1174, \"group\": [2733.0, 1178.0, 314.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16563_BALBc-1_X01_Y01_1184_941\", \"ini\": 2766, \"clust\": 1920, \"rank\": 1105, \"rankvar\": 1456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 60, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2351, \"cat-2\": \"Density: 27\", \"cat_2_index\": 863, \"group\": [1920.0, 737.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16691_BALBc-1_X01_Y01_1186_803\", \"ini\": 2765, \"clust\": 1631, \"rank\": 73, \"rankvar\": 68, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 61, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 735, \"cat-2\": \"Density: 25\", \"cat_2_index\": 592, \"group\": [1657.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17060_BALBc-1_X01_Y01_1190_820\", \"ini\": 2764, \"clust\": 79, \"rank\": 2780, \"rankvar\": 2796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 62, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 958, \"cat-2\": \"Density: 26\", \"cat_2_index\": 717, \"group\": [79.0, 50.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17493_BALBc-1_X01_Y01_1196_594\", \"ini\": 2763, \"clust\": 2231, \"rank\": 1818, \"rankvar\": 2536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 63, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1775, \"cat-2\": \"Density: 26\", \"cat_2_index\": 718, \"group\": [2229.0, 904.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17526_BALBc-1_X01_Y01_1196_998\", \"ini\": 2762, \"clust\": 1980, \"rank\": 1334, \"rankvar\": 1104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 64, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2352, \"cat-2\": \"Density: 26\", \"cat_2_index\": 719, \"group\": [1981.0, 776.0, 203.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17577_BALBc-1_X01_Y01_1197_786\", \"ini\": 2761, \"clust\": 1517, \"rank\": 1085, \"rankvar\": 2205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 65, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 736, \"cat-2\": \"Density: 24\", \"cat_2_index\": 469, \"group\": [1518.0, 639.0, 173.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17628_BALBc-1_X01_Y01_1198_413\", \"ini\": 2760, \"clust\": 2422, \"rank\": 2544, \"rankvar\": 2658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 66, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 959, \"cat-2\": \"Density: 26\", \"cat_2_index\": 720, \"group\": [2422.0, 1007.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18640_BALBc-1_X01_Y01_1209_127\", \"ini\": 2759, \"clust\": 2619, \"rank\": 1008, \"rankvar\": 1705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 67, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 960, \"cat-2\": \"Density: 20\", \"cat_2_index\": 137, \"group\": [2619.0, 1105.0, 287.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19476_BALBc-1_X01_Y01_1219_513\", \"ini\": 2758, \"clust\": 2265, \"rank\": 999, \"rankvar\": 1513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 68, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1776, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1019, \"group\": [2265.0, 922.0, 241.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19678_BALBc-1_X01_Y01_1221_169\", \"ini\": 2757, \"clust\": 2493, \"rank\": 2312, \"rankvar\": 2576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 69, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1690, \"cat-2\": \"Density: 22\", \"cat_2_index\": 251, \"group\": [2492.0, 1028.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19861_BALBc-1_X01_Y01_1223_430\", \"ini\": 2756, \"clust\": 2337, \"rank\": 2563, \"rankvar\": 2684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 70, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1597, \"cat-2\": \"Density: 27\", \"cat_2_index\": 864, \"group\": [2337.0, 951.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19879_BALBc-1_X01_Y01_1223_598\", \"ini\": 2755, \"clust\": 2713, \"rank\": 2478, \"rankvar\": 2704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 71, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2353, \"cat-2\": \"Density: 27\", \"cat_2_index\": 865, \"group\": [2711.0, 1164.0, 311.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20505_BALBc-1_X01_Y01_1230_928\", \"ini\": 2754, \"clust\": 2635, \"rank\": 566, \"rankvar\": 311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 72, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 653, \"cat-2\": \"Density: 25\", \"cat_2_index\": 593, \"group\": [2633.0, 1110.0, 288.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20820_BALBc-1_X01_Y01_1234_752\", \"ini\": 2753, \"clust\": 2316, \"rank\": 2598, \"rankvar\": 2655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 73, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 961, \"cat-2\": \"Density: 24\", \"cat_2_index\": 470, \"group\": [2317.0, 947.0, 247.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20832_BALBc-1_X01_Y01_1234_952\", \"ini\": 2752, \"clust\": 2232, \"rank\": 1668, \"rankvar\": 2599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 74, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2354, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1020, \"group\": [2230.0, 904.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21409_BALBc-1_X01_Y01_1241_777\", \"ini\": 2751, \"clust\": 2456, \"rank\": 1915, \"rankvar\": 2457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 75, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1777, \"cat-2\": \"Density: 24\", \"cat_2_index\": 471, \"group\": [2456.0, 1017.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21558_BALBc-1_X01_Y01_1243_856\", \"ini\": 2750, \"clust\": 1511, \"rank\": 417, \"rankvar\": 968, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 76, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 654, \"cat-2\": \"Density: 25\", \"cat_2_index\": 594, \"group\": [1512.0, 636.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21876_BALBc-1_X01_Y01_1248_400\", \"ini\": 2749, \"clust\": 2301, \"rank\": 1865, \"rankvar\": 1427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 77, \"cat-1\": \"Neighbor: CD3(+) other markers (-)\", \"cat_1_index\": 947, \"cat-2\": \"Density: 23\", \"cat_2_index\": 354, \"group\": [2300.0, 934.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22222_BALBc-1_X01_Y01_1251_971\", \"ini\": 2748, \"clust\": 1232, \"rank\": 616, \"rankvar\": 509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 78, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 737, \"cat-2\": \"Density: 27\", \"cat_2_index\": 866, \"group\": [1232.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22283_BALBc-1_X01_Y01_1252_608\", \"ini\": 2747, \"clust\": 2711, \"rank\": 2337, \"rankvar\": 2363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 79, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2355, \"cat-2\": \"Density: 23\", \"cat_2_index\": 355, \"group\": [2712.0, 1164.0, 311.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22370_BALBc-1_X01_Y01_1253_930\", \"ini\": 2746, \"clust\": 2368, \"rank\": 1358, \"rankvar\": 409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 80, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 738, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1021, \"group\": [2372.0, 974.0, 255.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22471_BALBc-1_X01_Y01_1255_479\", \"ini\": 2745, \"clust\": 2461, \"rank\": 2375, \"rankvar\": 2622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 81, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 739, \"cat-2\": \"Density: 27\", \"cat_2_index\": 867, \"group\": [2459.0, 1018.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22920_BALBc-1_X01_Y01_1260_756\", \"ini\": 2744, \"clust\": 2682, \"rank\": 1714, \"rankvar\": 616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 82, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 962, \"cat-2\": \"Density: 23\", \"cat_2_index\": 356, \"group\": [2686.0, 1143.0, 302.0, 75.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23720_BALBc-1_X01_Y01_1271_214\", \"ini\": 2743, \"clust\": 1623, \"rank\": 38, \"rankvar\": 389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 83, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1778, \"cat-2\": \"Density: 22\", \"cat_2_index\": 252, \"group\": [1627.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23748_BALBc-1_X01_Y01_1271_543\", \"ini\": 2742, \"clust\": 2439, \"rank\": 2207, \"rankvar\": 2545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 84, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2356, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1175, \"group\": [2439.0, 1013.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23973_BALBc-1_X01_Y01_1274_422\", \"ini\": 2741, \"clust\": 81, \"rank\": 2695, \"rankvar\": 2764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 85, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1779, \"cat-2\": \"Density: 22\", \"cat_2_index\": 253, \"group\": [96.0, 58.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24535_BALBc-1_X01_Y01_1281_350\", \"ini\": 2740, \"clust\": 1289, \"rank\": 558, \"rankvar\": 414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 86, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 963, \"cat-2\": \"Density: 20\", \"cat_2_index\": 138, \"group\": [1294.0, 567.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24998_BALBc-1_X01_Y01_1287_867\", \"ini\": 2739, \"clust\": 2707, \"rank\": 2088, \"rankvar\": 1306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 87, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 655, \"cat-2\": \"Density: 23\", \"cat_2_index\": 357, \"group\": [2707.0, 1161.0, 310.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25430_BALBc-1_X01_Y01_1292_741\", \"ini\": 2738, \"clust\": 2597, \"rank\": 398, \"rankvar\": 1256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 88, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1780, \"cat-2\": \"Density: 23\", \"cat_2_index\": 358, \"group\": [2597.0, 1096.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25531_BALBc-1_X01_Y01_1293_912\", \"ini\": 2737, \"clust\": 2249, \"rank\": 2101, \"rankvar\": 2307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 89, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1781, \"cat-2\": \"Density: 26\", \"cat_2_index\": 721, \"group\": [2247.0, 910.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25534_BALBc-1_X01_Y01_1293_926\", \"ini\": 2736, \"clust\": 2687, \"rank\": 2065, \"rankvar\": 1618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 90, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1782, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1333, \"group\": [2687.0, 1144.0, 303.0, 76.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25729_BALBc-1_X01_Y01_1296_850\", \"ini\": 2735, \"clust\": 1751, \"rank\": 16, \"rankvar\": 862, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 91, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1598, \"cat-2\": \"Density: 25\", \"cat_2_index\": 595, \"group\": [1752.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25779_BALBc-1_X01_Y01_1297_522\", \"ini\": 2734, \"clust\": 2758, \"rank\": 2575, \"rankvar\": 2653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 92, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1783, \"cat-2\": \"Density: 27\", \"cat_2_index\": 868, \"group\": [2758.0, 1192.0, 317.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26533_BALBc-1_X01_Y01_1306_107\", \"ini\": 2733, \"clust\": 2352, \"rank\": 830, \"rankvar\": 1613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 93, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 740, \"cat-2\": \"Density: 21\", \"cat_2_index\": 191, \"group\": [2351.0, 959.0, 250.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27126_BALBc-1_X01_Y01_1313_325\", \"ini\": 2732, \"clust\": 2256, \"rank\": 1155, \"rankvar\": 1890, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 94, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1784, \"cat-2\": \"Density: 23\", \"cat_2_index\": 359, \"group\": [2260.0, 918.0, 240.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27291_BALBc-1_X01_Y01_1315_624\", \"ini\": 2731, \"clust\": 2430, \"rank\": 2646, \"rankvar\": 2442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 95, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1785, \"cat-2\": \"Density: 24\", \"cat_2_index\": 472, \"group\": [2429.0, 1008.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27496_BALBc-1_X01_Y01_1318_358\", \"ini\": 2730, \"clust\": 2684, \"rank\": 2744, \"rankvar\": 2724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 96, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2473, \"cat-2\": \"Density: 23\", \"cat_2_index\": 360, \"group\": [2683.0, 1140.0, 301.0, 75.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27658_BALBc-1_X01_Y01_132_746\", \"ini\": 2729, \"clust\": 2576, \"rank\": 2029, \"rankvar\": 1539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 97, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2357, \"cat-2\": \"Density: 26\", \"cat_2_index\": 722, \"group\": [2575.0, 1077.0, 278.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27856_BALBc-1_X01_Y01_1322_539\", \"ini\": 2728, \"clust\": 2436, \"rank\": 1092, \"rankvar\": 1673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 98, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2256, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1022, \"group\": [2436.0, 1011.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27868_BALBc-1_X01_Y01_1322_716\", \"ini\": 2727, \"clust\": 2236, \"rank\": 2501, \"rankvar\": 2540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 99, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 741, \"cat-2\": \"Density: 25\", \"cat_2_index\": 596, \"group\": [2235.0, 905.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28466_BALBc-1_X01_Y01_1329_929\", \"ini\": 2726, \"clust\": 2169, \"rank\": 1877, \"rankvar\": 2479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 100, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1786, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1601, \"group\": [2170.0, 862.0, 223.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28618_BALBc-1_X01_Y01_1331_1005\", \"ini\": 2725, \"clust\": 74, \"rank\": 1690, \"rankvar\": 1564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 101, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1787, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1334, \"group\": [74.0, 46.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29005_BALBc-1_X01_Y01_1336_646\", \"ini\": 2724, \"clust\": 2419, \"rank\": 1975, \"rankvar\": 1587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 102, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1788, \"cat-2\": \"Density: 20\", \"cat_2_index\": 139, \"group\": [2420.0, 1006.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29014_BALBc-1_X01_Y01_1336_791\", \"ini\": 2723, \"clust\": 2217, \"rank\": 2306, \"rankvar\": 2647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 103, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2257, \"cat-2\": \"Density: 27\", \"cat_2_index\": 869, \"group\": [2250.0, 911.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29210_BALBc-1_X01_Y01_134_634\", \"ini\": 2722, \"clust\": 2454, \"rank\": 1977, \"rankvar\": 2601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 104, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1599, \"cat-2\": \"Density: 26\", \"cat_2_index\": 723, \"group\": [2452.0, 1017.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29734_BALBc-1_X01_Y01_140_392\", \"ini\": 2721, \"clust\": 2258, \"rank\": 1439, \"rankvar\": 1713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 105, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 742, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1602, \"group\": [2257.0, 917.0, 240.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30018_BALBc-1_X01_Y01_144_355\", \"ini\": 2720, \"clust\": 1573, \"rank\": 475, \"rankvar\": 1925, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 106, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 743, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1927, \"group\": [1575.0, 666.0, 179.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30053_BALBc-1_X01_Y01_144_841\", \"ini\": 2719, \"clust\": 171, \"rank\": 2707, \"rankvar\": 2738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 107, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1789, \"cat-2\": \"Density: 22\", \"cat_2_index\": 254, \"group\": [171.0, 80.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30398_BALBc-1_X01_Y01_149_544\", \"ini\": 2718, \"clust\": 1323, \"rank\": 104, \"rankvar\": 125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 108, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1790, \"cat-2\": \"Density: 23\", \"cat_2_index\": 361, \"group\": [1318.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30507_BALBc-1_X01_Y01_15_762\", \"ini\": 2717, \"clust\": 2295, \"rank\": 2343, \"rankvar\": 2390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 109, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 744, \"cat-2\": \"Density: 15\", \"cat_2_index\": 33, \"group\": [2292.0, 933.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30743_BALBc-1_X01_Y01_152_927\", \"ini\": 2716, \"clust\": 2312, \"rank\": 2357, \"rankvar\": 2131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 110, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1791, \"cat-2\": \"Density: 22\", \"cat_2_index\": 255, \"group\": [2313.0, 946.0, 247.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30803_BALBc-1_X01_Y01_153_644\", \"ini\": 2715, \"clust\": 2421, \"rank\": 2097, \"rankvar\": 1691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 111, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1792, \"cat-2\": \"Density: 26\", \"cat_2_index\": 724, \"group\": [2435.0, 1010.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31107_BALBc-1_X01_Y01_157_727\", \"ini\": 2714, \"clust\": 1899, \"rank\": 379, \"rankvar\": 252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 112, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2358, \"cat-2\": \"Density: 27\", \"cat_2_index\": 870, \"group\": [1898.0, 719.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32393_BALBc-1_X01_Y01_174_205\", \"ini\": 2713, \"clust\": 1342, \"rank\": 133, \"rankvar\": 624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 113, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2359, \"cat-2\": \"Density: 26\", \"cat_2_index\": 725, \"group\": [1339.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32406_BALBc-1_X01_Y01_174_446\", \"ini\": 2712, \"clust\": 2477, \"rank\": 1635, \"rankvar\": 2215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 114, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1793, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1335, \"group\": [2473.0, 1021.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32440_BALBc-1_X01_Y01_174_937\", \"ini\": 2711, \"clust\": 2486, \"rank\": 2381, \"rankvar\": 2587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 115, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2221, \"cat-2\": \"Density: 23\", \"cat_2_index\": 362, \"group\": [2491.0, 1027.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33321_BALBc-1_X01_Y01_185_828\", \"ini\": 2710, \"clust\": 2464, \"rank\": 2245, \"rankvar\": 2679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 116, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1691, \"cat-2\": \"Density: 23\", \"cat_2_index\": 363, \"group\": [2463.0, 1018.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34399_BALBc-1_X01_Y01_199_788\", \"ini\": 2709, \"clust\": 1866, \"rank\": 1045, \"rankvar\": 1707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 117, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2360, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1023, \"group\": [1867.0, 707.0, 183.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34469_BALBc-1_X01_Y01_20_606\", \"ini\": 2708, \"clust\": 173, \"rank\": 1505, \"rankvar\": 2120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 118, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1794, \"cat-2\": \"Density: 15\", \"cat_2_index\": 34, \"group\": [176.0, 85.0, 25.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34670_BALBc-1_X01_Y01_202_526\", \"ini\": 2707, \"clust\": 2224, \"rank\": 1386, \"rankvar\": 2186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 119, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 656, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1176, \"group\": [2222.0, 903.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34677_BALBc-1_X01_Y01_202_578\", \"ini\": 2706, \"clust\": 650, \"rank\": 1494, \"rankvar\": 858, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 120, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1795, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1177, \"group\": [657.0, 276.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34817_BALBc-1_X01_Y01_204_297\", \"ini\": 2705, \"clust\": 1087, \"rank\": 948, \"rankvar\": 1240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 121, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1692, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1336, \"group\": [1091.0, 493.0, 145.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34866_BALBc-1_X01_Y01_204_930\", \"ini\": 2704, \"clust\": 1420, \"rank\": 658, \"rankvar\": 752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 122, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2361, \"cat-2\": \"Density: 23\", \"cat_2_index\": 364, \"group\": [1420.0, 589.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35315_BALBc-1_X01_Y01_210_142\", \"ini\": 2703, \"clust\": 2750, \"rank\": 2402, \"rankvar\": 2610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 123, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1796, \"cat-2\": \"Density: 23\", \"cat_2_index\": 365, \"group\": [2753.0, 1187.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35570_BALBc-1_X01_Y01_213_684\", \"ini\": 2702, \"clust\": 2319, \"rank\": 2809, \"rankvar\": 2705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 124, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1797, \"cat-2\": \"Density: 26\", \"cat_2_index\": 726, \"group\": [2320.0, 947.0, 247.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35785_BALBc-1_X01_Y01_216_442\", \"ini\": 2701, \"clust\": 1926, \"rank\": 462, \"rankvar\": 1635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 125, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1798, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1603, \"group\": [1924.0, 739.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36633_BALBc-1_X01_Y01_227_305\", \"ini\": 2700, \"clust\": 2495, \"rank\": 2102, \"rankvar\": 2021, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 126, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1534, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1337, \"group\": [2496.0, 1029.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36710_BALBc-1_X01_Y01_228_469\", \"ini\": 2699, \"clust\": 2596, \"rank\": 294, \"rankvar\": 132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 127, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1799, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1178, \"group\": [2599.0, 1096.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36780_BALBc-1_X01_Y01_229_278\", \"ini\": 2698, \"clust\": 2053, \"rank\": 583, \"rankvar\": 1120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 128, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1535, \"cat-2\": \"Density: 23\", \"cat_2_index\": 366, \"group\": [2052.0, 809.0, 210.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37147_BALBc-1_X01_Y01_233_345\", \"ini\": 2697, \"clust\": 2481, \"rank\": 1307, \"rankvar\": 1850, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 129, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 964, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1338, \"group\": [2482.0, 1025.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37192_BALBc-1_X01_Y01_233_984\", \"ini\": 2696, \"clust\": 2570, \"rank\": 2431, \"rankvar\": 2338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 130, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2222, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1024, \"group\": [2572.0, 1074.0, 277.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37390_BALBc-1_X01_Y01_236_829\", \"ini\": 2695, \"clust\": 2192, \"rank\": 2051, \"rankvar\": 2450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 131, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1693, \"cat-2\": \"Density: 27\", \"cat_2_index\": 871, \"group\": [2192.0, 879.0, 229.0, 58.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37665_BALBc-1_X01_Y01_24_582\", \"ini\": 2694, \"clust\": 2253, \"rank\": 1543, \"rankvar\": 1682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 132, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1800, \"cat-2\": \"Density: 14\", \"cat_2_index\": 26, \"group\": [2254.0, 914.0, 238.0, 60.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38087_BALBc-1_X01_Y01_245_436\", \"ini\": 2693, \"clust\": 1274, \"rank\": 682, \"rankvar\": 418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 133, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2362, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1604, \"group\": [1273.0, 558.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38121_BALBc-1_X01_Y01_245_812\", \"ini\": 2692, \"clust\": 1901, \"rank\": 657, \"rankvar\": 1841, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 134, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2363, \"cat-2\": \"Density: 27\", \"cat_2_index\": 872, \"group\": [1902.0, 722.0, 185.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38523_BALBc-1_X01_Y01_250_505\", \"ini\": 2691, \"clust\": 1649, \"rank\": 95, \"rankvar\": 49, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 135, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1801, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1025, \"group\": [1652.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38805_BALBc-1_X01_Y01_253_960\", \"ini\": 2690, \"clust\": 1445, \"rank\": 280, \"rankvar\": 933, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 136, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2474, \"cat-2\": \"Density: 26\", \"cat_2_index\": 727, \"group\": [1446.0, 605.0, 163.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38981_BALBc-1_X01_Y01_256_369\", \"ini\": 2689, \"clust\": 1589, \"rank\": 90, \"rankvar\": 232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 137, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2364, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1460, \"group\": [1588.0, 673.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39031_BALBc-1_X01_Y01_256_980\", \"ini\": 2688, \"clust\": 2507, \"rank\": 2687, \"rankvar\": 2467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 138, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1802, \"cat-2\": \"Density: 26\", \"cat_2_index\": 728, \"group\": [2507.0, 1037.0, 269.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39262_BALBc-1_X01_Y01_26_273\", \"ini\": 2687, \"clust\": 2731, \"rank\": 2777, \"rankvar\": 2756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 139, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1803, \"cat-2\": \"Density: 17\", \"cat_2_index\": 68, \"group\": [2731.0, 1176.0, 314.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39659_BALBc-1_X01_Y01_264_554\", \"ini\": 2686, \"clust\": 586, \"rank\": 1923, \"rankvar\": 1470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 140, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1694, \"cat-2\": \"Density: 27\", \"cat_2_index\": 873, \"group\": [587.0, 248.0, 72.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39807_BALBc-1_X01_Y01_266_477\", \"ini\": 2685, \"clust\": 2732, \"rank\": 2735, \"rankvar\": 2535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 141, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1695, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1605, \"group\": [2729.0, 1176.0, 314.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39811_BALBc-1_X01_Y01_266_516\", \"ini\": 2684, \"clust\": 2776, \"rank\": 2371, \"rankvar\": 2437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 142, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1696, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1179, \"group\": [2787.0, 1204.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40558_BALBc-1_X01_Y01_275_814\", \"ini\": 2683, \"clust\": 2197, \"rank\": 1790, \"rankvar\": 569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 143, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2365, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1180, \"group\": [2198.0, 885.0, 231.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41204_BALBc-1_X01_Y01_283_369\", \"ini\": 2682, \"clust\": 2276, \"rank\": 2783, \"rankvar\": 2763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 144, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 965, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1181, \"group\": [2276.0, 927.0, 242.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41354_BALBc-1_X01_Y01_285_575\", \"ini\": 2681, \"clust\": 2443, \"rank\": 1202, \"rankvar\": 2190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 145, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1804, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1606, \"group\": [2445.0, 1013.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41940_BALBc-1_X01_Y01_292_456\", \"ini\": 2680, \"clust\": 2450, \"rank\": 2228, \"rankvar\": 1952, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 146, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1697, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1928, \"group\": [2449.0, 1016.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41976_BALBc-1_X01_Y01_292_937\", \"ini\": 2679, \"clust\": 1520, \"rank\": 1054, \"rankvar\": 1387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 147, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1805, \"cat-2\": \"Density: 27\", \"cat_2_index\": 874, \"group\": [1523.0, 641.0, 174.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42301_BALBc-1_X01_Y01_297_556\", \"ini\": 2678, \"clust\": 746, \"rank\": 2461, \"rankvar\": 1884, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 148, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1698, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1461, \"group\": [749.0, 307.0, 86.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42630_BALBc-1_X01_Y01_300_775\", \"ini\": 2677, \"clust\": 2355, \"rank\": 993, \"rankvar\": 1345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 149, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2366, \"cat-2\": \"Density: 25\", \"cat_2_index\": 597, \"group\": [2355.0, 962.0, 251.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42740_BALBc-1_X01_Y01_302_128\", \"ini\": 2676, \"clust\": 2632, \"rank\": 763, \"rankvar\": 970, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 150, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1600, \"cat-2\": \"Density: 22\", \"cat_2_index\": 256, \"group\": [2631.0, 1109.0, 288.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43040_BALBc-1_X01_Y01_306_364\", \"ini\": 2675, \"clust\": 2556, \"rank\": 2534, \"rankvar\": 2443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 151, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 966, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1717, \"group\": [2557.0, 1067.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43178_BALBc-1_X01_Y01_308_412\", \"ini\": 2674, \"clust\": 2425, \"rank\": 2746, \"rankvar\": 2594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 152, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2367, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2136, \"group\": [2424.0, 1007.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43217_BALBc-1_X01_Y01_308_969\", \"ini\": 2673, \"clust\": 1902, \"rank\": 912, \"rankvar\": 845, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 153, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2475, \"cat-2\": \"Density: 27\", \"cat_2_index\": 875, \"group\": [1903.0, 723.0, 185.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43287_BALBc-1_X01_Y01_309_987\", \"ini\": 2672, \"clust\": 2661, \"rank\": 2760, \"rankvar\": 2716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 154, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2476, \"cat-2\": \"Density: 27\", \"cat_2_index\": 876, \"group\": [2663.0, 1130.0, 297.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43697_BALBc-1_X01_Y01_314_444\", \"ini\": 2671, \"clust\": 2511, \"rank\": 2363, \"rankvar\": 1632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 155, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 2, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2218, \"group\": [2510.0, 1040.0, 269.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43943_BALBc-1_X01_Y01_317_804\", \"ini\": 2670, \"clust\": 1921, \"rank\": 1310, \"rankvar\": 1941, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 156, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2368, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1339, \"group\": [1921.0, 737.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44052_BALBc-1_X01_Y01_318_913\", \"ini\": 2669, \"clust\": 1537, \"rank\": 165, \"rankvar\": 1121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 157, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2258, \"cat-2\": \"Density: 26\", \"cat_2_index\": 729, \"group\": [1538.0, 648.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44139_BALBc-1_X01_Y01_32_289\", \"ini\": 2668, \"clust\": 1006, \"rank\": 1757, \"rankvar\": 2593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 158, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1806, \"cat-2\": \"Density: 18\", \"cat_2_index\": 87, \"group\": [1007.0, 431.0, 121.0, 33.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44170_BALBc-1_X01_Y01_32_755\", \"ini\": 2667, \"clust\": 549, \"rank\": 1994, \"rankvar\": 1607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 159, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 745, \"cat-2\": \"Density: 16\", \"cat_2_index\": 49, \"group\": [551.0, 224.0, 65.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44230_BALBc-1_X01_Y01_320_524\", \"ini\": 2666, \"clust\": 2789, \"rank\": 2727, \"rankvar\": 2717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 160, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1699, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1462, \"group\": [2790.0, 1206.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44536_BALBc-1_X01_Y01_324_441\", \"ini\": 2665, \"clust\": 2346, \"rank\": 701, \"rankvar\": 2166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 161, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2369, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2363, \"group\": [2345.0, 956.0, 249.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44775_BALBc-1_X01_Y01_327_457\", \"ini\": 2664, \"clust\": 2616, \"rank\": 553, \"rankvar\": 551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 162, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2370, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2364, \"group\": [2615.0, 1103.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45547_BALBc-1_X01_Y01_336_358\", \"ini\": 2663, \"clust\": 1385, \"rank\": 873, \"rankvar\": 1530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 163, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 657, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1607, \"group\": [1389.0, 581.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45620_BALBc-1_X01_Y01_337_515\", \"ini\": 2662, \"clust\": 2332, \"rank\": 1461, \"rankvar\": 2093, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 164, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 967, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2042, \"group\": [2330.0, 949.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45792_BALBc-1_X01_Y01_339_781\", \"ini\": 2661, \"clust\": 1532, \"rank\": 848, \"rankvar\": 1338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 165, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2259, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1463, \"group\": [1532.0, 646.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46150_BALBc-1_X01_Y01_343_551\", \"ini\": 2660, \"clust\": 2478, \"rank\": 1634, \"rankvar\": 2694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 166, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 968, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1182, \"group\": [2474.0, 1021.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46164_BALBc-1_X01_Y01_343_747\", \"ini\": 2659, \"clust\": 2751, \"rank\": 2415, \"rankvar\": 2645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 167, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1807, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1026, \"group\": [2752.0, 1187.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46255_BALBc-1_X01_Y01_344_899\", \"ini\": 2658, \"clust\": 2338, \"rank\": 2719, \"rankvar\": 2734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 168, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1808, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1183, \"group\": [2338.0, 951.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46297_BALBc-1_X01_Y01_345_451\", \"ini\": 2657, \"clust\": 2475, \"rank\": 1382, \"rankvar\": 1740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 169, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2371, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2137, \"group\": [2476.0, 1021.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46315_BALBc-1_X01_Y01_345_681\", \"ini\": 2656, \"clust\": 1643, \"rank\": 63, \"rankvar\": 18, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 170, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2260, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1027, \"group\": [1647.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46829_BALBc-1_X01_Y01_351_348\", \"ini\": 2655, \"clust\": 2451, \"rank\": 2299, \"rankvar\": 2499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 171, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 969, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1608, \"group\": [2450.0, 1016.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46843_BALBc-1_X01_Y01_351_600\", \"ini\": 2654, \"clust\": 2426, \"rank\": 2806, \"rankvar\": 2699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 172, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1809, \"cat-2\": \"Density: 25\", \"cat_2_index\": 598, \"group\": [2425.0, 1007.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46930_BALBc-1_X01_Y01_352_655\", \"ini\": 2653, \"clust\": 1088, \"rank\": 742, \"rankvar\": 457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 173, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1810, \"cat-2\": \"Density: 23\", \"cat_2_index\": 367, \"group\": [1090.0, 492.0, 145.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47025_BALBc-1_X01_Y01_353_977\", \"ini\": 2652, \"clust\": 2571, \"rank\": 1722, \"rankvar\": 2630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 174, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2223, \"cat-2\": \"Density: 26\", \"cat_2_index\": 730, \"group\": [2570.0, 1073.0, 277.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47116_BALBc-1_X01_Y01_355_165\", \"ini\": 2651, \"clust\": 2438, \"rank\": 1616, \"rankvar\": 2444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 175, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1700, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1028, \"group\": [2448.0, 1015.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47124_BALBc-1_X01_Y01_355_25\", \"ini\": 2650, \"clust\": 1538, \"rank\": 295, \"rankvar\": 521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 176, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1811, \"cat-2\": \"Density: 13\", \"cat_2_index\": 11, \"group\": [1539.0, 648.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47290_BALBc-1_X01_Y01_357_393\", \"ini\": 2649, \"clust\": 2452, \"rank\": 1277, \"rankvar\": 2150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 177, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 658, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1929, \"group\": [2458.0, 1017.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48026_BALBc-1_X01_Y01_366_429\", \"ini\": 2648, \"clust\": 2482, \"rank\": 1148, \"rankvar\": 2171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 178, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2372, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1930, \"group\": [2483.0, 1026.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48028_BALBc-1_X01_Y01_366_461\", \"ini\": 2647, \"clust\": 1482, \"rank\": 470, \"rankvar\": 282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 179, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1601, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1931, \"group\": [1483.0, 627.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48335_BALBc-1_X01_Y01_37_313\", \"ini\": 2646, \"clust\": 2433, \"rank\": 2689, \"rankvar\": 2766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 180, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 746, \"cat-2\": \"Density: 23\", \"cat_2_index\": 368, \"group\": [2431.0, 1008.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48557_BALBc-1_X01_Y01_372_492\", \"ini\": 2645, \"clust\": 1306, \"rank\": 529, \"rankvar\": 394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 181, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 970, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2138, \"group\": [1310.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48582_BALBc-1_X01_Y01_372_692\", \"ini\": 2644, \"clust\": 2278, \"rank\": 2823, \"rankvar\": 2795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 182, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2373, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1340, \"group\": [2279.0, 928.0, 242.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48853_BALBc-1_X01_Y01_376_314\", \"ini\": 2643, \"clust\": 2483, \"rank\": 2738, \"rankvar\": 2703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 971, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1184, \"group\": [2486.0, 1027.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49055_BALBc-1_X01_Y01_378_862\", \"ini\": 2642, \"clust\": 114, \"rank\": 2010, \"rankvar\": 1908, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 184, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2261, \"cat-2\": \"Density: 27\", \"cat_2_index\": 877, \"group\": [116.0, 67.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49397_BALBc-1_X01_Y01_382_422\", \"ini\": 2641, \"clust\": 2213, \"rank\": 1431, \"rankvar\": 1591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 185, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 659, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2043, \"group\": [2213.0, 897.0, 234.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49496_BALBc-1_X01_Y01_383_563\", \"ini\": 2640, \"clust\": 2313, \"rank\": 2275, \"rankvar\": 2518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 186, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 972, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1464, \"group\": [2314.0, 946.0, 247.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50108_BALBc-1_X01_Y01_390_456\", \"ini\": 2639, \"clust\": 1870, \"rank\": 796, \"rankvar\": 792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 187, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1602, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2044, \"group\": [1871.0, 709.0, 183.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50236_BALBc-1_X01_Y01_392_183\", \"ini\": 2638, \"clust\": 2729, \"rank\": 2447, \"rankvar\": 2271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 188, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1812, \"cat-2\": \"Density: 27\", \"cat_2_index\": 878, \"group\": [2727.0, 1176.0, 314.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50329_BALBc-1_X01_Y01_393_436\", \"ini\": 2637, \"clust\": 2560, \"rank\": 2037, \"rankvar\": 2666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 189, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 3, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2139, \"group\": [2564.0, 1068.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50622_BALBc-1_X01_Y01_397_212\", \"ini\": 2636, \"clust\": 2342, \"rank\": 927, \"rankvar\": 2077, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 190, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1701, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1029, \"group\": [2340.0, 953.0, 249.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50633_BALBc-1_X01_Y01_397_371\", \"ini\": 2635, \"clust\": 2462, \"rank\": 2107, \"rankvar\": 2332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 191, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 660, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2219, \"group\": [2460.0, 1018.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50940_BALBc-1_X01_Y01_40_516\", \"ini\": 2634, \"clust\": 2727, \"rank\": 2699, \"rankvar\": 2708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 192, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2374, \"cat-2\": \"Density: 22\", \"cat_2_index\": 257, \"group\": [2726.0, 1175.0, 314.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50944_BALBc-1_X01_Y01_40_562\", \"ini\": 2633, \"clust\": 1867, \"rank\": 445, \"rankvar\": 1796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 193, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1813, \"cat-2\": \"Density: 19\", \"cat_2_index\": 112, \"group\": [1868.0, 707.0, 183.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51105_BALBc-1_X01_Y01_401_748\", \"ini\": 2632, \"clust\": 2310, \"rank\": 2170, \"rankvar\": 2101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 194, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2375, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1030, \"group\": [2311.0, 945.0, 247.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51247_BALBc-1_X01_Y01_403_851\", \"ini\": 2631, \"clust\": 2654, \"rank\": 1268, \"rankvar\": 2516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 195, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2262, \"cat-2\": \"Density: 27\", \"cat_2_index\": 879, \"group\": [2653.0, 1124.0, 293.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51412_BALBc-1_X01_Y01_405_776\", \"ini\": 2630, \"clust\": 2324, \"rank\": 2607, \"rankvar\": 2731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 196, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2263, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1718, \"group\": [2325.0, 948.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51444_BALBc-1_X01_Y01_406_240\", \"ini\": 2629, \"clust\": 2378, \"rank\": 852, \"rankvar\": 1251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 197, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2376, \"cat-2\": \"Density: 25\", \"cat_2_index\": 599, \"group\": [2379.0, 977.0, 256.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51463_BALBc-1_X01_Y01_406_433\", \"ini\": 2628, \"clust\": 2484, \"rank\": 2747, \"rankvar\": 2774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 198, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 661, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1719, \"group\": [2484.0, 1027.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51525_BALBc-1_X01_Y01_407_279\", \"ini\": 2627, \"clust\": 2440, \"rank\": 2561, \"rankvar\": 2562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 199, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 662, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1341, \"group\": [2440.0, 1013.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51947_BALBc-1_X01_Y01_411_566\", \"ini\": 2626, \"clust\": 2388, \"rank\": 534, \"rankvar\": 866, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 200, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2377, \"cat-2\": \"Density: 27\", \"cat_2_index\": 880, \"group\": [2389.0, 983.0, 258.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51995_BALBc-1_X01_Y01_412_107\", \"ini\": 2625, \"clust\": 2303, \"rank\": 1517, \"rankvar\": 2416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 201, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1814, \"cat-2\": \"Density: 23\", \"cat_2_index\": 369, \"group\": [2306.0, 940.0, 245.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52220_BALBc-1_X01_Y01_414_632\", \"ini\": 2624, \"clust\": 2412, \"rank\": 2068, \"rankvar\": 1999, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 202, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2378, \"cat-2\": \"Density: 27\", \"cat_2_index\": 881, \"group\": [2411.0, 999.0, 264.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52340_BALBc-1_X01_Y01_416_366\", \"ini\": 2623, \"clust\": 1489, \"rank\": 141, \"rankvar\": 2114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 203, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2501, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1932, \"group\": [1487.0, 628.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52585_BALBc-1_X01_Y01_419_56\", \"ini\": 2622, \"clust\": 2444, \"rank\": 1811, \"rankvar\": 2485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 204, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1815, \"cat-2\": \"Density: 19\", \"cat_2_index\": 113, \"group\": [2443.0, 1013.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53186_BALBc-1_X01_Y01_426_497\", \"ini\": 2621, \"clust\": 2721, \"rank\": 2568, \"rankvar\": 2218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 205, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1816, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1827, \"group\": [2720.0, 1171.0, 313.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53439_BALBc-1_X01_Y01_429_519\", \"ini\": 2620, \"clust\": 1513, \"rank\": 440, \"rankvar\": 1217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 206, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1817, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1465, \"group\": [1514.0, 637.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53460_BALBc-1_X01_Y01_429_728\", \"ini\": 2619, \"clust\": 1533, \"rank\": 409, \"rankvar\": 224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 207, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2379, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1720, \"group\": [1537.0, 647.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54293_BALBc-1_X01_Y01_439_281\", \"ini\": 2618, \"clust\": 2504, \"rank\": 1905, \"rankvar\": 2132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 208, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1603, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1609, \"group\": [2500.0, 1032.0, 268.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54995_BALBc-1_X01_Y01_447_636\", \"ini\": 2617, \"clust\": 2320, \"rank\": 963, \"rankvar\": 2236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 209, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2380, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1031, \"group\": [2324.0, 948.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55049_BALBc-1_X01_Y01_448_341\", \"ini\": 2616, \"clust\": 172, \"rank\": 2210, \"rankvar\": 2147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 210, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 663, \"cat-2\": \"Density: 27\", \"cat_2_index\": 882, \"group\": [172.0, 81.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55837_BALBc-1_X01_Y01_457_685\", \"ini\": 2615, \"clust\": 1741, \"rank\": 67, \"rankvar\": 119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 211, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2381, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1933, \"group\": [1743.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55843_BALBc-1_X01_Y01_457_714\", \"ini\": 2614, \"clust\": 1458, \"rank\": 719, \"rankvar\": 747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 212, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2382, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1828, \"group\": [1461.0, 611.0, 164.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56224_BALBc-1_X01_Y01_461_819\", \"ini\": 2613, \"clust\": 2567, \"rank\": 1719, \"rankvar\": 1658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 213, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1818, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1342, \"group\": [2578.0, 1079.0, 279.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56566_BALBc-1_X01_Y01_466_376\", \"ini\": 2612, \"clust\": 2385, \"rank\": 674, \"rankvar\": 1507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 214, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 664, \"cat-2\": \"Density: 27\", \"cat_2_index\": 883, \"group\": [2388.0, 982.0, 258.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56664_BALBc-1_X01_Y01_467_502\", \"ini\": 2611, \"clust\": 1281, \"rank\": 368, \"rankvar\": 109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 215, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2383, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1466, \"group\": [1280.0, 561.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56683_BALBc-1_X01_Y01_467_748\", \"ini\": 2610, \"clust\": 1259, \"rank\": 232, \"rankvar\": 440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 216, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 973, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1829, \"group\": [1256.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56772_BALBc-1_X01_Y01_468_926\", \"ini\": 2609, \"clust\": 2322, \"rank\": 1384, \"rankvar\": 2438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 217, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 891, \"cat-2\": \"Density: 25\", \"cat_2_index\": 600, \"group\": [2321.0, 948.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56830_BALBc-1_X01_Y01_469_709\", \"ini\": 2608, \"clust\": 2401, \"rank\": 2392, \"rankvar\": 2580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 218, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 974, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1830, \"group\": [2401.0, 992.0, 261.0, 65.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57728_BALBc-1_X01_Y01_48_342\", \"ini\": 2607, \"clust\": 2271, \"rank\": 1657, \"rankvar\": 2358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 219, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2384, \"cat-2\": \"Density: 25\", \"cat_2_index\": 601, \"group\": [2271.0, 924.0, 241.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57798_BALBc-1_X01_Y01_480_352\", \"ini\": 2606, \"clust\": 1896, \"rank\": 311, \"rankvar\": 383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 220, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2385, \"cat-2\": \"Density: 27\", \"cat_2_index\": 884, \"group\": [1896.0, 718.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57888_BALBc-1_X01_Y01_481_332\", \"ini\": 2605, \"clust\": 2736, \"rank\": 2201, \"rankvar\": 2245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 221, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 975, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1032, \"group\": [2734.0, 1179.0, 314.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58066_BALBc-1_X01_Y01_483_751\", \"ini\": 2604, \"clust\": 2267, \"rank\": 1489, \"rankvar\": 1762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 222, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 976, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1610, \"group\": [2267.0, 923.0, 241.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58300_BALBc-1_X01_Y01_486_59\", \"ini\": 2603, \"clust\": 1894, \"rank\": 459, \"rankvar\": 640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 223, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2224, \"cat-2\": \"Density: 17\", \"cat_2_index\": 69, \"group\": [1897.0, 718.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58405_BALBc-1_X01_Y01_487_989\", \"ini\": 2602, \"clust\": 2434, \"rank\": 2731, \"rankvar\": 2751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 224, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1819, \"cat-2\": \"Density: 22\", \"cat_2_index\": 258, \"group\": [2432.0, 1008.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58769_BALBc-1_X01_Y01_491_835\", \"ini\": 2601, \"clust\": 2577, \"rank\": 2268, \"rankvar\": 2377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 225, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2386, \"cat-2\": \"Density: 25\", \"cat_2_index\": 602, \"group\": [2576.0, 1077.0, 278.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59185_BALBc-1_X01_Y01_496_860\", \"ini\": 2600, \"clust\": 2771, \"rank\": 2429, \"rankvar\": 2802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 226, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2387, \"cat-2\": \"Density: 22\", \"cat_2_index\": 259, \"group\": [2770.0, 1198.0, 319.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59663_BALBc-1_X01_Y01_501_885\", \"ini\": 2599, \"clust\": 2297, \"rank\": 2632, \"rankvar\": 2714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 227, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2388, \"cat-2\": \"Density: 23\", \"cat_2_index\": 370, \"group\": [2294.0, 933.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59817_BALBc-1_X01_Y01_504_173\", \"ini\": 2598, \"clust\": 2379, \"rank\": 589, \"rankvar\": 883, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 228, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1820, \"cat-2\": \"Density: 26\", \"cat_2_index\": 731, \"group\": [2380.0, 977.0, 256.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60154_BALBc-1_X01_Y01_508_261\", \"ini\": 2597, \"clust\": 985, \"rank\": 2789, \"rankvar\": 2816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 229, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1821, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1185, \"group\": [986.0, 415.0, 115.0, 31.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60544_BALBc-1_X01_Y01_512_387\", \"ini\": 2596, \"clust\": 1512, \"rank\": 253, \"rankvar\": 831, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 230, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2806, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1033, \"group\": [1513.0, 636.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61293_BALBc-1_X01_Y01_520_799\", \"ini\": 2595, \"clust\": 76, \"rank\": 2225, \"rankvar\": 2745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 231, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 977, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1034, \"group\": [77.0, 49.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61360_BALBc-1_X01_Y01_521_696\", \"ini\": 2594, \"clust\": 2689, \"rank\": 2418, \"rankvar\": 2394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 232, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 978, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1721, \"group\": [2691.0, 1148.0, 305.0, 76.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61696_BALBc-1_X01_Y01_525_94\", \"ini\": 2593, \"clust\": 2180, \"rank\": 708, \"rankvar\": 1509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 233, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2225, \"cat-2\": \"Density: 18\", \"cat_2_index\": 88, \"group\": [2183.0, 871.0, 226.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62336_BALBc-1_X01_Y01_533_397\", \"ini\": 2592, \"clust\": 1443, \"rank\": 1324, \"rankvar\": 2278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 234, \"cat-1\": \"Neighbor: plasma cells\", \"cat_1_index\": 2824, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1186, \"group\": [1444.0, 603.0, 162.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62423_BALBc-1_X01_Y01_534_722\", \"ini\": 2591, \"clust\": 1539, \"rank\": 523, \"rankvar\": 1276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 235, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 979, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1831, \"group\": [1545.0, 648.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62444_BALBc-1_X01_Y01_534_959\", \"ini\": 2590, \"clust\": 2250, \"rank\": 2028, \"rankvar\": 2466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 236, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 892, \"cat-2\": \"Density: 25\", \"cat_2_index\": 603, \"group\": [2248.0, 910.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63078_BALBc-1_X01_Y01_542_700\", \"ini\": 2589, \"clust\": 557, \"rank\": 2792, \"rankvar\": 2789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 237, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2389, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1832, \"group\": [562.0, 234.0, 68.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63087_BALBc-1_X01_Y01_542_797\", \"ini\": 2588, \"clust\": 584, \"rank\": 2602, \"rankvar\": 2713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 238, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 980, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1035, \"group\": [585.0, 247.0, 72.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63522_BALBc-1_X01_Y01_547_973\", \"ini\": 2587, \"clust\": 1660, \"rank\": 134, \"rankvar\": 176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 239, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1822, \"cat-2\": \"Density: 26\", \"cat_2_index\": 732, \"group\": [1660.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63778_BALBc-1_X01_Y01_550_157\", \"ini\": 2586, \"clust\": 2376, \"rank\": 289, \"rankvar\": 1863, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 240, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1823, \"cat-2\": \"Density: 24\", \"cat_2_index\": 473, \"group\": [2377.0, 977.0, 256.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63964_BALBc-1_X01_Y01_552_62\", \"ini\": 2585, \"clust\": 2314, \"rank\": 2761, \"rankvar\": 2798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 241, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1824, \"cat-2\": \"Density: 15\", \"cat_2_index\": 35, \"group\": [2315.0, 947.0, 247.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64005_BALBc-1_X01_Y01_553_25\", \"ini\": 2584, \"clust\": 1885, \"rank\": 308, \"rankvar\": 456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 242, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2226, \"cat-2\": \"Density: 10\", \"cat_2_index\": 2, \"group\": [1886.0, 718.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64010_BALBc-1_X01_Y01_553_292\", \"ini\": 2583, \"clust\": 1574, \"rank\": 393, \"rankvar\": 1853, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 243, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1825, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1036, \"group\": [1573.0, 666.0, 179.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65182_BALBc-1_X01_Y01_567_223\", \"ini\": 2582, \"clust\": 2496, \"rank\": 2122, \"rankvar\": 2405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 244, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2264, \"cat-2\": \"Density: 25\", \"cat_2_index\": 604, \"group\": [2497.0, 1029.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65656_BALBc-1_X01_Y01_572_784\", \"ini\": 2581, \"clust\": 2453, \"rank\": 1566, \"rankvar\": 2081, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 245, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 981, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1187, \"group\": [2457.0, 1017.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66746_BALBc-1_X01_Y01_586_262\", \"ini\": 2580, \"clust\": 1708, \"rank\": 84, \"rankvar\": 344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 246, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2265, \"cat-2\": \"Density: 25\", \"cat_2_index\": 605, \"group\": [1708.0, 680.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66807_BALBc-1_X01_Y01_586_921\", \"ini\": 2579, \"clust\": 2220, \"rank\": 2618, \"rankvar\": 2546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 247, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 747, \"cat-2\": \"Density: 24\", \"cat_2_index\": 474, \"group\": [2219.0, 901.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67268_BALBc-1_X01_Y01_591_693\", \"ini\": 2578, \"clust\": 550, \"rank\": 2297, \"rankvar\": 1558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 248, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2390, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1833, \"group\": [549.0, 222.0, 65.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67677_BALBc-1_X01_Y01_596_954\", \"ini\": 2577, \"clust\": 2400, \"rank\": 1608, \"rankvar\": 1703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 249, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 982, \"cat-2\": \"Density: 22\", \"cat_2_index\": 260, \"group\": [2403.0, 993.0, 261.0, 65.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68075_BALBc-1_X01_Y01_600_937\", \"ini\": 2576, \"clust\": 2396, \"rank\": 1651, \"rankvar\": 1840, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 250, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 983, \"cat-2\": \"Density: 23\", \"cat_2_index\": 371, \"group\": [2397.0, 990.0, 260.0, 65.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68258_BALBc-1_X01_Y01_603_416\", \"ini\": 2575, \"clust\": 2565, \"rank\": 2517, \"rankvar\": 2722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 251, \"cat-1\": \"Neighbor: plasma cells\", \"cat_1_index\": 2825, \"cat-2\": \"Density: 26\", \"cat_2_index\": 733, \"group\": [2565.0, 1069.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68390_BALBc-1_X01_Y01_605_263\", \"ini\": 2574, \"clust\": 1917, \"rank\": 1918, \"rankvar\": 2478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 252, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 748, \"cat-2\": \"Density: 26\", \"cat_2_index\": 734, \"group\": [1939.0, 746.0, 191.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68460_BALBc-1_X01_Y01_605_972\", \"ini\": 2573, \"clust\": 2158, \"rank\": 1366, \"rankvar\": 1934, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 253, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 984, \"cat-2\": \"Density: 23\", \"cat_2_index\": 372, \"group\": [2158.0, 856.0, 222.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68786_BALBc-1_X01_Y01_609_707\", \"ini\": 2572, \"clust\": 2189, \"rank\": 986, \"rankvar\": 1752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 254, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2391, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1722, \"group\": [2188.0, 876.0, 228.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69393_BALBc-1_X01_Y01_616_802\", \"ini\": 2571, \"clust\": 2304, \"rank\": 2256, \"rankvar\": 2526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 255, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 985, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1037, \"group\": [2304.0, 938.0, 245.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69452_BALBc-1_X01_Y01_617_654\", \"ini\": 2570, \"clust\": 2266, \"rank\": 1197, \"rankvar\": 1778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 256, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2392, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1467, \"group\": [2266.0, 922.0, 241.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69556_BALBc-1_X01_Y01_618_844\", \"ini\": 2569, \"clust\": 2510, \"rank\": 2446, \"rankvar\": 2207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 257, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 986, \"cat-2\": \"Density: 23\", \"cat_2_index\": 373, \"group\": [2512.0, 1041.0, 269.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69767_BALBc-1_X01_Y01_620_771\", \"ini\": 2568, \"clust\": 115, \"rank\": 1287, \"rankvar\": 1949, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 258, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2393, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1468, \"group\": [114.0, 66.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70401_BALBc-1_X01_Y01_628_954\", \"ini\": 2567, \"clust\": 2746, \"rank\": 2322, \"rankvar\": 2484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 259, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 4, \"cat-2\": \"Density: 21\", \"cat_2_index\": 192, \"group\": [2745.0, 1185.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70856_BALBc-1_X01_Y01_633_693\", \"ini\": 2566, \"clust\": 1892, \"rank\": 186, \"rankvar\": 100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 260, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 665, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1723, \"group\": [1892.0, 718.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71169_BALBc-1_X01_Y01_637_858\", \"ini\": 2565, \"clust\": 2348, \"rank\": 1274, \"rankvar\": 1963, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 261, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 987, \"cat-2\": \"Density: 26\", \"cat_2_index\": 735, \"group\": [2354.0, 961.0, 250.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72334_BALBc-1_X01_Y01_650_922\", \"ini\": 2564, \"clust\": 1477, \"rank\": 801, \"rankvar\": 1696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 262, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1702, \"cat-2\": \"Density: 25\", \"cat_2_index\": 606, \"group\": [1478.0, 624.0, 170.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72558_BALBc-1_X01_Y01_653_790\", \"ini\": 2563, \"clust\": 2617, \"rank\": 416, \"rankvar\": 2031, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 263, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 988, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1724, \"group\": [2616.0, 1103.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72805_BALBc-1_X01_Y01_656_972\", \"ini\": 2562, \"clust\": 1394, \"rank\": 1036, \"rankvar\": 768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 264, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1703, \"cat-2\": \"Density: 23\", \"cat_2_index\": 374, \"group\": [1407.0, 584.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73338_BALBc-1_X01_Y01_662_687\", \"ini\": 2561, \"clust\": 2181, \"rank\": 964, \"rankvar\": 955, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 265, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 989, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1611, \"group\": [2182.0, 870.0, 226.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74854_BALBc-1_X01_Y01_680_662\", \"ini\": 2560, \"clust\": 2621, \"rank\": 413, \"rankvar\": 523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 266, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2394, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1834, \"group\": [2622.0, 1106.0, 287.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75831_BALBc-1_X01_Y01_692_998\", \"ini\": 2559, \"clust\": 1978, \"rank\": 1649, \"rankvar\": 1497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 267, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1704, \"cat-2\": \"Density: 23\", \"cat_2_index\": 375, \"group\": [1979.0, 776.0, 203.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76190_BALBc-1_X01_Y01_697_768\", \"ini\": 2558, \"clust\": 2639, \"rank\": 632, \"rankvar\": 952, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 268, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 749, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1469, \"group\": [2640.0, 1114.0, 290.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76418_BALBc-1_X01_Y01_7_625\", \"ini\": 2557, \"clust\": 2329, \"rank\": 2489, \"rankvar\": 2471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 269, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2227, \"cat-2\": \"Density: 10\", \"cat_2_index\": 3, \"group\": [2334.0, 949.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77472_BALBc-1_X01_Y01_711_676\", \"ini\": 2556, \"clust\": 1548, \"rank\": 977, \"rankvar\": 1452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 270, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 990, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2045, \"group\": [1549.0, 650.0, 177.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77475_BALBc-1_X01_Y01_711_742\", \"ini\": 2555, \"clust\": 1543, \"rank\": 137, \"rankvar\": 221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 271, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 991, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1725, \"group\": [1540.0, 648.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77792_BALBc-1_X01_Y01_715_768\", \"ini\": 2554, \"clust\": 2573, \"rank\": 1738, \"rankvar\": 2005, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 272, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1705, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1612, \"group\": [2573.0, 1075.0, 278.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78451_BALBc-1_X01_Y01_722_839\", \"ini\": 2553, \"clust\": 2620, \"rank\": 718, \"rankvar\": 1690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 273, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2395, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1613, \"group\": [2620.0, 1105.0, 287.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78461_BALBc-1_X01_Y01_722_950\", \"ini\": 2552, \"clust\": 1975, \"rank\": 1367, \"rankvar\": 2706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 274, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1706, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1188, \"group\": [1976.0, 773.0, 202.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78468_BALBc-1_X01_Y01_723_131\", \"ini\": 2551, \"clust\": 2259, \"rank\": 1239, \"rankvar\": 2373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 275, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1826, \"cat-2\": \"Density: 21\", \"cat_2_index\": 193, \"group\": [2258.0, 917.0, 240.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78787_BALBc-1_X01_Y01_727_496\", \"ini\": 2550, \"clust\": 2706, \"rank\": 2805, \"rankvar\": 2811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 276, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1707, \"cat-2\": \"Density: 27\", \"cat_2_index\": 885, \"group\": [2709.0, 1163.0, 310.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78978_BALBc-1_X01_Y01_729_920\", \"ini\": 2549, \"clust\": 1602, \"rank\": 116, \"rankvar\": 478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 277, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1604, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1614, \"group\": [1605.0, 677.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79106_BALBc-1_X01_Y01_730_753\", \"ini\": 2548, \"clust\": 1093, \"rank\": 501, \"rankvar\": 67, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 278, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1605, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1615, \"group\": [1095.0, 495.0, 145.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79197_BALBc-1_X01_Y01_731_852\", \"ini\": 2547, \"clust\": 2159, \"rank\": 1661, \"rankvar\": 2264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 279, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 750, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1934, \"group\": [2156.0, 856.0, 222.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79228_BALBc-1_X01_Y01_732_264\", \"ini\": 2546, \"clust\": 2761, \"rank\": 2042, \"rankvar\": 2282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 280, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1827, \"cat-2\": \"Density: 16\", \"cat_2_index\": 50, \"group\": [2760.0, 1193.0, 317.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79377_BALBc-1_X01_Y01_733_981\", \"ini\": 2545, \"clust\": 1972, \"rank\": 1270, \"rankvar\": 2435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 281, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 992, \"cat-2\": \"Density: 27\", \"cat_2_index\": 886, \"group\": [1971.0, 772.0, 202.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79939_BALBc-1_X01_Y01_740_1001\", \"ini\": 2544, \"clust\": 2474, \"rank\": 1463, \"rankvar\": 1254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 282, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 993, \"cat-2\": \"Density: 25\", \"cat_2_index\": 607, \"group\": [2477.0, 1021.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80506_BALBc-1_X01_Y01_747_927\", \"ini\": 2543, \"clust\": 2275, \"rank\": 2717, \"rankvar\": 2434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 283, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1828, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1038, \"group\": [2278.0, 927.0, 242.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80525_BALBc-1_X01_Y01_748_234\", \"ini\": 2542, \"clust\": 2296, \"rank\": 2378, \"rankvar\": 2657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 284, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1829, \"cat-2\": \"Density: 19\", \"cat_2_index\": 114, \"group\": [2298.0, 933.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80830_BALBc-1_X01_Y01_750_807\", \"ini\": 2541, \"clust\": 2247, \"rank\": 1601, \"rankvar\": 2460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 285, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1708, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1189, \"group\": [2246.0, 909.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80965_BALBc-1_X01_Y01_752_728\", \"ini\": 2540, \"clust\": 575, \"rank\": 1621, \"rankvar\": 1902, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 286, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 994, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1616, \"group\": [573.0, 240.0, 70.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81569_BALBc-1_X01_Y01_76_36\", \"ini\": 2539, \"clust\": 2340, \"rank\": 552, \"rankvar\": 1683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 287, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1830, \"cat-2\": \"Density: 8\", \"cat_2_index\": 0, \"group\": [2343.0, 954.0, 249.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82103_BALBc-1_X01_Y01_766_541\", \"ini\": 2538, \"clust\": 585, \"rank\": 2470, \"rankvar\": 2727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 288, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1831, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1190, \"group\": [586.0, 247.0, 72.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82283_BALBc-1_X01_Y01_768_747\", \"ini\": 2537, \"clust\": 1754, \"rank\": 101, \"rankvar\": 361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 289, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1606, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1343, \"group\": [1754.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82292_BALBc-1_X01_Y01_768_860\", \"ini\": 2536, \"clust\": 2226, \"rank\": 1863, \"rankvar\": 2343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 290, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 751, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1726, \"group\": [2225.0, 903.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82501_BALBc-1_X01_Y01_770_672\", \"ini\": 2535, \"clust\": 1609, \"rank\": 55, \"rankvar\": 402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 291, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1832, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1617, \"group\": [1608.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82814_BALBc-1_X01_Y01_774_701\", \"ini\": 2534, \"clust\": 2308, \"rank\": 2730, \"rankvar\": 2591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 292, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1833, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1039, \"group\": [2309.0, 943.0, 247.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83141_BALBc-1_X01_Y01_778_865\", \"ini\": 2533, \"clust\": 2741, \"rank\": 2714, \"rankvar\": 2701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 293, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 752, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1935, \"group\": [2740.0, 1183.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83368_BALBc-1_X01_Y01_780_829\", \"ini\": 2532, \"clust\": 1467, \"rank\": 528, \"rankvar\": 987, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 294, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2228, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1727, \"group\": [1467.0, 617.0, 168.0, 46.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83575_BALBc-1_X01_Y01_783_772\", \"ini\": 2531, \"clust\": 2754, \"rank\": 2214, \"rankvar\": 2217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 295, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1834, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1344, \"group\": [2763.0, 1194.0, 318.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83783_BALBc-1_X01_Y01_786_42\", \"ini\": 2530, \"clust\": 2394, \"rank\": 1162, \"rankvar\": 419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 296, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1835, \"cat-2\": \"Density: 11\", \"cat_2_index\": 5, \"group\": [2395.0, 988.0, 259.0, 65.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84106_BALBc-1_X01_Y01_79_467\", \"ini\": 2529, \"clust\": 1675, \"rank\": 21, \"rankvar\": 307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 297, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2396, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1040, \"group\": [1676.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84546_BALBc-1_X01_Y01_794_913\", \"ini\": 2528, \"clust\": 2538, \"rank\": 785, \"rankvar\": 2067, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 298, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1836, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1470, \"group\": [2539.0, 1057.0, 274.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84882_BALBc-1_X01_Y01_798_898\", \"ini\": 2527, \"clust\": 2254, \"rank\": 1852, \"rankvar\": 2063, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 299, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 753, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2046, \"group\": [2252.0, 913.0, 238.0, 60.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84899_BALBc-1_X01_Y01_799_204\", \"ini\": 2526, \"clust\": 1344, \"rank\": 332, \"rankvar\": 227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 300, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1837, \"cat-2\": \"Density: 21\", \"cat_2_index\": 194, \"group\": [1343.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85632_BALBc-1_X01_Y01_806_632\", \"ini\": 2525, \"clust\": 1035, \"rank\": 1002, \"rankvar\": 2339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 301, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1709, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1191, \"group\": [1035.0, 455.0, 128.0, 35.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85720_BALBc-1_X01_Y01_807_805\", \"ini\": 2524, \"clust\": 1767, \"rank\": 83, \"rankvar\": 1024, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 302, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2229, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1728, \"group\": [1766.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85870_BALBc-1_X01_Y01_809_965\", \"ini\": 2523, \"clust\": 1233, \"rank\": 747, \"rankvar\": 907, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 303, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2397, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1729, \"group\": [1233.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86589_BALBc-1_X01_Y01_818_406\", \"ini\": 2522, \"clust\": 168, \"rank\": 2364, \"rankvar\": 2762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 304, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1710, \"cat-2\": \"Density: 25\", \"cat_2_index\": 608, \"group\": [168.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86924_BALBc-1_X01_Y01_821_936\", \"ini\": 2521, \"clust\": 2574, \"rank\": 1571, \"rankvar\": 2456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 305, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 754, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1835, \"group\": [2574.0, 1076.0, 278.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87345_BALBc-1_X01_Y01_827_373\", \"ini\": 2520, \"clust\": 2398, \"rank\": 1550, \"rankvar\": 1677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 306, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1711, \"cat-2\": \"Density: 25\", \"cat_2_index\": 609, \"group\": [2399.0, 991.0, 261.0, 65.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87649_BALBc-1_X01_Y01_830_295\", \"ini\": 2519, \"clust\": 2608, \"rank\": 230, \"rankvar\": 1856, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 307, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1838, \"cat-2\": \"Density: 22\", \"cat_2_index\": 261, \"group\": [2606.0, 1099.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87664_BALBc-1_X01_Y01_830_425\", \"ini\": 2518, \"clust\": 1295, \"rank\": 384, \"rankvar\": 851, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 308, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2398, \"cat-2\": \"Density: 27\", \"cat_2_index\": 887, \"group\": [1352.0, 570.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88044_BALBc-1_X01_Y01_835_742\", \"ini\": 2517, \"clust\": 2372, \"rank\": 1360, \"rankvar\": 1604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 309, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1839, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1041, \"group\": [2373.0, 975.0, 256.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88079_BALBc-1_X01_Y01_836_344\", \"ini\": 2516, \"clust\": 2383, \"rank\": 770, \"rankvar\": 1255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 310, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1536, \"cat-2\": \"Density: 25\", \"cat_2_index\": 610, \"group\": [2383.0, 980.0, 257.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88188_BALBc-1_X01_Y01_837_652\", \"ini\": 2515, \"clust\": 1047, \"rank\": 538, \"rankvar\": 1489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 311, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 995, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1192, \"group\": [1045.0, 465.0, 133.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88270_BALBc-1_X01_Y01_838_807\", \"ini\": 2514, \"clust\": 591, \"rank\": 1351, \"rankvar\": 1854, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 312, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1712, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1730, \"group\": [592.0, 252.0, 73.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88505_BALBc-1_X01_Y01_840_865\", \"ini\": 2513, \"clust\": 2733, \"rank\": 2800, \"rankvar\": 2785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 313, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 755, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1936, \"group\": [2730.0, 1176.0, 314.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88518_BALBc-1_X01_Y01_840_980\", \"ini\": 2512, \"clust\": 1716, \"rank\": 82, \"rankvar\": 759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 314, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 996, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1471, \"group\": [1719.0, 681.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88712_BALBc-1_X01_Y01_843_668\", \"ini\": 2511, \"clust\": 2374, \"rank\": 759, \"rankvar\": 1485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 315, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1840, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1042, \"group\": [2375.0, 976.0, 256.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89100_BALBc-1_X01_Y01_848_541\", \"ini\": 2510, \"clust\": 2414, \"rank\": 2641, \"rankvar\": 2626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 316, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1841, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1193, \"group\": [2415.0, 1003.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90045_BALBc-1_X01_Y01_859_822\", \"ini\": 2509, \"clust\": 1959, \"rank\": 1325, \"rankvar\": 601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 317, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1713, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1618, \"group\": [1964.0, 766.0, 200.0, 52.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90185_BALBc-1_X01_Y01_860_626\", \"ini\": 2508, \"clust\": 2390, \"rank\": 1408, \"rankvar\": 1818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 318, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1842, \"cat-2\": \"Density: 27\", \"cat_2_index\": 888, \"group\": [2391.0, 985.0, 259.0, 65.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90284_BALBc-1_X01_Y01_861_874\", \"ini\": 2507, \"clust\": 1471, \"rank\": 1023, \"rankvar\": 1208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 319, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 997, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2047, \"group\": [1474.0, 622.0, 170.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90366_BALBc-1_X01_Y01_863_139\", \"ini\": 2506, \"clust\": 1646, \"rank\": 24, \"rankvar\": 7, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 320, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2399, \"cat-2\": \"Density: 22\", \"cat_2_index\": 262, \"group\": [1644.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91015_BALBc-1_X01_Y01_870_358\", \"ini\": 2505, \"clust\": 2311, \"rank\": 2321, \"rankvar\": 2439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 321, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1537, \"cat-2\": \"Density: 24\", \"cat_2_index\": 475, \"group\": [2312.0, 945.0, 247.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91213_BALBc-1_X01_Y01_872_895\", \"ini\": 2504, \"clust\": 2206, \"rank\": 936, \"rankvar\": 1008, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 322, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 998, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1937, \"group\": [2207.0, 891.0, 233.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91215_BALBc-1_X01_Y01_872_930\", \"ini\": 2503, \"clust\": 1426, \"rank\": 1014, \"rankvar\": 798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 323, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 999, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1472, \"group\": [1427.0, 592.0, 160.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91352_BALBc-1_X01_Y01_874_726\", \"ini\": 2502, \"clust\": 2485, \"rank\": 2238, \"rankvar\": 2486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 324, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1000, \"cat-2\": \"Density: 26\", \"cat_2_index\": 736, \"group\": [2485.0, 1027.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91645_BALBc-1_X01_Y01_878_559\", \"ini\": 2501, \"clust\": 2642, \"rank\": 996, \"rankvar\": 1364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 325, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1843, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1194, \"group\": [2642.0, 1116.0, 290.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91823_BALBc-1_X01_Y01_88_805\", \"ini\": 2500, \"clust\": 2289, \"rank\": 2288, \"rankvar\": 2276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 326, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2400, \"cat-2\": \"Density: 23\", \"cat_2_index\": 376, \"group\": [2290.0, 932.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92363_BALBc-1_X01_Y01_887_395\", \"ini\": 2499, \"clust\": 1090, \"rank\": 305, \"rankvar\": 169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 327, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1844, \"cat-2\": \"Density: 25\", \"cat_2_index\": 611, \"group\": [1087.0, 492.0, 145.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92765_BALBc-1_X01_Y01_891_617\", \"ini\": 2498, \"clust\": 2269, \"rank\": 1137, \"rankvar\": 2569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 328, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2401, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1473, \"group\": [2269.0, 924.0, 241.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93018_BALBc-1_X01_Y01_894_905\", \"ini\": 2497, \"clust\": 1070, \"rank\": 1444, \"rankvar\": 1424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 329, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1001, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1474, \"group\": [1070.0, 480.0, 139.0, 39.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93161_BALBc-1_X01_Y01_896_937\", \"ini\": 2496, \"clust\": 2141, \"rank\": 2186, \"rankvar\": 2098, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 330, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1002, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1731, \"group\": [2144.0, 845.0, 217.0, 55.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94070_BALBc-1_X01_Y01_907_486\", \"ini\": 2495, \"clust\": 2404, \"rank\": 2118, \"rankvar\": 2167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 331, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 756, \"cat-2\": \"Density: 27\", \"cat_2_index\": 889, \"group\": [2404.0, 994.0, 262.0, 66.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94547_BALBc-1_X01_Y01_912_926\", \"ini\": 2494, \"clust\": 42, \"rank\": 1372, \"rankvar\": 2144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 332, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1845, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1619, \"group\": [42.0, 24.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94695_BALBc-1_X01_Y01_914_981\", \"ini\": 2493, \"clust\": 2244, \"rank\": 1792, \"rankvar\": 2135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 333, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1846, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1732, \"group\": [2242.0, 908.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94725_BALBc-1_X01_Y01_915_472\", \"ini\": 2492, \"clust\": 2693, \"rank\": 1260, \"rankvar\": 2134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 334, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1847, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1043, \"group\": [2693.0, 1150.0, 307.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94799_BALBc-1_X01_Y01_916_387\", \"ini\": 2491, \"clust\": 2290, \"rank\": 2630, \"rankvar\": 2449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 335, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 666, \"cat-2\": \"Density: 25\", \"cat_2_index\": 612, \"group\": [2288.0, 932.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94985_BALBc-1_X01_Y01_918_863\", \"ini\": 2490, \"clust\": 1524, \"rank\": 752, \"rankvar\": 876, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 336, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 667, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1345, \"group\": [1525.0, 643.0, 175.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95149_BALBc-1_X01_Y01_92_950\", \"ini\": 2489, \"clust\": 2298, \"rank\": 2728, \"rankvar\": 2749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 337, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1848, \"cat-2\": \"Density: 18\", \"cat_2_index\": 89, \"group\": [2295.0, 933.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95350_BALBc-1_X01_Y01_922_525\", \"ini\": 2488, \"clust\": 2397, \"rank\": 1907, \"rankvar\": 1976, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 338, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2502, \"cat-2\": \"Density: 27\", \"cat_2_index\": 890, \"group\": [2398.0, 990.0, 260.0, 65.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95627_BALBc-1_X01_Y01_925_921\", \"ini\": 2487, \"clust\": 568, \"rank\": 1770, \"rankvar\": 2474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 339, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 668, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1044, \"group\": [568.0, 238.0, 70.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96058_BALBc-1_X01_Y01_930_613\", \"ini\": 2486, \"clust\": 2268, \"rank\": 1487, \"rankvar\": 2212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 340, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2402, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1045, \"group\": [2268.0, 923.0, 241.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96292_BALBc-1_X01_Y01_933_666\", \"ini\": 2485, \"clust\": 2366, \"rank\": 1599, \"rankvar\": 2240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 341, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2403, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1346, \"group\": [2366.0, 970.0, 252.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96547_BALBc-1_X01_Y01_937_170\", \"ini\": 2484, \"clust\": 1464, \"rank\": 1261, \"rankvar\": 1274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 342, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1849, \"cat-2\": \"Density: 19\", \"cat_2_index\": 115, \"group\": [1464.0, 614.0, 166.0, 45.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96665_BALBc-1_X01_Y01_938_963\", \"ini\": 2483, \"clust\": 2356, \"rank\": 799, \"rankvar\": 1588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 343, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1850, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1836, \"group\": [2356.0, 962.0, 251.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96745_BALBc-1_X01_Y01_939_916\", \"ini\": 2482, \"clust\": 2012, \"rank\": 917, \"rankvar\": 538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 344, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 669, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1475, \"group\": [2011.0, 795.0, 208.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96964_BALBc-1_X01_Y01_941_78\", \"ini\": 2481, \"clust\": 2334, \"rank\": 2755, \"rankvar\": 2805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 345, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1851, \"cat-2\": \"Density: 17\", \"cat_2_index\": 70, \"group\": [2339.0, 952.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98233_BALBc-1_X01_Y01_957_431\", \"ini\": 2480, \"clust\": 2291, \"rank\": 2621, \"rankvar\": 2621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 346, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1852, \"cat-2\": \"Density: 23\", \"cat_2_index\": 377, \"group\": [2289.0, 932.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98244_BALBc-1_X01_Y01_957_547\", \"ini\": 2479, \"clust\": 1490, \"rank\": 161, \"rankvar\": 1786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 347, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1003, \"cat-2\": \"Density: 25\", \"cat_2_index\": 613, \"group\": [1488.0, 628.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98423_BALBc-1_X01_Y01_96_276\", \"ini\": 2478, \"clust\": 2734, \"rank\": 2295, \"rankvar\": 2408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 348, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 757, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1347, \"group\": [2735.0, 1180.0, 314.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98533_BALBc-1_X01_Y01_960_606\", \"ini\": 2477, \"clust\": 2640, \"rank\": 372, \"rankvar\": 816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 349, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1853, \"cat-2\": \"Density: 27\", \"cat_2_index\": 891, \"group\": [2641.0, 1115.0, 290.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98687_BALBc-1_X01_Y01_962_516\", \"ini\": 2476, \"clust\": 2367, \"rank\": 1380, \"rankvar\": 2376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 350, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1004, \"cat-2\": \"Density: 25\", \"cat_2_index\": 614, \"group\": [2367.0, 970.0, 252.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98848_BALBc-1_X01_Y01_964_670\", \"ini\": 2475, \"clust\": 2415, \"rank\": 2404, \"rankvar\": 1716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 351, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1005, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1046, \"group\": [2416.0, 1004.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98850_BALBc-1_X01_Y01_964_694\", \"ini\": 2474, \"clust\": 1717, \"rank\": 31, \"rankvar\": 1617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 352, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1854, \"cat-2\": \"Density: 26\", \"cat_2_index\": 737, \"group\": [1717.0, 681.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99057_BALBc-1_X01_Y01_967_479\", \"ini\": 2473, \"clust\": 2279, \"rank\": 2585, \"rankvar\": 2585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 353, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1855, \"cat-2\": \"Density: 23\", \"cat_2_index\": 378, \"group\": [2280.0, 928.0, 242.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99105_BALBc-1_X01_Y01_967_965\", \"ini\": 2472, \"clust\": 2241, \"rank\": 2261, \"rankvar\": 2016, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 354, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 670, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1476, \"group\": [2240.0, 907.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99401_BALBc-1_X01_Y01_970_988\", \"ini\": 2471, \"clust\": 582, \"rank\": 1860, \"rankvar\": 1788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 355, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 671, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1477, \"group\": [582.0, 245.0, 71.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99809_BALBc-1_X01_Y01_976_311\", \"ini\": 2470, \"clust\": 2364, \"rank\": 1758, \"rankvar\": 2400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 356, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2404, \"cat-2\": \"Density: 24\", \"cat_2_index\": 476, \"group\": [2364.0, 969.0, 252.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100228_BALBc-1_X01_Y01_980_928\", \"ini\": 2469, \"clust\": 1569, \"rank\": 365, \"rankvar\": 885, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 357, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 893, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1047, \"group\": [1572.0, 665.0, 179.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100256_BALBc-1_X01_Y01_981_360\", \"ini\": 2468, \"clust\": 1483, \"rank\": 502, \"rankvar\": 1146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 358, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 672, \"cat-2\": \"Density: 25\", \"cat_2_index\": 615, \"group\": [1484.0, 627.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100547_BALBc-1_X01_Y01_985_432\", \"ini\": 2467, \"clust\": 2460, \"rank\": 1468, \"rankvar\": 1182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 359, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1856, \"cat-2\": \"Density: 22\", \"cat_2_index\": 263, \"group\": [2465.0, 1018.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100572_BALBc-1_X01_Y01_985_76\", \"ini\": 2466, \"clust\": 2710, \"rank\": 2628, \"rankvar\": 2470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 360, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2266, \"cat-2\": \"Density: 18\", \"cat_2_index\": 90, \"group\": [2713.0, 1165.0, 311.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101105_BALBc-1_X01_Y01_991_734\", \"ini\": 2465, \"clust\": 2494, \"rank\": 2148, \"rankvar\": 2000, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 361, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1857, \"cat-2\": \"Density: 25\", \"cat_2_index\": 616, \"group\": [2493.0, 1028.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101341_BALBc-1_X01_Y01_994_653\", \"ini\": 2464, \"clust\": 1655, \"rank\": 10, \"rankvar\": 66, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 362, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1006, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1048, \"group\": [1653.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101367_BALBc-1_X01_Y01_994_943\", \"ini\": 2463, \"clust\": 2239, \"rank\": 2538, \"rankvar\": 2058, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 363, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 673, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1049, \"group\": [2237.0, 906.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-727_BALBc-1_X02_Y01_100_250\", \"ini\": 2462, \"clust\": 1925, \"rank\": 739, \"rankvar\": 1585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 364, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1858, \"cat-2\": \"Density: 26\", \"cat_2_index\": 738, \"group\": [1928.0, 739.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-920_BALBc-1_X02_Y01_1001_805\", \"ini\": 2461, \"clust\": 1872, \"rank\": 979, \"rankvar\": 1376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 365, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1714, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1478, \"group\": [1882.0, 715.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1117_BALBc-1_X02_Y01_1004_49\", \"ini\": 2460, \"clust\": 2343, \"rank\": 712, \"rankvar\": 2022, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 366, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1007, \"cat-2\": \"Density: 21\", \"cat_2_index\": 195, \"group\": [2341.0, 953.0, 249.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1309_BALBc-1_X02_Y01_1006_988\", \"ini\": 2459, \"clust\": 2699, \"rank\": 2344, \"rankvar\": 2555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 367, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1008, \"cat-2\": \"Density: 25\", \"cat_2_index\": 617, \"group\": [2698.0, 1154.0, 308.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1701_BALBc-1_X02_Y01_1010_833\", \"ini\": 2458, \"clust\": 2501, \"rank\": 1672, \"rankvar\": 1415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 368, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1859, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1348, \"group\": [2504.0, 1034.0, 268.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1932_BALBc-1_X02_Y01_1013_860\", \"ini\": 2457, \"clust\": 2193, \"rank\": 1765, \"rankvar\": 2322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 369, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 758, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1479, \"group\": [2193.0, 880.0, 229.0, 58.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1955_BALBc-1_X02_Y01_1014_248\", \"ini\": 2456, \"clust\": 2514, \"rank\": 2601, \"rankvar\": 2241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 370, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1860, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1620, \"group\": [2517.0, 1044.0, 269.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2025_BALBc-1_X02_Y01_1015_159\", \"ini\": 2455, \"clust\": 638, \"rank\": 1472, \"rankvar\": 1502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 371, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1861, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1480, \"group\": [639.0, 273.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2212_BALBc-1_X02_Y01_1017_633\", \"ini\": 2454, \"clust\": 2350, \"rank\": 906, \"rankvar\": 1714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 372, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2405, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1050, \"group\": [2349.0, 959.0, 250.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2698_BALBc-1_X02_Y01_1022_99\", \"ini\": 2453, \"clust\": 194, \"rank\": 664, \"rankvar\": 2001, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 373, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1862, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1051, \"group\": [192.0, 94.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2934_BALBc-1_X02_Y01_1025_811\", \"ini\": 2452, \"clust\": 2491, \"rank\": 1895, \"rankvar\": 1910, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 374, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1715, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1938, \"group\": [2495.0, 1028.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2976_BALBc-1_X02_Y01_1026_488\", \"ini\": 2451, \"clust\": 1408, \"rank\": 1625, \"rankvar\": 727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 375, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1863, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1481, \"group\": [1426.0, 591.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3352_BALBc-1_X02_Y01_103_900\", \"ini\": 2450, \"clust\": 2670, \"rank\": 2096, \"rankvar\": 2692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 376, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2477, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1621, \"group\": [2681.0, 1138.0, 299.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3627_BALBc-1_X02_Y01_1033_729\", \"ini\": 2449, \"clust\": 1275, \"rank\": 584, \"rankvar\": 805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 377, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2807, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1349, \"group\": [1274.0, 558.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3919_BALBc-1_X02_Y01_1037_288\", \"ini\": 2448, \"clust\": 562, \"rank\": 2145, \"rankvar\": 1922, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 378, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 674, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2048, \"group\": [565.0, 235.0, 69.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4041_BALBc-1_X02_Y01_1038_754\", \"ini\": 2447, \"clust\": 2631, \"rank\": 723, \"rankvar\": 1135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 379, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1009, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1350, \"group\": [2636.0, 1111.0, 288.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4239_BALBc-1_X02_Y01_1040_415\", \"ini\": 2446, \"clust\": 1928, \"rank\": 698, \"rankvar\": 2051, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 380, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1864, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1052, \"group\": [1926.0, 739.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4540_BALBc-1_X02_Y01_1044_183\", \"ini\": 2445, \"clust\": 2097, \"rank\": 404, \"rankvar\": 2628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 381, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1010, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1733, \"group\": [2098.0, 832.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4583_BALBc-1_X02_Y01_1044_66\", \"ini\": 2444, \"clust\": 2457, \"rank\": 2323, \"rankvar\": 2678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 382, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1538, \"cat-2\": \"Density: 24\", \"cat_2_index\": 477, \"group\": [2454.0, 1017.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4708_BALBc-1_X02_Y01_1046_353\", \"ini\": 2443, \"clust\": 1603, \"rank\": 170, \"rankvar\": 122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 383, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 675, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1351, \"group\": [1603.0, 677.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4717_BALBc-1_X02_Y01_1046_503\", \"ini\": 2442, \"clust\": 2566, \"rank\": 1855, \"rankvar\": 2102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 384, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2808, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1482, \"group\": [2566.0, 1069.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4778_BALBc-1_X02_Y01_1047_250\", \"ini\": 2441, \"clust\": 560, \"rank\": 2098, \"rankvar\": 2668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 385, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1865, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1837, \"group\": [558.0, 231.0, 68.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4973_BALBc-1_X02_Y01_1049_643\", \"ini\": 2440, \"clust\": 1318, \"rank\": 27, \"rankvar\": 281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 386, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 759, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1483, \"group\": [1322.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5021_BALBc-1_X02_Y01_105_184\", \"ini\": 2439, \"clust\": 1494, \"rank\": 1168, \"rankvar\": 938, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 387, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2406, \"cat-2\": \"Density: 21\", \"cat_2_index\": 196, \"group\": [1501.0, 630.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5131_BALBc-1_X02_Y01_1050_723\", \"ini\": 2438, \"clust\": 2674, \"rank\": 2556, \"rankvar\": 2759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 388, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1866, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1734, \"group\": [2673.0, 1137.0, 299.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5233_BALBc-1_X02_Y01_1052_226\", \"ini\": 2437, \"clust\": 1750, \"rank\": 8, \"rankvar\": 1288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 389, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1011, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2049, \"group\": [1753.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5349_BALBc-1_X02_Y01_1053_839\", \"ini\": 2436, \"clust\": 570, \"rank\": 1221, \"rankvar\": 1335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 390, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1867, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2050, \"group\": [577.0, 242.0, 70.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5616_BALBc-1_X02_Y01_1056_980\", \"ini\": 2435, \"clust\": 1898, \"rank\": 405, \"rankvar\": 346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 391, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1012, \"cat-2\": \"Density: 27\", \"cat_2_index\": 892, \"group\": [1900.0, 720.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5712_BALBc-1_X02_Y01_1058_349\", \"ini\": 2434, \"clust\": 2628, \"rank\": 1528, \"rankvar\": 1806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 392, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 676, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1352, \"group\": [2627.0, 1108.0, 287.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5723_BALBc-1_X02_Y01_1058_507\", \"ini\": 2433, \"clust\": 41, \"rank\": 1671, \"rankvar\": 2564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 393, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2809, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1622, \"group\": [43.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6217_BALBc-1_X02_Y01_1063_382\", \"ini\": 2432, \"clust\": 2357, \"rank\": 1598, \"rankvar\": 1898, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 394, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1013, \"cat-2\": \"Density: 27\", \"cat_2_index\": 893, \"group\": [2358.0, 964.0, 251.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6529_BALBc-1_X02_Y01_1067_754\", \"ini\": 2431, \"clust\": 1509, \"rank\": 203, \"rankvar\": 912, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 395, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1868, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1623, \"group\": [1510.0, 635.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6591_BALBc-1_X02_Y01_1068_473\", \"ini\": 2430, \"clust\": 2162, \"rank\": 1725, \"rankvar\": 2707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 396, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1869, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1195, \"group\": [2161.0, 856.0, 222.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6633_BALBc-1_X02_Y01_1068_843\", \"ini\": 2429, \"clust\": 1322, \"rank\": 44, \"rankvar\": 441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 397, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1870, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1939, \"group\": [1320.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7022_BALBc-1_X02_Y01_1072_571\", \"ini\": 2428, \"clust\": 2406, \"rank\": 2310, \"rankvar\": 2156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 398, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 760, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1838, \"group\": [2406.0, 995.0, 262.0, 66.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7059_BALBc-1_X02_Y01_1072_960\", \"ini\": 2427, \"clust\": 2273, \"rank\": 2540, \"rankvar\": 2267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 399, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1871, \"cat-2\": \"Density: 25\", \"cat_2_index\": 618, \"group\": [2274.0, 926.0, 242.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7262_BALBc-1_X02_Y01_1075_334\", \"ini\": 2426, \"clust\": 1962, \"rank\": 832, \"rankvar\": 1494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 400, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2267, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1735, \"group\": [1960.0, 762.0, 197.0, 52.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7803_BALBc-1_X02_Y01_1081_510\", \"ini\": 2425, \"clust\": 563, \"rank\": 1620, \"rankvar\": 1795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 401, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1576, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1053, \"group\": [563.0, 235.0, 69.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8504_BALBc-1_X02_Y01_109_960\", \"ini\": 2424, \"clust\": 488, \"rank\": 1352, \"rankvar\": 1912, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 402, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1014, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2051, \"group\": [489.0, 190.0, 52.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8575_BALBc-1_X02_Y01_1090_708\", \"ini\": 2423, \"clust\": 2615, \"rank\": 571, \"rankvar\": 687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 403, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1872, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1736, \"group\": [2617.0, 1103.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8689_BALBc-1_X02_Y01_1092_353\", \"ini\": 2422, \"clust\": 2509, \"rank\": 2281, \"rankvar\": 1988, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 404, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1873, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1484, \"group\": [2513.0, 1042.0, 269.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9108_BALBc-1_X02_Y01_1097_627\", \"ini\": 2421, \"clust\": 1472, \"rank\": 931, \"rankvar\": 2242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 405, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1015, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1940, \"group\": [1472.0, 622.0, 170.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9139_BALBc-1_X02_Y01_1098_191\", \"ini\": 2420, \"clust\": 1526, \"rank\": 1046, \"rankvar\": 1763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 406, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1874, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1941, \"group\": [1527.0, 644.0, 175.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9234_BALBc-1_X02_Y01_1099_456\", \"ini\": 2419, \"clust\": 1550, \"rank\": 479, \"rankvar\": 1531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 407, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1016, \"cat-2\": \"Density: 27\", \"cat_2_index\": 894, \"group\": [1551.0, 651.0, 177.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9814_BALBc-1_X02_Y01_1104_657\", \"ini\": 2418, \"clust\": 2539, \"rank\": 1297, \"rankvar\": 2326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 408, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1607, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1839, \"group\": [2537.0, 1057.0, 274.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9841_BALBc-1_X02_Y01_1104_956\", \"ini\": 2417, \"clust\": 1768, \"rank\": 132, \"rankvar\": 283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 409, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1875, \"cat-2\": \"Density: 25\", \"cat_2_index\": 619, \"group\": [1767.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9888_BALBc-1_X02_Y01_1105_530\", \"ini\": 2416, \"clust\": 973, \"rank\": 2565, \"rankvar\": 2723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 410, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1577, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1353, \"group\": [973.0, 406.0, 111.0, 29.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9992_BALBc-1_X02_Y01_1106_822\", \"ini\": 2415, \"clust\": 1428, \"rank\": 359, \"rankvar\": 1145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 411, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1876, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1840, \"group\": [1431.0, 595.0, 160.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10019_BALBc-1_X02_Y01_1107_235\", \"ini\": 2414, \"clust\": 2413, \"rank\": 1710, \"rankvar\": 1918, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 412, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2478, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1942, \"group\": [2412.0, 1000.0, 264.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10132_BALBc-1_X02_Y01_1108_495\", \"ini\": 2413, \"clust\": 2558, \"rank\": 2008, \"rankvar\": 2126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 413, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2407, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1354, \"group\": [2559.0, 1068.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10374_BALBc-1_X02_Y01_1110_694\", \"ini\": 2412, \"clust\": 2536, \"rank\": 1417, \"rankvar\": 1567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 414, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1539, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2140, \"group\": [2535.0, 1057.0, 274.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10576_BALBc-1_X02_Y01_1113_426\", \"ini\": 2411, \"clust\": 2512, \"rank\": 2593, \"rankvar\": 2315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 415, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1017, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1355, \"group\": [2511.0, 1040.0, 269.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10601_BALBc-1_X02_Y01_1113_726\", \"ini\": 2410, \"clust\": 1726, \"rank\": 163, \"rankvar\": 55, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 416, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 761, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1737, \"group\": [1726.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10688_BALBc-1_X02_Y01_1114_902\", \"ini\": 2409, \"clust\": 2508, \"rank\": 2803, \"rankvar\": 2682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 417, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1877, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1624, \"group\": [2508.0, 1038.0, 269.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10939_BALBc-1_X02_Y01_1118_266\", \"ini\": 2408, \"clust\": 1669, \"rank\": 47, \"rankvar\": 155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 418, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1878, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1943, \"group\": [1681.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10988_BALBc-1_X02_Y01_1118_830\", \"ini\": 2407, \"clust\": 1599, \"rank\": 177, \"rankvar\": 148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 419, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 762, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1738, \"group\": [1601.0, 676.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11337_BALBc-1_X02_Y01_1122_571\", \"ini\": 2406, \"clust\": 2144, \"rank\": 1231, \"rankvar\": 451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 420, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1018, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1841, \"group\": [2149.0, 850.0, 219.0, 55.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11413_BALBc-1_X02_Y01_1123_613\", \"ini\": 2405, \"clust\": 2529, \"rank\": 1659, \"rankvar\": 1804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 421, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1019, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2141, \"group\": [2530.0, 1055.0, 274.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11498_BALBc-1_X02_Y01_1124_538\", \"ini\": 2404, \"clust\": 2531, \"rank\": 1084, \"rankvar\": 504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 422, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2268, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1739, \"group\": [2534.0, 1056.0, 274.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11656_BALBc-1_X02_Y01_1126_662\", \"ini\": 2403, \"clust\": 1952, \"rank\": 1546, \"rankvar\": 2313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 423, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1540, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2297, \"group\": [1952.0, 756.0, 193.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11767_BALBc-1_X02_Y01_1128_191\", \"ini\": 2402, \"clust\": 2127, \"rank\": 330, \"rankvar\": 1526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 424, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 763, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1740, \"group\": [2127.0, 838.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11839_BALBc-1_X02_Y01_1129_238\", \"ini\": 2401, \"clust\": 1283, \"rank\": 241, \"rankvar\": 1271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 425, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2479, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1944, \"group\": [1284.0, 561.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12133_BALBc-1_X02_Y01_1132_128\", \"ini\": 2400, \"clust\": 1777, \"rank\": 256, \"rankvar\": 622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 426, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 764, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1625, \"group\": [1781.0, 686.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12185_BALBc-1_X02_Y01_1132_650\", \"ini\": 2399, \"clust\": 496, \"rank\": 2103, \"rankvar\": 1422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 427, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 765, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1842, \"group\": [497.0, 196.0, 55.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12327_BALBc-1_X02_Y01_1134_751\", \"ini\": 2398, \"clust\": 2756, \"rank\": 2674, \"rankvar\": 1698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 428, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 766, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1945, \"group\": [2755.0, 1189.0, 317.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12702_BALBc-1_X02_Y01_1139_494\", \"ini\": 2397, \"clust\": 2551, \"rank\": 2696, \"rankvar\": 2549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 429, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2269, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1485, \"group\": [2551.0, 1065.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12872_BALBc-1_X02_Y01_1140_895\", \"ini\": 2396, \"clust\": 2535, \"rank\": 1257, \"rankvar\": 1628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 430, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1879, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1196, \"group\": [2540.0, 1057.0, 274.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13105_BALBc-1_X02_Y01_1143_686\", \"ini\": 2395, \"clust\": 569, \"rank\": 1611, \"rankvar\": 1901, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 431, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 767, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1626, \"group\": [569.0, 238.0, 70.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13323_BALBc-1_X02_Y01_1146_697\", \"ini\": 2394, \"clust\": 1402, \"rank\": 1093, \"rankvar\": 1130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 432, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 768, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2052, \"group\": [1402.0, 583.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13387_BALBc-1_X02_Y01_1147_623\", \"ini\": 2393, \"clust\": 2054, \"rank\": 640, \"rankvar\": 2143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 433, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1020, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2053, \"group\": [2053.0, 809.0, 210.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13636_BALBc-1_X02_Y01_115_870\", \"ini\": 2392, \"clust\": 1461, \"rank\": 548, \"rankvar\": 736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 434, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 677, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1486, \"group\": [1457.0, 610.0, 164.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13712_BALBc-1_X02_Y01_1150_829\", \"ini\": 2391, \"clust\": 1966, \"rank\": 1080, \"rankvar\": 1196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 435, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 769, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1356, \"group\": [1965.0, 767.0, 201.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13747_BALBc-1_X02_Y01_1151_270\", \"ini\": 2390, \"clust\": 1673, \"rank\": 2, \"rankvar\": 201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 436, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2408, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2054, \"group\": [1669.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13791_BALBc-1_X02_Y01_1151_786\", \"ini\": 2389, \"clust\": 631, \"rank\": 1348, \"rankvar\": 1136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 437, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1021, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1197, \"group\": [633.0, 272.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13891_BALBc-1_X02_Y01_1153_161\", \"ini\": 2388, \"clust\": 1475, \"rank\": 506, \"rankvar\": 709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 438, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 770, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1198, \"group\": [1475.0, 623.0, 170.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13893_BALBc-1_X02_Y01_1153_212\", \"ini\": 2387, \"clust\": 2602, \"rank\": 1122, \"rankvar\": 2552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 439, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1716, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1741, \"group\": [2602.0, 1098.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14380_BALBc-1_X02_Y01_1159_66\", \"ini\": 2386, \"clust\": 2341, \"rank\": 710, \"rankvar\": 791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 440, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1880, \"cat-2\": \"Density: 22\", \"cat_2_index\": 264, \"group\": [2342.0, 953.0, 249.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14826_BALBc-1_X02_Y01_1164_105\", \"ini\": 2385, \"clust\": 1504, \"rank\": 945, \"rankvar\": 1944, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 441, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 771, \"cat-2\": \"Density: 27\", \"cat_2_index\": 895, \"group\": [1509.0, 634.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15075_BALBc-1_X02_Y01_1167_300\", \"ini\": 2384, \"clust\": 2767, \"rank\": 2825, \"rankvar\": 2792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 442, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 772, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2298, \"group\": [2767.0, 1196.0, 319.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15083_BALBc-1_X02_Y01_1167_377\", \"ini\": 2383, \"clust\": 2540, \"rank\": 1103, \"rankvar\": 2086, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 443, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1022, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1054, \"group\": [2538.0, 1057.0, 274.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15194_BALBc-1_X02_Y01_1168_743\", \"ini\": 2382, \"clust\": 817, \"rank\": 2398, \"rankvar\": 2468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 444, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 5, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1742, \"group\": [816.0, 339.0, 96.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15334_BALBc-1_X02_Y01_117_883\", \"ini\": 2381, \"clust\": 2411, \"rank\": 1786, \"rankvar\": 1528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 445, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1881, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1487, \"group\": [2413.0, 1001.0, 264.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15471_BALBc-1_X02_Y01_1171_582\", \"ini\": 2380, \"clust\": 1922, \"rank\": 649, \"rankvar\": 1706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 446, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1023, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1843, \"group\": [1922.0, 738.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15630_BALBc-1_X02_Y01_1173_619\", \"ini\": 2379, \"clust\": 741, \"rank\": 1899, \"rankvar\": 326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 447, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1024, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1844, \"group\": [746.0, 305.0, 86.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15634_BALBc-1_X02_Y01_1173_634\", \"ini\": 2378, \"clust\": 537, \"rank\": 1237, \"rankvar\": 1935, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 448, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 773, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2055, \"group\": [537.0, 216.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15644_BALBc-1_X02_Y01_1173_755\", \"ini\": 2377, \"clust\": 148, \"rank\": 2477, \"rankvar\": 2421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 449, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1025, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1488, \"group\": [149.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15706_BALBc-1_X02_Y01_1174_723\", \"ini\": 2376, \"clust\": 2688, \"rank\": 1950, \"rankvar\": 824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 450, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 774, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1627, \"group\": [2688.0, 1145.0, 303.0, 76.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15832_BALBc-1_X02_Y01_1176_472\", \"ini\": 2375, \"clust\": 1947, \"rank\": 1438, \"rankvar\": 1421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 451, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1026, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1357, \"group\": [1948.0, 754.0, 193.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16250_BALBc-1_X02_Y01_1180_834\", \"ini\": 2374, \"clust\": 516, \"rank\": 2151, \"rankvar\": 2364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 452, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 775, \"cat-2\": \"Density: 27\", \"cat_2_index\": 896, \"group\": [519.0, 210.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16261_BALBc-1_X02_Y01_1180_946\", \"ini\": 2373, \"clust\": 2407, \"rank\": 2235, \"rankvar\": 2328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 453, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1882, \"cat-2\": \"Density: 27\", \"cat_2_index\": 897, \"group\": [2407.0, 995.0, 262.0, 66.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16286_BALBc-1_X02_Y01_1181_398\", \"ini\": 2372, \"clust\": 2515, \"rank\": 1989, \"rankvar\": 765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 454, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1027, \"cat-2\": \"Density: 27\", \"cat_2_index\": 898, \"group\": [2516.0, 1043.0, 269.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16453_BALBc-1_X02_Y01_1183_622\", \"ini\": 2371, \"clust\": 1397, \"rank\": 1321, \"rankvar\": 1006, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 455, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 6, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1743, \"group\": [1396.0, 583.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16460_BALBc-1_X02_Y01_1183_734\", \"ini\": 2370, \"clust\": 1827, \"rank\": 400, \"rankvar\": 490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 456, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 7, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1628, \"group\": [1829.0, 695.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16490_BALBc-1_X02_Y01_1184_20\", \"ini\": 2369, \"clust\": 2335, \"rank\": 1547, \"rankvar\": 2202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 457, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 894, \"cat-2\": \"Density: 15\", \"cat_2_index\": 36, \"group\": [2335.0, 950.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16779_BALBc-1_X02_Y01_1188_180\", \"ini\": 2368, \"clust\": 2497, \"rank\": 2395, \"rankvar\": 2319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 458, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 776, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2056, \"group\": [2498.0, 1030.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16869_BALBc-1_X02_Y01_1189_208\", \"ini\": 2367, \"clust\": 1766, \"rank\": 85, \"rankvar\": 550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 459, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1717, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2220, \"group\": [1768.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16889_BALBc-1_X02_Y01_1189_451\", \"ini\": 2366, \"clust\": 1702, \"rank\": 193, \"rankvar\": 297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 460, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1028, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1489, \"group\": [1704.0, 679.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16901_BALBc-1_X02_Y01_1189_539\", \"ini\": 2365, \"clust\": 1263, \"rank\": 949, \"rankvar\": 541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 461, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1608, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2221, \"group\": [1263.0, 554.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17048_BALBc-1_X02_Y01_1190_641\", \"ini\": 2364, \"clust\": 1348, \"rank\": 224, \"rankvar\": 337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 462, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 8, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1946, \"group\": [1347.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17117_BALBc-1_X02_Y01_1191_556\", \"ini\": 2363, \"clust\": 11, \"rank\": 2216, \"rankvar\": 2287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 463, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1609, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1629, \"group\": [11.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17132_BALBc-1_X02_Y01_1191_663\", \"ini\": 2362, \"clust\": 2126, \"rank\": 514, \"rankvar\": 261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 464, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 777, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1947, \"group\": [2129.0, 838.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17336_BALBc-1_X02_Y01_1194_509\", \"ini\": 2361, \"clust\": 1317, \"rank\": 198, \"rankvar\": 92, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 465, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1610, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1630, \"group\": [1323.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17653_BALBc-1_X02_Y01_1198_693\", \"ini\": 2360, \"clust\": 1252, \"rank\": 678, \"rankvar\": 690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 466, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 778, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2057, \"group\": [1252.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17657_BALBc-1_X02_Y01_1198_792\", \"ini\": 2359, \"clust\": 2078, \"rank\": 1371, \"rankvar\": 1475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 467, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1029, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1055, \"group\": [2077.0, 826.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17668_BALBc-1_X02_Y01_1198_965\", \"ini\": 2358, \"clust\": 2692, \"rank\": 542, \"rankvar\": 1744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 468, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2409, \"cat-2\": \"Density: 26\", \"cat_2_index\": 739, \"group\": [2695.0, 1151.0, 307.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17790_BALBc-1_X02_Y01_12_625\", \"ini\": 2357, \"clust\": 2498, \"rank\": 2168, \"rankvar\": 1482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 469, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1883, \"cat-2\": \"Density: 25\", \"cat_2_index\": 620, \"group\": [2499.0, 1031.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17829_BALBc-1_X02_Y01_12_949\", \"ini\": 2356, \"clust\": 592, \"rank\": 1838, \"rankvar\": 528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 470, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1718, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1358, \"group\": [593.0, 253.0, 74.0, 19.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17833_BALBc-1_X02_Y01_120_10\", \"ini\": 2355, \"clust\": 136, \"rank\": 2021, \"rankvar\": 2447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 471, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1611, \"cat-2\": \"Density: 15\", \"cat_2_index\": 37, \"group\": [136.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17960_BALBc-1_X02_Y01_1200_621\", \"ini\": 2354, \"clust\": 1731, \"rank\": 162, \"rankvar\": 638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 472, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 9, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1845, \"group\": [1731.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18016_BALBc-1_X02_Y01_1201_255\", \"ini\": 2353, \"clust\": 2578, \"rank\": 1646, \"rankvar\": 1710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 473, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1030, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1744, \"group\": [2579.0, 1080.0, 280.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18096_BALBc-1_X02_Y01_1202_300\", \"ini\": 2352, \"clust\": 2071, \"rank\": 1196, \"rankvar\": 2149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 474, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1719, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1631, \"group\": [2072.0, 825.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18196_BALBc-1_X02_Y01_1203_578\", \"ini\": 2351, \"clust\": 1392, \"rank\": 997, \"rankvar\": 1848, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 475, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1612, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1632, \"group\": [1390.0, 582.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18210_BALBc-1_X02_Y01_1203_725\", \"ini\": 2350, \"clust\": 581, \"rank\": 2135, \"rankvar\": 703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 476, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1031, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1633, \"group\": [584.0, 246.0, 71.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18259_BALBc-1_X02_Y01_1204_360\", \"ini\": 2349, \"clust\": 2129, \"rank\": 787, \"rankvar\": 2146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 477, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1720, \"cat-2\": \"Density: 26\", \"cat_2_index\": 740, \"group\": [2133.0, 840.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18482_BALBc-1_X02_Y01_1206_858\", \"ini\": 2348, \"clust\": 735, \"rank\": 2332, \"rankvar\": 1458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 478, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 779, \"cat-2\": \"Density: 24\", \"cat_2_index\": 478, \"group\": [736.0, 298.0, 83.0, 22.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18612_BALBc-1_X02_Y01_1208_674\", \"ini\": 2347, \"clust\": 981, \"rank\": 1996, \"rankvar\": 1578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 479, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1032, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2058, \"group\": [980.0, 411.0, 113.0, 30.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18710_BALBc-1_X02_Y01_1209_899\", \"ini\": 2346, \"clust\": 2429, \"rank\": 2483, \"rankvar\": 1447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 480, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 780, \"cat-2\": \"Density: 24\", \"cat_2_index\": 479, \"group\": [2434.0, 1009.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18905_BALBc-1_X02_Y01_1211_658\", \"ini\": 2345, \"clust\": 949, \"rank\": 1747, \"rankvar\": 1175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 10, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2059, \"group\": [949.0, 391.0, 106.0, 27.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19104_BALBc-1_X02_Y01_1214_445\", \"ini\": 2344, \"clust\": 2643, \"rank\": 1245, \"rankvar\": 973, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 482, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2410, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1056, \"group\": [2643.0, 1117.0, 290.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19264_BALBc-1_X02_Y01_1216_455\", \"ini\": 2343, \"clust\": 1908, \"rank\": 352, \"rankvar\": 829, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 483, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1613, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1359, \"group\": [1906.0, 725.0, 186.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19265_BALBc-1_X02_Y01_1216_472\", \"ini\": 2342, \"clust\": 938, \"rank\": 2485, \"rankvar\": 1680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 484, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1614, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1634, \"group\": [936.0, 382.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19271_BALBc-1_X02_Y01_1216_594\", \"ini\": 2341, \"clust\": 860, \"rank\": 2294, \"rankvar\": 2238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 485, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 781, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1635, \"group\": [861.0, 363.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19288_BALBc-1_X02_Y01_1216_855\", \"ini\": 2340, \"clust\": 2069, \"rank\": 1970, \"rankvar\": 2341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 486, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 782, \"cat-2\": \"Density: 24\", \"cat_2_index\": 480, \"group\": [2068.0, 823.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19310_BALBc-1_X02_Y01_1217_258\", \"ini\": 2339, \"clust\": 1399, \"rank\": 1304, \"rankvar\": 1207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 487, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1033, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1745, \"group\": [1398.0, 583.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19351_BALBc-1_X02_Y01_1217_759\", \"ini\": 2338, \"clust\": 490, \"rank\": 1662, \"rankvar\": 348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 488, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2503, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1360, \"group\": [491.0, 192.0, 53.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19674_BALBc-1_X02_Y01_1221_135\", \"ini\": 2337, \"clust\": 1778, \"rank\": 601, \"rankvar\": 435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 489, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2411, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1057, \"group\": [1780.0, 686.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19754_BALBc-1_X02_Y01_1222_168\", \"ini\": 2336, \"clust\": 1444, \"rank\": 615, \"rankvar\": 395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 490, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1721, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1746, \"group\": [1445.0, 604.0, 162.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19785_BALBc-1_X02_Y01_1222_508\", \"ini\": 2335, \"clust\": 1986, \"rank\": 1800, \"rankvar\": 1870, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 491, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1615, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1490, \"group\": [1985.0, 779.0, 203.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20247_BALBc-1_X02_Y01_1228_427\", \"ini\": 2334, \"clust\": 906, \"rank\": 2221, \"rankvar\": 1892, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2504, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1361, \"group\": [905.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20444_BALBc-1_X02_Y01_1230_254\", \"ini\": 2333, \"clust\": 499, \"rank\": 1901, \"rankvar\": 1945, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 493, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1034, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1636, \"group\": [499.0, 197.0, 55.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20674_BALBc-1_X02_Y01_1232_895\", \"ini\": 2332, \"clust\": 2093, \"rank\": 651, \"rankvar\": 2493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 494, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 783, \"cat-2\": \"Density: 27\", \"cat_2_index\": 899, \"group\": [2093.0, 831.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20684_BALBc-1_X02_Y01_1232_950\", \"ini\": 2331, \"clust\": 2768, \"rank\": 2797, \"rankvar\": 2643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 495, \"cat-1\": \"Neighbor: CD4(-)CD8(-) cDC\", \"cat_1_index\": 1590, \"cat-2\": \"Density: 24\", \"cat_2_index\": 481, \"group\": [2768.0, 1196.0, 319.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20877_BALBc-1_X02_Y01_1235_619\", \"ini\": 2330, \"clust\": 919, \"rank\": 2315, \"rankvar\": 1929, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 496, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 784, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1948, \"group\": [920.0, 378.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21358_BALBc-1_X02_Y01_1241_235\", \"ini\": 2329, \"clust\": 152, \"rank\": 2615, \"rankvar\": 2436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 497, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1035, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1362, \"group\": [156.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21512_BALBc-1_X02_Y01_1243_309\", \"ini\": 2328, \"clust\": 2499, \"rank\": 1622, \"rankvar\": 1282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 498, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1722, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1058, \"group\": [2506.0, 1036.0, 268.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21583_BALBc-1_X02_Y01_1244_275\", \"ini\": 2327, \"clust\": 2554, \"rank\": 2436, \"rankvar\": 2398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 499, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 11, \"cat-2\": \"Density: 27\", \"cat_2_index\": 900, \"group\": [2553.0, 1065.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21689_BALBc-1_X02_Y01_1245_805\", \"ini\": 2326, \"clust\": 807, \"rank\": 1783, \"rankvar\": 2260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 500, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2505, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1199, \"group\": [810.0, 335.0, 94.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22019_BALBc-1_X02_Y01_125_269\", \"ini\": 2325, \"clust\": 170, \"rank\": 2411, \"rankvar\": 2269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 501, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1884, \"cat-2\": \"Density: 25\", \"cat_2_index\": 621, \"group\": [173.0, 82.0, 24.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22239_BALBc-1_X02_Y01_1252_216\", \"ini\": 2324, \"clust\": 1976, \"rank\": 1214, \"rankvar\": 2583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 502, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2270, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1363, \"group\": [1974.0, 773.0, 202.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22243_BALBc-1_X02_Y01_1252_255\", \"ini\": 2323, \"clust\": 2007, \"rank\": 1024, \"rankvar\": 1103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 503, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 12, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1200, \"group\": [2010.0, 794.0, 207.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22255_BALBc-1_X02_Y01_1252_348\", \"ini\": 2322, \"clust\": 1719, \"rank\": 324, \"rankvar\": 170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 504, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1723, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1059, \"group\": [1720.0, 682.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22266_BALBc-1_X02_Y01_1252_472\", \"ini\": 2321, \"clust\": 851, \"rank\": 1609, \"rankvar\": 2508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 505, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2506, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1364, \"group\": [852.0, 358.0, 99.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22548_BALBc-1_X02_Y01_1256_623\", \"ini\": 2320, \"clust\": 868, \"rank\": 1850, \"rankvar\": 1348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 506, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 785, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2060, \"group\": [867.0, 366.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22671_BALBc-1_X02_Y01_1258_136\", \"ini\": 2319, \"clust\": 1828, \"rank\": 261, \"rankvar\": 135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 507, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1036, \"cat-2\": \"Density: 27\", \"cat_2_index\": 901, \"group\": [1827.0, 695.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22748_BALBc-1_X02_Y01_1259_383\", \"ini\": 2318, \"clust\": 2109, \"rank\": 748, \"rankvar\": 1627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 508, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 678, \"cat-2\": \"Density: 27\", \"cat_2_index\": 902, \"group\": [2109.0, 834.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22787_BALBc-1_X02_Y01_1259_893\", \"ini\": 2317, \"clust\": 824, \"rank\": 2123, \"rankvar\": 644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 509, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 786, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1060, \"group\": [825.0, 343.0, 97.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22931_BALBc-1_X02_Y01_1260_924\", \"ini\": 2316, \"clust\": 2090, \"rank\": 863, \"rankvar\": 1571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 510, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 787, \"cat-2\": \"Density: 27\", \"cat_2_index\": 903, \"group\": [2091.0, 830.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23108_BALBc-1_X02_Y01_1263_256\", \"ini\": 2315, \"clust\": 980, \"rank\": 2612, \"rankvar\": 2821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 511, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 679, \"cat-2\": \"Density: 26\", \"cat_2_index\": 741, \"group\": [982.0, 412.0, 113.0, 30.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23139_BALBc-1_X02_Y01_1263_670\", \"ini\": 2314, \"clust\": 2702, \"rank\": 2764, \"rankvar\": 2793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 512, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1037, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1637, \"group\": [2705.0, 1159.0, 309.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23280_BALBc-1_X02_Y01_1265_648\", \"ini\": 2313, \"clust\": 786, \"rank\": 681, \"rankvar\": 1817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 513, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 13, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1846, \"group\": [786.0, 325.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23335_BALBc-1_X02_Y01_1266_525\", \"ini\": 2312, \"clust\": 1961, \"rank\": 1204, \"rankvar\": 672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 514, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2507, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1491, \"group\": [1962.0, 764.0, 198.0, 52.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23348_BALBc-1_X02_Y01_1266_814\", \"ini\": 2311, \"clust\": 854, \"rank\": 1465, \"rankvar\": 2113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 515, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2508, \"cat-2\": \"Density: 22\", \"cat_2_index\": 265, \"group\": [854.0, 358.0, 99.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23436_BALBc-1_X02_Y01_1268_124\", \"ini\": 2310, \"clust\": 2562, \"rank\": 1813, \"rankvar\": 2632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 516, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2271, \"cat-2\": \"Density: 26\", \"cat_2_index\": 742, \"group\": [2561.0, 1068.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23465_BALBc-1_X02_Y01_1268_478\", \"ini\": 2309, \"clust\": 888, \"rank\": 2369, \"rankvar\": 2099, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 517, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 14, \"cat-2\": \"Density: 27\", \"cat_2_index\": 904, \"group\": [889.0, 374.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23570_BALBc-1_X02_Y01_1269_960\", \"ini\": 2308, \"clust\": 1722, \"rank\": 108, \"rankvar\": 426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 518, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1061, \"group\": [1724.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23719_BALBc-1_X02_Y01_1271_19\", \"ini\": 2307, \"clust\": 1484, \"rank\": 386, \"rankvar\": 1409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 519, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1885, \"cat-2\": \"Density: 9\", \"cat_2_index\": 1, \"group\": [1485.0, 628.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23817_BALBc-1_X02_Y01_1272_501\", \"ini\": 2306, \"clust\": 1315, \"rank\": 327, \"rankvar\": 203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 520, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2509, \"cat-2\": \"Density: 27\", \"cat_2_index\": 905, \"group\": [1313.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23834_BALBc-1_X02_Y01_1272_684\", \"ini\": 2305, \"clust\": 179, \"rank\": 1230, \"rankvar\": 1811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 521, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1038, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1365, \"group\": [179.0, 88.0, 28.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23870_BALBc-1_X02_Y01_1273_191\", \"ini\": 2304, \"clust\": 1757, \"rank\": 167, \"rankvar\": 145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 522, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1724, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1062, \"group\": [1757.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23961_BALBc-1_X02_Y01_1274_276\", \"ini\": 2303, \"clust\": 2627, \"rank\": 2157, \"rankvar\": 2600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 523, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2412, \"cat-2\": \"Density: 24\", \"cat_2_index\": 482, \"group\": [2629.0, 1108.0, 287.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24129_BALBc-1_X02_Y01_1276_627\", \"ini\": 2302, \"clust\": 1064, \"rank\": 1519, \"rankvar\": 248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 524, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 15, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1492, \"group\": [1071.0, 481.0, 140.0, 40.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24213_BALBc-1_X02_Y01_1277_743\", \"ini\": 2301, \"clust\": 842, \"rank\": 2007, \"rankvar\": 1577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 525, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2510, \"cat-2\": \"Density: 26\", \"cat_2_index\": 743, \"group\": [843.0, 352.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24260_BALBc-1_X02_Y01_1278_371\", \"ini\": 2300, \"clust\": 826, \"rank\": 2076, \"rankvar\": 472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 526, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 16, \"cat-2\": \"Density: 20\", \"cat_2_index\": 140, \"group\": [833.0, 348.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24435_BALBc-1_X02_Y01_128_859\", \"ini\": 2299, \"clust\": 2331, \"rank\": 1833, \"rankvar\": 2662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 527, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 680, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1493, \"group\": [2332.0, 949.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24454_BALBc-1_X02_Y01_1280_168\", \"ini\": 2298, \"clust\": 2458, \"rank\": 2016, \"rankvar\": 2616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 528, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1725, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1063, \"group\": [2455.0, 1017.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24523_BALBc-1_X02_Y01_1281_204\", \"ini\": 2297, \"clust\": 2559, \"rank\": 2479, \"rankvar\": 2459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 529, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2511, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1064, \"group\": [2560.0, 1068.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24639_BALBc-1_X02_Y01_1282_936\", \"ini\": 2296, \"clust\": 2739, \"rank\": 2574, \"rankvar\": 2233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 530, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 788, \"cat-2\": \"Density: 25\", \"cat_2_index\": 622, \"group\": [2738.0, 1183.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24854_BALBc-1_X02_Y01_1285_865\", \"ini\": 2295, \"clust\": 905, \"rank\": 2394, \"rankvar\": 2413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 531, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 789, \"cat-2\": \"Density: 20\", \"cat_2_index\": 141, \"group\": [907.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25171_BALBc-1_X02_Y01_129_327\", \"ini\": 2294, \"clust\": 1261, \"rank\": 895, \"rankvar\": 1252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 532, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1886, \"cat-2\": \"Density: 26\", \"cat_2_index\": 744, \"group\": [1261.0, 553.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25272_BALBc-1_X02_Y01_1290_692\", \"ini\": 2293, \"clust\": 299, \"rank\": 1208, \"rankvar\": 1998, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 533, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 17, \"cat-2\": \"Density: 27\", \"cat_2_index\": 906, \"group\": [298.0, 125.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25330_BALBc-1_X02_Y01_1291_444\", \"ini\": 2292, \"clust\": 818, \"rank\": 2523, \"rankvar\": 2340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 534, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2512, \"cat-2\": \"Density: 21\", \"cat_2_index\": 197, \"group\": [817.0, 339.0, 96.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25437_BALBc-1_X02_Y01_1292_824\", \"ini\": 2291, \"clust\": 1999, \"rank\": 929, \"rankvar\": 1077, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 535, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 18, \"cat-2\": \"Density: 21\", \"cat_2_index\": 198, \"group\": [2002.0, 790.0, 206.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25507_BALBc-1_X02_Y01_1293_608\", \"ini\": 2290, \"clust\": 293, \"rank\": 1471, \"rankvar\": 1156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 536, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 19, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1065, \"group\": [292.0, 125.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25576_BALBc-1_X02_Y01_1294_588\", \"ini\": 2289, \"clust\": 1914, \"rank\": 951, \"rankvar\": 1334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 537, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 790, \"cat-2\": \"Density: 26\", \"cat_2_index\": 745, \"group\": [1917.0, 734.0, 189.0, 49.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25582_BALBc-1_X02_Y01_1294_704\", \"ini\": 2288, \"clust\": 1044, \"rank\": 1839, \"rankvar\": 2337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 538, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1039, \"cat-2\": \"Density: 25\", \"cat_2_index\": 623, \"group\": [1044.0, 464.0, 132.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25697_BALBc-1_X02_Y01_1296_329\", \"ini\": 2287, \"clust\": 2146, \"rank\": 1857, \"rankvar\": 2158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 539, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2413, \"cat-2\": \"Density: 19\", \"cat_2_index\": 116, \"group\": [2147.0, 848.0, 218.0, 55.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25710_BALBc-1_X02_Y01_1296_563\", \"ini\": 2286, \"clust\": 877, \"rank\": 2147, \"rankvar\": 1873, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 540, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2513, \"cat-2\": \"Density: 25\", \"cat_2_index\": 624, \"group\": [882.0, 373.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25815_BALBc-1_X02_Y01_1297_976\", \"ini\": 2285, \"clust\": 1936, \"rank\": 175, \"rankvar\": 2342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 541, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1040, \"cat-2\": \"Density: 23\", \"cat_2_index\": 379, \"group\": [1936.0, 744.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25841_BALBc-1_X02_Y01_1298_381\", \"ini\": 2284, \"clust\": 2056, \"rank\": 1250, \"rankvar\": 2153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 791, \"cat-2\": \"Density: 17\", \"cat_2_index\": 71, \"group\": [2054.0, 810.0, 210.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25946_BALBc-1_X02_Y01_1299_659\", \"ini\": 2283, \"clust\": 2818, \"rank\": 1238, \"rankvar\": 726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 543, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 20, \"cat-2\": \"Density: 24\", \"cat_2_index\": 483, \"group\": [2818.0, 1224.0, 325.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26179_BALBc-1_X02_Y01_1300_765\", \"ini\": 2282, \"clust\": 412, \"rank\": 2074, \"rankvar\": 2681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 544, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2514, \"cat-2\": \"Density: 18\", \"cat_2_index\": 91, \"group\": [412.0, 156.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26338_BALBc-1_X02_Y01_1302_966\", \"ini\": 2281, \"clust\": 864, \"rank\": 2741, \"rankvar\": 2625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 545, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1041, \"cat-2\": \"Density: 22\", \"cat_2_index\": 266, \"group\": [863.0, 364.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26563_BALBc-1_X02_Y01_1306_615\", \"ini\": 2280, \"clust\": 1890, \"rank\": 581, \"rankvar\": 3, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 546, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 21, \"cat-2\": \"Density: 24\", \"cat_2_index\": 484, \"group\": [1890.0, 718.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26947_BALBc-1_X02_Y01_1310_844\", \"ini\": 2279, \"clust\": 924, \"rank\": 2149, \"rankvar\": 2123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 547, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 22, \"cat-2\": \"Density: 17\", \"cat_2_index\": 72, \"group\": [928.0, 380.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26986_BALBc-1_X02_Y01_1311_476\", \"ini\": 2278, \"clust\": 920, \"rank\": 2417, \"rankvar\": 1478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 548, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 23, \"cat-2\": \"Density: 20\", \"cat_2_index\": 142, \"group\": [921.0, 378.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27217_BALBc-1_X02_Y01_1314_632\", \"ini\": 2277, \"clust\": 1773, \"rank\": 463, \"rankvar\": 57, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 549, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 24, \"cat-2\": \"Density: 23\", \"cat_2_index\": 380, \"group\": [1772.0, 684.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27299_BALBc-1_X02_Y01_1315_692\", \"ini\": 2276, \"clust\": 1230, \"rank\": 383, \"rankvar\": 971, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 550, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 25, \"cat-2\": \"Density: 22\", \"cat_2_index\": 267, \"group\": [1229.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27307_BALBc-1_X02_Y01_1315_735\", \"ini\": 2275, \"clust\": 284, \"rank\": 1683, \"rankvar\": 879, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 26, \"cat-2\": \"Density: 19\", \"cat_2_index\": 117, \"group\": [283.0, 122.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27466_BALBc-1_X02_Y01_1317_879\", \"ini\": 2274, \"clust\": 779, \"rank\": 1578, \"rankvar\": 1369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 552, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 792, \"cat-2\": \"Density: 16\", \"cat_2_index\": 51, \"group\": [779.0, 321.0, 92.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27504_BALBc-1_X02_Y01_1318_405\", \"ini\": 2273, \"clust\": 2526, \"rank\": 1872, \"rankvar\": 1480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 553, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 793, \"cat-2\": \"Density: 16\", \"cat_2_index\": 52, \"group\": [2527.0, 1052.0, 273.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27595_BALBc-1_X02_Y01_1319_808\", \"ini\": 2272, \"clust\": 411, \"rank\": 1815, \"rankvar\": 2213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 554, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 27, \"cat-2\": \"Density: 15\", \"cat_2_index\": 38, \"group\": [414.0, 156.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27599_BALBc-1_X02_Y01_1319_890\", \"ini\": 2271, \"clust\": 951, \"rank\": 1854, \"rankvar\": 1459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 555, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 794, \"cat-2\": \"Density: 17\", \"cat_2_index\": 73, \"group\": [954.0, 396.0, 107.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27627_BALBc-1_X02_Y01_132_376\", \"ini\": 2270, \"clust\": 2317, \"rank\": 2711, \"rankvar\": 2718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 556, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1042, \"cat-2\": \"Density: 26\", \"cat_2_index\": 746, \"group\": [2318.0, 947.0, 247.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27677_BALBc-1_X02_Y01_132_918\", \"ini\": 2269, \"clust\": 1506, \"rank\": 650, \"rankvar\": 1425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 557, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2515, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1949, \"group\": [1506.0, 633.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27726_BALBc-1_X02_Y01_1320_540\", \"ini\": 2268, \"clust\": 2026, \"rank\": 1240, \"rankvar\": 596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 558, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2516, \"cat-2\": \"Density: 18\", \"cat_2_index\": 92, \"group\": [2025.0, 802.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27814_BALBc-1_X02_Y01_1321_772\", \"ini\": 2267, \"clust\": 655, \"rank\": 1581, \"rankvar\": 1406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 559, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 28, \"cat-2\": \"Density: 17\", \"cat_2_index\": 74, \"group\": [653.0, 275.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27851_BALBc-1_X02_Y01_1322_496\", \"ini\": 2266, \"clust\": 456, \"rank\": 2039, \"rankvar\": 1023, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 560, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2517, \"cat-2\": \"Density: 16\", \"cat_2_index\": 53, \"group\": [452.0, 170.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27996_BALBc-1_X02_Y01_1324_340\", \"ini\": 2265, \"clust\": 2603, \"rank\": 795, \"rankvar\": 1580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 561, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 795, \"cat-2\": \"Density: 13\", \"cat_2_index\": 12, \"group\": [2603.0, 1098.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28090_BALBc-1_X02_Y01_1325_569\", \"ini\": 2264, \"clust\": 356, \"rank\": 2449, \"rankvar\": 1444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 562, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 29, \"cat-2\": \"Density: 20\", \"cat_2_index\": 143, \"group\": [359.0, 148.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28093_BALBc-1_X02_Y01_1325_603\", \"ini\": 2263, \"clust\": 743, \"rank\": 2091, \"rankvar\": 1505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 563, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 30, \"cat-2\": \"Density: 22\", \"cat_2_index\": 268, \"group\": [744.0, 303.0, 86.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28114_BALBc-1_X02_Y01_1325_828\", \"ini\": 2262, \"clust\": 509, \"rank\": 1868, \"rankvar\": 1241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 564, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 31, \"cat-2\": \"Density: 15\", \"cat_2_index\": 39, \"group\": [507.0, 204.0, 58.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28137_BALBc-1_X02_Y01_1325_999\", \"ini\": 2261, \"clust\": 865, \"rank\": 2751, \"rankvar\": 2690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 565, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 796, \"cat-2\": \"Density: 17\", \"cat_2_index\": 75, \"group\": [864.0, 364.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28664_BALBc-1_X02_Y01_1331_725\", \"ini\": 2260, \"clust\": 751, \"rank\": 2546, \"rankvar\": 869, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 566, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 32, \"cat-2\": \"Density: 16\", \"cat_2_index\": 54, \"group\": [752.0, 310.0, 88.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28713_BALBc-1_X02_Y01_1332_436\", \"ini\": 2259, \"clust\": 754, \"rank\": 2801, \"rankvar\": 1950, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 567, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2518, \"cat-2\": \"Density: 14\", \"cat_2_index\": 27, \"group\": [754.0, 311.0, 88.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28759_BALBc-1_X02_Y01_1332_937\", \"ini\": 2258, \"clust\": 840, \"rank\": 2795, \"rankvar\": 2469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 568, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 797, \"cat-2\": \"Density: 15\", \"cat_2_index\": 40, \"group\": [838.0, 350.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28951_BALBc-1_X02_Y01_1335_663\", \"ini\": 2257, \"clust\": 634, \"rank\": 1976, \"rankvar\": 922, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 569, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 33, \"cat-2\": \"Density: 20\", \"cat_2_index\": 144, \"group\": [635.0, 273.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29000_BALBc-1_X02_Y01_1336_597\", \"ini\": 2256, \"clust\": 294, \"rank\": 1771, \"rankvar\": 1438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 570, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 34, \"cat-2\": \"Density: 16\", \"cat_2_index\": 55, \"group\": [293.0, 125.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29507_BALBc-1_X02_Y01_137_977\", \"ini\": 2255, \"clust\": 2100, \"rank\": 1139, \"rankvar\": 2609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 571, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1043, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1950, \"group\": [2100.0, 832.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29674_BALBc-1_X02_Y01_14_498\", \"ini\": 2254, \"clust\": 2717, \"rank\": 2573, \"rankvar\": 2779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 572, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2414, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1201, \"group\": [2715.0, 1167.0, 312.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29998_BALBc-1_X02_Y01_143_952\", \"ini\": 2253, \"clust\": 473, \"rank\": 2045, \"rankvar\": 1466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 573, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1044, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1951, \"group\": [485.0, 186.0, 49.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30482_BALBc-1_X02_Y01_15_575\", \"ini\": 2252, \"clust\": 1432, \"rank\": 1075, \"rankvar\": 949, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 574, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1887, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1202, \"group\": [1432.0, 596.0, 161.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30586_BALBc-1_X02_Y01_150_909\", \"ini\": 2251, \"clust\": 87, \"rank\": 2253, \"rankvar\": 2308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1045, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1494, \"group\": [86.0, 54.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31216_BALBc-1_X02_Y01_159_250\", \"ini\": 2250, \"clust\": 2255, \"rank\": 2069, \"rankvar\": 2130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 576, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1617, \"cat-2\": \"Density: 26\", \"cat_2_index\": 747, \"group\": [2253.0, 913.0, 238.0, 60.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31389_BALBc-1_X02_Y01_160_546\", \"ini\": 2249, \"clust\": 2263, \"rank\": 930, \"rankvar\": 996, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 577, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1888, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1203, \"group\": [2262.0, 919.0, 240.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31462_BALBc-1_X02_Y01_161_584\", \"ini\": 2248, \"clust\": 1700, \"rank\": 153, \"rankvar\": 30, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 578, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1889, \"cat-2\": \"Density: 27\", \"cat_2_index\": 907, \"group\": [1699.0, 679.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31774_BALBc-1_X02_Y01_166_30\", \"ini\": 2247, \"clust\": 2437, \"rank\": 1275, \"rankvar\": 1474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 579, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1046, \"cat-2\": \"Density: 16\", \"cat_2_index\": 56, \"group\": [2437.0, 1011.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31790_BALBc-1_X02_Y01_166_464\", \"ini\": 2246, \"clust\": 2651, \"rank\": 985, \"rankvar\": 1080, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 580, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2810, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1495, \"group\": [2660.0, 1129.0, 296.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32250_BALBc-1_X02_Y01_171_888\", \"ini\": 2245, \"clust\": 2198, \"rank\": 1597, \"rankvar\": 1435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 581, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 798, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1366, \"group\": [2199.0, 885.0, 231.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32282_BALBc-1_X02_Y01_172_482\", \"ini\": 2244, \"clust\": 2708, \"rank\": 2724, \"rankvar\": 2771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 582, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1890, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1496, \"group\": [2708.0, 1162.0, 310.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32442_BALBc-1_X02_Y01_174_956\", \"ini\": 2243, \"clust\": 2569, \"rank\": 1410, \"rankvar\": 1448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 583, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1047, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1847, \"group\": [2569.0, 1072.0, 277.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32519_BALBc-1_X02_Y01_175_843\", \"ini\": 2242, \"clust\": 2195, \"rank\": 1065, \"rankvar\": 1333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 584, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1891, \"cat-2\": \"Density: 26\", \"cat_2_index\": 748, \"group\": [2195.0, 882.0, 230.0, 58.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32762_BALBc-1_X02_Y01_179_322\", \"ini\": 2241, \"clust\": 2676, \"rank\": 1056, \"rankvar\": 2116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 585, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1048, \"cat-2\": \"Density: 25\", \"cat_2_index\": 625, \"group\": [2675.0, 1137.0, 299.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32908_BALBc-1_X02_Y01_180_240\", \"ini\": 2240, \"clust\": 2377, \"rank\": 774, \"rankvar\": 2491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 586, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1618, \"cat-2\": \"Density: 23\", \"cat_2_index\": 381, \"group\": [2378.0, 977.0, 256.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33134_BALBc-1_X02_Y01_183_289\", \"ini\": 2239, \"clust\": 2479, \"rank\": 1495, \"rankvar\": 1418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 587, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1049, \"cat-2\": \"Density: 24\", \"cat_2_index\": 485, \"group\": [2480.0, 1024.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33188_BALBc-1_X02_Y01_183_994\", \"ini\": 2238, \"clust\": 526, \"rank\": 2073, \"rankvar\": 2375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 588, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1619, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1497, \"group\": [525.0, 213.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33296_BALBc-1_X02_Y01_185_49\", \"ini\": 2237, \"clust\": 2630, \"rank\": 1283, \"rankvar\": 1029, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 589, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2480, \"cat-2\": \"Density: 20\", \"cat_2_index\": 145, \"group\": [2637.0, 1112.0, 289.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33298_BALBc-1_X02_Y01_185_504\", \"ini\": 2236, \"clust\": 1575, \"rank\": 225, \"rankvar\": 1871, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 590, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2415, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1638, \"group\": [1574.0, 666.0, 179.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33505_BALBc-1_X02_Y01_188_605\", \"ini\": 2235, \"clust\": 1498, \"rank\": 631, \"rankvar\": 1128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1050, \"cat-2\": \"Density: 27\", \"cat_2_index\": 908, \"group\": [1500.0, 629.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34197_BALBc-1_X02_Y01_196_898\", \"ini\": 2234, \"clust\": 2299, \"rank\": 2683, \"rankvar\": 2611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 592, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 799, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1204, \"group\": [2296.0, 933.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34308_BALBc-1_X02_Y01_198_421\", \"ini\": 2233, \"clust\": 2765, \"rank\": 2776, \"rankvar\": 2624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 593, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1892, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1747, \"group\": [2764.0, 1195.0, 319.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34743_BALBc-1_X02_Y01_203_465\", \"ini\": 2232, \"clust\": 2432, \"rank\": 2385, \"rankvar\": 2274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 594, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1893, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1748, \"group\": [2433.0, 1008.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35154_BALBc-1_X02_Y01_208_938\", \"ini\": 2231, \"clust\": 1478, \"rank\": 644, \"rankvar\": 1989, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 595, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1051, \"cat-2\": \"Density: 26\", \"cat_2_index\": 749, \"group\": [1479.0, 624.0, 170.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35303_BALBc-1_X02_Y01_21_920\", \"ini\": 2230, \"clust\": 2052, \"rank\": 1067, \"rankvar\": 582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 596, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2416, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1749, \"group\": [2057.0, 812.0, 210.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35604_BALBc-1_X02_Y01_214_17\", \"ini\": 2229, \"clust\": 2194, \"rank\": 1426, \"rankvar\": 1194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 597, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1620, \"cat-2\": \"Density: 15\", \"cat_2_index\": 41, \"group\": [2197.0, 884.0, 230.0, 58.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35670_BALBc-1_X02_Y01_214_814\", \"ini\": 2228, \"clust\": 2686, \"rank\": 1364, \"rankvar\": 1749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 598, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1894, \"cat-2\": \"Density: 25\", \"cat_2_index\": 626, \"group\": [2692.0, 1149.0, 306.0, 77.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35942_BALBc-1_X02_Y01_218_649\", \"ini\": 2227, \"clust\": 1932, \"rank\": 1713, \"rankvar\": 2634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 599, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1052, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1639, \"group\": [1932.0, 743.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36172_BALBc-1_X02_Y01_221_262\", \"ini\": 2226, \"clust\": 2370, \"rank\": 578, \"rankvar\": 495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 600, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1621, \"cat-2\": \"Density: 26\", \"cat_2_index\": 750, \"group\": [2369.0, 972.0, 254.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36246_BALBc-1_X02_Y01_222_326\", \"ini\": 2225, \"clust\": 2179, \"rank\": 495, \"rankvar\": 832, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 601, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1622, \"cat-2\": \"Density: 24\", \"cat_2_index\": 486, \"group\": [2184.0, 872.0, 226.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36545_BALBc-1_X02_Y01_226_202\", \"ini\": 2224, \"clust\": 2325, \"rank\": 2339, \"rankvar\": 2674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 602, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1623, \"cat-2\": \"Density: 24\", \"cat_2_index\": 487, \"group\": [2326.0, 948.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37650_BALBc-1_X02_Y01_24_403\", \"ini\": 2223, \"clust\": 2261, \"rank\": 1182, \"rankvar\": 1880, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 603, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2481, \"cat-2\": \"Density: 22\", \"cat_2_index\": 269, \"group\": [2263.0, 920.0, 240.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37845_BALBc-1_X02_Y01_242_283\", \"ini\": 2222, \"clust\": 2701, \"rank\": 1930, \"rankvar\": 1743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 604, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2272, \"cat-2\": \"Density: 22\", \"cat_2_index\": 270, \"group\": [2706.0, 1160.0, 309.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37881_BALBc-1_X02_Y01_242_724\", \"ini\": 2221, \"clust\": 2234, \"rank\": 1687, \"rankvar\": 2423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 605, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 617, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1205, \"group\": [2232.0, 904.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38216_BALBc-1_X02_Y01_246_892\", \"ini\": 2220, \"clust\": 2392, \"rank\": 671, \"rankvar\": 1186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 606, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1895, \"cat-2\": \"Density: 26\", \"cat_2_index\": 751, \"group\": [2393.0, 987.0, 259.0, 65.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38269_BALBc-1_X02_Y01_247_736\", \"ini\": 2219, \"clust\": 1091, \"rank\": 464, \"rankvar\": 123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 607, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1896, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1367, \"group\": [1088.0, 492.0, 145.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38745_BALBc-1_X02_Y01_253_169\", \"ini\": 2218, \"clust\": 1495, \"rank\": 242, \"rankvar\": 1864, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 608, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2417, \"cat-2\": \"Density: 20\", \"cat_2_index\": 146, \"group\": [1497.0, 629.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38753_BALBc-1_X02_Y01_253_315\", \"ini\": 2217, \"clust\": 2257, \"rank\": 1492, \"rankvar\": 2427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 609, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1624, \"cat-2\": \"Density: 24\", \"cat_2_index\": 488, \"group\": [2259.0, 917.0, 240.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39430_BALBc-1_X02_Y01_261_492\", \"ini\": 2216, \"clust\": 2365, \"rank\": 1589, \"rankvar\": 2124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 610, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2418, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1750, \"group\": [2365.0, 969.0, 252.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39865_BALBc-1_X02_Y01_267_24\", \"ini\": 2215, \"clust\": 2657, \"rank\": 591, \"rankvar\": 1351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 611, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1053, \"cat-2\": \"Density: 15\", \"cat_2_index\": 42, \"group\": [2658.0, 1127.0, 294.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40114_BALBc-1_X02_Y01_27_431\", \"ini\": 2214, \"clust\": 2235, \"rank\": 1032, \"rankvar\": 2568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 612, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2482, \"cat-2\": \"Density: 26\", \"cat_2_index\": 752, \"group\": [2233.0, 904.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40196_BALBc-1_X02_Y01_270_639\", \"ini\": 2213, \"clust\": 1048, \"rank\": 207, \"rankvar\": 2046, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 613, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 618, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1206, \"group\": [1046.0, 465.0, 133.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40274_BALBc-1_X02_Y01_271_849\", \"ini\": 2212, \"clust\": 2488, \"rank\": 2132, \"rankvar\": 2139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 614, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1897, \"cat-2\": \"Density: 25\", \"cat_2_index\": 627, \"group\": [2489.0, 1027.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40304_BALBc-1_X02_Y01_272_264\", \"ini\": 2211, \"clust\": 2326, \"rank\": 2360, \"rankvar\": 2475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 615, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1054, \"cat-2\": \"Density: 21\", \"cat_2_index\": 199, \"group\": [2329.0, 949.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40412_BALBc-1_X02_Y01_273_730\", \"ini\": 2210, \"clust\": 2757, \"rank\": 2257, \"rankvar\": 2446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 616, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 800, \"cat-2\": \"Density: 27\", \"cat_2_index\": 909, \"group\": [2756.0, 1190.0, 317.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40506_BALBc-1_X02_Y01_275_150\", \"ini\": 2209, \"clust\": 2646, \"rank\": 481, \"rankvar\": 1784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 617, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1055, \"cat-2\": \"Density: 20\", \"cat_2_index\": 147, \"group\": [2647.0, 1121.0, 292.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40534_BALBc-1_X02_Y01_275_491\", \"ini\": 2208, \"clust\": 2730, \"rank\": 2642, \"rankvar\": 2318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 618, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2419, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1368, \"group\": [2728.0, 1176.0, 314.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40859_BALBc-1_X02_Y01_279_657\", \"ini\": 2207, \"clust\": 2448, \"rank\": 2014, \"rankvar\": 1992, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 619, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1056, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1066, \"group\": [2467.0, 1019.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41366_BALBc-1_X02_Y01_285_702\", \"ini\": 2206, \"clust\": 2399, \"rank\": 1969, \"rankvar\": 1828, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 620, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1057, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1207, \"group\": [2400.0, 991.0, 261.0, 65.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41645_BALBc-1_X02_Y01_289_419\", \"ini\": 2205, \"clust\": 1535, \"rank\": 363, \"rankvar\": 660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 621, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1058, \"cat-2\": \"Density: 25\", \"cat_2_index\": 628, \"group\": [1534.0, 647.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41692_BALBc-1_X02_Y01_289_977\", \"ini\": 2204, \"clust\": 1390, \"rank\": 971, \"rankvar\": 1614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 622, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2483, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1498, \"group\": [1393.0, 582.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41720_BALBc-1_X02_Y01_29_371\", \"ini\": 2203, \"clust\": 1119, \"rank\": 1192, \"rankvar\": 427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 623, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1898, \"cat-2\": \"Density: 21\", \"cat_2_index\": 200, \"group\": [1119.0, 511.0, 150.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42093_BALBc-1_X02_Y01_294_471\", \"ini\": 2202, \"clust\": 2469, \"rank\": 1735, \"rankvar\": 2061, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 624, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1899, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1067, \"group\": [2468.0, 1020.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42388_BALBc-1_X02_Y01_298_746\", \"ini\": 2201, \"clust\": 1454, \"rank\": 1246, \"rankvar\": 838, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 625, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1059, \"cat-2\": \"Density: 25\", \"cat_2_index\": 629, \"group\": [1462.0, 612.0, 164.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42422_BALBc-1_X02_Y01_299_309\", \"ini\": 2200, \"clust\": 1624, \"rank\": 1, \"rankvar\": 147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 626, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1625, \"cat-2\": \"Density: 22\", \"cat_2_index\": 271, \"group\": [1620.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42773_BALBc-1_X02_Y01_302_572\", \"ini\": 2199, \"clust\": 1671, \"rank\": 9, \"rankvar\": 130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 627, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2420, \"cat-2\": \"Density: 27\", \"cat_2_index\": 910, \"group\": [1672.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42875_BALBc-1_X02_Y01_303_626\", \"ini\": 2198, \"clust\": 1756, \"rank\": 157, \"rankvar\": 888, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 628, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 939, \"cat-2\": \"Density: 26\", \"cat_2_index\": 753, \"group\": [1769.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42918_BALBc-1_X02_Y01_304_24\", \"ini\": 2197, \"clust\": 1541, \"rank\": 507, \"rankvar\": 479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 629, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2484, \"cat-2\": \"Density: 14\", \"cat_2_index\": 28, \"group\": [1543.0, 648.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43254_BALBc-1_X02_Y01_309_522\", \"ini\": 2196, \"clust\": 1321, \"rank\": 40, \"rankvar\": 230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 630, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1900, \"cat-2\": \"Density: 23\", \"cat_2_index\": 382, \"group\": [1321.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43735_BALBc-1_X02_Y01_314_988\", \"ini\": 2195, \"clust\": 2167, \"rank\": 2158, \"rankvar\": 2507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 631, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1060, \"cat-2\": \"Density: 26\", \"cat_2_index\": 754, \"group\": [2166.0, 860.0, 223.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44336_BALBc-1_X02_Y01_321_884\", \"ini\": 2194, \"clust\": 1522, \"rank\": 1271, \"rankvar\": 2210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 632, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1061, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1068, \"group\": [1520.0, 640.0, 174.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44373_BALBc-1_X02_Y01_322_353\", \"ini\": 2193, \"clust\": 1468, \"rank\": 349, \"rankvar\": 935, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 633, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2230, \"cat-2\": \"Density: 24\", \"cat_2_index\": 489, \"group\": [1468.0, 618.0, 168.0, 46.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44527_BALBc-1_X02_Y01_324_319\", \"ini\": 2192, \"clust\": 2330, \"rank\": 2150, \"rankvar\": 2531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 634, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1626, \"cat-2\": \"Density: 24\", \"cat_2_index\": 490, \"group\": [2333.0, 949.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44555_BALBc-1_X02_Y01_324_635\", \"ini\": 2191, \"clust\": 2395, \"rank\": 957, \"rankvar\": 266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 635, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 940, \"cat-2\": \"Density: 27\", \"cat_2_index\": 911, \"group\": [2396.0, 989.0, 259.0, 65.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45166_BALBc-1_X02_Y01_331_409\", \"ini\": 2190, \"clust\": 128, \"rank\": 2758, \"rankvar\": 2819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 636, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2231, \"cat-2\": \"Density: 25\", \"cat_2_index\": 630, \"group\": [133.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45200_BALBc-1_X02_Y01_331_901\", \"ini\": 2189, \"clust\": 195, \"rank\": 437, \"rankvar\": 1943, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 637, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1901, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1208, \"group\": [193.0, 94.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45510_BALBc-1_X02_Y01_335_873\", \"ini\": 2188, \"clust\": 1063, \"rank\": 1050, \"rankvar\": 1115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 638, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1062, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1069, \"group\": [1063.0, 474.0, 136.0, 38.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45659_BALBc-1_X02_Y01_338_160\", \"ini\": 2187, \"clust\": 1923, \"rank\": 866, \"rankvar\": 1928, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 639, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 801, \"cat-2\": \"Density: 26\", \"cat_2_index\": 755, \"group\": [1923.0, 738.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45693_BALBc-1_X02_Y01_338_551\", \"ini\": 2186, \"clust\": 2328, \"rank\": 2365, \"rankvar\": 2440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 640, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2421, \"cat-2\": \"Density: 26\", \"cat_2_index\": 756, \"group\": [2328.0, 949.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46414_BALBc-1_X02_Y01_346_740\", \"ini\": 2185, \"clust\": 2709, \"rank\": 2353, \"rankvar\": 2248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 641, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1063, \"cat-2\": \"Density: 22\", \"cat_2_index\": 272, \"group\": [2714.0, 1166.0, 311.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46504_BALBc-1_X02_Y01_348_114\", \"ini\": 2184, \"clust\": 1758, \"rank\": 268, \"rankvar\": 33, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 642, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1902, \"cat-2\": \"Density: 20\", \"cat_2_index\": 148, \"group\": [1758.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46508_BALBc-1_X02_Y01_348_141\", \"ini\": 2183, \"clust\": 2637, \"rank\": 854, \"rankvar\": 1118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 643, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1903, \"cat-2\": \"Density: 23\", \"cat_2_index\": 383, \"group\": [2638.0, 1113.0, 290.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46935_BALBc-1_X02_Y01_352_73\", \"ini\": 2182, \"clust\": 1883, \"rank\": 423, \"rankvar\": 1005, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 644, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1064, \"cat-2\": \"Density: 19\", \"cat_2_index\": 118, \"group\": [1883.0, 716.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46949_BALBc-1_X02_Y01_352_958\", \"ini\": 2181, \"clust\": 1033, \"rank\": 2169, \"rankvar\": 2760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 645, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1065, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2061, \"group\": [1036.0, 456.0, 128.0, 35.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47181_BALBc-1_X02_Y01_355_871\", \"ini\": 2180, \"clust\": 2694, \"rank\": 643, \"rankvar\": 2379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 646, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2273, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1209, \"group\": [2694.0, 1150.0, 307.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47567_BALBc-1_X02_Y01_360_631\", \"ini\": 2179, \"clust\": 1514, \"rank\": 730, \"rankvar\": 1051, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 647, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1904, \"cat-2\": \"Density: 27\", \"cat_2_index\": 912, \"group\": [1515.0, 637.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47808_BALBc-1_X02_Y01_363_91\", \"ini\": 2178, \"clust\": 1970, \"rank\": 1904, \"rankvar\": 1636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 648, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 681, \"cat-2\": \"Density: 20\", \"cat_2_index\": 149, \"group\": [1978.0, 775.0, 202.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47901_BALBc-1_X02_Y01_364_890\", \"ini\": 2177, \"clust\": 2704, \"rank\": 2390, \"rankvar\": 2688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 649, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1627, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1499, \"group\": [2702.0, 1157.0, 309.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48689_BALBc-1_X02_Y01_374_207\", \"ini\": 2176, \"clust\": 2248, \"rank\": 1808, \"rankvar\": 2027, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 650, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 802, \"cat-2\": \"Density: 22\", \"cat_2_index\": 273, \"group\": [2249.0, 910.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48761_BALBc-1_X02_Y01_375_164\", \"ini\": 2175, \"clust\": 1097, \"rank\": 636, \"rankvar\": 117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 651, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 35, \"cat-2\": \"Density: 22\", \"cat_2_index\": 274, \"group\": [1097.0, 497.0, 145.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48973_BALBc-1_X02_Y01_377_883\", \"ini\": 2174, \"clust\": 1340, \"rank\": 392, \"rankvar\": 553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 652, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2422, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1640, \"group\": [1342.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49252_BALBc-1_X02_Y01_380_635\", \"ini\": 2173, \"clust\": 2719, \"rank\": 2658, \"rankvar\": 2407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 653, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 803, \"cat-2\": \"Density: 27\", \"cat_2_index\": 913, \"group\": [2737.0, 1182.0, 315.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49290_BALBc-1_X02_Y01_381_186\", \"ini\": 2172, \"clust\": 2592, \"rank\": 729, \"rankvar\": 972, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 654, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 804, \"cat-2\": \"Density: 20\", \"cat_2_index\": 150, \"group\": [2596.0, 1095.0, 285.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49698_BALBc-1_X02_Y01_386_108\", \"ini\": 2171, \"clust\": 2800, \"rank\": 1522, \"rankvar\": 540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 655, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 682, \"cat-2\": \"Density: 23\", \"cat_2_index\": 384, \"group\": [2801.0, 1214.0, 322.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50061_BALBc-1_X02_Y01_39_635\", \"ini\": 2170, \"clust\": 2293, \"rank\": 2203, \"rankvar\": 2687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 656, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1905, \"cat-2\": \"Density: 22\", \"cat_2_index\": 275, \"group\": [2293.0, 933.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50421_BALBc-1_X02_Y01_394_629\", \"ini\": 2169, \"clust\": 2683, \"rank\": 2616, \"rankvar\": 2710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 657, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2232, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1070, \"group\": [2685.0, 1142.0, 301.0, 75.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50593_BALBc-1_X02_Y01_396_836\", \"ini\": 2168, \"clust\": 1176, \"rank\": 316, \"rankvar\": 1919, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 658, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1906, \"cat-2\": \"Density: 27\", \"cat_2_index\": 914, \"group\": [1176.0, 543.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50814_BALBc-1_X02_Y01_399_570\", \"ini\": 2167, \"clust\": 1709, \"rank\": 320, \"rankvar\": 46, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 659, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1907, \"cat-2\": \"Density: 27\", \"cat_2_index\": 915, \"group\": [1709.0, 680.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50857_BALBc-1_X02_Y01_4_1000\", \"ini\": 2166, \"clust\": 2014, \"rank\": 1251, \"rankvar\": 693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 660, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1066, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1210, \"group\": [2015.0, 796.0, 208.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50898_BALBc-1_X02_Y01_40_107\", \"ini\": 2165, \"clust\": 2446, \"rank\": 2283, \"rankvar\": 2646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 661, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 805, \"cat-2\": \"Density: 18\", \"cat_2_index\": 93, \"group\": [2446.0, 1014.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51368_BALBc-1_X02_Y01_405_327\", \"ini\": 2164, \"clust\": 2187, \"rank\": 1636, \"rankvar\": 1833, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 662, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1908, \"cat-2\": \"Density: 25\", \"cat_2_index\": 631, \"group\": [2191.0, 878.0, 228.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51852_BALBc-1_X02_Y01_410_23\", \"ini\": 2163, \"clust\": 2106, \"rank\": 288, \"rankvar\": 1434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 663, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1067, \"cat-2\": \"Density: 13\", \"cat_2_index\": 13, \"group\": [2107.0, 834.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51999_BALBc-1_X02_Y01_412_155\", \"ini\": 2162, \"clust\": 1405, \"rank\": 1016, \"rankvar\": 1165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 664, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1541, \"cat-2\": \"Density: 26\", \"cat_2_index\": 757, \"group\": [1406.0, 583.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52079_BALBc-1_X02_Y01_413_103\", \"ini\": 2161, \"clust\": 2068, \"rank\": 1330, \"rankvar\": 1594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 665, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1542, \"cat-2\": \"Density: 26\", \"cat_2_index\": 758, \"group\": [2070.0, 823.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52251_BALBc-1_X02_Y01_415_13\", \"ini\": 2160, \"clust\": 62, \"rank\": 2802, \"rankvar\": 2781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 666, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1068, \"cat-2\": \"Density: 13\", \"cat_2_index\": 14, \"group\": [61.0, 39.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52621_BALBc-1_X02_Y01_419_991\", \"ini\": 2159, \"clust\": 1296, \"rank\": 376, \"rankvar\": 188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 667, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1069, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1848, \"group\": [1295.0, 568.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52973_BALBc-1_X02_Y01_423_647\", \"ini\": 2158, \"clust\": 2410, \"rank\": 1573, \"rankvar\": 1995, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 668, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2233, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1211, \"group\": [2414.0, 1002.0, 264.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53049_BALBc-1_X02_Y01_424_66\", \"ini\": 2157, \"clust\": 1763, \"rank\": 158, \"rankvar\": 256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 669, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 683, \"cat-2\": \"Density: 21\", \"cat_2_index\": 201, \"group\": [1764.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53155_BALBc-1_X02_Y01_426_178\", \"ini\": 2156, \"clust\": 2633, \"rank\": 737, \"rankvar\": 1481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 670, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1909, \"cat-2\": \"Density: 26\", \"cat_2_index\": 759, \"group\": [2632.0, 1109.0, 288.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53404_BALBc-1_X02_Y01_429_1005\", \"ini\": 2155, \"clust\": 992, \"rank\": 2550, \"rankvar\": 1931, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 671, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 36, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2142, \"group\": [995.0, 422.0, 117.0, 31.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53535_BALBc-1_X02_Y01_43_792\", \"ini\": 2154, \"clust\": 2664, \"rank\": 2807, \"rankvar\": 2814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 672, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1070, \"cat-2\": \"Density: 26\", \"cat_2_index\": 760, \"group\": [2665.0, 1132.0, 297.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53582_BALBc-1_X02_Y01_430_391\", \"ini\": 2153, \"clust\": 2309, \"rank\": 2690, \"rankvar\": 1951, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 673, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2423, \"cat-2\": \"Density: 23\", \"cat_2_index\": 385, \"group\": [2310.0, 944.0, 247.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53678_BALBc-1_X02_Y01_431_589\", \"ini\": 2152, \"clust\": 1287, \"rank\": 269, \"rankvar\": 721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 674, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2424, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1071, \"group\": [1287.0, 564.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53767_BALBc-1_X02_Y01_432_601\", \"ini\": 2151, \"clust\": 2695, \"rank\": 1091, \"rankvar\": 1536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 675, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2425, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1500, \"group\": [2696.0, 1152.0, 307.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53917_BALBc-1_X02_Y01_434_617\", \"ini\": 2150, \"clust\": 587, \"rank\": 2224, \"rankvar\": 1895, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 676, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2234, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1212, \"group\": [588.0, 249.0, 72.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54343_BALBc-1_X02_Y01_439_956\", \"ini\": 2149, \"clust\": 2344, \"rank\": 1420, \"rankvar\": 1224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 677, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 806, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2143, \"group\": [2348.0, 958.0, 249.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54799_BALBc-1_X02_Y01_444_988\", \"ini\": 2148, \"clust\": 494, \"rank\": 1835, \"rankvar\": 1533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 678, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1071, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2062, \"group\": [495.0, 195.0, 54.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54922_BALBc-1_X02_Y01_446_748\", \"ini\": 2147, \"clust\": 2423, \"rank\": 2460, \"rankvar\": 2451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 679, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1910, \"cat-2\": \"Density: 22\", \"cat_2_index\": 276, \"group\": [2423.0, 1007.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55138_BALBc-1_X02_Y01_449_612\", \"ini\": 2146, \"clust\": 1934, \"rank\": 271, \"rankvar\": 1893, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 680, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2426, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1369, \"group\": [1938.0, 745.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55205_BALBc-1_X02_Y01_45_516\", \"ini\": 2145, \"clust\": 2716, \"rank\": 1484, \"rankvar\": 2193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 681, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2427, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1213, \"group\": [2717.0, 1168.0, 312.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55330_BALBc-1_X02_Y01_451_348\", \"ini\": 2144, \"clust\": 2622, \"rank\": 755, \"rankvar\": 2303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 682, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1072, \"cat-2\": \"Density: 25\", \"cat_2_index\": 632, \"group\": [2623.0, 1106.0, 287.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55345_BALBc-1_X02_Y01_451_533\", \"ini\": 2143, \"clust\": 2662, \"rank\": 2652, \"rankvar\": 2700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 683, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1726, \"cat-2\": \"Density: 27\", \"cat_2_index\": 916, \"group\": [2661.0, 1130.0, 297.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55441_BALBc-1_X02_Y01_452_672\", \"ini\": 2142, \"clust\": 1067, \"rank\": 541, \"rankvar\": 1468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 684, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2428, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1370, \"group\": [1067.0, 477.0, 138.0, 39.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56039_BALBc-1_X02_Y01_46_538\", \"ini\": 2141, \"clust\": 2805, \"rank\": 2576, \"rankvar\": 2695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 685, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2274, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1371, \"group\": [2810.0, 1218.0, 323.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56270_BALBc-1_X02_Y01_462_394\", \"ini\": 2140, \"clust\": 2057, \"rank\": 1648, \"rankvar\": 2648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 686, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2429, \"cat-2\": \"Density: 25\", \"cat_2_index\": 633, \"group\": [2055.0, 810.0, 210.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56966_BALBc-1_X02_Y01_470_546\", \"ini\": 2139, \"clust\": 2598, \"rank\": 395, \"rankvar\": 811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 687, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2275, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1501, \"group\": [2598.0, 1096.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57291_BALBc-1_X02_Y01_474_753\", \"ini\": 2138, \"clust\": 1336, \"rank\": 389, \"rankvar\": 204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 688, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1073, \"cat-2\": \"Density: 22\", \"cat_2_index\": 277, \"group\": [1337.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57690_BALBc-1_X02_Y01_479_652\", \"ini\": 2137, \"clust\": 2373, \"rank\": 981, \"rankvar\": 1124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 689, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1911, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1372, \"group\": [2374.0, 975.0, 256.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57946_BALBc-1_X02_Y01_482_291\", \"ini\": 2136, \"clust\": 2548, \"rank\": 2087, \"rankvar\": 2111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 690, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1912, \"cat-2\": \"Density: 23\", \"cat_2_index\": 386, \"group\": [2548.0, 1063.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58045_BALBc-1_X02_Y01_483_527\", \"ini\": 2135, \"clust\": 2770, \"rank\": 2715, \"rankvar\": 2808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 691, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1727, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1373, \"group\": [2772.0, 1199.0, 319.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58865_BALBc-1_X02_Y01_493_104\", \"ini\": 2134, \"clust\": 1414, \"rank\": 1123, \"rankvar\": 474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 692, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 684, \"cat-2\": \"Density: 24\", \"cat_2_index\": 491, \"group\": [1419.0, 588.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59155_BALBc-1_X02_Y01_496_623\", \"ini\": 2133, \"clust\": 2781, \"rank\": 2817, \"rankvar\": 2800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 693, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2276, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1502, \"group\": [2786.0, 1203.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59197_BALBc-1_X02_Y01_497_131\", \"ini\": 2132, \"clust\": 1651, \"rank\": 53, \"rankvar\": 29, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 694, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2277, \"cat-2\": \"Density: 25\", \"cat_2_index\": 634, \"group\": [1649.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59416_BALBc-1_X02_Y01_499_768\", \"ini\": 2131, \"clust\": 2513, \"rank\": 2239, \"rankvar\": 1741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 695, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1074, \"cat-2\": \"Density: 26\", \"cat_2_index\": 761, \"group\": [2518.0, 1045.0, 269.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59420_BALBc-1_X02_Y01_499_799\", \"ini\": 2130, \"clust\": 1000, \"rank\": 846, \"rankvar\": 2232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 696, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1075, \"cat-2\": \"Density: 25\", \"cat_2_index\": 635, \"group\": [1001.0, 428.0, 120.0, 33.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59463_BALBc-1_X02_Y01_5_879\", \"ini\": 2129, \"clust\": 2305, \"rank\": 1398, \"rankvar\": 802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 697, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2430, \"cat-2\": \"Density: 27\", \"cat_2_index\": 917, \"group\": [2305.0, 939.0, 245.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59517_BALBc-1_X02_Y01_50_888\", \"ini\": 2128, \"clust\": 1594, \"rank\": 129, \"rankvar\": 84, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 698, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2431, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1214, \"group\": [1594.0, 676.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59710_BALBc-1_X02_Y01_502_573\", \"ini\": 2127, \"clust\": 1605, \"rank\": 174, \"rankvar\": 650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 699, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2278, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1641, \"group\": [1606.0, 677.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59712_BALBc-1_X02_Y01_502_604\", \"ini\": 2126, \"clust\": 2386, \"rank\": 847, \"rankvar\": 1219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 700, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2279, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1952, \"group\": [2386.0, 982.0, 258.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59744_BALBc-1_X02_Y01_502_986\", \"ini\": 2125, \"clust\": 200, \"rank\": 1302, \"rankvar\": 617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 701, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1076, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2144, \"group\": [200.0, 100.0, 31.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60337_BALBc-1_X02_Y01_51_580\", \"ini\": 2124, \"clust\": 2638, \"rank\": 1132, \"rankvar\": 698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 702, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2280, \"cat-2\": \"Density: 27\", \"cat_2_index\": 918, \"group\": [2639.0, 1113.0, 290.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60489_BALBc-1_X02_Y01_511_561\", \"ini\": 2123, \"clust\": 2675, \"rank\": 2533, \"rankvar\": 2617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 703, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1728, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1751, \"group\": [2674.0, 1137.0, 299.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61166_BALBc-1_X02_Y01_52_424\", \"ini\": 2122, \"clust\": 2381, \"rank\": 469, \"rankvar\": 404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 704, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1077, \"cat-2\": \"Density: 24\", \"cat_2_index\": 492, \"group\": [2382.0, 979.0, 256.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61199_BALBc-1_X02_Y01_52_776\", \"ini\": 2121, \"clust\": 1510, \"rank\": 347, \"rankvar\": 789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 705, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2432, \"cat-2\": \"Density: 24\", \"cat_2_index\": 493, \"group\": [1511.0, 635.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61388_BALBc-1_X02_Y01_521_982\", \"ini\": 2120, \"clust\": 1057, \"rank\": 1797, \"rankvar\": 1838, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 706, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2235, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1953, \"group\": [1057.0, 469.0, 134.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62377_BALBc-1_X02_Y01_533_933\", \"ini\": 2119, \"clust\": 2755, \"rank\": 2359, \"rankvar\": 1807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 707, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1913, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1752, \"group\": [2757.0, 1191.0, 317.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62863_BALBc-1_X02_Y01_54_847\", \"ini\": 2118, \"clust\": 2655, \"rank\": 865, \"rankvar\": 1773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 708, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2485, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1072, \"group\": [2654.0, 1125.0, 294.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62911_BALBc-1_X02_Y01_540_549\", \"ini\": 2117, \"clust\": 2292, \"rank\": 2654, \"rankvar\": 2702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 709, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2433, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1073, \"group\": [2299.0, 933.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62931_BALBc-1_X02_Y01_540_834\", \"ini\": 2116, \"clust\": 1703, \"rank\": 22, \"rankvar\": 722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 710, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1914, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1503, \"group\": [1702.0, 679.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63142_BALBc-1_X02_Y01_543_585\", \"ini\": 2115, \"clust\": 2237, \"rank\": 2611, \"rankvar\": 2775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 711, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2281, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1215, \"group\": [2236.0, 905.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63191_BALBc-1_X02_Y01_543_972\", \"ini\": 2114, \"clust\": 2306, \"rank\": 2552, \"rankvar\": 2509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 712, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 807, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1753, \"group\": [2307.0, 941.0, 246.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63252_BALBc-1_X02_Y01_544_650\", \"ini\": 2113, \"clust\": 1523, \"rank\": 672, \"rankvar\": 2042, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 713, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2282, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1216, \"group\": [1521.0, 640.0, 174.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63692_BALBc-1_X02_Y01_55_1003\", \"ini\": 2112, \"clust\": 498, \"rank\": 2481, \"rankvar\": 2500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 714, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1078, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1374, \"group\": [501.0, 198.0, 55.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63713_BALBc-1_X02_Y01_55_344\", \"ini\": 2111, \"clust\": 2345, \"rank\": 837, \"rankvar\": 1114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 715, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1915, \"cat-2\": \"Density: 26\", \"cat_2_index\": 762, \"group\": [2347.0, 957.0, 249.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63995_BALBc-1_X02_Y01_552_987\", \"ini\": 2110, \"clust\": 1979, \"rank\": 1305, \"rankvar\": 1765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 716, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1079, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1642, \"group\": [1980.0, 776.0, 203.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64052_BALBc-1_X02_Y01_553_695\", \"ini\": 2109, \"clust\": 1177, \"rank\": 489, \"rankvar\": 1035, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 717, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2434, \"cat-2\": \"Density: 26\", \"cat_2_index\": 763, \"group\": [1177.0, 543.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64156_BALBc-1_X02_Y01_555_138\", \"ini\": 2108, \"clust\": 1395, \"rank\": 793, \"rankvar\": 895, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 718, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 685, \"cat-2\": \"Density: 26\", \"cat_2_index\": 764, \"group\": [1394.0, 583.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64283_BALBc-1_X02_Y01_556_902\", \"ini\": 2107, \"clust\": 2487, \"rank\": 2347, \"rankvar\": 2429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 719, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1916, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2145, \"group\": [2490.0, 1027.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64567_BALBc-1_X02_Y01_56_378\", \"ini\": 2106, \"clust\": 1065, \"rank\": 798, \"rankvar\": 372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 720, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2435, \"cat-2\": \"Density: 26\", \"cat_2_index\": 765, \"group\": [1065.0, 476.0, 138.0, 39.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64703_BALBc-1_X02_Y01_561_10\", \"ini\": 2105, \"clust\": 2042, \"rank\": 1178, \"rankvar\": 738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 721, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1729, \"cat-2\": \"Density: 15\", \"cat_2_index\": 43, \"group\": [2044.0, 806.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64934_BALBc-1_X02_Y01_564_219\", \"ini\": 2104, \"clust\": 2130, \"rank\": 635, \"rankvar\": 1163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 722, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2436, \"cat-2\": \"Density: 24\", \"cat_2_index\": 494, \"group\": [2132.0, 839.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65293_BALBc-1_X02_Y01_568_803\", \"ini\": 2103, \"clust\": 1879, \"rank\": 229, \"rankvar\": 775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 723, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1628, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1849, \"group\": [1880.0, 714.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65644_BALBc-1_X02_Y01_572_683\", \"ini\": 2102, \"clust\": 2798, \"rank\": 1612, \"rankvar\": 1554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 724, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 686, \"cat-2\": \"Density: 25\", \"cat_2_index\": 636, \"group\": [2798.0, 1212.0, 322.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66649_BALBc-1_X02_Y01_585_154\", \"ini\": 2101, \"clust\": 1312, \"rank\": 239, \"rankvar\": 34, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 725, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 687, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1217, \"group\": [1311.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67382_BALBc-1_X02_Y01_593_27\", \"ini\": 2100, \"clust\": 2516, \"rank\": 1830, \"rankvar\": 994, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 726, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2519, \"cat-2\": \"Density: 15\", \"cat_2_index\": 44, \"group\": [2514.0, 1043.0, 269.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67833_BALBc-1_X02_Y01_599_219\", \"ini\": 2099, \"clust\": 1579, \"rank\": 265, \"rankvar\": 544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 727, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2437, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1074, \"group\": [1579.0, 669.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68344_BALBc-1_X02_Y01_604_682\", \"ini\": 2098, \"clust\": 1120, \"rank\": 1176, \"rankvar\": 1065, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 728, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1917, \"cat-2\": \"Density: 26\", \"cat_2_index\": 766, \"group\": [1120.0, 511.0, 150.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68440_BALBc-1_X02_Y01_605_807\", \"ini\": 2097, \"clust\": 2778, \"rank\": 2718, \"rankvar\": 2790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 729, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 808, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1643, \"group\": [2779.0, 1203.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68443_BALBc-1_X02_Y01_605_835\", \"ini\": 2096, \"clust\": 2260, \"rank\": 629, \"rankvar\": 1168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 730, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1918, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1504, \"group\": [2264.0, 921.0, 240.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68542_BALBc-1_X02_Y01_607_143\", \"ini\": 2095, \"clust\": 60, \"rank\": 2506, \"rankvar\": 2419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 731, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 688, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1218, \"group\": [59.0, 39.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68978_BALBc-1_X02_Y01_611_516\", \"ini\": 2094, \"clust\": 2277, \"rank\": 2765, \"rankvar\": 2767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 732, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1919, \"cat-2\": \"Density: 25\", \"cat_2_index\": 637, \"group\": [2277.0, 927.0, 242.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69185_BALBc-1_X02_Y01_614_181\", \"ini\": 2093, \"clust\": 2810, \"rank\": 2393, \"rankvar\": 2351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 733, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 689, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1075, \"group\": [2811.0, 1219.0, 323.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70273_BALBc-1_X02_Y01_627_209\", \"ini\": 2092, \"clust\": 972, \"rank\": 1700, \"rankvar\": 2257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 734, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1730, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1219, \"group\": [975.0, 408.0, 111.0, 29.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70491_BALBc-1_X02_Y01_63_250\", \"ini\": 2091, \"clust\": 1701, \"rank\": 39, \"rankvar\": 160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 735, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1920, \"cat-2\": \"Density: 24\", \"cat_2_index\": 495, \"group\": [1700.0, 679.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71443_BALBc-1_X02_Y01_640_235\", \"ini\": 2090, \"clust\": 2408, \"rank\": 2629, \"rankvar\": 2783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 736, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2438, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1644, \"group\": [2408.0, 996.0, 262.0, 66.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71479_BALBc-1_X02_Y01_640_560\", \"ini\": 2089, \"clust\": 2463, \"rank\": 2173, \"rankvar\": 2247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 737, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2439, \"cat-2\": \"Density: 25\", \"cat_2_index\": 638, \"group\": [2464.0, 1018.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71570_BALBc-1_X02_Y01_642_167\", \"ini\": 2088, \"clust\": 1769, \"rank\": 623, \"rankvar\": 131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 738, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1731, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1076, \"group\": [1775.0, 684.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71733_BALBc-1_X02_Y01_643_984\", \"ini\": 2087, \"clust\": 2214, \"rank\": 2671, \"rankvar\": 2366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 739, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2283, \"cat-2\": \"Density: 27\", \"cat_2_index\": 919, \"group\": [2215.0, 899.0, 235.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71734_BALBc-1_X02_Y01_643_999\", \"ini\": 2086, \"clust\": 1714, \"rank\": 187, \"rankvar\": 699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 740, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1629, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1220, \"group\": [1714.0, 681.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72068_BALBc-1_X02_Y01_648_425\", \"ini\": 2085, \"clust\": 2625, \"rank\": 1766, \"rankvar\": 2280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 741, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1921, \"cat-2\": \"Density: 22\", \"cat_2_index\": 278, \"group\": [2625.0, 1107.0, 287.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72274_BALBc-1_X02_Y01_650_104\", \"ini\": 2084, \"clust\": 1534, \"rank\": 258, \"rankvar\": 525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 742, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 690, \"cat-2\": \"Density: 27\", \"cat_2_index\": 920, \"group\": [1536.0, 647.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72329_BALBc-1_X02_Y01_650_882\", \"ini\": 2083, \"clust\": 1427, \"rank\": 1090, \"rankvar\": 975, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 743, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1732, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1754, \"group\": [1428.0, 593.0, 160.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72440_BALBc-1_X02_Y01_652_474\", \"ini\": 2082, \"clust\": 2489, \"rank\": 2659, \"rankvar\": 2730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 744, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 809, \"cat-2\": \"Density: 26\", \"cat_2_index\": 767, \"group\": [2487.0, 1027.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73095_BALBc-1_X02_Y01_66_970\", \"ini\": 2081, \"clust\": 235, \"rank\": 1832, \"rankvar\": 1565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 745, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1080, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1755, \"group\": [236.0, 119.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73185_BALBc-1_X02_Y01_661_141\", \"ini\": 2080, \"clust\": 804, \"rank\": 1316, \"rankvar\": 1566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 746, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 810, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1221, \"group\": [807.0, 333.0, 94.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73278_BALBc-1_X02_Y01_661_947\", \"ini\": 2079, \"clust\": 2447, \"rank\": 1507, \"rankvar\": 2128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 747, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1081, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1077, \"group\": [2447.0, 1014.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73431_BALBc-1_X02_Y01_664_117\", \"ini\": 2078, \"clust\": 1906, \"rank\": 321, \"rankvar\": 1380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 748, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1630, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1222, \"group\": [1904.0, 724.0, 186.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73653_BALBc-1_X02_Y01_667_199\", \"ini\": 2077, \"clust\": 2629, \"rank\": 1893, \"rankvar\": 2325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 749, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1733, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1375, \"group\": [2628.0, 1108.0, 287.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73761_BALBc-1_X02_Y01_668_692\", \"ini\": 2076, \"clust\": 1276, \"rank\": 687, \"rankvar\": 518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 750, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2486, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1223, \"group\": [1279.0, 560.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74145_BALBc-1_X02_Y01_672_798\", \"ini\": 2075, \"clust\": 2441, \"rank\": 1670, \"rankvar\": 2355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 751, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1082, \"cat-2\": \"Density: 27\", \"cat_2_index\": 921, \"group\": [2441.0, 1013.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74412_BALBc-1_X02_Y01_675_754\", \"ini\": 2074, \"clust\": 987, \"rank\": 2786, \"rankvar\": 2659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 752, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1083, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1224, \"group\": [988.0, 416.0, 115.0, 31.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74523_BALBc-1_X02_Y01_677_25\", \"ini\": 2073, \"clust\": 2777, \"rank\": 2442, \"rankvar\": 1874, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 753, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 811, \"cat-2\": \"Density: 16\", \"cat_2_index\": 57, \"group\": [2780.0, 1203.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74897_BALBc-1_X02_Y01_681_262\", \"ini\": 2072, \"clust\": 156, \"rank\": 2679, \"rankvar\": 2780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 754, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1578, \"cat-2\": \"Density: 25\", \"cat_2_index\": 639, \"group\": [157.0, 74.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75174_BALBc-1_X02_Y01_685_173\", \"ini\": 2071, \"clust\": 1530, \"rank\": 466, \"rankvar\": 956, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 755, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 812, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1078, \"group\": [1533.0, 646.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75539_BALBc-1_X02_Y01_689_937\", \"ini\": 2070, \"clust\": 2315, \"rank\": 2774, \"rankvar\": 2711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 756, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1084, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1225, \"group\": [2316.0, 947.0, 247.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75915_BALBc-1_X02_Y01_694_130\", \"ini\": 2069, \"clust\": 1546, \"rank\": 341, \"rankvar\": 1170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 757, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1631, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1226, \"group\": [1546.0, 649.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75959_BALBc-1_X02_Y01_694_670\", \"ini\": 2068, \"clust\": 1897, \"rank\": 545, \"rankvar\": 725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 758, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2440, \"cat-2\": \"Density: 25\", \"cat_2_index\": 640, \"group\": [1901.0, 721.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76516_BALBc-1_X02_Y01_70_895\", \"ini\": 2067, \"clust\": 2677, \"rank\": 1922, \"rankvar\": 2768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 759, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2441, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1376, \"group\": [2676.0, 1137.0, 299.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77517_BALBc-1_X02_Y01_712_265\", \"ini\": 2066, \"clust\": 2522, \"rank\": 1997, \"rankvar\": 2367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 760, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 813, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1227, \"group\": [2523.0, 1050.0, 272.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77678_BALBc-1_X02_Y01_714_293\", \"ini\": 2065, \"clust\": 983, \"rank\": 2549, \"rankvar\": 2627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 761, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 814, \"cat-2\": \"Density: 27\", \"cat_2_index\": 922, \"group\": [984.0, 414.0, 115.0, 31.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77685_BALBc-1_X02_Y01_714_40\", \"ini\": 2064, \"clust\": 1907, \"rank\": 522, \"rankvar\": 1243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 762, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 815, \"cat-2\": \"Density: 23\", \"cat_2_index\": 387, \"group\": [1905.0, 724.0, 186.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77734_BALBc-1_X02_Y01_714_974\", \"ini\": 2063, \"clust\": 2530, \"rank\": 982, \"rankvar\": 1725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 763, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2284, \"cat-2\": \"Density: 27\", \"cat_2_index\": 923, \"group\": [2531.0, 1055.0, 274.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78145_BALBc-1_X02_Y01_72_12\", \"ini\": 2062, \"clust\": 1089, \"rank\": 754, \"rankvar\": 151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 764, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1922, \"cat-2\": \"Density: 13\", \"cat_2_index\": 15, \"group\": [1089.0, 492.0, 145.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78540_BALBc-1_X02_Y01_724_107\", \"ini\": 2061, \"clust\": 61, \"rank\": 2373, \"rankvar\": 2316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 765, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 816, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1377, \"group\": [60.0, 39.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79190_BALBc-1_X02_Y01_731_769\", \"ini\": 2060, \"clust\": 2402, \"rank\": 1643, \"rankvar\": 2311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 766, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1085, \"cat-2\": \"Density: 27\", \"cat_2_index\": 924, \"group\": [2402.0, 992.0, 261.0, 65.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79300_BALBc-1_X02_Y01_733_29\", \"ini\": 2059, \"clust\": 2124, \"rank\": 734, \"rankvar\": 595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 767, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1543, \"cat-2\": \"Density: 20\", \"cat_2_index\": 151, \"group\": [2123.0, 836.0, 215.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79428_BALBc-1_X02_Y01_734_627\", \"ini\": 2058, \"clust\": 2405, \"rank\": 2057, \"rankvar\": 2637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 768, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2236, \"cat-2\": \"Density: 25\", \"cat_2_index\": 641, \"group\": [2405.0, 994.0, 262.0, 66.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79624_BALBc-1_X02_Y01_737_12\", \"ini\": 2057, \"clust\": 1963, \"rank\": 406, \"rankvar\": 646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 769, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 37, \"cat-2\": \"Density: 18\", \"cat_2_index\": 94, \"group\": [1961.0, 763.0, 197.0, 52.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80316_BALBc-1_X02_Y01_745_334\", \"ini\": 2056, \"clust\": 988, \"rank\": 2721, \"rankvar\": 2563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 770, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1923, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1079, \"group\": [989.0, 417.0, 115.0, 31.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80359_BALBc-1_X02_Y01_745_91\", \"ini\": 2055, \"clust\": 1893, \"rank\": 71, \"rankvar\": 219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 771, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 817, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1756, \"group\": [1893.0, 718.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80734_BALBc-1_X02_Y01_75_602\", \"ini\": 2054, \"clust\": 2803, \"rank\": 2227, \"rankvar\": 2169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 772, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2285, \"cat-2\": \"Density: 26\", \"cat_2_index\": 768, \"group\": [2803.0, 1216.0, 323.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81293_BALBc-1_X02_Y01_756_706\", \"ini\": 2053, \"clust\": 2363, \"rank\": 1587, \"rankvar\": 1909, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 773, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2237, \"cat-2\": \"Density: 24\", \"cat_2_index\": 496, \"group\": [2368.0, 971.0, 253.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81486_BALBc-1_X02_Y01_759_199\", \"ini\": 2052, \"clust\": 2170, \"rank\": 1303, \"rankvar\": 1575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 774, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1086, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1505, \"group\": [2171.0, 863.0, 223.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81590_BALBc-1_X02_Y01_76_583\", \"ini\": 2051, \"clust\": 1496, \"rank\": 490, \"rankvar\": 2281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 775, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2286, \"cat-2\": \"Density: 25\", \"cat_2_index\": 642, \"group\": [1495.0, 629.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81902_BALBc-1_X02_Y01_763_671\", \"ini\": 2050, \"clust\": 2424, \"rank\": 2726, \"rankvar\": 2425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 776, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 818, \"cat-2\": \"Density: 26\", \"cat_2_index\": 769, \"group\": [2428.0, 1007.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82140_BALBc-1_X02_Y01_767_163\", \"ini\": 2049, \"clust\": 48, \"rank\": 1954, \"rankvar\": 2417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 777, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2287, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1954, \"group\": [46.0, 28.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82308_BALBc-1_X02_Y01_768_99\", \"ini\": 2048, \"clust\": 2821, \"rank\": 1424, \"rankvar\": 1512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 778, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1544, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1645, \"group\": [2822.0, 1227.0, 326.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82369_BALBc-1_X02_Y01_769_770\", \"ini\": 2047, \"clust\": 1286, \"rank\": 176, \"rankvar\": 732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 779, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1632, \"cat-2\": \"Density: 25\", \"cat_2_index\": 643, \"group\": [1289.0, 564.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83169_BALBc-1_X02_Y01_779_23\", \"ini\": 2046, \"clust\": 1682, \"rank\": 202, \"rankvar\": 0, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 780, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1087, \"cat-2\": \"Density: 24\", \"cat_2_index\": 497, \"group\": [1687.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83364_BALBc-1_X02_Y01_780_79\", \"ini\": 2045, \"clust\": 1761, \"rank\": 76, \"rankvar\": 91, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 781, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1545, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1757, \"group\": [1759.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84196_BALBc-1_X02_Y01_790_748\", \"ini\": 2044, \"clust\": 2665, \"rank\": 2790, \"rankvar\": 2817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 782, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2487, \"cat-2\": \"Density: 24\", \"cat_2_index\": 498, \"group\": [2666.0, 1133.0, 297.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84357_BALBc-1_X02_Y01_792_686\", \"ini\": 2043, \"clust\": 2618, \"rank\": 1412, \"rankvar\": 1477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 783, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 819, \"cat-2\": \"Density: 22\", \"cat_2_index\": 279, \"group\": [2621.0, 1105.0, 287.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84582_BALBc-1_X02_Y01_795_344\", \"ini\": 2042, \"clust\": 2281, \"rank\": 1776, \"rankvar\": 1079, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 784, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2288, \"cat-2\": \"Density: 25\", \"cat_2_index\": 644, \"group\": [2284.0, 930.0, 242.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84699_BALBc-1_X02_Y01_796_71\", \"ini\": 2041, \"clust\": 508, \"rank\": 1822, \"rankvar\": 1665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 785, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2289, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1646, \"group\": [509.0, 205.0, 58.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85322_BALBc-1_X02_Y01_802_832\", \"ini\": 2040, \"clust\": 1590, \"rank\": 152, \"rankvar\": 1133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 786, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1924, \"cat-2\": \"Density: 27\", \"cat_2_index\": 925, \"group\": [1589.0, 673.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85337_BALBc-1_X02_Y01_803_103\", \"ini\": 2039, \"clust\": 2586, \"rank\": 1326, \"rankvar\": 263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 787, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 943, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1850, \"group\": [2587.0, 1088.0, 283.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85500_BALBc-1_X02_Y01_805_277\", \"ini\": 2038, \"clust\": 2240, \"rank\": 2524, \"rankvar\": 2388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 788, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2488, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1378, \"group\": [2238.0, 906.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85553_BALBc-1_X02_Y01_805_711\", \"ini\": 2037, \"clust\": 593, \"rank\": 1485, \"rankvar\": 1663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 789, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2442, \"cat-2\": \"Density: 23\", \"cat_2_index\": 388, \"group\": [594.0, 254.0, 75.0, 19.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85954_BALBc-1_X02_Y01_810_220\", \"ini\": 2036, \"clust\": 548, \"rank\": 2435, \"rankvar\": 1781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 790, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2290, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1647, \"group\": [552.0, 225.0, 66.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86607_BALBc-1_X02_Y01_818_617\", \"ini\": 2035, \"clust\": 2302, \"rank\": 2571, \"rankvar\": 2461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 791, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 820, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1080, \"group\": [2301.0, 935.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86719_BALBc-1_X02_Y01_82_404\", \"ini\": 2034, \"clust\": 2503, \"rank\": 1694, \"rankvar\": 696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 792, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1088, \"cat-2\": \"Density: 26\", \"cat_2_index\": 770, \"group\": [2502.0, 1032.0, 268.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87009_BALBc-1_X02_Y01_822_96\", \"ini\": 2033, \"clust\": 2500, \"rank\": 1728, \"rankvar\": 990, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 793, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1734, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2222, \"group\": [2505.0, 1035.0, 268.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87084_BALBc-1_X02_Y01_823_81\", \"ini\": 2032, \"clust\": 1977, \"rank\": 741, \"rankvar\": 2253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 794, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1735, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1851, \"group\": [1975.0, 773.0, 202.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87109_BALBc-1_X02_Y01_824_179\", \"ini\": 2031, \"clust\": 33, \"rank\": 1226, \"rankvar\": 2551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 795, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2291, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1852, \"group\": [36.0, 22.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87294_BALBc-1_X02_Y01_826_54\", \"ini\": 2030, \"clust\": 2393, \"rank\": 1109, \"rankvar\": 763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 796, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1736, \"cat-2\": \"Density: 26\", \"cat_2_index\": 771, \"group\": [2394.0, 987.0, 259.0, 65.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87491_BALBc-1_X02_Y01_828_989\", \"ini\": 2029, \"clust\": 2505, \"rank\": 1887, \"rankvar\": 760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 797, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1925, \"cat-2\": \"Density: 26\", \"cat_2_index\": 772, \"group\": [2501.0, 1032.0, 268.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87558_BALBc-1_X02_Y01_829_961\", \"ini\": 2028, \"clust\": 2600, \"rank\": 924, \"rankvar\": 1802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 798, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 821, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1081, \"group\": [2601.0, 1097.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87735_BALBc-1_X02_Y01_831_448\", \"ini\": 2027, \"clust\": 2288, \"rank\": 1834, \"rankvar\": 2333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 799, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2443, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1379, \"group\": [2287.0, 932.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87925_BALBc-1_X02_Y01_834_297\", \"ini\": 2026, \"clust\": 2416, \"rank\": 2352, \"rankvar\": 2056, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 800, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1926, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1380, \"group\": [2419.0, 1005.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88101_BALBc-1_X02_Y01_836_594\", \"ini\": 2025, \"clust\": 2351, \"rank\": 526, \"rankvar\": 1352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 801, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1927, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1082, \"group\": [2350.0, 959.0, 250.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88212_BALBc-1_X02_Y01_837_889\", \"ini\": 2024, \"clust\": 2575, \"rank\": 1844, \"rankvar\": 1846, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 802, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1928, \"cat-2\": \"Density: 27\", \"cat_2_index\": 926, \"group\": [2577.0, 1078.0, 278.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88228_BALBc-1_X02_Y01_838_199\", \"ini\": 2023, \"clust\": 2652, \"rank\": 1415, \"rankvar\": 1822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 803, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 822, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1955, \"group\": [2659.0, 1128.0, 295.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88242_BALBc-1_X02_Y01_838_433\", \"ini\": 2022, \"clust\": 2349, \"rank\": 1953, \"rankvar\": 2069, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 804, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1737, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1228, \"group\": [2353.0, 960.0, 250.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88501_BALBc-1_X02_Y01_840_810\", \"ini\": 2021, \"clust\": 2128, \"rank\": 283, \"rankvar\": 1110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 805, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1929, \"cat-2\": \"Density: 23\", \"cat_2_index\": 389, \"group\": [2128.0, 838.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88562_BALBc-1_X02_Y01_841_513\", \"ini\": 2020, \"clust\": 1465, \"rank\": 1244, \"rankvar\": 2155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 806, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1930, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1956, \"group\": [1465.0, 615.0, 166.0, 45.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88609_BALBc-1_X02_Y01_842_154\", \"ini\": 2019, \"clust\": 30, \"rank\": 1780, \"rankvar\": 1862, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 807, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1738, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2146, \"group\": [33.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88759_BALBc-1_X02_Y01_844_26\", \"ini\": 2018, \"clust\": 2347, \"rank\": 380, \"rankvar\": 1729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 808, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2444, \"cat-2\": \"Density: 20\", \"cat_2_index\": 152, \"group\": [2346.0, 956.0, 249.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88814_BALBc-1_X02_Y01_844_864\", \"ini\": 2017, \"clust\": 2762, \"rank\": 2328, \"rankvar\": 2079, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 809, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1931, \"cat-2\": \"Density: 27\", \"cat_2_index\": 927, \"group\": [2761.0, 1193.0, 317.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88845_BALBc-1_X02_Y01_845_321\", \"ini\": 2016, \"clust\": 2696, \"rank\": 1035, \"rankvar\": 2252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 810, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1739, \"cat-2\": \"Density: 27\", \"cat_2_index\": 928, \"group\": [2697.0, 1153.0, 307.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89110_BALBc-1_X02_Y01_848_694\", \"ini\": 2015, \"clust\": 2361, \"rank\": 1005, \"rankvar\": 2040, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 811, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2238, \"cat-2\": \"Density: 22\", \"cat_2_index\": 280, \"group\": [2362.0, 967.0, 251.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90038_BALBc-1_X02_Y01_859_742\", \"ini\": 2014, \"clust\": 1549, \"rank\": 1118, \"rankvar\": 1829, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 812, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1932, \"cat-2\": \"Density: 26\", \"cat_2_index\": 773, \"group\": [1550.0, 650.0, 177.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90134_BALBc-1_X02_Y01_86_851\", \"ini\": 2013, \"clust\": 1515, \"rank\": 1133, \"rankvar\": 2072, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 813, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 691, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1648, \"group\": [1516.0, 638.0, 172.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91113_BALBc-1_X02_Y01_871_608\", \"ini\": 2012, \"clust\": 2502, \"rank\": 1924, \"rankvar\": 2194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 814, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1633, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1381, \"group\": [2503.0, 1033.0, 268.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91313_BALBc-1_X02_Y01_874_166\", \"ini\": 2011, \"clust\": 15, \"rank\": 1885, \"rankvar\": 2011, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 815, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1740, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2223, \"group\": [16.0, 11.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91333_BALBc-1_X02_Y01_874_423\", \"ini\": 2010, \"clust\": 2427, \"rank\": 2613, \"rankvar\": 2314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 816, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1933, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1382, \"group\": [2426.0, 1007.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91389_BALBc-1_X02_Y01_875_273\", \"ini\": 2009, \"clust\": 2336, \"rank\": 1866, \"rankvar\": 2304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 817, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1934, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1853, \"group\": [2336.0, 950.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91790_BALBc-1_X02_Y01_88_353\", \"ini\": 2008, \"clust\": 2369, \"rank\": 1145, \"rankvar\": 288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 818, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1935, \"cat-2\": \"Density: 27\", \"cat_2_index\": 929, \"group\": [2371.0, 973.0, 254.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91944_BALBc-1_X02_Y01_881_300\", \"ini\": 2007, \"clust\": 2384, \"rank\": 476, \"rankvar\": 251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 819, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 823, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1383, \"group\": [2384.0, 980.0, 257.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92119_BALBc-1_X02_Y01_883_690\", \"ini\": 2006, \"clust\": 2375, \"rank\": 961, \"rankvar\": 1693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 820, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2445, \"cat-2\": \"Density: 24\", \"cat_2_index\": 499, \"group\": [2376.0, 976.0, 256.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92234_BALBc-1_X02_Y01_885_483\", \"ini\": 2005, \"clust\": 2698, \"rank\": 2062, \"rankvar\": 1702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 821, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1936, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2063, \"group\": [2700.0, 1155.0, 308.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92639_BALBc-1_X02_Y01_89_950\", \"ini\": 2004, \"clust\": 2209, \"rank\": 2213, \"rankvar\": 2584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 822, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 824, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1957, \"group\": [2209.0, 893.0, 234.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92716_BALBc-1_X02_Y01_890_939\", \"ini\": 2003, \"clust\": 1618, \"rank\": 91, \"rankvar\": 175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 823, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1089, \"cat-2\": \"Density: 25\", \"cat_2_index\": 645, \"group\": [1628.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92826_BALBc-1_X02_Y01_892_493\", \"ini\": 2002, \"clust\": 2476, \"rank\": 1309, \"rankvar\": 2089, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 824, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1937, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1758, \"group\": [2475.0, 1021.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92861_BALBc-1_X02_Y01_892_982\", \"ini\": 2001, \"clust\": 1683, \"rank\": 213, \"rankvar\": 17, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 825, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 825, \"cat-2\": \"Density: 26\", \"cat_2_index\": 774, \"group\": [1683.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93022_BALBc-1_X02_Y01_894_971\", \"ini\": 2000, \"clust\": 2506, \"rank\": 2698, \"rankvar\": 2369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 826, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1090, \"cat-2\": \"Density: 26\", \"cat_2_index\": 775, \"group\": [2509.0, 1039.0, 269.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93068_BALBc-1_X02_Y01_895_559\", \"ini\": 1999, \"clust\": 2648, \"rank\": 1256, \"rankvar\": 2368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 827, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1938, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1854, \"group\": [2651.0, 1122.0, 292.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93323_BALBc-1_X02_Y01_898_909\", \"ini\": 1998, \"clust\": 1544, \"rank\": 180, \"rankvar\": 928, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 828, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1091, \"cat-2\": \"Density: 26\", \"cat_2_index\": 776, \"group\": [1541.0, 648.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93904_BALBc-1_X02_Y01_905_249\", \"ini\": 1997, \"clust\": 2223, \"rank\": 1929, \"rankvar\": 2519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 829, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 826, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2147, \"group\": [2224.0, 903.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93971_BALBc-1_X02_Y01_906_130\", \"ini\": 1996, \"clust\": 561, \"rank\": 2750, \"rankvar\": 2729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 830, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1741, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2148, \"group\": [559.0, 231.0, 68.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94356_BALBc-1_X02_Y01_910_484\", \"ini\": 1995, \"clust\": 2353, \"rank\": 1193, \"rankvar\": 1766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 831, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2446, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1759, \"group\": [2352.0, 959.0, 250.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94868_BALBc-1_X02_Y01_917_430\", \"ini\": 1994, \"clust\": 2490, \"rank\": 2572, \"rankvar\": 2644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 832, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1939, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1229, \"group\": [2488.0, 1027.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95225_BALBc-1_X02_Y01_920_863\", \"ini\": 1993, \"clust\": 1521, \"rank\": 646, \"rankvar\": 559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 833, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1940, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1384, \"group\": [1522.0, 640.0, 174.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95582_BALBc-1_X02_Y01_925_541\", \"ini\": 1992, \"clust\": 2680, \"rank\": 1988, \"rankvar\": 2754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 834, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1941, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1855, \"group\": [2679.0, 1137.0, 299.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95746_BALBc-1_X02_Y01_927_54\", \"ini\": 1991, \"clust\": 2563, \"rank\": 2155, \"rankvar\": 2539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 835, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1742, \"cat-2\": \"Density: 21\", \"cat_2_index\": 202, \"group\": [2562.0, 1068.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96191_BALBc-1_X02_Y01_932_492\", \"ini\": 1990, \"clust\": 2431, \"rank\": 2675, \"rankvar\": 2206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 836, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1942, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1958, \"group\": [2430.0, 1008.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96279_BALBc-1_X02_Y01_933_566\", \"ini\": 1989, \"clust\": 2177, \"rank\": 1395, \"rankvar\": 1605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 837, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1092, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1506, \"group\": [2177.0, 868.0, 226.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96334_BALBc-1_X02_Y01_934_380\", \"ini\": 1988, \"clust\": 2435, \"rank\": 1432, \"rankvar\": 2054, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 838, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1943, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1083, \"group\": [2438.0, 1012.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96344_BALBc-1_X02_Y01_934_613\", \"ini\": 1987, \"clust\": 2238, \"rank\": 2521, \"rankvar\": 2680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 839, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2489, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1507, \"group\": [2239.0, 906.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96459_BALBc-1_X02_Y01_935_966\", \"ini\": 1986, \"clust\": 2157, \"rank\": 1427, \"rankvar\": 1790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 840, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1093, \"cat-2\": \"Density: 26\", \"cat_2_index\": 777, \"group\": [2163.0, 857.0, 222.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96674_BALBc-1_X02_Y01_939_112\", \"ini\": 1985, \"clust\": 2724, \"rank\": 2649, \"rankvar\": 2184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 841, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 944, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1760, \"group\": [2723.0, 1173.0, 314.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97053_BALBc-1_X02_Y01_943_180\", \"ini\": 1984, \"clust\": 2420, \"rank\": 1991, \"rankvar\": 2174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 842, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1944, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1959, \"group\": [2421.0, 1006.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97263_BALBc-1_X02_Y01_945_522\", \"ini\": 1983, \"clust\": 2465, \"rank\": 2223, \"rankvar\": 2728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 843, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2292, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1960, \"group\": [2461.0, 1018.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97534_BALBc-1_X02_Y01_949_394\", \"ini\": 1982, \"clust\": 2333, \"rank\": 1740, \"rankvar\": 2164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 844, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1945, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1385, \"group\": [2331.0, 949.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98149_BALBc-1_X02_Y01_956_248\", \"ini\": 1981, \"clust\": 2748, \"rank\": 1729, \"rankvar\": 2224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 845, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 827, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1649, \"group\": [2748.0, 1186.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98727_BALBc-1_X02_Y01_963_190\", \"ini\": 1980, \"clust\": 1617, \"rank\": 168, \"rankvar\": 433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 846, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 828, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2064, \"group\": [1629.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98778_BALBc-1_X02_Y01_963_859\", \"ini\": 1979, \"clust\": 2459, \"rank\": 2093, \"rankvar\": 2370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 847, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1094, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1230, \"group\": [2466.0, 1018.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98945_BALBc-1_X02_Y01_966_166\", \"ini\": 1978, \"clust\": 1604, \"rank\": 270, \"rankvar\": 59, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 848, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1946, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1856, \"group\": [1604.0, 677.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99117_BALBc-1_X02_Y01_968_271\", \"ini\": 1977, \"clust\": 2387, \"rank\": 665, \"rankvar\": 1681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 849, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1947, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1650, \"group\": [2387.0, 982.0, 258.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99166_BALBc-1_X02_Y01_968_799\", \"ini\": 1976, \"clust\": 2428, \"rank\": 2762, \"rankvar\": 2432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 850, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1948, \"cat-2\": \"Density: 27\", \"cat_2_index\": 930, \"group\": [2427.0, 1007.0, 265.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99323_BALBc-1_X02_Y01_97_873\", \"ini\": 1975, \"clust\": 1942, \"rank\": 695, \"rankvar\": 310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 851, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2447, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1651, \"group\": [1945.0, 751.0, 192.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99561_BALBc-1_X02_Y01_973_197\", \"ini\": 1974, \"clust\": 653, \"rank\": 1223, \"rankvar\": 828, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 852, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 829, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2065, \"group\": [656.0, 275.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99777_BALBc-1_X02_Y01_975_860\", \"ini\": 1973, \"clust\": 2610, \"rank\": 894, \"rankvar\": 1544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 853, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1949, \"cat-2\": \"Density: 26\", \"cat_2_index\": 778, \"group\": [2614.0, 1102.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100239_BALBc-1_X02_Y01_981_12\", \"ini\": 1972, \"clust\": 2339, \"rank\": 705, \"rankvar\": 898, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 854, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1950, \"cat-2\": \"Density: 13\", \"cat_2_index\": 16, \"group\": [2344.0, 955.0, 249.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100387_BALBc-1_X02_Y01_983_285\", \"ini\": 1971, \"clust\": 1791, \"rank\": 185, \"rankvar\": 1117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 855, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1951, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1508, \"group\": [1792.0, 688.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100684_BALBc-1_X02_Y01_987_235\", \"ini\": 1970, \"clust\": 2557, \"rank\": 2463, \"rankvar\": 2691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 856, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 830, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1761, \"group\": [2558.0, 1067.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100729_BALBc-1_X02_Y01_987_776\", \"ini\": 1969, \"clust\": 1068, \"rank\": 914, \"rankvar\": 1188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 857, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1743, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1084, \"group\": [1068.0, 478.0, 138.0, 39.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101299_BALBc-1_X02_Y01_994_207\", \"ini\": 1968, \"clust\": 2358, \"rank\": 1259, \"rankvar\": 2008, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 858, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1095, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1961, \"group\": [2359.0, 965.0, 251.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101376_BALBc-1_X02_Y01_995_115\", \"ini\": 1967, \"clust\": 2752, \"rank\": 2636, \"rankvar\": 2683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 859, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1952, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1386, \"group\": [2750.0, 1187.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101379_BALBc-1_X02_Y01_995_125\", \"ini\": 1966, \"clust\": 2466, \"rank\": 2270, \"rankvar\": 2743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 860, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1953, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1387, \"group\": [2462.0, 1018.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101762_BALBc-1_X02_Y01_999_749\", \"ini\": 1965, \"clust\": 2492, \"rank\": 2196, \"rankvar\": 2482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 861, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1954, \"cat-2\": \"Density: 26\", \"cat_2_index\": 779, \"group\": [2494.0, 1028.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-814_BALBc-1_X01_Y02_1000_470\", \"ini\": 1964, \"clust\": 1371, \"rank\": 1516, \"rankvar\": 1050, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 862, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2520, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2542, \"group\": [1369.0, 577.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1027_BALBc-1_X01_Y02_1003_258\", \"ini\": 1963, \"clust\": 880, \"rank\": 2112, \"rankvar\": 2209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 863, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2521, \"cat-2\": \"Density: 27\", \"cat_2_index\": 931, \"group\": [878.0, 373.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1035_BALBc-1_X01_Y02_1003_353\", \"ini\": 1962, \"clust\": 1447, \"rank\": 457, \"rankvar\": 120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 864, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 38, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2365, \"group\": [1448.0, 606.0, 163.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1100_BALBc-1_X01_Y02_1004_310\", \"ini\": 1961, \"clust\": 1805, \"rank\": 401, \"rankvar\": 708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 865, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 39, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1652, \"group\": [1805.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1200_BALBc-1_X01_Y02_1005_707\", \"ini\": 1960, \"clust\": 2063, \"rank\": 992, \"rankvar\": 408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 866, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1096, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2503, \"group\": [2067.0, 822.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1322_BALBc-1_X01_Y02_1007_204\", \"ini\": 1959, \"clust\": 798, \"rank\": 1591, \"rankvar\": 1755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 867, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 40, \"cat-2\": \"Density: 25\", \"cat_2_index\": 646, \"group\": [798.0, 331.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1434_BALBc-1_X01_Y02_1008_667\", \"ini\": 1958, \"clust\": 52, \"rank\": 2127, \"rankvar\": 2026, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 868, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 41, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2543, \"group\": [55.0, 35.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1462_BALBc-1_X01_Y02_1008_96\", \"ini\": 1957, \"clust\": 1705, \"rank\": 201, \"rankvar\": 192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 869, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2522, \"cat-2\": \"Density: 26\", \"cat_2_index\": 780, \"group\": [1705.0, 679.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1655_BALBc-1_X01_Y02_1010_300\", \"ini\": 1956, \"clust\": 2043, \"rank\": 766, \"rankvar\": 1402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 870, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 42, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1762, \"group\": [2043.0, 806.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1685_BALBc-1_X01_Y02_1010_638\", \"ini\": 1955, \"clust\": 1698, \"rank\": 343, \"rankvar\": 458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 871, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1992, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2544, \"group\": [1707.0, 679.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1696_BALBc-1_X01_Y02_1010_759\", \"ini\": 1954, \"clust\": 1453, \"rank\": 978, \"rankvar\": 271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 872, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1097, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2424, \"group\": [1463.0, 613.0, 165.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1730_BALBc-1_X01_Y02_1011_325\", \"ini\": 1953, \"clust\": 1912, \"rank\": 1269, \"rankvar\": 748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 873, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 43, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2066, \"group\": [1913.0, 731.0, 188.0, 49.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1847_BALBc-1_X01_Y02_1012_897\", \"ini\": 1952, \"clust\": 1752, \"rank\": 17, \"rankvar\": 322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 874, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1098, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2299, \"group\": [1750.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1915_BALBc-1_X01_Y02_1013_615\", \"ini\": 1951, \"clust\": 702, \"rank\": 2691, \"rankvar\": 2285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 875, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1993, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2651, \"group\": [700.0, 285.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2124_BALBc-1_X01_Y02_1016_391\", \"ini\": 1950, \"clust\": 680, \"rank\": 1934, \"rankvar\": 1047, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 876, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 44, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2773, \"group\": [680.0, 279.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2204_BALBc-1_X01_Y02_1017_547\", \"ini\": 1949, \"clust\": 2027, \"rank\": 833, \"rankvar\": 909, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 877, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 45, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2652, \"group\": [2026.0, 802.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2235_BALBc-1_X01_Y02_1017_848\", \"ini\": 1948, \"clust\": 1954, \"rank\": 749, \"rankvar\": 387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 878, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1099, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2504, \"group\": [1955.0, 757.0, 194.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2283_BALBc-1_X01_Y02_1018_442\", \"ini\": 1947, \"clust\": 354, \"rank\": 2583, \"rankvar\": 1894, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 879, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2523, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2733, \"group\": [351.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2353_BALBc-1_X01_Y02_1019_489\", \"ini\": 1946, \"clust\": 990, \"rank\": 2589, \"rankvar\": 2746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 880, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2524, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2734, \"group\": [990.0, 418.0, 116.0, 31.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2355_BALBc-1_X01_Y02_1019_507\", \"ini\": 1945, \"clust\": 657, \"rank\": 2416, \"rankvar\": 2090, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 881, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 46, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2593, \"group\": [684.0, 280.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2384_BALBc-1_X01_Y02_1019_836\", \"ini\": 1944, \"clust\": 143, \"rank\": 2128, \"rankvar\": 2544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 882, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1634, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2594, \"group\": [146.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2557_BALBc-1_X01_Y02_1021_285\", \"ini\": 1943, \"clust\": 1615, \"rank\": 109, \"rankvar\": 554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 883, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 47, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1388, \"group\": [1614.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2591_BALBc-1_X01_Y02_1021_733\", \"ini\": 1942, \"clust\": 1356, \"rank\": 346, \"rankvar\": 574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 884, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1100, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2425, \"group\": [1353.0, 571.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2671_BALBc-1_X01_Y02_1022_672\", \"ini\": 1941, \"clust\": 1542, \"rank\": 128, \"rankvar\": 977, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 885, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1101, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2505, \"group\": [1542.0, 648.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2730_BALBc-1_X01_Y02_1023_412\", \"ini\": 1940, \"clust\": 2044, \"rank\": 976, \"rankvar\": 1782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 886, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2525, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2696, \"group\": [2041.0, 806.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2766_BALBc-1_X01_Y02_1023_779\", \"ini\": 1939, \"clust\": 737, \"rank\": 2250, \"rankvar\": 1341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 887, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1102, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2426, \"group\": [738.0, 300.0, 85.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2827_BALBc-1_X01_Y02_1024_575\", \"ini\": 1938, \"clust\": 337, \"rank\": 2763, \"rankvar\": 2228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 888, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 48, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2595, \"group\": [334.0, 142.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2833_BALBc-1_X01_Y02_1024_621\", \"ini\": 1937, \"clust\": 126, \"rank\": 2005, \"rankvar\": 1924, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 889, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 49, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2596, \"group\": [125.0, 72.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2893_BALBc-1_X01_Y02_1025_369\", \"ini\": 1936, \"clust\": 219, \"rank\": 1220, \"rankvar\": 1465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 890, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1635, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2506, \"group\": [219.0, 110.0, 36.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2964_BALBc-1_X01_Y02_1026_323\", \"ini\": 1935, \"clust\": 624, \"rank\": 1413, \"rankvar\": 265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 891, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 50, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1857, \"group\": [625.0, 270.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3081_BALBc-1_X01_Y02_1027_596\", \"ini\": 1934, \"clust\": 1647, \"rank\": 64, \"rankvar\": 8, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 892, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 51, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2653, \"group\": [1642.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3102_BALBc-1_X01_Y02_1027_8\", \"ini\": 1933, \"clust\": 1735, \"rank\": 120, \"rankvar\": 110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 893, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1636, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1763, \"group\": [1738.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3134_BALBc-1_X01_Y02_1028_174\", \"ini\": 1932, \"clust\": 802, \"rank\": 1124, \"rankvar\": 1259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 894, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1103, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1085, \"group\": [800.0, 331.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3301_BALBc-1_X01_Y02_103_274\", \"ini\": 1931, \"clust\": 2806, \"rank\": 2205, \"rankvar\": 2607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 895, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1104, \"cat-2\": \"Density: 25\", \"cat_2_index\": 647, \"group\": [2809.0, 1218.0, 323.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3362_BALBc-1_X01_Y02_1030_122\", \"ini\": 1930, \"clust\": 844, \"rank\": 2466, \"rankvar\": 1668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 896, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 692, \"cat-2\": \"Density: 24\", \"cat_2_index\": 500, \"group\": [845.0, 354.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3370_BALBc-1_X01_Y02_1030_219\", \"ini\": 1929, \"clust\": 855, \"rank\": 2083, \"rankvar\": 2571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 897, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1105, \"cat-2\": \"Density: 27\", \"cat_2_index\": 932, \"group\": [855.0, 358.0, 99.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3687_BALBc-1_X01_Y02_1034_469\", \"ini\": 1928, \"clust\": 274, \"rank\": 1234, \"rankvar\": 1823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 898, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2526, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2735, \"group\": [272.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3758_BALBc-1_X01_Y02_1035_352\", \"ini\": 1927, \"clust\": 1748, \"rank\": 58, \"rankvar\": 162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 899, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1637, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2427, \"group\": [1747.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3764_BALBc-1_X01_Y02_1035_406\", \"ini\": 1926, \"clust\": 372, \"rank\": 2380, \"rankvar\": 1966, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 900, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1638, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2597, \"group\": [411.0, 155.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4026_BALBc-1_X01_Y02_1038_521\", \"ini\": 1925, \"clust\": 622, \"rank\": 1777, \"rankvar\": 653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 901, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 52, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2736, \"group\": [623.0, 268.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4053_BALBc-1_X01_Y02_1038_905\", \"ini\": 1924, \"clust\": 133, \"rank\": 2405, \"rankvar\": 2522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 902, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1744, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2149, \"group\": [134.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4056_BALBc-1_X01_Y02_1038_930\", \"ini\": 1923, \"clust\": 1824, \"rank\": 302, \"rankvar\": 356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 903, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1106, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1509, \"group\": [1825.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4110_BALBc-1_X01_Y02_1039_579\", \"ini\": 1922, \"clust\": 425, \"rank\": 1754, \"rankvar\": 657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 904, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 53, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2598, \"group\": [425.0, 163.0, 43.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4115_BALBc-1_X01_Y02_1039_648\", \"ini\": 1921, \"clust\": 145, \"rank\": 1958, \"rankvar\": 2497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 905, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1107, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2428, \"group\": [144.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4300_BALBc-1_X01_Y02_1041_266\", \"ini\": 1920, \"clust\": 2740, \"rank\": 2737, \"rankvar\": 2566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 906, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 54, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1231, \"group\": [2739.0, 1183.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4313_BALBc-1_X01_Y02_1041_433\", \"ini\": 1919, \"clust\": 205, \"rank\": 2182, \"rankvar\": 2642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 907, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2527, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2697, \"group\": [204.0, 102.0, 32.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4822_BALBc-1_X01_Y02_1047_721\", \"ini\": 1918, \"clust\": 1073, \"rank\": 1097, \"rankvar\": 502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 908, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1108, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2507, \"group\": [1078.0, 485.0, 142.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4884_BALBc-1_X01_Y02_1048_476\", \"ini\": 1917, \"clust\": 1025, \"rank\": 1343, \"rankvar\": 960, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 909, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 55, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2819, \"group\": [1025.0, 446.0, 126.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4887_BALBc-1_X01_Y02_1048_504\", \"ini\": 1916, \"clust\": 1216, \"rank\": 572, \"rankvar\": 557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 910, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 56, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2820, \"group\": [1219.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4912_BALBc-1_X01_Y02_1048_876\", \"ini\": 1915, \"clust\": 2113, \"rank\": 286, \"rankvar\": 1331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 911, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1109, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2224, \"group\": [2112.0, 834.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5193_BALBc-1_X01_Y02_1051_618\", \"ini\": 1914, \"clust\": 118, \"rank\": 2064, \"rankvar\": 1956, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 912, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1110, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2366, \"group\": [118.0, 69.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5224_BALBc-1_X01_Y02_1052_107\", \"ini\": 1913, \"clust\": 1242, \"rank\": 210, \"rankvar\": 837, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 913, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 693, \"cat-2\": \"Density: 23\", \"cat_2_index\": 390, \"group\": [1241.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5304_BALBc-1_X01_Y02_1053_18\", \"ini\": 1912, \"clust\": 2801, \"rank\": 1583, \"rankvar\": 603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 914, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2448, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1232, \"group\": [2802.0, 1215.0, 322.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5328_BALBc-1_X01_Y02_1053_572\", \"ini\": 1911, \"clust\": 629, \"rank\": 1414, \"rankvar\": 823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 915, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 57, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2599, \"group\": [629.0, 272.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5445_BALBc-1_X01_Y02_1055_145\", \"ini\": 1910, \"clust\": 2061, \"rank\": 1594, \"rankvar\": 1643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 916, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 58, \"cat-2\": \"Density: 23\", \"cat_2_index\": 391, \"group\": [2061.0, 816.0, 213.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5547_BALBc-1_X01_Y02_1056_251\", \"ini\": 1909, \"clust\": 795, \"rank\": 1514, \"rankvar\": 881, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 917, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1560, \"cat-2\": \"Density: 27\", \"cat_2_index\": 933, \"group\": [794.0, 329.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5577_BALBc-1_X01_Y02_1056_535\", \"ini\": 1908, \"clust\": 1829, \"rank\": 199, \"rankvar\": 139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 918, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 59, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2698, \"group\": [1828.0, 695.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5586_BALBc-1_X01_Y02_1056_690\", \"ini\": 1907, \"clust\": 1918, \"rank\": 1194, \"rankvar\": 1867, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 919, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1111, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2429, \"group\": [1918.0, 735.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5602_BALBc-1_X01_Y02_1056_84\", \"ini\": 1906, \"clust\": 1577, \"rank\": 900, \"rankvar\": 14, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 920, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 694, \"cat-2\": \"Density: 26\", \"cat_2_index\": 781, \"group\": [1577.0, 668.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5707_BALBc-1_X01_Y02_1058_294\", \"ini\": 1905, \"clust\": 1830, \"rank\": 826, \"rankvar\": 80, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 921, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 60, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1510, \"group\": [1837.0, 696.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5739_BALBc-1_X01_Y02_1058_669\", \"ini\": 1904, \"clust\": 2272, \"rank\": 1619, \"rankvar\": 835, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 922, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1112, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2654, \"group\": [2272.0, 924.0, 241.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5833_BALBc-1_X01_Y02_1059_848\", \"ini\": 1903, \"clust\": 186, \"rank\": 1201, \"rankvar\": 1521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 923, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1113, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2300, \"group\": [183.0, 92.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6281_BALBc-1_X01_Y02_1064_432\", \"ini\": 1902, \"clust\": 149, \"rank\": 2752, \"rankvar\": 2661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 924, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 61, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2737, \"group\": [150.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6293_BALBc-1_X01_Y02_1064_504\", \"ini\": 1901, \"clust\": 647, \"rank\": 1946, \"rankvar\": 716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 925, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 62, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2811, \"group\": [648.0, 274.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6437_BALBc-1_X01_Y02_1066_473\", \"ini\": 1900, \"clust\": 1270, \"rank\": 1136, \"rankvar\": 1213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 926, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 63, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2821, \"group\": [1270.0, 556.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6448_BALBc-1_X01_Y02_1066_590\", \"ini\": 1899, \"clust\": 1613, \"rank\": 57, \"rankvar\": 406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 927, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 64, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2655, \"group\": [1612.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6527_BALBc-1_X01_Y02_1067_691\", \"ini\": 1898, \"clust\": 1779, \"rank\": 544, \"rankvar\": 391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 928, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1114, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2430, \"group\": [1778.0, 686.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6588_BALBc-1_X01_Y02_1068_448\", \"ini\": 1897, \"clust\": 1184, \"rank\": 1074, \"rankvar\": 1201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 929, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 65, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2812, \"group\": [1184.0, 546.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6686_BALBc-1_X01_Y02_1069_459\", \"ini\": 1896, \"clust\": 1302, \"rank\": 473, \"rankvar\": 108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 930, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 66, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2793, \"group\": [1300.0, 568.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6811_BALBc-1_X01_Y02_1070_150\", \"ini\": 1895, \"clust\": 196, \"rank\": 1469, \"rankvar\": 2216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 931, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1115, \"cat-2\": \"Density: 23\", \"cat_2_index\": 392, \"group\": [196.0, 97.0, 31.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7004_BALBc-1_X01_Y02_1072_408\", \"ini\": 1894, \"clust\": 231, \"rank\": 1236, \"rankvar\": 1923, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 932, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 619, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2794, \"group\": [235.0, 118.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7308_BALBc-1_X01_Y02_1075_797\", \"ini\": 1893, \"clust\": 1706, \"rank\": 140, \"rankvar\": 39, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 933, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1116, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2301, \"group\": [1706.0, 679.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7360_BALBc-1_X01_Y02_1076_505\", \"ini\": 1892, \"clust\": 2517, \"rank\": 2137, \"rankvar\": 728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 934, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 67, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2795, \"group\": [2515.0, 1043.0, 269.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7375_BALBc-1_X01_Y02_1076_614\", \"ini\": 1891, \"clust\": 1733, \"rank\": 126, \"rankvar\": 508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 935, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1117, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2656, \"group\": [1733.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7388_BALBc-1_X01_Y02_1076_772\", \"ini\": 1890, \"clust\": 16, \"rank\": 1596, \"rankvar\": 1650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 936, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1118, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2367, \"group\": [14.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7429_BALBc-1_X01_Y02_1077_283\", \"ini\": 1889, \"clust\": 1578, \"rank\": 697, \"rankvar\": 23, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 937, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 68, \"cat-2\": \"Density: 26\", \"cat_2_index\": 782, \"group\": [1578.0, 668.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7521_BALBc-1_X01_Y02_1078_434\", \"ini\": 1888, \"clust\": 1796, \"rank\": 509, \"rankvar\": 685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 938, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 69, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2796, \"group\": [1797.0, 689.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7604_BALBc-1_X01_Y02_1079_662\", \"ini\": 1887, \"clust\": 986, \"rank\": 2770, \"rankvar\": 2721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 939, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1119, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2431, \"group\": [987.0, 415.0, 115.0, 31.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7606_BALBc-1_X01_Y02_1079_678\", \"ini\": 1886, \"clust\": 564, \"rank\": 1791, \"rankvar\": 1237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 940, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1639, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2432, \"group\": [564.0, 235.0, 69.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7804_BALBc-1_X01_Y02_1081_554\", \"ini\": 1885, \"clust\": 1122, \"rank\": 1350, \"rankvar\": 242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 941, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 70, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2699, \"group\": [1122.0, 513.0, 151.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7953_BALBc-1_X01_Y02_1083_574\", \"ini\": 1884, \"clust\": 635, \"rank\": 1824, \"rankvar\": 995, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 942, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 71, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2508, \"group\": [636.0, 273.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8179_BALBc-1_X01_Y02_1086_62\", \"ini\": 1883, \"clust\": 1889, \"rank\": 568, \"rankvar\": 65, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 943, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1640, \"cat-2\": \"Density: 27\", \"cat_2_index\": 934, \"group\": [1894.0, 718.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8323_BALBc-1_X01_Y02_1088_532\", \"ini\": 1882, \"clust\": 1860, \"rank\": 435, \"rankvar\": 15, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 944, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 72, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2774, \"group\": [1861.0, 704.0, 182.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8368_BALBc-1_X01_Y02_1089_10\", \"ini\": 1881, \"clust\": 1742, \"rank\": 50, \"rankvar\": 254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 945, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 695, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1233, \"group\": [1741.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8395_BALBc-1_X01_Y02_1089_383\", \"ini\": 1880, \"clust\": 1441, \"rank\": 773, \"rankvar\": 679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 946, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 620, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2600, \"group\": [1439.0, 601.0, 161.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8610_BALBc-1_X01_Y02_1091_207\", \"ini\": 1879, \"clust\": 1164, \"rank\": 1128, \"rankvar\": 1193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 947, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1120, \"cat-2\": \"Density: 22\", \"cat_2_index\": 281, \"group\": [1165.0, 538.0, 157.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8618_BALBc-1_X01_Y02_1091_325\", \"ini\": 1878, \"clust\": 1362, \"rank\": 825, \"rankvar\": 1101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 948, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1641, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1962, \"group\": [1361.0, 575.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8711_BALBc-1_X01_Y02_1092_593\", \"ini\": 1877, \"clust\": 726, \"rank\": 2567, \"rankvar\": 1522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 949, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 73, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2738, \"group\": [727.0, 296.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8860_BALBc-1_X01_Y02_1094_414\", \"ini\": 1876, \"clust\": 1054, \"rank\": 2569, \"rankvar\": 2495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 950, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 74, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2775, \"group\": [1056.0, 468.0, 134.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8911_BALBc-1_X01_Y02_1095_127\", \"ini\": 1875, \"clust\": 1780, \"rank\": 226, \"rankvar\": 1160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 951, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1121, \"cat-2\": \"Density: 24\", \"cat_2_index\": 501, \"group\": [1779.0, 686.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8950_BALBc-1_X01_Y02_1095_640\", \"ini\": 1874, \"clust\": 1745, \"rank\": 147, \"rankvar\": 396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 952, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1122, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2700, \"group\": [1744.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9039_BALBc-1_X01_Y02_1096_780\", \"ini\": 1873, \"clust\": 1133, \"rank\": 1160, \"rankvar\": 786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 953, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 945, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2225, \"group\": [1138.0, 523.0, 153.0, 43.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9116_BALBc-1_X01_Y02_1097_820\", \"ini\": 1872, \"clust\": 161, \"rank\": 2625, \"rankvar\": 2170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 954, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1123, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2226, \"group\": [165.0, 75.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9237_BALBc-1_X01_Y02_1099_474\", \"ini\": 1871, \"clust\": 1600, \"rank\": 434, \"rankvar\": 4, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 955, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 75, \"cat-2\": \"Density: 52\", \"cat_2_index\": 2825, \"group\": [1599.0, 676.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9410_BALBc-1_X01_Y02_110_501\", \"ini\": 1870, \"clust\": 1715, \"rank\": 148, \"rankvar\": 1491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 956, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2449, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1086, \"group\": [1715.0, 681.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9518_BALBc-1_X01_Y02_1100_80\", \"ini\": 1869, \"clust\": 2747, \"rank\": 2300, \"rankvar\": 2483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 957, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1955, \"cat-2\": \"Density: 24\", \"cat_2_index\": 502, \"group\": [2746.0, 1185.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9617_BALBc-1_X01_Y02_1102_229\", \"ini\": 1868, \"clust\": 2742, \"rank\": 2723, \"rankvar\": 2403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 958, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1561, \"cat-2\": \"Density: 26\", \"cat_2_index\": 783, \"group\": [2741.0, 1183.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9723_BALBc-1_X01_Y02_1103_562\", \"ini\": 1867, \"clust\": 1822, \"rank\": 342, \"rankvar\": 241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 959, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 76, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2545, \"group\": [1822.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9784_BALBc-1_X01_Y02_1104_292\", \"ini\": 1866, \"clust\": 85, \"rank\": 2480, \"rankvar\": 2272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 960, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2528, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1511, \"group\": [82.0, 53.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9793_BALBc-1_X01_Y02_1104_427\", \"ini\": 1865, \"clust\": 1271, \"rank\": 786, \"rankvar\": 571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 961, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 77, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2797, \"group\": [1271.0, 556.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9800_BALBc-1_X01_Y02_1104_504\", \"ini\": 1864, \"clust\": 693, \"rank\": 1914, \"rankvar\": 934, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 962, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 78, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2798, \"group\": [691.0, 283.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9883_BALBc-1_X01_Y02_1105_447\", \"ini\": 1863, \"clust\": 1140, \"rank\": 1037, \"rankvar\": 222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 963, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 79, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2813, \"group\": [1141.0, 525.0, 154.0, 43.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10036_BALBc-1_X01_Y02_1107_379\", \"ini\": 1862, \"clust\": 991, \"rank\": 2208, \"rankvar\": 1980, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 964, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 80, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2368, \"group\": [991.0, 418.0, 116.0, 31.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10115_BALBc-1_X01_Y02_1108_313\", \"ini\": 1861, \"clust\": 1066, \"rank\": 471, \"rankvar\": 448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 965, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2529, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1389, \"group\": [1066.0, 476.0, 138.0, 39.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10188_BALBc-1_X01_Y02_1109_186\", \"ini\": 1860, \"clust\": 1254, \"rank\": 784, \"rankvar\": 682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 966, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1124, \"cat-2\": \"Density: 20\", \"cat_2_index\": 153, \"group\": [1260.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10290_BALBc-1_X01_Y02_111_587\", \"ini\": 1859, \"clust\": 1463, \"rank\": 1179, \"rankvar\": 1719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 967, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1125, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1087, \"group\": [1466.0, 616.0, 167.0, 45.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10354_BALBc-1_X01_Y02_1110_402\", \"ini\": 1858, \"clust\": 1627, \"rank\": 3, \"rankvar\": 262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 968, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 81, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2546, \"group\": [1622.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10516_BALBc-1_X01_Y02_1112_616\", \"ini\": 1857, \"clust\": 1071, \"rank\": 974, \"rankvar\": 1662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 969, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1126, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2739, \"group\": [1072.0, 482.0, 141.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10520_BALBc-1_X01_Y02_1112_667\", \"ini\": 1856, \"clust\": 1076, \"rank\": 1542, \"rankvar\": 1930, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 970, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 82, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2369, \"group\": [1076.0, 484.0, 142.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10730_BALBc-1_X01_Y02_1115_472\", \"ini\": 1855, \"clust\": 1685, \"rank\": 247, \"rankvar\": 1, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 971, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 83, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2814, \"group\": [1685.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10887_BALBc-1_X01_Y02_1117_527\", \"ini\": 1854, \"clust\": 1124, \"rank\": 1232, \"rankvar\": 573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 972, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 84, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2601, \"group\": [1125.0, 516.0, 151.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10916_BALBc-1_X01_Y02_1117_796\", \"ini\": 1853, \"clust\": 98, \"rank\": 1701, \"rankvar\": 2748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 973, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1127, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1963, \"group\": [102.0, 60.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10974_BALBc-1_X01_Y02_1118_646\", \"ini\": 1852, \"clust\": 2036, \"rank\": 357, \"rankvar\": 443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 974, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 85, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2602, \"group\": [2037.0, 805.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11010_BALBc-1_X01_Y02_1119_25\", \"ini\": 1851, \"clust\": 2165, \"rank\": 2539, \"rankvar\": 2293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 975, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 696, \"cat-2\": \"Density: 27\", \"cat_2_index\": 935, \"group\": [2169.0, 861.0, 223.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11155_BALBc-1_X01_Y02_1120_361\", \"ini\": 1850, \"clust\": 1585, \"rank\": 111, \"rankvar\": 713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 976, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 86, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1964, \"group\": [1582.0, 671.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11235_BALBc-1_X01_Y02_1121_237\", \"ini\": 1849, \"clust\": 1019, \"rank\": 959, \"rankvar\": 411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 977, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1562, \"cat-2\": \"Density: 23\", \"cat_2_index\": 393, \"group\": [1019.0, 441.0, 125.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11425_BALBc-1_X01_Y02_1123_682\", \"ini\": 1848, \"clust\": 2749, \"rank\": 1768, \"rankvar\": 1688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 978, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1642, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2509, \"group\": [2749.0, 1186.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11501_BALBc-1_X01_Y02_1124_589\", \"ini\": 1847, \"clust\": 121, \"rank\": 2382, \"rankvar\": 1904, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 979, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1128, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2433, \"group\": [123.0, 71.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11783_BALBc-1_X01_Y02_1128_375\", \"ini\": 1846, \"clust\": 644, \"rank\": 1999, \"rankvar\": 652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 980, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 87, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2227, \"group\": [643.0, 274.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11789_BALBc-1_X01_Y02_1128_446\", \"ini\": 1845, \"clust\": 632, \"rank\": 1411, \"rankvar\": 519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 981, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 88, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2776, \"group\": [631.0, 272.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11818_BALBc-1_X01_Y02_1128_778\", \"ini\": 1844, \"clust\": 1957, \"rank\": 1572, \"rankvar\": 860, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 982, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1129, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2302, \"group\": [1957.0, 759.0, 195.0, 51.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11861_BALBc-1_X01_Y02_1129_519\", \"ini\": 1843, \"clust\": 1798, \"rank\": 802, \"rankvar\": 1297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 983, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1546, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2815, \"group\": [1799.0, 690.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11949_BALBc-1_X01_Y02_113_746\", \"ini\": 1842, \"clust\": 116, \"rank\": 1428, \"rankvar\": 2360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 984, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1130, \"cat-2\": \"Density: 26\", \"cat_2_index\": 784, \"group\": [115.0, 66.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12248_BALBc-1_X01_Y02_1133_543\", \"ini\": 1841, \"clust\": 104, \"rank\": 2071, \"rankvar\": 1446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 985, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1547, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2547, \"group\": [105.0, 62.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12302_BALBc-1_X01_Y02_1134_424\", \"ini\": 1840, \"clust\": 491, \"rank\": 1288, \"rankvar\": 90, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 986, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2530, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2510, \"group\": [492.0, 193.0, 53.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12338_BALBc-1_X01_Y02_1135_117\", \"ini\": 1839, \"clust\": 2080, \"rank\": 883, \"rankvar\": 1410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 987, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1131, \"cat-2\": \"Density: 25\", \"cat_2_index\": 648, \"group\": [2083.0, 827.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12370_BALBc-1_X01_Y02_1135_398\", \"ini\": 1838, \"clust\": 2552, \"rank\": 2278, \"rankvar\": 1686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 988, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2531, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2303, \"group\": [2552.0, 1065.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12399_BALBc-1_X01_Y02_1135_711\", \"ini\": 1837, \"clust\": 1134, \"rank\": 815, \"rankvar\": 1164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 989, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1132, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2511, \"group\": [1137.0, 522.0, 153.0, 43.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12520_BALBc-1_X01_Y02_1137_482\", \"ini\": 1836, \"clust\": 1657, \"rank\": 297, \"rankvar\": 183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 990, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 89, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2701, \"group\": [1658.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13075_BALBc-1_X01_Y02_1143_338\", \"ini\": 1835, \"clust\": 2013, \"rank\": 1053, \"rankvar\": 931, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 991, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2532, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1234, \"group\": [2012.0, 795.0, 208.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13103_BALBc-1_X01_Y02_1143_664\", \"ini\": 1834, \"clust\": 1077, \"rank\": 1510, \"rankvar\": 1248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 992, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 90, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2304, \"group\": [1077.0, 484.0, 142.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13162_BALBc-1_X01_Y02_1144_457\", \"ini\": 1833, \"clust\": 1891, \"rank\": 408, \"rankvar\": 87, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 993, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 91, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2799, \"group\": [1891.0, 718.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13164_BALBc-1_X01_Y02_1144_469\", \"ini\": 1832, \"clust\": 1591, \"rank\": 809, \"rankvar\": 35, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 994, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 92, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2702, \"group\": [1592.0, 675.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13317_BALBc-1_X01_Y02_1146_638\", \"ini\": 1831, \"clust\": 1020, \"rank\": 761, \"rankvar\": 416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 995, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 93, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2305, \"group\": [1020.0, 442.0, 125.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13467_BALBc-1_X01_Y02_1148_565\", \"ini\": 1830, \"clust\": 1633, \"rank\": 127, \"rankvar\": 21, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 996, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1133, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2434, \"group\": [1632.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13517_BALBc-1_X01_Y02_1149_362\", \"ini\": 1829, \"clust\": 2753, \"rank\": 2053, \"rankvar\": 2697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 997, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 94, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1653, \"group\": [2751.0, 1187.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13825_BALBc-1_X01_Y02_1152_206\", \"ini\": 1828, \"clust\": 2658, \"rank\": 336, \"rankvar\": 665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 998, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2533, \"cat-2\": \"Density: 23\", \"cat_2_index\": 394, \"group\": [2656.0, 1126.0, 294.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14075_BALBc-1_X01_Y02_1155_606\", \"ini\": 1827, \"clust\": 174, \"rank\": 1602, \"rankvar\": 2372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 999, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1134, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2228, \"group\": [174.0, 83.0, 25.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14139_BALBc-1_X01_Y02_1156_505\", \"ini\": 1826, \"clust\": 605, \"rank\": 1826, \"rankvar\": 953, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1000, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1548, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2603, \"group\": [605.0, 264.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14194_BALBc-1_X01_Y02_1157_257\", \"ini\": 1825, \"clust\": 2659, \"rank\": 333, \"rankvar\": 882, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1001, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1135, \"cat-2\": \"Density: 23\", \"cat_2_index\": 395, \"group\": [2657.0, 1126.0, 294.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14333_BALBc-1_X01_Y02_1158_98\", \"ini\": 1824, \"clust\": 1456, \"rank\": 1083, \"rankvar\": 226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1002, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1136, \"cat-2\": \"Density: 22\", \"cat_2_index\": 282, \"group\": [1454.0, 608.0, 164.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14461_BALBc-1_X01_Y02_116_804\", \"ini\": 1823, \"clust\": 58, \"rank\": 2284, \"rankvar\": 1684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1003, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1137, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1654, \"group\": [64.0, 41.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14529_BALBc-1_X01_Y02_1160_70\", \"ini\": 1822, \"clust\": 544, \"rank\": 2234, \"rankvar\": 1102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1004, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1956, \"cat-2\": \"Density: 23\", \"cat_2_index\": 396, \"group\": [548.0, 221.0, 64.0, 15.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14765_BALBc-1_X01_Y02_1163_363\", \"ini\": 1821, \"clust\": 2527, \"rank\": 1932, \"rankvar\": 1365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1005, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2534, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1390, \"group\": [2525.0, 1052.0, 273.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14775_BALBc-1_X01_Y02_1163_470\", \"ini\": 1820, \"clust\": 1247, \"rank\": 771, \"rankvar\": 734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1006, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1957, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2548, \"group\": [1251.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14940_BALBc-1_X01_Y02_1165_431\", \"ini\": 1819, \"clust\": 1357, \"rank\": 249, \"rankvar\": 413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1007, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1643, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2549, \"group\": [1354.0, 571.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14952_BALBc-1_X01_Y02_1165_653\", \"ini\": 1818, \"clust\": 1580, \"rank\": 114, \"rankvar\": 548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1008, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1138, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2229, \"group\": [1580.0, 669.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15044_BALBc-1_X01_Y02_1166_715\", \"ini\": 1817, \"clust\": 131, \"rank\": 2592, \"rankvar\": 2809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1009, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1139, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2230, \"group\": [129.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15252_BALBc-1_X01_Y02_1169_690\", \"ini\": 1816, \"clust\": 1788, \"rank\": 246, \"rankvar\": 579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1010, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1140, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2306, \"group\": [1789.0, 688.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15308_BALBc-1_X01_Y02_117_556\", \"ini\": 1815, \"clust\": 1968, \"rank\": 1165, \"rankvar\": 2323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1011, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 95, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1391, \"group\": [1969.0, 770.0, 202.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15434_BALBc-1_X01_Y02_1171_25\", \"ini\": 1814, \"clust\": 2153, \"rank\": 2022, \"rankvar\": 611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1012, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1958, \"cat-2\": \"Density: 27\", \"cat_2_index\": 936, \"group\": [2154.0, 854.0, 221.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15469_BALBc-1_X01_Y02_1171_563\", \"ini\": 1813, \"clust\": 188, \"rank\": 1337, \"rankvar\": 2175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1013, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1745, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2231, \"group\": [191.0, 93.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15536_BALBc-1_X01_Y02_1172_623\", \"ini\": 1812, \"clust\": 1955, \"rank\": 1554, \"rankvar\": 2288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1014, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1141, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2067, \"group\": [1956.0, 758.0, 194.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15847_BALBc-1_X01_Y02_1176_597\", \"ini\": 1811, \"clust\": 2703, \"rank\": 1660, \"rankvar\": 2059, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1015, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1746, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1965, \"group\": [2704.0, 1158.0, 309.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15894_BALBc-1_X01_Y02_1177_234\", \"ini\": 1810, \"clust\": 909, \"rank\": 2445, \"rankvar\": 2399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1016, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1142, \"cat-2\": \"Density: 22\", \"cat_2_index\": 283, \"group\": [908.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15978_BALBc-1_X01_Y02_1178_306\", \"ini\": 1809, \"clust\": 2594, \"rank\": 447, \"rankvar\": 181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1017, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1143, \"cat-2\": \"Density: 21\", \"cat_2_index\": 203, \"group\": [2593.0, 1093.0, 285.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15996_BALBc-1_X01_Y02_1178_501\", \"ini\": 1808, \"clust\": 2584, \"rank\": 539, \"rankvar\": 1025, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1018, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1549, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2435, \"group\": [2585.0, 1086.0, 283.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16362_BALBc-1_X01_Y02_1182_417\", \"ini\": 1807, \"clust\": 2785, \"rank\": 2627, \"rankvar\": 2234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1019, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1644, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2307, \"group\": [2783.0, 1203.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16367_BALBc-1_X01_Y02_1182_448\", \"ini\": 1806, \"clust\": 2786, \"rank\": 2653, \"rankvar\": 2614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1020, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1645, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2436, \"group\": [2784.0, 1203.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16640_BALBc-1_X01_Y02_1185_889\", \"ini\": 1805, \"clust\": 167, \"rank\": 1879, \"rankvar\": 2346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1021, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1144, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1858, \"group\": [170.0, 79.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16730_BALBc-1_X01_Y02_1187_385\", \"ini\": 1804, \"clust\": 177, \"rank\": 1490, \"rankvar\": 742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1022, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2535, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1764, \"group\": [177.0, 86.0, 26.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17035_BALBc-1_X01_Y02_1190_493\", \"ini\": 1803, \"clust\": 1156, \"rank\": 1737, \"rankvar\": 822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1023, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1959, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2232, \"group\": [1157.0, 533.0, 155.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17207_BALBc-1_X01_Y02_1192_761\", \"ini\": 1802, \"clust\": 1187, \"rank\": 1169, \"rankvar\": 820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1024, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1145, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2370, \"group\": [1186.0, 546.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17322_BALBc-1_X01_Y02_1194_325\", \"ini\": 1801, \"clust\": 2590, \"rank\": 648, \"rankvar\": 706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1025, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2293, \"cat-2\": \"Density: 24\", \"cat_2_index\": 503, \"group\": [2589.0, 1090.0, 284.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17680_BALBc-1_X01_Y02_1199_122\", \"ini\": 1800, \"clust\": 1332, \"rank\": 172, \"rankvar\": 417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1026, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1146, \"cat-2\": \"Density: 20\", \"cat_2_index\": 154, \"group\": [1329.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17793_BALBc-1_X01_Y02_12_655\", \"ini\": 1799, \"clust\": 1994, \"rank\": 1843, \"rankvar\": 2055, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1027, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 96, \"cat-2\": \"Density: 14\", \"cat_2_index\": 29, \"group\": [1995.0, 786.0, 205.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17839_BALBc-1_X01_Y02_120_140\", \"ini\": 1798, \"clust\": 2470, \"rank\": 1731, \"rankvar\": 2415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1028, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1147, \"cat-2\": \"Density: 26\", \"cat_2_index\": 785, \"group\": [2469.0, 1020.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17873_BALBc-1_X01_Y02_120_509\", \"ini\": 1797, \"clust\": 2058, \"rank\": 1393, \"rankvar\": 1553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1029, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 97, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1235, \"group\": [2059.0, 814.0, 212.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17954_BALBc-1_X01_Y02_1200_546\", \"ini\": 1796, \"clust\": 2738, \"rank\": 2656, \"rankvar\": 2347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1030, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1550, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1655, \"group\": [2744.0, 1184.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18320_BALBc-1_X01_Y02_1204_93\", \"ini\": 1795, \"clust\": 1519, \"rank\": 1306, \"rankvar\": 694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1031, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 98, \"cat-2\": \"Density: 22\", \"cat_2_index\": 284, \"group\": [1524.0, 642.0, 174.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18357_BALBc-1_X01_Y02_1205_419\", \"ini\": 1794, \"clust\": 1185, \"rank\": 1300, \"rankvar\": 1356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1032, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1646, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2150, \"group\": [1185.0, 546.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18530_BALBc-1_X01_Y02_1207_517\", \"ini\": 1793, \"clust\": 137, \"rank\": 2018, \"rankvar\": 2577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1033, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1148, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1859, \"group\": [137.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18940_BALBc-1_X01_Y02_1212_14\", \"ini\": 1792, \"clust\": 1989, \"rank\": 2002, \"rankvar\": 1064, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1034, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1960, \"cat-2\": \"Density: 26\", \"cat_2_index\": 786, \"group\": [1989.0, 781.0, 203.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19125_BALBc-1_X01_Y02_1214_642\", \"ini\": 1791, \"clust\": 1055, \"rank\": 2085, \"rankvar\": 2620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1035, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1149, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2068, \"group\": [1054.0, 468.0, 134.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19244_BALBc-1_X01_Y02_1216_259\", \"ini\": 1790, \"clust\": 1211, \"rank\": 279, \"rankvar\": 886, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1036, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1150, \"cat-2\": \"Density: 19\", \"cat_2_index\": 119, \"group\": [1214.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19318_BALBc-1_X01_Y02_1217_339\", \"ini\": 1789, \"clust\": 2595, \"rank\": 396, \"rankvar\": 116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1037, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2294, \"cat-2\": \"Density: 25\", \"cat_2_index\": 649, \"group\": [2594.0, 1093.0, 285.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19577_BALBc-1_X01_Y02_122_855\", \"ini\": 1788, \"clust\": 600, \"rank\": 2422, \"rankvar\": 1731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1038, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2295, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1236, \"group\": [600.0, 260.0, 79.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19630_BALBc-1_X01_Y02_1220_488\", \"ini\": 1787, \"clust\": 1262, \"rank\": 702, \"rankvar\": 1561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1039, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1151, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2151, \"group\": [1262.0, 553.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19649_BALBc-1_X01_Y02_1220_756\", \"ini\": 1786, \"clust\": 1038, \"rank\": 1224, \"rankvar\": 1106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1040, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1647, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2308, \"group\": [1039.0, 459.0, 130.0, 36.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19712_BALBc-1_X01_Y02_1221_558\", \"ini\": 1785, \"clust\": 1052, \"rank\": 751, \"rankvar\": 2532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1041, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1152, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1237, \"group\": [1051.0, 467.0, 133.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19804_BALBc-1_X01_Y02_1222_695\", \"ini\": 1784, \"clust\": 2793, \"rank\": 2336, \"rankvar\": 2349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1042, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1153, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2371, \"group\": [2797.0, 1211.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19893_BALBc-1_X01_Y02_1223_804\", \"ini\": 1783, \"clust\": 198, \"rank\": 505, \"rankvar\": 2033, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1043, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1154, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2233, \"group\": [198.0, 99.0, 31.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19976_BALBc-1_X01_Y02_1224_87\", \"ini\": 1782, \"clust\": 2737, \"rank\": 1553, \"rankvar\": 1648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1044, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1155, \"cat-2\": \"Density: 24\", \"cat_2_index\": 504, \"group\": [2754.0, 1188.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20108_BALBc-1_X01_Y02_1226_52\", \"ini\": 1781, \"clust\": 2011, \"rank\": 1536, \"rankvar\": 1273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1045, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1579, \"cat-2\": \"Density: 24\", \"cat_2_index\": 505, \"group\": [2013.0, 795.0, 208.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20419_BALBc-1_X01_Y02_123_829\", \"ini\": 1780, \"clust\": 1738, \"rank\": 14, \"rankvar\": 473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1046, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1156, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1512, \"group\": [1739.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20540_BALBc-1_X01_Y02_1231_399\", \"ini\": 1779, \"clust\": 2125, \"rank\": 732, \"rankvar\": 1158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1047, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1157, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1656, \"group\": [2124.0, 836.0, 215.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20591_BALBc-1_X01_Y02_1231_893\", \"ini\": 1778, \"clust\": 1854, \"rank\": 625, \"rankvar\": 1172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1048, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1158, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1860, \"group\": [1858.0, 702.0, 182.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21204_BALBc-1_X01_Y02_124_109\", \"ini\": 1777, \"clust\": 2804, \"rank\": 2493, \"rankvar\": 2381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1049, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1159, \"cat-2\": \"Density: 27\", \"cat_2_index\": 937, \"group\": [2804.0, 1216.0, 323.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21575_BALBc-1_X01_Y02_1244_166\", \"ini\": 1776, \"clust\": 793, \"rank\": 1812, \"rankvar\": 2251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1050, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2536, \"cat-2\": \"Density: 22\", \"cat_2_index\": 285, \"group\": [791.0, 329.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21957_BALBc-1_X01_Y02_1249_556\", \"ini\": 1775, \"clust\": 2705, \"rank\": 2338, \"rankvar\": 2689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1051, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1160, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1088, \"group\": [2703.0, 1157.0, 309.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21977_BALBc-1_X01_Y02_1249_787\", \"ini\": 1774, \"clust\": 1545, \"rank\": 628, \"rankvar\": 950, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1052, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1161, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2152, \"group\": [1548.0, 649.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22035_BALBc-1_X01_Y02_125_534\", \"ini\": 1773, \"clust\": 2543, \"rank\": 1679, \"rankvar\": 1626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1053, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 99, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1392, \"group\": [2542.0, 1059.0, 275.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22253_BALBc-1_X01_Y02_1252_344\", \"ini\": 1772, \"clust\": 2525, \"rank\": 1535, \"rankvar\": 341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1054, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2296, \"cat-2\": \"Density: 23\", \"cat_2_index\": 397, \"group\": [2528.0, 1053.0, 273.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22740_BALBc-1_X01_Y02_1259_25\", \"ini\": 1771, \"clust\": 2555, \"rank\": 2331, \"rankvar\": 2048, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1055, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1961, \"cat-2\": \"Density: 26\", \"cat_2_index\": 787, \"group\": [2554.0, 1065.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22891_BALBc-1_X01_Y02_1260_403\", \"ini\": 1770, \"clust\": 197, \"rank\": 944, \"rankvar\": 1510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1056, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1162, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1513, \"group\": [197.0, 98.0, 31.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23039_BALBc-1_X01_Y02_1262_452\", \"ini\": 1769, \"clust\": 1298, \"rank\": 188, \"rankvar\": 143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1057, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1163, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1238, \"group\": [1299.0, 568.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23057_BALBc-1_X01_Y02_1262_678\", \"ini\": 1768, \"clust\": 2136, \"rank\": 328, \"rankvar\": 819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1058, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1164, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2069, \"group\": [2138.0, 841.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23972_BALBc-1_X01_Y02_1274_408\", \"ini\": 1767, \"clust\": 1762, \"rank\": 112, \"rankvar\": 111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1059, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 100, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1393, \"group\": [1760.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23974_BALBc-1_X01_Y02_1274_423\", \"ini\": 1766, \"clust\": 588, \"rank\": 1373, \"rankvar\": 712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1060, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1165, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1514, \"group\": [589.0, 250.0, 73.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24160_BALBc-1_X01_Y02_1277_153\", \"ini\": 1765, \"clust\": 856, \"rank\": 1265, \"rankvar\": 1107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1061, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2537, \"cat-2\": \"Density: 21\", \"cat_2_index\": 204, \"group\": [857.0, 359.0, 99.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24404_BALBc-1_X01_Y02_128_478\", \"ini\": 1764, \"clust\": 1309, \"rank\": 325, \"rankvar\": 186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1062, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2450, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1089, \"group\": [1307.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24468_BALBc-1_X01_Y02_1280_260\", \"ini\": 1763, \"clust\": 1391, \"rank\": 849, \"rankvar\": 1590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1063, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2297, \"cat-2\": \"Density: 16\", \"cat_2_index\": 58, \"group\": [1392.0, 582.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24628_BALBc-1_X01_Y02_1282_802\", \"ini\": 1762, \"clust\": 106, \"rank\": 2459, \"rankvar\": 2389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1064, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1166, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1861, \"group\": [107.0, 63.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25243_BALBc-1_X01_Y02_1290_386\", \"ini\": 1761, \"clust\": 17, \"rank\": 1459, \"rankvar\": 854, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1065, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1167, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1239, \"group\": [15.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25273_BALBc-1_X01_Y02_1290_702\", \"ini\": 1760, \"clust\": 2666, \"rank\": 2756, \"rankvar\": 2649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1066, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2298, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1966, \"group\": [2669.0, 1135.0, 298.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25852_BALBc-1_X01_Y02_1298_50\", \"ini\": 1759, \"clust\": 2606, \"rank\": 531, \"rankvar\": 821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1067, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1580, \"cat-2\": \"Density: 24\", \"cat_2_index\": 506, \"group\": [2607.0, 1099.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25924_BALBc-1_X01_Y02_1299_448\", \"ini\": 1758, \"clust\": 1644, \"rank\": 41, \"rankvar\": 11, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1068, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1648, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1394, \"group\": [1646.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26183_BALBc-1_X01_Y02_1300_80\", \"ini\": 1757, \"clust\": 1992, \"rank\": 2188, \"rankvar\": 2286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1069, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2538, \"cat-2\": \"Density: 23\", \"cat_2_index\": 398, \"group\": [1992.0, 783.0, 204.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26216_BALBc-1_X01_Y02_1301_40\", \"ini\": 1756, \"clust\": 1826, \"rank\": 645, \"rankvar\": 209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1070, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1962, \"cat-2\": \"Density: 25\", \"cat_2_index\": 650, \"group\": [1830.0, 695.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26286_BALBc-1_X01_Y02_1302_362\", \"ini\": 1755, \"clust\": 2743, \"rank\": 2522, \"rankvar\": 2300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1071, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1168, \"cat-2\": \"Density: 25\", \"cat_2_index\": 651, \"group\": [2742.0, 1183.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26422_BALBc-1_X01_Y02_1304_482\", \"ini\": 1754, \"clust\": 1204, \"rank\": 484, \"rankvar\": 464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1072, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1169, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1090, \"group\": [1205.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26472_BALBc-1_X01_Y02_1305_154\", \"ini\": 1753, \"clust\": 1001, \"rank\": 257, \"rankvar\": 2602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1073, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2539, \"cat-2\": \"Density: 17\", \"cat_2_index\": 76, \"group\": [1002.0, 428.0, 120.0, 33.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26543_BALBc-1_X01_Y02_1306_303\", \"ini\": 1752, \"clust\": 835, \"rank\": 2543, \"rankvar\": 2356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1074, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1170, \"cat-2\": \"Density: 22\", \"cat_2_index\": 286, \"group\": [836.0, 349.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26628_BALBc-1_X01_Y02_1307_628\", \"ini\": 1751, \"clust\": 2114, \"rank\": 238, \"rankvar\": 1476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1075, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1171, \"cat-2\": \"Density: 26\", \"cat_2_index\": 788, \"group\": [2113.0, 834.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26791_BALBc-1_X01_Y02_1309_847\", \"ini\": 1750, \"clust\": 1648, \"rank\": 61, \"rankvar\": 20, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1076, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1172, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1967, \"group\": [1643.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26808_BALBc-1_X01_Y02_131_13\", \"ini\": 1749, \"clust\": 2208, \"rank\": 2047, \"rankvar\": 1350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1077, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1173, \"cat-2\": \"Density: 25\", \"cat_2_index\": 652, \"group\": [2211.0, 895.0, 234.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26858_BALBc-1_X01_Y02_131_710\", \"ini\": 1748, \"clust\": 794, \"rank\": 2092, \"rankvar\": 2472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1078, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1174, \"cat-2\": \"Density: 25\", \"cat_2_index\": 653, \"group\": [792.0, 329.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26907_BALBc-1_X01_Y02_1310_424\", \"ini\": 1747, \"clust\": 2585, \"rank\": 727, \"rankvar\": 847, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1079, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 831, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1657, \"group\": [2586.0, 1087.0, 283.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27339_BALBc-1_X01_Y02_1316_272\", \"ini\": 1746, \"clust\": 900, \"rank\": 2219, \"rankvar\": 2309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1080, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2540, \"cat-2\": \"Density: 16\", \"cat_2_index\": 59, \"group\": [899.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27376_BALBc-1_X01_Y02_1316_760\", \"ini\": 1745, \"clust\": 28, \"rank\": 1389, \"rankvar\": 1457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1081, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1175, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1862, \"group\": [27.0, 19.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27712_BALBc-1_X01_Y02_1320_379\", \"ini\": 1744, \"clust\": 1103, \"rank\": 1391, \"rankvar\": 207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1082, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1649, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1395, \"group\": [1118.0, 510.0, 149.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27787_BALBc-1_X01_Y02_1321_46\", \"ini\": 1743, \"clust\": 893, \"rank\": 2512, \"rankvar\": 1327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1083, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2451, \"cat-2\": \"Density: 25\", \"cat_2_index\": 654, \"group\": [898.0, 374.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28104_BALBc-1_X01_Y02_1325_686\", \"ini\": 1742, \"clust\": 2697, \"rank\": 2702, \"rankvar\": 2596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1084, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1176, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1515, \"group\": [2701.0, 1156.0, 308.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28119_BALBc-1_X01_Y02_1325_869\", \"ini\": 1741, \"clust\": 1858, \"rank\": 326, \"rankvar\": 641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1085, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1177, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1516, \"group\": [1859.0, 703.0, 182.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28171_BALBc-1_X01_Y02_1326_556\", \"ini\": 1740, \"clust\": 1525, \"rank\": 788, \"rankvar\": 631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1086, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1178, \"cat-2\": \"Density: 21\", \"cat_2_index\": 205, \"group\": [1526.0, 643.0, 175.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28403_BALBc-1_X01_Y02_1329_340\", \"ini\": 1739, \"clust\": 913, \"rank\": 2326, \"rankvar\": 2430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1087, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2541, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1091, \"group\": [913.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28439_BALBc-1_X01_Y02_1329_667\", \"ini\": 1738, \"clust\": 184, \"rank\": 1227, \"rankvar\": 2291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1088, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1179, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1517, \"group\": [186.0, 92.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28793_BALBc-1_X01_Y02_1333_435\", \"ini\": 1737, \"clust\": 1039, \"rank\": 1057, \"rankvar\": 138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1089, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 832, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1863, \"group\": [1040.0, 460.0, 130.0, 36.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28907_BALBc-1_X01_Y02_1334_958\", \"ini\": 1736, \"clust\": 966, \"rank\": 1049, \"rankvar\": 776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1090, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1180, \"cat-2\": \"Density: 24\", \"cat_2_index\": 507, \"group\": [966.0, 401.0, 109.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29029_BALBc-1_X01_Y02_1337_148\", \"ini\": 1735, \"clust\": 1004, \"rank\": 1938, \"rankvar\": 1132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1091, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2542, \"cat-2\": \"Density: 17\", \"cat_2_index\": 77, \"group\": [1005.0, 430.0, 121.0, 33.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29253_BALBc-1_X01_Y02_1340_880\", \"ini\": 1734, \"clust\": 144, \"rank\": 1745, \"rankvar\": 2353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1092, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1181, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1864, \"group\": [145.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29328_BALBc-1_X01_Y02_135_526\", \"ini\": 1733, \"clust\": 1997, \"rank\": 1184, \"rankvar\": 861, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1093, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 101, \"cat-2\": \"Density: 26\", \"cat_2_index\": 789, \"group\": [1997.0, 788.0, 206.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29539_BALBc-1_X01_Y02_138_561\", \"ini\": 1732, \"clust\": 2171, \"rank\": 1030, \"rankvar\": 1116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1094, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 102, \"cat-2\": \"Density: 27\", \"cat_2_index\": 938, \"group\": [2176.0, 867.0, 225.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29570_BALBc-1_X01_Y02_138_885\", \"ini\": 1731, \"clust\": 1396, \"rank\": 618, \"rankvar\": 941, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1095, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2299, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1240, \"group\": [1395.0, 583.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29751_BALBc-1_X01_Y02_140_575\", \"ini\": 1730, \"clust\": 862, \"rank\": 2507, \"rankvar\": 2298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1096, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1182, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1092, \"group\": [866.0, 365.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29777_BALBc-1_X01_Y02_140_975\", \"ini\": 1729, \"clust\": 1059, \"rank\": 1282, \"rankvar\": 1062, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1097, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2300, \"cat-2\": \"Density: 18\", \"cat_2_index\": 95, \"group\": [1059.0, 470.0, 134.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29799_BALBc-1_X01_Y02_141_323\", \"ini\": 1728, \"clust\": 2802, \"rank\": 1708, \"rankvar\": 384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1098, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 697, \"cat-2\": \"Density: 27\", \"cat_2_index\": 939, \"group\": [2805.0, 1217.0, 323.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29956_BALBc-1_X01_Y02_143_444\", \"ini\": 1727, \"clust\": 1434, \"rank\": 620, \"rankvar\": 530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1099, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2452, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1518, \"group\": [1443.0, 602.0, 161.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30085_BALBc-1_X01_Y02_145_273\", \"ini\": 1726, \"clust\": 2534, \"rank\": 1242, \"rankvar\": 1726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1100, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2239, \"cat-2\": \"Density: 25\", \"cat_2_index\": 655, \"group\": [2541.0, 1058.0, 274.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30088_BALBc-1_X01_Y02_145_290\", \"ini\": 1725, \"clust\": 1536, \"rank\": 275, \"rankvar\": 496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1101, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2453, \"cat-2\": \"Density: 24\", \"cat_2_index\": 508, \"group\": [1535.0, 647.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30181_BALBc-1_X01_Y02_146_484\", \"ini\": 1724, \"clust\": 2067, \"rank\": 1142, \"rankvar\": 984, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1102, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1963, \"cat-2\": \"Density: 26\", \"cat_2_index\": 790, \"group\": [2071.0, 824.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30212_BALBc-1_X01_Y02_146_853\", \"ini\": 1723, \"clust\": 1945, \"rank\": 1078, \"rankvar\": 1323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1103, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 103, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1658, \"group\": [1946.0, 752.0, 192.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30226_BALBc-1_X01_Y02_147_121\", \"ini\": 1722, \"clust\": 1096, \"rank\": 736, \"rankvar\": 470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1104, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1183, \"cat-2\": \"Density: 22\", \"cat_2_index\": 287, \"group\": [1099.0, 498.0, 145.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30323_BALBc-1_X01_Y02_148_511\", \"ini\": 1721, \"clust\": 1991, \"rank\": 2176, \"rankvar\": 2030, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1105, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 104, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1241, \"group\": [1994.0, 785.0, 204.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30392_BALBc-1_X01_Y02_149_423\", \"ini\": 1720, \"clust\": 2656, \"rank\": 1217, \"rankvar\": 1593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1106, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1650, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1396, \"group\": [2655.0, 1125.0, 294.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30672_BALBc-1_X01_Y02_152_19\", \"ini\": 1719, \"clust\": 2445, \"rank\": 1349, \"rankvar\": 2049, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1107, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1184, \"cat-2\": \"Density: 27\", \"cat_2_index\": 940, \"group\": [2444.0, 1013.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31029_BALBc-1_X01_Y02_156_815\", \"ini\": 1718, \"clust\": 2795, \"rank\": 2748, \"rankvar\": 2511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1108, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2301, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1519, \"group\": [2794.0, 1209.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31048_BALBc-1_X01_Y02_156_993\", \"ini\": 1717, \"clust\": 1188, \"rank\": 1038, \"rankvar\": 1586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1109, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2543, \"cat-2\": \"Density: 13\", \"cat_2_index\": 17, \"group\": [1187.0, 546.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31155_BALBc-1_X01_Y02_158_405\", \"ini\": 1716, \"clust\": 2764, \"rank\": 2818, \"rankvar\": 2815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1110, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 698, \"cat-2\": \"Density: 27\", \"cat_2_index\": 941, \"group\": [2766.0, 1195.0, 319.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31283_BALBc-1_X01_Y02_16_366\", \"ini\": 1715, \"clust\": 558, \"rank\": 2542, \"rankvar\": 2527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1111, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1185, \"cat-2\": \"Density: 13\", \"cat_2_index\": 18, \"group\": [561.0, 233.0, 68.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31361_BALBc-1_X01_Y02_160_197\", \"ini\": 1714, \"clust\": 1203, \"rank\": 510, \"rankvar\": 570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1112, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1186, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1093, \"group\": [1206.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31477_BALBc-1_X01_Y02_161_787\", \"ini\": 1713, \"clust\": 1231, \"rank\": 611, \"rankvar\": 1414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1113, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1187, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1242, \"group\": [1230.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31533_BALBc-1_X01_Y02_162_623\", \"ini\": 1712, \"clust\": 486, \"rank\": 2043, \"rankvar\": 1787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1114, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1188, \"cat-2\": \"Density: 24\", \"cat_2_index\": 509, \"group\": [486.0, 187.0, 50.0, 13.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31548_BALBc-1_X01_Y02_162_836\", \"ini\": 1711, \"clust\": 1229, \"rank\": 790, \"rankvar\": 1127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1115, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 105, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1520, \"group\": [1231.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31566_BALBc-1_X01_Y02_163_150\", \"ini\": 1710, \"clust\": 2190, \"rank\": 1147, \"rankvar\": 1139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1116, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1189, \"cat-2\": \"Density: 27\", \"cat_2_index\": 942, \"group\": [2189.0, 876.0, 228.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31622_BALBc-1_X01_Y02_163_893\", \"ini\": 1709, \"clust\": 142, \"rank\": 2290, \"rankvar\": 2019, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1117, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2302, \"cat-2\": \"Density: 27\", \"cat_2_index\": 943, \"group\": [147.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31687_BALBc-1_X01_Y02_164_924\", \"ini\": 1708, \"clust\": 1915, \"rank\": 1206, \"rankvar\": 1246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1118, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2303, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1243, \"group\": [1915.0, 732.0, 189.0, 49.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31771_BALBc-1_X01_Y02_166_248\", \"ini\": 1707, \"clust\": 1297, \"rank\": 375, \"rankvar\": 539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1119, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1190, \"cat-2\": \"Density: 26\", \"cat_2_index\": 791, \"group\": [1296.0, 568.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31778_BALBc-1_X01_Y02_166_382\", \"ini\": 1706, \"clust\": 1595, \"rank\": 74, \"rankvar\": 277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1120, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 699, \"cat-2\": \"Density: 24\", \"cat_2_index\": 510, \"group\": [1595.0, 676.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31826_BALBc-1_X01_Y02_166_996\", \"ini\": 1705, \"clust\": 687, \"rank\": 1986, \"rankvar\": 536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1121, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 106, \"cat-2\": \"Density: 14\", \"cat_2_index\": 30, \"group\": [690.0, 282.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31882_BALBc-1_X01_Y02_167_871\", \"ini\": 1704, \"clust\": 1248, \"rank\": 662, \"rankvar\": 863, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1122, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 107, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1521, \"group\": [1247.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32028_BALBc-1_X01_Y02_169_976\", \"ini\": 1703, \"clust\": 185, \"rank\": 1222, \"rankvar\": 664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1123, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2304, \"cat-2\": \"Density: 21\", \"cat_2_index\": 206, \"group\": [185.0, 92.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32605_BALBc-1_X01_Y02_177_12\", \"ini\": 1702, \"clust\": 2300, \"rank\": 2757, \"rankvar\": 2791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1124, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1191, \"cat-2\": \"Density: 26\", \"cat_2_index\": 792, \"group\": [2297.0, 933.0, 243.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32781_BALBc-1_X01_Y02_179_504\", \"ini\": 1701, \"clust\": 1973, \"rank\": 1686, \"rankvar\": 2579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1125, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1964, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1397, \"group\": [1972.0, 772.0, 202.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32994_BALBc-1_X01_Y02_181_536\", \"ini\": 1700, \"clust\": 875, \"rank\": 2243, \"rankvar\": 2020, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1126, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 108, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1659, \"group\": [876.0, 372.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33083_BALBc-1_X01_Y02_182_591\", \"ini\": 1699, \"clust\": 808, \"rank\": 2242, \"rankvar\": 2636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1127, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2240, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1244, \"group\": [808.0, 334.0, 94.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33098_BALBc-1_X01_Y02_182_806\", \"ini\": 1698, \"clust\": 1343, \"rank\": 209, \"rankvar\": 578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1128, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1192, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1865, \"group\": [1340.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33178_BALBc-1_X01_Y02_183_939\", \"ini\": 1697, \"clust\": 146, \"rank\": 2497, \"rankvar\": 2778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1129, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 109, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1094, \"group\": [142.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33258_BALBc-1_X01_Y02_184_896\", \"ini\": 1696, \"clust\": 664, \"rank\": 2222, \"rankvar\": 877, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1130, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 110, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1866, \"group\": [663.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33265_BALBc-1_X01_Y02_184_97\", \"ini\": 1695, \"clust\": 2690, \"rank\": 2367, \"rankvar\": 1081, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1131, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1651, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1245, \"group\": [2689.0, 1146.0, 304.0, 76.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33280_BALBc-1_X01_Y02_185_324\", \"ini\": 1694, \"clust\": 2611, \"rank\": 807, \"rankvar\": 940, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1132, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1193, \"cat-2\": \"Density: 26\", \"cat_2_index\": 793, \"group\": [2610.0, 1102.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33754_BALBc-1_X01_Y02_190_870\", \"ini\": 1693, \"clust\": 710, \"rank\": 2130, \"rankvar\": 989, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1133, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 111, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2070, \"group\": [711.0, 289.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33990_BALBc-1_X01_Y02_193_959\", \"ini\": 1692, \"clust\": 1415, \"rank\": 934, \"rankvar\": 392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1134, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 112, \"cat-2\": \"Density: 27\", \"cat_2_index\": 944, \"group\": [1414.0, 588.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34020_BALBc-1_X01_Y02_194_351\", \"ini\": 1691, \"clust\": 1040, \"rank\": 1362, \"rankvar\": 1504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1135, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 700, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1095, \"group\": [1041.0, 461.0, 131.0, 36.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34038_BALBc-1_X01_Y02_194_572\", \"ini\": 1690, \"clust\": 869, \"rank\": 1755, \"rankvar\": 1637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1136, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2544, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1522, \"group\": [868.0, 366.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34165_BALBc-1_X01_Y02_196_520\", \"ini\": 1689, \"clust\": 500, \"rank\": 2180, \"rankvar\": 1739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1137, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 895, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1867, \"group\": [500.0, 197.0, 55.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34589_BALBc-1_X01_Y02_201_481\", \"ini\": 1688, \"clust\": 1527, \"rank\": 1113, \"rankvar\": 1723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1138, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1965, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1246, \"group\": [1528.0, 644.0, 175.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34649_BALBc-1_X01_Y02_202_257\", \"ini\": 1687, \"clust\": 2233, \"rank\": 1963, \"rankvar\": 2494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1139, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1966, \"cat-2\": \"Density: 27\", \"cat_2_index\": 945, \"group\": [2234.0, 904.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34718_BALBc-1_X01_Y02_203_164\", \"ini\": 1686, \"clust\": 2759, \"rank\": 2643, \"rankvar\": 2565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1140, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1194, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1096, \"group\": [2759.0, 1192.0, 317.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34915_BALBc-1_X01_Y02_205_7\", \"ini\": 1685, \"clust\": 2321, \"rank\": 1699, \"rankvar\": 2431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1141, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1195, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1097, \"group\": [2323.0, 948.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35085_BALBc-1_X01_Y02_207_892\", \"ini\": 1684, \"clust\": 1665, \"rank\": 214, \"rankvar\": 40, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1142, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 113, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1765, \"group\": [1665.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35133_BALBc-1_X01_Y02_208_606\", \"ini\": 1683, \"clust\": 1126, \"rank\": 841, \"rankvar\": 707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1143, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2241, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1098, \"group\": [1127.0, 517.0, 151.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35140_BALBc-1_X01_Y02_208_76\", \"ini\": 1682, \"clust\": 1507, \"rank\": 183, \"rankvar\": 958, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1144, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1652, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1247, \"group\": [1507.0, 633.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35161_BALBc-1_X01_Y02_208_997\", \"ini\": 1681, \"clust\": 470, \"rank\": 1858, \"rankvar\": 1032, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1145, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 114, \"cat-2\": \"Density: 20\", \"cat_2_index\": 155, \"group\": [471.0, 179.0, 47.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35307_BALBc-1_X01_Y02_21_950\", \"ini\": 1680, \"clust\": 1904, \"rank\": 448, \"rankvar\": 1336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1146, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1196, \"cat-2\": \"Density: 11\", \"cat_2_index\": 6, \"group\": [1909.0, 727.0, 186.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35371_BALBc-1_X01_Y02_210_919\", \"ini\": 1679, \"clust\": 119, \"rank\": 1823, \"rankvar\": 1758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1147, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 115, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1968, \"group\": [119.0, 69.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35707_BALBc-1_X01_Y02_215_359\", \"ini\": 1678, \"clust\": 1937, \"rank\": 991, \"rankvar\": 2112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1148, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 701, \"cat-2\": \"Density: 25\", \"cat_2_index\": 656, \"group\": [1934.0, 744.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35849_BALBc-1_X01_Y02_217_422\", \"ini\": 1677, \"clust\": 1747, \"rank\": 88, \"rankvar\": 359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1149, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 702, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1099, \"group\": [1749.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35964_BALBc-1_X01_Y02_218_953\", \"ini\": 1676, \"clust\": 1838, \"rank\": 430, \"rankvar\": 72, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1150, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 116, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1868, \"group\": [1838.0, 697.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36019_BALBc-1_X01_Y02_219_856\", \"ini\": 1675, \"clust\": 1694, \"rank\": 156, \"rankvar\": 171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1151, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2305, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2437, \"group\": [1697.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36350_BALBc-1_X01_Y02_223_52\", \"ini\": 1674, \"clust\": 1469, \"rank\": 1106, \"rankvar\": 1314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1152, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1197, \"cat-2\": \"Density: 26\", \"cat_2_index\": 794, \"group\": [1470.0, 620.0, 170.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36560_BALBc-1_X01_Y02_226_384\", \"ini\": 1673, \"clust\": 2072, \"rank\": 1630, \"rankvar\": 2671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1153, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 703, \"cat-2\": \"Density: 26\", \"cat_2_index\": 795, \"group\": [2073.0, 825.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36605_BALBc-1_X01_Y02_226_872\", \"ini\": 1672, \"clust\": 721, \"rank\": 2559, \"rankvar\": 1066, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1154, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2306, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2234, \"group\": [726.0, 296.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37140_BALBc-1_X01_Y02_233_273\", \"ini\": 1671, \"clust\": 2455, \"rank\": 1496, \"rankvar\": 2119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1155, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1198, \"cat-2\": \"Density: 26\", \"cat_2_index\": 796, \"group\": [2453.0, 1017.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37170_BALBc-1_X01_Y02_233_605\", \"ini\": 1670, \"clust\": 1056, \"rank\": 2368, \"rankvar\": 2506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1156, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1199, \"cat-2\": \"Density: 27\", \"cat_2_index\": 946, \"group\": [1055.0, 468.0, 134.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37201_BALBc-1_X01_Y02_234_185\", \"ini\": 1669, \"clust\": 2098, \"rank\": 722, \"rankvar\": 2441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1157, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1200, \"cat-2\": \"Density: 24\", \"cat_2_index\": 511, \"group\": [2099.0, 832.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37456_BALBc-1_X01_Y02_237_70\", \"ini\": 1668, \"clust\": 2787, \"rank\": 2545, \"rankvar\": 2685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1158, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 117, \"cat-2\": \"Density: 25\", \"cat_2_index\": 657, \"group\": [2788.0, 1205.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37475_BALBc-1_X01_Y02_237_937\", \"ini\": 1667, \"clust\": 1364, \"rank\": 1400, \"rankvar\": 710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1159, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 118, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2153, \"group\": [1364.0, 575.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37621_BALBc-1_X01_Y02_239_971\", \"ini\": 1666, \"clust\": 589, \"rank\": 1576, \"rankvar\": 1455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1160, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 119, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1523, \"group\": [590.0, 250.0, 73.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37749_BALBc-1_X01_Y02_240_84\", \"ini\": 1665, \"clust\": 2544, \"rank\": 1312, \"rankvar\": 2200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1161, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1653, \"cat-2\": \"Density: 23\", \"cat_2_index\": 399, \"group\": [2543.0, 1059.0, 275.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37862_BALBc-1_X01_Y02_242_444\", \"ini\": 1664, \"clust\": 2409, \"rank\": 2424, \"rankvar\": 2226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1162, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1654, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1660, \"group\": [2409.0, 997.0, 262.0, 66.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37892_BALBc-1_X01_Y02_242_898\", \"ini\": 1663, \"clust\": 228, \"rank\": 1693, \"rankvar\": 1277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1163, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 120, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1969, \"group\": [231.0, 116.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37950_BALBc-1_X01_Y02_243_786\", \"ini\": 1662, \"clust\": 466, \"rank\": 2046, \"rankvar\": 1508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1164, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 833, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2071, \"group\": [465.0, 178.0, 47.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38019_BALBc-1_X01_Y02_244_504\", \"ini\": 1661, \"clust\": 165, \"rank\": 2551, \"rankvar\": 2159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1165, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 896, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1398, \"group\": [166.0, 76.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38163_BALBc-1_X01_Y02_246_349\", \"ini\": 1660, \"clust\": 2163, \"rank\": 1407, \"rankvar\": 2324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1166, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1201, \"cat-2\": \"Density: 23\", \"cat_2_index\": 400, \"group\": [2159.0, 856.0, 222.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38833_BALBc-1_X01_Y02_254_406\", \"ini\": 1659, \"clust\": 457, \"rank\": 2146, \"rankvar\": 969, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1167, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 121, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1766, \"group\": [453.0, 170.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38864_BALBc-1_X01_Y02_254_818\", \"ini\": 1658, \"clust\": 935, \"rank\": 2609, \"rankvar\": 1718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1168, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1202, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1970, \"group\": [940.0, 384.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38921_BALBc-1_X01_Y02_255_579\", \"ini\": 1657, \"clust\": 1612, \"rank\": 117, \"rankvar\": 643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1169, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2545, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1399, \"group\": [1630.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39097_BALBc-1_X01_Y02_257_981\", \"ini\": 1656, \"clust\": 479, \"rank\": 1593, \"rankvar\": 704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1170, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 122, \"cat-2\": \"Density: 27\", \"cat_2_index\": 947, \"group\": [483.0, 184.0, 48.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39159_BALBc-1_X01_Y02_258_932\", \"ini\": 1655, \"clust\": 336, \"rank\": 2500, \"rankvar\": 1223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1171, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 123, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2309, \"group\": [338.0, 142.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39206_BALBc-1_X01_Y02_259_497\", \"ini\": 1654, \"clust\": 1021, \"rank\": 1450, \"rankvar\": 2296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1172, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 897, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1971, \"group\": [1024.0, 445.0, 125.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39295_BALBc-1_X01_Y02_26_739\", \"ini\": 1653, \"clust\": 2667, \"rank\": 2766, \"rankvar\": 2772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1173, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1747, \"cat-2\": \"Density: 17\", \"cat_2_index\": 78, \"group\": [2667.0, 1134.0, 298.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39359_BALBc-1_X01_Y02_260_604\", \"ini\": 1652, \"clust\": 542, \"rank\": 1638, \"rankvar\": 1704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1174, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1203, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1400, \"group\": [541.0, 216.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39370_BALBc-1_X01_Y02_260_753\", \"ini\": 1651, \"clust\": 2744, \"rank\": 2759, \"rankvar\": 2598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1175, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 834, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1972, \"group\": [2743.0, 1183.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39467_BALBc-1_X01_Y02_261_915\", \"ini\": 1650, \"clust\": 1662, \"rank\": 223, \"rankvar\": 240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1176, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 124, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2310, \"group\": [1663.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39512_BALBc-1_X01_Y02_262_462\", \"ini\": 1649, \"clust\": 2055, \"rank\": 1401, \"rankvar\": 1697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1177, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1967, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1869, \"group\": [2056.0, 811.0, 210.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39541_BALBc-1_X01_Y02_262_944\", \"ini\": 1648, \"clust\": 1378, \"rank\": 935, \"rankvar\": 1058, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1178, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 125, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2154, \"group\": [1378.0, 578.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39556_BALBc-1_X01_Y02_263_219\", \"ini\": 1647, \"clust\": 77, \"rank\": 1985, \"rankvar\": 2515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1179, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1204, \"cat-2\": \"Density: 24\", \"cat_2_index\": 512, \"group\": [78.0, 49.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39656_BALBc-1_X01_Y02_264_54\", \"ini\": 1646, \"clust\": 2663, \"rank\": 2729, \"rankvar\": 2741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1180, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2307, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1248, \"group\": [2662.0, 1130.0, 297.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39742_BALBc-1_X01_Y02_265_717\", \"ini\": 1645, \"clust\": 329, \"rank\": 2143, \"rankvar\": 1746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1181, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 835, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1524, \"group\": [333.0, 141.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39744_BALBc-1_X01_Y02_265_773\", \"ini\": 1644, \"clust\": 1424, \"rank\": 943, \"rankvar\": 867, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1182, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 836, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2072, \"group\": [1422.0, 590.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39786_BALBc-1_X01_Y02_266_282\", \"ini\": 1643, \"clust\": 1435, \"rank\": 680, \"rankvar\": 166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1205, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1100, \"group\": [1435.0, 599.0, 161.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39838_BALBc-1_X01_Y02_266_848\", \"ini\": 1642, \"clust\": 1835, \"rank\": 422, \"rankvar\": 945, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1184, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2308, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2311, \"group\": [1833.0, 696.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39873_BALBc-1_X01_Y02_267_383\", \"ini\": 1641, \"clust\": 1783, \"rank\": 231, \"rankvar\": 308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1185, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 898, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1101, \"group\": [1784.0, 687.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39968_BALBc-1_X01_Y02_268_561\", \"ini\": 1640, \"clust\": 873, \"rank\": 2564, \"rankvar\": 2570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1186, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2546, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1870, \"group\": [874.0, 371.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40006_BALBc-1_X01_Y02_268_984\", \"ini\": 1639, \"clust\": 608, \"rank\": 1538, \"rankvar\": 1071, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1187, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 126, \"cat-2\": \"Density: 27\", \"cat_2_index\": 948, \"group\": [608.0, 264.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40052_BALBc-1_X01_Y02_269_644\", \"ini\": 1638, \"clust\": 474, \"rank\": 2362, \"rankvar\": 2017, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1188, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1206, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1525, \"group\": [484.0, 185.0, 48.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40139_BALBc-1_X01_Y02_27_826\", \"ini\": 1637, \"clust\": 2605, \"rank\": 563, \"rankvar\": 1616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1189, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1748, \"cat-2\": \"Density: 20\", \"cat_2_index\": 156, \"group\": [2608.0, 1100.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40204_BALBc-1_X01_Y02_270_792\", \"ini\": 1636, \"clust\": 552, \"rank\": 2651, \"rankvar\": 1721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1190, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 899, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2073, \"group\": [553.0, 226.0, 67.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40333_BALBc-1_X01_Y02_272_580\", \"ini\": 1635, \"clust\": 651, \"rank\": 1784, \"rankvar\": 1542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1191, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 127, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1249, \"group\": [651.0, 275.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40421_BALBc-1_X01_Y02_273_871\", \"ini\": 1634, \"clust\": 19, \"rank\": 1012, \"rankvar\": 239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1192, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 128, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2438, \"group\": [19.0, 14.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40533_BALBc-1_X01_Y02_275_478\", \"ini\": 1633, \"clust\": 822, \"rank\": 2307, \"rankvar\": 2091, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1193, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 129, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1661, \"group\": [823.0, 342.0, 96.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40559_BALBc-1_X01_Y02_275_815\", \"ini\": 1632, \"clust\": 1227, \"rank\": 436, \"rankvar\": 1198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1194, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 130, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2074, \"group\": [1224.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40761_BALBc-1_X01_Y02_278_453\", \"ini\": 1631, \"clust\": 881, \"rank\": 2262, \"rankvar\": 2561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1195, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 131, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1526, \"group\": [879.0, 373.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41007_BALBc-1_X01_Y02_280_883\", \"ini\": 1630, \"clust\": 346, \"rank\": 2557, \"rankvar\": 1549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1196, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 132, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2439, \"group\": [343.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41013_BALBc-1_X01_Y02_280_967\", \"ini\": 1629, \"clust\": 1652, \"rank\": 20, \"rankvar\": 106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1197, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 133, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1527, \"group\": [1650.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41049_BALBc-1_X01_Y02_281_533\", \"ini\": 1628, \"clust\": 788, \"rank\": 1340, \"rankvar\": 1467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1198, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 900, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1973, \"group\": [789.0, 328.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41198_BALBc-1_X01_Y02_283_337\", \"ini\": 1627, \"clust\": 2016, \"rank\": 699, \"rankvar\": 555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1199, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1207, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1102, \"group\": [2022.0, 799.0, 208.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41290_BALBc-1_X01_Y02_284_545\", \"ini\": 1626, \"clust\": 730, \"rank\": 2287, \"rankvar\": 1229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1200, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 134, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1974, \"group\": [729.0, 297.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41467_BALBc-1_X01_Y02_286_916\", \"ini\": 1625, \"clust\": 642, \"rank\": 1973, \"rankvar\": 1499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1201, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 135, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2372, \"group\": [650.0, 274.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41763_BALBc-1_X01_Y02_29_936\", \"ini\": 1624, \"clust\": 2725, \"rank\": 2754, \"rankvar\": 2382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1202, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1749, \"cat-2\": \"Density: 12\", \"cat_2_index\": 7, \"group\": [2724.0, 1174.0, 314.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41809_BALBc-1_X01_Y02_290_713\", \"ini\": 1623, \"clust\": 1158, \"rank\": 1568, \"rankvar\": 1228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1203, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 837, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1975, \"group\": [1159.0, 535.0, 156.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41901_BALBc-1_X01_Y02_291_852\", \"ini\": 1622, \"clust\": 661, \"rank\": 2215, \"rankvar\": 1055, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1204, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 136, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2155, \"group\": [660.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41931_BALBc-1_X01_Y02_292_367\", \"ini\": 1621, \"clust\": 2788, \"rank\": 2048, \"rankvar\": 1557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1205, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 901, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1401, \"group\": [2789.0, 1205.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41979_BALBc-1_X01_Y02_292_991\", \"ini\": 1620, \"clust\": 1369, \"rank\": 1555, \"rankvar\": 1015, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1206, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 137, \"cat-2\": \"Density: 25\", \"cat_2_index\": 658, \"group\": [1372.0, 577.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42051_BALBc-1_X01_Y02_293_825\", \"ini\": 1619, \"clust\": 609, \"rank\": 1762, \"rankvar\": 1295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1207, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 138, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2312, \"group\": [609.0, 264.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42197_BALBc-1_X01_Y02_296_1001\", \"ini\": 1618, \"clust\": 1855, \"rank\": 525, \"rankvar\": 810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1208, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 139, \"cat-2\": \"Density: 24\", \"cat_2_index\": 513, \"group\": [1857.0, 702.0, 182.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42211_BALBc-1_X01_Y02_296_251\", \"ini\": 1617, \"clust\": 2164, \"rank\": 1669, \"rankvar\": 2720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1209, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1208, \"cat-2\": \"Density: 26\", \"cat_2_index\": 797, \"group\": [2160.0, 856.0, 222.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42305_BALBc-1_X01_Y02_297_639\", \"ini\": 1616, \"clust\": 206, \"rank\": 1734, \"rankvar\": 2445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1210, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1209, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2075, \"group\": [202.0, 102.0, 32.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42319_BALBc-1_X01_Y02_297_804\", \"ini\": 1615, \"clust\": 1974, \"rank\": 653, \"rankvar\": 1630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1211, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 902, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2373, \"group\": [1977.0, 774.0, 202.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42398_BALBc-1_X01_Y02_298_87\", \"ini\": 1614, \"clust\": 2391, \"rank\": 1121, \"rankvar\": 1451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1212, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1210, \"cat-2\": \"Density: 24\", \"cat_2_index\": 514, \"group\": [2392.0, 986.0, 259.0, 65.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42612_BALBc-1_X01_Y02_300_601\", \"ini\": 1613, \"clust\": 626, \"rank\": 1891, \"rankvar\": 850, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1213, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 140, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2076, \"group\": [627.0, 271.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42732_BALBc-1_X01_Y02_301_949\", \"ini\": 1612, \"clust\": 648, \"rank\": 1802, \"rankvar\": 770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1214, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 141, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1976, \"group\": [646.0, 274.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43120_BALBc-1_X01_Y02_307_419\", \"ini\": 1611, \"clust\": 782, \"rank\": 1323, \"rankvar\": 1962, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1215, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 903, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1662, \"group\": [782.0, 324.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43132_BALBc-1_X01_Y02_307_574\", \"ini\": 1610, \"clust\": 764, \"rank\": 1171, \"rankvar\": 1581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1216, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 142, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1767, \"group\": [766.0, 315.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43153_BALBc-1_X01_Y02_307_973\", \"ini\": 1609, \"clust\": 24, \"rank\": 516, \"rankvar\": 1312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1217, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1211, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1528, \"group\": [25.0, 18.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43190_BALBc-1_X01_Y02_308_551\", \"ini\": 1608, \"clust\": 2041, \"rank\": 760, \"rankvar\": 2161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1218, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 143, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1977, \"group\": [2045.0, 806.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43335_BALBc-1_X01_Y02_31_697\", \"ini\": 1607, \"clust\": 1551, \"rank\": 824, \"rankvar\": 1905, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1219, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2547, \"cat-2\": \"Density: 14\", \"cat_2_index\": 31, \"group\": [1552.0, 652.0, 177.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43610_BALBc-1_X01_Y02_313_207\", \"ini\": 1606, \"clust\": 2626, \"rank\": 1775, \"rankvar\": 2097, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1220, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1212, \"cat-2\": \"Density: 26\", \"cat_2_index\": 798, \"group\": [2630.0, 1108.0, 287.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43667_BALBc-1_X01_Y02_313_928\", \"ini\": 1605, \"clust\": 109, \"rank\": 1742, \"rankvar\": 2572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1221, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 144, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2440, \"group\": [112.0, 64.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43786_BALBc-1_X01_Y02_315_720\", \"ini\": 1604, \"clust\": 1658, \"rank\": 259, \"rankvar\": 198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1222, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1213, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2374, \"group\": [1659.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43787_BALBc-1_X01_Y02_315_732\", \"ini\": 1603, \"clust\": 607, \"rank\": 2011, \"rankvar\": 1621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1223, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1994, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2441, \"group\": [610.0, 264.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43806_BALBc-1_X01_Y02_315_911\", \"ini\": 1602, \"clust\": 444, \"rank\": 2280, \"rankvar\": 884, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1224, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 145, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2657, \"group\": [442.0, 169.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43842_BALBc-1_X01_Y02_316_523\", \"ini\": 1601, \"clust\": 827, \"rank\": 2664, \"rankvar\": 2277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1225, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 146, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2156, \"group\": [827.0, 345.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43849_BALBc-1_X01_Y02_316_620\", \"ini\": 1600, \"clust\": 902, \"rank\": 2356, \"rankvar\": 2211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1226, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 147, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2157, \"group\": [904.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43973_BALBc-1_X01_Y02_317_998\", \"ini\": 1599, \"clust\": 700, \"rank\": 2553, \"rankvar\": 1830, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1227, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 148, \"cat-2\": \"Density: 24\", \"cat_2_index\": 515, \"group\": [698.0, 285.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44048_BALBc-1_X01_Y02_318_852\", \"ini\": 1598, \"clust\": 2004, \"rank\": 1058, \"rankvar\": 1181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1228, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 149, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2550, \"group\": [2007.0, 791.0, 206.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44158_BALBc-1_X01_Y02_32_575\", \"ini\": 1597, \"clust\": 1993, \"rank\": 2334, \"rankvar\": 2327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1229, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 838, \"cat-2\": \"Density: 17\", \"cat_2_index\": 79, \"group\": [1993.0, 784.0, 204.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44319_BALBc-1_X01_Y02_321_675\", \"ini\": 1596, \"clust\": 181, \"rank\": 1445, \"rankvar\": 1525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1230, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1214, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1978, \"group\": [181.0, 90.0, 29.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44330_BALBc-1_X01_Y02_321_819\", \"ini\": 1595, \"clust\": 440, \"rank\": 2153, \"rankvar\": 1797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1231, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 904, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2442, \"group\": [440.0, 169.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44535_BALBc-1_X01_Y02_324_399\", \"ini\": 1594, \"clust\": 1086, \"rank\": 864, \"rankvar\": 581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1232, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 905, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1402, \"group\": [1092.0, 494.0, 145.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44544_BALBc-1_X01_Y02_324_471\", \"ini\": 1593, \"clust\": 833, \"rank\": 2685, \"rankvar\": 2663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1233, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 150, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2158, \"group\": [834.0, 349.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44837_BALBc-1_X01_Y02_328_284\", \"ini\": 1592, \"clust\": 2191, \"rank\": 1704, \"rankvar\": 1236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1234, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 906, \"cat-2\": \"Density: 26\", \"cat_2_index\": 799, \"group\": [2194.0, 881.0, 229.0, 58.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44938_BALBc-1_X01_Y02_329_485\", \"ini\": 1591, \"clust\": 1326, \"rank\": 192, \"rankvar\": 723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1235, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 151, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2235, \"group\": [1327.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44940_BALBc-1_X01_Y02_329_520\", \"ini\": 1590, \"clust\": 1393, \"rank\": 919, \"rankvar\": 1968, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1236, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 152, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2236, \"group\": [1391.0, 582.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45002_BALBc-1_X01_Y02_33_176\", \"ini\": 1589, \"clust\": 2641, \"rank\": 1185, \"rankvar\": 1367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1237, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1968, \"cat-2\": \"Density: 19\", \"cat_2_index\": 120, \"group\": [2644.0, 1118.0, 290.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45143_BALBc-1_X01_Y02_331_141\", \"ini\": 1588, \"clust\": 2681, \"rank\": 2259, \"rankvar\": 2740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1238, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2454, \"cat-2\": \"Density: 24\", \"cat_2_index\": 516, \"group\": [2680.0, 1137.0, 299.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45181_BALBc-1_X01_Y02_331_563\", \"ini\": 1587, \"clust\": 1147, \"rank\": 1743, \"rankvar\": 1413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1239, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 153, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2077, \"group\": [1147.0, 528.0, 155.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45205_BALBc-1_X01_Y02_331_950\", \"ini\": 1586, \"clust\": 34, \"rank\": 1347, \"rankvar\": 1997, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1240, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1215, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2237, \"group\": [34.0, 22.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45467_BALBc-1_X01_Y02_335_449\", \"ini\": 1585, \"clust\": 1386, \"rank\": 946, \"rankvar\": 1430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1241, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 154, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1768, \"group\": [1385.0, 580.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45505_BALBc-1_X01_Y02_335_812\", \"ini\": 1584, \"clust\": 308, \"rank\": 1101, \"rankvar\": 475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1242, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 907, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2604, \"group\": [309.0, 129.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45513_BALBc-1_X01_Y02_335_880\", \"ini\": 1583, \"clust\": 1831, \"rank\": 381, \"rankvar\": 61, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1243, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 155, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2703, \"group\": [1831.0, 696.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45549_BALBc-1_X01_Y02_336_399\", \"ini\": 1582, \"clust\": 1850, \"rank\": 753, \"rankvar\": 244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1244, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 156, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1403, \"group\": [1854.0, 701.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45699_BALBc-1_X01_Y02_338_596\", \"ini\": 1581, \"clust\": 2002, \"rank\": 1177, \"rankvar\": 1576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1245, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 157, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2375, \"group\": [2003.0, 791.0, 206.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45736_BALBc-1_X01_Y02_338_994\", \"ini\": 1580, \"clust\": 464, \"rank\": 1809, \"rankvar\": 637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1246, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1216, \"cat-2\": \"Density: 26\", \"cat_2_index\": 800, \"group\": [463.0, 176.0, 47.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45772_BALBc-1_X01_Y02_339_514\", \"ini\": 1579, \"clust\": 1060, \"rank\": 1627, \"rankvar\": 1624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1247, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 158, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2313, \"group\": [1060.0, 471.0, 134.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45887_BALBc-1_X01_Y02_340_11\", \"ini\": 1578, \"clust\": 1500, \"rank\": 390, \"rankvar\": 930, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1248, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2309, \"cat-2\": \"Density: 27\", \"cat_2_index\": 949, \"group\": [1499.0, 629.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46022_BALBc-1_X01_Y02_341_760\", \"ini\": 1577, \"clust\": 2791, \"rank\": 2316, \"rankvar\": 1584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1249, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 908, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2740, \"group\": [2792.0, 1207.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46029_BALBc-1_X01_Y02_341_855\", \"ini\": 1576, \"clust\": 345, \"rank\": 2465, \"rankvar\": 1479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1250, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 159, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2512, \"group\": [347.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46196_BALBc-1_X01_Y02_344_268\", \"ini\": 1575, \"clust\": 2155, \"rank\": 1022, \"rankvar\": 1979, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1251, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1217, \"cat-2\": \"Density: 25\", \"cat_2_index\": 659, \"group\": [2165.0, 859.0, 222.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46287_BALBc-1_X01_Y02_345_339\", \"ini\": 1574, \"clust\": 2110, \"rank\": 480, \"rankvar\": 1396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1252, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 909, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1250, \"group\": [2110.0, 834.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46316_BALBc-1_X01_Y02_345_683\", \"ini\": 1573, \"clust\": 475, \"rank\": 1533, \"rankvar\": 997, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1253, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1218, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2238, \"group\": [474.0, 182.0, 48.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46325_BALBc-1_X01_Y02_345_783\", \"ini\": 1572, \"clust\": 625, \"rank\": 1416, \"rankvar\": 565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1254, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 910, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2551, \"group\": [626.0, 270.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46464_BALBc-1_X01_Y02_347_433\", \"ini\": 1571, \"clust\": 1015, \"rank\": 1676, \"rankvar\": 1441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1255, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 160, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2078, \"group\": [1017.0, 439.0, 123.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46599_BALBc-1_X01_Y02_349_408\", \"ini\": 1570, \"clust\": 1710, \"rank\": 364, \"rankvar\": 542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1256, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2548, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1529, \"group\": [1713.0, 681.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46604_BALBc-1_X01_Y02_349_467\", \"ini\": 1569, \"clust\": 363, \"rank\": 2767, \"rankvar\": 2197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1257, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 161, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2159, \"group\": [364.0, 150.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46653_BALBc-1_X01_Y02_349_905\", \"ini\": 1568, \"clust\": 7, \"rank\": 2319, \"rankvar\": 2178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1258, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1563, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2741, \"group\": [10.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46659_BALBc-1_X01_Y02_349_959\", \"ini\": 1567, \"clust\": 2051, \"rank\": 1308, \"rankvar\": 429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1259, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1219, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1979, \"group\": [2058.0, 813.0, 211.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46698_BALBc-1_X01_Y02_35_602\", \"ini\": 1566, \"clust\": 2048, \"rank\": 745, \"rankvar\": 1355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1260, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 162, \"cat-2\": \"Density: 18\", \"cat_2_index\": 96, \"group\": [2048.0, 807.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46751_BALBc-1_X01_Y02_350_379\", \"ini\": 1565, \"clust\": 921, \"rank\": 2142, \"rankvar\": 1878, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1261, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 911, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1251, \"group\": [924.0, 379.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46910_BALBc-1_X01_Y02_352_503\", \"ini\": 1564, \"clust\": 1739, \"rank\": 77, \"rankvar\": 491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1262, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 163, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2443, \"group\": [1740.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46947_BALBc-1_X01_Y02_352_937\", \"ini\": 1563, \"clust\": 1135, \"rank\": 1225, \"rankvar\": 801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1263, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 164, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2376, \"group\": [1136.0, 521.0, 153.0, 43.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47001_BALBc-1_X01_Y02_353_565\", \"ini\": 1562, \"clust\": 347, \"rank\": 2249, \"rankvar\": 1346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1264, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 165, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2444, \"group\": [344.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47004_BALBc-1_X01_Y02_353_639\", \"ini\": 1561, \"clust\": 327, \"rank\": 2590, \"rankvar\": 2122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1265, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 166, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2377, \"group\": [326.0, 137.0, 41.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47226_BALBc-1_X01_Y02_356_521\", \"ini\": 1560, \"clust\": 416, \"rank\": 2469, \"rankvar\": 2615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1266, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 167, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2239, \"group\": [417.0, 157.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47251_BALBc-1_X01_Y02_356_828\", \"ini\": 1559, \"clust\": 217, \"rank\": 556, \"rankvar\": 737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1267, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 168, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2445, \"group\": [217.0, 109.0, 36.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47374_BALBc-1_X01_Y02_358_677\", \"ini\": 1558, \"clust\": 1606, \"rank\": 243, \"rankvar\": 47, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1268, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 169, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2314, \"group\": [1607.0, 677.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47389_BALBc-1_X01_Y02_358_844\", \"ini\": 1557, \"clust\": 1106, \"rank\": 1027, \"rankvar\": 321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1269, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 170, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2605, \"group\": [1104.0, 503.0, 148.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47513_BALBc-1_X01_Y02_36_798\", \"ini\": 1556, \"clust\": 2668, \"rank\": 2688, \"rankvar\": 2660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1270, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1750, \"cat-2\": \"Density: 19\", \"cat_2_index\": 121, \"group\": [2668.0, 1134.0, 298.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47658_BALBc-1_X01_Y02_361_808\", \"ini\": 1555, \"clust\": 1111, \"rank\": 962, \"rankvar\": 349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1271, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1995, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2552, \"group\": [1110.0, 507.0, 148.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47694_BALBc-1_X01_Y02_362_294\", \"ini\": 1554, \"clust\": 1349, \"rank\": 151, \"rankvar\": 526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1272, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2549, \"cat-2\": \"Density: 23\", \"cat_2_index\": 401, \"group\": [1348.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47867_BALBc-1_X01_Y02_364_621\", \"ini\": 1553, \"clust\": 1195, \"rank\": 540, \"rankvar\": 755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1273, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 171, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2315, \"group\": [1196.0, 548.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47897_BALBc-1_X01_Y02_364_854\", \"ini\": 1552, \"clust\": 1621, \"rank\": 11, \"rankvar\": 376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1274, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 172, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2800, \"group\": [1616.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47915_BALBc-1_X01_Y02_365_14\", \"ini\": 1551, \"clust\": 1476, \"rank\": 577, \"rankvar\": 1638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1275, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2550, \"cat-2\": \"Density: 24\", \"cat_2_index\": 517, \"group\": [1476.0, 623.0, 170.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48021_BALBc-1_X01_Y02_366_342\", \"ini\": 1550, \"clust\": 903, \"rank\": 2594, \"rankvar\": 2392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1276, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2551, \"cat-2\": \"Density: 27\", \"cat_2_index\": 950, \"group\": [902.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48025_BALBc-1_X01_Y02_366_428\", \"ini\": 1549, \"clust\": 1781, \"rank\": 387, \"rankvar\": 718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1277, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2552, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1871, \"group\": [1786.0, 687.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48215_BALBc-1_X01_Y02_368_757\", \"ini\": 1548, \"clust\": 276, \"rank\": 1403, \"rankvar\": 1983, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1278, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1996, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2606, \"group\": [274.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48507_BALBc-1_X01_Y02_371_768\", \"ini\": 1547, \"clust\": 704, \"rank\": 2532, \"rankvar\": 1278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1279, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1997, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2742, \"group\": [706.0, 285.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48580_BALBc-1_X01_Y02_372_677\", \"ini\": 1546, \"clust\": 390, \"rank\": 2164, \"rankvar\": 2187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1280, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 173, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2378, \"group\": [391.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48668_BALBc-1_X01_Y02_373_878\", \"ini\": 1545, \"clust\": 691, \"rank\": 2251, \"rankvar\": 1947, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1281, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1564, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2553, \"group\": [694.0, 283.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48752_BALBc-1_X01_Y02_374_953\", \"ini\": 1544, \"clust\": 1601, \"rank\": 319, \"rankvar\": 5, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1282, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 174, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1980, \"group\": [1600.0, 676.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48829_BALBc-1_X01_Y02_375_937\", \"ini\": 1543, \"clust\": 31, \"rank\": 2140, \"rankvar\": 2473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1283, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1565, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2316, \"group\": [31.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48836_BALBc-1_X01_Y02_375_988\", \"ini\": 1542, \"clust\": 1370, \"rank\": 1521, \"rankvar\": 920, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1284, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1220, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1103, \"group\": [1371.0, 577.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48875_BALBc-1_X01_Y02_376_577\", \"ini\": 1541, \"clust\": 302, \"rank\": 1060, \"rankvar\": 1301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1285, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 175, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1872, \"group\": [302.0, 127.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49022_BALBc-1_X01_Y02_378_546\", \"ini\": 1540, \"clust\": 1026, \"rank\": 1458, \"rankvar\": 697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1286, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2553, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2446, \"group\": [1026.0, 447.0, 126.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49038_BALBc-1_X01_Y02_378_703\", \"ini\": 1539, \"clust\": 1299, \"rank\": 451, \"rankvar\": 350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1287, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1998, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2447, \"group\": [1297.0, 568.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49110_BALBc-1_X01_Y02_379_604\", \"ini\": 1538, \"clust\": 445, \"rank\": 1909, \"rankvar\": 927, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1288, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 176, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2513, \"group\": [443.0, 169.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49158_BALBc-1_X01_Y02_38_459\", \"ini\": 1537, \"clust\": 2564, \"rank\": 2274, \"rankvar\": 2523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1289, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2310, \"cat-2\": \"Density: 21\", \"cat_2_index\": 207, \"group\": [2567.0, 1070.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49214_BALBc-1_X01_Y02_380_267\", \"ini\": 1536, \"clust\": 2085, \"rank\": 928, \"rankvar\": 586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1290, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1221, \"cat-2\": \"Density: 24\", \"cat_2_index\": 518, \"group\": [2090.0, 829.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49503_BALBc-1_X01_Y02_383_640\", \"ini\": 1535, \"clust\": 413, \"rank\": 2193, \"rankvar\": 2458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1291, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 177, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2448, \"group\": [413.0, 156.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49514_BALBc-1_X01_Y02_383_738\", \"ini\": 1534, \"clust\": 309, \"rank\": 965, \"rankvar\": 476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1292, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1999, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2607, \"group\": [310.0, 129.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49654_BALBc-1_X01_Y02_385_588\", \"ini\": 1533, \"clust\": 226, \"rank\": 1727, \"rankvar\": 1123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1293, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 178, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2240, \"group\": [225.0, 113.0, 37.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49736_BALBc-1_X01_Y02_386_473\", \"ini\": 1532, \"clust\": 253, \"rank\": 2117, \"rankvar\": 2317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1294, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 179, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2241, \"group\": [253.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49747_BALBc-1_X01_Y02_386_572\", \"ini\": 1531, \"clust\": 1162, \"rank\": 738, \"rankvar\": 1082, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1295, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2554, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2379, \"group\": [1161.0, 536.0, 156.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49822_BALBc-1_X01_Y02_387_448\", \"ini\": 1530, \"clust\": 1304, \"rank\": 597, \"rankvar\": 235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1296, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 839, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1981, \"group\": [1303.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50058_BALBc-1_X01_Y02_39_628\", \"ini\": 1529, \"clust\": 2099, \"rank\": 1243, \"rankvar\": 1891, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1297, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1222, \"cat-2\": \"Density: 16\", \"cat_2_index\": 60, \"group\": [2102.0, 832.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50084_BALBc-1_X01_Y02_39_93\", \"ini\": 1528, \"clust\": 1053, \"rank\": 918, \"rankvar\": 2034, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1298, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1969, \"cat-2\": \"Density: 17\", \"cat_2_index\": 80, \"group\": [1052.0, 467.0, 133.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50363_BALBc-1_X01_Y02_393_824\", \"ini\": 1527, \"clust\": 1583, \"rank\": 100, \"rankvar\": 625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1299, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2000, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2514, \"group\": [1585.0, 671.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50468_BALBc-1_X01_Y02_395_251\", \"ini\": 1526, \"clust\": 1736, \"rank\": 35, \"rankvar\": 86, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1300, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1223, \"cat-2\": \"Density: 27\", \"cat_2_index\": 951, \"group\": [1736.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50654_BALBc-1_X01_Y02_397_653\", \"ini\": 1525, \"clust\": 627, \"rank\": 1760, \"rankvar\": 1084, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1301, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 180, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2449, \"group\": [628.0, 271.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50678_BALBc-1_X01_Y02_397_965\", \"ini\": 1524, \"clust\": 2773, \"rank\": 2187, \"rankvar\": 499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1302, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 181, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1873, \"group\": [2776.0, 1202.0, 320.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50749_BALBc-1_X01_Y02_398_842\", \"ini\": 1523, \"clust\": 338, \"rank\": 2578, \"rankvar\": 1534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1303, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 182, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2450, \"group\": [335.0, 142.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50801_BALBc-1_X01_Y02_399_479\", \"ini\": 1522, \"clust\": 14, \"rank\": 1600, \"rankvar\": 1291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1304, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 183, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2160, \"group\": [17.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50842_BALBc-1_X01_Y02_399_873\", \"ini\": 1521, \"clust\": 1327, \"rank\": 228, \"rankvar\": 432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1305, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 184, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2554, \"group\": [1326.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50850_BALBc-1_X01_Y02_399_955\", \"ini\": 1520, \"clust\": 1136, \"rank\": 513, \"rankvar\": 1879, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1306, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 185, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2161, \"group\": [1134.0, 521.0, 153.0, 43.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51102_BALBc-1_X01_Y02_401_718\", \"ini\": 1519, \"clust\": 428, \"rank\": 1569, \"rankvar\": 874, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1307, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2001, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2555, \"group\": [428.0, 163.0, 43.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51108_BALBc-1_X01_Y02_401_770\", \"ini\": 1518, \"clust\": 1817, \"rank\": 244, \"rankvar\": 228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1308, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2002, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2743, \"group\": [1817.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51160_BALBc-1_X01_Y02_402_614\", \"ini\": 1517, \"clust\": 8, \"rank\": 1913, \"rankvar\": 2176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1309, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 186, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2317, \"group\": [8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51170_BALBc-1_X01_Y02_402_685\", \"ini\": 1516, \"clust\": 1586, \"rank\": 113, \"rankvar\": 695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1310, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 187, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2451, \"group\": [1583.0, 671.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51249_BALBc-1_X01_Y02_403_900\", \"ini\": 1515, \"clust\": 1862, \"rank\": 821, \"rankvar\": 306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1311, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1566, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2556, \"group\": [1863.0, 705.0, 182.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51335_BALBc-1_X01_Y02_404_940\", \"ini\": 1514, \"clust\": 722, \"rank\": 2475, \"rankvar\": 1547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1312, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1567, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2242, \"group\": [725.0, 296.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51490_BALBc-1_X01_Y02_406_791\", \"ini\": 1513, \"clust\": 227, \"rank\": 1663, \"rankvar\": 1440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1313, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2003, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2608, \"group\": [226.0, 113.0, 37.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51601_BALBc-1_X01_Y02_408_107\", \"ini\": 1512, \"clust\": 2059, \"rank\": 1017, \"rankvar\": 2265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1314, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2311, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1104, \"group\": [2060.0, 815.0, 212.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51695_BALBc-1_X01_Y02_409_238\", \"ini\": 1511, \"clust\": 78, \"rank\": 2179, \"rankvar\": 1920, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1315, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1224, \"cat-2\": \"Density: 26\", \"cat_2_index\": 801, \"group\": [81.0, 52.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51890_BALBc-1_X01_Y02_410_582\", \"ini\": 1510, \"clust\": 613, \"rank\": 1559, \"rankvar\": 340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1316, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 188, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1982, \"group\": [614.0, 266.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51921_BALBc-1_X01_Y02_411_121\", \"ini\": 1509, \"clust\": 2612, \"rank\": 382, \"rankvar\": 1299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1317, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 840, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1404, \"group\": [2611.0, 1102.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51976_BALBc-1_X01_Y02_411_847\", \"ini\": 1508, \"clust\": 289, \"rank\": 1605, \"rankvar\": 1368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1318, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 189, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2609, \"group\": [287.0, 122.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52269_BALBc-1_X01_Y02_415_277\", \"ini\": 1507, \"clust\": 1529, \"rank\": 1212, \"rankvar\": 1307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1319, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 621, \"cat-2\": \"Density: 27\", \"cat_2_index\": 952, \"group\": [1530.0, 645.0, 175.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52299_BALBc-1_X01_Y02_415_694\", \"ini\": 1506, \"clust\": 656, \"rank\": 1478, \"rankvar\": 1330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1320, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 190, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2658, \"group\": [654.0, 275.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52362_BALBc-1_X01_Y02_416_643\", \"ini\": 1505, \"clust\": 530, \"rank\": 2136, \"rankvar\": 1769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1321, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 191, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2452, \"group\": [530.0, 214.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52446_BALBc-1_X01_Y02_417_9\", \"ini\": 1504, \"clust\": 1501, \"rank\": 772, \"rankvar\": 1639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1322, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2242, \"cat-2\": \"Density: 27\", \"cat_2_index\": 953, \"group\": [1504.0, 632.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52574_BALBc-1_X01_Y02_419_463\", \"ini\": 1503, \"clust\": 1331, \"rank\": 255, \"rankvar\": 658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1323, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 841, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2243, \"group\": [1331.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52615_BALBc-1_X01_Y02_419_921\", \"ini\": 1502, \"clust\": 210, \"rank\": 1107, \"rankvar\": 618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1324, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1568, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2453, \"group\": [209.0, 106.0, 35.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52720_BALBc-1_X01_Y02_420_41\", \"ini\": 1501, \"clust\": 2389, \"rank\": 627, \"rankvar\": 1204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1325, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2312, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1405, \"group\": [2390.0, 984.0, 258.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52738_BALBc-1_X01_Y02_420_619\", \"ini\": 1500, \"clust\": 22, \"rank\": 947, \"rankvar\": 1622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1326, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 192, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2380, \"group\": [22.0, 17.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52831_BALBc-1_X01_Y02_421_884\", \"ini\": 1499, \"clust\": 1127, \"rank\": 1131, \"rankvar\": 214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1327, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 193, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2557, \"group\": [1128.0, 517.0, 151.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52841_BALBc-1_X01_Y02_421_966\", \"ini\": 1498, \"clust\": 1833, \"rank\": 550, \"rankvar\": 424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1328, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 194, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1769, \"group\": [1836.0, 696.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52887_BALBc-1_X01_Y02_422_566\", \"ini\": 1497, \"clust\": 1108, \"rank\": 851, \"rankvar\": 532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1329, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2555, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2162, \"group\": [1108.0, 506.0, 148.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52914_BALBc-1_X01_Y02_422_826\", \"ini\": 1496, \"clust\": 387, \"rank\": 2325, \"rankvar\": 1824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1330, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 195, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2454, \"group\": [386.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52954_BALBc-1_X01_Y02_423_373\", \"ini\": 1495, \"clust\": 977, \"rank\": 2591, \"rankvar\": 2199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1331, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2556, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1530, \"group\": [978.0, 410.0, 112.0, 30.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52986_BALBc-1_X01_Y02_423_804\", \"ini\": 1494, \"clust\": 2120, \"rank\": 881, \"rankvar\": 785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1332, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 912, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2659, \"group\": [2126.0, 837.0, 215.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53029_BALBc-1_X01_Y02_424_444\", \"ini\": 1493, \"clust\": 617, \"rank\": 1419, \"rankvar\": 1339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1333, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 842, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2079, \"group\": [618.0, 267.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53035_BALBc-1_X01_Y02_424_524\", \"ini\": 1492, \"clust\": 1380, \"rank\": 1041, \"rankvar\": 1004, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1334, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2557, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2381, \"group\": [1380.0, 578.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53103_BALBc-1_X01_Y02_425_394\", \"ini\": 1491, \"clust\": 957, \"rank\": 565, \"rankvar\": 1189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1335, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2558, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1663, \"group\": [958.0, 398.0, 108.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53160_BALBc-1_X01_Y02_426_216\", \"ini\": 1490, \"clust\": 1334, \"rank\": 179, \"rankvar\": 182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1336, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1225, \"cat-2\": \"Density: 27\", \"cat_2_index\": 954, \"group\": [1332.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53185_BALBc-1_X01_Y02_426_493\", \"ini\": 1489, \"clust\": 256, \"rank\": 2133, \"rankvar\": 2100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1337, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2004, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2382, \"group\": [255.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53235_BALBc-1_X01_Y02_426_993\", \"ini\": 1488, \"clust\": 94, \"rank\": 2814, \"rankvar\": 2788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1338, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1226, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1105, \"group\": [90.0, 55.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53488_BALBc-1_X01_Y02_43_189\", \"ini\": 1487, \"clust\": 2720, \"rank\": 2596, \"rankvar\": 2414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1339, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2490, \"cat-2\": \"Density: 20\", \"cat_2_index\": 157, \"group\": [2722.0, 1172.0, 313.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53513_BALBc-1_X01_Y02_43_535\", \"ini\": 1486, \"clust\": 2252, \"rank\": 2109, \"rankvar\": 1620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1340, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 843, \"cat-2\": \"Density: 24\", \"cat_2_index\": 519, \"group\": [2255.0, 915.0, 238.0, 60.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53632_BALBc-1_X01_Y02_430_943\", \"ini\": 1485, \"clust\": 2270, \"rank\": 1336, \"rankvar\": 1569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1341, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 196, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2244, \"group\": [2270.0, 924.0, 241.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53680_BALBc-1_X01_Y02_431_592\", \"ini\": 1484, \"clust\": 241, \"rank\": 2387, \"rankvar\": 2619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1342, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2005, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2245, \"group\": [240.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53775_BALBc-1_X01_Y02_432_719\", \"ini\": 1483, \"clust\": 659, \"rank\": 1936, \"rankvar\": 981, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1343, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2006, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2660, \"group\": [658.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54002_BALBc-1_X01_Y02_435_644\", \"ini\": 1482, \"clust\": 1409, \"rank\": 1285, \"rankvar\": 146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1344, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 197, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2610, \"group\": [1409.0, 586.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54089_BALBc-1_X01_Y02_436_868\", \"ini\": 1481, \"clust\": 236, \"rank\": 1927, \"rankvar\": 841, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1345, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 198, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2661, \"group\": [237.0, 120.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54172_BALBc-1_X01_Y02_437_824\", \"ini\": 1480, \"clust\": 316, \"rank\": 1229, \"rankvar\": 891, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1346, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2007, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2455, \"group\": [321.0, 134.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54244_BALBc-1_X01_Y02_438_683\", \"ini\": 1479, \"clust\": 264, \"rank\": 1656, \"rankvar\": 1851, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1347, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2008, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2558, \"group\": [263.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54404_BALBc-1_X01_Y02_44_835\", \"ini\": 1478, \"clust\": 1058, \"rank\": 1945, \"rankvar\": 2250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1348, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1227, \"cat-2\": \"Density: 21\", \"cat_2_index\": 208, \"group\": [1058.0, 469.0, 134.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54437_BALBc-1_X01_Y02_440_316\", \"ini\": 1477, \"clust\": 1325, \"rank\": 195, \"rankvar\": 422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1349, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2559, \"cat-2\": \"Density: 25\", \"cat_2_index\": 660, \"group\": [1328.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54530_BALBc-1_X01_Y02_441_532\", \"ini\": 1476, \"clust\": 879, \"rank\": 1853, \"rankvar\": 2289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1350, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2009, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2383, \"group\": [880.0, 373.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54679_BALBc-1_X01_Y02_443_444\", \"ini\": 1475, \"clust\": 1290, \"rank\": 612, \"rankvar\": 943, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1351, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 199, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1874, \"group\": [1293.0, 566.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54837_BALBc-1_X01_Y02_445_603\", \"ini\": 1474, \"clust\": 330, \"rank\": 1781, \"rankvar\": 1793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1352, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 200, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2456, \"group\": [332.0, 140.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54860_BALBc-1_X01_Y02_445_91\", \"ini\": 1473, \"clust\": 1518, \"rank\": 634, \"rankvar\": 1759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1353, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2313, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1252, \"group\": [1519.0, 639.0, 173.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54974_BALBc-1_X01_Y02_447_354\", \"ini\": 1472, \"clust\": 963, \"rank\": 204, \"rankvar\": 1810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1354, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2560, \"cat-2\": \"Density: 26\", \"cat_2_index\": 802, \"group\": [964.0, 400.0, 108.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55065_BALBc-1_X01_Y02_448_466\", \"ini\": 1471, \"clust\": 1696, \"rank\": 59, \"rankvar\": 127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1355, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2010, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2163, \"group\": [1694.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55103_BALBc-1_X01_Y02_448_891\", \"ini\": 1470, \"clust\": 1770, \"rank\": 500, \"rankvar\": 942, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1356, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2011, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2559, \"group\": [1770.0, 684.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55107_BALBc-1_X01_Y02_448_964\", \"ini\": 1469, \"clust\": 639, \"rank\": 1604, \"rankvar\": 661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1357, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 201, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1983, \"group\": [640.0, 273.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55165_BALBc-1_X01_Y02_449_995\", \"ini\": 1468, \"clust\": 93, \"rank\": 2749, \"rankvar\": 2822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1358, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1228, \"cat-2\": \"Density: 25\", \"cat_2_index\": 661, \"group\": [92.0, 55.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55457_BALBc-1_X01_Y02_452_827\", \"ini\": 1467, \"clust\": 386, \"rank\": 2516, \"rankvar\": 2420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1359, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2012, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2662, \"group\": [388.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55626_BALBc-1_X01_Y02_454_938\", \"ini\": 1466, \"clust\": 649, \"rank\": 1888, \"rankvar\": 978, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1360, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 202, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2318, \"group\": [647.0, 274.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55632_BALBc-1_X01_Y02_455_133\", \"ini\": 1465, \"clust\": 2545, \"rank\": 1341, \"rankvar\": 1975, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1361, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1229, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1253, \"group\": [2544.0, 1060.0, 275.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55682_BALBc-1_X01_Y02_455_662\", \"ini\": 1464, \"clust\": 1112, \"rank\": 835, \"rankvar\": 142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1362, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2013, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2457, \"group\": [1111.0, 507.0, 148.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55975_BALBc-1_X01_Y02_459_725\", \"ini\": 1463, \"clust\": 373, \"rank\": 2440, \"rankvar\": 2092, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1363, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 913, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2611, \"group\": [375.0, 152.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55987_BALBc-1_X01_Y02_459_856\", \"ini\": 1462, \"clust\": 1382, \"rank\": 1447, \"rankvar\": 1154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1364, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2014, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2384, \"group\": [1383.0, 579.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56102_BALBc-1_X01_Y02_460_412\", \"ini\": 1461, \"clust\": 2779, \"rank\": 2808, \"rankvar\": 2810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1365, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2811, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1875, \"group\": [2777.0, 1203.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56118_BALBc-1_X01_Y02_460_632\", \"ini\": 1460, \"clust\": 298, \"rank\": 1499, \"rankvar\": 701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1366, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 203, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2515, \"group\": [300.0, 125.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56299_BALBc-1_X01_Y02_462_698\", \"ini\": 1459, \"clust\": 1129, \"rank\": 953, \"rankvar\": 674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1367, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2015, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2516, \"group\": [1129.0, 518.0, 151.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56546_BALBc-1_X01_Y02_466_18\", \"ini\": 1458, \"clust\": 1341, \"rank\": 218, \"rankvar\": 688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1368, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1551, \"cat-2\": \"Density: 27\", \"cat_2_index\": 955, \"group\": [1341.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56758_BALBc-1_X01_Y02_468_767\", \"ini\": 1457, \"clust\": 374, \"rank\": 2739, \"rankvar\": 2538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1369, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 914, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2744, \"group\": [373.0, 152.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56777_BALBc-1_X01_Y02_469_107\", \"ini\": 1456, \"clust\": 2772, \"rank\": 2682, \"rankvar\": 2742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1370, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 844, \"cat-2\": \"Density: 26\", \"cat_2_index\": 803, \"group\": [2771.0, 1198.0, 319.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56993_BALBc-1_X01_Y02_470_811\", \"ini\": 1455, \"clust\": 1110, \"rank\": 823, \"rankvar\": 365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1371, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2016, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2663, \"group\": [1112.0, 507.0, 148.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57236_BALBc-1_X01_Y02_474_156\", \"ini\": 1454, \"clust\": 2769, \"rank\": 2003, \"rankvar\": 2162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1372, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 845, \"cat-2\": \"Density: 23\", \"cat_2_index\": 402, \"group\": [2773.0, 1200.0, 319.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57266_BALBc-1_X01_Y02_474_476\", \"ini\": 1453, \"clust\": 328, \"rank\": 2511, \"rankvar\": 1987, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1373, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2017, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2246, \"group\": [327.0, 137.0, 41.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57317_BALBc-1_X01_Y02_475_174\", \"ini\": 1452, \"clust\": 2671, \"rank\": 1551, \"rankvar\": 1774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1374, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1230, \"cat-2\": \"Density: 26\", \"cat_2_index\": 804, \"group\": [2672.0, 1136.0, 299.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57390_BALBc-1_X01_Y02_475_992\", \"ini\": 1451, \"clust\": 669, \"rank\": 2513, \"rankvar\": 1340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1375, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1231, \"cat-2\": \"Density: 26\", \"cat_2_index\": 805, \"group\": [667.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57421_BALBc-1_X01_Y02_476_442\", \"ini\": 1450, \"clust\": 1253, \"rank\": 617, \"rankvar\": 1021, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1376, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 204, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2247, \"group\": [1253.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57434_BALBc-1_X01_Y02_476_544\", \"ini\": 1449, \"clust\": 245, \"rank\": 2017, \"rankvar\": 2560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1377, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2018, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2319, \"group\": [242.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57441_BALBc-1_X01_Y02_476_598\", \"ini\": 1448, \"clust\": 1793, \"rank\": 487, \"rankvar\": 590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1378, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 205, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2385, \"group\": [1795.0, 688.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57487_BALBc-1_X01_Y02_477_186\", \"ini\": 1447, \"clust\": 40, \"rank\": 973, \"rankvar\": 2182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1379, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1232, \"cat-2\": \"Density: 24\", \"cat_2_index\": 520, \"group\": [44.0, 26.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57490_BALBc-1_X01_Y02_477_220\", \"ini\": 1446, \"clust\": 2112, \"rank\": 307, \"rankvar\": 1750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1380, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1233, \"cat-2\": \"Density: 23\", \"cat_2_index\": 403, \"group\": [2114.0, 834.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57549_BALBc-1_X01_Y02_477_962\", \"ini\": 1445, \"clust\": 1998, \"rank\": 693, \"rankvar\": 756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1381, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 206, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1984, \"group\": [1998.0, 788.0, 206.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57571_BALBc-1_X01_Y02_478_269\", \"ini\": 1444, \"clust\": 1028, \"rank\": 498, \"rankvar\": 818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1382, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1234, \"cat-2\": \"Density: 24\", \"cat_2_index\": 521, \"group\": [1028.0, 449.0, 127.0, 35.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57683_BALBc-1_X01_Y02_479_571\", \"ini\": 1443, \"clust\": 377, \"rank\": 2303, \"rankvar\": 2045, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1383, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2019, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2560, \"group\": [376.0, 153.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57835_BALBc-1_X01_Y02_480_722\", \"ini\": 1442, \"clust\": 310, \"rank\": 731, \"rankvar\": 71, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1384, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 207, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2517, \"group\": [313.0, 130.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57878_BALBc-1_X01_Y02_481_244\", \"ini\": 1441, \"clust\": 2520, \"rank\": 1100, \"rankvar\": 1926, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1385, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1235, \"cat-2\": \"Density: 22\", \"cat_2_index\": 288, \"group\": [2519.0, 1046.0, 270.0, 68.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58001_BALBc-1_X01_Y02_482_917\", \"ini\": 1440, \"clust\": 481, \"rank\": 1837, \"rankvar\": 1149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1386, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2020, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2801, \"group\": [478.0, 183.0, 48.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58043_BALBc-1_X01_Y02_483_520\", \"ini\": 1439, \"clust\": 1557, \"rank\": 952, \"rankvar\": 668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1387, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2021, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2080, \"group\": [1558.0, 656.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58156_BALBc-1_X01_Y02_484_753\", \"ini\": 1438, \"clust\": 1367, \"rank\": 988, \"rankvar\": 991, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1388, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2022, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2704, \"group\": [1367.0, 577.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58206_BALBc-1_X01_Y02_485_407\", \"ini\": 1437, \"clust\": 1319, \"rank\": 103, \"rankvar\": 105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1389, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2023, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1531, \"group\": [1316.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58226_BALBc-1_X01_Y02_485_621\", \"ini\": 1436, \"clust\": 1024, \"rank\": 1126, \"rankvar\": 1543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1390, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 208, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2081, \"group\": [1027.0, 448.0, 126.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58228_BALBc-1_X01_Y02_485_649\", \"ini\": 1435, \"clust\": 396, \"rank\": 2244, \"rankvar\": 2080, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1391, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1236, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2248, \"group\": [400.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58327_BALBc-1_X01_Y02_486_99\", \"ini\": 1434, \"clust\": 2601, \"rank\": 844, \"rankvar\": 1218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1392, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1655, \"cat-2\": \"Density: 27\", \"cat_2_index\": 956, \"group\": [2604.0, 1098.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58359_BALBc-1_X01_Y02_487_496\", \"ini\": 1433, \"clust\": 247, \"rank\": 1881, \"rankvar\": 1860, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1393, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2024, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2082, \"group\": [244.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58404_BALBc-1_X01_Y02_487_980\", \"ini\": 1432, \"clust\": 1616, \"rank\": 115, \"rankvar\": 686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1394, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 209, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1664, \"group\": [1615.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58545_BALBc-1_X01_Y02_489_773\", \"ini\": 1431, \"clust\": 285, \"rank\": 1878, \"rankvar\": 381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1395, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2025, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2518, \"group\": [284.0, 122.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58554_BALBc-1_X01_Y02_489_847\", \"ini\": 1430, \"clust\": 350, \"rank\": 2452, \"rankvar\": 1560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1396, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2026, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2705, \"group\": [350.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58565_BALBc-1_X01_Y02_489_942\", \"ini\": 1429, \"clust\": 2691, \"rank\": 2487, \"rankvar\": 1122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1397, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 210, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2519, \"group\": [2690.0, 1147.0, 304.0, 76.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58586_BALBc-1_X01_Y02_49_255\", \"ini\": 1428, \"clust\": 2678, \"rank\": 1883, \"rankvar\": 2715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1398, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1237, \"cat-2\": \"Density: 18\", \"cat_2_index\": 97, \"group\": [2677.0, 1137.0, 299.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58666_BALBc-1_X01_Y02_490_220\", \"ini\": 1427, \"clust\": 574, \"rank\": 1789, \"rankvar\": 1383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1399, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 211, \"cat-2\": \"Density: 23\", \"cat_2_index\": 404, \"group\": [575.0, 240.0, 70.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58836_BALBc-1_X01_Y02_492_696\", \"ini\": 1426, \"clust\": 482, \"rank\": 1829, \"rankvar\": 524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1400, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2027, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2612, \"group\": [479.0, 183.0, 48.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58842_BALBc-1_X01_Y02_492_801\", \"ini\": 1425, \"clust\": 1107, \"rank\": 921, \"rankvar\": 1503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1401, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2028, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2458, \"group\": [1105.0, 503.0, 148.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59277_BALBc-1_X01_Y02_497_952\", \"ini\": 1424, \"clust\": 532, \"rank\": 1610, \"rankvar\": 947, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1402, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2029, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1985, \"group\": [534.0, 214.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59332_BALBc-1_X01_Y02_498_722\", \"ini\": 1423, \"clust\": 1191, \"rank\": 485, \"rankvar\": 588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1403, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2030, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2520, \"group\": [1192.0, 548.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59402_BALBc-1_X01_Y02_499_631\", \"ini\": 1422, \"clust\": 1365, \"rank\": 1342, \"rankvar\": 878, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1404, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2031, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2249, \"group\": [1365.0, 575.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59433_BALBc-1_X01_Y02_499_987\", \"ini\": 1421, \"clust\": 391, \"rank\": 2496, \"rankvar\": 2292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1405, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2032, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1254, \"group\": [389.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59455_BALBc-1_X01_Y02_5_514\", \"ini\": 1420, \"clust\": 525, \"rank\": 2198, \"rankvar\": 2145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1406, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 846, \"cat-2\": \"Density: 13\", \"cat_2_index\": 19, \"group\": [527.0, 213.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59697_BALBc-1_X01_Y02_502_382\", \"ini\": 1419, \"clust\": 1243, \"rank\": 585, \"rankvar\": 289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1407, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2561, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1255, \"group\": [1242.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59815_BALBc-1_X01_Y02_504_15\", \"ini\": 1418, \"clust\": 1720, \"rank\": 299, \"rankvar\": 715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1408, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1970, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1106, \"group\": [1721.0, 682.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60055_BALBc-1_X01_Y02_507_1005\", \"ini\": 1417, \"clust\": 261, \"rank\": 2374, \"rankvar\": 2237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1409, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 212, \"cat-2\": \"Density: 26\", \"cat_2_index\": 806, \"group\": [260.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60088_BALBc-1_X01_Y02_507_454\", \"ini\": 1416, \"clust\": 251, \"rank\": 1937, \"rankvar\": 2352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1410, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 213, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1876, \"group\": [249.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60268_BALBc-1_X01_Y02_509_70\", \"ini\": 1415, \"clust\": 1587, \"rank\": 530, \"rankvar\": 630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1411, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1656, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1107, \"group\": [1591.0, 674.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60435_BALBc-1_X01_Y02_510_900\", \"ini\": 1414, \"clust\": 331, \"rank\": 2401, \"rankvar\": 2157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1412, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2033, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2664, \"group\": [330.0, 140.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60513_BALBc-1_X01_Y02_511_842\", \"ini\": 1413, \"clust\": 1368, \"rank\": 1111, \"rankvar\": 797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1413, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 214, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2613, \"group\": [1368.0, 577.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60591_BALBc-1_X01_Y02_512_878\", \"ini\": 1412, \"clust\": 1228, \"rank\": 477, \"rankvar\": 1412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1414, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2034, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2561, \"group\": [1225.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60694_BALBc-1_X01_Y02_514_485\", \"ini\": 1411, \"clust\": 311, \"rank\": 829, \"rankvar\": 642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1415, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2035, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2459, \"group\": [311.0, 130.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60776_BALBc-1_X01_Y02_515_521\", \"ini\": 1410, \"clust\": 246, \"rank\": 1732, \"rankvar\": 2362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1416, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 215, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2083, \"group\": [243.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60841_BALBc-1_X01_Y02_516_211\", \"ini\": 1409, \"clust\": 2613, \"rank\": 527, \"rankvar\": 733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1417, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2562, \"cat-2\": \"Density: 23\", \"cat_2_index\": 405, \"group\": [2612.0, 1102.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60860_BALBc-1_X01_Y02_516_505\", \"ini\": 1408, \"clust\": 643, \"rank\": 2171, \"rankvar\": 1324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1418, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 216, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2084, \"group\": [645.0, 274.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60875_BALBc-1_X01_Y02_516_818\", \"ini\": 1407, \"clust\": 214, \"rank\": 939, \"rankvar\": 830, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1419, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2036, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2745, \"group\": [213.0, 108.0, 36.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60902_BALBc-1_X01_Y02_517_236\", \"ini\": 1406, \"clust\": 2230, \"rank\": 1846, \"rankvar\": 2513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1420, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 217, \"cat-2\": \"Density: 21\", \"cat_2_index\": 209, \"group\": [2231.0, 904.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61018_BALBc-1_X01_Y02_518_607\", \"ini\": 1405, \"clust\": 376, \"rank\": 2383, \"rankvar\": 2426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1421, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2037, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2164, \"group\": [378.0, 153.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61271_BALBc-1_X01_Y02_520_570\", \"ini\": 1404, \"clust\": 37, \"rank\": 360, \"rankvar\": 2095, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1422, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2038, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2460, \"group\": [37.0, 22.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61339_BALBc-1_X01_Y02_521_434\", \"ini\": 1403, \"clust\": 1113, \"rank\": 1004, \"rankvar\": 399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1423, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2039, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1986, \"group\": [1113.0, 508.0, 148.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61380_BALBc-1_X01_Y02_521_947\", \"ini\": 1402, \"clust\": 335, \"rank\": 2599, \"rankvar\": 1634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1424, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1238, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2320, \"group\": [354.0, 144.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61674_BALBc-1_X01_Y02_525_652\", \"ini\": 1401, \"clust\": 237, \"rank\": 2183, \"rankvar\": 2115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1425, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1239, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2321, \"group\": [291.0, 124.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61704_BALBc-1_X01_Y02_525_994\", \"ini\": 1400, \"clust\": 733, \"rank\": 2535, \"rankvar\": 1747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1426, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2040, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1256, \"group\": [732.0, 297.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61719_BALBc-1_X01_Y02_526_269\", \"ini\": 1399, \"clust\": 1036, \"rank\": 2329, \"rankvar\": 2676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1427, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2563, \"cat-2\": \"Density: 20\", \"cat_2_index\": 158, \"group\": [1037.0, 457.0, 129.0, 35.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61758_BALBc-1_X01_Y02_526_905\", \"ini\": 1398, \"clust\": 1278, \"rank\": 870, \"rankvar\": 70, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1428, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 218, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2461, \"group\": [1276.0, 559.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61791_BALBc-1_X01_Y02_527_347\", \"ini\": 1397, \"clust\": 1100, \"rank\": 915, \"rankvar\": 25, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1429, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2564, \"cat-2\": \"Density: 25\", \"cat_2_index\": 662, \"group\": [1102.0, 501.0, 146.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61831_BALBc-1_X01_Y02_527_730\", \"ini\": 1396, \"clust\": 1273, \"rank\": 536, \"rankvar\": 639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1430, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2041, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2562, \"group\": [1275.0, 558.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61836_BALBc-1_X01_Y02_527_777\", \"ini\": 1395, \"clust\": 577, \"rank\": 1845, \"rankvar\": 2082, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1431, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2042, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2386, \"group\": [578.0, 243.0, 71.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61953_BALBc-1_X01_Y02_529_35\", \"ini\": 1394, \"clust\": 1051, \"rank\": 1276, \"rankvar\": 1839, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1432, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1657, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1108, \"group\": [1053.0, 467.0, 133.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61991_BALBc-1_X01_Y02_529_837\", \"ini\": 1393, \"clust\": 1190, \"rank\": 637, \"rankvar\": 803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1433, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 219, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2563, \"group\": [1193.0, 548.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62023_BALBc-1_X01_Y02_53_321\", \"ini\": 1392, \"clust\": 1516, \"rank\": 1020, \"rankvar\": 1720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1434, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1240, \"cat-2\": \"Density: 21\", \"cat_2_index\": 210, \"group\": [1517.0, 638.0, 172.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62344_BALBc-1_X01_Y02_533_462\", \"ini\": 1391, \"clust\": 1844, \"rank\": 570, \"rankvar\": 749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1435, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2043, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2322, \"group\": [1844.0, 700.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62399_BALBc-1_X01_Y02_534_418\", \"ini\": 1390, \"clust\": 1192, \"rank\": 598, \"rankvar\": 527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1436, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2044, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1987, \"group\": [1190.0, 548.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62425_BALBc-1_X01_Y02_534_752\", \"ini\": 1389, \"clust\": 102, \"rank\": 2177, \"rankvar\": 1798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1437, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2045, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2462, \"group\": [103.0, 61.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62434_BALBc-1_X01_Y02_534_821\", \"ini\": 1388, \"clust\": 250, \"rank\": 1628, \"rankvar\": 1568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1438, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2046, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2706, \"group\": [251.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62442_BALBc-1_X01_Y02_534_888\", \"ini\": 1387, \"clust\": 1421, \"rank\": 1011, \"rankvar\": 428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1439, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 220, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2463, \"group\": [1421.0, 589.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62492_BALBc-1_X01_Y02_535_508\", \"ini\": 1386, \"clust\": 615, \"rank\": 1387, \"rankvar\": 980, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1440, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2047, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2165, \"group\": [616.0, 267.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62565_BALBc-1_X01_Y02_536_544\", \"ini\": 1385, \"clust\": 9, \"rank\": 1925, \"rankvar\": 1869, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1441, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2048, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2387, \"group\": [9.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62586_BALBc-1_X01_Y02_536_855\", \"ini\": 1384, \"clust\": 437, \"rank\": 2586, \"rankvar\": 1977, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1442, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 221, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2614, \"group\": [436.0, 168.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62671_BALBc-1_X01_Y02_537_981\", \"ini\": 1383, \"clust\": 281, \"rank\": 1254, \"rankvar\": 1852, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1443, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1241, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1770, \"group\": [279.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62763_BALBc-1_X01_Y02_539_389\", \"ini\": 1382, \"clust\": 1418, \"rank\": 913, \"rankvar\": 471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1444, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2049, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1257, \"group\": [1416.0, 588.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62777_BALBc-1_X01_Y02_539_557\", \"ini\": 1381, \"clust\": 458, \"rank\": 2640, \"rankvar\": 2181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1445, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2050, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2250, \"group\": [459.0, 174.0, 46.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62788_BALBc-1_X01_Y02_539_712\", \"ini\": 1380, \"clust\": 402, \"rank\": 2684, \"rankvar\": 2650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1446, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1242, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2388, \"group\": [401.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62960_BALBc-1_X01_Y02_541_26\", \"ini\": 1379, \"clust\": 1900, \"rank\": 273, \"rankvar\": 1315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1447, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1971, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1109, \"group\": [1899.0, 719.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62991_BALBc-1_X01_Y02_541_75\", \"ini\": 1378, \"clust\": 1981, \"rank\": 855, \"rankvar\": 1069, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1448, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 847, \"cat-2\": \"Density: 26\", \"cat_2_index\": 807, \"group\": [1982.0, 776.0, 203.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63595_BALBc-1_X01_Y02_548_853\", \"ini\": 1377, \"clust\": 1373, \"rank\": 1198, \"rankvar\": 1268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1449, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2051, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2615, \"group\": [1377.0, 578.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63686_BALBc-1_X01_Y02_549_947\", \"ini\": 1376, \"clust\": 701, \"rank\": 2577, \"rankvar\": 1985, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1450, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1243, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2323, \"group\": [699.0, 285.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63912_BALBc-1_X01_Y02_551_904\", \"ini\": 1375, \"clust\": 301, \"rank\": 1258, \"rankvar\": 959, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1451, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 222, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2521, \"group\": [308.0, 128.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63952_BALBc-1_X01_Y02_552_377\", \"ini\": 1374, \"clust\": 1419, \"rank\": 1028, \"rankvar\": 461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1452, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 223, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1110, \"group\": [1417.0, 588.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64119_BALBc-1_X01_Y02_554_637\", \"ini\": 1373, \"clust\": 229, \"rank\": 1534, \"rankvar\": 1700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1453, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2052, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2564, \"group\": [229.0, 116.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64205_BALBc-1_X01_Y02_555_738\", \"ini\": 1372, \"clust\": 36, \"rank\": 1161, \"rankvar\": 2002, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1454, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 224, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2389, \"group\": [39.0, 22.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64551_BALBc-1_X01_Y02_56_237\", \"ini\": 1371, \"clust\": 583, \"rank\": 1682, \"rankvar\": 1965, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1455, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1244, \"cat-2\": \"Density: 20\", \"cat_2_index\": 159, \"group\": [583.0, 245.0, 71.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64699_BALBc-1_X01_Y02_560_94\", \"ini\": 1370, \"clust\": 2672, \"rank\": 2531, \"rankvar\": 2747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1456, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2455, \"cat-2\": \"Density: 27\", \"cat_2_index\": 957, \"group\": [2670.0, 1136.0, 299.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64829_BALBc-1_X01_Y02_562_691\", \"ini\": 1369, \"clust\": 1856, \"rank\": 420, \"rankvar\": 1574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1457, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1245, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2616, \"group\": [1855.0, 702.0, 182.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64850_BALBc-1_X01_Y02_562_963\", \"ini\": 1368, \"clust\": 279, \"rank\": 884, \"rankvar\": 1803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1458, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1246, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2251, \"group\": [277.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64896_BALBc-1_X01_Y02_563_569\", \"ini\": 1367, \"clust\": 1220, \"rank\": 789, \"rankvar\": 739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1459, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2053, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2464, \"group\": [1223.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64897_BALBc-1_X01_Y02_563_602\", \"ini\": 1366, \"clust\": 724, \"rank\": 2753, \"rankvar\": 1882, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1460, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2054, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2465, \"group\": [722.0, 296.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64941_BALBc-1_X01_Y02_564_31\", \"ini\": 1365, \"clust\": 2202, \"rank\": 1453, \"rankvar\": 191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1461, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1972, \"cat-2\": \"Density: 24\", \"cat_2_index\": 522, \"group\": [2203.0, 887.0, 232.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64994_BALBc-1_X01_Y02_564_874\", \"ini\": 1364, \"clust\": 1161, \"rank\": 909, \"rankvar\": 1003, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1462, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2055, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2466, \"group\": [1163.0, 536.0, 156.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65052_BALBc-1_X01_Y02_565_665\", \"ini\": 1363, \"clust\": 254, \"rank\": 1982, \"rankvar\": 2087, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1463, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 225, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2565, \"group\": [254.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65064_BALBc-1_X01_Y02_565_759\", \"ini\": 1362, \"clust\": 397, \"rank\": 2495, \"rankvar\": 2255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1464, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2565, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2522, \"group\": [396.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65075_BALBc-1_X01_Y02_565_925\", \"ini\": 1361, \"clust\": 1863, \"rank\": 533, \"rankvar\": 415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1465, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 622, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2707, \"group\": [1864.0, 705.0, 182.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65095_BALBc-1_X01_Y02_566_271\", \"ini\": 1360, \"clust\": 975, \"rank\": 2515, \"rankvar\": 2787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1466, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2566, \"cat-2\": \"Density: 21\", \"cat_2_index\": 211, \"group\": [976.0, 409.0, 112.0, 30.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65299_BALBc-1_X01_Y02_568_889\", \"ini\": 1359, \"clust\": 620, \"rank\": 1772, \"rankvar\": 1235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1467, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 226, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2566, \"group\": [620.0, 267.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65326_BALBc-1_X01_Y02_569_433\", \"ini\": 1358, \"clust\": 1375, \"rank\": 958, \"rankvar\": 1157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1468, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2056, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2085, \"group\": [1374.0, 578.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65481_BALBc-1_X01_Y02_570_500\", \"ini\": 1357, \"clust\": 275, \"rank\": 1327, \"rankvar\": 1897, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1469, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2057, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2324, \"group\": [273.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65533_BALBc-1_X01_Y02_571_197\", \"ini\": 1356, \"clust\": 567, \"rank\": 1320, \"rankvar\": 1342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1470, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2491, \"cat-2\": \"Density: 23\", \"cat_2_index\": 406, \"group\": [570.0, 238.0, 70.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65552_BALBc-1_X01_Y02_571_380\", \"ini\": 1355, \"clust\": 283, \"rank\": 1515, \"rankvar\": 929, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1471, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2058, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1877, \"group\": [290.0, 123.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65700_BALBc-1_X01_Y02_573_349\", \"ini\": 1354, \"clust\": 1256, \"rank\": 407, \"rankvar\": 915, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1472, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2567, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1406, \"group\": [1254.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65716_BALBc-1_X01_Y02_573_564\", \"ini\": 1353, \"clust\": 433, \"rank\": 2468, \"rankvar\": 1972, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1473, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2059, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2390, \"group\": [434.0, 166.0, 44.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65744_BALBc-1_X01_Y02_573_899\", \"ini\": 1352, \"clust\": 594, \"rank\": 1633, \"rankvar\": 73, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1474, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 623, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2746, \"group\": [595.0, 255.0, 76.0, 20.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65912_BALBc-1_X01_Y02_575_992\", \"ini\": 1351, \"clust\": 1012, \"rank\": 1861, \"rankvar\": 705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1475, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 227, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1111, \"group\": [1012.0, 434.0, 122.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65965_BALBc-1_X01_Y02_576_941\", \"ini\": 1350, \"clust\": 668, \"rank\": 2355, \"rankvar\": 1529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1476, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 624, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2617, \"group\": [669.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66161_BALBc-1_X01_Y02_579_641\", \"ini\": 1349, \"clust\": 616, \"rank\": 1702, \"rankvar\": 1393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1477, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 228, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2467, \"group\": [617.0, 267.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66381_BALBc-1_X01_Y02_581_736\", \"ini\": 1348, \"clust\": 332, \"rank\": 1978, \"rankvar\": 1573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1478, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 229, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2391, \"group\": [331.0, 140.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66539_BALBc-1_X01_Y02_583_714\", \"ini\": 1347, \"clust\": 380, \"rank\": 2582, \"rankvar\": 2433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1479, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 230, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2567, \"group\": [379.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66625_BALBc-1_X01_Y02_584_872\", \"ini\": 1346, \"clust\": 1198, \"rank\": 567, \"rankvar\": 1052, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1480, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2060, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2523, \"group\": [1200.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66780_BALBc-1_X01_Y02_586_608\", \"ini\": 1345, \"clust\": 1640, \"rank\": 171, \"rankvar\": 6, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 231, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2568, \"group\": [1639.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66849_BALBc-1_X01_Y02_587_46\", \"ini\": 1344, \"clust\": 1938, \"rank\": 916, \"rankvar\": 2321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1482, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 232, \"cat-2\": \"Density: 24\", \"cat_2_index\": 523, \"group\": [1935.0, 744.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67001_BALBc-1_X01_Y02_589_528\", \"ini\": 1343, \"clust\": 1241, \"rank\": 562, \"rankvar\": 202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1483, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2061, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2166, \"group\": [1243.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67087_BALBc-1_X01_Y02_59_592\", \"ini\": 1342, \"clust\": 2580, \"rank\": 1677, \"rankvar\": 591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1484, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1247, \"cat-2\": \"Density: 20\", \"cat_2_index\": 160, \"group\": [2581.0, 1082.0, 281.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67176_BALBc-1_X01_Y02_590_64\", \"ini\": 1341, \"clust\": 1346, \"rank\": 278, \"rankvar\": 598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1485, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1973, \"cat-2\": \"Density: 23\", \"cat_2_index\": 407, \"group\": [1345.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67186_BALBc-1_X01_Y02_590_689\", \"ini\": 1340, \"clust\": 553, \"rank\": 2819, \"rankvar\": 2794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1486, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 233, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2468, \"group\": [554.0, 227.0, 67.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67202_BALBc-1_X01_Y02_590_825\", \"ini\": 1339, \"clust\": 1806, \"rank\": 248, \"rankvar\": 754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1487, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2062, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2618, \"group\": [1806.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67369_BALBc-1_X01_Y02_593_1000\", \"ini\": 1338, \"clust\": 1608, \"rank\": 262, \"rankvar\": 167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1488, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1248, \"cat-2\": \"Density: 24\", \"cat_2_index\": 524, \"group\": [1610.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67476_BALBc-1_X01_Y02_594_578\", \"ini\": 1337, \"clust\": 1437, \"rank\": 764, \"rankvar\": 683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1489, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 234, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2569, \"group\": [1437.0, 600.0, 161.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67538_BALBc-1_X01_Y02_595_430\", \"ini\": 1336, \"clust\": 399, \"rank\": 2536, \"rankvar\": 2512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1490, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2063, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2167, \"group\": [398.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67823_BALBc-1_X01_Y02_598_978\", \"ini\": 1335, \"clust\": 1653, \"rank\": 122, \"rankvar\": 269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1491, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1249, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1532, \"group\": [1656.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68029_BALBc-1_X01_Y02_600_513\", \"ini\": 1334, \"clust\": 378, \"rank\": 2648, \"rankvar\": 2088, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2568, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2392, \"group\": [377.0, 153.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68242_BALBc-1_X01_Y02_603_235\", \"ini\": 1333, \"clust\": 2151, \"rank\": 2012, \"rankvar\": 2043, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1493, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 235, \"cat-2\": \"Density: 20\", \"cat_2_index\": 161, \"group\": [2150.0, 851.0, 220.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68295_BALBc-1_X01_Y02_603_794\", \"ini\": 1332, \"clust\": 1235, \"rank\": 429, \"rankvar\": 793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1494, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2064, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2665, \"group\": [1234.0, 551.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68341_BALBc-1_X01_Y02_604_634\", \"ini\": 1331, \"clust\": 595, \"rank\": 1549, \"rankvar\": 597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1495, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2065, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2325, \"group\": [596.0, 256.0, 76.0, 20.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68346_BALBc-1_X01_Y02_604_71\", \"ini\": 1330, \"clust\": 1995, \"rank\": 2166, \"rankvar\": 1914, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1496, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1250, \"cat-2\": \"Density: 25\", \"cat_2_index\": 663, \"group\": [1996.0, 787.0, 205.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68427_BALBc-1_X01_Y02_605_663\", \"ini\": 1329, \"clust\": 2000, \"rank\": 1055, \"rankvar\": 1835, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1497, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2066, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2393, \"group\": [2000.0, 790.0, 206.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68484_BALBc-1_X01_Y02_606_336\", \"ini\": 1328, \"clust\": 383, \"rank\": 2258, \"rankvar\": 2118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1498, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2569, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1258, \"group\": [384.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68508_BALBc-1_X01_Y02_606_611\", \"ini\": 1327, \"clust\": 654, \"rank\": 1396, \"rankvar\": 1461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1499, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2067, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2747, \"group\": [655.0, 275.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68608_BALBc-1_X01_Y02_607_745\", \"ini\": 1326, \"clust\": 323, \"rank\": 2248, \"rankvar\": 1263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1500, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 236, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2524, \"group\": [322.0, 135.0, 40.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68626_BALBc-1_X01_Y02_607_953\", \"ini\": 1325, \"clust\": 477, \"rank\": 1873, \"rankvar\": 1429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1501, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 625, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2326, \"group\": [476.0, 182.0, 48.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68666_BALBc-1_X01_Y02_608_396\", \"ini\": 1324, \"clust\": 660, \"rank\": 1956, \"rankvar\": 1226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1502, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2570, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2086, \"group\": [659.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68709_BALBc-1_X01_Y02_608_893\", \"ini\": 1323, \"clust\": 606, \"rank\": 1733, \"rankvar\": 1049, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1503, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2571, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2708, \"group\": [606.0, 264.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68790_BALBc-1_X01_Y02_609_760\", \"ini\": 1322, \"clust\": 1268, \"rank\": 236, \"rankvar\": 800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1504, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 237, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2394, \"group\": [1267.0, 556.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68847_BALBc-1_X01_Y02_61_732\", \"ini\": 1321, \"clust\": 489, \"rank\": 1082, \"rankvar\": 1517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1505, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2572, \"cat-2\": \"Density: 20\", \"cat_2_index\": 162, \"group\": [490.0, 191.0, 52.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68852_BALBc-1_X01_Y02_61_768\", \"ini\": 1320, \"clust\": 1825, \"rank\": 139, \"rankvar\": 1281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1506, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2243, \"cat-2\": \"Density: 22\", \"cat_2_index\": 289, \"group\": [1826.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68930_BALBc-1_X01_Y02_610_841\", \"ini\": 1319, \"clust\": 734, \"rank\": 2277, \"rankvar\": 1722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1507, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2573, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2525, \"group\": [733.0, 297.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69043_BALBc-1_X01_Y02_612_22\", \"ini\": 1318, \"clust\": 2200, \"rank\": 2428, \"rankvar\": 2141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1508, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1974, \"cat-2\": \"Density: 24\", \"cat_2_index\": 525, \"group\": [2200.0, 886.0, 231.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69048_BALBc-1_X01_Y02_612_265\", \"ini\": 1317, \"clust\": 1876, \"rank\": 478, \"rankvar\": 932, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1509, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2574, \"cat-2\": \"Density: 22\", \"cat_2_index\": 290, \"group\": [1876.0, 713.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69070_BALBc-1_X01_Y02_612_557\", \"ini\": 1316, \"clust\": 258, \"rank\": 2019, \"rankvar\": 1715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1510, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2068, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2469, \"group\": [258.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69187_BALBc-1_X01_Y02_614_192\", \"ini\": 1315, \"clust\": 1562, \"rank\": 557, \"rankvar\": 1405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1511, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2314, \"cat-2\": \"Density: 19\", \"cat_2_index\": 122, \"group\": [1569.0, 663.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69384_BALBc-1_X01_Y02_616_696\", \"ini\": 1314, \"clust\": 398, \"rank\": 2617, \"rankvar\": 2402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1512, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2069, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2470, \"group\": [397.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69441_BALBc-1_X01_Y02_617_581\", \"ini\": 1313, \"clust\": 1400, \"rank\": 1152, \"rankvar\": 1230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1513, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2070, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2666, \"group\": [1399.0, 583.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69814_BALBc-1_X01_Y02_621_448\", \"ini\": 1312, \"clust\": 277, \"rank\": 1518, \"rankvar\": 1986, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1514, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2071, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2252, \"group\": [275.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69943_BALBc-1_X01_Y02_622_815\", \"ini\": 1311, \"clust\": 1350, \"rank\": 367, \"rankvar\": 468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1515, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2072, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2570, \"group\": [1351.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70167_BALBc-1_X01_Y02_625_622\", \"ini\": 1310, \"clust\": 348, \"rank\": 2094, \"rankvar\": 1244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1516, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2073, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2667, \"group\": [345.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70245_BALBc-1_X01_Y02_626_657\", \"ini\": 1309, \"clust\": 1141, \"rank\": 1130, \"rankvar\": 1112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1517, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2074, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2571, \"group\": [1142.0, 525.0, 154.0, 43.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70250_BALBc-1_X01_Y02_626_738\", \"ini\": 1308, \"clust\": 392, \"rank\": 2560, \"rankvar\": 2588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1518, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2075, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2619, \"group\": [390.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70390_BALBc-1_X01_Y02_628_794\", \"ini\": 1307, \"clust\": 1802, \"rank\": 301, \"rankvar\": 998, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1519, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 915, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2620, \"group\": [1803.0, 693.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70677_BALBc-1_X01_Y02_631_569\", \"ini\": 1306, \"clust\": 1650, \"rank\": 45, \"rankvar\": 63, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1520, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 238, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2621, \"group\": [1651.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70732_BALBc-1_X01_Y02_632_214\", \"ini\": 1305, \"clust\": 2572, \"rank\": 1483, \"rankvar\": 2635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1521, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2575, \"cat-2\": \"Density: 22\", \"cat_2_index\": 291, \"group\": [2571.0, 1073.0, 277.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70788_BALBc-1_X01_Y02_632_885\", \"ini\": 1304, \"clust\": 1887, \"rank\": 350, \"rankvar\": 507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1522, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2576, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2526, \"group\": [1888.0, 718.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70792_BALBc-1_X01_Y02_632_917\", \"ini\": 1303, \"clust\": 621, \"rank\": 1821, \"rankvar\": 751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1523, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 626, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2622, \"group\": [621.0, 267.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71010_BALBc-1_X01_Y02_635_775\", \"ini\": 1302, \"clust\": 375, \"rank\": 2708, \"rankvar\": 2357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1524, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2076, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2471, \"group\": [374.0, 152.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71015_BALBc-1_X01_Y02_635_841\", \"ini\": 1301, \"clust\": 1982, \"rank\": 1440, \"rankvar\": 1109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1525, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 916, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2327, \"group\": [1983.0, 777.0, 203.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71192_BALBc-1_X01_Y02_638_152\", \"ini\": 1300, \"clust\": 2049, \"rank\": 491, \"rankvar\": 659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1526, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1251, \"cat-2\": \"Density: 23\", \"cat_2_index\": 408, \"group\": [2046.0, 807.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71313_BALBc-1_X01_Y02_639_527\", \"ini\": 1299, \"clust\": 1016, \"rank\": 1764, \"rankvar\": 1678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1527, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2077, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2395, \"group\": [1015.0, 437.0, 123.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71373_BALBc-1_X01_Y02_64_410\", \"ini\": 1298, \"clust\": 572, \"rank\": 1817, \"rankvar\": 1285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1528, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1252, \"cat-2\": \"Density: 21\", \"cat_2_index\": 212, \"group\": [571.0, 239.0, 70.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71596_BALBc-1_X01_Y02_642_538\", \"ini\": 1297, \"clust\": 1154, \"rank\": 1328, \"rankvar\": 1247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1529, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2078, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2328, \"group\": [1155.0, 532.0, 155.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71667_BALBc-1_X01_Y02_643_341\", \"ini\": 1296, \"clust\": 304, \"rank\": 1089, \"rankvar\": 1045, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1530, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2079, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1771, \"group\": [304.0, 127.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71767_BALBc-1_X01_Y02_644_390\", \"ini\": 1295, \"clust\": 343, \"rank\": 2108, \"rankvar\": 944, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1531, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2080, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1988, \"group\": [339.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71919_BALBc-1_X01_Y02_646_330\", \"ini\": 1294, \"clust\": 688, \"rank\": 2023, \"rankvar\": 1366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1532, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2081, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1407, \"group\": [688.0, 282.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72032_BALBc-1_X01_Y02_647_871\", \"ini\": 1293, \"clust\": 732, \"rank\": 2680, \"rankvar\": 1654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1533, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2577, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2623, \"group\": [734.0, 297.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72139_BALBc-1_X01_Y02_649_280\", \"ini\": 1292, \"clust\": 836, \"rank\": 2722, \"rankvar\": 2605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1534, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2578, \"cat-2\": \"Density: 26\", \"cat_2_index\": 808, \"group\": [837.0, 349.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72165_BALBc-1_X01_Y02_649_642\", \"ini\": 1291, \"clust\": 262, \"rank\": 2302, \"rankvar\": 2331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1535, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2082, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2777, \"group\": [261.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72176_BALBc-1_X01_Y02_649_80\", \"ini\": 1290, \"clust\": 1345, \"rank\": 102, \"rankvar\": 899, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1536, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1253, \"cat-2\": \"Density: 22\", \"cat_2_index\": 292, \"group\": [1344.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72245_BALBc-1_X01_Y02_65_662\", \"ini\": 1289, \"clust\": 2546, \"rank\": 1195, \"rankvar\": 1519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1537, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1254, \"cat-2\": \"Density: 21\", \"cat_2_index\": 213, \"group\": [2545.0, 1060.0, 275.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72484_BALBc-1_X01_Y02_652_944\", \"ini\": 1288, \"clust\": 233, \"rank\": 1943, \"rankvar\": 1996, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1538, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 239, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2253, \"group\": [232.0, 117.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72716_BALBc-1_X01_Y02_656_182\", \"ini\": 1287, \"clust\": 838, \"rank\": 2771, \"rankvar\": 2529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1539, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2579, \"cat-2\": \"Density: 24\", \"cat_2_index\": 526, \"group\": [841.0, 350.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72777_BALBc-1_X01_Y02_656_712\", \"ini\": 1286, \"clust\": 394, \"rank\": 2638, \"rankvar\": 2198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1540, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2083, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2624, \"group\": [393.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72835_BALBc-1_X01_Y02_657_361\", \"ini\": 1285, \"clust\": 1686, \"rank\": 419, \"rankvar\": 2, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1541, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2580, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2254, \"group\": [1686.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72877_BALBc-1_X01_Y02_657_890\", \"ini\": 1284, \"clust\": 1284, \"rank\": 317, \"rankvar\": 425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 917, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2625, \"group\": [1282.0, 561.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72970_BALBc-1_X01_Y02_659_402\", \"ini\": 1283, \"clust\": 1620, \"rank\": 5, \"rankvar\": 489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1543, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2084, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2168, \"group\": [1618.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72984_BALBc-1_X01_Y02_659_578\", \"ini\": 1282, \"clust\": 381, \"rank\": 2450, \"rankvar\": 2117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1544, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2085, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2668, \"group\": [380.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73026_BALBc-1_X01_Y02_659_964\", \"ini\": 1281, \"clust\": 698, \"rank\": 2600, \"rankvar\": 2528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1545, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2581, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1772, \"group\": [703.0, 285.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73130_BALBc-1_X01_Y02_660_371\", \"ini\": 1280, \"clust\": 1265, \"rank\": 869, \"rankvar\": 452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1546, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 240, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2169, \"group\": [1265.0, 555.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73323_BALBc-1_X01_Y02_662_515\", \"ini\": 1279, \"clust\": 1264, \"rank\": 811, \"rankvar\": 1318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1547, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2086, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2087, \"group\": [1264.0, 554.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73330_BALBc-1_X01_Y02_662_600\", \"ini\": 1278, \"clust\": 1099, \"rank\": 922, \"rankvar\": 205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1548, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2087, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2709, \"group\": [1103.0, 502.0, 147.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73406_BALBc-1_X01_Y02_663_676\", \"ini\": 1277, \"clust\": 238, \"rank\": 1801, \"rankvar\": 1780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1549, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2088, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2669, \"group\": [248.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73682_BALBc-1_X01_Y02_667_559\", \"ini\": 1276, \"clust\": 1225, \"rank\": 602, \"rankvar\": 1610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1550, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2089, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2626, \"group\": [1227.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73864_BALBc-1_X01_Y02_669_904\", \"ini\": 1275, \"clust\": 483, \"rank\": 2311, \"rankvar\": 1685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 241, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2396, \"group\": [481.0, 183.0, 48.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74137_BALBc-1_X01_Y02_672_747\", \"ini\": 1274, \"clust\": 1614, \"rank\": 155, \"rankvar\": 81, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1552, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2090, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2572, \"group\": [1613.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74157_BALBc-1_X01_Y02_672_938\", \"ini\": 1273, \"clust\": 1811, \"rank\": 99, \"rankvar\": 236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1553, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1255, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2170, \"group\": [1811.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74183_BALBc-1_X01_Y02_673_288\", \"ini\": 1272, \"clust\": 218, \"rank\": 260, \"rankvar\": 1320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1554, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2091, \"cat-2\": \"Density: 27\", \"cat_2_index\": 958, \"group\": [218.0, 109.0, 36.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74202_BALBc-1_X01_Y02_673_537\", \"ini\": 1271, \"clust\": 1083, \"rank\": 776, \"rankvar\": 560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1555, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2092, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2255, \"group\": [1085.0, 490.0, 144.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74319_BALBc-1_X01_Y02_674_785\", \"ini\": 1270, \"clust\": 2593, \"rank\": 586, \"rankvar\": 654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1556, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 918, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2527, \"group\": [2595.0, 1094.0, 285.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74367_BALBc-1_X01_Y02_675_381\", \"ini\": 1269, \"clust\": 674, \"rank\": 2472, \"rankvar\": 1916, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1557, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 242, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2256, \"group\": [672.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74379_BALBc-1_X01_Y02_675_428\", \"ini\": 1268, \"clust\": 384, \"rank\": 2384, \"rankvar\": 1991, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1558, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2093, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2171, \"group\": [382.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74438_BALBc-1_X01_Y02_676_159\", \"ini\": 1267, \"clust\": 2242, \"rank\": 2370, \"rankvar\": 2476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1559, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2456, \"cat-2\": \"Density: 21\", \"cat_2_index\": 214, \"group\": [2241.0, 907.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74507_BALBc-1_X01_Y02_676_988\", \"ini\": 1266, \"clust\": 692, \"rank\": 1917, \"rankvar\": 1647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1560, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1256, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1112, \"group\": [693.0, 283.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74529_BALBc-1_X01_Y02_677_328\", \"ini\": 1265, \"clust\": 1118, \"rank\": 1332, \"rankvar\": 584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1561, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2094, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1773, \"group\": [1121.0, 512.0, 150.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74573_BALBc-1_X01_Y02_677_811\", \"ini\": 1264, \"clust\": 1014, \"rank\": 2116, \"rankvar\": 2188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1562, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1257, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2670, \"group\": [1018.0, 440.0, 124.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74598_BALBc-1_X01_Y02_678_172\", \"ini\": 1263, \"clust\": 59, \"rank\": 2467, \"rankvar\": 2505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1563, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2582, \"cat-2\": \"Density: 24\", \"cat_2_index\": 527, \"group\": [63.0, 40.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74641_BALBc-1_X01_Y02_678_615\", \"ini\": 1262, \"clust\": 389, \"rank\": 2519, \"rankvar\": 2558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1564, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2095, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2778, \"group\": [392.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74779_BALBc-1_X01_Y02_68_443\", \"ini\": 1261, \"clust\": 1179, \"rank\": 1077, \"rankvar\": 983, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1565, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 704, \"cat-2\": \"Density: 26\", \"cat_2_index\": 809, \"group\": [1179.0, 545.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74924_BALBc-1_X01_Y02_681_731\", \"ini\": 1260, \"clust\": 673, \"rank\": 2301, \"rankvar\": 1317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1566, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2096, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2397, \"group\": [674.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75385_BALBc-1_X01_Y02_687_918\", \"ini\": 1259, \"clust\": 1659, \"rank\": 354, \"rankvar\": 220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1567, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1258, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2472, \"group\": [1662.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75452_BALBc-1_X01_Y02_688_793\", \"ini\": 1258, \"clust\": 1459, \"rank\": 267, \"rankvar\": 614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1568, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1259, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2573, \"group\": [1460.0, 610.0, 164.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75503_BALBc-1_X01_Y02_689_468\", \"ini\": 1257, \"clust\": 385, \"rank\": 2623, \"rankvar\": 2268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1569, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2097, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2329, \"group\": [383.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75575_BALBc-1_X01_Y02_69_548\", \"ini\": 1256, \"clust\": 1987, \"rank\": 2049, \"rankvar\": 2023, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1570, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 243, \"cat-2\": \"Density: 26\", \"cat_2_index\": 810, \"group\": [1986.0, 779.0, 203.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75777_BALBc-1_X01_Y02_692_441\", \"ini\": 1255, \"clust\": 1672, \"rank\": 6, \"rankvar\": 101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1571, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 244, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1989, \"group\": [1671.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75798_BALBc-1_X01_Y02_692_654\", \"ini\": 1254, \"clust\": 225, \"rank\": 1356, \"rankvar\": 604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1572, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2098, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2748, \"group\": [227.0, 114.0, 37.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75805_BALBc-1_X01_Y02_692_719\", \"ini\": 1253, \"clust\": 1597, \"rank\": 287, \"rankvar\": 64, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1573, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2099, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2749, \"group\": [1597.0, 676.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76045_BALBc-1_X01_Y02_695_763\", \"ini\": 1252, \"clust\": 699, \"rank\": 2285, \"rankvar\": 1294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1574, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1260, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2671, \"group\": [702.0, 285.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76047_BALBc-1_X01_Y02_695_820\", \"ini\": 1251, \"clust\": 127, \"rank\": 1805, \"rankvar\": 1887, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1261, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2627, \"group\": [126.0, 72.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76155_BALBc-1_X01_Y02_697_37\", \"ini\": 1250, \"clust\": 2176, \"rank\": 1311, \"rankvar\": 1234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1576, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2492, \"cat-2\": \"Density: 20\", \"cat_2_index\": 163, \"group\": [2179.0, 868.0, 226.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76157_BALBc-1_X01_Y02_697_390\", \"ini\": 1249, \"clust\": 1628, \"rank\": 4, \"rankvar\": 357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1577, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 245, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2257, \"group\": [1623.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76261_BALBc-1_X01_Y02_698_588\", \"ini\": 1248, \"clust\": 130, \"rank\": 2772, \"rankvar\": 2803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1578, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2100, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2750, \"group\": [131.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76284_BALBc-1_X01_Y02_698_894\", \"ini\": 1247, \"clust\": 1799, \"rank\": 515, \"rankvar\": 1034, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1579, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 919, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2710, \"group\": [1800.0, 691.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76311_BALBc-1_X01_Y02_699_282\", \"ini\": 1246, \"clust\": 970, \"rank\": 2202, \"rankvar\": 1709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1580, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2583, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1259, \"group\": [971.0, 405.0, 111.0, 29.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76337_BALBc-1_X01_Y02_699_564\", \"ini\": 1245, \"clust\": 695, \"rank\": 2603, \"rankvar\": 2104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1581, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2101, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2628, \"group\": [696.0, 284.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76344_BALBc-1_X01_Y02_699_679\", \"ini\": 1244, \"clust\": 1080, \"rank\": 1052, \"rankvar\": 1070, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1582, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2102, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2629, \"group\": [1081.0, 487.0, 143.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76479_BALBc-1_X01_Y02_70_471\", \"ini\": 1243, \"clust\": 134, \"rank\": 2453, \"rankvar\": 2606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1583, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2457, \"cat-2\": \"Density: 26\", \"cat_2_index\": 811, \"group\": [135.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76545_BALBc-1_X01_Y02_700_356\", \"ini\": 1242, \"clust\": 1310, \"rank\": 517, \"rankvar\": 216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1584, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 246, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2088, \"group\": [1305.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76565_BALBc-1_X01_Y02_700_603\", \"ini\": 1241, \"clust\": 408, \"rank\": 2720, \"rankvar\": 2693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1585, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 247, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2751, \"group\": [409.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76633_BALBc-1_X01_Y02_701_469\", \"ini\": 1240, \"clust\": 1292, \"rank\": 394, \"rankvar\": 379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1586, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 248, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2258, \"group\": [1290.0, 565.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77012_BALBc-1_X01_Y02_706_499\", \"ini\": 1239, \"clust\": 13, \"rank\": 1763, \"rankvar\": 355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1587, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2103, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2330, \"group\": [18.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77022_BALBc-1_X01_Y02_706_622\", \"ini\": 1238, \"clust\": 1160, \"rank\": 1338, \"rankvar\": 1216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1588, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2104, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2711, \"group\": [1164.0, 537.0, 156.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77055_BALBc-1_X01_Y02_706_998\", \"ini\": 1237, \"clust\": 1363, \"rank\": 1018, \"rankvar\": 914, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1589, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1262, \"cat-2\": \"Density: 22\", \"cat_2_index\": 293, \"group\": [1362.0, 575.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77190_BALBc-1_X01_Y02_708_738\", \"ini\": 1236, \"clust\": 1851, \"rank\": 686, \"rankvar\": 745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1590, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1263, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2574, \"group\": [1853.0, 701.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77401_BALBc-1_X01_Y02_710_828\", \"ini\": 1235, \"clust\": 1208, \"rank\": 443, \"rankvar\": 104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1264, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2630, \"group\": [1209.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77491_BALBc-1_X01_Y02_711_906\", \"ini\": 1234, \"clust\": 703, \"rank\": 2438, \"rankvar\": 1974, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1592, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 249, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2672, \"group\": [701.0, 285.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77533_BALBc-1_X01_Y02_712_413\", \"ini\": 1233, \"clust\": 619, \"rank\": 2075, \"rankvar\": 848, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1593, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2105, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2331, \"group\": [622.0, 267.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77644_BALBc-1_X01_Y02_713_803\", \"ini\": 1232, \"clust\": 159, \"rank\": 2666, \"rankvar\": 2219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1594, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1265, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2631, \"group\": [159.0, 75.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77833_BALBc-1_X01_Y02_716_257\", \"ini\": 1231, \"clust\": 813, \"rank\": 800, \"rankvar\": 1296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1595, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2584, \"cat-2\": \"Density: 24\", \"cat_2_index\": 528, \"group\": [811.0, 336.0, 95.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77991_BALBc-1_X01_Y02_718_159\", \"ini\": 1230, \"clust\": 2216, \"rank\": 2032, \"rankvar\": 2053, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1596, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2585, \"cat-2\": \"Density: 22\", \"cat_2_index\": 294, \"group\": [2251.0, 912.0, 237.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78053_BALBc-1_X01_Y02_718_850\", \"ini\": 1229, \"clust\": 2524, \"rank\": 1847, \"rankvar\": 1602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1597, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1266, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2473, \"group\": [2529.0, 1054.0, 273.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78060_BALBc-1_X01_Y02_718_925\", \"ini\": 1228, \"clust\": 1328, \"rank\": 215, \"rankvar\": 485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1598, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1267, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2575, \"group\": [1324.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78089_BALBc-1_X01_Y02_719_369\", \"ini\": 1227, \"clust\": 419, \"rank\": 1889, \"rankvar\": 1379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1599, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 250, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2172, \"group\": [422.0, 160.0, 43.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78113_BALBc-1_X01_Y02_719_632\", \"ini\": 1226, \"clust\": 395, \"rank\": 2716, \"rankvar\": 2477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1600, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 251, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2752, \"group\": [394.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78309_BALBc-1_X01_Y02_721_333\", \"ini\": 1225, \"clust\": 1674, \"rank\": 26, \"rankvar\": 37, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1601, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 252, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1990, \"group\": [1670.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78374_BALBc-1_X01_Y02_721_954\", \"ini\": 1224, \"clust\": 25, \"rank\": 838, \"rankvar\": 606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1602, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1268, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2089, \"group\": [26.0, 18.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78457_BALBc-1_X01_Y02_722_887\", \"ini\": 1223, \"clust\": 551, \"rank\": 2160, \"rankvar\": 561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1603, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 253, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2816, \"group\": [550.0, 223.0, 65.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78466_BALBc-1_X01_Y02_723_123\", \"ini\": 1222, \"clust\": 2073, \"rank\": 1248, \"rankvar\": 1611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1604, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 920, \"cat-2\": \"Density: 21\", \"cat_2_index\": 215, \"group\": [2076.0, 825.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78589_BALBc-1_X01_Y02_724_723\", \"ini\": 1221, \"clust\": 2819, \"rank\": 1641, \"rankvar\": 1433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1605, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2106, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2474, \"group\": [2819.0, 1225.0, 325.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78729_BALBc-1_X01_Y02_726_667\", \"ini\": 1220, \"clust\": 1218, \"rank\": 245, \"rankvar\": 1311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1606, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 254, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2753, \"group\": [1216.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78765_BALBc-1_X01_Y02_727_233\", \"ini\": 1219, \"clust\": 837, \"rank\": 2811, \"rankvar\": 2590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1607, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2586, \"cat-2\": \"Density: 25\", \"cat_2_index\": 664, \"group\": [842.0, 351.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78858_BALBc-1_X01_Y02_728_317\", \"ini\": 1218, \"clust\": 476, \"rank\": 1658, \"rankvar\": 1275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1608, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 255, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2090, \"group\": [475.0, 182.0, 48.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78883_BALBc-1_X01_Y02_728_677\", \"ini\": 1217, \"clust\": 1125, \"rank\": 1157, \"rankvar\": 173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1609, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2107, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2632, \"group\": [1126.0, 516.0, 151.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78937_BALBc-1_X01_Y02_729_454\", \"ini\": 1216, \"clust\": 611, \"rank\": 1892, \"rankvar\": 667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1610, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2108, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2259, \"group\": [611.0, 265.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78946_BALBc-1_X01_Y02_729_586\", \"ini\": 1215, \"clust\": 393, \"rank\": 2697, \"rankvar\": 2384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1611, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2109, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2673, \"group\": [395.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79000_BALBc-1_X01_Y02_73_364\", \"ini\": 1214, \"clust\": 2204, \"rank\": 1624, \"rankvar\": 1955, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1612, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1269, \"cat-2\": \"Density: 21\", \"cat_2_index\": 216, \"group\": [2205.0, 889.0, 233.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79124_BALBc-1_X01_Y02_730_931\", \"ini\": 1213, \"clust\": 696, \"rank\": 2584, \"rankvar\": 1767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1613, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1270, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2332, \"group\": [697.0, 284.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79128_BALBc-1_X01_Y02_730_977\", \"ini\": 1212, \"clust\": 120, \"rank\": 2484, \"rankvar\": 2502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1614, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1271, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1533, \"group\": [124.0, 71.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79171_BALBc-1_X01_Y02_731_534\", \"ini\": 1211, \"clust\": 681, \"rank\": 2031, \"rankvar\": 1562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1615, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2110, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2633, \"group\": [681.0, 279.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79269_BALBc-1_X01_Y02_732_742\", \"ini\": 1210, \"clust\": 182, \"rank\": 1318, \"rankvar\": 512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1616, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1272, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2634, \"group\": [182.0, 91.0, 29.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79364_BALBc-1_X01_Y02_733_888\", \"ini\": 1209, \"clust\": 1676, \"rank\": 43, \"rankvar\": 85, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1617, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1273, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2635, \"group\": [1674.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79543_BALBc-1_X01_Y02_735_827\", \"ini\": 1208, \"clust\": 1815, \"rank\": 78, \"rankvar\": 208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1618, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 256, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2528, \"group\": [1813.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79586_BALBc-1_X01_Y02_736_403\", \"ini\": 1207, \"clust\": 1221, \"rank\": 673, \"rankvar\": 780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1619, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2111, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2398, \"group\": [1222.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79601_BALBc-1_X01_Y02_736_604\", \"ini\": 1206, \"clust\": 1237, \"rank\": 282, \"rankvar\": 375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1620, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 257, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2636, \"group\": [1236.0, 551.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79632_BALBc-1_X01_Y02_737_250\", \"ini\": 1205, \"clust\": 1324, \"rank\": 52, \"rankvar\": 124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1621, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 258, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1113, \"group\": [1319.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79634_BALBc-1_X01_Y02_737_3\", \"ini\": 1204, \"clust\": 2468, \"rank\": 2139, \"rankvar\": 1772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1622, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2812, \"cat-2\": \"Density: 25\", \"cat_2_index\": 665, \"group\": [2478.0, 1022.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79643_BALBc-1_X01_Y02_737_366\", \"ini\": 1203, \"clust\": 255, \"rank\": 2254, \"rankvar\": 2557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1623, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 259, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2260, \"group\": [257.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79664_BALBc-1_X01_Y02_737_57\", \"ini\": 1202, \"clust\": 2046, \"rank\": 639, \"rankvar\": 680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1624, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2493, \"cat-2\": \"Density: 22\", \"cat_2_index\": 295, \"group\": [2050.0, 807.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79820_BALBc-1_X01_Y02_739_546\", \"ini\": 1201, \"clust\": 257, \"rank\": 2056, \"rankvar\": 2154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1625, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2112, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2754, \"group\": [256.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79964_BALBc-1_X01_Y02_740_484\", \"ini\": 1200, \"clust\": 379, \"rank\": 2704, \"rankvar\": 2554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1626, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 260, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1991, \"group\": [381.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80233_BALBc-1_X01_Y02_744_315\", \"ini\": 1199, \"clust\": 1078, \"rank\": 1331, \"rankvar\": 1018, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1627, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1274, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1992, \"group\": [1079.0, 486.0, 143.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80367_BALBc-1_X01_Y02_746_112\", \"ini\": 1198, \"clust\": 2030, \"rank\": 775, \"rankvar\": 2060, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1628, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2315, \"cat-2\": \"Density: 20\", \"cat_2_index\": 164, \"group\": [2031.0, 803.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80487_BALBc-1_X01_Y02_747_644\", \"ini\": 1197, \"clust\": 1846, \"rank\": 426, \"rankvar\": 423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1629, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2113, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2779, \"group\": [1847.0, 700.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80586_BALBc-1_X01_Y02_748_800\", \"ini\": 1196, \"clust\": 92, \"rank\": 2555, \"rankvar\": 1161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1630, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1275, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2637, \"group\": [93.0, 55.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80591_BALBc-1_X01_Y02_748_849\", \"ini\": 1195, \"clust\": 714, \"rank\": 2464, \"rankvar\": 1028, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1631, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 261, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2712, \"group\": [713.0, 291.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80621_BALBc-1_X01_Y02_749_281\", \"ini\": 1194, \"clust\": 870, \"rank\": 1947, \"rankvar\": 750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1632, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 262, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1534, \"group\": [873.0, 370.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80660_BALBc-1_X01_Y02_749_710\", \"ini\": 1193, \"clust\": 2001, \"rank\": 890, \"rankvar\": 834, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1633, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 263, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2713, \"group\": [2001.0, 790.0, 206.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80840_BALBc-1_X01_Y02_750_977\", \"ini\": 1192, \"clust\": 1857, \"rank\": 453, \"rankvar\": 1258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1634, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1276, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1665, \"group\": [1856.0, 702.0, 182.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80920_BALBc-1_X01_Y02_752_157\", \"ini\": 1191, \"clust\": 1502, \"rank\": 806, \"rankvar\": 580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1635, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 264, \"cat-2\": \"Density: 21\", \"cat_2_index\": 217, \"group\": [1502.0, 631.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80933_BALBc-1_X01_Y02_752_347\", \"ini\": 1190, \"clust\": 183, \"rank\": 1557, \"rankvar\": 2221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1636, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1277, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2173, \"group\": [187.0, 92.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80959_BALBc-1_X01_Y02_752_681\", \"ini\": 1189, \"clust\": 610, \"rank\": 1623, \"rankvar\": 1009, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1637, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 265, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2576, \"group\": [613.0, 265.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81055_BALBc-1_X01_Y02_753_730\", \"ini\": 1188, \"clust\": 459, \"rank\": 2366, \"rankvar\": 2007, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1638, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 266, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2674, \"group\": [460.0, 174.0, 46.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81183_BALBc-1_X01_Y02_755_360\", \"ini\": 1187, \"clust\": 208, \"rank\": 1399, \"rankvar\": 444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1639, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1278, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2174, \"group\": [212.0, 107.0, 35.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81243_BALBc-1_X01_Y02_756_213\", \"ini\": 1186, \"clust\": 805, \"rank\": 1353, \"rankvar\": 771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1640, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2587, \"cat-2\": \"Density: 24\", \"cat_2_index\": 529, \"group\": [805.0, 333.0, 94.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81269_BALBc-1_X01_Y02_756_466\", \"ini\": 1185, \"clust\": 388, \"rank\": 2350, \"rankvar\": 2374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1641, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 267, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2091, \"group\": [387.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81277_BALBc-1_X01_Y02_756_573\", \"ini\": 1184, \"clust\": 1692, \"rank\": 182, \"rankvar\": 58, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1642, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 268, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2802, \"group\": [1692.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81309_BALBc-1_X01_Y02_756_874\", \"ini\": 1183, \"clust\": 1433, \"rank\": 1429, \"rankvar\": 1012, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1643, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1279, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2638, \"group\": [1433.0, 597.0, 161.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81353_BALBc-1_X01_Y02_757_444\", \"ini\": 1182, \"clust\": 400, \"rank\": 2296, \"rankvar\": 1757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1644, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2114, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2175, \"group\": [399.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81355_BALBc-1_X01_Y02_757_476\", \"ini\": 1181, \"clust\": 1841, \"rank\": 725, \"rankvar\": 89, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1645, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2115, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2092, \"group\": [1841.0, 698.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81446_BALBc-1_X01_Y02_758_596\", \"ini\": 1180, \"clust\": 439, \"rank\": 1632, \"rankvar\": 1472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1646, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 269, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2780, \"group\": [441.0, 169.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81458_BALBc-1_X01_Y02_758_756\", \"ini\": 1179, \"clust\": 1864, \"rank\": 251, \"rankvar\": 592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1647, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1280, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2714, \"group\": [1865.0, 706.0, 182.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81459_BALBc-1_X01_Y02_758_783\", \"ini\": 1178, \"clust\": 1372, \"rank\": 1263, \"rankvar\": 1046, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1648, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1281, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2675, \"group\": [1370.0, 577.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81463_BALBc-1_X01_Y02_758_825\", \"ini\": 1177, \"clust\": 579, \"rank\": 2313, \"rankvar\": 2064, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1649, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 270, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2676, \"group\": [580.0, 244.0, 71.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81725_BALBc-1_X01_Y02_761_43\", \"ini\": 1176, \"clust\": 2147, \"rank\": 1695, \"rankvar\": 1708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1650, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2316, \"cat-2\": \"Density: 20\", \"cat_2_index\": 165, \"group\": [2145.0, 846.0, 218.0, 55.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81746_BALBc-1_X01_Y02_761_621\", \"ini\": 1175, \"clust\": 719, \"rank\": 2677, \"rankvar\": 1938, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1651, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2116, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2715, \"group\": [719.0, 295.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81892_BALBc-1_X01_Y02_763_542\", \"ini\": 1174, \"clust\": 249, \"rank\": 1894, \"rankvar\": 2359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1652, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 271, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2716, \"group\": [252.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82092_BALBc-1_X01_Y02_766_413\", \"ini\": 1173, \"clust\": 252, \"rank\": 1423, \"rankvar\": 1760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1653, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2117, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2176, \"group\": [250.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82120_BALBc-1_X01_Y02_766_839\", \"ini\": 1172, \"clust\": 1903, \"rank\": 356, \"rankvar\": 1515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1654, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 272, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2781, \"group\": [1910.0, 728.0, 186.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82269_BALBc-1_X01_Y02_768_578\", \"ini\": 1171, \"clust\": 602, \"rank\": 1614, \"rankvar\": 1486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1655, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 273, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2677, \"group\": [603.0, 263.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82462_BALBc-1_X01_Y02_770_223\", \"ini\": 1170, \"clust\": 773, \"rank\": 1705, \"rankvar\": 2070, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1656, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 274, \"cat-2\": \"Density: 25\", \"cat_2_index\": 666, \"group\": [771.0, 316.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82468_BALBc-1_X01_Y02_770_255\", \"ini\": 1169, \"clust\": 812, \"rank\": 762, \"rankvar\": 462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1657, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 275, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1408, \"group\": [813.0, 336.0, 95.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82542_BALBc-1_X01_Y02_771_302\", \"ini\": 1168, \"clust\": 1354, \"rank\": 492, \"rankvar\": 430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1658, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1282, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1774, \"group\": [1356.0, 571.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82661_BALBc-1_X01_Y02_772_660\", \"ini\": 1167, \"clust\": 305, \"rank\": 1003, \"rankvar\": 333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1659, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2118, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2782, \"group\": [305.0, 127.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82801_BALBc-1_X01_Y02_774_517\", \"ini\": 1166, \"clust\": 1116, \"rank\": 1582, \"rankvar\": 1538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1660, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2119, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2333, \"group\": [1115.0, 509.0, 148.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82803_BALBc-1_X01_Y02_774_554\", \"ini\": 1165, \"clust\": 1098, \"rank\": 683, \"rankvar\": 215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1661, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 276, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2678, \"group\": [1098.0, 497.0, 145.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82911_BALBc-1_X01_Y02_776_103\", \"ini\": 1164, \"clust\": 1990, \"rank\": 1726, \"rankvar\": 1371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1662, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1283, \"cat-2\": \"Density: 20\", \"cat_2_index\": 166, \"group\": [1990.0, 781.0, 203.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83429_BALBc-1_X01_Y02_781_749\", \"ini\": 1163, \"clust\": 636, \"rank\": 1685, \"rankvar\": 1180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1663, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 277, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2679, \"group\": [637.0, 273.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83606_BALBc-1_X01_Y02_784_170\", \"ini\": 1162, \"clust\": 1485, \"rank\": 169, \"rankvar\": 1907, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1664, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 278, \"cat-2\": \"Density: 24\", \"cat_2_index\": 530, \"group\": [1486.0, 628.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83627_BALBc-1_X01_Y02_784_444\", \"ini\": 1161, \"clust\": 1226, \"rank\": 903, \"rankvar\": 893, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1665, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 279, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2177, \"group\": [1226.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83644_BALBc-1_X01_Y02_784_688\", \"ini\": 1160, \"clust\": 630, \"rank\": 1335, \"rankvar\": 1431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1666, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 280, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2755, \"group\": [630.0, 272.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83649_BALBc-1_X01_Y02_784_705\", \"ini\": 1159, \"clust\": 527, \"rank\": 2260, \"rankvar\": 2504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1667, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 281, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2577, \"group\": [526.0, 213.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83656_BALBc-1_X01_Y02_784_772\", \"ini\": 1158, \"clust\": 2817, \"rank\": 1584, \"rankvar\": 268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1668, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 282, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2756, \"group\": [2820.0, 1226.0, 325.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83744_BALBc-1_X01_Y02_785_846\", \"ini\": 1157, \"clust\": 1022, \"rank\": 1159, \"rankvar\": 1056, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1669, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1284, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2803, \"group\": [1022.0, 444.0, 125.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83780_BALBc-1_X01_Y02_786_374\", \"ini\": 1156, \"clust\": 141, \"rank\": 2490, \"rankvar\": 2737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1670, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1285, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2178, \"group\": [148.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84081_BALBc-1_X01_Y02_789_906\", \"ini\": 1155, \"clust\": 697, \"rank\": 2441, \"rankvar\": 1967, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1671, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1286, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2717, \"group\": [707.0, 286.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84286_BALBc-1_X01_Y02_791_823\", \"ini\": 1154, \"clust\": 1803, \"rank\": 822, \"rankvar\": 174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1672, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 283, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2783, \"group\": [1804.0, 693.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84428_BALBc-1_X01_Y02_793_482\", \"ini\": 1153, \"clust\": 670, \"rank\": 2444, \"rankvar\": 1310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1673, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2120, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2578, \"group\": [668.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84437_BALBc-1_X01_Y02_793_558\", \"ini\": 1152, \"clust\": 344, \"rank\": 2305, \"rankvar\": 1633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1674, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 284, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2639, \"group\": [340.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84444_BALBc-1_X01_Y02_793_629\", \"ini\": 1151, \"clust\": 409, \"rank\": 2361, \"rankvar\": 2559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1675, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2121, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2718, \"group\": [407.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84524_BALBc-1_X01_Y02_794_639\", \"ini\": 1150, \"clust\": 1848, \"rank\": 524, \"rankvar\": 1043, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1676, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2122, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2719, \"group\": [1849.0, 700.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84668_BALBc-1_X01_Y02_796_252\", \"ini\": 1149, \"clust\": 926, \"rank\": 1880, \"rankvar\": 1083, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1677, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 285, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1114, \"group\": [925.0, 380.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84693_BALBc-1_X01_Y02_796_606\", \"ini\": 1148, \"clust\": 431, \"rank\": 1774, \"rankvar\": 197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1678, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2123, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2822, \"group\": [431.0, 164.0, 43.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84771_BALBc-1_X01_Y02_797_576\", \"ini\": 1147, \"clust\": 1849, \"rank\": 508, \"rankvar\": 946, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1679, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 286, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2804, \"group\": [1850.0, 700.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84890_BALBc-1_X01_Y02_799_133\", \"ini\": 1146, \"clust\": 2108, \"rank\": 438, \"rankvar\": 1666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1680, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1287, \"cat-2\": \"Density: 22\", \"cat_2_index\": 296, \"group\": [2111.0, 834.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85210_BALBc-1_X01_Y02_801_416\", \"ini\": 1145, \"clust\": 1410, \"rank\": 1087, \"rankvar\": 199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1681, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2124, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2334, \"group\": [1410.0, 586.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85318_BALBc-1_X01_Y02_802_791\", \"ini\": 1144, \"clust\": 944, \"rank\": 1479, \"rankvar\": 865, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1682, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 287, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2720, \"group\": [945.0, 388.0, 104.0, 26.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85392_BALBc-1_X01_Y02_803_774\", \"ini\": 1143, \"clust\": 731, \"rank\": 2409, \"rankvar\": 1183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1683, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 288, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2757, \"group\": [730.0, 297.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85429_BALBc-1_X01_Y02_804_316\", \"ini\": 1142, \"clust\": 946, \"rank\": 1810, \"rankvar\": 1660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1684, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1288, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1535, \"group\": [947.0, 389.0, 105.0, 26.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85448_BALBc-1_X01_Y02_804_541\", \"ini\": 1141, \"clust\": 465, \"rank\": 2119, \"rankvar\": 655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1685, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 289, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2640, \"group\": [464.0, 177.0, 47.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85463_BALBc-1_X01_Y02_804_714\", \"ini\": 1140, \"clust\": 1449, \"rank\": 474, \"rankvar\": 77, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1686, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 290, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2721, \"group\": [1450.0, 606.0, 163.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85557_BALBc-1_X01_Y02_805_753\", \"ini\": 1139, \"clust\": 1374, \"rank\": 1262, \"rankvar\": 1210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1687, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 291, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2758, \"group\": [1376.0, 578.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85602_BALBc-1_X01_Y02_806_33\", \"ini\": 1138, \"clust\": 1196, \"rank\": 679, \"rankvar\": 137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1688, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2458, \"cat-2\": \"Density: 25\", \"cat_2_index\": 667, \"group\": [1194.0, 548.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85669_BALBc-1_X01_Y02_807_182\", \"ini\": 1137, \"clust\": 834, \"rank\": 2668, \"rankvar\": 2542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1689, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2588, \"cat-2\": \"Density: 27\", \"cat_2_index\": 959, \"group\": [835.0, 349.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85834_BALBc-1_X01_Y02_809_436\", \"ini\": 1136, \"clust\": 407, \"rank\": 2232, \"rankvar\": 1978, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1690, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2125, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2261, \"group\": [410.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85868_BALBc-1_X01_Y02_809_912\", \"ini\": 1135, \"clust\": 110, \"rank\": 1025, \"rankvar\": 2172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1691, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1289, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2805, \"group\": [111.0, 64.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85898_BALBc-1_X01_Y02_81_389\", \"ini\": 1134, \"clust\": 2537, \"rank\": 1390, \"rankvar\": 2066, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1692, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1290, \"cat-2\": \"Density: 21\", \"cat_2_index\": 218, \"group\": [2536.0, 1057.0, 274.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85923_BALBc-1_X01_Y02_81_743\", \"ini\": 1133, \"clust\": 858, \"rank\": 2775, \"rankvar\": 2773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1693, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2589, \"cat-2\": \"Density: 25\", \"cat_2_index\": 668, \"group\": [859.0, 361.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85974_BALBc-1_X01_Y02_810_459\", \"ini\": 1132, \"clust\": 273, \"rank\": 1183, \"rankvar\": 2073, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1694, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 292, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2262, \"group\": [276.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85979_BALBc-1_X01_Y02_810_520\", \"ini\": 1131, \"clust\": 349, \"rank\": 2001, \"rankvar\": 1200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1695, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2126, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2475, \"group\": [346.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86074_BALBc-1_X01_Y02_811_664\", \"ini\": 1130, \"clust\": 705, \"rank\": 2420, \"rankvar\": 1382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1696, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 293, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2759, \"group\": [704.0, 285.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86098_BALBc-1_X01_Y02_811_975\", \"ini\": 1129, \"clust\": 1440, \"rank\": 607, \"rankvar\": 720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1697, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1291, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1666, \"group\": [1441.0, 601.0, 161.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86157_BALBc-1_X01_Y02_812_892\", \"ini\": 1128, \"clust\": 2015, \"rank\": 1000, \"rankvar\": 437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1698, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1292, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2806, \"group\": [2016.0, 796.0, 208.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86213_BALBc-1_X01_Y02_813_595\", \"ini\": 1127, \"clust\": 410, \"rank\": 2614, \"rankvar\": 2503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1699, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 294, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2680, \"group\": [408.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86243_BALBc-1_X01_Y02_813_835\", \"ini\": 1126, \"clust\": 1358, \"rank\": 1174, \"rankvar\": 833, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1700, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 295, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2722, \"group\": [1359.0, 574.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86335_BALBc-1_X01_Y02_814_809\", \"ini\": 1125, \"clust\": 1888, \"rank\": 338, \"rankvar\": 234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1701, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 296, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2723, \"group\": [1889.0, 718.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86391_BALBc-1_X01_Y02_815_690\", \"ini\": 1124, \"clust\": 1818, \"rank\": 312, \"rankvar\": 218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1702, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 297, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2784, \"group\": [1818.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86425_BALBc-1_X01_Y02_816_222\", \"ini\": 1123, \"clust\": 511, \"rank\": 1896, \"rankvar\": 1583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1703, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 298, \"cat-2\": \"Density: 27\", \"cat_2_index\": 960, \"group\": [511.0, 207.0, 59.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86647_BALBc-1_X01_Y02_819_250\", \"ini\": 1122, \"clust\": 601, \"rank\": 1920, \"rankvar\": 299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1704, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 299, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1115, \"group\": [601.0, 261.0, 79.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86676_BALBc-1_X01_Y02_819_581\", \"ini\": 1121, \"clust\": 405, \"rank\": 2665, \"rankvar\": 2520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1705, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 300, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2681, \"group\": [403.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86754_BALBc-1_X01_Y02_82_796\", \"ini\": 1120, \"clust\": 861, \"rank\": 2351, \"rankvar\": 2223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1706, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1293, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1116, \"group\": [862.0, 363.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86790_BALBc-1_X01_Y02_820_302\", \"ini\": 1119, \"clust\": 2034, \"rank\": 1290, \"rankvar\": 1036, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1707, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 301, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1775, \"group\": [2051.0, 808.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86794_BALBc-1_X01_Y02_820_348\", \"ini\": 1118, \"clust\": 88, \"rank\": 2678, \"rankvar\": 2733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1708, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1294, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2093, \"group\": [87.0, 54.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86829_BALBc-1_X01_Y02_820_75\", \"ini\": 1117, \"clust\": 1567, \"rank\": 703, \"rankvar\": 1532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1709, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1295, \"cat-2\": \"Density: 22\", \"cat_2_index\": 297, \"group\": [1567.0, 661.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86839_BALBc-1_X01_Y02_820_855\", \"ini\": 1116, \"clust\": 1442, \"rank\": 908, \"rankvar\": 656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1710, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1296, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2785, \"group\": [1440.0, 601.0, 161.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86899_BALBc-1_X01_Y02_821_630\", \"ini\": 1115, \"clust\": 689, \"rank\": 1919, \"rankvar\": 1337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1711, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 302, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2724, \"group\": [689.0, 282.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87034_BALBc-1_X01_Y02_823_34\", \"ini\": 1114, \"clust\": 506, \"rank\": 1647, \"rankvar\": 450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1712, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2459, \"cat-2\": \"Density: 25\", \"cat_2_index\": 669, \"group\": [544.0, 217.0, 61.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87221_BALBc-1_X01_Y02_825_543\", \"ini\": 1113, \"clust\": 300, \"rank\": 1172, \"rankvar\": 1495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1713, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 303, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2579, \"group\": [299.0, 125.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87372_BALBc-1_X01_Y02_827_730\", \"ini\": 1112, \"clust\": 665, \"rank\": 1974, \"rankvar\": 358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1714, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 304, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2682, \"group\": [664.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87470_BALBc-1_X01_Y02_828_775\", \"ini\": 1111, \"clust\": 286, \"rank\": 1703, \"rankvar\": 1199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1715, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2127, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2760, \"group\": [285.0, 122.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87639_BALBc-1_X01_Y02_830_197\", \"ini\": 1110, \"clust\": 792, \"rank\": 1454, \"rankvar\": 2107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1716, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1297, \"cat-2\": \"Density: 24\", \"cat_2_index\": 531, \"group\": [793.0, 329.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87741_BALBc-1_X01_Y02_831_562\", \"ini\": 1109, \"clust\": 725, \"rank\": 2700, \"rankvar\": 1876, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1717, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 305, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2641, \"group\": [723.0, 296.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87745_BALBc-1_X01_Y02_831_662\", \"ini\": 1108, \"clust\": 282, \"rank\": 1289, \"rankvar\": 1969, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1718, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1298, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2725, \"group\": [280.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87997_BALBc-1_X01_Y02_835_259\", \"ini\": 1107, \"clust\": 947, \"rank\": 1590, \"rankvar\": 796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1719, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 306, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1409, \"group\": [948.0, 390.0, 105.0, 26.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88002_BALBc-1_X01_Y02_835_327\", \"ini\": 1106, \"clust\": 1784, \"rank\": 373, \"rankvar\": 185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1720, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2590, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1993, \"group\": [1782.0, 687.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88095_BALBc-1_X01_Y02_836_515\", \"ini\": 1105, \"clust\": 367, \"rank\": 2185, \"rankvar\": 2208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1721, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2128, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2580, \"group\": [369.0, 151.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88266_BALBc-1_X01_Y02_838_738\", \"ini\": 1104, \"clust\": 1269, \"rank\": 882, \"rankvar\": 1092, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1722, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 307, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2761, \"group\": [1268.0, 556.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88354_BALBc-1_X01_Y02_839_825\", \"ini\": 1103, \"clust\": 2780, \"rank\": 2791, \"rankvar\": 2807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1723, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 308, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2823, \"group\": [2778.0, 1203.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88357_BALBc-1_X01_Y02_839_852\", \"ini\": 1102, \"clust\": 623, \"rank\": 1799, \"rankvar\": 772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1724, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1299, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2817, \"group\": [624.0, 269.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88496_BALBc-1_X01_Y02_840_696\", \"ini\": 1101, \"clust\": 1222, \"rank\": 767, \"rankvar\": 513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1725, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1300, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2762, \"group\": [1220.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88510_BALBc-1_X01_Y02_840_903\", \"ini\": 1100, \"clust\": 100, \"rank\": 2358, \"rankvar\": 2225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1726, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1301, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2807, \"group\": [99.0, 60.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88541_BALBc-1_X01_Y02_841_302\", \"ini\": 1099, \"clust\": 263, \"rank\": 1761, \"rankvar\": 1417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1727, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2591, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1994, \"group\": [282.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88548_BALBc-1_X01_Y02_841_352\", \"ini\": 1098, \"clust\": 239, \"rank\": 1798, \"rankvar\": 1834, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1728, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2129, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2335, \"group\": [238.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88675_BALBc-1_X01_Y02_843_224\", \"ini\": 1097, \"clust\": 1455, \"rank\": 717, \"rankvar\": 194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1729, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1302, \"cat-2\": \"Density: 26\", \"cat_2_index\": 812, \"group\": [1456.0, 609.0, 164.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88693_BALBc-1_X01_Y02_843_446\", \"ini\": 1096, \"clust\": 351, \"rank\": 2595, \"rankvar\": 2395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1730, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2130, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2399, \"group\": [348.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88704_BALBc-1_X01_Y02_843_602\", \"ini\": 1095, \"clust\": 404, \"rank\": 2608, \"rankvar\": 2582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1731, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2131, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2763, \"group\": [405.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88810_BALBc-1_X01_Y02_844_808\", \"ini\": 1094, \"clust\": 1560, \"rank\": 791, \"rankvar\": 329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1732, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 309, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2764, \"group\": [1561.0, 659.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88868_BALBc-1_X01_Y02_845_558\", \"ini\": 1093, \"clust\": 1641, \"rank\": 19, \"rankvar\": 129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1733, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 310, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2683, \"group\": [1640.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88930_BALBc-1_X01_Y02_846_528\", \"ini\": 1092, \"clust\": 2824, \"rank\": 1841, \"rankvar\": 678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1734, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 311, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2400, \"group\": [2825.0, 1229.0, 326.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89014_BALBc-1_X01_Y02_847_497\", \"ini\": 1091, \"clust\": 471, \"rank\": 1711, \"rankvar\": 892, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1735, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2132, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2476, \"group\": [469.0, 179.0, 47.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89025_BALBc-1_X01_Y02_847_613\", \"ini\": 1090, \"clust\": 652, \"rank\": 1525, \"rankvar\": 1173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1736, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2133, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2808, \"group\": [652.0, 275.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89310_BALBc-1_X01_Y02_850_368\", \"ini\": 1089, \"clust\": 1423, \"rank\": 1333, \"rankvar\": 1011, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1737, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2134, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2336, \"group\": [1424.0, 590.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89480_BALBc-1_X01_Y02_852_712\", \"ini\": 1088, \"clust\": 1661, \"rank\": 164, \"rankvar\": 103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1738, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1303, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2684, \"group\": [1661.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89535_BALBc-1_X01_Y02_853_431\", \"ini\": 1087, \"clust\": 234, \"rank\": 1707, \"rankvar\": 1428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1739, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2135, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2401, \"group\": [233.0, 117.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89554_BALBc-1_X01_Y02_853_632\", \"ini\": 1086, \"clust\": 1847, \"rank\": 371, \"rankvar\": 150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1740, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 312, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2685, \"group\": [1848.0, 700.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89574_BALBc-1_X01_Y02_853_890\", \"ini\": 1085, \"clust\": 1436, \"rank\": 641, \"rankvar\": 260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1741, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1304, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2786, \"group\": [1436.0, 599.0, 161.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89619_BALBc-1_X01_Y02_854_42\", \"ini\": 1084, \"clust\": 1568, \"rank\": 888, \"rankvar\": 1836, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1742, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1975, \"cat-2\": \"Density: 25\", \"cat_2_index\": 670, \"group\": [1568.0, 662.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89667_BALBc-1_X01_Y02_854_933\", \"ini\": 1083, \"clust\": 1366, \"rank\": 1541, \"rankvar\": 964, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1743, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1305, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2642, \"group\": [1373.0, 577.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89670_BALBc-1_X01_Y02_854_970\", \"ini\": 1082, \"clust\": 1667, \"rank\": 48, \"rankvar\": 157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1744, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1306, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1776, \"group\": [1667.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89808_BALBc-1_X01_Y02_856_577\", \"ini\": 1081, \"clust\": 1845, \"rank\": 768, \"rankvar\": 576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1745, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2136, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2787, \"group\": [1845.0, 700.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89834_BALBc-1_X01_Y02_856_743\", \"ini\": 1080, \"clust\": 618, \"rank\": 1736, \"rankvar\": 1511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1746, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2137, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2686, \"group\": [619.0, 267.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89916_BALBc-1_X01_Y02_857_916\", \"ini\": 1079, \"clust\": 1607, \"rank\": 191, \"rankvar\": 675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1747, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1307, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2765, \"group\": [1611.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90046_BALBc-1_X01_Y02_859_832\", \"ini\": 1078, \"clust\": 1205, \"rank\": 606, \"rankvar\": 714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1748, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 313, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2788, \"group\": [1203.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90073_BALBc-1_X01_Y02_86_249\", \"ini\": 1077, \"clust\": 2669, \"rank\": 2282, \"rankvar\": 2180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1749, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1308, \"cat-2\": \"Density: 24\", \"cat_2_index\": 532, \"group\": [2682.0, 1139.0, 300.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90207_BALBc-1_X01_Y02_860_848\", \"ini\": 1076, \"clust\": 139, \"rank\": 2237, \"rankvar\": 2244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1750, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1309, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2726, \"group\": [139.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90347_BALBc-1_X01_Y02_862_790\", \"ini\": 1075, \"clust\": 727, \"rank\": 2514, \"rankvar\": 1332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1751, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2138, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2687, \"group\": [728.0, 296.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90484_BALBc-1_X01_Y02_864_649\", \"ini\": 1074, \"clust\": 401, \"rank\": 2626, \"rankvar\": 2638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1752, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 314, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2824, \"group\": [406.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90517_BALBc-1_X01_Y02_865_117\", \"ini\": 1073, \"clust\": 2018, \"rank\": 820, \"rankvar\": 454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1753, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1310, \"cat-2\": \"Density: 25\", \"cat_2_index\": 671, \"group\": [2017.0, 797.0, 208.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90526_BALBc-1_X01_Y02_865_275\", \"ini\": 1072, \"clust\": 1448, \"rank\": 402, \"rankvar\": 52, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1754, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2592, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1536, \"group\": [1449.0, 606.0, 163.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90627_BALBc-1_X01_Y02_866_672\", \"ini\": 1071, \"clust\": 203, \"rank\": 2610, \"rankvar\": 2517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1755, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1311, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2766, \"group\": [206.0, 103.0, 32.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90717_BALBc-1_X01_Y02_867_77\", \"ini\": 1070, \"clust\": 5, \"rank\": 1460, \"rankvar\": 407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1756, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1312, \"cat-2\": \"Density: 23\", \"cat_2_index\": 409, \"group\": [4.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90877_BALBc-1_X01_Y02_869_470\", \"ini\": 1069, \"clust\": 1943, \"rank\": 1042, \"rankvar\": 233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1757, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 315, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2477, \"group\": [1943.0, 750.0, 192.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91022_BALBc-1_X01_Y02_870_430\", \"ini\": 1068, \"clust\": 1171, \"rank\": 1047, \"rankvar\": 210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1758, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 316, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2263, \"group\": [1172.0, 541.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91052_BALBc-1_X01_Y02_870_812\", \"ini\": 1067, \"clust\": 1101, \"rank\": 594, \"rankvar\": 83, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1759, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 317, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2809, \"group\": [1100.0, 499.0, 146.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91129_BALBc-1_X01_Y02_871_893\", \"ini\": 1066, \"clust\": 154, \"rank\": 2705, \"rankvar\": 2492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1760, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1313, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2789, \"group\": [153.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91141_BALBc-1_X01_Y02_872_170\", \"ini\": 1065, \"clust\": 811, \"rank\": 1061, \"rankvar\": 563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1761, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1314, \"cat-2\": \"Density: 24\", \"cat_2_index\": 533, \"group\": [814.0, 337.0, 95.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91166_BALBc-1_X01_Y02_872_397\", \"ini\": 1064, \"clust\": 1584, \"rank\": 150, \"rankvar\": 1357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1762, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2139, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2337, \"group\": [1584.0, 671.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91495_BALBc-1_X01_Y02_876_48\", \"ini\": 1063, \"clust\": 1173, \"rank\": 1070, \"rankvar\": 187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1763, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2593, \"cat-2\": \"Density: 24\", \"cat_2_index\": 534, \"group\": [1174.0, 542.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91511_BALBc-1_X01_Y02_876_712\", \"ini\": 1062, \"clust\": 1451, \"rank\": 901, \"rankvar\": 22, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1764, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1315, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2581, \"group\": [1452.0, 607.0, 163.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91600_BALBc-1_X01_Y02_877_848\", \"ini\": 1061, \"clust\": 1610, \"rank\": 433, \"rankvar\": 353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1765, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1316, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2688, \"group\": [1609.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91734_BALBc-1_X01_Y02_879_562\", \"ini\": 1060, \"clust\": 522, \"rank\": 1473, \"rankvar\": 587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1766, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2140, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2478, \"group\": [524.0, 212.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91760_BALBc-1_X01_Y02_879_747\", \"ini\": 1059, \"clust\": 96, \"rank\": 2732, \"rankvar\": 2675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1767, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2141, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2767, \"group\": [97.0, 59.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91896_BALBc-1_X01_Y02_880_618\", \"ini\": 1058, \"clust\": 53, \"rank\": 2388, \"rankvar\": 1597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1768, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2142, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2768, \"group\": [53.0, 35.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91987_BALBc-1_X01_Y02_881_761\", \"ini\": 1057, \"clust\": 1377, \"rank\": 1200, \"rankvar\": 988, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1769, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2143, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2727, \"group\": [1382.0, 578.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92091_BALBc-1_X01_Y02_883_354\", \"ini\": 1056, \"clust\": 1376, \"rank\": 1098, \"rankvar\": 1211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1770, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 318, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2264, \"group\": [1375.0, 578.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92101_BALBc-1_X01_Y02_883_525\", \"ini\": 1055, \"clust\": 1865, \"rank\": 656, \"rankvar\": 505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1771, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 319, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2479, \"group\": [1866.0, 706.0, 182.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92192_BALBc-1_X01_Y02_884_787\", \"ini\": 1054, \"clust\": 1104, \"rank\": 1019, \"rankvar\": 790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1772, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2144, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2790, \"group\": [1107.0, 505.0, 148.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92232_BALBc-1_X01_Y02_885_452\", \"ini\": 1053, \"clust\": 1832, \"rank\": 329, \"rankvar\": 445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1773, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 320, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2402, \"group\": [1832.0, 696.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92319_BALBc-1_X01_Y02_886_720\", \"ini\": 1052, \"clust\": 1800, \"rank\": 580, \"rankvar\": 249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1774, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 321, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2728, \"group\": [1801.0, 692.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92390_BALBc-1_X01_Y02_887_673\", \"ini\": 1051, \"clust\": 1115, \"rank\": 1119, \"rankvar\": 662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1775, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1317, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2729, \"group\": [1117.0, 509.0, 148.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92396_BALBc-1_X01_Y02_887_730\", \"ini\": 1050, \"clust\": 711, \"rank\": 2439, \"rankvar\": 1514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1776, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 322, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2582, \"group\": [712.0, 290.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92444_BALBc-1_X01_Y02_888_377\", \"ini\": 1049, \"clust\": 2822, \"rank\": 1355, \"rankvar\": 1699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1777, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 323, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2403, \"group\": [2823.0, 1228.0, 326.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92446_BALBc-1_X01_Y02_888_392\", \"ini\": 1048, \"clust\": 646, \"rank\": 1831, \"rankvar\": 1436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1778, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 324, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2265, \"group\": [649.0, 274.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92557_BALBc-1_X01_Y02_889_842\", \"ini\": 1047, \"clust\": 162, \"rank\": 2509, \"rankvar\": 1981, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1779, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1318, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2810, \"group\": [164.0, 75.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92644_BALBc-1_X01_Y02_890_129\", \"ini\": 1046, \"clust\": 801, \"rank\": 1558, \"rankvar\": 1957, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1780, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2594, \"cat-2\": \"Density: 27\", \"cat_2_index\": 961, \"group\": [802.0, 331.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92729_BALBc-1_X01_Y02_891_16\", \"ini\": 1045, \"clust\": 2201, \"rank\": 1948, \"rankvar\": 1487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1781, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2595, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1117, \"group\": [2201.0, 886.0, 231.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92737_BALBc-1_X01_Y02_891_219\", \"ini\": 1044, \"clust\": 1834, \"rank\": 496, \"rankvar\": 503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1782, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1319, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1260, \"group\": [1835.0, 696.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92747_BALBc-1_X01_Y02_891_339\", \"ini\": 1043, \"clust\": 357, \"rank\": 2110, \"rankvar\": 1370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1783, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2596, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2266, \"group\": [357.0, 147.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92963_BALBc-1_X01_Y02_894_270\", \"ini\": 1042, \"clust\": 989, \"rank\": 2408, \"rankvar\": 2608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1784, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2597, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1410, \"group\": [992.0, 419.0, 116.0, 31.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92994_BALBc-1_X01_Y02_894_579\", \"ini\": 1041, \"clust\": 97, \"rank\": 2271, \"rankvar\": 2350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1785, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2145, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2643, \"group\": [98.0, 59.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93017_BALBc-1_X01_Y02_894_895\", \"ini\": 1040, \"clust\": 101, \"rank\": 1864, \"rankvar\": 2227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1786, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1320, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2644, \"group\": [100.0, 60.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93023_BALBc-1_X01_Y02_894_972\", \"ini\": 1039, \"clust\": 111, \"rank\": 1164, \"rankvar\": 2003, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1787, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1321, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1261, \"group\": [109.0, 64.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93058_BALBc-1_X01_Y02_895_417\", \"ini\": 1038, \"clust\": 1383, \"rank\": 1292, \"rankvar\": 671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1788, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 325, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2179, \"group\": [1384.0, 579.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93151_BALBc-1_X01_Y02_896_819\", \"ini\": 1037, \"clust\": 187, \"rank\": 794, \"rankvar\": 1832, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1789, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1322, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2791, \"group\": [184.0, 92.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93204_BALBc-1_X01_Y02_897_498\", \"ini\": 1036, \"clust\": 671, \"rank\": 1968, \"rankvar\": 779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1790, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 326, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2480, \"group\": [670.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93411_BALBc-1_X01_Y02_9_314\", \"ini\": 1035, \"clust\": 1487, \"rank\": 535, \"rankvar\": 1826, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1791, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1323, \"cat-2\": \"Density: 12\", \"cat_2_index\": 8, \"group\": [1490.0, 628.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93436_BALBc-1_X01_Y02_9_681\", \"ini\": 1034, \"clust\": 2550, \"rank\": 2252, \"rankvar\": 1501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1792, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 327, \"cat-2\": \"Density: 12\", \"cat_2_index\": 9, \"group\": [2556.0, 1066.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93586_BALBc-1_X01_Y02_900_660\", \"ini\": 1033, \"clust\": 417, \"rank\": 2324, \"rankvar\": 2013, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1793, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 328, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2645, \"group\": [415.0, 157.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93735_BALBc-1_X01_Y02_902_696\", \"ini\": 1032, \"clust\": 2823, \"rank\": 1773, \"rankvar\": 1733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1794, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 329, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2646, \"group\": [2824.0, 1228.0, 326.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93759_BALBc-1_X01_Y02_903_167\", \"ini\": 1031, \"clust\": 1316, \"rank\": 219, \"rankvar\": 54, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1795, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2813, \"cat-2\": \"Density: 25\", \"cat_2_index\": 672, \"group\": [1314.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93900_BALBc-1_X01_Y02_905_185\", \"ini\": 1030, \"clust\": 180, \"rank\": 1186, \"rankvar\": 1232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1796, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2598, \"cat-2\": \"Density: 27\", \"cat_2_index\": 962, \"group\": [180.0, 89.0, 28.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93911_BALBc-1_X01_Y02_905_312\", \"ini\": 1029, \"clust\": 955, \"rank\": 1108, \"rankvar\": 1074, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1797, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2599, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1878, \"group\": [955.0, 397.0, 108.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94069_BALBc-1_X01_Y02_907_471\", \"ini\": 1028, \"clust\": 352, \"rank\": 2396, \"rankvar\": 1471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1798, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 330, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2481, \"group\": [349.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94075_BALBc-1_X01_Y02_907_532\", \"ini\": 1027, \"clust\": 1238, \"rank\": 217, \"rankvar\": 114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1799, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 331, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2180, \"group\": [1237.0, 551.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94153_BALBc-1_X01_Y02_908_623\", \"ini\": 1026, \"clust\": 945, \"rank\": 1480, \"rankvar\": 1239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1800, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1976, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2583, \"group\": [946.0, 388.0, 104.0, 26.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94234_BALBc-1_X01_Y02_909_73\", \"ini\": 1025, \"clust\": 2221, \"rank\": 2605, \"rankvar\": 2259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1801, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2600, \"cat-2\": \"Density: 25\", \"cat_2_index\": 673, \"group\": [2217.0, 901.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94463_BALBc-1_X01_Y02_911_790\", \"ini\": 1024, \"clust\": 435, \"rank\": 1971, \"rankvar\": 1076, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1802, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1324, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2730, \"group\": [458.0, 173.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94538_BALBc-1_X01_Y02_912_752\", \"ini\": 1023, \"clust\": 478, \"rank\": 1876, \"rankvar\": 1308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1803, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2317, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2769, \"group\": [477.0, 182.0, 48.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94605_BALBc-1_X01_Y02_913_728\", \"ini\": 1022, \"clust\": 1189, \"rank\": 967, \"rankvar\": 917, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1804, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2318, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2584, \"group\": [1272.0, 557.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94692_BALBc-1_X01_Y02_914_972\", \"ini\": 1021, \"clust\": 747, \"rank\": 1906, \"rankvar\": 600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1805, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1325, \"cat-2\": \"Density: 27\", \"cat_2_index\": 963, \"group\": [747.0, 306.0, 86.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94737_BALBc-1_X01_Y02_915_653\", \"ini\": 1020, \"clust\": 708, \"rank\": 2138, \"rankvar\": 1463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1806, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 332, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2647, \"group\": [708.0, 287.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94800_BALBc-1_X01_Y02_916_392\", \"ini\": 1019, \"clust\": 1293, \"rank\": 932, \"rankvar\": 153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1807, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 333, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2404, \"group\": [1291.0, 565.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94865_BALBc-1_X01_Y02_917_414\", \"ini\": 1018, \"clust\": 1138, \"rank\": 1066, \"rankvar\": 684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1808, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 334, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2267, \"group\": [1139.0, 524.0, 154.0, 43.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94917_BALBc-1_X01_Y02_918_144\", \"ini\": 1017, \"clust\": 1121, \"rank\": 1466, \"rankvar\": 184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1809, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2601, \"cat-2\": \"Density: 23\", \"cat_2_index\": 410, \"group\": [1124.0, 515.0, 151.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94976_BALBc-1_X01_Y02_918_685\", \"ini\": 1016, \"clust\": 339, \"rank\": 2503, \"rankvar\": 1349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1810, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 335, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2585, \"group\": [336.0, 142.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95031_BALBc-1_X01_Y02_919_496\", \"ini\": 1015, \"clust\": 314, \"rank\": 1007, \"rankvar\": 556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1811, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 336, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2181, \"group\": [314.0, 131.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95151_BALBc-1_X01_Y02_920_106\", \"ini\": 1014, \"clust\": 1725, \"rank\": 220, \"rankvar\": 386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1812, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2602, \"cat-2\": \"Density: 25\", \"cat_2_index\": 674, \"group\": [1728.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95247_BALBc-1_X01_Y02_921_339\", \"ini\": 1013, \"clust\": 1416, \"rank\": 860, \"rankvar\": 305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1813, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 337, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2268, \"group\": [1415.0, 588.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95323_BALBc-1_X01_Y02_922_248\", \"ini\": 1012, \"clust\": 874, \"rank\": 2078, \"rankvar\": 1814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1814, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2603, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1411, \"group\": [875.0, 371.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95511_BALBc-1_X01_Y02_924_552\", \"ini\": 1011, \"clust\": 153, \"rank\": 2773, \"rankvar\": 2739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1815, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 338, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2405, \"group\": [155.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95603_BALBc-1_X01_Y02_925_713\", \"ini\": 1010, \"clust\": 467, \"rank\": 2217, \"rankvar\": 1388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1816, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2319, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2770, \"group\": [466.0, 178.0, 47.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95670_BALBc-1_X01_Y02_926_592\", \"ini\": 1009, \"clust\": 138, \"rank\": 2095, \"rankvar\": 2574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1817, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1977, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2586, \"group\": [141.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95679_BALBc-1_X01_Y02_926_670\", \"ini\": 1008, \"clust\": 1843, \"rank\": 626, \"rankvar\": 463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1818, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 339, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2689, \"group\": [1846.0, 700.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95702_BALBc-1_X01_Y02_926_934\", \"ini\": 1007, \"clust\": 2766, \"rank\": 2820, \"rankvar\": 2806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1819, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1326, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2529, \"group\": [2765.0, 1195.0, 319.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95782_BALBc-1_X01_Y02_927_871\", \"ini\": 1006, \"clust\": 1695, \"rank\": 37, \"rankvar\": 56, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1820, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1327, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2818, \"group\": [1696.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95802_BALBc-1_X01_Y02_928_19\", \"ini\": 1005, \"clust\": 1429, \"rank\": 454, \"rankvar\": 284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1821, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2604, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1262, \"group\": [1429.0, 594.0, 160.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95821_BALBc-1_X01_Y02_928_362\", \"ini\": 1004, \"clust\": 212, \"rank\": 950, \"rankvar\": 465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1822, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 340, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2482, \"group\": [216.0, 108.0, 36.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95912_BALBc-1_X01_Y02_929_417\", \"ini\": 1003, \"clust\": 1819, \"rank\": 211, \"rankvar\": 500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1823, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 341, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2483, \"group\": [1820.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95959_BALBc-1_X01_Y02_93_212\", \"ini\": 1002, \"clust\": 1508, \"rank\": 65, \"rankvar\": 1300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1824, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2244, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1263, \"group\": [1508.0, 633.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96011_BALBc-1_X01_Y02_93_891\", \"ini\": 1001, \"clust\": 10, \"rank\": 2181, \"rankvar\": 2024, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1825, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2320, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1264, \"group\": [13.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96026_BALBc-1_X01_Y02_930_183\", \"ini\": 1000, \"clust\": 84, \"rank\": 2810, \"rankvar\": 2824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1826, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2605, \"cat-2\": \"Density: 25\", \"cat_2_index\": 675, \"group\": [84.0, 53.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96035_BALBc-1_X01_Y02_930_310\", \"ini\": 999, \"clust\": 1009, \"rank\": 1474, \"rankvar\": 1067, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1827, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2321, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2094, \"group\": [1009.0, 432.0, 121.0, 33.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96049_BALBc-1_X01_Y02_930_522\", \"ini\": 998, \"clust\": 317, \"rank\": 1617, \"rankvar\": 1000, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1828, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 342, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2182, \"group\": [317.0, 132.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96059_BALBc-1_X01_Y02_930_618\", \"ini\": 997, \"clust\": 658, \"rank\": 2072, \"rankvar\": 589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1829, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 343, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2587, \"group\": [662.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96129_BALBc-1_X01_Y02_931_639\", \"ini\": 996, \"clust\": 1582, \"rank\": 744, \"rankvar\": 69, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1830, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 344, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2588, \"group\": [1586.0, 671.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96358_BALBc-1_X01_Y02_934_786\", \"ini\": 995, \"clust\": 176, \"rank\": 1064, \"rankvar\": 1625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1831, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1328, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2690, \"group\": [208.0, 105.0, 34.0, 11.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96494_BALBc-1_X01_Y02_936_390\", \"ini\": 994, \"clust\": 211, \"rank\": 1503, \"rankvar\": 979, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1832, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 345, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2484, \"group\": [210.0, 106.0, 35.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96556_BALBc-1_X01_Y02_937_334\", \"ini\": 993, \"clust\": 1279, \"rank\": 610, \"rankvar\": 177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1833, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 346, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2485, \"group\": [1277.0, 559.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96785_BALBc-1_X01_Y02_94_443\", \"ini\": 992, \"clust\": 1971, \"rank\": 1370, \"rankvar\": 1885, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1834, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2460, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1118, \"group\": [1973.0, 772.0, 202.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96861_BALBc-1_X01_Y02_940_441\", \"ini\": 991, \"clust\": 492, \"rank\": 1935, \"rankvar\": 568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1835, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 347, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2406, \"group\": [493.0, 194.0, 54.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97094_BALBc-1_X01_Y02_943_554\", \"ini\": 990, \"clust\": 318, \"rank\": 1266, \"rankvar\": 1031, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1836, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 348, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2183, \"group\": [318.0, 132.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97328_BALBc-1_X01_Y02_946_392\", \"ini\": 989, \"clust\": 306, \"rank\": 966, \"rankvar\": 520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1837, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 349, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2530, \"group\": [306.0, 127.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97429_BALBc-1_X01_Y02_947_898\", \"ini\": 988, \"clust\": 1199, \"rank\": 482, \"rankvar\": 844, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1838, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1329, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2691, \"group\": [1198.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97487_BALBc-1_X01_Y02_948_863\", \"ini\": 987, \"clust\": 202, \"rank\": 2077, \"rankvar\": 498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1839, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1658, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2771, \"group\": [207.0, 104.0, 33.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97559_BALBc-1_X01_Y02_949_682\", \"ini\": 986, \"clust\": 27, \"rank\": 827, \"rankvar\": 1140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1840, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 350, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2692, \"group\": [29.0, 19.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97703_BALBc-1_X01_Y02_950_608\", \"ini\": 985, \"clust\": 1684, \"rank\": 119, \"rankvar\": 44, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1841, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2146, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2648, \"group\": [1684.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97845_BALBc-1_X01_Y02_952_483\", \"ini\": 984, \"clust\": 555, \"rank\": 2059, \"rankvar\": 782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1842, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 351, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2531, \"group\": [555.0, 228.0, 67.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97851_BALBc-1_X01_Y02_952_581\", \"ini\": 983, \"clust\": 155, \"rank\": 2779, \"rankvar\": 2769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1843, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 352, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2532, \"group\": [154.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97911_BALBc-1_X01_Y02_953_421\", \"ini\": 982, \"clust\": 1152, \"rank\": 905, \"rankvar\": 887, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1844, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 353, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2649, \"group\": [1152.0, 530.0, 155.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98041_BALBc-1_X01_Y02_955_11\", \"ini\": 981, \"clust\": 105, \"rank\": 2348, \"rankvar\": 2301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1845, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1330, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1265, \"group\": [106.0, 62.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98050_BALBc-1_X01_Y02_955_156\", \"ini\": 980, \"clust\": 2091, \"rank\": 1210, \"rankvar\": 545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1846, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2606, \"cat-2\": \"Density: 27\", \"cat_2_index\": 964, \"group\": [2092.0, 830.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98324_BALBc-1_X01_Y02_958_818\", \"ini\": 979, \"clust\": 1234, \"rank\": 323, \"rankvar\": 206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1847, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1331, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2589, \"group\": [1238.0, 551.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98534_BALBc-1_X01_Y02_960_63\", \"ini\": 978, \"clust\": 1744, \"rank\": 136, \"rankvar\": 702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1848, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2607, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1412, \"group\": [1746.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98596_BALBc-1_X01_Y02_961_438\", \"ini\": 977, \"clust\": 614, \"rank\": 1787, \"rankvar\": 487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1849, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2608, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2693, \"group\": [615.0, 266.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98752_BALBc-1_X01_Y02_963_631\", \"ini\": 976, \"clust\": 260, \"rank\": 1941, \"rankvar\": 2336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1850, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2147, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2486, \"group\": [262.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98837_BALBc-1_X01_Y02_964_510\", \"ini\": 975, \"clust\": 729, \"rank\": 2693, \"rankvar\": 2028, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1851, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 354, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2407, \"group\": [731.0, 297.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98921_BALBc-1_X01_Y02_965_673\", \"ini\": 974, \"clust\": 843, \"rank\": 2089, \"rankvar\": 1805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1852, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 355, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2694, \"group\": [844.0, 353.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98956_BALBc-1_X01_Y02_966_344\", \"ini\": 973, \"clust\": 1425, \"rank\": 1173, \"rankvar\": 974, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1853, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 356, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2487, \"group\": [1423.0, 590.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99211_BALBc-1_X01_Y02_969_41\", \"ini\": 972, \"clust\": 2636, \"rank\": 920, \"rankvar\": 486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1854, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1332, \"cat-2\": \"Density: 26\", \"cat_2_index\": 813, \"group\": [2634.0, 1110.0, 288.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99244_BALBc-1_X01_Y02_969_891\", \"ini\": 971, \"clust\": 158, \"rank\": 2264, \"rankvar\": 1671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1855, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1333, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2488, \"group\": [161.0, 75.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99284_BALBc-1_X01_Y02_97_366\", \"ini\": 970, \"clust\": 1313, \"rank\": 290, \"rankvar\": 12, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1856, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1334, \"cat-2\": \"Density: 24\", \"cat_2_index\": 535, \"group\": [1312.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99306_BALBc-1_X01_Y02_97_619\", \"ini\": 969, \"clust\": 2264, \"rank\": 1828, \"rankvar\": 2009, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1857, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1335, \"cat-2\": \"Density: 24\", \"cat_2_index\": 536, \"group\": [2273.0, 925.0, 241.0, 61.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99355_BALBc-1_X01_Y02_970_403\", \"ini\": 968, \"clust\": 1079, \"rank\": 1209, \"rankvar\": 165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1858, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 357, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2695, \"group\": [1080.0, 486.0, 143.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99386_BALBc-1_X01_Y02_970_788\", \"ini\": 967, \"clust\": 135, \"rank\": 2346, \"rankvar\": 2284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1859, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1336, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2533, \"group\": [138.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99599_BALBc-1_X01_Y02_973_494\", \"ini\": 966, \"clust\": 1670, \"rank\": 72, \"rankvar\": 76, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1860, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 358, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2489, \"group\": [1673.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99666_BALBc-1_X01_Y02_974_301\", \"ini\": 965, \"clust\": 896, \"rank\": 2204, \"rankvar\": 1661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1861, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2148, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1995, \"group\": [896.0, 374.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99919_BALBc-1_X01_Y02_977_839\", \"ini\": 964, \"clust\": 163, \"rank\": 2796, \"rankvar\": 2525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1862, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2814, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2338, \"group\": [162.0, 75.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99966_BALBc-1_X01_Y02_978_469\", \"ini\": 963, \"clust\": 1249, \"rank\": 633, \"rankvar\": 966, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1863, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2609, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2792, \"group\": [1248.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99984_BALBc-1_X01_Y02_978_659\", \"ini\": 962, \"clust\": 333, \"rank\": 2320, \"rankvar\": 1059, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1864, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2149, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2490, \"group\": [356.0, 146.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99988_BALBc-1_X01_Y02_978_700\", \"ini\": 961, \"clust\": 43, \"rank\": 721, \"rankvar\": 2295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1865, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 359, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2731, \"group\": [40.0, 23.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100113_BALBc-1_X01_Y02_98_33\", \"ini\": 960, \"clust\": 2442, \"rank\": 2080, \"rankvar\": 2556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1866, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1337, \"cat-2\": \"Density: 20\", \"cat_2_index\": 167, \"group\": [2442.0, 1013.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100128_BALBc-1_X01_Y02_98_529\", \"ini\": 959, \"clust\": 1194, \"rank\": 878, \"rankvar\": 296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1867, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2322, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1667, \"group\": [1197.0, 548.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100158_BALBc-1_X01_Y02_98_936\", \"ini\": 958, \"clust\": 831, \"rank\": 2488, \"rankvar\": 2629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1868, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1751, \"cat-2\": \"Density: 26\", \"cat_2_index\": 814, \"group\": [829.0, 346.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100196_BALBc-1_X01_Y02_980_535\", \"ini\": 957, \"clust\": 2541, \"rank\": 1129, \"rankvar\": 1473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1869, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 360, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2491, \"group\": [2547.0, 1062.0, 275.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100343_BALBc-1_X01_Y02_982_719\", \"ini\": 956, \"clust\": 1114, \"rank\": 1141, \"rankvar\": 501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1870, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1338, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2534, \"group\": [1114.0, 508.0, 148.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100409_BALBc-1_X01_Y02_983_525\", \"ini\": 955, \"clust\": 1163, \"rank\": 676, \"rankvar\": 1551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1871, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 361, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2535, \"group\": [1162.0, 536.0, 156.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100453_BALBc-1_X01_Y02_984_217\", \"ini\": 954, \"clust\": 871, \"rank\": 2129, \"rankvar\": 1849, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1872, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2610, \"cat-2\": \"Density: 25\", \"cat_2_index\": 676, \"group\": [871.0, 369.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100476_BALBc-1_X01_Y02_984_546\", \"ini\": 953, \"clust\": 556, \"rank\": 2713, \"rankvar\": 1866, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1873, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 362, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2536, \"group\": [556.0, 229.0, 67.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100533_BALBc-1_X01_Y02_985_319\", \"ini\": 952, \"clust\": 738, \"rank\": 2293, \"rankvar\": 1960, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1874, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 363, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1777, \"group\": [739.0, 300.0, 85.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100537_BALBc-1_X01_Y02_985_370\", \"ini\": 951, \"clust\": 216, \"rank\": 1021, \"rankvar\": 757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1875, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 364, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2537, \"group\": [224.0, 112.0, 36.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100546_BALBc-1_X01_Y02_985_427\", \"ini\": 950, \"clust\": 744, \"rank\": 2432, \"rankvar\": 531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1876, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2611, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2732, \"group\": [742.0, 303.0, 86.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100828_BALBc-1_X01_Y02_989_180\", \"ini\": 949, \"clust\": 1257, \"rank\": 414, \"rankvar\": 826, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1877, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2612, \"cat-2\": \"Density: 26\", \"cat_2_index\": 815, \"group\": [1255.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101159_BALBc-1_X01_Y02_992_512\", \"ini\": 948, \"clust\": 1081, \"rank\": 604, \"rankvar\": 141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1878, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 365, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2650, \"group\": [1082.0, 488.0, 143.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101202_BALBc-1_X01_Y02_992_939\", \"ini\": 947, \"clust\": 1740, \"rank\": 166, \"rankvar\": 302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1879, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1339, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1668, \"group\": [1756.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101248_BALBc-1_X01_Y02_993_593\", \"ini\": 946, \"clust\": 1808, \"rank\": 306, \"rankvar\": 469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1880, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2150, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2590, \"group\": [1807.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101494_BALBc-1_X01_Y02_996_395\", \"ini\": 945, \"clust\": 1406, \"rank\": 980, \"rankvar\": 514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1881, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2613, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2772, \"group\": [1404.0, 583.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101598_BALBc-1_X01_Y02_997_656\", \"ini\": 944, \"clust\": 160, \"rank\": 2530, \"rankvar\": 2036, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1882, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2151, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2591, \"group\": [160.0, 75.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101724_BALBc-1_X01_Y02_999_337\", \"ini\": 943, \"clust\": 1330, \"rank\": 486, \"rankvar\": 26, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1883, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 366, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2269, \"group\": [1338.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-742_BALBc-1_X02_Y02_100_496\", \"ini\": 942, \"clust\": 1094, \"rank\": 547, \"rankvar\": 421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1884, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1340, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1879, \"group\": [1093.0, 495.0, 145.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-763_BALBc-1_X02_Y02_100_736\", \"ini\": 941, \"clust\": 995, \"rank\": 1425, \"rankvar\": 1984, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1885, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1341, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1880, \"group\": [996.0, 423.0, 118.0, 32.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-824_BALBc-1_X02_Y02_1000_584\", \"ini\": 940, \"clust\": 1072, \"rank\": 668, \"rankvar\": 1220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1886, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1581, \"cat-2\": \"Density: 26\", \"cat_2_index\": 816, \"group\": [1073.0, 483.0, 141.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1111_BALBc-1_X02_Y02_1004_421\", \"ini\": 939, \"clust\": 1457, \"rank\": 724, \"rankvar\": 447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1887, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 921, \"cat-2\": \"Density: 23\", \"cat_2_index\": 411, \"group\": [1455.0, 608.0, 164.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1386_BALBc-1_X02_Y02_1007_914\", \"ini\": 938, \"clust\": 1145, \"rank\": 1368, \"rankvar\": 1545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1888, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2152, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1266, \"group\": [1145.0, 527.0, 155.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1461_BALBc-1_X02_Y02_1008_949\", \"ini\": 937, \"clust\": 1131, \"rank\": 1187, \"rankvar\": 42, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1889, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2153, \"cat-2\": \"Density: 22\", \"cat_2_index\": 298, \"group\": [1132.0, 519.0, 152.0, 43.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1779_BALBc-1_X02_Y02_1011_766\", \"ini\": 936, \"clust\": 507, \"rank\": 1644, \"rankvar\": 1147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1890, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2614, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1669, \"group\": [510.0, 206.0, 58.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1887_BALBc-1_X02_Y02_1013_366\", \"ini\": 935, \"clust\": 2589, \"rank\": 605, \"rankvar\": 273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1891, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 367, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1267, \"group\": [2591.0, 1091.0, 284.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2061_BALBc-1_X02_Y02_1015_519\", \"ini\": 934, \"clust\": 771, \"rank\": 1629, \"rankvar\": 2179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1892, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2615, \"cat-2\": \"Density: 23\", \"cat_2_index\": 412, \"group\": [769.0, 316.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2081_BALBc-1_X02_Y02_1015_789\", \"ini\": 933, \"clust\": 942, \"rank\": 1190, \"rankvar\": 1599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1893, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1119, \"group\": [943.0, 387.0, 104.0, 26.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2117_BALBc-1_X02_Y02_1016_330\", \"ini\": 932, \"clust\": 2103, \"rank\": 840, \"rankvar\": 405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1894, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1978, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1120, \"group\": [2105.0, 833.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2209_BALBc-1_X02_Y02_1017_624\", \"ini\": 931, \"clust\": 878, \"rank\": 1565, \"rankvar\": 1400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1895, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2617, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1413, \"group\": [881.0, 373.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2250_BALBc-1_X02_Y02_1017_995\", \"ini\": 930, \"clust\": 364, \"rank\": 2785, \"rankvar\": 2263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1896, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2154, \"cat-2\": \"Density: 16\", \"cat_2_index\": 61, \"group\": [362.0, 150.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2321_BALBc-1_X02_Y02_1018_895\", \"ini\": 929, \"clust\": 882, \"rank\": 1615, \"rankvar\": 2254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1897, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2155, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1121, \"group\": [883.0, 373.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2469_BALBc-1_X02_Y02_1020_120\", \"ini\": 928, \"clust\": 2518, \"rank\": 1680, \"rankvar\": 360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1898, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1342, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1537, \"group\": [2522.0, 1049.0, 271.0, 68.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2761_BALBc-1_X02_Y02_1023_729\", \"ini\": 927, \"clust\": 1355, \"rank\": 337, \"rankvar\": 280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1899, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1343, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1996, \"group\": [1355.0, 571.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2871_BALBc-1_X02_Y02_1025_203\", \"ini\": 926, \"clust\": 189, \"rank\": 1404, \"rankvar\": 2035, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1900, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 848, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1268, \"group\": [190.0, 93.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2901_BALBc-1_X02_Y02_1025_465\", \"ini\": 925, \"clust\": 839, \"rank\": 2327, \"rankvar\": 633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1901, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2618, \"cat-2\": \"Density: 24\", \"cat_2_index\": 537, \"group\": [840.0, 350.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3027_BALBc-1_X02_Y02_1027_146\", \"ini\": 924, \"clust\": 576, \"rank\": 1564, \"rankvar\": 1361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1902, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1344, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1670, \"group\": [574.0, 240.0, 70.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3163_BALBc-1_X02_Y02_1028_557\", \"ini\": 923, \"clust\": 901, \"rank\": 2499, \"rankvar\": 2365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1903, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1582, \"cat-2\": \"Density: 25\", \"cat_2_index\": 677, \"group\": [900.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3345_BALBc-1_X02_Y02_103_855\", \"ini\": 922, \"clust\": 1017, \"rank\": 1443, \"rankvar\": 1089, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1904, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1345, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1269, \"group\": [1016.0, 438.0, 123.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3406_BALBc-1_X02_Y02_1030_786\", \"ini\": 921, \"clust\": 86, \"rank\": 2784, \"rankvar\": 2818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1905, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2619, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1414, \"group\": [83.0, 53.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3462_BALBc-1_X02_Y02_1031_450\", \"ini\": 920, \"clust\": 1764, \"rank\": 18, \"rankvar\": 442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1906, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 368, \"cat-2\": \"Density: 24\", \"cat_2_index\": 538, \"group\": [1762.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3716_BALBc-1_X02_Y02_1034_825\", \"ini\": 919, \"clust\": 1109, \"rank\": 941, \"rankvar\": 799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1907, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2620, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1415, \"group\": [1109.0, 506.0, 148.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3723_BALBc-1_X02_Y02_1034_946\", \"ini\": 918, \"clust\": 1680, \"rank\": 56, \"rankvar\": 189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1908, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 369, \"cat-2\": \"Density: 21\", \"cat_2_index\": 219, \"group\": [1677.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3800_BALBc-1_X02_Y02_1035_754\", \"ini\": 917, \"clust\": 943, \"rank\": 1477, \"rankvar\": 669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1909, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2621, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1538, \"group\": [944.0, 387.0, 104.0, 26.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3958_BALBc-1_X02_Y02_1037_680\", \"ini\": 916, \"clust\": 1632, \"rank\": 143, \"rankvar\": 24, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1910, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1346, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1881, \"group\": [1634.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3996_BALBc-1_X02_Y02_1038_233\", \"ini\": 915, \"clust\": 1732, \"rank\": 291, \"rankvar\": 777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1911, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1347, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1416, \"group\": [1732.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4123_BALBc-1_X02_Y02_1039_704\", \"ini\": 914, \"clust\": 859, \"rank\": 2410, \"rankvar\": 2006, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1912, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1348, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1997, \"group\": [860.0, 362.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4307_BALBc-1_X02_Y02_1041_402\", \"ini\": 913, \"clust\": 2134, \"rank\": 351, \"rankvar\": 354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1913, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 922, \"cat-2\": \"Density: 25\", \"cat_2_index\": 678, \"group\": [2134.0, 841.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4349_BALBc-1_X02_Y02_1041_855\", \"ini\": 912, \"clust\": 884, \"rank\": 1842, \"rankvar\": 1861, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1914, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2787, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1270, \"group\": [888.0, 373.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4398_BALBc-1_X02_Y02_1042_440\", \"ini\": 911, \"clust\": 2215, \"rank\": 2024, \"rankvar\": 1694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1915, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 923, \"cat-2\": \"Density: 27\", \"cat_2_index\": 965, \"group\": [2216.0, 900.0, 235.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4443_BALBc-1_X02_Y02_1042_919\", \"ini\": 910, \"clust\": 2149, \"rank\": 2558, \"rankvar\": 1791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1916, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 370, \"cat-2\": \"Density: 23\", \"cat_2_index\": 413, \"group\": [2153.0, 853.0, 220.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4730_BALBc-1_X02_Y02_1046_644\", \"ini\": 909, \"clust\": 1820, \"rank\": 450, \"rankvar\": 1093, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1917, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2622, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1671, \"group\": [1821.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5035_BALBc-1_X02_Y02_105_291\", \"ini\": 908, \"clust\": 6, \"rank\": 1448, \"rankvar\": 1816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1918, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2623, \"cat-2\": \"Density: 21\", \"cat_2_index\": 220, \"group\": [5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5098_BALBc-1_X02_Y02_1050_351\", \"ini\": 907, \"clust\": 1588, \"rank\": 32, \"rankvar\": 758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1919, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 371, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1271, \"group\": [1590.0, 673.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5288_BALBc-1_X02_Y02_1052_892\", \"ini\": 906, \"clust\": 1905, \"rank\": 893, \"rankvar\": 619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1920, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 372, \"cat-2\": \"Density: 25\", \"cat_2_index\": 679, \"group\": [1908.0, 726.0, 186.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5378_BALBc-1_X02_Y02_1054_302\", \"ini\": 905, \"clust\": 2760, \"rank\": 2430, \"rankvar\": 2214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1921, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1979, \"cat-2\": \"Density: 26\", \"cat_2_index\": 817, \"group\": [2762.0, 1193.0, 317.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5521_BALBc-1_X02_Y02_1055_965\", \"ini\": 904, \"clust\": 484, \"rank\": 2067, \"rankvar\": 817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1922, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2624, \"cat-2\": \"Density: 20\", \"cat_2_index\": 168, \"group\": [482.0, 183.0, 48.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5598_BALBc-1_X02_Y02_1056_814\", \"ini\": 903, \"clust\": 961, \"rank\": 836, \"rankvar\": 1971, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1923, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 373, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1417, \"group\": [962.0, 400.0, 108.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5789_BALBc-1_X02_Y02_1059_368\", \"ini\": 902, \"clust\": 2796, \"rank\": 2604, \"rankvar\": 2397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1924, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1659, \"cat-2\": \"Density: 27\", \"cat_2_index\": 966, \"group\": [2795.0, 1209.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5813_BALBc-1_X02_Y02_1059_633\", \"ini\": 901, \"clust\": 427, \"rank\": 1689, \"rankvar\": 1001, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1925, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 374, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1998, \"group\": [430.0, 163.0, 43.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5959_BALBc-1_X02_Y02_1060_547\", \"ini\": 900, \"clust\": 979, \"rank\": 1613, \"rankvar\": 1825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1926, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2625, \"cat-2\": \"Density: 24\", \"cat_2_index\": 539, \"group\": [983.0, 413.0, 114.0, 30.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5972_BALBc-1_X02_Y02_1060_686\", \"ini\": 899, \"clust\": 1645, \"rank\": 36, \"rankvar\": 36, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1927, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 375, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1882, \"group\": [1645.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6003_BALBc-1_X02_Y02_1061_164\", \"ini\": 898, \"clust\": 1933, \"rank\": 1869, \"rankvar\": 2302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1928, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1349, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1672, \"group\": [1933.0, 743.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6056_BALBc-1_X02_Y02_1061_611\", \"ini\": 897, \"clust\": 1137, \"rank\": 757, \"rankvar\": 880, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1929, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1583, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1673, \"group\": [1135.0, 521.0, 153.0, 43.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6125_BALBc-1_X02_Y02_1062_291\", \"ini\": 896, \"clust\": 2115, \"rank\": 661, \"rankvar\": 781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1930, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2788, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1272, \"group\": [2120.0, 834.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6156_BALBc-1_X02_Y02_1062_576\", \"ini\": 895, \"clust\": 166, \"rank\": 2231, \"rankvar\": 1857, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1931, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1584, \"cat-2\": \"Density: 27\", \"cat_2_index\": 967, \"group\": [167.0, 77.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6277_BALBc-1_X02_Y02_1064_324\", \"ini\": 894, \"clust\": 1749, \"rank\": 79, \"rankvar\": 223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1932, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 376, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1122, \"group\": [1748.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6307_BALBc-1_X02_Y02_1064_651\", \"ini\": 893, \"clust\": 672, \"rank\": 2034, \"rankvar\": 901, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1933, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 377, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1883, \"group\": [671.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6501_BALBc-1_X02_Y02_1067_391\", \"ini\": 892, \"clust\": 1581, \"rank\": 348, \"rankvar\": 279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1934, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1660, \"cat-2\": \"Density: 27\", \"cat_2_index\": 968, \"group\": [1587.0, 672.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6716_BALBc-1_X02_Y02_1069_716\", \"ini\": 891, \"clust\": 432, \"rank\": 1816, \"rankvar\": 488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1935, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2626, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2095, \"group\": [432.0, 164.0, 43.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6732_BALBc-1_X02_Y02_1069_881\", \"ini\": 890, \"clust\": 1910, \"rank\": 2376, \"rankvar\": 1820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1936, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2789, \"cat-2\": \"Density: 25\", \"cat_2_index\": 680, \"group\": [1911.0, 729.0, 187.0, 49.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6777_BALBc-1_X02_Y02_107_560\", \"ini\": 889, \"clust\": 175, \"rank\": 2541, \"rankvar\": 2597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1937, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1569, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2096, \"group\": [175.0, 84.0, 25.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6883_BALBc-1_X02_Y02_1070_927\", \"ini\": 888, \"clust\": 1139, \"rank\": 1381, \"rankvar\": 730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1938, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2627, \"cat-2\": \"Density: 22\", \"cat_2_index\": 299, \"group\": [1140.0, 524.0, 154.0, 43.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6955_BALBc-1_X02_Y02_1071_815\", \"ini\": 887, \"clust\": 1956, \"rank\": 1653, \"rankvar\": 1653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1939, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2790, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1539, \"group\": [1959.0, 761.0, 196.0, 51.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7044_BALBc-1_X02_Y02_1072_750\", \"ini\": 886, \"clust\": 597, \"rank\": 1712, \"rankvar\": 382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1940, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2628, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1884, \"group\": [597.0, 257.0, 77.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7048_BALBc-1_X02_Y02_1072_786\", \"ini\": 885, \"clust\": 964, \"rank\": 546, \"rankvar\": 1280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1941, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2629, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1674, \"group\": [965.0, 400.0, 108.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7330_BALBc-1_X02_Y02_1076_192\", \"ini\": 884, \"clust\": 1307, \"rank\": 778, \"rankvar\": 152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1942, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1350, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1418, \"group\": [1309.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7866_BALBc-1_X02_Y02_1082_334\", \"ini\": 883, \"clust\": 1407, \"rank\": 1044, \"rankvar\": 663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1943, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1661, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1273, \"group\": [1405.0, 583.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8112_BALBc-1_X02_Y02_1085_691\", \"ini\": 882, \"clust\": 1074, \"rank\": 1409, \"rankvar\": 328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1944, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 378, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1885, \"group\": [1074.0, 484.0, 142.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8233_BALBc-1_X02_Y02_1087_411\", \"ini\": 881, \"clust\": 997, \"rank\": 1134, \"rankvar\": 250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1945, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1662, \"cat-2\": \"Density: 27\", \"cat_2_index\": 969, \"group\": [1000.0, 427.0, 119.0, 32.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8249_BALBc-1_X02_Y02_1087_626\", \"ini\": 880, \"clust\": 1329, \"rank\": 160, \"rankvar\": 369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1946, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 379, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1886, \"group\": [1325.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8448_BALBc-1_X02_Y02_109_151\", \"ini\": 879, \"clust\": 2088, \"rank\": 504, \"rankvar\": 1389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1947, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2630, \"cat-2\": \"Density: 23\", \"cat_2_index\": 414, \"group\": [2086.0, 829.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8463_BALBc-1_X02_Y02_109_451\", \"ini\": 878, \"clust\": 1010, \"rank\": 1406, \"rankvar\": 1649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1948, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2631, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1675, \"group\": [1010.0, 432.0, 121.0, 33.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8476_BALBc-1_X02_Y02_109_610\", \"ini\": 877, \"clust\": 2123, \"rank\": 831, \"rankvar\": 1129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1949, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1351, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2097, \"group\": [2125.0, 836.0, 215.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8551_BALBc-1_X02_Y02_1090_469\", \"ini\": 876, \"clust\": 193, \"rank\": 839, \"rankvar\": 897, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1950, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2632, \"cat-2\": \"Density: 24\", \"cat_2_index\": 540, \"group\": [194.0, 95.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8576_BALBc-1_X02_Y02_1090_711\", \"ini\": 875, \"clust\": 1681, \"rank\": 212, \"rankvar\": 41, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1951, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2156, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2098, \"group\": [1678.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8913_BALBc-1_X02_Y02_1095_144\", \"ini\": 874, \"clust\": 2222, \"rank\": 2456, \"rankvar\": 2454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1952, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1663, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1274, \"group\": [2218.0, 901.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8990_BALBc-1_X02_Y02_1096_180\", \"ini\": 873, \"clust\": 1619, \"rank\": 7, \"rankvar\": 319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1953, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 380, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1540, \"group\": [1619.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9078_BALBc-1_X02_Y02_1097_291\", \"ini\": 872, \"clust\": 996, \"rank\": 1730, \"rankvar\": 1730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1954, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2791, \"cat-2\": \"Density: 27\", \"cat_2_index\": 970, \"group\": [997.0, 424.0, 118.0, 32.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9244_BALBc-1_X02_Y02_1099_550\", \"ini\": 871, \"clust\": 1403, \"rank\": 804, \"rankvar\": 1253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1955, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 627, \"cat-2\": \"Density: 27\", \"cat_2_index\": 971, \"group\": [1400.0, 583.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9402_BALBc-1_X02_Y02_110_392\", \"ini\": 870, \"clust\": 914, \"rank\": 2451, \"rankvar\": 2698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1956, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2633, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1676, \"group\": [914.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9494_BALBc-1_X02_Y02_1100_508\", \"ini\": 869, \"clust\": 63, \"rank\": 2672, \"rankvar\": 2726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1957, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2634, \"cat-2\": \"Density: 26\", \"cat_2_index\": 818, \"group\": [62.0, 39.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9511_BALBc-1_X02_Y02_1100_671\", \"ini\": 868, \"clust\": 956, \"rank\": 1096, \"rankvar\": 729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1958, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 381, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2099, \"group\": [956.0, 397.0, 108.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9687_BALBc-1_X02_Y02_1103_195\", \"ini\": 867, \"clust\": 501, \"rank\": 1778, \"rankvar\": 510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1959, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 382, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1677, \"group\": [502.0, 199.0, 56.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9726_BALBc-1_X02_Y02_1103_600\", \"ini\": 866, \"clust\": 755, \"rank\": 2482, \"rankvar\": 566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1960, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 383, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1678, \"group\": [755.0, 311.0, 88.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9731_BALBc-1_X02_Y02_1103_641\", \"ini\": 865, \"clust\": 2812, \"rank\": 2026, \"rankvar\": 1453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1961, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 384, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1999, \"group\": [2813.0, 1220.0, 324.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10109_BALBc-1_X02_Y02_1108_209\", \"ini\": 864, \"clust\": 1677, \"rank\": 54, \"rankvar\": 93, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1962, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1352, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1419, \"group\": [1675.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10196_BALBc-1_X02_Y02_1109_33\", \"ini\": 863, \"clust\": 2473, \"rank\": 1457, \"rankvar\": 1858, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1963, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1980, \"cat-2\": \"Density: 22\", \"cat_2_index\": 300, \"group\": [2471.0, 1020.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10201_BALBc-1_X02_Y02_1109_425\", \"ini\": 862, \"clust\": 2089, \"rank\": 403, \"rankvar\": 1500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1964, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 924, \"cat-2\": \"Density: 26\", \"cat_2_index\": 819, \"group\": [2087.0, 829.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10450_BALBc-1_X02_Y02_1111_750\", \"ini\": 861, \"clust\": 215, \"rank\": 1203, \"rankvar\": 1293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1965, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2157, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1679, \"group\": [214.0, 108.0, 36.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10495_BALBc-1_X02_Y02_1112_333\", \"ini\": 860, \"clust\": 1688, \"rank\": 190, \"rankvar\": 97, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1966, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1664, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1420, \"group\": [1688.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10548_BALBc-1_X02_Y02_1112_995\", \"ini\": 859, \"clust\": 1960, \"rank\": 1501, \"rankvar\": 902, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1967, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2635, \"cat-2\": \"Density: 17\", \"cat_2_index\": 81, \"group\": [1963.0, 765.0, 199.0, 52.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10672_BALBc-1_X02_Y02_1114_725\", \"ini\": 858, \"clust\": 1266, \"rank\": 743, \"rankvar\": 370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1968, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2158, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1887, \"group\": [1266.0, 555.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10918_BALBc-1_X02_Y02_1117_812\", \"ini\": 857, \"clust\": 1772, \"rank\": 173, \"rankvar\": 1601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1969, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2792, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1680, \"group\": [1774.0, 684.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10970_BALBc-1_X02_Y02_1118_562\", \"ini\": 856, \"clust\": 823, \"rank\": 2389, \"rankvar\": 2076, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1970, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2636, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1541, \"group\": [824.0, 342.0, 96.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11111_BALBc-1_X02_Y02_112_780\", \"ini\": 855, \"clust\": 2005, \"rank\": 543, \"rankvar\": 613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1971, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1353, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1421, \"group\": [2005.0, 791.0, 206.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11132_BALBc-1_X02_Y02_1120_160\", \"ini\": 854, \"clust\": 1303, \"rank\": 439, \"rankvar\": 98, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1972, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2323, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1275, \"group\": [1301.0, 568.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11248_BALBc-1_X02_Y02_1121_389\", \"ini\": 853, \"clust\": 2060, \"rank\": 1359, \"rankvar\": 767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1973, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1665, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1123, \"group\": [2063.0, 818.0, 213.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11332_BALBc-1_X02_Y02_1122_490\", \"ini\": 852, \"clust\": 453, \"rank\": 1539, \"rankvar\": 1462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1974, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2793, \"cat-2\": \"Density: 24\", \"cat_2_index\": 541, \"group\": [456.0, 171.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11531_BALBc-1_X02_Y02_1125_113\", \"ini\": 851, \"clust\": 2121, \"rank\": 876, \"rankvar\": 992, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1975, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1981, \"cat-2\": \"Density: 26\", \"cat_2_index\": 820, \"group\": [2121.0, 835.0, 215.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11546_BALBc-1_X02_Y02_1125_315\", \"ini\": 850, \"clust\": 50, \"rank\": 2006, \"rankvar\": 1423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1976, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2637, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1124, \"group\": [51.0, 33.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11566_BALBc-1_X02_Y02_1125_577\", \"ini\": 849, \"clust\": 1679, \"rank\": 97, \"rankvar\": 193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1977, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 385, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1888, \"group\": [1679.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11573_BALBc-1_X02_Y02_1125_626\", \"ini\": 848, \"clust\": 1244, \"rank\": 468, \"rankvar\": 731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1978, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 386, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1778, \"group\": [1246.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11614_BALBc-1_X02_Y02_1126_250\", \"ini\": 847, \"clust\": 2609, \"rank\": 1189, \"rankvar\": 247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1979, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1354, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1542, \"group\": [2618.0, 1104.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11867_BALBc-1_X02_Y02_1129_599\", \"ini\": 846, \"clust\": 1123, \"rank\": 1464, \"rankvar\": 295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1980, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 387, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1889, \"group\": [1123.0, 514.0, 151.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11912_BALBc-1_X02_Y02_113_34\", \"ini\": 845, \"clust\": 2561, \"rank\": 1586, \"rankvar\": 2612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1981, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1355, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1543, \"group\": [2563.0, 1068.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12036_BALBc-1_X02_Y02_1130_842\", \"ini\": 844, \"clust\": 312, \"rank\": 1029, \"rankvar\": 257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1982, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2794, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1544, \"group\": [312.0, 130.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12076_BALBc-1_X02_Y02_1131_409\", \"ini\": 843, \"clust\": 1916, \"rank\": 1146, \"rankvar\": 1177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1983, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 388, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1125, \"group\": [1916.0, 733.0, 189.0, 49.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12101_BALBc-1_X02_Y02_1131_782\", \"ini\": 842, \"clust\": 682, \"rank\": 1998, \"rankvar\": 1764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1984, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2245, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1545, \"group\": [682.0, 279.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12136_BALBc-1_X02_Y02_1132_190\", \"ini\": 841, \"clust\": 504, \"rank\": 1369, \"rankvar\": 60, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1985, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1356, \"cat-2\": \"Density: 27\", \"cat_2_index\": 972, \"group\": [504.0, 201.0, 57.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12165_BALBc-1_X02_Y02_1132_447\", \"ini\": 840, \"clust\": 1927, \"rank\": 488, \"rankvar\": 1206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1986, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2795, \"cat-2\": \"Density: 22\", \"cat_2_index\": 301, \"group\": [1925.0, 739.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12320_BALBc-1_X02_Y02_1134_679\", \"ini\": 839, \"clust\": 603, \"rank\": 1504, \"rankvar\": 629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1987, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2159, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2339, \"group\": [604.0, 263.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12365_BALBc-1_X02_Y02_1135_365\", \"ini\": 838, \"clust\": 2135, \"rank\": 592, \"rankvar\": 245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1988, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1666, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1126, \"group\": [2135.0, 841.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12416_BALBc-1_X02_Y02_1135_962\", \"ini\": 837, \"clust\": 240, \"rank\": 1640, \"rankvar\": 2085, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1989, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2638, \"cat-2\": \"Density: 21\", \"cat_2_index\": 221, \"group\": [239.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12735_BALBc-1_X02_Y02_1139_866\", \"ini\": 836, \"clust\": 752, \"rank\": 2279, \"rankvar\": 871, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1990, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2796, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1890, \"group\": [753.0, 310.0, 88.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12751_BALBc-1_X02_Y02_114_194\", \"ini\": 835, \"clust\": 2050, \"rank\": 331, \"rankvar\": 925, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1991, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2639, \"cat-2\": \"Density: 22\", \"cat_2_index\": 302, \"group\": [2047.0, 807.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12784_BALBc-1_X02_Y02_114_729\", \"ini\": 834, \"clust\": 784, \"rank\": 1664, \"rankvar\": 2203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1992, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1357, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2000, \"group\": [784.0, 324.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12833_BALBc-1_X02_Y02_1140_332\", \"ini\": 833, \"clust\": 1836, \"rank\": 272, \"rankvar\": 292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1993, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2797, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1276, \"group\": [1834.0, 696.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12954_BALBc-1_X02_Y02_1141_896\", \"ini\": 832, \"clust\": 890, \"rank\": 2195, \"rankvar\": 2246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1994, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2640, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1681, \"group\": [893.0, 374.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12956_BALBc-1_X02_Y02_1141_931\", \"ini\": 831, \"clust\": 1656, \"rank\": 80, \"rankvar\": 62, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1995, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2641, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1422, \"group\": [1654.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13018_BALBc-1_X02_Y02_1142_616\", \"ini\": 830, \"clust\": 952, \"rank\": 1150, \"rankvar\": 1078, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1996, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 389, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1779, \"group\": [952.0, 394.0, 107.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13318_BALBc-1_X02_Y02_1146_668\", \"ini\": 829, \"clust\": 222, \"rank\": 532, \"rankvar\": 936, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1997, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2160, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2184, \"group\": [221.0, 111.0, 36.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13570_BALBc-1_X02_Y02_1149_984\", \"ini\": 828, \"clust\": 633, \"rank\": 1365, \"rankvar\": 439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1998, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 390, \"cat-2\": \"Density: 22\", \"cat_2_index\": 303, \"group\": [632.0, 272.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13572_BALBc-1_X02_Y02_115_109\", \"ini\": 827, \"clust\": 1488, \"rank\": 221, \"rankvar\": 875, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1999, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 705, \"cat-2\": \"Density: 27\", \"cat_2_index\": 973, \"group\": [1489.0, 628.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13710_BALBc-1_X02_Y02_1150_801\", \"ini\": 826, \"clust\": 1561, \"rank\": 385, \"rankvar\": 1450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2000, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2642, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1780, \"group\": [1562.0, 659.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13772_BALBc-1_X02_Y02_1151_585\", \"ini\": 825, \"clust\": 796, \"rank\": 1851, \"rankvar\": 1267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2001, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2643, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2001, \"group\": [795.0, 329.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13938_BALBc-1_X02_Y02_1153_645\", \"ini\": 824, \"clust\": 2815, \"rank\": 1723, \"rankvar\": 1096, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2002, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 391, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1891, \"group\": [2815.0, 1221.0, 324.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14156_BALBc-1_X02_Y02_1156_744\", \"ini\": 823, \"clust\": 164, \"rank\": 2787, \"rankvar\": 2548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2003, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2644, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2340, \"group\": [163.0, 75.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14485_BALBc-1_X02_Y02_1160_173\", \"ini\": 822, \"clust\": 1743, \"rank\": 49, \"rankvar\": 558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2004, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2324, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1127, \"group\": [1742.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14492_BALBc-1_X02_Y02_1160_253\", \"ini\": 821, \"clust\": 2154, \"rank\": 1995, \"rankvar\": 853, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2005, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1358, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1128, \"group\": [2155.0, 855.0, 221.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14502_BALBc-1_X02_Y02_1160_402\", \"ini\": 820, \"clust\": 39, \"rank\": 1009, \"rankvar\": 1097, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2006, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2798, \"cat-2\": \"Density: 27\", \"cat_2_index\": 974, \"group\": [45.0, 27.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14546_BALBc-1_X02_Y02_1160_824\", \"ini\": 819, \"clust\": 1996, \"rank\": 675, \"rankvar\": 484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2007, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 392, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1781, \"group\": [1999.0, 789.0, 206.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14684_BALBc-1_X02_Y02_1162_447\", \"ini\": 818, \"clust\": 533, \"rank\": 1575, \"rankvar\": 1843, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2008, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2799, \"cat-2\": \"Density: 23\", \"cat_2_index\": 415, \"group\": [532.0, 214.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14743_BALBc-1_X02_Y02_1163_128\", \"ini\": 817, \"clust\": 1492, \"rank\": 89, \"rankvar\": 1249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2009, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1982, \"cat-2\": \"Density: 26\", \"cat_2_index\": 821, \"group\": [1492.0, 628.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14867_BALBc-1_X02_Y02_1164_624\", \"ini\": 816, \"clust\": 778, \"rank\": 1990, \"rankvar\": 2283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2010, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2645, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1782, \"group\": [781.0, 323.0, 92.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14896_BALBc-1_X02_Y02_1164_922\", \"ini\": 815, \"clust\": 287, \"rank\": 1545, \"rankvar\": 1126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2011, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 393, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1783, \"group\": [286.0, 122.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14971_BALBc-1_X02_Y02_1165_840\", \"ini\": 814, \"clust\": 1320, \"rank\": 110, \"rankvar\": 38, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2012, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 394, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1892, \"group\": [1317.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15063_BALBc-1_X02_Y02_1166_969\", \"ini\": 813, \"clust\": 353, \"rank\": 2131, \"rankvar\": 1290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2013, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 395, \"cat-2\": \"Density: 24\", \"cat_2_index\": 542, \"group\": [353.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15135_BALBc-1_X02_Y02_1167_999\", \"ini\": 812, \"clust\": 406, \"rank\": 2733, \"rankvar\": 2481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2014, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2161, \"cat-2\": \"Density: 20\", \"cat_2_index\": 169, \"group\": [404.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15303_BALBc-1_X02_Y02_117_410\", \"ini\": 811, \"clust\": 1760, \"rank\": 51, \"rankvar\": 294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2015, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2646, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1682, \"group\": [1761.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15305_BALBc-1_X02_Y02_117_463\", \"ini\": 810, \"clust\": 993, \"rank\": 2706, \"rankvar\": 2672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2016, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 849, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1893, \"group\": [993.0, 420.0, 117.0, 31.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15393_BALBc-1_X02_Y02_1170_650\", \"ini\": 809, \"clust\": 288, \"rank\": 1637, \"rankvar\": 1855, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2017, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 396, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2002, \"group\": [289.0, 122.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15414_BALBc-1_X02_Y02_1170_876\", \"ini\": 808, \"clust\": 683, \"rank\": 2211, \"rankvar\": 1233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2018, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 397, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1784, \"group\": [683.0, 279.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15423_BALBc-1_X02_Y02_1170_954\", \"ini\": 807, \"clust\": 1839, \"rank\": 303, \"rankvar\": 298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2019, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 398, \"cat-2\": \"Density: 26\", \"cat_2_index\": 822, \"group\": [1839.0, 697.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15568_BALBc-1_X02_Y02_1172_980\", \"ini\": 806, \"clust\": 1823, \"rank\": 146, \"rankvar\": 1155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2020, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 399, \"cat-2\": \"Density: 22\", \"cat_2_index\": 304, \"group\": [1823.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15595_BALBc-1_X02_Y02_1173_333\", \"ini\": 805, \"clust\": 998, \"rank\": 1397, \"rankvar\": 585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2021, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2800, \"cat-2\": \"Density: 26\", \"cat_2_index\": 823, \"group\": [998.0, 425.0, 119.0, 32.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15880_BALBc-1_X02_Y02_1176_923\", \"ini\": 804, \"clust\": 265, \"rank\": 1585, \"rankvar\": 1493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2022, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 400, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2003, \"group\": [264.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15939_BALBc-1_X02_Y02_1177_805\", \"ini\": 803, \"clust\": 430, \"rank\": 1931, \"rankvar\": 692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2023, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 401, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1894, \"group\": [433.0, 165.0, 43.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15968_BALBc-1_X02_Y02_1178_208\", \"ini\": 802, \"clust\": 1712, \"rank\": 284, \"rankvar\": 1022, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2024, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1359, \"cat-2\": \"Density: 26\", \"cat_2_index\": 824, \"group\": [1712.0, 681.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15986_BALBc-1_X02_Y02_1178_415\", \"ini\": 801, \"clust\": 1721, \"rank\": 366, \"rankvar\": 371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2025, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2647, \"cat-2\": \"Density: 24\", \"cat_2_index\": 543, \"group\": [1725.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16048_BALBc-1_X02_Y02_1178_942\", \"ini\": 800, \"clust\": 448, \"rank\": 2050, \"rankvar\": 1179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2026, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 402, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1683, \"group\": [444.0, 169.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16314_BALBc-1_X02_Y02_1181_752\", \"ini\": 799, \"clust\": 450, \"rank\": 2189, \"rankvar\": 1492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2027, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2648, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2100, \"group\": [449.0, 169.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16545_BALBc-1_X02_Y02_1184_787\", \"ini\": 798, \"clust\": 1812, \"rank\": 96, \"rankvar\": 231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2028, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2649, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1785, \"group\": [1812.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16556_BALBc-1_X02_Y02_1184_889\", \"ini\": 797, \"clust\": 1804, \"rank\": 197, \"rankvar\": 843, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2029, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 403, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2101, \"group\": [1810.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16843_BALBc-1_X02_Y02_1188_851\", \"ini\": 796, \"clust\": 267, \"rank\": 1481, \"rankvar\": 1321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2030, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 404, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2102, \"group\": [270.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16917_BALBc-1_X02_Y02_1189_710\", \"ini\": 795, \"clust\": 290, \"rank\": 1807, \"rankvar\": 1309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2031, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2162, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1684, \"group\": [288.0, 122.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17166_BALBc-1_X02_Y02_1192_172\", \"ini\": 794, \"clust\": 1929, \"rank\": 856, \"rankvar\": 1386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2032, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 850, \"cat-2\": \"Density: 27\", \"cat_2_index\": 975, \"group\": [1927.0, 739.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17200_BALBc-1_X02_Y02_1192_66\", \"ini\": 793, \"clust\": 2274, \"rank\": 2206, \"rankvar\": 612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2033, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 851, \"cat-2\": \"Density: 22\", \"cat_2_index\": 305, \"group\": [2275.0, 926.0, 242.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17277_BALBc-1_X02_Y02_1193_669\", \"ini\": 792, \"clust\": 1172, \"rank\": 1031, \"rankvar\": 43, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2034, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2163, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2004, \"group\": [1173.0, 541.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17324_BALBc-1_X02_Y02_1194_343\", \"ini\": 791, \"clust\": 1718, \"rank\": 62, \"rankvar\": 1048, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2035, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2801, \"cat-2\": \"Density: 24\", \"cat_2_index\": 544, \"group\": [1718.0, 681.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17418_BALBc-1_X02_Y02_1195_565\", \"ini\": 790, \"clust\": 1128, \"rank\": 655, \"rankvar\": 900, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2036, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2650, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1277, \"group\": [1131.0, 518.0, 151.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17557_BALBc-1_X02_Y02_1197_533\", \"ini\": 789, \"clust\": 1861, \"rank\": 33, \"rankvar\": 1819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2037, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2651, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1423, \"group\": [1862.0, 704.0, 182.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17661_BALBc-1_X02_Y02_1198_827\", \"ini\": 788, \"clust\": 2774, \"rank\": 2269, \"rankvar\": 2618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2038, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 405, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2103, \"group\": [2774.0, 1201.0, 320.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17686_BALBc-1_X02_Y02_1199_215\", \"ini\": 787, \"clust\": 2148, \"rank\": 1967, \"rankvar\": 2025, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2039, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2248, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1278, \"group\": [2146.0, 847.0, 218.0, 55.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17736_BALBc-1_X02_Y02_1199_815\", \"ini\": 786, \"clust\": 368, \"rank\": 2474, \"rankvar\": 2424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2040, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 406, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2104, \"group\": [367.0, 151.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17809_BALBc-1_X02_Y02_12_793\", \"ini\": 785, \"clust\": 917, \"rank\": 2175, \"rankvar\": 1868, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2041, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1360, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1786, \"group\": [918.0, 377.0, 101.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18091_BALBc-1_X02_Y02_1202_280\", \"ini\": 784, \"clust\": 2219, \"rank\": 1819, \"rankvar\": 1883, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2042, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2249, \"cat-2\": \"Density: 24\", \"cat_2_index\": 545, \"group\": [2220.0, 901.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18146_BALBc-1_X02_Y02_1202_911\", \"ini\": 783, \"clust\": 342, \"rank\": 2457, \"rankvar\": 1753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2043, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 407, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2492, \"group\": [341.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18155_BALBc-1_X02_Y02_1202_975\", \"ini\": 782, \"clust\": 1236, \"rank\": 353, \"rankvar\": 345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2044, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 408, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1129, \"group\": [1235.0, 551.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18172_BALBc-1_X02_Y02_1203_305\", \"ini\": 781, \"clust\": 2137, \"rank\": 415, \"rankvar\": 896, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2045, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2652, \"cat-2\": \"Density: 25\", \"cat_2_index\": 681, \"group\": [2136.0, 841.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18233_BALBc-1_X02_Y02_1204_137\", \"ini\": 780, \"clust\": 2467, \"rank\": 1785, \"rankvar\": 1736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2046, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 706, \"cat-2\": \"Density: 23\", \"cat_2_index\": 416, \"group\": [2479.0, 1023.0, 266.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18261_BALBc-1_X02_Y02_1204_367\", \"ini\": 779, \"clust\": 1174, \"rank\": 1143, \"rankvar\": 286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2047, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2802, \"cat-2\": \"Density: 26\", \"cat_2_index\": 825, \"group\": [1175.0, 542.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18290_BALBc-1_X02_Y02_1204_637\", \"ini\": 778, \"clust\": 303, \"rank\": 1284, \"rankvar\": 1016, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2048, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2164, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1895, \"group\": [303.0, 127.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18505_BALBc-1_X02_Y02_1207_236\", \"ini\": 777, \"clust\": 1347, \"rank\": 145, \"rankvar\": 623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2049, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2250, \"cat-2\": \"Density: 25\", \"cat_2_index\": 682, \"group\": [1346.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18616_BALBc-1_X02_Y02_1208_730\", \"ini\": 776, \"clust\": 307, \"rank\": 1329, \"rankvar\": 506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2050, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 409, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2341, \"group\": [307.0, 127.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18834_BALBc-1_X02_Y02_1210_68\", \"ini\": 775, \"clust\": 2480, \"rank\": 1281, \"rankvar\": 1075, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2051, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 852, \"cat-2\": \"Density: 22\", \"cat_2_index\": 306, \"group\": [2481.0, 1024.0, 267.0, 67.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18835_BALBc-1_X02_Y02_1210_690\", \"ini\": 774, \"clust\": 1277, \"rank\": 803, \"rankvar\": 264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2052, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 410, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1685, \"group\": [1278.0, 559.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18895_BALBc-1_X02_Y02_1211_550\", \"ini\": 773, \"clust\": 535, \"rank\": 1856, \"rankvar\": 2129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2053, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1361, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1279, \"group\": [535.0, 215.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18963_BALBc-1_X02_Y02_1212_417\", \"ini\": 772, \"clust\": 2081, \"rank\": 296, \"rankvar\": 904, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2054, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2653, \"cat-2\": \"Density: 23\", \"cat_2_index\": 417, \"group\": [2081.0, 827.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19058_BALBc-1_X02_Y02_1213_786\", \"ini\": 771, \"clust\": 1697, \"rank\": 60, \"rankvar\": 168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2055, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 411, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2185, \"group\": [1695.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19143_BALBc-1_X02_Y02_1214_853\", \"ini\": 770, \"clust\": 269, \"rank\": 1520, \"rankvar\": 1392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2056, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 412, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2186, \"group\": [268.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19158_BALBc-1_X02_Y02_1214_998\", \"ini\": 769, \"clust\": 678, \"rank\": 2229, \"rankvar\": 1325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2057, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 413, \"cat-2\": \"Density: 22\", \"cat_2_index\": 307, \"group\": [676.0, 278.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19934_BALBc-1_X02_Y02_1224_37\", \"ini\": 768, \"clust\": 2587, \"rank\": 955, \"rankvar\": 364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2058, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 853, \"cat-2\": \"Density: 23\", \"cat_2_index\": 418, \"group\": [2588.0, 1089.0, 283.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19942_BALBc-1_X02_Y02_1224_457\", \"ini\": 767, \"clust\": 1493, \"rank\": 105, \"rankvar\": 466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2059, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2654, \"cat-2\": \"Density: 24\", \"cat_2_index\": 546, \"group\": [1493.0, 628.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19965_BALBc-1_X02_Y02_1224_717\", \"ini\": 766, \"clust\": 369, \"rank\": 2455, \"rankvar\": 2279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2060, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 414, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2105, \"group\": [368.0, 151.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20040_BALBc-1_X02_Y02_1225_677\", \"ini\": 765, \"clust\": 259, \"rank\": 1788, \"rankvar\": 1674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2061, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 415, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2187, \"group\": [259.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20113_BALBc-1_X02_Y02_1226_605\", \"ini\": 764, \"clust\": 1167, \"rank\": 1095, \"rankvar\": 267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2062, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2165, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2005, \"group\": [1167.0, 539.0, 157.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20117_BALBc-1_X02_Y02_1226_636\", \"ini\": 763, \"clust\": 958, \"rank\": 889, \"rankvar\": 965, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2063, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 416, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2342, \"group\": [959.0, 398.0, 108.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20128_BALBc-1_X02_Y02_1226_776\", \"ini\": 762, \"clust\": 462, \"rank\": 1618, \"rankvar\": 1266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2064, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2166, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2270, \"group\": [473.0, 181.0, 47.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20281_BALBc-1_X02_Y02_1228_895\", \"ini\": 761, \"clust\": 1401, \"rank\": 1040, \"rankvar\": 1498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2065, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 417, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2271, \"group\": [1403.0, 583.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20297_BALBc-1_X02_Y02_1229_260\", \"ini\": 760, \"clust\": 1797, \"rank\": 521, \"rankvar\": 535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2066, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 418, \"cat-2\": \"Density: 24\", \"cat_2_index\": 547, \"group\": [1798.0, 689.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20538_BALBc-1_X02_Y02_1231_364\", \"ini\": 759, \"clust\": 3, \"rank\": 1607, \"rankvar\": 2074, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2067, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 925, \"cat-2\": \"Density: 23\", \"cat_2_index\": 419, \"group\": [7.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20631_BALBc-1_X02_Y02_1232_383\", \"ini\": 758, \"clust\": 1102, \"rank\": 619, \"rankvar\": 82, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2068, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 419, \"cat-2\": \"Density: 22\", \"cat_2_index\": 308, \"group\": [1101.0, 500.0, 146.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20752_BALBc-1_X02_Y02_1233_882\", \"ini\": 757, \"clust\": 598, \"rank\": 1746, \"rankvar\": 410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2069, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 420, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2343, \"group\": [598.0, 258.0, 77.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20757_BALBc-1_X02_Y02_1233_942\", \"ini\": 756, \"clust\": 2039, \"rank\": 954, \"rankvar\": 547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2070, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 421, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2006, \"group\": [2039.0, 806.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20801_BALBc-1_X02_Y02_1234_579\", \"ini\": 755, \"clust\": 1794, \"rank\": 235, \"rankvar\": 628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2071, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1362, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1686, \"group\": [1793.0, 688.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20824_BALBc-1_X02_Y02_1234_805\", \"ini\": 754, \"clust\": 426, \"rank\": 1827, \"rankvar\": 740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2072, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2167, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2408, \"group\": [426.0, 163.0, 43.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20990_BALBc-1_X02_Y02_1236_981\", \"ini\": 753, \"clust\": 1629, \"rank\": 23, \"rankvar\": 320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2073, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2655, \"cat-2\": \"Density: 27\", \"cat_2_index\": 976, \"group\": [1625.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21052_BALBc-1_X02_Y02_1238_118\", \"ini\": 752, \"clust\": 1699, \"rank\": 181, \"rankvar\": 196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2074, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 707, \"cat-2\": \"Density: 24\", \"cat_2_index\": 548, \"group\": [1701.0, 679.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21101_BALBc-1_X02_Y02_1238_698\", \"ini\": 751, \"clust\": 319, \"rank\": 1073, \"rankvar\": 761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2075, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 422, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2106, \"group\": [319.0, 133.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21177_BALBc-1_X02_Y02_1239_735\", \"ini\": 750, \"clust\": 1940, \"rank\": 425, \"rankvar\": 1054, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2076, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 423, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2188, \"group\": [1940.0, 747.0, 192.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21417_BALBc-1_X02_Y02_1241_859\", \"ini\": 749, \"clust\": 1637, \"rank\": 81, \"rankvar\": 13, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2077, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2168, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2189, \"group\": [1635.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21484_BALBc-1_X02_Y02_1242_93\", \"ini\": 748, \"clust\": 2070, \"rank\": 1394, \"rankvar\": 2105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2078, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 854, \"cat-2\": \"Density: 23\", \"cat_2_index\": 420, \"group\": [2069.0, 823.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21581_BALBc-1_X02_Y02_1244_226\", \"ini\": 747, \"clust\": 497, \"rank\": 1511, \"rankvar\": 807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2079, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 855, \"cat-2\": \"Density: 27\", \"cat_2_index\": 977, \"group\": [498.0, 196.0, 55.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21628_BALBc-1_X02_Y02_1244_966\", \"ini\": 746, \"clust\": 666, \"rank\": 2412, \"rankvar\": 1344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2080, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2656, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1424, \"group\": [665.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21630_BALBc-1_X02_Y02_1244_997\", \"ini\": 745, \"clust\": 640, \"rank\": 2134, \"rankvar\": 1026, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2081, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2657, \"cat-2\": \"Density: 22\", \"cat_2_index\": 309, \"group\": [641.0, 274.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21647_BALBc-1_X02_Y02_1245_199\", \"ini\": 744, \"clust\": 1785, \"rank\": 596, \"rankvar\": 290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2082, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 708, \"cat-2\": \"Density: 27\", \"cat_2_index\": 978, \"group\": [1783.0, 687.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21656_BALBc-1_X02_Y02_1245_280\", \"ini\": 743, \"clust\": 178, \"rank\": 1076, \"rankvar\": 1039, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2083, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 926, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1280, \"group\": [178.0, 87.0, 27.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21832_BALBc-1_X02_Y02_1247_883\", \"ini\": 742, \"clust\": 2040, \"rank\": 554, \"rankvar\": 1527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2084, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 424, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2190, \"group\": [2040.0, 806.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22423_BALBc-1_X02_Y02_1254_748\", \"ini\": 741, \"clust\": 449, \"rank\": 2115, \"rankvar\": 1105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2085, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 425, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2344, \"group\": [445.0, 169.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22543_BALBc-1_X02_Y02_1256_600\", \"ini\": 740, \"clust\": 536, \"rank\": 1697, \"rankvar\": 1612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2086, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 426, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2107, \"group\": [536.0, 215.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22609_BALBc-1_X02_Y02_1257_427\", \"ini\": 739, \"clust\": 974, \"rank\": 1563, \"rankvar\": 1091, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2087, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1363, \"cat-2\": \"Density: 21\", \"cat_2_index\": 222, \"group\": [974.0, 407.0, 111.0, 29.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22632_BALBc-1_X02_Y02_1257_646\", \"ini\": 738, \"clust\": 2062, \"rank\": 1199, \"rankvar\": 1215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2088, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 427, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2108, \"group\": [2062.0, 817.0, 213.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22899_BALBc-1_X02_Y02_1260_506\", \"ini\": 737, \"clust\": 1439, \"rank\": 817, \"rankvar\": 434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2089, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1364, \"cat-2\": \"Density: 25\", \"cat_2_index\": 683, \"group\": [1442.0, 601.0, 161.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22914_BALBc-1_X02_Y02_1260_721\", \"ini\": 736, \"clust\": 534, \"rank\": 1911, \"rankvar\": 2038, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2090, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 428, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2007, \"group\": [533.0, 214.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22990_BALBc-1_X02_Y02_1261_872\", \"ini\": 735, \"clust\": 472, \"rank\": 1752, \"rankvar\": 627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2091, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 429, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1896, \"group\": [470.0, 179.0, 47.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23225_BALBc-1_X02_Y02_1264_989\", \"ini\": 734, \"clust\": 340, \"rank\": 2494, \"rankvar\": 1286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2092, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2169, \"cat-2\": \"Density: 20\", \"cat_2_index\": 170, \"group\": [337.0, 142.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23259_BALBc-1_X02_Y02_1265_403\", \"ini\": 733, \"clust\": 1687, \"rank\": 240, \"rankvar\": 158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2093, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 430, \"cat-2\": \"Density: 19\", \"cat_2_index\": 123, \"group\": [1698.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23400_BALBc-1_X02_Y02_1267_557\", \"ini\": 732, \"clust\": 1049, \"rank\": 1673, \"rankvar\": 2547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2094, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1365, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1130, \"group\": [1049.0, 466.0, 133.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23411_BALBc-1_X02_Y02_1267_797\", \"ini\": 731, \"clust\": 23, \"rank\": 1345, \"rankvar\": 2012, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2095, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2170, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1897, \"group\": [23.0, 17.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23420_BALBc-1_X02_Y02_1267_912\", \"ini\": 730, \"clust\": 723, \"rank\": 2619, \"rankvar\": 1623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2096, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 431, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1425, \"group\": [724.0, 296.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23445_BALBc-1_X02_Y02_1268_264\", \"ini\": 729, \"clust\": 1466, \"rank\": 1151, \"rankvar\": 128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2097, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 709, \"cat-2\": \"Density: 23\", \"cat_2_index\": 421, \"group\": [1469.0, 619.0, 169.0, 46.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23486_BALBc-1_X02_Y02_1268_775\", \"ini\": 728, \"clust\": 292, \"rank\": 1388, \"rankvar\": 517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2098, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2171, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2191, \"group\": [297.0, 125.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23578_BALBc-1_X02_Y02_127_136\", \"ini\": 727, \"clust\": 825, \"rank\": 2798, \"rankvar\": 2755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2099, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 432, \"cat-2\": \"Density: 22\", \"cat_2_index\": 310, \"group\": [826.0, 344.0, 97.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23693_BALBc-1_X02_Y02_1270_691\", \"ini\": 726, \"clust\": 359, \"rank\": 2661, \"rankvar\": 2010, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2100, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 433, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1787, \"group\": [360.0, 149.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23786_BALBc-1_X02_Y02_1272_150\", \"ini\": 725, \"clust\": 1737, \"rank\": 66, \"rankvar\": 31, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2101, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 710, \"cat-2\": \"Density: 20\", \"cat_2_index\": 171, \"group\": [1737.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23903_BALBc-1_X02_Y02_1273_584\", \"ini\": 724, \"clust\": 20, \"rank\": 1509, \"rankvar\": 1362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2102, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 434, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1546, \"group\": [20.0, 15.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23932_BALBc-1_X02_Y02_1273_933\", \"ini\": 723, \"clust\": 1186, \"rank\": 1140, \"rankvar\": 868, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2103, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 435, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1281, \"group\": [1188.0, 546.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24090_BALBc-1_X02_Y02_1275_977\", \"ini\": 722, \"clust\": 468, \"rank\": 1500, \"rankvar\": 872, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2104, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2172, \"cat-2\": \"Density: 20\", \"cat_2_index\": 172, \"group\": [467.0, 179.0, 47.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24259_BALBc-1_X02_Y02_1278_364\", \"ini\": 721, \"clust\": 2307, \"rank\": 2174, \"rankvar\": 1669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2105, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1667, \"cat-2\": \"Density: 18\", \"cat_2_index\": 98, \"group\": [2308.0, 942.0, 246.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24308_BALBc-1_X02_Y02_1278_906\", \"ini\": 720, \"clust\": 414, \"rank\": 1949, \"rankvar\": 2406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2106, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 436, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1282, \"group\": [419.0, 157.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24363_BALBc-1_X02_Y02_1279_658\", \"ini\": 719, \"clust\": 220, \"rank\": 1063, \"rankvar\": 1202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2107, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 437, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2109, \"group\": [220.0, 110.0, 36.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24400_BALBc-1_X02_Y02_128_401\", \"ini\": 718, \"clust\": 1050, \"rank\": 1513, \"rankvar\": 2465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2108, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2658, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1547, \"group\": [1050.0, 466.0, 133.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24702_BALBc-1_X02_Y02_1283_757\", \"ini\": 717, \"clust\": 1351, \"rank\": 142, \"rankvar\": 212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2109, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 438, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1687, \"group\": [1349.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24791_BALBc-1_X02_Y02_1284_937\", \"ini\": 716, \"clust\": 447, \"rank\": 2106, \"rankvar\": 813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2110, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2173, \"cat-2\": \"Density: 25\", \"cat_2_index\": 684, \"group\": [446.0, 169.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24871_BALBc-1_X02_Y02_1286_196\", \"ini\": 715, \"clust\": 968, \"rank\": 1099, \"rankvar\": 1033, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2111, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 711, \"cat-2\": \"Density: 23\", \"cat_2_index\": 422, \"group\": [969.0, 403.0, 110.0, 29.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24910_BALBc-1_X02_Y02_1286_61\", \"ini\": 714, \"clust\": 1965, \"rank\": 669, \"rankvar\": 480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2112, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 856, \"cat-2\": \"Density: 22\", \"cat_2_index\": 311, \"group\": [1967.0, 768.0, 201.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24930_BALBc-1_X02_Y02_1286_94\", \"ini\": 713, \"clust\": 51, \"rank\": 1862, \"rankvar\": 1426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2113, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 857, \"cat-2\": \"Density: 21\", \"cat_2_index\": 223, \"group\": [52.0, 34.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24997_BALBc-1_X02_Y02_1287_830\", \"ini\": 712, \"clust\": 707, \"rank\": 2386, \"rankvar\": 1399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2114, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2174, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1548, \"group\": [710.0, 288.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25247_BALBc-1_X02_Y02_1290_427\", \"ini\": 711, \"clust\": 2521, \"rank\": 1081, \"rankvar\": 1842, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2115, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1366, \"cat-2\": \"Density: 18\", \"cat_2_index\": 99, \"group\": [2520.0, 1047.0, 270.0, 68.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25317_BALBc-1_X02_Y02_1291_314\", \"ini\": 710, \"clust\": 2082, \"rank\": 783, \"rankvar\": 1245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2116, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 712, \"cat-2\": \"Density: 20\", \"cat_2_index\": 173, \"group\": [2082.0, 827.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25428_BALBc-1_X02_Y02_1292_703\", \"ini\": 709, \"clust\": 2037, \"rank\": 595, \"rankvar\": 497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2117, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 439, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1688, \"group\": [2035.0, 805.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25511_BALBc-1_X02_Y02_1293_680\", \"ini\": 708, \"clust\": 1285, \"rank\": 322, \"rankvar\": 449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2118, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 440, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1689, \"group\": [1283.0, 561.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25661_BALBc-1_X02_Y02_1295_739\", \"ini\": 707, \"clust\": 1570, \"rank\": 493, \"rankvar\": 632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2119, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 441, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1898, \"group\": [1570.0, 664.0, 179.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25688_BALBc-1_X02_Y02_1296_24\", \"ini\": 706, \"clust\": 1771, \"rank\": 503, \"rankvar\": 1125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2120, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1367, \"cat-2\": \"Density: 22\", \"cat_2_index\": 312, \"group\": [1771.0, 684.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25752_BALBc-1_X02_Y02_1297_227\", \"ini\": 705, \"clust\": 2185, \"rank\": 1721, \"rankvar\": 1572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2121, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2494, \"cat-2\": \"Density: 23\", \"cat_2_index\": 423, \"group\": [2185.0, 873.0, 227.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26022_BALBc-1_X02_Y02_13_668\", \"ini\": 704, \"clust\": 2008, \"rank\": 1039, \"rankvar\": 385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2122, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1368, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1283, \"group\": [2008.0, 792.0, 207.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26077_BALBc-1_X02_Y02_130_473\", \"ini\": 703, \"clust\": 1388, \"rank\": 769, \"rankvar\": 1777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2123, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 858, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1549, \"group\": [1387.0, 580.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26124_BALBc-1_X02_Y02_1300_173\", \"ini\": 702, \"clust\": 1878, \"rank\": 593, \"rankvar\": 140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2124, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 442, \"cat-2\": \"Density: 19\", \"cat_2_index\": 124, \"group\": [1881.0, 714.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26182_BALBc-1_X02_Y02_1300_787\", \"ini\": 701, \"clust\": 1245, \"rank\": 720, \"rankvar\": 178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2125, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2175, \"cat-2\": \"Density: 27\", \"cat_2_index\": 979, \"group\": [1244.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26230_BALBc-1_X02_Y02_1301_568\", \"ini\": 700, \"clust\": 891, \"rank\": 2657, \"rankvar\": 2496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2126, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2659, \"cat-2\": \"Density: 26\", \"cat_2_index\": 826, \"group\": [891.0, 374.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26312_BALBc-1_X02_Y02_1302_626\", \"ini\": 699, \"clust\": 749, \"rank\": 1983, \"rankvar\": 982, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2127, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 443, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1131, \"group\": [750.0, 308.0, 87.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26315_BALBc-1_X02_Y02_1302_700\", \"ini\": 698, \"clust\": 514, \"rank\": 1921, \"rankvar\": 1812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2128, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 444, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1550, \"group\": [513.0, 209.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26391_BALBc-1_X02_Y02_1303_927\", \"ini\": 697, \"clust\": 1626, \"rank\": 25, \"rankvar\": 95, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2129, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2176, \"cat-2\": \"Density: 23\", \"cat_2_index\": 424, \"group\": [1624.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26449_BALBc-1_X02_Y02_1304_811\", \"ini\": 696, \"clust\": 1622, \"rank\": 15, \"rankvar\": 291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2130, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2177, \"cat-2\": \"Density: 26\", \"cat_2_index\": 827, \"group\": [1617.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26566_BALBc-1_X02_Y02_1306_658\", \"ini\": 695, \"clust\": 1308, \"rank\": 715, \"rankvar\": 172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2131, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 445, \"cat-2\": \"Density: 26\", \"cat_2_index\": 828, \"group\": [1308.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26693_BALBc-1_X02_Y02_1308_47\", \"ini\": 694, \"clust\": 2095, \"rank\": 1267, \"rankvar\": 1954, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2132, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 859, \"cat-2\": \"Density: 20\", \"cat_2_index\": 174, \"group\": [2096.0, 831.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26715_BALBc-1_X02_Y02_1308_750\", \"ini\": 693, \"clust\": 454, \"rank\": 2240, \"rankvar\": 1911, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2133, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 446, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1426, \"group\": [455.0, 170.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26846_BALBc-1_X02_Y02_131_495\", \"ini\": 692, \"clust\": 1634, \"rank\": 184, \"rankvar\": 19, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2134, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 447, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1427, \"group\": [1633.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27069_BALBc-1_X02_Y02_1312_571\", \"ini\": 691, \"clust\": 1944, \"rank\": 561, \"rankvar\": 1060, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2135, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2660, \"cat-2\": \"Density: 23\", \"cat_2_index\": 425, \"group\": [1944.0, 750.0, 192.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27073_BALBc-1_X02_Y02_1312_596\", \"ini\": 690, \"clust\": 1300, \"rank\": 263, \"rankvar\": 159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2136, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 448, \"cat-2\": \"Density: 24\", \"cat_2_index\": 549, \"group\": [1298.0, 568.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27093_BALBc-1_X02_Y02_1312_855\", \"ini\": 689, \"clust\": 758, \"rank\": 1296, \"rankvar\": 1190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2137, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 449, \"cat-2\": \"Density: 27\", \"cat_2_index\": 980, \"group\": [757.0, 312.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27175_BALBc-1_X02_Y02_1313_889\", \"ini\": 688, \"clust\": 753, \"rank\": 2579, \"rankvar\": 649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2138, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 450, \"cat-2\": \"Density: 21\", \"cat_2_index\": 224, \"group\": [756.0, 311.0, 88.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27201_BALBc-1_X02_Y02_1314_469\", \"ini\": 687, \"clust\": 2019, \"rank\": 690, \"rankvar\": 334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2139, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2661, \"cat-2\": \"Density: 16\", \"cat_2_index\": 62, \"group\": [2018.0, 797.0, 208.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27203_BALBc-1_X02_Y02_1314_500\", \"ini\": 686, \"clust\": 1239, \"rank\": 660, \"rankvar\": 1420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2140, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2662, \"cat-2\": \"Density: 19\", \"cat_2_index\": 125, \"group\": [1239.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27300_BALBc-1_X02_Y02_1315_692\", \"ini\": 685, \"clust\": 1792, \"rank\": 189, \"rankvar\": 564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2141, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 451, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1132, \"group\": [1796.0, 688.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27591_BALBc-1_X02_Y02_1319_767\", \"ini\": 684, \"clust\": 1181, \"rank\": 1317, \"rankvar\": 1174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2142, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 452, \"cat-2\": \"Density: 26\", \"cat_2_index\": 829, \"group\": [1189.0, 547.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27698_BALBc-1_X02_Y02_1320_253\", \"ini\": 683, \"clust\": 1596, \"rank\": 318, \"rankvar\": 107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2143, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2495, \"cat-2\": \"Density: 19\", \"cat_2_index\": 126, \"group\": [1602.0, 676.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27744_BALBc-1_X02_Y02_1320_827\", \"ini\": 682, \"clust\": 637, \"rank\": 1574, \"rankvar\": 1098, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2144, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 453, \"cat-2\": \"Density: 21\", \"cat_2_index\": 225, \"group\": [638.0, 273.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27802_BALBc-1_X02_Y02_1321_633\", \"ini\": 681, \"clust\": 1075, \"rank\": 1383, \"rankvar\": 1002, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2145, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 454, \"cat-2\": \"Density: 24\", \"cat_2_index\": 550, \"group\": [1075.0, 484.0, 142.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27977_BALBc-1_X02_Y02_1324_135\", \"ini\": 680, \"clust\": 546, \"rank\": 2498, \"rankvar\": 1326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2146, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1369, \"cat-2\": \"Density: 15\", \"cat_2_index\": 45, \"group\": [545.0, 218.0, 62.0, 15.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28001_BALBc-1_X02_Y02_1324_408\", \"ini\": 679, \"clust\": 2083, \"rank\": 1114, \"rankvar\": 1381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2147, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1668, \"cat-2\": \"Density: 13\", \"cat_2_index\": 20, \"group\": [2084.0, 828.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28058_BALBc-1_X02_Y02_1325_209\", \"ini\": 678, \"clust\": 1988, \"rank\": 1606, \"rankvar\": 1395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2148, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1983, \"cat-2\": \"Density: 18\", \"cat_2_index\": 100, \"group\": [1991.0, 782.0, 203.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28143_BALBc-1_X02_Y02_1326_180\", \"ini\": 677, \"clust\": 1953, \"rank\": 874, \"rankvar\": 2177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2149, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 455, \"cat-2\": \"Density: 15\", \"cat_2_index\": 46, \"group\": [1953.0, 756.0, 193.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28240_BALBc-1_X02_Y02_1327_430\", \"ini\": 676, \"clust\": 866, \"rank\": 2027, \"rankvar\": 1375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2150, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1984, \"cat-2\": \"Density: 12\", \"cat_2_index\": 10, \"group\": [870.0, 368.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28326_BALBc-1_X02_Y02_1328_311\", \"ini\": 675, \"clust\": 2172, \"rank\": 1344, \"rankvar\": 1484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2151, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1370, \"cat-2\": \"Density: 13\", \"cat_2_index\": 21, \"group\": [2175.0, 866.0, 224.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28355_BALBc-1_X02_Y02_1328_671\", \"ini\": 674, \"clust\": 596, \"rank\": 2192, \"rankvar\": 1550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2152, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2178, \"cat-2\": \"Density: 21\", \"cat_2_index\": 226, \"group\": [599.0, 259.0, 78.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28450_BALBc-1_X02_Y02_1329_795\", \"ini\": 673, \"clust\": 679, \"rank\": 2163, \"rankvar\": 985, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2153, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 456, \"cat-2\": \"Density: 21\", \"cat_2_index\": 227, \"group\": [677.0, 278.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28468_BALBc-1_X02_Y02_1329_935\", \"ini\": 672, \"clust\": 403, \"rank\": 2725, \"rankvar\": 2448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2154, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2179, \"cat-2\": \"Density: 17\", \"cat_2_index\": 82, \"group\": [402.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28590_BALBc-1_X02_Y02_1330_719\", \"ini\": 671, \"clust\": 370, \"rank\": 2340, \"rankvar\": 1672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2155, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2180, \"cat-2\": \"Density: 25\", \"cat_2_index\": 685, \"group\": [371.0, 151.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28625_BALBc-1_X02_Y02_1331_165\", \"ini\": 670, \"clust\": 2582, \"rank\": 1188, \"rankvar\": 78, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2156, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 628, \"cat-2\": \"Density: 14\", \"cat_2_index\": 32, \"group\": [2583.0, 1084.0, 282.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28658_BALBc-1_X02_Y02_1331_656\", \"ini\": 669, \"clust\": 1807, \"rank\": 441, \"rankvar\": 700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2157, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2181, \"cat-2\": \"Density: 23\", \"cat_2_index\": 426, \"group\": [1809.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28726_BALBc-1_X02_Y02_1332_561\", \"ini\": 668, \"clust\": 910, \"rank\": 2660, \"rankvar\": 2411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2158, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2663, \"cat-2\": \"Density: 19\", \"cat_2_index\": 127, \"group\": [909.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28748_BALBc-1_X02_Y02_1332_775\", \"ini\": 667, \"clust\": 2032, \"rank\": 1034, \"rankvar\": 735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2159, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 457, \"cat-2\": \"Density: 20\", \"cat_2_index\": 175, \"group\": [2033.0, 804.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28827_BALBc-1_X02_Y02_1333_879\", \"ini\": 666, \"clust\": 221, \"rank\": 891, \"rankvar\": 889, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2160, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2182, \"cat-2\": \"Density: 18\", \"cat_2_index\": 101, \"group\": [223.0, 111.0, 36.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28880_BALBc-1_X02_Y02_1334_638\", \"ini\": 665, \"clust\": 1450, \"rank\": 411, \"rankvar\": 134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2161, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 458, \"cat-2\": \"Density: 20\", \"cat_2_index\": 176, \"group\": [1451.0, 606.0, 163.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29002_BALBc-1_X02_Y02_1336_613\", \"ini\": 664, \"clust\": 0, \"rank\": 1753, \"rankvar\": 1390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2162, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 459, \"cat-2\": \"Density: 19\", \"cat_2_index\": 128, \"group\": [3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29036_BALBc-1_X02_Y02_1337_280\", \"ini\": 663, \"clust\": 190, \"rank\": 1897, \"rankvar\": 2573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2163, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1371, \"cat-2\": \"Density: 13\", \"cat_2_index\": 22, \"group\": [188.0, 93.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29306_BALBc-1_X02_Y02_135_188\", \"ini\": 662, \"clust\": 573, \"rank\": 1965, \"rankvar\": 1659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2164, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1372, \"cat-2\": \"Density: 23\", \"cat_2_index\": 427, \"group\": [572.0, 239.0, 70.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29325_BALBc-1_X02_Y02_135_44\", \"ini\": 661, \"clust\": 1250, \"rank\": 499, \"rankvar\": 1148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2165, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1373, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1690, \"group\": [1249.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29381_BALBc-1_X02_Y02_136_322\", \"ini\": 660, \"clust\": 978, \"rank\": 2740, \"rankvar\": 2393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2166, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2664, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1428, \"group\": [979.0, 410.0, 112.0, 30.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29406_BALBc-1_X02_Y02_136_579\", \"ini\": 659, \"clust\": 169, \"rank\": 2471, \"rankvar\": 2334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2167, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 460, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2110, \"group\": [169.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29538_BALBc-1_X02_Y02_138_553\", \"ini\": 658, \"clust\": 1142, \"rank\": 834, \"rankvar\": 136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2168, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 461, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2272, \"group\": [1143.0, 526.0, 154.0, 43.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29589_BALBc-1_X02_Y02_139_229\", \"ini\": 657, \"clust\": 83, \"rank\": 2788, \"rankvar\": 2797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2169, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1374, \"cat-2\": \"Density: 22\", \"cat_2_index\": 313, \"group\": [85.0, 53.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29755_BALBc-1_X02_Y02_140_609\", \"ini\": 656, \"clust\": 1913, \"rank\": 1476, \"rankvar\": 870, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2170, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1375, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2008, \"group\": [1914.0, 731.0, 188.0, 49.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29945_BALBc-1_X02_Y02_143_270\", \"ini\": 655, \"clust\": 2101, \"rank\": 1378, \"rankvar\": 2581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2171, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1552, \"cat-2\": \"Density: 23\", \"cat_2_index\": 428, \"group\": [2101.0, 832.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29975_BALBc-1_X02_Y02_143_638\", \"ini\": 654, \"clust\": 1165, \"rank\": 1556, \"rankvar\": 1523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2172, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1376, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2192, \"group\": [1166.0, 538.0, 157.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29979_BALBc-1_X02_Y02_143_672\", \"ini\": 653, \"clust\": 1151, \"rank\": 1072, \"rankvar\": 1113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2173, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1377, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2009, \"group\": [1154.0, 531.0, 155.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30142_BALBc-1_X02_Y02_145_833\", \"ini\": 652, \"clust\": 122, \"rank\": 2425, \"rankvar\": 2603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2174, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1378, \"cat-2\": \"Density: 26\", \"cat_2_index\": 830, \"group\": [121.0, 71.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30179_BALBc-1_X02_Y02_146_479\", \"ini\": 651, \"clust\": 889, \"rank\": 2162, \"rankvar\": 1789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2175, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 860, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1429, \"group\": [890.0, 374.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30188_BALBc-1_X02_Y02_146_532\", \"ini\": 650, \"clust\": 959, \"rank\": 659, \"rankvar\": 783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2176, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1379, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1788, \"group\": [960.0, 399.0, 108.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30434_BALBc-1_X02_Y02_149_94\", \"ini\": 649, \"clust\": 518, \"rank\": 2309, \"rankvar\": 2677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2177, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 713, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1284, \"group\": [516.0, 210.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30646_BALBc-1_X02_Y02_151_872\", \"ini\": 648, \"clust\": 1642, \"rank\": 86, \"rankvar\": 50, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2178, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1380, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1285, \"group\": [1648.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30861_BALBc-1_X02_Y02_154_562\", \"ini\": 647, \"clust\": 578, \"rank\": 1506, \"rankvar\": 993, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2179, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1381, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2010, \"group\": [579.0, 243.0, 71.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30899_BALBc-1_X02_Y02_155_136\", \"ini\": 646, \"clust\": 554, \"rank\": 2547, \"rankvar\": 1411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2180, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 462, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1133, \"group\": [557.0, 230.0, 67.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30927_BALBc-1_X02_Y02_155_518\", \"ini\": 645, \"clust\": 599, \"rank\": 1642, \"rankvar\": 670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2181, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1382, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1551, \"group\": [602.0, 262.0, 79.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31105_BALBc-1_X02_Y02_157_714\", \"ini\": 644, \"clust\": 56, \"rank\": 2314, \"rankvar\": 1888, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2182, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1383, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1899, \"group\": [56.0, 36.0, 13.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31639_BALBc-1_X02_Y02_164_25\", \"ini\": 643, \"clust\": 2076, \"rank\": 1451, \"rankvar\": 2075, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1384, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1286, \"group\": [2080.0, 826.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31675_BALBc-1_X02_Y02_164_786\", \"ini\": 642, \"clust\": 915, \"rank\": 1531, \"rankvar\": 1403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2184, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1385, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1287, \"group\": [916.0, 376.0, 101.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31758_BALBc-1_X02_Y02_165_987\", \"ini\": 641, \"clust\": 32, \"rank\": 1926, \"rankvar\": 2371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2185, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1386, \"cat-2\": \"Density: 18\", \"cat_2_index\": 102, \"group\": [32.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31767_BALBc-1_X02_Y02_166_176\", \"ini\": 640, \"clust\": 1782, \"rank\": 497, \"rankvar\": 583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2186, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1387, \"cat-2\": \"Density: 22\", \"cat_2_index\": 314, \"group\": [1785.0, 687.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31803_BALBc-1_X02_Y02_166_611\", \"ini\": 639, \"clust\": 742, \"rank\": 1980, \"rankvar\": 607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2187, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 463, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1789, \"group\": [745.0, 304.0, 86.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31929_BALBc-1_X02_Y02_168_588\", \"ini\": 638, \"clust\": 1159, \"rank\": 1691, \"rankvar\": 1152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2188, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1388, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1691, \"group\": [1160.0, 535.0, 156.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31935_BALBc-1_X02_Y02_168_629\", \"ini\": 637, \"clust\": 123, \"rank\": 2391, \"rankvar\": 2133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2189, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1389, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1790, \"group\": [122.0, 71.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32146_BALBc-1_X02_Y02_170_52\", \"ini\": 636, \"clust\": 2808, \"rank\": 2342, \"rankvar\": 2378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2190, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 714, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1430, \"group\": [2806.0, 1218.0, 323.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32156_BALBc-1_X02_Y02_170_685\", \"ini\": 635, \"clust\": 1801, \"rank\": 339, \"rankvar\": 102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2191, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1390, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1791, \"group\": [1802.0, 692.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32358_BALBc-1_X02_Y02_173_739\", \"ini\": 634, \"clust\": 147, \"rank\": 2341, \"rankvar\": 2776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2192, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1391, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1552, \"group\": [143.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32397_BALBc-1_X02_Y02_174_285\", \"ini\": 633, \"clust\": 775, \"rank\": 1207, \"rankvar\": 2488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2193, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 715, \"cat-2\": \"Density: 21\", \"cat_2_index\": 228, \"group\": [775.0, 317.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32509_BALBc-1_X02_Y02_175_663\", \"ini\": 632, \"clust\": 117, \"rank\": 1421, \"rankvar\": 2640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2194, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1392, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1792, \"group\": [120.0, 70.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32671_BALBc-1_X02_Y02_177_97\", \"ini\": 631, \"clust\": 90, \"rank\": 2769, \"rankvar\": 2665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2195, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 716, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1431, \"group\": [88.0, 55.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32767_BALBc-1_X02_Y02_179_372\", \"ini\": 630, \"clust\": 950, \"rank\": 1560, \"rankvar\": 1192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2196, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2665, \"cat-2\": \"Density: 23\", \"cat_2_index\": 429, \"group\": [950.0, 392.0, 106.0, 27.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32865_BALBc-1_X02_Y02_18_566\", \"ini\": 629, \"clust\": 21, \"rank\": 968, \"rankvar\": 999, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2197, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1393, \"cat-2\": \"Density: 24\", \"cat_2_index\": 551, \"group\": [24.0, 17.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32892_BALBc-1_X02_Y02_18_931\", \"ini\": 628, \"clust\": 1547, \"rank\": 472, \"rankvar\": 552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2198, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1394, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1288, \"group\": [1547.0, 649.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33131_BALBc-1_X02_Y02_183_257\", \"ini\": 627, \"clust\": 1470, \"rank\": 842, \"rankvar\": 1556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2199, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1395, \"cat-2\": \"Density: 20\", \"cat_2_index\": 177, \"group\": [1471.0, 621.0, 170.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33364_BALBc-1_X02_Y02_186_477\", \"ini\": 626, \"clust\": 965, \"rank\": 1001, \"rankvar\": 9, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2200, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 861, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1432, \"group\": [968.0, 402.0, 109.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33643_BALBc-1_X02_Y02_19_416\", \"ini\": 625, \"clust\": 191, \"rank\": 1377, \"rankvar\": 2320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2201, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 862, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2111, \"group\": [189.0, 93.0, 30.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33747_BALBc-1_X02_Y02_190_764\", \"ini\": 624, \"clust\": 916, \"rank\": 1875, \"rankvar\": 1209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2202, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1396, \"cat-2\": \"Density: 27\", \"cat_2_index\": 981, \"group\": [917.0, 376.0, 101.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33886_BALBc-1_X02_Y02_192_590\", \"ini\": 623, \"clust\": 1563, \"rank\": 573, \"rankvar\": 1751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2203, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2666, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2112, \"group\": [1566.0, 660.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34093_BALBc-1_X02_Y02_195_549\", \"ini\": 622, \"clust\": 982, \"rank\": 2058, \"rankvar\": 2151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2204, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1397, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1289, \"group\": [981.0, 411.0, 113.0, 30.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34272_BALBc-1_X02_Y02_197_884\", \"ini\": 621, \"clust\": 863, \"rank\": 2644, \"rankvar\": 2537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2205, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 629, \"cat-2\": \"Density: 27\", \"cat_2_index\": 982, \"group\": [865.0, 364.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34519_BALBc-1_X02_Y02_200_308\", \"ini\": 620, \"clust\": 1728, \"rank\": 344, \"rankvar\": 645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2206, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2667, \"cat-2\": \"Density: 25\", \"cat_2_index\": 686, \"group\": [1735.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34660_BALBc-1_X02_Y02_202_393\", \"ini\": 619, \"clust\": 800, \"rank\": 1437, \"rankvar\": 1302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2207, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2668, \"cat-2\": \"Density: 25\", \"cat_2_index\": 687, \"group\": [803.0, 331.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34801_BALBc-1_X02_Y02_203_987\", \"ini\": 618, \"clust\": 2403, \"rank\": 2400, \"rankvar\": 2084, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2208, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1398, \"cat-2\": \"Density: 17\", \"cat_2_index\": 83, \"group\": [2410.0, 998.0, 263.0, 66.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34909_BALBc-1_X02_Y02_205_632\", \"ini\": 617, \"clust\": 67, \"rank\": 2663, \"rankvar\": 2804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2209, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1399, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2011, \"group\": [65.0, 42.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34936_BALBc-1_X02_Y02_205_931\", \"ini\": 616, \"clust\": 71, \"rank\": 2743, \"rankvar\": 2753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2210, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1400, \"cat-2\": \"Density: 26\", \"cat_2_index\": 831, \"group\": [72.0, 45.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35064_BALBc-1_X02_Y02_207_701\", \"ini\": 615, \"clust\": 1149, \"rank\": 1655, \"rankvar\": 1169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2211, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1401, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1692, \"group\": [1149.0, 528.0, 155.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35117_BALBc-1_X02_Y02_208_445\", \"ini\": 614, \"clust\": 1291, \"rank\": 923, \"rankvar\": 276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2212, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2669, \"cat-2\": \"Density: 26\", \"cat_2_index\": 832, \"group\": [1292.0, 565.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35215_BALBc-1_X02_Y02_209_729\", \"ini\": 613, \"clust\": 2009, \"rank\": 995, \"rankvar\": 388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2213, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1752, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1134, \"group\": [2009.0, 793.0, 207.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35344_BALBc-1_X02_Y02_210_512\", \"ini\": 612, \"clust\": 803, \"rank\": 904, \"rankvar\": 2173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2214, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2670, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1135, \"group\": [801.0, 331.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35379_BALBc-1_X02_Y02_211_205\", \"ini\": 611, \"clust\": 1474, \"rank\": 614, \"rankvar\": 301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2215, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1402, \"cat-2\": \"Density: 22\", \"cat_2_index\": 315, \"group\": [1477.0, 623.0, 170.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35409_BALBc-1_X02_Y02_211_663\", \"ini\": 610, \"clust\": 82, \"rank\": 2113, \"rankvar\": 1608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2216, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1403, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1553, \"group\": [95.0, 57.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35439_BALBc-1_X02_Y02_212_134\", \"ini\": 609, \"clust\": 2131, \"rank\": 335, \"rankvar\": 1738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2217, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1404, \"cat-2\": \"Density: 27\", \"cat_2_index\": 983, \"group\": [2130.0, 839.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35525_BALBc-1_X02_Y02_213_248\", \"ini\": 608, \"clust\": 2022, \"rank\": 1088, \"rankvar\": 1017, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2218, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1405, \"cat-2\": \"Density: 22\", \"cat_2_index\": 316, \"group\": [2023.0, 800.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35690_BALBc-1_X02_Y02_215_161\", \"ini\": 607, \"clust\": 2811, \"rank\": 1848, \"rankvar\": 1872, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2219, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1406, \"cat-2\": \"Density: 19\", \"cat_2_index\": 129, \"group\": [2812.0, 1219.0, 323.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36203_BALBc-1_X02_Y02_221_61\", \"ini\": 606, \"clust\": 2362, \"rank\": 858, \"rankvar\": 1734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2220, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 717, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1433, \"group\": [2363.0, 968.0, 251.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36421_BALBc-1_X02_Y02_224_50\", \"ini\": 605, \"clust\": 1037, \"rank\": 1645, \"rankvar\": 2183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2221, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2325, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1434, \"group\": [1038.0, 458.0, 129.0, 35.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36428_BALBc-1_X02_Y02_224_564\", \"ini\": 604, \"clust\": 1182, \"rank\": 877, \"rankvar\": 1222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2222, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2671, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1435, \"group\": [1182.0, 546.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36602_BALBc-1_X02_Y02_226_849\", \"ini\": 603, \"clust\": 885, \"rank\": 2308, \"rankvar\": 2501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2223, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1407, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1136, \"group\": [887.0, 373.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36662_BALBc-1_X02_Y02_227_672\", \"ini\": 602, \"clust\": 791, \"rank\": 1666, \"rankvar\": 954, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2224, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1753, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1436, \"group\": [796.0, 329.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37114_BALBc-1_X02_Y02_232_789\", \"ini\": 601, \"clust\": 295, \"rank\": 1294, \"rankvar\": 1353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2225, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1408, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1137, \"group\": [296.0, 125.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37225_BALBc-1_X02_Y02_234_543\", \"ini\": 600, \"clust\": 853, \"rank\": 2126, \"rankvar\": 2345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2226, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 464, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1138, \"group\": [856.0, 358.0, 99.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37303_BALBc-1_X02_Y02_235_622\", \"ini\": 599, \"clust\": 2591, \"rank\": 688, \"rankvar\": 243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2227, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2672, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1437, \"group\": [2590.0, 1090.0, 284.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37334_BALBc-1_X02_Y02_236_115\", \"ini\": 598, \"clust\": 113, \"rank\": 1716, \"rankvar\": 1615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2228, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1409, \"cat-2\": \"Density: 27\", \"cat_2_index\": 984, \"group\": [117.0, 68.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37540_BALBc-1_X02_Y02_238_897\", \"ini\": 597, \"clust\": 69, \"rank\": 2694, \"rankvar\": 2524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2229, \"cat-1\": \"Neighbor: CD3(+) other markers (-)\", \"cat_1_index\": 948, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1793, \"group\": [70.0, 44.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37573_BALBc-1_X02_Y02_239_298\", \"ini\": 596, \"clust\": 1183, \"rank\": 818, \"rankvar\": 1374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2230, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 718, \"cat-2\": \"Density: 24\", \"cat_2_index\": 552, \"group\": [1183.0, 546.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37791_BALBc-1_X02_Y02_241_389\", \"ini\": 595, \"clust\": 1002, \"rank\": 896, \"rankvar\": 1020, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2231, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2673, \"cat-2\": \"Density: 22\", \"cat_2_index\": 317, \"group\": [1003.0, 429.0, 120.0, 33.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37827_BALBc-1_X02_Y02_242_102\", \"ini\": 594, \"clust\": 1611, \"rank\": 68, \"rankvar\": 976, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2232, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1410, \"cat-2\": \"Density: 27\", \"cat_2_index\": 985, \"group\": [1631.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37931_BALBc-1_X02_Y02_243_508\", \"ini\": 593, \"clust\": 1598, \"rank\": 250, \"rankvar\": 10, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2233, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1411, \"cat-2\": \"Density: 26\", \"cat_2_index\": 833, \"group\": [1598.0, 676.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38145_BALBc-1_X02_Y02_246_163\", \"ini\": 592, \"clust\": 736, \"rank\": 2399, \"rankvar\": 575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2234, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1412, \"cat-2\": \"Density: 20\", \"cat_2_index\": 178, \"group\": [737.0, 299.0, 84.0, 22.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38443_BALBc-1_X02_Y02_25_159\", \"ini\": 591, \"clust\": 2251, \"rank\": 1874, \"rankvar\": 543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2235, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2674, \"cat-2\": \"Density: 20\", \"cat_2_index\": 179, \"group\": [2256.0, 916.0, 239.0, 60.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38529_BALBc-1_X02_Y02_250_569\", \"ini\": 590, \"clust\": 2634, \"rank\": 603, \"rankvar\": 744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2236, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2675, \"cat-2\": \"Density: 26\", \"cat_2_index\": 834, \"group\": [2635.0, 1110.0, 288.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38579_BALBc-1_X02_Y02_251_215\", \"ini\": 589, \"clust\": 2168, \"rank\": 2528, \"rankvar\": 2613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2237, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1585, \"cat-2\": \"Density: 23\", \"cat_2_index\": 430, \"group\": [2167.0, 860.0, 223.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38688_BALBc-1_X02_Y02_252_435\", \"ini\": 588, \"clust\": 849, \"rank\": 2236, \"rankvar\": 2757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2238, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2676, \"cat-2\": \"Density: 22\", \"cat_2_index\": 318, \"group\": [849.0, 357.0, 99.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38696_BALBc-1_X02_Y02_252_541\", \"ini\": 587, \"clust\": 1018, \"rank\": 1153, \"rankvar\": 363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2239, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 927, \"cat-2\": \"Density: 26\", \"cat_2_index\": 835, \"group\": [1021.0, 443.0, 125.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38727_BALBc-1_X02_Y02_252_932\", \"ini\": 586, \"clust\": 1840, \"rank\": 560, \"rankvar\": 156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2240, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1413, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1554, \"group\": [1843.0, 699.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38830_BALBc-1_X02_Y02_254_340\", \"ini\": 585, \"clust\": 1084, \"rank\": 465, \"rankvar\": 773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2241, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2677, \"cat-2\": \"Density: 26\", \"cat_2_index\": 836, \"group\": [1083.0, 489.0, 144.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38872_BALBc-1_X02_Y02_254_893\", \"ini\": 584, \"clust\": 894, \"rank\": 2377, \"rankvar\": 2239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2242, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1414, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1555, \"group\": [894.0, 374.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38912_BALBc-1_X02_Y02_255_475\", \"ini\": 583, \"clust\": 799, \"rank\": 1315, \"rankvar\": 1072, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2243, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1415, \"cat-2\": \"Density: 25\", \"cat_2_index\": 688, \"group\": [799.0, 331.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39046_BALBc-1_X02_Y02_257_270\", \"ini\": 582, \"clust\": 2104, \"rank\": 520, \"rankvar\": 1087, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2244, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 719, \"cat-2\": \"Density: 21\", \"cat_2_index\": 229, \"group\": [2103.0, 833.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39285_BALBc-1_X02_Y02_26_589\", \"ini\": 581, \"clust\": 1939, \"rank\": 1158, \"rankvar\": 347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2245, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1416, \"cat-2\": \"Density: 27\", \"cat_2_index\": 986, \"group\": [1942.0, 749.0, 192.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39521_BALBc-1_X02_Y02_262_59\", \"ini\": 580, \"clust\": 545, \"rank\": 2020, \"rankvar\": 1993, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2246, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1417, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1556, \"group\": [547.0, 220.0, 63.0, 15.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39680_BALBc-1_X02_Y02_264_831\", \"ini\": 579, \"clust\": 1985, \"rank\": 1964, \"rankvar\": 1596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2247, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1418, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1139, \"group\": [1987.0, 779.0, 203.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39683_BALBc-1_X02_Y02_264_853\", \"ini\": 578, \"clust\": 2045, \"rank\": 813, \"rankvar\": 1407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2248, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1419, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1557, \"group\": [2042.0, 806.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39823_BALBc-1_X02_Y02_266_650\", \"ini\": 577, \"clust\": 64, \"rank\": 2537, \"rankvar\": 2270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2249, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2678, \"cat-2\": \"Density: 27\", \"cat_2_index\": 987, \"group\": [69.0, 43.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40170_BALBc-1_X02_Y02_270_307\", \"ini\": 576, \"clust\": 512, \"rank\": 1502, \"rankvar\": 1073, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2250, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 465, \"cat-2\": \"Density: 22\", \"cat_2_index\": 319, \"group\": [512.0, 208.0, 59.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40172_BALBc-1_X02_Y02_270_325\", \"ini\": 575, \"clust\": 2814, \"rank\": 1769, \"rankvar\": 1728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2251, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2679, \"cat-2\": \"Density: 22\", \"cat_2_index\": 320, \"group\": [2817.0, 1223.0, 324.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40222_BALBc-1_X02_Y02_270_961\", \"ini\": 574, \"clust\": 750, \"rank\": 2194, \"rankvar\": 1675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2252, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2326, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1140, \"group\": [751.0, 309.0, 87.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40524_BALBc-1_X02_Y02_275_413\", \"ini\": 573, \"clust\": 1884, \"rank\": 461, \"rankvar\": 677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2253, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2680, \"cat-2\": \"Density: 19\", \"cat_2_index\": 130, \"group\": [1884.0, 716.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40563_BALBc-1_X02_Y02_275_847\", \"ini\": 572, \"clust\": 1951, \"rank\": 1102, \"rankvar\": 2312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2254, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 466, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1290, \"group\": [1954.0, 756.0, 193.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40879_BALBc-1_X02_Y02_28_120\", \"ini\": 571, \"clust\": 2094, \"rank\": 427, \"rankvar\": 2110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2255, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2681, \"cat-2\": \"Density: 21\", \"cat_2_index\": 230, \"group\": [2094.0, 831.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41079_BALBc-1_X02_Y02_281_863\", \"ini\": 570, \"clust\": 230, \"rank\": 1127, \"rankvar\": 1363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2256, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1420, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1438, \"group\": [230.0, 116.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41088_BALBc-1_X02_Y02_281_933\", \"ini\": 569, \"clust\": 1046, \"rank\": 667, \"rankvar\": 1391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2257, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2327, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2012, \"group\": [1047.0, 465.0, 133.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41109_BALBc-1_X02_Y02_282_19\", \"ini\": 568, \"clust\": 2102, \"rank\": 726, \"rankvar\": 1319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2258, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1421, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1291, \"group\": [2106.0, 833.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41853_BALBc-1_X02_Y02_291_291\", \"ini\": 567, \"clust\": 1384, \"rank\": 1532, \"rankvar\": 962, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2259, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1669, \"cat-2\": \"Density: 21\", \"cat_2_index\": 231, \"group\": [1408.0, 585.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41921_BALBc-1_X02_Y02_292_234\", \"ini\": 566, \"clust\": 1592, \"rank\": 613, \"rankvar\": 45, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2260, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2682, \"cat-2\": \"Density: 26\", \"cat_2_index\": 837, \"group\": [1593.0, 675.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41969_BALBc-1_X02_Y02_292_826\", \"ini\": 565, \"clust\": 940, \"rank\": 1548, \"rankvar\": 1284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2261, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1422, \"cat-2\": \"Density: 27\", \"cat_2_index\": 988, \"group\": [941.0, 385.0, 103.0, 26.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42255_BALBc-1_X02_Y02_296_91\", \"ini\": 564, \"clust\": 2117, \"rank\": 412, \"rankvar\": 2004, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2262, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1423, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1439, \"group\": [2118.0, 834.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42361_BALBc-1_X02_Y02_298_51\", \"ini\": 563, \"clust\": 1144, \"rank\": 1720, \"rankvar\": 673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2263, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1553, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1440, \"group\": [1151.0, 529.0, 155.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42376_BALBc-1_X02_Y02_298_688\", \"ini\": 562, \"clust\": 420, \"rank\": 2276, \"rankvar\": 1917, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2264, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1754, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1292, \"group\": [420.0, 158.0, 43.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42549_BALBc-1_X02_Y02_30_717\", \"ini\": 561, \"clust\": 132, \"rank\": 2639, \"rankvar\": 2812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2265, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1424, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1558, \"group\": [130.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42623_BALBc-1_X02_Y02_300_742\", \"ini\": 560, \"clust\": 828, \"rank\": 2407, \"rankvar\": 2329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2266, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1755, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1293, \"group\": [828.0, 345.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42724_BALBc-1_X02_Y02_301_912\", \"ini\": 559, \"clust\": 1045, \"rank\": 642, \"rankvar\": 1875, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2267, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1425, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2013, \"group\": [1048.0, 465.0, 133.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43016_BALBc-1_X02_Y02_305_789\", \"ini\": 558, \"clust\": 150, \"rank\": 2686, \"rankvar\": 2750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2268, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2683, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1141, \"group\": [151.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43073_BALBc-1_X02_Y02_306_759\", \"ini\": 557, \"clust\": 2047, \"rank\": 444, \"rankvar\": 1609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2269, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2684, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1142, \"group\": [2049.0, 807.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43104_BALBc-1_X02_Y02_307_25\", \"ini\": 556, \"clust\": 1882, \"rank\": 624, \"rankvar\": 133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2270, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2461, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1559, \"group\": [1885.0, 717.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43260_BALBc-1_X02_Y02_309_581\", \"ini\": 555, \"clust\": 487, \"rank\": 2054, \"rankvar\": 1889, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2271, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2685, \"cat-2\": \"Density: 23\", \"cat_2_index\": 431, \"group\": [487.0, 188.0, 50.0, 13.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43563_BALBc-1_X02_Y02_312_481\", \"ini\": 554, \"clust\": 762, \"rank\": 871, \"rankvar\": 1185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2272, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2686, \"cat-2\": \"Density: 23\", \"cat_2_index\": 432, \"group\": [761.0, 314.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43574_BALBc-1_X02_Y02_312_648\", \"ini\": 553, \"clust\": 70, \"rank\": 2703, \"rankvar\": 2631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2273, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2687, \"cat-2\": \"Density: 25\", \"cat_2_index\": 689, \"group\": [71.0, 44.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43750_BALBc-1_X02_Y02_315_261\", \"ini\": 552, \"clust\": 969, \"rank\": 1793, \"rankvar\": 681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2274, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1670, \"cat-2\": \"Density: 25\", \"cat_2_index\": 690, \"group\": [970.0, 404.0, 110.0, 29.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43996_BALBc-1_X02_Y02_318_328\", \"ini\": 551, \"clust\": 485, \"rank\": 1952, \"rankvar\": 924, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2275, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2688, \"cat-2\": \"Density: 25\", \"cat_2_index\": 691, \"group\": [488.0, 189.0, 51.0, 13.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44586_BALBc-1_X02_Y02_324_940\", \"ini\": 550, \"clust\": 1690, \"rank\": 28, \"rankvar\": 211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2276, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2328, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1794, \"group\": [1690.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44663_BALBc-1_X02_Y02_326_112\", \"ini\": 549, \"clust\": 2096, \"rank\": 868, \"rankvar\": 1958, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2277, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1426, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1294, \"group\": [2097.0, 831.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44734_BALBc-1_X02_Y02_326_893\", \"ini\": 548, \"clust\": 1753, \"rank\": 34, \"rankvar\": 436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2278, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1427, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2193, \"group\": [1751.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44795_BALBc-1_X02_Y02_327_686\", \"ini\": 547, \"clust\": 108, \"rank\": 2161, \"rankvar\": 1953, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2279, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2689, \"cat-2\": \"Density: 26\", \"cat_2_index\": 838, \"group\": [113.0, 65.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44797_BALBc-1_X02_Y02_327_702\", \"ini\": 546, \"clust\": 2588, \"rank\": 1175, \"rankvar\": 99, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2280, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2690, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1295, \"group\": [2592.0, 1092.0, 284.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44833_BALBc-1_X02_Y02_328_182\", \"ini\": 545, \"clust\": 2790, \"rank\": 2813, \"rankvar\": 2799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2281, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1586, \"cat-2\": \"Density: 25\", \"cat_2_index\": 692, \"group\": [2791.0, 1206.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44890_BALBc-1_X02_Y02_328_742\", \"ini\": 544, \"clust\": 1958, \"rank\": 1228, \"rankvar\": 795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2282, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1428, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1693, \"group\": [1958.0, 760.0, 195.0, 51.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45097_BALBc-1_X02_Y02_330_51\", \"ini\": 543, \"clust\": 2660, \"rank\": 2167, \"rankvar\": 1915, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2283, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2462, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1143, \"group\": [2664.0, 1131.0, 297.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45134_BALBc-1_X02_Y02_330_922\", \"ini\": 542, \"clust\": 2028, \"rank\": 689, \"rankvar\": 1176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2284, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1429, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2273, \"group\": [2029.0, 803.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45153_BALBc-1_X02_Y02_331_217\", \"ini\": 541, \"clust\": 2139, \"rank\": 455, \"rankvar\": 546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2285, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1587, \"cat-2\": \"Density: 22\", \"cat_2_index\": 321, \"group\": [2140.0, 842.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45435_BALBc-1_X02_Y02_334_951\", \"ini\": 540, \"clust\": 2718, \"rank\": 2606, \"rankvar\": 2735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2286, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2329, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1795, \"group\": [2716.0, 1167.0, 312.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45581_BALBc-1_X02_Y02_336_819\", \"ini\": 539, \"clust\": 713, \"rank\": 2520, \"rankvar\": 2065, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2287, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 467, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1560, \"group\": [715.0, 292.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45601_BALBc-1_X02_Y02_337_15\", \"ini\": 538, \"clust\": 1023, \"rank\": 1295, \"rankvar\": 1269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2288, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1554, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1796, \"group\": [1023.0, 444.0, 125.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45622_BALBc-1_X02_Y02_337_558\", \"ini\": 537, \"clust\": 1565, \"rank\": 216, \"rankvar\": 1088, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2289, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2691, \"cat-2\": \"Density: 22\", \"cat_2_index\": 322, \"group\": [1563.0, 660.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45630_BALBc-1_X02_Y02_337_608\", \"ini\": 536, \"clust\": 1387, \"rank\": 1156, \"rankvar\": 1490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2290, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1430, \"cat-2\": \"Density: 25\", \"cat_2_index\": 693, \"group\": [1386.0, 580.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45716_BALBc-1_X02_Y02_338_787\", \"ini\": 535, \"clust\": 140, \"rank\": 2566, \"rankvar\": 2736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2291, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1431, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1694, \"group\": [140.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45734_BALBc-1_X02_Y02_338_973\", \"ini\": 534, \"clust\": 2644, \"rank\": 911, \"rankvar\": 2152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2292, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2330, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1296, \"group\": [2645.0, 1119.0, 291.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46044_BALBc-1_X02_Y02_342_196\", \"ini\": 533, \"clust\": 2228, \"rank\": 1138, \"rankvar\": 2514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2293, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1756, \"cat-2\": \"Density: 23\", \"cat_2_index\": 433, \"group\": [2227.0, 904.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46376_BALBc-1_X02_Y02_346_38\", \"ini\": 532, \"clust\": 1704, \"rank\": 29, \"rankvar\": 315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2294, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1671, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1695, \"group\": [1703.0, 679.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46496_BALBc-1_X02_Y02_347_862\", \"ini\": 531, \"clust\": 72, \"rank\": 2821, \"rankvar\": 2786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2295, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1432, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2113, \"group\": [73.0, 45.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46558_BALBc-1_X02_Y02_348_812\", \"ini\": 530, \"clust\": 967, \"rank\": 1015, \"rankvar\": 238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2296, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 468, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1797, \"group\": [967.0, 401.0, 109.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46798_BALBc-1_X02_Y02_350_899\", \"ini\": 529, \"clust\": 1214, \"rank\": 388, \"rankvar\": 1137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2297, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1433, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2194, \"group\": [1210.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46832_BALBc-1_X02_Y02_351_395\", \"ini\": 528, \"clust\": 1280, \"rank\": 696, \"rankvar\": 778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2298, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2692, \"cat-2\": \"Density: 18\", \"cat_2_index\": 103, \"group\": [1285.0, 562.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47131_BALBc-1_X02_Y02_355_343\", \"ini\": 527, \"clust\": 503, \"rank\": 2015, \"rankvar\": 352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2299, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1672, \"cat-2\": \"Density: 18\", \"cat_2_index\": 104, \"group\": [506.0, 203.0, 57.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47280_BALBc-1_X02_Y02_357_240\", \"ini\": 526, \"clust\": 806, \"rank\": 1544, \"rankvar\": 534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2300, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 469, \"cat-2\": \"Density: 23\", \"cat_2_index\": 434, \"group\": [806.0, 333.0, 94.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47378_BALBc-1_X02_Y02_358_713\", \"ini\": 525, \"clust\": 1571, \"rank\": 576, \"rankvar\": 438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2301, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1434, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2014, \"group\": [1571.0, 664.0, 179.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47461_BALBc-1_X02_Y02_359_961\", \"ini\": 524, \"clust\": 1379, \"rank\": 630, \"rankvar\": 1099, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2302, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1985, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1798, \"group\": [1379.0, 578.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47870_BALBc-1_X02_Y02_364_646\", \"ini\": 523, \"clust\": 852, \"rank\": 1462, \"rankvar\": 2575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2303, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 470, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1441, \"group\": [853.0, 358.0, 99.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47876_BALBc-1_X02_Y02_364_679\", \"ini\": 522, \"clust\": 1438, \"rank\": 1120, \"rankvar\": 599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2304, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2693, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1900, \"group\": [1438.0, 600.0, 161.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47961_BALBc-1_X02_Y02_365_605\", \"ini\": 521, \"clust\": 845, \"rank\": 2233, \"rankvar\": 1982, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2305, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2694, \"cat-2\": \"Density: 26\", \"cat_2_index\": 839, \"group\": [846.0, 354.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48010_BALBc-1_X02_Y02_366_148\", \"ini\": 520, \"clust\": 89, \"rank\": 2793, \"rankvar\": 2823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2306, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1435, \"cat-2\": \"Density: 25\", \"cat_2_index\": 694, \"group\": [94.0, 56.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48086_BALBc-1_X02_Y02_367_266\", \"ini\": 519, \"clust\": 2161, \"rank\": 2218, \"rankvar\": 2396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2307, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1673, \"cat-2\": \"Density: 21\", \"cat_2_index\": 232, \"group\": [2162.0, 856.0, 222.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48310_BALBc-1_X02_Y02_369_971\", \"ini\": 518, \"clust\": 2715, \"rank\": 2298, \"rankvar\": 2256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2308, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2331, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1297, \"group\": [2718.0, 1169.0, 312.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48337_BALBc-1_X02_Y02_37_334\", \"ini\": 517, \"clust\": 49, \"rank\": 1951, \"rankvar\": 1652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2309, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2695, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1298, \"group\": [47.0, 29.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48352_BALBc-1_X02_Y02_37_533\", \"ini\": 516, \"clust\": 948, \"rank\": 1744, \"rankvar\": 397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2310, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1436, \"cat-2\": \"Density: 27\", \"cat_2_index\": 989, \"group\": [951.0, 393.0, 106.0, 27.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48474_BALBc-1_X02_Y02_371_45\", \"ini\": 515, \"clust\": 1431, \"rank\": 1298, \"rankvar\": 1068, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2311, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1674, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1799, \"group\": [1434.0, 598.0, 161.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48542_BALBc-1_X02_Y02_372_378\", \"ini\": 514, \"clust\": 1003, \"rank\": 446, \"rankvar\": 873, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2312, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2696, \"cat-2\": \"Density: 16\", \"cat_2_index\": 63, \"group\": [1004.0, 429.0, 120.0, 33.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48653_BALBc-1_X02_Y02_373_710\", \"ini\": 513, \"clust\": 1132, \"rank\": 1475, \"rankvar\": 741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2313, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1437, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2114, \"group\": [1133.0, 520.0, 152.0, 43.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48742_BALBc-1_X02_Y02_374_766\", \"ini\": 512, \"clust\": 422, \"rank\": 1678, \"rankvar\": 918, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2314, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1438, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2274, \"group\": [423.0, 161.0, 43.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48757_BALBc-1_X02_Y02_375_1002\", \"ini\": 511, \"clust\": 1197, \"rank\": 391, \"rankvar\": 1143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2315, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1439, \"cat-2\": \"Density: 23\", \"cat_2_index\": 435, \"group\": [1195.0, 548.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48766_BALBc-1_X02_Y02_375_206\", \"ini\": 510, \"clust\": 2245, \"rank\": 2212, \"rankvar\": 2335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2316, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1757, \"cat-2\": \"Density: 25\", \"cat_2_index\": 695, \"group\": [2243.0, 908.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49046_BALBc-1_X02_Y02_378_827\", \"ini\": 509, \"clust\": 787, \"rank\": 1314, \"rankvar\": 1460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2317, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1440, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2115, \"group\": [787.0, 326.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49131_BALBc-1_X02_Y02_379_932\", \"ini\": 508, \"clust\": 55, \"rank\": 1981, \"rankvar\": 1442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2318, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1441, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2015, \"group\": [58.0, 38.0, 13.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49273_BALBc-1_X02_Y02_380_907\", \"ini\": 507, \"clust\": 18, \"rank\": 1255, \"rankvar\": 1238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2319, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1442, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2275, \"group\": [21.0, 16.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49542_BALBc-1_X02_Y02_384_270\", \"ini\": 506, \"clust\": 523, \"rank\": 2141, \"rankvar\": 2201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2320, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 720, \"cat-2\": \"Density: 21\", \"cat_2_index\": 233, \"group\": [522.0, 211.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49696_BALBc-1_X02_Y02_386_104\", \"ini\": 505, \"clust\": 559, \"rank\": 2434, \"rankvar\": 2229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2321, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 721, \"cat-2\": \"Density: 26\", \"cat_2_index\": 840, \"group\": [560.0, 232.0, 68.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49859_BALBc-1_X02_Y02_387_719\", \"ini\": 504, \"clust\": 663, \"rank\": 2200, \"rankvar\": 894, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2322, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1443, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2276, \"group\": [675.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49926_BALBc-1_X02_Y02_388_683\", \"ini\": 503, \"clust\": 789, \"rank\": 1486, \"rankvar\": 1801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2323, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 471, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2116, \"group\": [790.0, 328.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49970_BALBc-1_X02_Y02_389_234\", \"ini\": 502, \"clust\": 1207, \"rank\": 622, \"rankvar\": 647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2324, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 722, \"cat-2\": \"Density: 24\", \"cat_2_index\": 553, \"group\": [1215.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50081_BALBc-1_X02_Y02_39_906\", \"ini\": 501, \"clust\": 1759, \"rank\": 135, \"rankvar\": 398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2325, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1444, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1561, \"group\": [1765.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50288_BALBc-1_X02_Y02_392_752\", \"ini\": 500, \"clust\": 1837, \"rank\": 647, \"rankvar\": 149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2326, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1445, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2409, \"group\": [1840.0, 697.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50373_BALBc-1_X02_Y02_393_952\", \"ini\": 499, \"clust\": 1314, \"rank\": 361, \"rankvar\": 88, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2327, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 472, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1901, \"group\": [1315.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50545_BALBc-1_X02_Y02_396_299\", \"ini\": 498, \"clust\": 1842, \"rank\": 845, \"rankvar\": 339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2328, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1675, \"cat-2\": \"Density: 21\", \"cat_2_index\": 234, \"group\": [1842.0, 698.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50577_BALBc-1_X02_Y02_396_66\", \"ini\": 497, \"clust\": 1935, \"rank\": 1170, \"rankvar\": 2387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2329, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2463, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1562, \"group\": [1937.0, 744.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50639_BALBc-1_X02_Y02_397_506\", \"ini\": 496, \"clust\": 820, \"rank\": 2676, \"rankvar\": 2455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2330, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2697, \"cat-2\": \"Density: 20\", \"cat_2_index\": 180, \"group\": [820.0, 341.0, 96.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50667_BALBc-1_X02_Y02_397_837\", \"ini\": 495, \"clust\": 423, \"rank\": 1910, \"rankvar\": 1358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2331, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1446, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2117, \"group\": [424.0, 162.0, 43.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50671_BALBc-1_X02_Y02_397_871\", \"ini\": 494, \"clust\": 1821, \"rank\": 300, \"rankvar\": 766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2332, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1447, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2016, \"group\": [1824.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50773_BALBc-1_X02_Y02_399_185\", \"ini\": 493, \"clust\": 1497, \"rank\": 582, \"rankvar\": 2068, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2333, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1758, \"cat-2\": \"Density: 26\", \"cat_2_index\": 841, \"group\": [1496.0, 629.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50866_BALBc-1_X02_Y02_4_371\", \"ini\": 492, \"clust\": 2782, \"rank\": 2804, \"rankvar\": 2410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2334, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1676, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1563, \"group\": [2781.0, 1203.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51013_BALBc-1_X02_Y02_400_654\", \"ini\": 491, \"clust\": 922, \"rank\": 2635, \"rankvar\": 2656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2335, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 473, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2118, \"group\": [922.0, 379.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51178_BALBc-1_X02_Y02_402_800\", \"ini\": 490, \"clust\": 907, \"rank\": 2655, \"rankvar\": 2380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2336, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 474, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2538, \"group\": [906.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51223_BALBc-1_X02_Y02_403_448\", \"ini\": 489, \"clust\": 538, \"rank\": 1392, \"rankvar\": 1454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2337, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 630, \"cat-2\": \"Density: 18\", \"cat_2_index\": 105, \"group\": [538.0, 216.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51252_BALBc-1_X02_Y02_403_925\", \"ini\": 488, \"clust\": 201, \"rank\": 797, \"rankvar\": 317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2338, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 475, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2345, \"group\": [201.0, 101.0, 31.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51314_BALBc-1_X02_Y02_404_700\", \"ini\": 487, \"clust\": 463, \"rank\": 1803, \"rankvar\": 1257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2339, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1570, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2017, \"group\": [472.0, 180.0, 47.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51733_BALBc-1_X02_Y02_409_627\", \"ini\": 486, \"clust\": 783, \"rank\": 1379, \"rankvar\": 1768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2340, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 476, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1800, \"group\": [783.0, 324.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51815_BALBc-1_X02_Y02_41_743\", \"ini\": 485, \"clust\": 1859, \"rank\": 237, \"rankvar\": 906, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2341, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1448, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1801, \"group\": [1860.0, 703.0, 182.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51858_BALBc-1_X02_Y02_410_359\", \"ini\": 484, \"clust\": 2024, \"rank\": 810, \"rankvar\": 961, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2342, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 631, \"cat-2\": \"Density: 16\", \"cat_2_index\": 64, \"group\": [2028.0, 802.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51875_BALBc-1_X02_Y02_410_48\", \"ini\": 483, \"clust\": 2203, \"rank\": 1779, \"rankvar\": 1372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2343, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1677, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1564, \"group\": [2204.0, 888.0, 232.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51967_BALBc-1_X02_Y02_411_743\", \"ini\": 482, \"clust\": 2700, \"rank\": 1871, \"rankvar\": 1044, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2344, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1571, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2346, \"group\": [2699.0, 1154.0, 308.0, 78.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52455_BALBc-1_X02_Y02_417_999\", \"ini\": 481, \"clust\": 1361, \"rank\": 897, \"rankvar\": 1250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2345, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1449, \"cat-2\": \"Density: 22\", \"cat_2_index\": 323, \"group\": [1363.0, 575.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52537_BALBc-1_X02_Y02_418_969\", \"ini\": 480, \"clust\": 103, \"rank\": 1724, \"rankvar\": 1195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2346, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1450, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1565, \"group\": [104.0, 61.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52561_BALBc-1_X02_Y02_419_278\", \"ini\": 479, \"clust\": 857, \"rank\": 2079, \"rankvar\": 2220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2347, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 723, \"cat-2\": \"Density: 21\", \"cat_2_index\": 235, \"group\": [858.0, 360.0, 99.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52608_BALBc-1_X02_Y02_419_84\", \"ini\": 478, \"clust\": 1576, \"rank\": 512, \"rankvar\": 827, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2348, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1451, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1802, \"group\": [1581.0, 670.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52692_BALBc-1_X02_Y02_420_10\", \"ini\": 477, \"clust\": 999, \"rank\": 1433, \"rankvar\": 378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2349, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1452, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1696, \"group\": [999.0, 426.0, 119.0, 32.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52698_BALBc-1_X02_Y02_420_121\", \"ini\": 476, \"clust\": 2184, \"rank\": 1595, \"rankvar\": 2243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2350, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 724, \"cat-2\": \"Density: 27\", \"cat_2_index\": 990, \"group\": [2187.0, 875.0, 227.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52763_BALBc-1_X02_Y02_420_947\", \"ini\": 475, \"clust\": 1810, \"rank\": 264, \"rankvar\": 593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2351, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 477, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1902, \"group\": [1819.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52982_BALBc-1_X02_Y02_423_748\", \"ini\": 474, \"clust\": 469, \"rank\": 1537, \"rankvar\": 1298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2352, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 478, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2347, \"group\": [468.0, 179.0, 47.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53042_BALBc-1_X02_Y02_424_598\", \"ini\": 473, \"clust\": 797, \"rank\": 1497, \"rankvar\": 2041, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2353, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2698, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1299, \"group\": [804.0, 332.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53143_BALBc-1_X02_Y02_425_911\", \"ini\": 472, \"clust\": 1117, \"rank\": 1375, \"rankvar\": 1432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2354, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1453, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2493, \"group\": [1116.0, 509.0, 148.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53612_BALBc-1_X02_Y02_430_780\", \"ini\": 471, \"clust\": 829, \"rank\": 2562, \"rankvar\": 2018, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2355, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 479, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2277, \"group\": [832.0, 347.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53651_BALBc-1_X02_Y02_431_210\", \"ini\": 470, \"clust\": 543, \"rank\": 1684, \"rankvar\": 1546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2356, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 725, \"cat-2\": \"Density: 27\", \"cat_2_index\": 991, \"group\": [542.0, 216.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53748_BALBc-1_X02_Y02_432_458\", \"ini\": 469, \"clust\": 768, \"rank\": 1767, \"rankvar\": 2297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2357, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2699, \"cat-2\": \"Density: 18\", \"cat_2_index\": 106, \"group\": [776.0, 318.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53769_BALBc-1_X02_Y02_432_657\", \"ini\": 468, \"clust\": 2784, \"rank\": 2662, \"rankvar\": 2330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2358, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 480, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2018, \"group\": [2785.0, 1203.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53818_BALBc-1_X02_Y02_433_32\", \"ini\": 467, \"clust\": 1193, \"rank\": 377, \"rankvar\": 762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2359, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 863, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1903, \"group\": [1191.0, 548.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53861_BALBc-1_X02_Y02_433_832\", \"ini\": 466, \"clust\": 756, \"rank\": 1527, \"rankvar\": 253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2360, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2700, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2494, \"group\": [778.0, 320.0, 91.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53918_BALBc-1_X02_Y02_434_639\", \"ini\": 465, \"clust\": 1153, \"rank\": 1117, \"rankvar\": 1394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2361, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 481, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1803, \"group\": [1153.0, 530.0, 155.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53990_BALBc-1_X02_Y02_435_547\", \"ini\": 464, \"clust\": 886, \"rank\": 2241, \"rankvar\": 2404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2362, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2701, \"cat-2\": \"Density: 24\", \"cat_2_index\": 554, \"group\": [885.0, 373.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54076_BALBc-1_X02_Y02_436_716\", \"ini\": 463, \"clust\": 709, \"rank\": 2040, \"rankvar\": 635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2363, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1572, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2348, \"group\": [709.0, 287.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54081_BALBc-1_X02_Y02_436_770\", \"ini\": 462, \"clust\": 953, \"rank\": 1446, \"rankvar\": 1141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2364, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 482, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2410, \"group\": [953.0, 395.0, 107.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54253_BALBc-1_X02_Y02_438_736\", \"ini\": 461, \"clust\": 1105, \"rank\": 1211, \"rankvar\": 481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2365, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 483, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2349, \"group\": [1106.0, 504.0, 148.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54323_BALBc-1_X02_Y02_439_680\", \"ini\": 460, \"clust\": 291, \"rank\": 1354, \"rankvar\": 324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2366, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 484, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2278, \"group\": [301.0, 126.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54356_BALBc-1_X02_Y02_44_193\", \"ini\": 459, \"clust\": 1008, \"rank\": 1706, \"rankvar\": 1563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2367, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2702, \"cat-2\": \"Density: 21\", \"cat_2_index\": 236, \"group\": [1011.0, 433.0, 121.0, 33.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54458_BALBc-1_X02_Y02_440_577\", \"ini\": 458, \"clust\": 766, \"rank\": 1339, \"rankvar\": 1845, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2368, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2703, \"cat-2\": \"Density: 24\", \"cat_2_index\": 555, \"group\": [763.0, 315.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54556_BALBc-1_X02_Y02_441_892\", \"ini\": 457, \"clust\": 360, \"rank\": 2794, \"rankvar\": 1844, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2369, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1454, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2350, \"group\": [361.0, 149.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54798_BALBc-1_X02_Y02_444_961\", \"ini\": 456, \"clust\": 814, \"rank\": 969, \"rankvar\": 144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2370, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1455, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1442, \"group\": [812.0, 336.0, 95.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54819_BALBc-1_X02_Y02_445_21\", \"ini\": 455, \"clust\": 510, \"rank\": 2052, \"rankvar\": 1651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2371, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 485, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1904, \"group\": [508.0, 204.0, 58.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54862_BALBc-1_X02_Y02_445_938\", \"ini\": 454, \"clust\": 1157, \"rank\": 1455, \"rankvar\": 459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2372, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 632, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2019, \"group\": [1158.0, 534.0, 155.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55022_BALBc-1_X02_Y02_448_177\", \"ini\": 453, \"clust\": 1746, \"rank\": 106, \"rankvar\": 343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2373, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1456, \"cat-2\": \"Density: 27\", \"cat_2_index\": 992, \"group\": [1745.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55154_BALBc-1_X02_Y02_449_850\", \"ini\": 452, \"clust\": 382, \"rank\": 2060, \"rankvar\": 1496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2374, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2704, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2279, \"group\": [385.0, 154.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55263_BALBc-1_X02_Y02_450_401\", \"ini\": 451, \"clust\": 1027, \"rank\": 983, \"rankvar\": 400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2375, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1457, \"cat-2\": \"Density: 18\", \"cat_2_index\": 107, \"group\": [1033.0, 454.0, 127.0, 35.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55369_BALBc-1_X02_Y02_451_799\", \"ini\": 450, \"clust\": 1558, \"rank\": 518, \"rankvar\": 312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2376, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 486, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2280, \"group\": [1556.0, 655.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55395_BALBc-1_X02_Y02_452_153\", \"ini\": 449, \"clust\": 1061, \"rank\": 1264, \"rankvar\": 594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2377, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 726, \"cat-2\": \"Density: 25\", \"cat_2_index\": 696, \"group\": [1064.0, 475.0, 137.0, 38.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55452_BALBc-1_X02_Y02_452_751\", \"ini\": 448, \"clust\": 1654, \"rank\": 46, \"rankvar\": 48, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2378, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 487, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2281, \"group\": [1655.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55453_BALBc-1_X02_Y02_452_762\", \"ini\": 447, \"clust\": 684, \"rank\": 1825, \"rankvar\": 246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2379, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 488, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2411, \"group\": [687.0, 281.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55520_BALBc-1_X02_Y02_453_611\", \"ini\": 446, \"clust\": 2145, \"rank\": 1163, \"rankvar\": 2039, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2380, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 489, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1300, \"group\": [2148.0, 849.0, 218.0, 55.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55535_BALBc-1_X02_Y02_453_779\", \"ini\": 445, \"clust\": 1398, \"rank\": 1167, \"rankvar\": 1131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2381, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 490, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2351, \"group\": [1397.0, 583.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55769_BALBc-1_X02_Y02_456_717\", \"ini\": 444, \"clust\": 954, \"rank\": 758, \"rankvar\": 648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2382, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 491, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2539, \"group\": [957.0, 397.0, 108.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55815_BALBc-1_X02_Y02_457_41\", \"ini\": 443, \"clust\": 2519, \"rank\": 861, \"rankvar\": 2047, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2383, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1986, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1697, \"group\": [2521.0, 1048.0, 270.0, 68.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55836_BALBc-1_X02_Y02_457_651\", \"ini\": 442, \"clust\": 962, \"rank\": 685, \"rankvar\": 1642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2384, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 492, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1905, \"group\": [963.0, 400.0, 108.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55853_BALBc-1_X02_Y02_457_820\", \"ini\": 441, \"clust\": 1240, \"rank\": 670, \"rankvar\": 275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2385, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 493, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2540, \"group\": [1240.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55927_BALBc-1_X02_Y02_458_893\", \"ini\": 440, \"clust\": 35, \"rank\": 709, \"rankvar\": 2533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2386, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 633, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2412, \"group\": [35.0, 22.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56318_BALBc-1_X02_Y02_462_867\", \"ini\": 439, \"clust\": 718, \"rank\": 2710, \"rankvar\": 1794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2387, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 634, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2495, \"group\": [721.0, 295.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56467_BALBc-1_X02_Y02_465_167\", \"ini\": 438, \"clust\": 1540, \"rank\": 609, \"rankvar\": 161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2388, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 494, \"cat-2\": \"Density: 26\", \"cat_2_index\": 842, \"group\": [1544.0, 648.0, 176.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56525_BALBc-1_X02_Y02_465_852\", \"ini\": 437, \"clust\": 371, \"rank\": 2304, \"rankvar\": 1770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2389, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 495, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2413, \"group\": [372.0, 151.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56552_BALBc-1_X02_Y02_466_269\", \"ini\": 436, \"clust\": 994, \"rank\": 2745, \"rankvar\": 2652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2390, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1458, \"cat-2\": \"Density: 23\", \"cat_2_index\": 436, \"group\": [994.0, 421.0, 117.0, 31.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56674_BALBc-1_X02_Y02_467_624\", \"ini\": 435, \"clust\": 918, \"rank\": 2286, \"rankvar\": 2480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2391, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 496, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1804, \"group\": [919.0, 377.0, 101.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56705_BALBc-1_X02_Y02_467_999\", \"ini\": 434, \"clust\": 12, \"rank\": 2197, \"rankvar\": 1656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2392, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1459, \"cat-2\": \"Density: 21\", \"cat_2_index\": 237, \"group\": [12.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56787_BALBc-1_X02_Y02_469_24\", \"ini\": 433, \"clust\": 199, \"rank\": 1280, \"rankvar\": 921, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2393, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1460, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2119, \"group\": [199.0, 99.0, 31.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56914_BALBc-1_X02_Y02_47_868\", \"ini\": 432, \"clust\": 57, \"rank\": 2041, \"rankvar\": 2168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2394, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1461, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1805, \"group\": [57.0, 37.0, 13.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57003_BALBc-1_X02_Y02_470_953\", \"ini\": 431, \"clust\": 1, \"rank\": 1552, \"rankvar\": 856, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2395, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 635, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1443, \"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57113_BALBc-1_X02_Y02_472_681\", \"ini\": 430, \"clust\": 685, \"rank\": 2372, \"rankvar\": 1385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2396, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 497, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2352, \"group\": [685.0, 281.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57374_BALBc-1_X02_Y02_475_756\", \"ini\": 429, \"clust\": 1668, \"rank\": 118, \"rankvar\": 51, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2397, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 498, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2414, \"group\": [1668.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57405_BALBc-1_X02_Y02_476_220\", \"ini\": 428, \"clust\": 760, \"rank\": 1125, \"rankvar\": 626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2398, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2705, \"cat-2\": \"Density: 26\", \"cat_2_index\": 843, \"group\": [759.0, 313.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57527_BALBc-1_X02_Y02_477_735\", \"ini\": 427, \"clust\": 706, \"rank\": 2403, \"rankvar\": 746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2399, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 499, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2496, \"group\": [705.0, 285.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57580_BALBc-1_X02_Y02_478_330\", \"ini\": 426, \"clust\": 769, \"rank\": 1588, \"rankvar\": 2032, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2400, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1462, \"cat-2\": \"Density: 18\", \"cat_2_index\": 108, \"group\": [767.0, 316.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57688_BALBc-1_X02_Y02_479_626\", \"ini\": 425, \"clust\": 580, \"rank\": 2120, \"rankvar\": 1640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2401, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 500, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1566, \"group\": [581.0, 244.0, 71.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57711_BALBc-1_X02_Y02_48_105\", \"ini\": 424, \"clust\": 2673, \"rank\": 2414, \"rankvar\": 2670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2402, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2464, \"cat-2\": \"Density: 22\", \"cat_2_index\": 324, \"group\": [2671.0, 1136.0, 299.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57920_BALBc-1_X02_Y02_481_785\", \"ini\": 423, \"clust\": 2, \"rank\": 1751, \"rankvar\": 1646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2403, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 501, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2282, \"group\": [2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58105_BALBc-1_X02_Y02_484_252\", \"ini\": 422, \"clust\": 1723, \"rank\": 208, \"rankvar\": 368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2404, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1463, \"cat-2\": \"Density: 23\", \"cat_2_index\": 437, \"group\": [1722.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58124_BALBc-1_X02_Y02_484_432\", \"ini\": 421, \"clust\": 809, \"rank\": 1916, \"rankvar\": 2487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2405, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1464, \"cat-2\": \"Density: 20\", \"cat_2_index\": 181, \"group\": [809.0, 334.0, 94.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58170_BALBc-1_X02_Y02_484_987\", \"ini\": 420, \"clust\": 662, \"rank\": 2066, \"rankvar\": 787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2406, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 502, \"cat-2\": \"Density: 24\", \"cat_2_index\": 556, \"group\": [661.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58222_BALBc-1_X02_Y02_485_578\", \"ini\": 419, \"clust\": 892, \"rank\": 2622, \"rankvar\": 2354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2407, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2706, \"cat-2\": \"Density: 27\", \"cat_2_index\": 993, \"group\": [892.0, 374.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58242_BALBc-1_X02_Y02_485_832\", \"ini\": 418, \"clust\": 334, \"rank\": 2272, \"rankvar\": 910, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2408, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 503, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2415, \"group\": [355.0, 145.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58476_BALBc-1_X02_Y02_488_845\", \"ini\": 417, \"clust\": 1338, \"rank\": 369, \"rankvar\": 225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2409, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 504, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2353, \"group\": [1334.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58566_BALBc-1_X02_Y02_489_956\", \"ini\": 416, \"clust\": 728, \"rank\": 2267, \"rankvar\": 1676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2410, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 636, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1567, \"group\": [735.0, 297.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58719_BALBc-1_X02_Y02_491_17\", \"ini\": 415, \"clust\": 2528, \"rank\": 1562, \"rankvar\": 1037, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2411, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1465, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2283, \"group\": [2526.0, 1052.0, 273.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58720_BALBc-1_X02_Y02_491_183\", \"ini\": 414, \"clust\": 2797, \"rank\": 1405, \"rankvar\": 1689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2412, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 505, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1444, \"group\": [2800.0, 1213.0, 322.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58765_BALBc-1_X02_Y02_491_801\", \"ini\": 413, \"clust\": 429, \"rank\": 1530, \"rankvar\": 926, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2413, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 506, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2497, \"group\": [429.0, 163.0, 43.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58869_BALBc-1_X02_Y02_493_117\", \"ini\": 412, \"clust\": 1029, \"rank\": 808, \"rankvar\": 79, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2414, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1466, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1568, \"group\": [1029.0, 450.0, 127.0, 35.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58906_BALBc-1_X02_Y02_493_620\", \"ini\": 411, \"clust\": 519, \"rank\": 2144, \"rankvar\": 2639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2415, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 507, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1698, \"group\": [517.0, 210.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58994_BALBc-1_X02_Y02_494_645\", \"ini\": 410, \"clust\": 441, \"rank\": 1884, \"rankvar\": 1815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2416, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 508, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1806, \"group\": [438.0, 169.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59111_BALBc-1_X02_Y02_496_195\", \"ini\": 409, \"clust\": 1871, \"rank\": 345, \"rankvar\": 1657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2417, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 727, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1144, \"group\": [1872.0, 710.0, 183.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59190_BALBc-1_X02_Y02_496_937\", \"ini\": 408, \"clust\": 1246, \"rank\": 559, \"rankvar\": 839, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2418, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 637, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2020, \"group\": [1245.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59361_BALBc-1_X02_Y02_499_164\", \"ini\": 407, \"clust\": 2133, \"rank\": 740, \"rankvar\": 477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2419, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 728, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1569, \"group\": [2139.0, 841.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59627_BALBc-1_X02_Y02_501_380\", \"ini\": 406, \"clust\": 515, \"rank\": 1488, \"rankvar\": 1946, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2420, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1467, \"cat-2\": \"Density: 20\", \"cat_2_index\": 182, \"group\": [514.0, 209.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59630_BALBc-1_X02_Y02_501_406\", \"ini\": 405, \"clust\": 1258, \"rank\": 298, \"rankvar\": 857, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2421, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 509, \"cat-2\": \"Density: 21\", \"cat_2_index\": 238, \"group\": [1258.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59720_BALBc-1_X02_Y02_502_671\", \"ini\": 404, \"clust\": 2003, \"rank\": 816, \"rankvar\": 1086, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2422, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 510, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1807, \"group\": [2004.0, 791.0, 206.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59726_BALBc-1_X02_Y02_502_707\", \"ini\": 403, \"clust\": 1223, \"rank\": 984, \"rankvar\": 338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2423, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 511, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2592, \"group\": [1221.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59879_BALBc-1_X02_Y02_504_867\", \"ini\": 402, \"clust\": 434, \"rank\": 2554, \"rankvar\": 1717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2424, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 638, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2120, \"group\": [435.0, 167.0, 44.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59993_BALBc-1_X02_Y02_506_250\", \"ini\": 401, \"clust\": 815, \"rank\": 2004, \"rankvar\": 1655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2425, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1468, \"cat-2\": \"Density: 25\", \"cat_2_index\": 697, \"group\": [819.0, 340.0, 96.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60209_BALBc-1_X02_Y02_508_95\", \"ini\": 400, \"clust\": 1948, \"rank\": 926, \"rankvar\": 1469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2426, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 928, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1808, \"group\": [1949.0, 754.0, 193.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60246_BALBc-1_X02_Y02_509_500\", \"ini\": 399, \"clust\": 810, \"rank\": 1059, \"rankvar\": 1108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2427, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2707, \"cat-2\": \"Density: 22\", \"cat_2_index\": 325, \"group\": [815.0, 338.0, 95.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60484_BALBc-1_X02_Y02_511_481\", \"ini\": 398, \"clust\": 1042, \"rank\": 1692, \"rankvar\": 270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2428, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1469, \"cat-2\": \"Density: 19\", \"cat_2_index\": 131, \"group\": [1061.0, 472.0, 135.0, 37.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60509_BALBc-1_X02_Y02_511_799\", \"ini\": 397, \"clust\": 628, \"rank\": 1592, \"rankvar\": 303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2429, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 512, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2498, \"group\": [634.0, 272.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60571_BALBc-1_X02_Y02_512_687\", \"ini\": 396, \"clust\": 1150, \"rank\": 1675, \"rankvar\": 1197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2430, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 513, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2121, \"group\": [1150.0, 528.0, 155.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60617_BALBc-1_X02_Y02_513_306\", \"ini\": 395, \"clust\": 2142, \"rank\": 1696, \"rankvar\": 1524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2431, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1470, \"cat-2\": \"Density: 22\", \"cat_2_index\": 326, \"group\": [2142.0, 844.0, 217.0, 55.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60829_BALBc-1_X02_Y02_515_980\", \"ini\": 394, \"clust\": 1213, \"rank\": 410, \"rankvar\": 1007, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2432, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 639, \"cat-2\": \"Density: 24\", \"cat_2_index\": 557, \"group\": [1212.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60871_BALBc-1_X02_Y02_516_759\", \"ini\": 393, \"clust\": 930, \"rank\": 2443, \"rankvar\": 1664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2433, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 514, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2541, \"group\": [931.0, 381.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61279_BALBc-1_X02_Y02_520_66\", \"ini\": 392, \"clust\": 1983, \"rank\": 1252, \"rankvar\": 1265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2434, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1987, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1906, \"group\": [1984.0, 778.0, 203.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61334_BALBc-1_X02_Y02_521_353\", \"ini\": 391, \"clust\": 1775, \"rank\": 937, \"rankvar\": 482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2435, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2803, \"cat-2\": \"Density: 21\", \"cat_2_index\": 239, \"group\": [1776.0, 685.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61348_BALBc-1_X02_Y02_521_546\", \"ini\": 390, \"clust\": 937, \"rank\": 2502, \"rankvar\": 1792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2436, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2708, \"cat-2\": \"Density: 24\", \"cat_2_index\": 558, \"group\": [938.0, 382.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61372_BALBc-1_X02_Y02_521_896\", \"ini\": 389, \"clust\": 676, \"rank\": 2191, \"rankvar\": 393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2437, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 640, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2416, \"group\": [679.0, 278.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61534_BALBc-1_X02_Y02_523_860\", \"ini\": 388, \"clust\": 517, \"rank\": 2525, \"rankvar\": 2589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2438, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 515, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2354, \"group\": [518.0, 210.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61617_BALBc-1_X02_Y02_525_120\", \"ini\": 387, \"clust\": 1491, \"rank\": 378, \"rankvar\": 374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2439, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 929, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1907, \"group\": [1494.0, 628.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61773_BALBc-1_X02_Y02_527_152\", \"ini\": 386, \"clust\": 1480, \"rank\": 907, \"rankvar\": 1464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2440, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 729, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1570, \"group\": [1480.0, 625.0, 170.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61824_BALBc-1_X02_Y02_527_636\", \"ini\": 385, \"clust\": 612, \"rank\": 1796, \"rankvar\": 1205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2441, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2709, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1445, \"group\": [612.0, 265.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61842_BALBc-1_X02_Y02_527_845\", \"ini\": 384, \"clust\": 898, \"rank\": 2433, \"rankvar\": 2192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2442, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 516, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2499, \"group\": [915.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61916_BALBc-1_X02_Y02_528_823\", \"ini\": 383, \"clust\": 1169, \"rank\": 998, \"rankvar\": 180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2443, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 517, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2355, \"group\": [1170.0, 541.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61962_BALBc-1_X02_Y02_529_428\", \"ini\": 382, \"clust\": 1031, \"rank\": 780, \"rankvar\": 403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2444, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 518, \"cat-2\": \"Density: 23\", \"cat_2_index\": 438, \"group\": [1030.0, 451.0, 127.0, 35.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61994_BALBc-1_X02_Y02_529_877\", \"ini\": 381, \"clust\": 1168, \"rank\": 1313, \"rankvar\": 516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2445, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 519, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2284, \"group\": [1168.0, 539.0, 157.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62001_BALBc-1_X02_Y02_529_999\", \"ini\": 380, \"clust\": 438, \"rank\": 2669, \"rankvar\": 2137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2446, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 520, \"cat-2\": \"Density: 19\", \"cat_2_index\": 132, \"group\": [437.0, 168.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62024_BALBc-1_X02_Y02_53_346\", \"ini\": 379, \"clust\": 1949, \"rank\": 2152, \"rankvar\": 2725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2447, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1588, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1301, \"group\": [1950.0, 755.0, 193.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62088_BALBc-1_X02_Y02_530_268\", \"ini\": 378, \"clust\": 2087, \"rank\": 666, \"rankvar\": 806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2448, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1471, \"cat-2\": \"Density: 23\", \"cat_2_index\": 439, \"group\": [2088.0, 829.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62119_BALBc-1_X02_Y02_530_680\", \"ini\": 377, \"clust\": 675, \"rank\": 2266, \"rankvar\": 1260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2449, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 521, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1908, \"group\": [673.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62139_BALBc-1_X02_Y02_530_910\", \"ini\": 376, \"clust\": 2033, \"rank\": 1233, \"rankvar\": 1138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2450, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 522, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2356, \"group\": [2034.0, 804.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62142_BALBc-1_X02_Y02_530_925\", \"ini\": 375, \"clust\": 748, \"rank\": 1748, \"rankvar\": 890, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2451, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 641, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2357, \"group\": [748.0, 306.0, 86.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62170_BALBc-1_X02_Y02_531_40\", \"ini\": 374, \"clust\": 1639, \"rank\": 12, \"rankvar\": 217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2452, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2246, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1809, \"group\": [1641.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62352_BALBc-1_X02_Y02_533_593\", \"ini\": 373, \"clust\": 776, \"rank\": 1482, \"rankvar\": 1990, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2453, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2710, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1145, \"group\": [773.0, 317.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62487_BALBc-1_X02_Y02_535_456\", \"ini\": 372, \"clust\": 1095, \"rank\": 575, \"rankvar\": 325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2454, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2711, \"cat-2\": \"Density: 22\", \"cat_2_index\": 327, \"group\": [1094.0, 495.0, 145.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62584_BALBc-1_X02_Y02_536_793\", \"ini\": 371, \"clust\": 1212, \"rank\": 735, \"rankvar\": 522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2455, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 523, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2285, \"group\": [1213.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62698_BALBc-1_X02_Y02_538_395\", \"ini\": 370, \"clust\": 850, \"rank\": 2526, \"rankvar\": 2696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2456, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2804, \"cat-2\": \"Density: 23\", \"cat_2_index\": 440, \"group\": [850.0, 357.0, 99.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62842_BALBc-1_X02_Y02_54_556\", \"ini\": 369, \"clust\": 47, \"rank\": 2124, \"rankvar\": 2185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2457, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1573, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1146, \"group\": [48.0, 30.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62982_BALBc-1_X02_Y02_541_688\", \"ini\": 368, \"clust\": 774, \"rank\": 1654, \"rankvar\": 1184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2458, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 524, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2021, \"group\": [772.0, 316.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63073_BALBc-1_X02_Y02_542_677\", \"ini\": 367, \"clust\": 2816, \"rank\": 1561, \"rankvar\": 1090, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2459, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 525, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1810, \"group\": [2816.0, 1222.0, 324.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63152_BALBc-1_X02_Y02_543_663\", \"ini\": 366, \"clust\": 1664, \"rank\": 194, \"rankvar\": 200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2460, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2712, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1302, \"group\": [1682.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63263_BALBc-1_X02_Y02_544_724\", \"ini\": 365, \"clust\": 2023, \"rank\": 814, \"rankvar\": 1119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2461, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1472, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2195, \"group\": [2024.0, 801.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63356_BALBc-1_X02_Y02_545_764\", \"ini\": 364, \"clust\": 1452, \"rank\": 819, \"rankvar\": 154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2462, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 526, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2417, \"group\": [1453.0, 607.0, 163.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63594_BALBc-1_X02_Y02_548_836\", \"ini\": 363, \"clust\": 928, \"rank\": 2637, \"rankvar\": 2189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2463, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 527, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2500, \"group\": [929.0, 381.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63611_BALBc-1_X02_Y02_548_990\", \"ini\": 362, \"clust\": 1941, \"rank\": 358, \"rankvar\": 852, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2464, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 642, \"cat-2\": \"Density: 21\", \"cat_2_index\": 240, \"group\": [1941.0, 748.0, 192.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63621_BALBc-1_X02_Y02_549_222\", \"ini\": 361, \"clust\": 2579, \"rank\": 1681, \"rankvar\": 1779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2465, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2713, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1571, \"group\": [2580.0, 1081.0, 280.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63732_BALBc-1_X02_Y02_55_601\", \"ini\": 360, \"clust\": 604, \"rank\": 1523, \"rankvar\": 1057, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2466, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 946, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1303, \"group\": [607.0, 264.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63834_BALBc-1_X02_Y02_550_878\", \"ini\": 359, \"clust\": 460, \"rank\": 2263, \"rankvar\": 815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2467, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 528, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2286, \"group\": [461.0, 175.0, 46.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64028_BALBc-1_X02_Y02_553_519\", \"ini\": 358, \"clust\": 539, \"rank\": 1579, \"rankvar\": 1488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2468, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 864, \"cat-2\": \"Density: 22\", \"cat_2_index\": 328, \"group\": [539.0, 216.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64073_BALBc-1_X02_Y02_553_924\", \"ini\": 357, \"clust\": 1215, \"rank\": 315, \"rankvar\": 788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2469, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 643, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2196, \"group\": [1211.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64372_BALBc-1_X02_Y02_558_116\", \"ini\": 356, \"clust\": 2775, \"rank\": 2220, \"rankvar\": 2103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2470, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 930, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1811, \"group\": [2775.0, 1201.0, 320.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64456_BALBc-1_X02_Y02_558_995\", \"ini\": 355, \"clust\": 846, \"rank\": 2782, \"rankvar\": 2127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2471, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 529, \"cat-2\": \"Density: 22\", \"cat_2_index\": 329, \"group\": [847.0, 355.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64463_BALBc-1_X02_Y02_559_16\", \"ini\": 354, \"clust\": 1481, \"rank\": 933, \"rankvar\": 1896, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2472, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2247, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1699, \"group\": [1481.0, 625.0, 170.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64505_BALBc-1_X02_Y02_559_58\", \"ini\": 353, \"clust\": 2182, \"rank\": 1079, \"rankvar\": 615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2473, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 931, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1909, \"group\": [2180.0, 869.0, 226.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64571_BALBc-1_X02_Y02_56_412\", \"ini\": 352, \"clust\": 151, \"rank\": 2570, \"rankvar\": 2752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2474, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2714, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2122, \"group\": [152.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64626_BALBc-1_X02_Y02_560_186\", \"ini\": 351, \"clust\": 1593, \"rank\": 281, \"rankvar\": 342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2475, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 730, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1700, \"group\": [1596.0, 676.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64676_BALBc-1_X02_Y02_560_746\", \"ini\": 350, \"clust\": 321, \"rank\": 2025, \"rankvar\": 577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2476, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1473, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2123, \"group\": [325.0, 136.0, 40.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64706_BALBc-1_X02_Y02_561_129\", \"ini\": 349, \"clust\": 4, \"rank\": 1135, \"rankvar\": 1329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2477, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1474, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1910, \"group\": [6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64758_BALBc-1_X02_Y02_561_689\", \"ini\": 348, \"clust\": 765, \"rank\": 714, \"rankvar\": 1292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2478, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 530, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1812, \"group\": [765.0, 315.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64883_BALBc-1_X02_Y02_563_442\", \"ini\": 347, \"clust\": 761, \"rank\": 1470, \"rankvar\": 1518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2479, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1574, \"cat-2\": \"Density: 26\", \"cat_2_index\": 844, \"group\": [760.0, 313.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64889_BALBc-1_X02_Y02_563_483\", \"ini\": 346, \"clust\": 770, \"rank\": 2125, \"rankvar\": 2578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2480, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2715, \"cat-2\": \"Density: 23\", \"cat_2_index\": 441, \"group\": [768.0, 316.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64905_BALBc-1_X02_Y02_563_774\", \"ini\": 345, \"clust\": 2825, \"rank\": 1299, \"rankvar\": 1343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 531, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2358, \"group\": [2826.0, 1230.0, 326.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65149_BALBc-1_X02_Y02_566_81\", \"ini\": 344, \"clust\": 505, \"rank\": 1859, \"rankvar\": 808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2482, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 865, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1911, \"group\": [505.0, 202.0, 57.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65186_BALBc-1_X02_Y02_567_271\", \"ini\": 343, \"clust\": 26, \"rank\": 872, \"rankvar\": 967, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2483, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1988, \"cat-2\": \"Density: 25\", \"cat_2_index\": 698, \"group\": [30.0, 20.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65292_BALBc-1_X02_Y02_568_797\", \"ini\": 342, \"clust\": 645, \"rank\": 1972, \"rankvar\": 963, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2484, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 532, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2359, \"group\": [644.0, 274.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65906_BALBc-1_X02_Y02_575_921\", \"ini\": 341, \"clust\": 520, \"rank\": 1870, \"rankvar\": 1776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2485, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2716, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2197, \"group\": [520.0, 210.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66097_BALBc-1_X02_Y02_578_646\", \"ini\": 340, \"clust\": 927, \"rank\": 2044, \"rankvar\": 1552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2486, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2717, \"cat-2\": \"Density: 27\", \"cat_2_index\": 994, \"group\": [926.0, 380.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66183_BALBc-1_X02_Y02_579_966\", \"ini\": 339, \"clust\": 931, \"rank\": 2587, \"rankvar\": 1094, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2487, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 644, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1147, \"group\": [932.0, 381.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66339_BALBc-1_X02_Y02_581_317\", \"ini\": 338, \"clust\": 2065, \"rank\": 706, \"rankvar\": 1313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2488, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1989, \"cat-2\": \"Density: 23\", \"cat_2_index\": 442, \"group\": [2064.0, 819.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66357_BALBc-1_X02_Y02_581_49\", \"ini\": 337, \"clust\": 2092, \"rank\": 608, \"rankvar\": 1695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2489, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1678, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2022, \"group\": [2095.0, 831.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66415_BALBc-1_X02_Y02_582_178\", \"ini\": 336, \"clust\": 2679, \"rank\": 2081, \"rankvar\": 2782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2490, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2496, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1572, \"group\": [2678.0, 1137.0, 299.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66616_BALBc-1_X02_Y02_584_773\", \"ini\": 335, \"clust\": 320, \"rank\": 1213, \"rankvar\": 1347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2491, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 533, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2198, \"group\": [320.0, 133.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66755_BALBc-1_X02_Y02_586_349\", \"ini\": 334, \"clust\": 984, \"rank\": 2670, \"rankvar\": 2770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2718, \"cat-2\": \"Density: 23\", \"cat_2_index\": 443, \"group\": [985.0, 414.0, 115.0, 31.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66774_BALBc-1_X02_Y02_586_530\", \"ini\": 333, \"clust\": 68, \"rank\": 2624, \"rankvar\": 2758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2493, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2719, \"cat-2\": \"Density: 22\", \"cat_2_index\": 330, \"group\": [66.0, 42.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66875_BALBc-1_X02_Y02_587_790\", \"ini\": 332, \"clust\": 790, \"rank\": 1278, \"rankvar\": 1748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2494, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 534, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2199, \"group\": [797.0, 330.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66943_BALBc-1_X02_Y02_588_705\", \"ini\": 331, \"clust\": 54, \"rank\": 2634, \"rankvar\": 2195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2495, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1475, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1912, \"group\": [54.0, 35.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67033_BALBc-1_X02_Y02_589_854\", \"ini\": 330, \"clust\": 1553, \"rank\": 370, \"rankvar\": 467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2496, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 535, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2418, \"group\": [1553.0, 653.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67050_BALBc-1_X02_Y02_59_136\", \"ini\": 329, \"clust\": 2132, \"rank\": 456, \"rankvar\": 1134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2497, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2720, \"cat-2\": \"Density: 22\", \"cat_2_index\": 331, \"group\": [2131.0, 839.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67117_BALBc-1_X02_Y02_59_886\", \"ini\": 328, \"clust\": 99, \"rank\": 1966, \"rankvar\": 2418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2498, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1476, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1304, \"group\": [101.0, 60.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67206_BALBc-1_X02_Y02_590_941\", \"ini\": 327, \"clust\": 1209, \"rank\": 309, \"rankvar\": 285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2499, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2721, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1913, \"group\": [1207.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67342_BALBc-1_X02_Y02_592_741\", \"ini\": 326, \"clust\": 125, \"rank\": 2426, \"rankvar\": 2348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2500, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1477, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2287, \"group\": [127.0, 72.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67356_BALBc-1_X02_Y02_592_870\", \"ini\": 325, \"clust\": 451, \"rank\": 2413, \"rankvar\": 1735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2501, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2722, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2200, \"group\": [447.0, 169.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67680_BALBc-1_X02_Y02_596_996\", \"ini\": 324, \"clust\": 1809, \"rank\": 588, \"rankvar\": 366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2502, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 536, \"cat-2\": \"Density: 21\", \"cat_2_index\": 241, \"group\": [1808.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67689_BALBc-1_X02_Y02_597_244\", \"ini\": 323, \"clust\": 1873, \"rank\": 875, \"rankvar\": 1279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2503, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1759, \"cat-2\": \"Density: 24\", \"cat_2_index\": 559, \"group\": [1875.0, 712.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67735_BALBc-1_X02_Y02_597_815\", \"ini\": 322, \"clust\": 872, \"rank\": 2100, \"rankvar\": 2299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2504, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 537, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2288, \"group\": [872.0, 369.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67822_BALBc-1_X02_Y02_598_971\", \"ini\": 321, \"clust\": 716, \"rank\": 2038, \"rankvar\": 1903, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2505, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 538, \"cat-2\": \"Density: 25\", \"cat_2_index\": 699, \"group\": [717.0, 294.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67827_BALBc-1_X02_Y02_599_124\", \"ini\": 320, \"clust\": 2152, \"rank\": 2061, \"rankvar\": 2148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2506, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1478, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1573, \"group\": [2151.0, 851.0, 220.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67881_BALBc-1_X02_Y02_599_836\", \"ini\": 319, \"clust\": 2020, \"rank\": 857, \"rankvar\": 213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2507, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 539, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2501, \"group\": [2020.0, 798.0, 208.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68161_BALBc-1_X02_Y02_602_173\", \"ini\": 318, \"clust\": 2549, \"rank\": 1741, \"rankvar\": 2165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2508, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1479, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1305, \"group\": [2549.0, 1063.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68329_BALBc-1_X02_Y02_604_479\", \"ini\": 317, \"clust\": 876, \"rank\": 2172, \"rankvar\": 2015, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2509, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2465, \"cat-2\": \"Density: 26\", \"cat_2_index\": 845, \"group\": [877.0, 372.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68364_BALBc-1_X02_Y02_604_898\", \"ini\": 316, \"clust\": 1886, \"rank\": 777, \"rankvar\": 287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2510, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2723, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2201, \"group\": [1887.0, 718.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68650_BALBc-1_X02_Y02_608_247\", \"ini\": 315, \"clust\": 1353, \"rank\": 782, \"rankvar\": 74, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2511, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1679, \"cat-2\": \"Density: 24\", \"cat_2_index\": 560, \"group\": [1357.0, 572.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68746_BALBc-1_X02_Y02_609_287\", \"ini\": 314, \"clust\": 46, \"rank\": 2518, \"rankvar\": 1847, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2512, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 540, \"cat-2\": \"Density: 24\", \"cat_2_index\": 561, \"group\": [49.0, 31.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68769_BALBc-1_X02_Y02_609_505\", \"ini\": 313, \"clust\": 1360, \"rank\": 862, \"rankvar\": 609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2513, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2724, \"cat-2\": \"Density: 21\", \"cat_2_index\": 242, \"group\": [1366.0, 576.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68812_BALBc-1_X02_Y02_61_160\", \"ini\": 312, \"clust\": 513, \"rank\": 2154, \"rankvar\": 2196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2514, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 541, \"cat-2\": \"Density: 19\", \"cat_2_index\": 133, \"group\": [515.0, 209.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68919_BALBc-1_X02_Y02_610_685\", \"ini\": 311, \"clust\": 887, \"rank\": 1814, \"rankvar\": 2262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2515, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1480, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1813, \"group\": [886.0, 373.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68936_BALBc-1_X02_Y02_610_908\", \"ini\": 310, \"clust\": 443, \"rank\": 2086, \"rankvar\": 1419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2516, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2725, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2202, \"group\": [451.0, 169.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69083_BALBc-1_X02_Y02_612_642\", \"ini\": 309, \"clust\": 757, \"rank\": 1652, \"rankvar\": 1111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2517, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1481, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1148, \"group\": [777.0, 319.0, 90.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69172_BALBc-1_X02_Y02_613_941\", \"ini\": 308, \"clust\": 442, \"rank\": 1900, \"rankvar\": 1559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2518, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2726, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1574, \"group\": [439.0, 169.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69269_BALBc-1_X02_Y02_615_12\", \"ini\": 307, \"clust\": 1479, \"rank\": 1033, \"rankvar\": 621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2519, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1482, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1575, \"group\": [1482.0, 626.0, 170.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69314_BALBc-1_X02_Y02_615_721\", \"ini\": 306, \"clust\": 1389, \"rank\": 994, \"rankvar\": 1936, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2520, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1483, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2023, \"group\": [1388.0, 580.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69385_BALBc-1_X02_Y02_616_708\", \"ini\": 305, \"clust\": 712, \"rank\": 2462, \"rankvar\": 1821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2521, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 542, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1814, \"group\": [716.0, 293.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69392_BALBc-1_X02_Y02_616_80\", \"ini\": 304, \"clust\": 2122, \"rank\": 756, \"rankvar\": 446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2522, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 866, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1815, \"group\": [2122.0, 835.0, 215.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69516_BALBc-1_X02_Y02_618_346\", \"ini\": 303, \"clust\": 1729, \"rank\": 206, \"rankvar\": 855, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2523, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2727, \"cat-2\": \"Density: 26\", \"cat_2_index\": 846, \"group\": [1729.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69550_BALBc-1_X02_Y02_618_772\", \"ini\": 302, \"clust\": 436, \"rank\": 1959, \"rankvar\": 1831, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2524, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1680, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2124, \"group\": [457.0, 172.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69694_BALBc-1_X02_Y02_62_685\", \"ini\": 301, \"clust\": 157, \"rank\": 2504, \"rankvar\": 2712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2525, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1484, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1576, \"group\": [158.0, 74.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69845_BALBc-1_X02_Y02_621_738\", \"ini\": 300, \"clust\": 1011, \"rank\": 1374, \"rankvar\": 1212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2526, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 543, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2125, \"group\": [1014.0, 436.0, 122.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69869_BALBc-1_X02_Y02_621_980\", \"ini\": 299, \"clust\": 296, \"rank\": 1759, \"rankvar\": 1398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2527, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 544, \"cat-2\": \"Density: 22\", \"cat_2_index\": 332, \"group\": [294.0, 125.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69947_BALBc-1_X02_Y02_622_856\", \"ini\": 298, \"clust\": 446, \"rank\": 1960, \"rankvar\": 1030, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2528, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2728, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2419, \"group\": [450.0, 169.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70036_BALBc-1_X02_Y02_623_791\", \"ini\": 297, \"clust\": 941, \"rank\": 2063, \"rankvar\": 1328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2529, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1681, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2203, \"group\": [942.0, 386.0, 103.0, 26.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70145_BALBc-1_X02_Y02_625_402\", \"ini\": 296, \"clust\": 1564, \"rank\": 196, \"rankvar\": 2096, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2530, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2332, \"cat-2\": \"Density: 23\", \"cat_2_index\": 444, \"group\": [1565.0, 660.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70178_BALBc-1_X02_Y02_625_825\", \"ini\": 295, \"clust\": 1359, \"rank\": 1291, \"rankvar\": 1289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2531, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1485, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2360, \"group\": [1360.0, 574.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70445_BALBc-1_X02_Y02_629_611\", \"ini\": 294, \"clust\": 821, \"rank\": 2330, \"rankvar\": 2163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2532, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2729, \"cat-2\": \"Density: 24\", \"cat_2_index\": 562, \"group\": [821.0, 341.0, 96.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70500_BALBc-1_X02_Y02_63_385\", \"ini\": 293, \"clust\": 1950, \"rank\": 1272, \"rankvar\": 2383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2533, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2730, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2024, \"group\": [1951.0, 755.0, 193.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70692_BALBc-1_X02_Y02_631_72\", \"ini\": 292, \"clust\": 565, \"rank\": 2035, \"rankvar\": 2057, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2534, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 545, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1701, \"group\": [566.0, 236.0, 69.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70695_BALBc-1_X02_Y02_631_748\", \"ini\": 291, \"clust\": 531, \"rank\": 1890, \"rankvar\": 1445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2535, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1682, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2204, \"group\": [531.0, 214.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70916_BALBc-1_X02_Y02_634_5\", \"ini\": 290, \"clust\": 2229, \"rank\": 728, \"rankvar\": 2014, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2536, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1683, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1577, \"group\": [2228.0, 904.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70961_BALBc-1_X02_Y02_635_253\", \"ini\": 289, \"clust\": 1180, \"rank\": 1051, \"rankvar\": 937, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2537, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1684, \"cat-2\": \"Density: 24\", \"cat_2_index\": 563, \"group\": [1180.0, 545.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71202_BALBc-1_X02_Y02_638_308\", \"ini\": 288, \"clust\": 2074, \"rank\": 1144, \"rankvar\": 2108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2538, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1486, \"cat-2\": \"Density: 24\", \"cat_2_index\": 564, \"group\": [2074.0, 825.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71220_BALBc-1_X02_Y02_638_474\", \"ini\": 287, \"clust\": 2143, \"rank\": 2265, \"rankvar\": 2249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2539, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2731, \"cat-2\": \"Density: 26\", \"cat_2_index\": 847, \"group\": [2143.0, 844.0, 217.0, 55.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71595_BALBc-1_X02_Y02_642_520\", \"ini\": 286, \"clust\": 1092, \"rank\": 850, \"rankvar\": 118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2540, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2732, \"cat-2\": \"Density: 22\", \"cat_2_index\": 333, \"group\": [1096.0, 496.0, 145.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71629_BALBc-1_X02_Y02_642_830\", \"ini\": 285, \"clust\": 112, \"rank\": 1908, \"rankvar\": 2463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2541, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1487, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2289, \"group\": [110.0, 64.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71736_BALBc-1_X02_Y02_644_115\", \"ini\": 284, \"clust\": 1412, \"rank\": 1241, \"rankvar\": 711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 867, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1702, \"group\": [1411.0, 587.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71739_BALBc-1_X02_Y02_644_155\", \"ini\": 283, \"clust\": 2173, \"rank\": 2036, \"rankvar\": 2142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2543, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1760, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1816, \"group\": [2174.0, 865.0, 224.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71744_BALBc-1_X02_Y02_644_213\", \"ini\": 282, \"clust\": 547, \"rank\": 2454, \"rankvar\": 1859, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2544, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1761, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1578, \"group\": [546.0, 219.0, 62.0, 15.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71785_BALBc-1_X02_Y02_644_568\", \"ini\": 281, \"clust\": 66, \"rank\": 2736, \"rankvar\": 2801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2545, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2733, \"cat-2\": \"Density: 23\", \"cat_2_index\": 445, \"group\": [67.0, 42.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71963_BALBc-1_X02_Y02_646_955\", \"ini\": 280, \"clust\": 361, \"rank\": 2491, \"rankvar\": 1061, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2546, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2183, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1149, \"group\": [366.0, 150.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72006_BALBc-1_X02_Y02_647_56\", \"ini\": 279, \"clust\": 1200, \"rank\": 374, \"rankvar\": 602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2547, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 546, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1703, \"group\": [1199.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72118_BALBc-1_X02_Y02_648_980\", \"ini\": 278, \"clust\": 1636, \"rank\": 69, \"rankvar\": 16, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2548, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 547, \"cat-2\": \"Density: 25\", \"cat_2_index\": 700, \"group\": [1637.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72144_BALBc-1_X02_Y02_649_345\", \"ini\": 277, \"clust\": 777, \"rank\": 1795, \"rankvar\": 2050, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2549, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2333, \"cat-2\": \"Density: 24\", \"cat_2_index\": 565, \"group\": [774.0, 317.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72328_BALBc-1_X02_Y02_650_881\", \"ini\": 276, \"clust\": 641, \"rank\": 1984, \"rankvar\": 1042, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2550, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2734, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2126, \"group\": [642.0, 274.0, 80.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72406_BALBc-1_X02_Y02_651_83\", \"ini\": 275, \"clust\": 1335, \"rank\": 234, \"rankvar\": 237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 548, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2025, \"group\": [1333.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72482_BALBc-1_X02_Y02_652_908\", \"ini\": 274, \"clust\": 324, \"rank\": 2082, \"rankvar\": 1264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2552, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2184, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2205, \"group\": [323.0, 135.0, 40.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72586_BALBc-1_X02_Y02_654_266\", \"ini\": 273, \"clust\": 2116, \"rank\": 691, \"rankvar\": 1727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2553, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1488, \"cat-2\": \"Density: 24\", \"cat_2_index\": 566, \"group\": [2119.0, 834.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72771_BALBc-1_X02_Y02_656_677\", \"ini\": 272, \"clust\": 2604, \"rank\": 700, \"rankvar\": 323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2554, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1489, \"cat-2\": \"Density: 27\", \"cat_2_index\": 995, \"group\": [2609.0, 1101.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72775_BALBc-1_X02_Y02_656_705\", \"ini\": 271, \"clust\": 819, \"rank\": 2165, \"rankvar\": 1401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2555, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 549, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1817, \"group\": [822.0, 341.0, 96.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72872_BALBc-1_X02_Y02_657_832\", \"ini\": 270, \"clust\": 129, \"rank\": 2734, \"rankvar\": 2641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2556, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1490, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2290, \"group\": [132.0, 73.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73062_BALBc-1_X02_Y02_66_601\", \"ini\": 269, \"clust\": 1206, \"rank\": 707, \"rankvar\": 676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2557, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 550, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1306, \"group\": [1204.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73332_BALBc-1_X02_Y02_662_61\", \"ini\": 268, \"clust\": 2807, \"rank\": 2673, \"rankvar\": 2669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2558, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 551, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1579, \"group\": [2808.0, 1218.0, 323.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73887_BALBc-1_X02_Y02_67_263\", \"ini\": 267, \"clust\": 1909, \"rank\": 254, \"rankvar\": 957, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2559, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2735, \"cat-2\": \"Density: 19\", \"cat_2_index\": 134, \"group\": [1907.0, 725.0, 186.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73953_BALBc-1_X02_Y02_670_242\", \"ini\": 266, \"clust\": 2079, \"rank\": 1253, \"rankvar\": 1541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2560, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1491, \"cat-2\": \"Density: 23\", \"cat_2_index\": 446, \"group\": [2078.0, 826.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73968_BALBc-1_X02_Y02_670_412\", \"ini\": 265, \"clust\": 1288, \"rank\": 293, \"rankvar\": 859, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2561, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2736, \"cat-2\": \"Density: 23\", \"cat_2_index\": 447, \"group\": [1288.0, 564.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73976_BALBc-1_X02_Y02_670_483\", \"ini\": 264, \"clust\": 1446, \"rank\": 399, \"rankvar\": 1520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2562, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1492, \"cat-2\": \"Density: 24\", \"cat_2_index\": 567, \"group\": [1447.0, 605.0, 163.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74149_BALBc-1_X02_Y02_672_855\", \"ini\": 263, \"clust\": 1814, \"rank\": 124, \"rankvar\": 431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2563, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 552, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2502, \"group\": [1815.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74167_BALBc-1_X02_Y02_673_108\", \"ini\": 262, \"clust\": 1877, \"rank\": 711, \"rankvar\": 691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2564, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 932, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1150, \"group\": [1877.0, 713.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74236_BALBc-1_X02_Y02_673_890\", \"ini\": 261, \"clust\": 1224, \"rank\": 779, \"rankvar\": 719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2565, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 553, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2206, \"group\": [1228.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74383_BALBc-1_X02_Y02_675_456\", \"ini\": 260, \"clust\": 1030, \"rank\": 828, \"rankvar\": 1771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2566, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1493, \"cat-2\": \"Density: 24\", \"cat_2_index\": 568, \"group\": [1032.0, 453.0, 127.0, 35.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74388_BALBc-1_X02_Y02_675_540\", \"ini\": 259, \"clust\": 2382, \"rank\": 892, \"rankvar\": 533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2567, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 554, \"cat-2\": \"Density: 24\", \"cat_2_index\": 569, \"group\": [2385.0, 981.0, 257.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74441_BALBc-1_X02_Y02_676_169\", \"ini\": 258, \"clust\": 2581, \"rank\": 1456, \"rankvar\": 1359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2568, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 933, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1307, \"group\": [2582.0, 1083.0, 281.0, 70.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74508_BALBc-1_X02_Y02_676_991\", \"ini\": 257, \"clust\": 677, \"rank\": 2345, \"rankvar\": 849, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2569, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 555, \"cat-2\": \"Density: 18\", \"cat_2_index\": 109, \"group\": [678.0, 278.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74535_BALBc-1_X02_Y02_677_385\", \"ini\": 256, \"clust\": 976, \"rank\": 2397, \"rankvar\": 2412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2570, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2334, \"cat-2\": \"Density: 26\", \"cat_2_index\": 848, \"group\": [977.0, 409.0, 112.0, 30.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74729_BALBc-1_X02_Y02_679_790\", \"ini\": 255, \"clust\": 213, \"rank\": 1361, \"rankvar\": 2071, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2571, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1494, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2291, \"group\": [215.0, 108.0, 36.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74731_BALBc-1_X02_Y02_679_812\", \"ini\": 254, \"clust\": 124, \"rank\": 1749, \"rankvar\": 1377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2572, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1495, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2361, \"group\": [128.0, 72.0, 21.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74790_BALBc-1_X02_Y02_68_580\", \"ini\": 253, \"clust\": 1130, \"rank\": 910, \"rankvar\": 293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2573, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1575, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1151, \"group\": [1130.0, 518.0, 151.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74845_BALBc-1_X02_Y02_680_497\", \"ini\": 252, \"clust\": 540, \"rank\": 1493, \"rankvar\": 1316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2574, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1496, \"cat-2\": \"Density: 23\", \"cat_2_index\": 448, \"group\": [540.0, 216.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74920_BALBc-1_X02_Y02_681_628\", \"ini\": 251, \"clust\": 1333, \"rank\": 274, \"rankvar\": 453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1497, \"cat-2\": \"Density: 23\", \"cat_2_index\": 449, \"group\": [1330.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75012_BALBc-1_X02_Y02_682_927\", \"ini\": 250, \"clust\": 297, \"rank\": 1430, \"rankvar\": 1600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2576, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2185, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2026, \"group\": [295.0, 125.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75078_BALBc-1_X02_Y02_683_754\", \"ini\": 249, \"clust\": 895, \"rank\": 2647, \"rankvar\": 2530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2577, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1685, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2127, \"group\": [895.0, 374.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75093_BALBc-1_X02_Y02_683_961\", \"ini\": 248, \"clust\": 2006, \"rank\": 663, \"rankvar\": 562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2578, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2186, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1152, \"group\": [2006.0, 791.0, 206.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75122_BALBc-1_X02_Y02_684_41\", \"ini\": 247, \"clust\": 1638, \"rank\": 125, \"rankvar\": 27, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2579, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1686, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1580, \"group\": [1636.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75210_BALBc-1_X02_Y02_685_709\", \"ini\": 246, \"clust\": 763, \"rank\": 899, \"rankvar\": 1153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2580, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 556, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1914, \"group\": [762.0, 314.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75222_BALBc-1_X02_Y02_685_85\", \"ini\": 245, \"clust\": 1430, \"rank\": 600, \"rankvar\": 636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2581, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 557, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1153, \"group\": [1430.0, 594.0, 160.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75253_BALBc-1_X02_Y02_686_343\", \"ini\": 244, \"clust\": 2243, \"rank\": 1739, \"rankvar\": 1555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2582, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 868, \"cat-2\": \"Density: 22\", \"cat_2_index\": 334, \"group\": [2244.0, 908.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75823_BALBc-1_X02_Y02_692_891\", \"ini\": 243, \"clust\": 280, \"rank\": 859, \"rankvar\": 1592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2583, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 558, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2292, \"group\": [278.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75887_BALBc-1_X02_Y02_693_684\", \"ini\": 242, \"clust\": 911, \"rank\": 2527, \"rankvar\": 2422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2584, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 869, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1446, \"group\": [911.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76096_BALBc-1_X02_Y02_696_645\", \"ini\": 241, \"clust\": 912, \"rank\": 2427, \"rankvar\": 2409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2585, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 870, \"cat-2\": \"Density: 27\", \"cat_2_index\": 996, \"group\": [912.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76103_BALBc-1_X02_Y02_696_735\", \"ini\": 240, \"clust\": 1272, \"rank\": 960, \"rankvar\": 1437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2586, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 559, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2027, \"group\": [1286.0, 563.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76294_BALBc-1_X02_Y02_699_112\", \"ini\": 239, \"clust\": 1352, \"rank\": 314, \"rankvar\": 75, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2587, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 934, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1154, \"group\": [1350.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76538_BALBc-1_X02_Y02_700_290\", \"ini\": 238, \"clust\": 2107, \"rank\": 310, \"rankvar\": 1287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2588, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1498, \"cat-2\": \"Density: 24\", \"cat_2_index\": 570, \"group\": [2108.0, 834.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76553_BALBc-1_X02_Y02_700_423\", \"ini\": 237, \"clust\": 1875, \"rank\": 886, \"rankvar\": 1262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2589, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1499, \"cat-2\": \"Density: 23\", \"cat_2_index\": 450, \"group\": [1874.0, 711.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76803_BALBc-1_X02_Y02_703_773\", \"ini\": 236, \"clust\": 739, \"rank\": 2099, \"rankvar\": 2310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2590, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 560, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2362, \"group\": [740.0, 301.0, 85.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76901_BALBc-1_X02_Y02_704_869\", \"ini\": 235, \"clust\": 207, \"rank\": 2354, \"rankvar\": 2673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1500, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2207, \"group\": [203.0, 102.0, 32.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77001_BALBc-1_X02_Y02_706_34\", \"ini\": 234, \"clust\": 566, \"rank\": 2033, \"rankvar\": 1019, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2592, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1687, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1581, \"group\": [567.0, 237.0, 69.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77014_BALBc-1_X02_Y02_706_510\", \"ini\": 233, \"clust\": 2066, \"rank\": 1249, \"rankvar\": 1645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2593, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1501, \"cat-2\": \"Density: 24\", \"cat_2_index\": 571, \"group\": [2065.0, 820.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77039_BALBc-1_X02_Y02_706_830\", \"ini\": 232, \"clust\": 232, \"rank\": 1435, \"rankvar\": 842, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2594, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1502, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2420, \"group\": [234.0, 117.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77074_BALBc-1_X02_Y02_707_326\", \"ini\": 231, \"clust\": 75, \"rank\": 1756, \"rankvar\": 1151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2595, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1503, \"cat-2\": \"Density: 22\", \"cat_2_index\": 335, \"group\": [75.0, 47.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77093_BALBc-1_X02_Y02_707_617\", \"ini\": 230, \"clust\": 908, \"rank\": 2335, \"rankvar\": 2391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2596, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2737, \"cat-2\": \"Density: 27\", \"cat_2_index\": 997, \"group\": [910.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77135_BALBc-1_X02_Y02_707_975\", \"ini\": 229, \"clust\": 1305, \"rank\": 460, \"rankvar\": 300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2597, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 561, \"cat-2\": \"Density: 23\", \"cat_2_index\": 451, \"group\": [1304.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77220_BALBc-1_X02_Y02_709_226\", \"ini\": 228, \"clust\": 2174, \"rank\": 1508, \"rankvar\": 1483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2598, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1762, \"cat-2\": \"Density: 21\", \"cat_2_index\": 243, \"group\": [2172.0, 864.0, 224.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77373_BALBc-1_X02_Y02_710_537\", \"ini\": 227, \"clust\": 767, \"rank\": 1068, \"rankvar\": 2083, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2599, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1504, \"cat-2\": \"Density: 26\", \"cat_2_index\": 849, \"group\": [764.0, 315.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77376_BALBc-1_X02_Y02_710_565\", \"ini\": 226, \"clust\": 1041, \"rank\": 1154, \"rankvar\": 1013, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2600, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2738, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1155, \"group\": [1042.0, 462.0, 131.0, 36.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77395_BALBc-1_X02_Y02_710_791\", \"ini\": 225, \"clust\": 524, \"rank\": 2104, \"rankvar\": 2094, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2601, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 562, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2028, \"group\": [523.0, 211.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77586_BALBc-1_X02_Y02_712_99\", \"ini\": 224, \"clust\": 2205, \"rank\": 1357, \"rankvar\": 1416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2602, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 563, \"cat-2\": \"Density: 27\", \"cat_2_index\": 998, \"group\": [2206.0, 890.0, 233.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77673_BALBc-1_X02_Y02_714_203\", \"ini\": 223, \"clust\": 2722, \"rank\": 2701, \"rankvar\": 2464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2603, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2739, \"cat-2\": \"Density: 24\", \"cat_2_index\": 572, \"group\": [2721.0, 1171.0, 313.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77790_BALBc-1_X02_Y02_715_74\", \"ini\": 222, \"clust\": 1734, \"rank\": 131, \"rankvar\": 794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2604, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1990, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1156, \"group\": [1734.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77983_BALBc-1_X02_Y02_717_921\", \"ini\": 221, \"clust\": 694, \"rank\": 2178, \"rankvar\": 1606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2605, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 564, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1915, \"group\": [692.0, 283.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78066_BALBc-1_X02_Y02_719_1006\", \"ini\": 220, \"clust\": 461, \"rank\": 2291, \"rankvar\": 1227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2606, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 565, \"cat-2\": \"Density: 16\", \"cat_2_index\": 65, \"group\": [462.0, 175.0, 46.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78175_BALBc-1_X02_Y02_72_479\", \"ini\": 219, \"clust\": 715, \"rank\": 2815, \"rankvar\": 2654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2607, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 871, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2029, \"group\": [714.0, 291.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78545_BALBc-1_X02_Y02_724_169\", \"ini\": 218, \"clust\": 1969, \"rank\": 1709, \"rankvar\": 2550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2608, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 935, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1582, \"group\": [1970.0, 771.0, 202.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78626_BALBc-1_X02_Y02_725_382\", \"ini\": 217, \"clust\": 2178, \"rank\": 1449, \"rankvar\": 1783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2609, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 872, \"cat-2\": \"Density: 22\", \"cat_2_index\": 336, \"group\": [2178.0, 868.0, 226.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78655_BALBc-1_X02_Y02_725_758\", \"ini\": 216, \"clust\": 1007, \"rank\": 1806, \"rankvar\": 1959, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2610, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 566, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1818, \"group\": [1008.0, 431.0, 121.0, 33.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78673_BALBc-1_X02_Y02_725_953\", \"ini\": 215, \"clust\": 452, \"rank\": 2292, \"rankvar\": 1629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2611, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2187, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1157, \"group\": [448.0, 169.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78684_BALBc-1_X02_Y02_726_124\", \"ini\": 214, \"clust\": 1967, \"rank\": 1071, \"rankvar\": 1283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2612, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 873, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1158, \"group\": [1966.0, 767.0, 201.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78789_BALBc-1_X02_Y02_727_511\", \"ini\": 213, \"clust\": 2210, \"rank\": 2114, \"rankvar\": 2191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2613, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1505, \"cat-2\": \"Density: 23\", \"cat_2_index\": 452, \"group\": [2210.0, 894.0, 234.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78889_BALBc-1_X02_Y02_728_781\", \"ini\": 212, \"clust\": 2813, \"rank\": 1580, \"rankvar\": 1906, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2614, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 567, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2128, \"group\": [2814.0, 1220.0, 324.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78953_BALBc-1_X02_Y02_729_688\", \"ini\": 211, \"clust\": 832, \"rank\": 2448, \"rankvar\": 2235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2615, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2740, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1583, \"group\": [830.0, 346.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78974_BALBc-1_X02_Y02_729_890\", \"ini\": 210, \"clust\": 1813, \"rank\": 92, \"rankvar\": 332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2616, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 568, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2208, \"group\": [1816.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78999_BALBc-1_X02_Y02_73_354\", \"ini\": 209, \"clust\": 848, \"rank\": 2226, \"rankvar\": 2498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2617, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2741, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1159, \"group\": [851.0, 357.0, 99.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79016_BALBc-1_X02_Y02_73_624\", \"ini\": 208, \"clust\": 2783, \"rank\": 2781, \"rankvar\": 2553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2618, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1506, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1584, \"group\": [2782.0, 1203.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79095_BALBc-1_X02_Y02_730_647\", \"ini\": 207, \"clust\": 2031, \"rank\": 1293, \"rankvar\": 1921, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2619, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2742, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1447, \"group\": [2032.0, 803.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79236_BALBc-1_X02_Y02_732_35\", \"ini\": 206, \"clust\": 2614, \"rank\": 677, \"rankvar\": 1166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2620, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 941, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1308, \"group\": [2613.0, 1102.0, 286.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79458_BALBc-1_X02_Y02_734_917\", \"ini\": 205, \"clust\": 204, \"rank\": 2633, \"rankvar\": 2744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2621, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2188, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2030, \"group\": [205.0, 102.0, 32.0, 10.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79623_BALBc-1_X02_Y02_737_105\", \"ini\": 204, \"clust\": 2183, \"rank\": 684, \"rankvar\": 840, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2622, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 874, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1160, \"group\": [2181.0, 869.0, 226.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79762_BALBc-1_X02_Y02_738_804\", \"ini\": 203, \"clust\": 1555, \"rank\": 1205, \"rankvar\": 351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2623, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1507, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2209, \"group\": [1560.0, 658.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79767_BALBc-1_X02_Y02_738_865\", \"ini\": 202, \"clust\": 1381, \"rank\": 1115, \"rankvar\": 836, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2624, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1508, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2421, \"group\": [1381.0, 578.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79785_BALBc-1_X02_Y02_739_196\", \"ini\": 201, \"clust\": 1786, \"rank\": 94, \"rankvar\": 309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2625, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2743, \"cat-2\": \"Density: 24\", \"cat_2_index\": 573, \"group\": [1787.0, 688.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79862_BALBc-1_X02_Y02_739_981\", \"ini\": 200, \"clust\": 1691, \"rank\": 121, \"rankvar\": 112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2626, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2189, \"cat-2\": \"Density: 22\", \"cat_2_index\": 337, \"group\": [1691.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79984_BALBc-1_X02_Y02_740_709\", \"ini\": 199, \"clust\": 65, \"rank\": 1718, \"rankvar\": 2489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2627, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2744, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1916, \"group\": [68.0, 42.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80165_BALBc-1_X02_Y02_743_497\", \"ini\": 198, \"clust\": 1930, \"rank\": 1961, \"rankvar\": 2386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2628, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1509, \"cat-2\": \"Density: 25\", \"cat_2_index\": 701, \"group\": [1930.0, 741.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80587_BALBc-1_X02_Y02_748_815\", \"ini\": 197, \"clust\": 223, \"rank\": 942, \"rankvar\": 1231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2629, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2190, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2210, \"group\": [222.0, 111.0, 36.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80635_BALBc-1_X02_Y02_749_454\", \"ini\": 196, \"clust\": 2010, \"rank\": 1529, \"rankvar\": 1582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2630, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1510, \"cat-2\": \"Density: 27\", \"cat_2_index\": 999, \"group\": [2014.0, 795.0, 208.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80695_BALBc-1_X02_Y02_75_13\", \"ini\": 195, \"clust\": 1411, \"rank\": 1215, \"rankvar\": 1038, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2631, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1511, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1309, \"group\": [1413.0, 587.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80817_BALBc-1_X02_Y02_750_584\", \"ini\": 194, \"clust\": 830, \"rank\": 2768, \"rankvar\": 2765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2632, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1512, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1161, \"group\": [831.0, 346.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81059_BALBc-1_X02_Y02_753_779\", \"ini\": 193, \"clust\": 44, \"rank\": 1094, \"rankvar\": 2595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2633, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 569, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2129, \"group\": [41.0, 23.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81060_BALBc-1_X02_Y02_753_793\", \"ini\": 192, \"clust\": 1155, \"rank\": 1512, \"rankvar\": 764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2634, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 570, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2130, \"group\": [1156.0, 532.0, 155.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81068_BALBc-1_X02_Y02_753_897\", \"ini\": 191, \"clust\": 1911, \"rank\": 1987, \"rankvar\": 1439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2635, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2191, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2131, \"group\": [1912.0, 730.0, 187.0, 49.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81108_BALBc-1_X02_Y02_754_416\", \"ini\": 190, \"clust\": 1503, \"rank\": 590, \"rankvar\": 336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2636, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 571, \"cat-2\": \"Density: 25\", \"cat_2_index\": 702, \"group\": [1503.0, 631.0, 171.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81179_BALBc-1_X02_Y02_755_323\", \"ini\": 189, \"clust\": 1473, \"rank\": 925, \"rankvar\": 1913, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2637, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 875, \"cat-2\": \"Density: 22\", \"cat_2_index\": 338, \"group\": [1473.0, 622.0, 170.0, 47.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81222_BALBc-1_X02_Y02_755_881\", \"ini\": 188, \"clust\": 268, \"rank\": 1524, \"rankvar\": 1827, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2638, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2192, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1917, \"group\": [269.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81284_BALBc-1_X02_Y02_756_634\", \"ini\": 187, \"clust\": 847, \"rank\": 2473, \"rankvar\": 1761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2639, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2745, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1819, \"group\": [848.0, 356.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81466_BALBc-1_X02_Y02_758_853\", \"ini\": 186, \"clust\": 243, \"rank\": 2105, \"rankvar\": 2125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2640, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2193, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2422, \"group\": [247.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81536_BALBc-1_X02_Y02_759_820\", \"ini\": 185, \"clust\": 1267, \"rank\": 579, \"rankvar\": 689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2641, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2194, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2031, \"group\": [1269.0, 556.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81627_BALBc-1_X02_Y02_760_153\", \"ini\": 184, \"clust\": 1460, \"rank\": 733, \"rankvar\": 420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2642, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 876, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1162, \"group\": [1459.0, 610.0, 164.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81992_BALBc-1_X02_Y02_764_995\", \"ini\": 183, \"clust\": 667, \"rank\": 2289, \"rankvar\": 1191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2643, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2195, \"cat-2\": \"Density: 21\", \"cat_2_index\": 244, \"group\": [666.0, 277.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82113_BALBc-1_X02_Y02_766_756\", \"ini\": 182, \"clust\": 1552, \"rank\": 853, \"rankvar\": 316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2644, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2746, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2293, \"group\": [1555.0, 654.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82616_BALBc-1_X02_Y02_772_197\", \"ini\": 181, \"clust\": 1755, \"rank\": 107, \"rankvar\": 126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2645, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2747, \"cat-2\": \"Density: 26\", \"cat_2_index\": 850, \"group\": [1755.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82799_BALBc-1_X02_Y02_774_509\", \"ini\": 180, \"clust\": 1085, \"rank\": 458, \"rankvar\": 494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2646, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1513, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1000, \"group\": [1084.0, 489.0, 144.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82871_BALBc-1_X02_Y02_775_626\", \"ini\": 179, \"clust\": 322, \"rank\": 1898, \"rankvar\": 1808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2647, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2815, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2032, \"group\": [324.0, 135.0, 40.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82932_BALBc-1_X02_Y02_776_234\", \"ini\": 178, \"clust\": 1931, \"rank\": 1376, \"rankvar\": 2633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2648, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2748, \"cat-2\": \"Density: 25\", \"cat_2_index\": 703, \"group\": [1931.0, 742.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83113_BALBc-1_X02_Y02_778_564\", \"ini\": 177, \"clust\": 95, \"rank\": 2816, \"rankvar\": 2820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2649, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1555, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1310, \"group\": [91.0, 55.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83255_BALBc-1_X02_Y02_78_243\", \"ini\": 176, \"clust\": 1946, \"rank\": 765, \"rankvar\": 1303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2650, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2749, \"cat-2\": \"Density: 19\", \"cat_2_index\": 135, \"group\": [1947.0, 753.0, 192.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83347_BALBc-1_X02_Y02_780_648\", \"ini\": 175, \"clust\": 883, \"rank\": 1442, \"rankvar\": 2109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2651, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2750, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1918, \"group\": [884.0, 373.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83401_BALBc-1_X02_Y02_781_370\", \"ini\": 174, \"clust\": 1005, \"rank\": 2580, \"rankvar\": 2521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2652, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 877, \"cat-2\": \"Density: 23\", \"cat_2_index\": 453, \"group\": [1006.0, 430.0, 121.0, 33.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83432_BALBc-1_X02_Y02_781_781\", \"ini\": 173, \"clust\": 933, \"rank\": 2486, \"rankvar\": 1261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2653, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 572, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2211, \"group\": [933.0, 381.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83518_BALBc-1_X02_Y02_782_947\", \"ini\": 172, \"clust\": 1404, \"rank\": 989, \"rankvar\": 1221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2654, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2196, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1585, \"group\": [1401.0, 583.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83545_BALBc-1_X02_Y02_783_408\", \"ini\": 171, \"clust\": 1170, \"rank\": 1006, \"rankvar\": 259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2655, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 573, \"cat-2\": \"Density: 20\", \"cat_2_index\": 183, \"group\": [1171.0, 541.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83579_BALBc-1_X02_Y02_783_829\", \"ini\": 170, \"clust\": 271, \"rank\": 1567, \"rankvar\": 1506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2656, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2197, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2212, \"group\": [265.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83813_BALBc-1_X02_Y02_786_688\", \"ini\": 169, \"clust\": 939, \"rank\": 2650, \"rankvar\": 2160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2657, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2751, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1919, \"group\": [937.0, 382.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83857_BALBc-1_X02_Y02_787_296\", \"ini\": 168, \"clust\": 2075, \"rank\": 1498, \"rankvar\": 1970, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2658, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1763, \"cat-2\": \"Density: 23\", \"cat_2_index\": 454, \"group\": [2075.0, 825.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84179_BALBc-1_X02_Y02_790_487\", \"ini\": 167, \"clust\": 2794, \"rank\": 2645, \"rankvar\": 2543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2659, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2752, \"cat-2\": \"Density: 22\", \"cat_2_index\": 339, \"group\": [2796.0, 1210.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84223_BALBc-1_X02_Y02_791_169\", \"ini\": 166, \"clust\": 2542, \"rank\": 1385, \"rankvar\": 1837, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2660, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 731, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1163, \"group\": [2546.0, 1061.0, 275.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84480_BALBc-1_X02_Y02_793_920\", \"ini\": 165, \"clust\": 362, \"rank\": 2799, \"rankvar\": 2686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2661, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2198, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1920, \"group\": [365.0, 150.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84554_BALBc-1_X02_Y02_794_978\", \"ini\": 164, \"clust\": 1337, \"rank\": 334, \"rankvar\": 313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2662, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2199, \"cat-2\": \"Density: 24\", \"cat_2_index\": 574, \"group\": [1336.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84577_BALBc-1_X02_Y02_795_333\", \"ini\": 163, \"clust\": 1984, \"rank\": 1882, \"rankvar\": 1354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2663, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 574, \"cat-2\": \"Density: 23\", \"cat_2_index\": 455, \"group\": [1988.0, 780.0, 203.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84864_BALBc-1_X02_Y02_798_754\", \"ini\": 162, \"clust\": 1559, \"rank\": 483, \"rankvar\": 948, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2664, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1514, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2213, \"group\": [1557.0, 655.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85074_BALBc-1_X02_Y02_80_689\", \"ini\": 161, \"clust\": 1143, \"rank\": 1010, \"rankvar\": 179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2665, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1515, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2132, \"group\": [1144.0, 526.0, 154.0, 43.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85146_BALBc-1_X02_Y02_800_596\", \"ini\": 160, \"clust\": 1166, \"rank\": 1322, \"rankvar\": 769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2666, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2816, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1586, \"group\": [1169.0, 540.0, 157.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85365_BALBc-1_X02_Y02_803_450\", \"ini\": 159, \"clust\": 1789, \"rank\": 418, \"rankvar\": 367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2667, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 575, \"cat-2\": \"Density: 22\", \"cat_2_index\": 340, \"group\": [1790.0, 688.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85452_BALBc-1_X02_Y02_804_6\", \"ini\": 158, \"clust\": 2685, \"rank\": 2510, \"rankvar\": 2604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2668, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 942, \"cat-2\": \"Density: 26\", \"cat_2_index\": 851, \"group\": [2684.0, 1141.0, 301.0, 75.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85759_BALBc-1_X02_Y02_808_377\", \"ini\": 157, \"clust\": 2745, \"rank\": 2529, \"rankvar\": 2385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2669, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 576, \"cat-2\": \"Density: 23\", \"cat_2_index\": 456, \"group\": [2747.0, 1185.0, 316.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85916_BALBc-1_X02_Y02_81_656\", \"ini\": 156, \"clust\": 493, \"rank\": 1715, \"rankvar\": 923, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2670, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1516, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2214, \"group\": [494.0, 194.0, 54.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85926_BALBc-1_X02_Y02_81_785\", \"ini\": 155, \"clust\": 720, \"rank\": 2667, \"rankvar\": 1799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2671, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1517, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1001, \"group\": [720.0, 295.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85942_BALBc-1_X02_Y02_81_991\", \"ini\": 154, \"clust\": 781, \"rank\": 1219, \"rankvar\": 1881, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2672, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1518, \"cat-2\": \"Density: 16\", \"cat_2_index\": 66, \"group\": [788.0, 327.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86002_BALBc-1_X02_Y02_810_796\", \"ini\": 153, \"clust\": 1210, \"rank\": 285, \"rankvar\": 605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2673, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 577, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2294, \"group\": [1208.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86177_BALBc-1_X02_Y02_813_187\", \"ini\": 152, \"clust\": 2647, \"rank\": 1149, \"rankvar\": 2510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2674, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1556, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1164, \"group\": [2648.0, 1121.0, 292.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86247_BALBc-1_X02_Y02_813_882\", \"ini\": 151, \"clust\": 272, \"rank\": 1570, \"rankvar\": 1724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2675, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2200, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2033, \"group\": [266.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86277_BALBc-1_X02_Y02_814_239\", \"ini\": 150, \"clust\": 1724, \"rank\": 93, \"rankvar\": 515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2676, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2497, \"cat-2\": \"Density: 24\", \"cat_2_index\": 575, \"group\": [1723.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86338_BALBc-1_X02_Y02_814_833\", \"ini\": 149, \"clust\": 244, \"rank\": 1820, \"rankvar\": 1754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2677, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2201, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2295, \"group\": [246.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86350_BALBc-1_X02_Y02_815_1001\", \"ini\": 148, \"clust\": 1013, \"rank\": 2030, \"rankvar\": 1711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2678, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 578, \"cat-2\": \"Density: 17\", \"cat_2_index\": 84, \"group\": [1013.0, 435.0, 122.0, 34.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86446_BALBc-1_X02_Y02_816_410\", \"ini\": 147, \"clust\": 1776, \"rank\": 704, \"rankvar\": 314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2679, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 579, \"cat-2\": \"Density: 25\", \"cat_2_index\": 704, \"group\": [1777.0, 685.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86456_BALBc-1_X02_Y02_816_577\", \"ini\": 146, \"clust\": 1178, \"rank\": 972, \"rankvar\": 1548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2680, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1557, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1448, \"group\": [1181.0, 545.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86485_BALBc-1_X02_Y02_816_906\", \"ini\": 145, \"clust\": 278, \"rank\": 1218, \"rankvar\": 911, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2681, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2202, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1820, \"group\": [281.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86584_BALBc-1_X02_Y02_818_376\", \"ini\": 144, \"clust\": 1868, \"rank\": 511, \"rankvar\": 1964, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2682, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 580, \"cat-2\": \"Density: 24\", \"cat_2_index\": 576, \"group\": [1869.0, 708.0, 183.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86654_BALBc-1_X02_Y02_819_312\", \"ini\": 143, \"clust\": 2160, \"rank\": 1452, \"rankvar\": 2106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2683, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 581, \"cat-2\": \"Density: 23\", \"cat_2_index\": 457, \"group\": [2157.0, 856.0, 222.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86760_BALBc-1_X02_Y02_82_873\", \"ini\": 142, \"clust\": 1201, \"rank\": 467, \"rankvar\": 1404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2684, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1519, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1311, \"group\": [1201.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86819_BALBc-1_X02_Y02_820_592\", \"ini\": 141, \"clust\": 2645, \"rank\": 880, \"rankvar\": 651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2685, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 582, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1587, \"group\": [2646.0, 1120.0, 291.0, 72.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86859_BALBc-1_X02_Y02_821_272\", \"ini\": 140, \"clust\": 2105, \"rank\": 564, \"rankvar\": 1737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2686, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 583, \"cat-2\": \"Density: 24\", \"cat_2_index\": 577, \"group\": [2104.0, 833.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86882_BALBc-1_X02_Y02_821_469\", \"ini\": 139, \"clust\": 1765, \"rank\": 75, \"rankvar\": 274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2687, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2753, \"cat-2\": \"Density: 22\", \"cat_2_index\": 341, \"group\": [1763.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86995_BALBc-1_X02_Y02_822_773\", \"ini\": 138, \"clust\": 326, \"rank\": 1903, \"rankvar\": 255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2688, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 584, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2034, \"group\": [328.0, 138.0, 41.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87010_BALBc-1_X02_Y02_822_970\", \"ini\": 137, \"clust\": 242, \"rank\": 2055, \"rankvar\": 2222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2689, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2203, \"cat-2\": \"Density: 25\", \"cat_2_index\": 705, \"group\": [241.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87223_BALBc-1_X02_Y02_825_637\", \"ini\": 136, \"clust\": 1689, \"rank\": 277, \"rankvar\": 115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2690, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2754, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2035, \"group\": [1689.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87231_BALBc-1_X02_Y02_825_685\", \"ini\": 135, \"clust\": 91, \"rank\": 2822, \"rankvar\": 2761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2691, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1520, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2215, \"group\": [89.0, 55.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87361_BALBc-1_X02_Y02_827_663\", \"ini\": 134, \"clust\": 521, \"rank\": 2492, \"rankvar\": 2462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2692, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2755, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2423, \"group\": [521.0, 210.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87401_BALBc-1_X02_Y02_828_136\", \"ini\": 133, \"clust\": 2354, \"rank\": 938, \"rankvar\": 455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2693, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 878, \"cat-2\": \"Density: 25\", \"cat_2_index\": 706, \"group\": [2357.0, 963.0, 251.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87753_BALBc-1_X02_Y02_831_750\", \"ini\": 132, \"clust\": 1413, \"rank\": 1166, \"rankvar\": 278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2694, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1521, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2036, \"group\": [1412.0, 587.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87772_BALBc-1_X02_Y02_832_176\", \"ini\": 131, \"clust\": 2207, \"rank\": 1418, \"rankvar\": 1641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2695, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1558, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1165, \"group\": [2208.0, 892.0, 233.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87940_BALBc-1_X02_Y02_834_449\", \"ini\": 130, \"clust\": 2038, \"rank\": 652, \"rankvar\": 492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2696, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 585, \"cat-2\": \"Density: 22\", \"cat_2_index\": 342, \"group\": [2036.0, 805.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88160_BALBc-1_X02_Y02_837_355\", \"ini\": 129, \"clust\": 1869, \"rank\": 266, \"rankvar\": 1408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2697, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 586, \"cat-2\": \"Density: 23\", \"cat_2_index\": 458, \"group\": [1870.0, 708.0, 183.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88190_BALBc-1_X02_Y02_837_668\", \"ini\": 128, \"clust\": 1774, \"rank\": 149, \"rankvar\": 814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2698, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 587, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2296, \"group\": [1773.0, 684.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88264_BALBc-1_X02_Y02_838_719\", \"ini\": 127, \"clust\": 2029, \"rank\": 1112, \"rankvar\": 1053, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2699, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1522, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2133, \"group\": [2030.0, 803.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88363_BALBc-1_X02_Y02_839_932\", \"ini\": 126, \"clust\": 209, \"rank\": 1181, \"rankvar\": 327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2700, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2204, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1704, \"group\": [211.0, 106.0, 35.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88394_BALBc-1_X02_Y02_84_515\", \"ini\": 125, \"clust\": 38, \"rank\": 654, \"rankvar\": 2534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2701, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1523, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1921, \"group\": [38.0, 22.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88440_BALBc-1_X02_Y02_84_969\", \"ini\": 124, \"clust\": 1251, \"rank\": 549, \"rankvar\": 1540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2702, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1524, \"cat-2\": \"Density: 20\", \"cat_2_index\": 184, \"group\": [1250.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88503_BALBc-1_X02_Y02_840_832\", \"ini\": 123, \"clust\": 686, \"rank\": 1912, \"rankvar\": 812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2703, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 588, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2134, \"group\": [686.0, 281.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88555_BALBc-1_X02_Y02_841_439\", \"ini\": 122, \"clust\": 2186, \"rank\": 1626, \"rankvar\": 634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2704, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 589, \"cat-2\": \"Density: 23\", \"cat_2_index\": 459, \"group\": [2186.0, 874.0, 227.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88760_BALBc-1_X02_Y02_844_277\", \"ini\": 121, \"clust\": 1032, \"rank\": 898, \"rankvar\": 335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2705, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 590, \"cat-2\": \"Density: 22\", \"cat_2_index\": 343, \"group\": [1031.0, 452.0, 127.0, 35.0, 8.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88917_BALBc-1_X02_Y02_846_331\", \"ini\": 120, \"clust\": 1301, \"rank\": 421, \"rankvar\": 32, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2706, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 591, \"cat-2\": \"Density: 24\", \"cat_2_index\": 578, \"group\": [1302.0, 568.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88934_BALBc-1_X02_Y02_846_601\", \"ini\": 119, \"clust\": 2547, \"rank\": 1540, \"rankvar\": 1150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2707, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2756, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1705, \"group\": [2550.0, 1064.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88985_BALBc-1_X02_Y02_847_249\", \"ini\": 118, \"clust\": 2799, \"rank\": 1319, \"rankvar\": 1144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2708, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2498, \"cat-2\": \"Density: 25\", \"cat_2_index\": 707, \"group\": [2799.0, 1212.0, 322.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89032_BALBc-1_X02_Y02_847_706\", \"ini\": 117, \"clust\": 266, \"rank\": 1928, \"rankvar\": 1603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2709, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 592, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2216, \"group\": [271.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89042_BALBc-1_X02_Y02_847_797\", \"ini\": 116, \"clust\": 1219, \"rank\": 452, \"rankvar\": 753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2710, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2817, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2037, \"group\": [1217.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89169_BALBc-1_X02_Y02_849_386\", \"ini\": 115, \"clust\": 2150, \"rank\": 1902, \"rankvar\": 804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2711, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 593, \"cat-2\": \"Density: 23\", \"cat_2_index\": 460, \"group\": [2152.0, 852.0, 220.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89338_BALBc-1_X02_Y02_850_734\", \"ini\": 114, \"clust\": 780, \"rank\": 987, \"rankvar\": 908, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2712, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 594, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2038, \"group\": [780.0, 322.0, 92.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89357_BALBc-1_X02_Y02_851_140\", \"ini\": 113, \"clust\": 315, \"rank\": 1110, \"rankvar\": 272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2713, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 879, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1002, \"group\": [315.0, 131.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89396_BALBc-1_X02_Y02_851_573\", \"ini\": 112, \"clust\": 904, \"rank\": 2476, \"rankvar\": 2258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2714, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1559, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1312, \"group\": [903.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89419_BALBc-1_X02_Y02_851_872\", \"ini\": 111, \"clust\": 1217, \"rank\": 638, \"rankvar\": 913, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2715, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2205, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1821, \"group\": [1218.0, 550.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89427_BALBc-1_X02_Y02_852_1004\", \"ini\": 110, \"clust\": 528, \"rank\": 1849, \"rankvar\": 1063, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2716, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 595, \"cat-2\": \"Density: 16\", \"cat_2_index\": 67, \"group\": [528.0, 214.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89491_BALBc-1_X02_Y02_852_856\", \"ini\": 109, \"clust\": 1082, \"rank\": 1191, \"rankvar\": 825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2717, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 596, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1922, \"group\": [1086.0, 491.0, 144.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89556_BALBc-1_X02_Y02_853_642\", \"ini\": 108, \"clust\": 421, \"rank\": 2209, \"rankvar\": 846, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2718, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2757, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2135, \"group\": [421.0, 159.0, 43.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89743_BALBc-1_X02_Y02_855_754\", \"ini\": 107, \"clust\": 690, \"rank\": 1939, \"rankvar\": 380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2719, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2818, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1822, \"group\": [695.0, 283.0, 81.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89977_BALBc-1_X02_Y02_858_899\", \"ini\": 106, \"clust\": 1422, \"rank\": 1026, \"rankvar\": 620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2720, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2206, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1706, \"group\": [1425.0, 590.0, 159.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90055_BALBc-1_X02_Y02_859_983\", \"ini\": 105, \"clust\": 415, \"rank\": 2247, \"rankvar\": 1877, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2721, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 597, \"cat-2\": \"Density: 24\", \"cat_2_index\": 579, \"group\": [418.0, 157.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90109_BALBc-1_X02_Y02_86_60\", \"ini\": 104, \"clust\": 2280, \"rank\": 2013, \"rankvar\": 1443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2722, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 732, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1313, \"group\": [2285.0, 931.0, 242.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90319_BALBc-1_X02_Y02_862_37\", \"ini\": 103, \"clust\": 1255, \"rank\": 551, \"rankvar\": 493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2723, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1991, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1003, \"group\": [1259.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90441_BALBc-1_X02_Y02_864_212\", \"ini\": 102, \"clust\": 2809, \"rank\": 2317, \"rankvar\": 2592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2724, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2499, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1166, \"group\": [2807.0, 1218.0, 323.0, 80.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90472_BALBc-1_X02_Y02_864_516\", \"ini\": 101, \"clust\": 1554, \"rank\": 130, \"rankvar\": 610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2725, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1525, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1004, \"group\": [1554.0, 653.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90584_BALBc-1_X02_Y02_865_954\", \"ini\": 100, \"clust\": 2025, \"rank\": 694, \"rankvar\": 1270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2726, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2207, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1314, \"group\": [2027.0, 802.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90756_BALBc-1_X02_Y02_868_247\", \"ini\": 99, \"clust\": 107, \"rank\": 2190, \"rankvar\": 2261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2727, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1764, \"cat-2\": \"Density: 24\", \"cat_2_index\": 580, \"group\": [108.0, 63.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90964_BALBc-1_X02_Y02_87_810\", \"ini\": 98, \"clust\": 29, \"rank\": 1216, \"rankvar\": 1142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2728, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1688, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1167, \"group\": [28.0, 19.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90993_BALBc-1_X02_Y02_870_113\", \"ini\": 97, \"clust\": 1919, \"rank\": 885, \"rankvar\": 2136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2729, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 645, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1005, \"group\": [1919.0, 736.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91037_BALBc-1_X02_Y02_870_608\", \"ini\": 96, \"clust\": 929, \"rank\": 2742, \"rankvar\": 2140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2730, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2758, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1588, \"group\": [930.0, 381.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91170_BALBc-1_X02_Y02_872_455\", \"ini\": 95, \"clust\": 1730, \"rank\": 138, \"rankvar\": 1162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2731, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1526, \"cat-2\": \"Density: 19\", \"cat_2_index\": 136, \"group\": [1730.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91208_BALBc-1_X02_Y02_872_797\", \"ini\": 94, \"clust\": 365, \"rank\": 2712, \"rankvar\": 1712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2732, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2819, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1923, \"group\": [363.0, 150.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91245_BALBc-1_X02_Y02_873_333\", \"ini\": 93, \"clust\": 2227, \"rank\": 2159, \"rankvar\": 2490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2733, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 598, \"cat-2\": \"Density: 25\", \"cat_2_index\": 708, \"group\": [2226.0, 903.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91506_BALBc-1_X02_Y02_876_651\", \"ini\": 92, \"clust\": 1678, \"rank\": 42, \"rankvar\": 96, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2734, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2759, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2217, \"group\": [1680.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91693_BALBc-1_X02_Y02_879_140\", \"ini\": 91, \"clust\": 2360, \"rank\": 1247, \"rankvar\": 1242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2735, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 646, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1589, \"group\": [2361.0, 966.0, 251.0, 63.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91994_BALBc-1_X02_Y02_881_868\", \"ini\": 90, \"clust\": 424, \"rank\": 1940, \"rankvar\": 916, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2736, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2208, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1707, \"group\": [427.0, 163.0, 43.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92030_BALBc-1_X02_Y02_882_354\", \"ini\": 89, \"clust\": 2118, \"rank\": 233, \"rankvar\": 1900, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2737, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 599, \"cat-2\": \"Density: 23\", \"cat_2_index\": 461, \"group\": [2116.0, 834.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92117_BALBc-1_X02_Y02_883_671\", \"ini\": 88, \"clust\": 934, \"rank\": 2508, \"rankvar\": 1537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2738, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2760, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2039, \"group\": [934.0, 381.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92273_BALBc-1_X02_Y02_886_181\", \"ini\": 87, \"clust\": 2371, \"rank\": 812, \"rankvar\": 809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2739, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2466, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1315, \"group\": [2370.0, 972.0, 254.0, 64.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92311_BALBc-1_X02_Y02_886_596\", \"ini\": 86, \"clust\": 923, \"rank\": 2437, \"rankvar\": 1701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2740, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2820, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1316, \"group\": [923.0, 379.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92434_BALBc-1_X02_Y02_888_295\", \"ini\": 85, \"clust\": 2021, \"rank\": 843, \"rankvar\": 717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2741, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 880, \"cat-2\": \"Density: 25\", \"cat_2_index\": 709, \"group\": [2021.0, 798.0, 208.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92552_BALBc-1_X02_Y02_889_735\", \"ini\": 84, \"clust\": 960, \"rank\": 362, \"rankvar\": 304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2742, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 600, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1924, \"group\": [961.0, 399.0, 108.0, 28.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92558_BALBc-1_X02_Y02_889_853\", \"ini\": 83, \"clust\": 418, \"rank\": 2156, \"rankvar\": 1813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2743, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 601, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1708, \"group\": [416.0, 157.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92570_BALBc-1_X02_Y02_889_96\", \"ini\": 82, \"clust\": 1881, \"rank\": 537, \"rankvar\": 190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2744, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 881, \"cat-2\": \"Density: 26\", \"cat_2_index\": 852, \"group\": [1879.0, 714.0, 184.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92700_BALBc-1_X02_Y02_890_746\", \"ini\": 81, \"clust\": 355, \"rank\": 2505, \"rankvar\": 1800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2745, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2821, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1709, \"group\": [352.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92756_BALBc-1_X02_Y02_891_44\", \"ini\": 80, \"clust\": 2140, \"rank\": 746, \"rankvar\": 549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2746, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 882, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1168, \"group\": [2141.0, 843.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92817_BALBc-1_X02_Y02_892_413\", \"ini\": 79, \"clust\": 2188, \"rank\": 1363, \"rankvar\": 1687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2747, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 602, \"cat-2\": \"Density: 26\", \"cat_2_index\": 853, \"group\": [2190.0, 877.0, 228.0, 57.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92906_BALBc-1_X02_Y02_893_546\", \"ini\": 78, \"clust\": 936, \"rank\": 2597, \"rankvar\": 1732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2748, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1527, \"cat-2\": \"Density: 24\", \"cat_2_index\": 581, \"group\": [939.0, 383.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92912_BALBc-1_X02_Y02_893_644\", \"ini\": 77, \"clust\": 455, \"rank\": 2184, \"rankvar\": 1589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2749, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2761, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1925, \"group\": [454.0, 170.0, 45.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92924_BALBc-1_X02_Y02_893_808\", \"ini\": 76, \"clust\": 1816, \"rank\": 30, \"rankvar\": 567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2750, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2822, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1710, \"group\": [1814.0, 694.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93103_BALBc-1_X02_Y02_895_993\", \"ini\": 75, \"clust\": 529, \"rank\": 1962, \"rankvar\": 1159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2751, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 603, \"cat-2\": \"Density: 17\", \"cat_2_index\": 85, \"group\": [529.0, 214.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93223_BALBc-1_X02_Y02_897_705\", \"ini\": 74, \"clust\": 480, \"rank\": 1942, \"rankvar\": 1692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2752, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2762, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2040, \"group\": [480.0, 183.0, 48.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93348_BALBc-1_X02_Y02_899_389\", \"ini\": 73, \"clust\": 1556, \"rank\": 940, \"rankvar\": 939, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2753, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 604, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1006, \"group\": [1559.0, 657.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93415_BALBc-1_X02_Y02_9_38\", \"ini\": 72, \"clust\": 2523, \"rank\": 1631, \"rankvar\": 537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2754, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2467, \"cat-2\": \"Density: 24\", \"cat_2_index\": 582, \"group\": [2524.0, 1051.0, 272.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93437_BALBc-1_X02_Y02_9_690\", \"ini\": 71, \"clust\": 1294, \"rank\": 716, \"rankvar\": 529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2755, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1528, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1711, \"group\": [1358.0, 573.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93474_BALBc-1_X02_Y02_90_174\", \"ini\": 70, \"clust\": 2583, \"rank\": 1346, \"rankvar\": 373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2756, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2763, \"cat-2\": \"Density: 20\", \"cat_2_index\": 185, \"group\": [2584.0, 1085.0, 282.0, 71.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93570_BALBc-1_X02_Y02_900_320\", \"ini\": 69, \"clust\": 2175, \"rank\": 1048, \"rankvar\": 1619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2757, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 605, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1007, \"group\": [2173.0, 864.0, 224.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93778_BALBc-1_X02_Y02_903_445\", \"ini\": 68, \"clust\": 2225, \"rank\": 1434, \"rankvar\": 2306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2758, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1529, \"cat-2\": \"Density: 23\", \"cat_2_index\": 462, \"group\": [2223.0, 903.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93852_BALBc-1_X02_Y02_904_543\", \"ini\": 67, \"clust\": 1566, \"rank\": 292, \"rankvar\": 1670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2759, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1530, \"cat-2\": \"Density: 24\", \"cat_2_index\": 583, \"group\": [1564.0, 660.0, 178.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93948_BALBc-1_X02_Y02_905_80\", \"ini\": 66, \"clust\": 1964, \"rank\": 1086, \"rankvar\": 1775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2760, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 883, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1317, \"group\": [1968.0, 769.0, 201.0, 53.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94108_BALBc-1_X02_Y02_907_946\", \"ini\": 65, \"clust\": 341, \"rank\": 2070, \"rankvar\": 743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2761, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2209, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1449, \"group\": [342.0, 143.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94454_BALBc-1_X02_Y02_911_705\", \"ini\": 64, \"clust\": 1625, \"rank\": 0, \"rankvar\": 460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2762, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2764, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1926, \"group\": [1621.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94481_BALBc-1_X02_Y02_912_148\", \"ini\": 63, \"clust\": 2086, \"rank\": 621, \"rankvar\": 1214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2763, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 647, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1318, \"group\": [2089.0, 829.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94484_BALBc-1_X02_Y02_912_174\", \"ini\": 62, \"clust\": 1339, \"rank\": 304, \"rankvar\": 318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2764, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 606, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1319, \"group\": [1335.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94610_BALBc-1_X02_Y02_913_822\", \"ini\": 61, \"clust\": 366, \"rank\": 2349, \"rankvar\": 2230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2765, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2765, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1450, \"group\": [370.0, 151.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94815_BALBc-1_X02_Y02_916_641\", \"ini\": 60, \"clust\": 1663, \"rank\": 276, \"rankvar\": 94, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2766, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2766, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1590, \"group\": [1664.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94838_BALBc-1_X02_Y02_916_85\", \"ini\": 59, \"clust\": 1635, \"rank\": 227, \"rankvar\": 28, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2767, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 884, \"cat-2\": \"Density: 25\", \"cat_2_index\": 710, \"group\": [1638.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94839_BALBc-1_X02_Y02_916_856\", \"ini\": 58, \"clust\": 932, \"rank\": 2406, \"rankvar\": 1940, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2768, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2767, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1451, \"group\": [935.0, 381.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94853_BALBc-1_X02_Y02_917_213\", \"ini\": 57, \"clust\": 1693, \"rank\": 87, \"rankvar\": 163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2769, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 885, \"cat-2\": \"Density: 26\", \"cat_2_index\": 854, \"group\": [1693.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94891_BALBc-1_X02_Y02_917_742\", \"ini\": 56, \"clust\": 1282, \"rank\": 519, \"rankvar\": 53, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2770, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 607, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1591, \"group\": [1281.0, 561.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95053_BALBc-1_X02_Y02_919_786\", \"ini\": 55, \"clust\": 1311, \"rank\": 569, \"rankvar\": 258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2771, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2823, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1823, \"group\": [1306.0, 569.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95070_BALBc-1_X02_Y02_919_984\", \"ini\": 54, \"clust\": 1202, \"rank\": 340, \"rankvar\": 1100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2772, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2210, \"cat-2\": \"Density: 20\", \"cat_2_index\": 186, \"group\": [1202.0, 549.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95344_BALBc-1_X02_Y02_922_457\", \"ini\": 53, \"clust\": 1260, \"rank\": 424, \"rankvar\": 572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2773, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1531, \"cat-2\": \"Density: 22\", \"cat_2_index\": 344, \"group\": [1257.0, 552.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95351_BALBc-1_X02_Y02_922_549\", \"ini\": 52, \"clust\": 2763, \"rank\": 2824, \"rankvar\": 2732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2774, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2768, \"cat-2\": \"Density: 22\", \"cat_2_index\": 345, \"group\": [2769.0, 1197.0, 319.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95458_BALBc-1_X02_Y02_923_893\", \"ini\": 51, \"clust\": 1852, \"rank\": 587, \"rankvar\": 164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2775, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2211, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1452, \"group\": [1851.0, 701.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95495_BALBc-1_X02_Y02_924_349\", \"ini\": 50, \"clust\": 45, \"rank\": 1794, \"rankvar\": 1014, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2776, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 608, \"cat-2\": \"Density: 24\", \"cat_2_index\": 584, \"group\": [50.0, 32.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95866_BALBc-1_X02_Y02_928_872\", \"ini\": 49, \"clust\": 358, \"rank\": 2333, \"rankvar\": 2204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2777, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2769, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1592, \"group\": [358.0, 147.0, 42.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95874_BALBc-1_X02_Y02_929_132\", \"ini\": 48, \"clust\": 1924, \"rank\": 1279, \"rankvar\": 2305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2778, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2468, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1320, \"group\": [1929.0, 740.0, 190.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96102_BALBc-1_X02_Y02_931_305\", \"ini\": 47, \"clust\": 2119, \"rank\": 599, \"rankvar\": 919, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2779, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 886, \"cat-2\": \"Density: 24\", \"cat_2_index\": 585, \"group\": [2117.0, 834.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96234_BALBc-1_X02_Y02_932_924\", \"ini\": 46, \"clust\": 270, \"rank\": 1836, \"rankvar\": 1644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2780, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2212, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1593, \"group\": [267.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96350_BALBc-1_X02_Y02_934_713\", \"ini\": 45, \"clust\": 325, \"rank\": 1804, \"rankvar\": 1595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2781, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2770, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1594, \"group\": [329.0, 139.0, 41.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96428_BALBc-1_X02_Y02_935_613\", \"ini\": 44, \"clust\": 816, \"rank\": 1782, \"rankvar\": 1932, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2782, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 609, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1321, \"group\": [818.0, 339.0, 96.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96640_BALBc-1_X02_Y02_938_684\", \"ini\": 43, \"clust\": 495, \"rank\": 2121, \"rankvar\": 903, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2783, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2771, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1453, \"group\": [496.0, 195.0, 54.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97000_BALBc-1_X02_Y02_942_474\", \"ini\": 42, \"clust\": 772, \"rank\": 1688, \"rankvar\": 1973, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2784, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2772, \"cat-2\": \"Density: 23\", \"cat_2_index\": 463, \"group\": [770.0, 316.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97011_BALBc-1_X02_Y02_942_662\", \"ini\": 41, \"clust\": 313, \"rank\": 887, \"rankvar\": 511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2785, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2773, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1454, \"group\": [316.0, 131.0, 39.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97056_BALBc-1_X02_Y02_943_193\", \"ini\": 40, \"clust\": 1727, \"rank\": 178, \"rankvar\": 330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2786, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2774, \"cat-2\": \"Density: 25\", \"cat_2_index\": 711, \"group\": [1727.0, 683.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97137_BALBc-1_X02_Y02_944_154\", \"ini\": 39, \"clust\": 2199, \"rank\": 1979, \"rankvar\": 724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2787, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2775, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1824, \"group\": [2202.0, 886.0, 231.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97167_BALBc-1_X02_Y02_944_435\", \"ini\": 38, \"clust\": 1787, \"rank\": 159, \"rankvar\": 331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2788, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 936, \"cat-2\": \"Density: 21\", \"cat_2_index\": 245, \"group\": [1788.0, 688.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97214_BALBc-1_X02_Y02_944_966\", \"ini\": 37, \"clust\": 1630, \"rank\": 13, \"rankvar\": 390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2789, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2213, \"cat-2\": \"Density: 24\", \"cat_2_index\": 586, \"group\": [1626.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97451_BALBc-1_X02_Y02_948_331\", \"ini\": 36, \"clust\": 2111, \"rank\": 222, \"rankvar\": 1203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2790, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 610, \"cat-2\": \"Density: 21\", \"cat_2_index\": 246, \"group\": [2115.0, 834.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97491_BALBc-1_X02_Y02_948_932\", \"ini\": 35, \"clust\": 1146, \"rank\": 1639, \"rankvar\": 1579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2791, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2214, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1595, \"group\": [1146.0, 527.0, 155.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97517_BALBc-1_X02_Y02_949_240\", \"ini\": 34, \"clust\": 2077, \"rank\": 1301, \"rankvar\": 774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2792, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 887, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1008, \"group\": [2079.0, 826.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97549_BALBc-1_X02_Y02_949_586\", \"ini\": 33, \"clust\": 841, \"rank\": 2778, \"rankvar\": 2294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2793, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1589, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1009, \"group\": [839.0, 350.0, 98.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98069_BALBc-1_X02_Y02_955_308\", \"ini\": 32, \"clust\": 971, \"rank\": 1491, \"rankvar\": 1449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2794, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 611, \"cat-2\": \"Density: 22\", \"cat_2_index\": 346, \"group\": [972.0, 405.0, 111.0, 29.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98157_BALBc-1_X02_Y02_956_396\", \"ini\": 31, \"clust\": 2792, \"rank\": 2318, \"rankvar\": 1933, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2795, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 612, \"cat-2\": \"Density: 25\", \"cat_2_index\": 712, \"group\": [2793.0, 1208.0, 321.0, 79.0, 19.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98194_BALBc-1_X02_Y02_956_883\", \"ini\": 30, \"clust\": 224, \"rank\": 2000, \"rankvar\": 1961, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2796, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2215, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1712, \"group\": [228.0, 115.0, 37.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98263_BALBc-1_X02_Y02_957_843\", \"ini\": 29, \"clust\": 1666, \"rank\": 123, \"rankvar\": 113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2797, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2776, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1322, \"group\": [1666.0, 678.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98313_BALBc-1_X02_Y02_958_647\", \"ini\": 28, \"clust\": 2553, \"rank\": 2090, \"rankvar\": 1679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2798, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 613, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1323, \"group\": [2555.0, 1065.0, 276.0, 69.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98322_BALBc-1_X02_Y02_958_769\", \"ini\": 27, \"clust\": 248, \"rank\": 1665, \"rankvar\": 1667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2799, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2777, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1455, \"group\": [245.0, 121.0, 38.0, 12.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98806_BALBc-1_X02_Y02_964_191\", \"ini\": 26, \"clust\": 541, \"rank\": 1717, \"rankvar\": 1865, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2800, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 888, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1169, \"group\": [543.0, 216.0, 60.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98856_BALBc-1_X02_Y02_964_78\", \"ini\": 25, \"clust\": 2323, \"rank\": 1944, \"rankvar\": 2784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2801, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 889, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1596, \"group\": [2322.0, 948.0, 248.0, 62.0, 15.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98994_BALBc-1_X02_Y02_966_741\", \"ini\": 24, \"clust\": 759, \"rank\": 1402, \"rankvar\": 1942, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2802, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2778, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1713, \"group\": [758.0, 312.0, 89.0, 24.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99000_BALBc-1_X02_Y02_966_800\", \"ini\": 23, \"clust\": 897, \"rank\": 2419, \"rankvar\": 2029, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2803, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2779, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1456, \"group\": [897.0, 374.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99040_BALBc-1_X02_Y02_967_294\", \"ini\": 22, \"clust\": 2084, \"rank\": 1062, \"rankvar\": 1373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2804, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 890, \"cat-2\": \"Density: 21\", \"cat_2_index\": 247, \"group\": [2085.0, 828.0, 214.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99129_BALBc-1_X02_Y02_968_372\", \"ini\": 21, \"clust\": 2138, \"rank\": 442, \"rankvar\": 1305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2805, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 614, \"cat-2\": \"Density: 24\", \"cat_2_index\": 587, \"group\": [2137.0, 841.0, 216.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99400_BALBc-1_X02_Y02_970_970\", \"ini\": 20, \"clust\": 745, \"rank\": 2423, \"rankvar\": 1304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2806, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2216, \"cat-2\": \"Density: 22\", \"cat_2_index\": 347, \"group\": [743.0, 303.0, 86.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99453_BALBc-1_X02_Y02_971_668\", \"ini\": 19, \"clust\": 717, \"rank\": 2246, \"rankvar\": 1516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2807, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2780, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1597, \"group\": [718.0, 294.0, 82.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99472_BALBc-1_X02_Y02_971_945\", \"ini\": 18, \"clust\": 1853, \"rank\": 355, \"rankvar\": 483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2808, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2217, \"cat-2\": \"Density: 25\", \"cat_2_index\": 713, \"group\": [1852.0, 701.0, 181.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99576_BALBc-1_X02_Y02_973_307\", \"ini\": 17, \"clust\": 1713, \"rank\": 200, \"rankvar\": 1085, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2809, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 615, \"cat-2\": \"Density: 22\", \"cat_2_index\": 348, \"group\": [1716.0, 681.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99819_BALBc-1_X02_Y02_976_413\", \"ini\": 16, \"clust\": 2156, \"rank\": 1603, \"rankvar\": 1360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2810, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 937, \"cat-2\": \"Density: 25\", \"cat_2_index\": 714, \"group\": [2164.0, 858.0, 222.0, 56.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99924_BALBc-1_X02_Y02_977_857\", \"ini\": 15, \"clust\": 925, \"rank\": 2009, \"rankvar\": 1598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2811, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2218, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1714, \"group\": [927.0, 380.0, 102.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100214_BALBc-1_X02_Y02_980_820\", \"ini\": 14, \"clust\": 2035, \"rank\": 792, \"rankvar\": 121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2812, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2781, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1324, \"group\": [2038.0, 805.0, 209.0, 54.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100337_BALBc-1_X02_Y02_982_632\", \"ini\": 13, \"clust\": 785, \"rank\": 1750, \"rankvar\": 1899, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2813, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2782, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1325, \"group\": [785.0, 324.0, 93.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100367_BALBc-1_X02_Y02_982_992\", \"ini\": 12, \"clust\": 867, \"rank\": 1955, \"rankvar\": 1397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2814, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2219, \"cat-2\": \"Density: 17\", \"cat_2_index\": 86, \"group\": [869.0, 367.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100561_BALBc-1_X02_Y02_985_561\", \"ini\": 11, \"clust\": 899, \"rank\": 2379, \"rankvar\": 2361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2815, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2783, \"cat-2\": \"Density: 22\", \"cat_2_index\": 349, \"group\": [901.0, 375.0, 100.0, 25.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100649_BALBc-1_X02_Y02_986_672\", \"ini\": 10, \"clust\": 1148, \"rank\": 1650, \"rankvar\": 1187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2816, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2784, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1825, \"group\": [1148.0, 528.0, 155.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100670_BALBc-1_X02_Y02_987_14\", \"ini\": 9, \"clust\": 2218, \"rank\": 2581, \"rankvar\": 2567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2817, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1532, \"cat-2\": \"Density: 23\", \"cat_2_index\": 464, \"group\": [2221.0, 902.0, 236.0, 59.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100764_BALBc-1_X02_Y02_988_366\", \"ini\": 8, \"clust\": 502, \"rank\": 1286, \"rankvar\": 229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2818, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1170, \"group\": [503.0, 200.0, 56.0, 14.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100956_BALBc-1_X02_Y02_99_748\", \"ini\": 7, \"clust\": 740, \"rank\": 2709, \"rankvar\": 2078, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2819, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1533, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1715, \"group\": [741.0, 302.0, 85.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100988_BALBc-1_X02_Y02_990_472\", \"ini\": 6, \"clust\": 1462, \"rank\": 428, \"rankvar\": 784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2820, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 938, \"cat-2\": \"Density: 20\", \"cat_2_index\": 187, \"group\": [1458.0, 610.0, 164.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101005_BALBc-1_X02_Y02_990_71\", \"ini\": 5, \"clust\": 1175, \"rank\": 313, \"rankvar\": 1041, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2821, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2469, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1010, \"group\": [1178.0, 544.0, 158.0, 44.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101037_BALBc-1_X02_Y02_991_103\", \"ini\": 4, \"clust\": 80, \"rank\": 2692, \"rankvar\": 2667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2822, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2470, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1326, \"group\": [80.0, 51.0, 17.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101297_BALBc-1_X02_Y02_994_186\", \"ini\": 3, \"clust\": 2196, \"rank\": 1043, \"rankvar\": 864, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2823, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2785, \"cat-2\": \"Density: 26\", \"cat_2_index\": 855, \"group\": [2196.0, 883.0, 230.0, 58.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101397_BALBc-1_X02_Y02_995_288\", \"ini\": 2, \"clust\": 1795, \"rank\": 98, \"rankvar\": 401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2824, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2471, \"cat-2\": \"Density: 23\", \"cat_2_index\": 465, \"group\": [1794.0, 688.0, 180.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101608_BALBc-1_X02_Y02_997_729\", \"ini\": 1, \"clust\": 73, \"rank\": 1993, \"rankvar\": 1322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2825, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2786, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2041, \"group\": [76.0, 48.0, 16.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}]}}, {\"N_row_sum\": 10, \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"name\": \"Ly6G\", \"ini\": 10, \"clust\": 8, \"rank\": 0, \"rankvar\": 0, \"group\": [9.0, 9.0, 9.0, 9.0, 8.0, 7.0, 7.0, 5.0, 3.0, 1.0, 1.0]}, {\"name\": \"Ly6C\", \"ini\": 9, \"clust\": 6, \"rank\": 1, \"rankvar\": 1, \"group\": [7.0, 7.0, 7.0, 7.0, 7.0, 6.0, 6.0, 5.0, 3.0, 1.0, 1.0]}, {\"name\": \"CD5\", \"ini\": 8, \"clust\": 4, \"rank\": 2, \"rankvar\": 3, \"group\": [5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 4.0, 3.0, 1.0, 1.0]}, {\"name\": \"CD11b\", \"ini\": 7, \"clust\": 9, \"rank\": 3, \"rankvar\": 2, \"group\": [10.0, 10.0, 10.0, 10.0, 9.0, 7.0, 7.0, 5.0, 3.0, 1.0, 1.0]}, {\"name\": \"CD71\", \"ini\": 6, \"clust\": 2, \"rank\": 4, \"rankvar\": 4, \"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0]}, {\"name\": \"CD3\", \"ini\": 5, \"clust\": 7, \"rank\": 5, \"rankvar\": 6, \"group\": [8.0, 8.0, 8.0, 8.0, 7.0, 6.0, 6.0, 5.0, 3.0, 1.0, 1.0]}, {\"name\": \"NKp46\", \"ini\": 4, \"clust\": 0, \"rank\": 6, \"rankvar\": 5, \"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"TCR\", \"ini\": 3, \"clust\": 5, \"rank\": 7, \"rankvar\": 7, \"group\": [6.0, 6.0, 6.0, 6.0, 6.0, 5.0, 5.0, 4.0, 3.0, 1.0, 1.0]}, {\"name\": \"IgM\", \"ini\": 2, \"clust\": 1, \"rank\": 8, \"rankvar\": 8, \"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"Ter119\", \"ini\": 1, \"clust\": 3, \"rank\": 9, \"rankvar\": 9, \"group\": [4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 3.0, 2.0, 1.0, 1.0]}], \"col_nodes\": [{\"name\": \"C-643_BALBc-1_X01_Y01_10_277\", \"ini\": 2826, \"clust\": 2821, \"rank\": 2006, \"rankvar\": 1507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 0, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2805, \"cat-2\": \"Density: 14\", \"cat_2_index\": 23, \"group\": [2818.0, 436.0, 105.0, 29.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1264_BALBc-1_X01_Y01_1006_490\", \"ini\": 2825, \"clust\": 90, \"rank\": 1287, \"rankvar\": 1949, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1765, \"cat-2\": \"Density: 23\", \"cat_2_index\": 350, \"group\": [89.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1589_BALBc-1_X01_Y01_101_504\", \"ini\": 2824, \"clust\": 467, \"rank\": 2697, \"rankvar\": 2682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2335, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1011, \"group\": [466.0, 94.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1611_BALBc-1_X01_Y01_101_759\", \"ini\": 2823, \"clust\": 15, \"rank\": 2765, \"rankvar\": 2671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 3, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2336, \"cat-2\": \"Density: 25\", \"cat_2_index\": 588, \"group\": [16.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1873_BALBc-1_X01_Y01_1013_254\", \"ini\": 2822, \"clust\": 711, \"rank\": 2058, \"rankvar\": 2516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 4, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 949, \"cat-2\": \"Density: 25\", \"cat_2_index\": 589, \"group\": [714.0, 159.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1877_BALBc-1_X01_Y01_1013_293\", \"ini\": 2821, \"clust\": 2346, \"rank\": 2185, \"rankvar\": 2379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 5, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2337, \"cat-2\": \"Density: 27\", \"cat_2_index\": 856, \"group\": [2343.0, 338.0, 79.0, 21.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1935_BALBc-1_X01_Y01_1013_914\", \"ini\": 2820, \"clust\": 2172, \"rank\": 972, \"rankvar\": 1233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 6, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2338, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1327, \"group\": [2171.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2478_BALBc-1_X01_Y01_1020_25\", \"ini\": 2819, \"clust\": 670, \"rank\": 2305, \"rankvar\": 2426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 7, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1766, \"cat-2\": \"Density: 14\", \"cat_2_index\": 24, \"group\": [673.0, 157.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2866_BALBc-1_X01_Y01_1025_128\", \"ini\": 2818, \"clust\": 729, \"rank\": 2663, \"rankvar\": 2653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 8, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2251, \"cat-2\": \"Density: 21\", \"cat_2_index\": 188, \"group\": [732.0, 162.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2988_BALBc-1_X01_Y01_1026_609\", \"ini\": 2817, \"clust\": 1129, \"rank\": 698, \"rankvar\": 757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 9, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 950, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1012, \"group\": [1131.0, 239.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3121_BALBc-1_X01_Y01_1028_10\", \"ini\": 2816, \"clust\": 2774, \"rank\": 1398, \"rankvar\": 1045, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 10, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1767, \"cat-2\": \"Density: 11\", \"cat_2_index\": 4, \"group\": [2772.0, 427.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3220_BALBc-1_X01_Y01_1029_199\", \"ini\": 2815, \"clust\": 826, \"rank\": 667, \"rankvar\": 1888, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 11, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 951, \"cat-2\": \"Density: 21\", \"cat_2_index\": 189, \"group\": [825.0, 195.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3350_BALBc-1_X01_Y01_103_877\", \"ini\": 2814, \"clust\": 43, \"rank\": 2496, \"rankvar\": 2748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 12, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1768, \"cat-2\": \"Density: 22\", \"cat_2_index\": 248, \"group\": [44.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3562_BALBc-1_X01_Y01_1032_941\", \"ini\": 2813, \"clust\": 2727, \"rank\": 1772, \"rankvar\": 1675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 13, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 648, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1598, \"group\": [2725.0, 420.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3566_BALBc-1_X01_Y01_1032_996\", \"ini\": 2812, \"clust\": 2215, \"rank\": 673, \"rankvar\": 1602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 14, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 649, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1599, \"group\": [2213.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3997_BALBc-1_X01_Y01_1038_240\", \"ini\": 2811, \"clust\": 839, \"rank\": 1745, \"rankvar\": 2376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 15, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 952, \"cat-2\": \"Density: 23\", \"cat_2_index\": 351, \"group\": [844.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4331_BALBc-1_X01_Y01_1041_691\", \"ini\": 2810, \"clust\": 91, \"rank\": 1291, \"rankvar\": 1565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 16, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 953, \"cat-2\": \"Density: 27\", \"cat_2_index\": 857, \"group\": [90.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4357_BALBc-1_X01_Y01_1041_883\", \"ini\": 2809, \"clust\": 845, \"rank\": 1952, \"rankvar\": 2397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 17, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 733, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1013, \"group\": [848.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4446_BALBc-1_X01_Y01_1042_941\", \"ini\": 2808, \"clust\": 1445, \"rank\": 195, \"rankvar\": 1469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 18, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2500, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1328, \"group\": [1444.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4781_BALBc-1_X01_Y01_1047_289\", \"ini\": 2807, \"clust\": 481, \"rank\": 2797, \"rankvar\": 2808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 19, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2339, \"cat-2\": \"Density: 25\", \"cat_2_index\": 590, \"group\": [481.0, 100.0, 26.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6348_BALBc-1_X01_Y01_1065_305\", \"ini\": 2806, \"clust\": 1299, \"rank\": 215, \"rankvar\": 1478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 20, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2472, \"cat-2\": \"Density: 25\", \"cat_2_index\": 591, \"group\": [1298.0, 259.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6416_BALBc-1_X01_Y01_1066_194\", \"ini\": 2805, \"clust\": 763, \"rank\": 1091, \"rankvar\": 2155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 21, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2340, \"cat-2\": \"Density: 22\", \"cat_2_index\": 249, \"group\": [766.0, 174.0, 45.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6555_BALBc-1_X01_Y01_1068_135\", \"ini\": 2804, \"clust\": 465, \"rank\": 2435, \"rankvar\": 2587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 22, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2252, \"cat-2\": \"Density: 19\", \"cat_2_index\": 110, \"group\": [469.0, 94.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6697_BALBc-1_X01_Y01_1069_600\", \"ini\": 2803, \"clust\": 1707, \"rank\": 108, \"rankvar\": 84, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 23, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1769, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1329, \"group\": [1706.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6969_BALBc-1_X01_Y01_1072_106\", \"ini\": 2802, \"clust\": 712, \"rank\": 2633, \"rankvar\": 2817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 24, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2253, \"cat-2\": \"Density: 22\", \"cat_2_index\": 250, \"group\": [710.0, 159.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7033_BALBc-1_X01_Y01_1072_670\", \"ini\": 2801, \"clust\": 221, \"rank\": 1742, \"rankvar\": 2198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 25, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1770, \"cat-2\": \"Density: 24\", \"cat_2_index\": 466, \"group\": [222.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7127_BALBc-1_X01_Y01_1073_75\", \"ini\": 2800, \"clust\": 458, \"rank\": 2620, \"rankvar\": 2652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 26, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2254, \"cat-2\": \"Density: 23\", \"cat_2_index\": 352, \"group\": [461.0, 94.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7426_BALBc-1_X01_Y01_1077_266\", \"ini\": 2799, \"clust\": 1183, \"rank\": 655, \"rankvar\": 965, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 27, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2341, \"cat-2\": \"Density: 27\", \"cat_2_index\": 858, \"group\": [1184.0, 253.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7713_BALBc-1_X01_Y01_1080_242\", \"ini\": 2798, \"clust\": 1559, \"rank\": 595, \"rankvar\": 346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 28, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2342, \"cat-2\": \"Density: 24\", \"cat_2_index\": 467, \"group\": [1560.0, 272.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8117_BALBc-1_X01_Y01_1085_774\", \"ini\": 2797, \"clust\": 228, \"rank\": 2303, \"rankvar\": 2596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 29, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 954, \"cat-2\": \"Density: 24\", \"cat_2_index\": 468, \"group\": [231.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8161_BALBc-1_X01_Y01_1086_450\", \"ini\": 2796, \"clust\": 734, \"rank\": 983, \"rankvar\": 2431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 30, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2220, \"cat-2\": \"Density: 27\", \"cat_2_index\": 859, \"group\": [733.0, 163.0, 40.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8563_BALBc-1_X01_Y01_1090_6\", \"ini\": 2795, \"clust\": 1061, \"rank\": 1180, \"rankvar\": 1050, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 31, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 650, \"cat-2\": \"Density: 14\", \"cat_2_index\": 25, \"group\": [1061.0, 228.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8628_BALBc-1_X01_Y01_1091_43\", \"ini\": 2794, \"clust\": 1002, \"rank\": 681, \"rankvar\": 2039, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 32, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1591, \"cat-2\": \"Density: 19\", \"cat_2_index\": 111, \"group\": [1004.0, 224.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9642_BALBc-1_X01_Y01_1102_507\", \"ini\": 2793, \"clust\": 1091, \"rank\": 563, \"rankvar\": 2114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 33, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2255, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1330, \"group\": [1091.0, 232.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9652_BALBc-1_X01_Y01_1102_662\", \"ini\": 2792, \"clust\": 141, \"rank\": 1766, \"rankvar\": 1929, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 34, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1771, \"cat-2\": \"Density: 23\", \"cat_2_index\": 353, \"group\": [140.0, 29.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9706_BALBc-1_X01_Y01_1103_434\", \"ini\": 2791, \"clust\": 2477, \"rank\": 2359, \"rankvar\": 2363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 35, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 955, \"cat-2\": \"Density: 27\", \"cat_2_index\": 860, \"group\": [2477.0, 379.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10170_BALBc-1_X01_Y01_1108_899\", \"ini\": 2790, \"clust\": 94, \"rank\": 2175, \"rankvar\": 2383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 36, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 956, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1171, \"group\": [93.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10432_BALBc-1_X01_Y01_1111_474\", \"ini\": 2789, \"clust\": 2534, \"rank\": 2386, \"rankvar\": 2626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 37, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2343, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1331, \"group\": [2530.0, 385.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10617_BALBc-1_X01_Y01_1113_927\", \"ini\": 2788, \"clust\": 276, \"rank\": 1302, \"rankvar\": 1291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 38, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1592, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1014, \"group\": [280.0, 56.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10619_BALBc-1_X01_Y01_1113_965\", \"ini\": 2787, \"clust\": 1706, \"rank\": 102, \"rankvar\": 209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 39, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1593, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1457, \"group\": [1707.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10837_BALBc-1_X01_Y01_1116_858\", \"ini\": 2786, \"clust\": 62, \"rank\": 2448, \"rankvar\": 2441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 40, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 734, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1015, \"group\": [62.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11085_BALBc-1_X01_Y01_112_387\", \"ini\": 2785, \"clust\": 873, \"rank\": 1371, \"rankvar\": 845, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 41, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 651, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1600, \"group\": [880.0, 200.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11633_BALBc-1_X01_Y01_1126_451\", \"ini\": 2784, \"clust\": 1879, \"rank\": 347, \"rankvar\": 1585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 42, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2344, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1172, \"group\": [1874.0, 278.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11797_BALBc-1_X01_Y01_1128_484\", \"ini\": 2783, \"clust\": 1074, \"rank\": 975, \"rankvar\": 544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 43, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2345, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1458, \"group\": [1075.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12372_BALBc-1_X01_Y01_1135_41\", \"ini\": 2782, \"clust\": 117, \"rank\": 961, \"rankvar\": 1718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 44, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1594, \"cat-2\": \"Density: 16\", \"cat_2_index\": 47, \"group\": [117.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12571_BALBc-1_X01_Y01_1137_963\", \"ini\": 2781, \"clust\": 2190, \"rank\": 1165, \"rankvar\": 1277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 45, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 0, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1173, \"group\": [2188.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12609_BALBc-1_X01_Y01_1138_500\", \"ini\": 2780, \"clust\": 217, \"rank\": 1310, \"rankvar\": 2391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 46, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2346, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1459, \"group\": [221.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13081_BALBc-1_X01_Y01_1143_436\", \"ini\": 2779, \"clust\": 775, \"rank\": 1822, \"rankvar\": 2170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 47, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 957, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1016, \"group\": [775.0, 177.0, 45.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13731_BALBc-1_X01_Y01_1150_998\", \"ini\": 2778, \"clust\": 2062, \"rank\": 2414, \"rankvar\": 2493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 48, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2347, \"cat-2\": \"Density: 26\", \"cat_2_index\": 715, \"group\": [2061.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13749_BALBc-1_X01_Y01_1151_281\", \"ini\": 2777, \"clust\": 1124, \"rank\": 887, \"rankvar\": 519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 49, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2348, \"cat-2\": \"Density: 21\", \"cat_2_index\": 190, \"group\": [1123.0, 237.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13948_BALBc-1_X01_Y01_1153_833\", \"ini\": 2776, \"clust\": 262, \"rank\": 1934, \"rankvar\": 2282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 50, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1689, \"cat-2\": \"Density: 26\", \"cat_2_index\": 716, \"group\": [261.0, 46.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14037_BALBc-1_X01_Y01_1154_869\", \"ini\": 2775, \"clust\": 263, \"rank\": 2100, \"rankvar\": 2388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 51, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1595, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1332, \"group\": [262.0, 46.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14325_BALBc-1_X01_Y01_1158_916\", \"ini\": 2774, \"clust\": 2701, \"rank\": 1488, \"rankvar\": 1542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 52, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 1, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1017, \"group\": [2697.0, 415.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14446_BALBc-1_X01_Y01_116_658\", \"ini\": 2773, \"clust\": 1891, \"rank\": 2208, \"rankvar\": 2169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 53, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1772, \"cat-2\": \"Density: 27\", \"cat_2_index\": 861, \"group\": [1891.0, 285.0, 68.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14698_BALBc-1_X01_Y01_1162_538\", \"ini\": 2772, \"clust\": 832, \"rank\": 2439, \"rankvar\": 2614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 54, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1773, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1826, \"group\": [832.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14855_BALBc-1_X01_Y01_1164_480\", \"ini\": 2771, \"clust\": 2780, \"rank\": 1541, \"rankvar\": 1163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 55, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2349, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1716, \"group\": [2778.0, 427.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15062_BALBc-1_X01_Y01_1166_964\", \"ini\": 2770, \"clust\": 2229, \"rank\": 795, \"rankvar\": 1267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 56, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2350, \"cat-2\": \"Density: 27\", \"cat_2_index\": 862, \"group\": [2227.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15797_BALBc-1_X01_Y01_1175_906\", \"ini\": 2769, \"clust\": 1026, \"rank\": 520, \"rankvar\": 870, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 57, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 652, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1018, \"group\": [1024.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16293_BALBc-1_X01_Y01_1181_53\", \"ini\": 2768, \"clust\": 133, \"rank\": 1661, \"rankvar\": 1841, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 58, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1774, \"cat-2\": \"Density: 16\", \"cat_2_index\": 48, \"group\": [135.0, 28.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16370_BALBc-1_X01_Y01_1182_491\", \"ini\": 2767, \"clust\": 671, \"rank\": 2080, \"rankvar\": 2225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 59, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1596, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1174, \"group\": [671.0, 157.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16563_BALBc-1_X01_Y01_1184_941\", \"ini\": 2766, \"clust\": 567, \"rank\": 2278, \"rankvar\": 1307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 60, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2351, \"cat-2\": \"Density: 27\", \"cat_2_index\": 863, \"group\": [572.0, 128.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16691_BALBc-1_X01_Y01_1186_803\", \"ini\": 2765, \"clust\": 1710, \"rank\": 113, \"rankvar\": 484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 61, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 735, \"cat-2\": \"Density: 25\", \"cat_2_index\": 592, \"group\": [1711.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17060_BALBc-1_X01_Y01_1190_820\", \"ini\": 2764, \"clust\": 406, \"rank\": 2768, \"rankvar\": 2783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 62, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 958, \"cat-2\": \"Density: 26\", \"cat_2_index\": 717, \"group\": [405.0, 76.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17493_BALBc-1_X01_Y01_1196_594\", \"ini\": 2763, \"clust\": 242, \"rank\": 2526, \"rankvar\": 2678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 63, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1775, \"cat-2\": \"Density: 26\", \"cat_2_index\": 718, \"group\": [243.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17526_BALBc-1_X01_Y01_1196_998\", \"ini\": 2762, \"clust\": 2067, \"rank\": 1930, \"rankvar\": 1607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 64, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2352, \"cat-2\": \"Density: 26\", \"cat_2_index\": 719, \"group\": [2064.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17577_BALBc-1_X01_Y01_1197_786\", \"ini\": 2761, \"clust\": 169, \"rank\": 1977, \"rankvar\": 2513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 65, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 736, \"cat-2\": \"Density: 24\", \"cat_2_index\": 469, \"group\": [170.0, 39.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17628_BALBc-1_X01_Y01_1198_413\", \"ini\": 2760, \"clust\": 152, \"rank\": 2450, \"rankvar\": 2314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 66, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 959, \"cat-2\": \"Density: 26\", \"cat_2_index\": 720, \"group\": [151.0, 33.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18640_BALBc-1_X01_Y01_1209_127\", \"ini\": 2759, \"clust\": 977, \"rank\": 529, \"rankvar\": 1091, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 67, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 960, \"cat-2\": \"Density: 20\", \"cat_2_index\": 137, \"group\": [977.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19476_BALBc-1_X01_Y01_1219_513\", \"ini\": 2758, \"clust\": 829, \"rank\": 1277, \"rankvar\": 2108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 68, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1776, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1019, \"group\": [829.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19678_BALBc-1_X01_Y01_1221_169\", \"ini\": 2757, \"clust\": 1062, \"rank\": 1161, \"rankvar\": 1026, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 69, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1690, \"cat-2\": \"Density: 22\", \"cat_2_index\": 251, \"group\": [1062.0, 228.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19861_BALBc-1_X01_Y01_1223_430\", \"ini\": 2756, \"clust\": 72, \"rank\": 2671, \"rankvar\": 2739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 70, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1597, \"cat-2\": \"Density: 27\", \"cat_2_index\": 864, \"group\": [72.0, 15.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19879_BALBc-1_X01_Y01_1223_598\", \"ini\": 2755, \"clust\": 468, \"rank\": 2681, \"rankvar\": 2715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 71, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2353, \"cat-2\": \"Density: 27\", \"cat_2_index\": 865, \"group\": [467.0, 94.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20505_BALBc-1_X01_Y01_1230_928\", \"ini\": 2754, \"clust\": 1500, \"rank\": 371, \"rankvar\": 11, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 72, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 653, \"cat-2\": \"Density: 25\", \"cat_2_index\": 593, \"group\": [1502.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20820_BALBc-1_X01_Y01_1234_752\", \"ini\": 2753, \"clust\": 18, \"rank\": 2798, \"rankvar\": 2594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 73, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 961, \"cat-2\": \"Density: 24\", \"cat_2_index\": 470, \"group\": [17.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20832_BALBc-1_X01_Y01_1234_952\", \"ini\": 2752, \"clust\": 243, \"rank\": 2494, \"rankvar\": 2680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 74, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2354, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1020, \"group\": [244.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21409_BALBc-1_X01_Y01_1241_777\", \"ini\": 2751, \"clust\": 1415, \"rank\": 278, \"rankvar\": 830, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 75, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1777, \"cat-2\": \"Density: 24\", \"cat_2_index\": 471, \"group\": [1414.0, 263.0, 65.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21558_BALBc-1_X01_Y01_1243_856\", \"ini\": 2750, \"clust\": 1167, \"rank\": 923, \"rankvar\": 1269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 76, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 654, \"cat-2\": \"Density: 25\", \"cat_2_index\": 594, \"group\": [1166.0, 245.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21876_BALBc-1_X01_Y01_1248_400\", \"ini\": 2749, \"clust\": 32, \"rank\": 2246, \"rankvar\": 2041, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 77, \"cat-1\": \"Neighbor: CD3(+) other markers (-)\", \"cat_1_index\": 947, \"cat-2\": \"Density: 23\", \"cat_2_index\": 354, \"group\": [32.0, 12.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22222_BALBc-1_X01_Y01_1251_971\", \"ini\": 2748, \"clust\": 1813, \"rank\": 353, \"rankvar\": 392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 78, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 737, \"cat-2\": \"Density: 27\", \"cat_2_index\": 866, \"group\": [1811.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22283_BALBc-1_X01_Y01_1252_608\", \"ini\": 2747, \"clust\": 466, \"rank\": 2618, \"rankvar\": 2452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 79, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2355, \"cat-2\": \"Density: 23\", \"cat_2_index\": 355, \"group\": [468.0, 94.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22370_BALBc-1_X01_Y01_1253_930\", \"ini\": 2746, \"clust\": 80, \"rank\": 1704, \"rankvar\": 1169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 80, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 738, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1021, \"group\": [79.0, 17.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22471_BALBc-1_X01_Y01_1255_479\", \"ini\": 2745, \"clust\": 113, \"rank\": 1390, \"rankvar\": 695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 81, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 739, \"cat-2\": \"Density: 27\", \"cat_2_index\": 867, \"group\": [115.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22920_BALBc-1_X01_Y01_1260_756\", \"ini\": 2744, \"clust\": 2345, \"rank\": 2287, \"rankvar\": 1447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 82, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 962, \"cat-2\": \"Density: 23\", \"cat_2_index\": 356, \"group\": [2345.0, 339.0, 79.0, 21.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23720_BALBc-1_X01_Y01_1271_214\", \"ini\": 2743, \"clust\": 1824, \"rank\": 72, \"rankvar\": 1173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 83, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1778, \"cat-2\": \"Density: 22\", \"cat_2_index\": 252, \"group\": [1822.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23748_BALBc-1_X01_Y01_1271_543\", \"ini\": 2742, \"clust\": 1143, \"rank\": 1113, \"rankvar\": 831, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 84, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2356, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1175, \"group\": [1147.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23973_BALBc-1_X01_Y01_1274_422\", \"ini\": 2741, \"clust\": 335, \"rank\": 2773, \"rankvar\": 2662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 85, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1779, \"cat-2\": \"Density: 22\", \"cat_2_index\": 253, \"group\": [357.0, 72.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24535_BALBc-1_X01_Y01_1281_350\", \"ini\": 2740, \"clust\": 1179, \"rank\": 551, \"rankvar\": 607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 86, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 963, \"cat-2\": \"Density: 20\", \"cat_2_index\": 138, \"group\": [1181.0, 250.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24998_BALBc-1_X01_Y01_1287_867\", \"ini\": 2739, \"clust\": 530, \"rank\": 2320, \"rankvar\": 1805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 87, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 655, \"cat-2\": \"Density: 23\", \"cat_2_index\": 357, \"group\": [531.0, 114.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25430_BALBc-1_X01_Y01_1292_741\", \"ini\": 2738, \"clust\": 1619, \"rank\": 95, \"rankvar\": 186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 88, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1780, \"cat-2\": \"Density: 23\", \"cat_2_index\": 358, \"group\": [1619.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25531_BALBc-1_X01_Y01_1293_912\", \"ini\": 2737, \"clust\": 248, \"rank\": 2168, \"rankvar\": 2550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 89, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1781, \"cat-2\": \"Density: 26\", \"cat_2_index\": 721, \"group\": [247.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25534_BALBc-1_X01_Y01_1293_926\", \"ini\": 2736, \"clust\": 627, \"rank\": 2288, \"rankvar\": 1989, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 90, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1782, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1333, \"group\": [631.0, 147.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25729_BALBc-1_X01_Y01_1296_850\", \"ini\": 2735, \"clust\": 2245, \"rank\": 436, \"rankvar\": 786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 91, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1598, \"cat-2\": \"Density: 25\", \"cat_2_index\": 595, \"group\": [2248.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25779_BALBc-1_X01_Y01_1297_522\", \"ini\": 2734, \"clust\": 625, \"rank\": 2696, \"rankvar\": 2605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 92, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1783, \"cat-2\": \"Density: 27\", \"cat_2_index\": 868, \"group\": [624.0, 146.0, 38.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26533_BALBc-1_X01_Y01_1306_107\", \"ini\": 2733, \"clust\": 125, \"rank\": 1425, \"rankvar\": 964, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 93, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 740, \"cat-2\": \"Density: 21\", \"cat_2_index\": 191, \"group\": [126.0, 27.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27126_BALBc-1_X01_Y01_1313_325\", \"ini\": 2732, \"clust\": 34, \"rank\": 1585, \"rankvar\": 2248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 94, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1784, \"cat-2\": \"Density: 23\", \"cat_2_index\": 359, \"group\": [37.0, 13.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27291_BALBc-1_X01_Y01_1315_624\", \"ini\": 2731, \"clust\": 513, \"rank\": 2272, \"rankvar\": 1907, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 95, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1785, \"cat-2\": \"Density: 24\", \"cat_2_index\": 472, \"group\": [514.0, 108.0, 29.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27496_BALBc-1_X01_Y01_1318_358\", \"ini\": 2730, \"clust\": 2440, \"rank\": 2616, \"rankvar\": 2651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 96, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2473, \"cat-2\": \"Density: 23\", \"cat_2_index\": 360, \"group\": [2437.0, 360.0, 85.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27658_BALBc-1_X01_Y01_132_746\", \"ini\": 2729, \"clust\": 146, \"rank\": 1984, \"rankvar\": 1887, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 97, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2357, \"cat-2\": \"Density: 26\", \"cat_2_index\": 722, \"group\": [146.0, 30.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27856_BALBc-1_X01_Y01_1322_539\", \"ini\": 2728, \"clust\": 1044, \"rank\": 964, \"rankvar\": 1319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 98, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2256, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1022, \"group\": [1044.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27868_BALBc-1_X01_Y01_1322_716\", \"ini\": 2727, \"clust\": 244, \"rank\": 2605, \"rankvar\": 2700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 99, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 741, \"cat-2\": \"Density: 25\", \"cat_2_index\": 596, \"group\": [245.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28466_BALBc-1_X01_Y01_1329_929\", \"ini\": 2726, \"clust\": 2085, \"rank\": 2182, \"rankvar\": 2523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 100, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1786, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1601, \"group\": [2083.0, 307.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28618_BALBc-1_X01_Y01_1331_1005\", \"ini\": 2725, \"clust\": 2630, \"rank\": 2229, \"rankvar\": 1773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 101, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1787, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1334, \"group\": [2628.0, 405.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29005_BALBc-1_X01_Y01_1336_646\", \"ini\": 2724, \"clust\": 519, \"rank\": 2276, \"rankvar\": 1749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 102, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1788, \"cat-2\": \"Density: 20\", \"cat_2_index\": 139, \"group\": [520.0, 110.0, 29.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29014_BALBc-1_X01_Y01_1336_791\", \"ini\": 2723, \"clust\": 159, \"rank\": 2625, \"rankvar\": 2730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 103, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2257, \"cat-2\": \"Density: 27\", \"cat_2_index\": 869, \"group\": [163.0, 35.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29210_BALBc-1_X01_Y01_134_634\", \"ini\": 2722, \"clust\": 1394, \"rank\": 357, \"rankvar\": 666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 104, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1599, \"cat-2\": \"Density: 26\", \"cat_2_index\": 723, \"group\": [1393.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29734_BALBc-1_X01_Y01_140_392\", \"ini\": 2721, \"clust\": 48, \"rank\": 2092, \"rankvar\": 2121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 105, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 742, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1602, \"group\": [50.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30018_BALBc-1_X01_Y01_144_355\", \"ini\": 2720, \"clust\": 831, \"rank\": 1755, \"rankvar\": 2318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 106, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 743, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1927, \"group\": [845.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30053_BALBc-1_X01_Y01_144_841\", \"ini\": 2719, \"clust\": 399, \"rank\": 2602, \"rankvar\": 2710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 107, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1789, \"cat-2\": \"Density: 22\", \"cat_2_index\": 254, \"group\": [399.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30398_BALBc-1_X01_Y01_149_544\", \"ini\": 2718, \"clust\": 1685, \"rank\": 58, \"rankvar\": 268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 108, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1790, \"cat-2\": \"Density: 23\", \"cat_2_index\": 361, \"group\": [1680.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30507_BALBc-1_X01_Y01_15_762\", \"ini\": 2717, \"clust\": 44, \"rank\": 2357, \"rankvar\": 2547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 109, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 744, \"cat-2\": \"Density: 15\", \"cat_2_index\": 33, \"group\": [45.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30743_BALBc-1_X01_Y01_152_927\", \"ini\": 2716, \"clust\": 29, \"rank\": 2558, \"rankvar\": 2477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 110, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1791, \"cat-2\": \"Density: 22\", \"cat_2_index\": 255, \"group\": [30.0, 12.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30803_BALBc-1_X01_Y01_153_644\", \"ini\": 2715, \"clust\": 508, \"rank\": 2005, \"rankvar\": 1295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 111, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1792, \"cat-2\": \"Density: 26\", \"cat_2_index\": 724, \"group\": [513.0, 107.0, 28.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31107_BALBc-1_X01_Y01_157_727\", \"ini\": 2714, \"clust\": 1101, \"rank\": 435, \"rankvar\": 574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 112, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2358, \"cat-2\": \"Density: 27\", \"cat_2_index\": 870, \"group\": [1098.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32393_BALBc-1_X01_Y01_174_205\", \"ini\": 2713, \"clust\": 1484, \"rank\": 76, \"rankvar\": 734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 113, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2359, \"cat-2\": \"Density: 26\", \"cat_2_index\": 725, \"group\": [1481.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32406_BALBc-1_X01_Y01_174_446\", \"ini\": 2712, \"clust\": 107, \"rank\": 1576, \"rankvar\": 1751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 114, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1793, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1335, \"group\": [108.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32440_BALBc-1_X01_Y01_174_937\", \"ini\": 2711, \"clust\": 2141, \"rank\": 1662, \"rankvar\": 1845, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 115, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2221, \"cat-2\": \"Density: 23\", \"cat_2_index\": 362, \"group\": [2137.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33321_BALBc-1_X01_Y01_185_828\", \"ini\": 2710, \"clust\": 1067, \"rank\": 985, \"rankvar\": 934, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 116, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1691, \"cat-2\": \"Density: 23\", \"cat_2_index\": 363, \"group\": [1067.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34399_BALBc-1_X01_Y01_199_788\", \"ini\": 2709, \"clust\": 736, \"rank\": 1262, \"rankvar\": 2102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 117, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2360, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1023, \"group\": [735.0, 163.0, 40.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34469_BALBc-1_X01_Y01_20_606\", \"ini\": 2708, \"clust\": 411, \"rank\": 2217, \"rankvar\": 2349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 118, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1794, \"cat-2\": \"Density: 15\", \"cat_2_index\": 34, \"group\": [409.0, 77.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34670_BALBc-1_X01_Y01_202_526\", \"ini\": 2707, \"clust\": 229, \"rank\": 2141, \"rankvar\": 2561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 119, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 656, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1176, \"group\": [229.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34677_BALBc-1_X01_Y01_202_578\", \"ini\": 2706, \"clust\": 37, \"rank\": 1684, \"rankvar\": 1139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 120, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1795, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1177, \"group\": [38.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34817_BALBc-1_X01_Y01_204_297\", \"ini\": 2705, \"clust\": 981, \"rank\": 670, \"rankvar\": 860, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 121, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1692, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1336, \"group\": [979.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34866_BALBc-1_X01_Y01_204_930\", \"ini\": 2704, \"clust\": 1834, \"rank\": 543, \"rankvar\": 338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 122, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2361, \"cat-2\": \"Density: 23\", \"cat_2_index\": 364, \"group\": [1837.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35315_BALBc-1_X01_Y01_210_142\", \"ini\": 2703, \"clust\": 691, \"rank\": 2607, \"rankvar\": 2754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 123, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1796, \"cat-2\": \"Density: 23\", \"cat_2_index\": 365, \"group\": [690.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35570_BALBc-1_X01_Y01_213_684\", \"ini\": 2702, \"clust\": 19, \"rank\": 2812, \"rankvar\": 2760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 124, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1797, \"cat-2\": \"Density: 26\", \"cat_2_index\": 726, \"group\": [18.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35785_BALBc-1_X01_Y01_216_442\", \"ini\": 2701, \"clust\": 570, \"rank\": 1958, \"rankvar\": 1526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 125, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1798, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1603, \"group\": [568.0, 128.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36633_BALBc-1_X01_Y01_227_305\", \"ini\": 2700, \"clust\": 744, \"rank\": 1808, \"rankvar\": 1763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 126, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1534, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1337, \"group\": [744.0, 167.0, 43.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36710_BALBc-1_X01_Y01_228_469\", \"ini\": 2699, \"clust\": 1867, \"rank\": 209, \"rankvar\": 206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 127, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1799, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1178, \"group\": [1863.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36780_BALBc-1_X01_Y01_229_278\", \"ini\": 2698, \"clust\": 2263, \"rank\": 1130, \"rankvar\": 1872, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 128, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1535, \"cat-2\": \"Density: 23\", \"cat_2_index\": 366, \"group\": [2261.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37147_BALBc-1_X01_Y01_233_345\", \"ini\": 2697, \"clust\": 1641, \"rank\": 310, \"rankvar\": 161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 129, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 964, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1338, \"group\": [1642.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37192_BALBc-1_X01_Y01_233_984\", \"ini\": 2696, \"clust\": 197, \"rank\": 2349, \"rankvar\": 2518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 130, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2222, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1024, \"group\": [197.0, 44.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37390_BALBc-1_X01_Y01_236_829\", \"ini\": 2695, \"clust\": 148, \"rank\": 2478, \"rankvar\": 2586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 131, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1693, \"cat-2\": \"Density: 27\", \"cat_2_index\": 871, \"group\": [149.0, 32.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37665_BALBc-1_X01_Y01_24_582\", \"ini\": 2694, \"clust\": 2822, \"rank\": 2170, \"rankvar\": 2220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 132, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1800, \"cat-2\": \"Density: 14\", \"cat_2_index\": 26, \"group\": [2819.0, 437.0, 105.0, 29.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38087_BALBc-1_X01_Y01_245_436\", \"ini\": 2693, \"clust\": 1121, \"rank\": 1003, \"rankvar\": 1182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 133, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2362, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1604, \"group\": [1120.0, 237.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38121_BALBc-1_X01_Y01_245_812\", \"ini\": 2692, \"clust\": 781, \"rank\": 1484, \"rankvar\": 2215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 134, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2363, \"cat-2\": \"Density: 27\", \"cat_2_index\": 872, \"group\": [781.0, 182.0, 47.0, 11.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38523_BALBc-1_X01_Y01_250_505\", \"ini\": 2691, \"clust\": 1738, \"rank\": 206, \"rankvar\": 331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 135, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1801, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1025, \"group\": [1736.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38805_BALBc-1_X01_Y01_253_960\", \"ini\": 2690, \"clust\": 1439, \"rank\": 239, \"rankvar\": 1874, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 136, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2474, \"cat-2\": \"Density: 26\", \"cat_2_index\": 727, \"group\": [1439.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38981_BALBc-1_X01_Y01_256_369\", \"ini\": 2689, \"clust\": 1150, \"rank\": 203, \"rankvar\": 1201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 137, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2364, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1460, \"group\": [1152.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39031_BALBc-1_X01_Y01_256_980\", \"ini\": 2688, \"clust\": 2648, \"rank\": 2547, \"rankvar\": 2451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 138, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1802, \"cat-2\": \"Density: 26\", \"cat_2_index\": 728, \"group\": [2644.0, 409.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39262_BALBc-1_X01_Y01_26_273\", \"ini\": 2687, \"clust\": 690, \"rank\": 2704, \"rankvar\": 2697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 139, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1803, \"cat-2\": \"Density: 17\", \"cat_2_index\": 68, \"group\": [691.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39659_BALBc-1_X01_Y01_264_554\", \"ini\": 2686, \"clust\": 428, \"rank\": 1700, \"rankvar\": 1385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 140, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1694, \"cat-2\": \"Density: 27\", \"cat_2_index\": 873, \"group\": [433.0, 83.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39807_BALBc-1_X01_Y01_266_477\", \"ini\": 2685, \"clust\": 705, \"rank\": 2722, \"rankvar\": 2479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 141, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1695, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1605, \"group\": [706.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39811_BALBc-1_X01_Y01_266_516\", \"ini\": 2684, \"clust\": 694, \"rank\": 2708, \"rankvar\": 2576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 142, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1696, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1179, \"group\": [695.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40558_BALBc-1_X01_Y01_275_814\", \"ini\": 2683, \"clust\": 2459, \"rank\": 1854, \"rankvar\": 1362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 143, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2365, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1180, \"group\": [2460.0, 371.0, 89.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41204_BALBc-1_X01_Y01_283_369\", \"ini\": 2682, \"clust\": 74, \"rank\": 2536, \"rankvar\": 1971, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 144, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 965, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1181, \"group\": [78.0, 16.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41354_BALBc-1_X01_Y01_285_575\", \"ini\": 2681, \"clust\": 1332, \"rank\": 230, \"rankvar\": 1096, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 145, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1804, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1606, \"group\": [1333.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41940_BALBc-1_X01_Y01_292_456\", \"ini\": 2680, \"clust\": 2820, \"rank\": 1953, \"rankvar\": 636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 146, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1697, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1928, \"group\": [2820.0, 438.0, 105.0, 29.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41976_BALBc-1_X01_Y01_292_937\", \"ini\": 2679, \"clust\": 127, \"rank\": 860, \"rankvar\": 2122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 147, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1805, \"cat-2\": \"Density: 27\", \"cat_2_index\": 874, \"group\": [130.0, 28.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42301_BALBc-1_X01_Y01_297_556\", \"ini\": 2678, \"clust\": 520, \"rank\": 2554, \"rankvar\": 2204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 148, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1698, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1461, \"group\": [521.0, 110.0, 29.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42630_BALBc-1_X01_Y01_300_775\", \"ini\": 2677, \"clust\": 2311, \"rank\": 1306, \"rankvar\": 1254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 149, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2366, \"cat-2\": \"Density: 25\", \"cat_2_index\": 597, \"group\": [2307.0, 319.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42740_BALBc-1_X01_Y01_302_128\", \"ini\": 2676, \"clust\": 1529, \"rank\": 225, \"rankvar\": 355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 150, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1600, \"cat-2\": \"Density: 22\", \"cat_2_index\": 256, \"group\": [1528.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43040_BALBc-1_X01_Y01_306_364\", \"ini\": 2675, \"clust\": 525, \"rank\": 1912, \"rankvar\": 1032, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 151, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 966, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1717, \"group\": [526.0, 111.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43178_BALBc-1_X01_Y01_308_412\", \"ini\": 2674, \"clust\": 639, \"rank\": 2690, \"rankvar\": 2285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 152, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2367, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2136, \"group\": [638.0, 150.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43217_BALBc-1_X01_Y01_308_969\", \"ini\": 2673, \"clust\": 451, \"rank\": 1341, \"rankvar\": 1580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 153, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2475, \"cat-2\": \"Density: 27\", \"cat_2_index\": 875, \"group\": [451.0, 90.0, 22.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43287_BALBc-1_X01_Y01_309_987\", \"ini\": 2672, \"clust\": 2387, \"rank\": 2791, \"rankvar\": 2787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 154, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2476, \"cat-2\": \"Density: 27\", \"cat_2_index\": 876, \"group\": [2386.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43697_BALBc-1_X01_Y01_314_444\", \"ini\": 2671, \"clust\": 140, \"rank\": 2023, \"rankvar\": 1141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 155, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 2, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2218, \"group\": [142.0, 29.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43943_BALBc-1_X01_Y01_317_804\", \"ini\": 2670, \"clust\": 9, \"rank\": 2524, \"rankvar\": 1946, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 156, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2368, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1339, \"group\": [24.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44052_BALBc-1_X01_Y01_318_913\", \"ini\": 2669, \"clust\": 1555, \"rank\": 192, \"rankvar\": 763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 157, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2258, \"cat-2\": \"Density: 26\", \"cat_2_index\": 729, \"group\": [1555.0, 272.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44139_BALBc-1_X01_Y01_32_289\", \"ini\": 2668, \"clust\": 2496, \"rank\": 1416, \"rankvar\": 2089, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 158, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1806, \"cat-2\": \"Density: 18\", \"cat_2_index\": 87, \"group\": [2496.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44170_BALBc-1_X01_Y01_32_755\", \"ini\": 2667, \"clust\": 2802, \"rank\": 2266, \"rankvar\": 2117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 159, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 745, \"cat-2\": \"Density: 16\", \"cat_2_index\": 49, \"group\": [2800.0, 433.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44230_BALBc-1_X01_Y01_320_524\", \"ini\": 2666, \"clust\": 646, \"rank\": 2788, \"rankvar\": 2756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 160, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1699, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1462, \"group\": [647.0, 153.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44536_BALBc-1_X01_Y01_324_441\", \"ini\": 2665, \"clust\": 1818, \"rank\": 470, \"rankvar\": 1011, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 161, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2369, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2363, \"group\": [1821.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44775_BALBc-1_X01_Y01_327_457\", \"ini\": 2664, \"clust\": 1120, \"rank\": 750, \"rankvar\": 577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 162, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2370, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2364, \"group\": [1122.0, 237.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45547_BALBc-1_X01_Y01_336_358\", \"ini\": 2663, \"clust\": 786, \"rank\": 1364, \"rankvar\": 1588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 163, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 657, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1607, \"group\": [788.0, 185.0, 48.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45620_BALBc-1_X01_Y01_337_515\", \"ini\": 2662, \"clust\": 45, \"rank\": 2241, \"rankvar\": 2501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 164, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 967, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2042, \"group\": [46.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45792_BALBc-1_X01_Y01_339_781\", \"ini\": 2661, \"clust\": 2167, \"rank\": 1279, \"rankvar\": 1719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 165, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2259, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1463, \"group\": [2163.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46150_BALBc-1_X01_Y01_343_551\", \"ini\": 2660, \"clust\": 116, \"rank\": 1255, \"rankvar\": 2322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 166, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 968, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1182, \"group\": [121.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46164_BALBc-1_X01_Y01_343_747\", \"ini\": 2659, \"clust\": 700, \"rank\": 2707, \"rankvar\": 2752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 167, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1807, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1026, \"group\": [705.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46255_BALBc-1_X01_Y01_344_899\", \"ini\": 2658, \"clust\": 455, \"rank\": 2757, \"rankvar\": 2774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 168, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1808, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1183, \"group\": [458.0, 93.0, 24.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46297_BALBc-1_X01_Y01_345_451\", \"ini\": 2657, \"clust\": 224, \"rank\": 1723, \"rankvar\": 1582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 169, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2371, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2137, \"group\": [224.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46315_BALBc-1_X01_Y01_345_681\", \"ini\": 2656, \"clust\": 1642, \"rank\": 133, \"rankvar\": 264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 170, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2260, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1027, \"group\": [1640.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46829_BALBc-1_X01_Y01_351_348\", \"ini\": 2655, \"clust\": 908, \"rank\": 1260, \"rankvar\": 566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 171, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 969, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1608, \"group\": [909.0, 210.0, 55.0, 14.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46843_BALBc-1_X01_Y01_351_600\", \"ini\": 2654, \"clust\": 638, \"rank\": 2790, \"rankvar\": 2615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 172, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1809, \"cat-2\": \"Density: 25\", \"cat_2_index\": 598, \"group\": [640.0, 150.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46930_BALBc-1_X01_Y01_352_655\", \"ini\": 2653, \"clust\": 1003, \"rank\": 809, \"rankvar\": 800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 173, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1810, \"cat-2\": \"Density: 23\", \"cat_2_index\": 367, \"group\": [1002.0, 224.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47025_BALBc-1_X01_Y01_353_977\", \"ini\": 2652, \"clust\": 126, \"rank\": 1685, \"rankvar\": 2394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 174, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2223, \"cat-2\": \"Density: 26\", \"cat_2_index\": 730, \"group\": [127.0, 27.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47116_BALBc-1_X01_Y01_355_165\", \"ini\": 2651, \"clust\": 2272, \"rank\": 806, \"rankvar\": 1680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 175, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1700, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1028, \"group\": [2268.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47124_BALBc-1_X01_Y01_355_25\", \"ini\": 2650, \"clust\": 1180, \"rank\": 423, \"rankvar\": 698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 176, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1811, \"cat-2\": \"Density: 13\", \"cat_2_index\": 11, \"group\": [1180.0, 250.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47290_BALBc-1_X01_Y01_357_393\", \"ini\": 2649, \"clust\": 1161, \"rank\": 572, \"rankvar\": 842, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 177, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 658, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1929, \"group\": [1161.0, 244.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48026_BALBc-1_X01_Y01_366_429\", \"ini\": 2648, \"clust\": 1869, \"rank\": 198, \"rankvar\": 60, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 178, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2372, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1930, \"group\": [1865.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48028_BALBc-1_X01_Y01_366_461\", \"ini\": 2647, \"clust\": 1117, \"rank\": 1309, \"rankvar\": 653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 179, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1601, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1931, \"group\": [1119.0, 237.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48335_BALBc-1_X01_Y01_37_313\", \"ini\": 2646, \"clust\": 487, \"rank\": 2066, \"rankvar\": 1985, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 180, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 746, \"cat-2\": \"Density: 23\", \"cat_2_index\": 368, \"group\": [490.0, 102.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48557_BALBc-1_X01_Y01_372_492\", \"ini\": 2645, \"clust\": 1560, \"rank\": 751, \"rankvar\": 231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 181, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 970, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2138, \"group\": [1561.0, 272.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48582_BALBc-1_X01_Y01_372_692\", \"ini\": 2644, \"clust\": 16, \"rank\": 2811, \"rankvar\": 2641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 182, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2373, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1340, \"group\": [14.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48853_BALBc-1_X01_Y01_376_314\", \"ini\": 2643, \"clust\": 1884, \"rank\": 2348, \"rankvar\": 1772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 971, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1184, \"group\": [1886.0, 282.0, 67.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49055_BALBc-1_X01_Y01_378_862\", \"ini\": 2642, \"clust\": 287, \"rank\": 1805, \"rankvar\": 2352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 184, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2261, \"cat-2\": \"Density: 27\", \"cat_2_index\": 877, \"group\": [290.0, 60.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49397_BALBc-1_X01_Y01_382_422\", \"ini\": 2641, \"clust\": 134, \"rank\": 1653, \"rankvar\": 2125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 185, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 659, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2043, \"group\": [133.0, 28.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49496_BALBc-1_X01_Y01_383_563\", \"ini\": 2640, \"clust\": 30, \"rank\": 2639, \"rankvar\": 2631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 186, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 972, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1464, \"group\": [31.0, 12.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50108_BALBc-1_X01_Y01_390_456\", \"ini\": 2639, \"clust\": 615, \"rank\": 1691, \"rankvar\": 1002, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 187, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1602, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2044, \"group\": [619.0, 144.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50236_BALBc-1_X01_Y01_392_183\", \"ini\": 2638, \"clust\": 674, \"rank\": 2476, \"rankvar\": 2279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 188, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1812, \"cat-2\": \"Density: 27\", \"cat_2_index\": 878, \"group\": [674.0, 157.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50329_BALBc-1_X01_Y01_393_436\", \"ini\": 2637, \"clust\": 1138, \"rank\": 977, \"rankvar\": 1923, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 189, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 3, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2139, \"group\": [1136.0, 241.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50622_BALBc-1_X01_Y01_397_212\", \"ini\": 2636, \"clust\": 1169, \"rank\": 927, \"rankvar\": 664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 190, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1701, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1029, \"group\": [1183.0, 252.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50633_BALBc-1_X01_Y01_397_371\", \"ini\": 2635, \"clust\": 132, \"rank\": 1457, \"rankvar\": 635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 191, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 660, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2219, \"group\": [136.0, 28.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50940_BALBc-1_X01_Y01_40_516\", \"ini\": 2634, \"clust\": 523, \"rank\": 2700, \"rankvar\": 2744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 192, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2374, \"cat-2\": \"Density: 22\", \"cat_2_index\": 257, \"group\": [522.0, 110.0, 29.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50944_BALBc-1_X01_Y01_40_562\", \"ini\": 2633, \"clust\": 738, \"rank\": 1405, \"rankvar\": 2237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 193, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1813, \"cat-2\": \"Density: 19\", \"cat_2_index\": 112, \"group\": [741.0, 164.0, 40.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51105_BALBc-1_X01_Y01_401_748\", \"ini\": 2632, \"clust\": 11, \"rank\": 2699, \"rankvar\": 2009, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 194, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2375, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1030, \"group\": [12.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51247_BALBc-1_X01_Y01_403_851\", \"ini\": 2631, \"clust\": 2347, \"rank\": 2033, \"rankvar\": 2642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 195, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2262, \"cat-2\": \"Density: 27\", \"cat_2_index\": 879, \"group\": [2344.0, 338.0, 79.0, 21.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51412_BALBc-1_X01_Y01_405_776\", \"ini\": 2630, \"clust\": 61, \"rank\": 2777, \"rankvar\": 2786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 196, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2263, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1718, \"group\": [71.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51444_BALBc-1_X01_Y01_406_240\", \"ini\": 2629, \"clust\": 1468, \"rank\": 638, \"rankvar\": 37, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 197, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2376, \"cat-2\": \"Density: 25\", \"cat_2_index\": 599, \"group\": [1470.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51463_BALBc-1_X01_Y01_406_433\", \"ini\": 2628, \"clust\": 2096, \"rank\": 1936, \"rankvar\": 1206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 198, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 661, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1719, \"group\": [2094.0, 309.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51525_BALBc-1_X01_Y01_407_279\", \"ini\": 2627, \"clust\": 267, \"rank\": 1707, \"rankvar\": 936, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 199, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 662, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1341, \"group\": [270.0, 53.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51947_BALBc-1_X01_Y01_411_566\", \"ini\": 2626, \"clust\": 1151, \"rank\": 396, \"rankvar\": 1200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 200, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2377, \"cat-2\": \"Density: 27\", \"cat_2_index\": 880, \"group\": [1150.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51995_BALBc-1_X01_Y01_412_107\", \"ini\": 2625, \"clust\": 843, \"rank\": 2201, \"rankvar\": 2506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 201, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1814, \"cat-2\": \"Density: 23\", \"cat_2_index\": 369, \"group\": [839.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52220_BALBc-1_X01_Y01_414_632\", \"ini\": 2624, \"clust\": 608, \"rank\": 1666, \"rankvar\": 1762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 202, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2378, \"cat-2\": \"Density: 27\", \"cat_2_index\": 881, \"group\": [608.0, 140.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52340_BALBc-1_X01_Y01_416_366\", \"ini\": 2623, \"clust\": 212, \"rank\": 1313, \"rankvar\": 2427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 203, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2501, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1932, \"group\": [213.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52585_BALBc-1_X01_Y01_419_56\", \"ini\": 2622, \"clust\": 1270, \"rank\": 773, \"rankvar\": 1419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 204, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1815, \"cat-2\": \"Density: 19\", \"cat_2_index\": 113, \"group\": [1270.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53186_BALBc-1_X01_Y01_426_497\", \"ini\": 2621, \"clust\": 156, \"rank\": 2581, \"rankvar\": 2399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 205, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1816, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1827, \"group\": [159.0, 34.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53439_BALBc-1_X01_Y01_429_519\", \"ini\": 2620, \"clust\": 1137, \"rank\": 469, \"rankvar\": 1964, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 206, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1817, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1465, \"group\": [1138.0, 241.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53460_BALBc-1_X01_Y01_429_728\", \"ini\": 2619, \"clust\": 901, \"rank\": 798, \"rankvar\": 751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 207, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2379, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1720, \"group\": [904.0, 208.0, 55.0, 14.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54293_BALBc-1_X01_Y01_439_281\", \"ini\": 2618, \"clust\": 2576, \"rank\": 1577, \"rankvar\": 1479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 208, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1603, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1609, \"group\": [2573.0, 391.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54995_BALBc-1_X01_Y01_447_636\", \"ini\": 2617, \"clust\": 64, \"rank\": 2157, \"rankvar\": 2559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 209, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2380, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1031, \"group\": [64.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55049_BALBc-1_X01_Y01_448_341\", \"ini\": 2616, \"clust\": 456, \"rank\": 2470, \"rankvar\": 2321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 210, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 663, \"cat-2\": \"Density: 27\", \"cat_2_index\": 882, \"group\": [456.0, 93.0, 24.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55837_BALBc-1_X01_Y01_457_685\", \"ini\": 2615, \"clust\": 1177, \"rank\": 365, \"rankvar\": 260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 211, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2381, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1933, \"group\": [1175.0, 249.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55843_BALBc-1_X01_Y01_457_714\", \"ini\": 2614, \"clust\": 1887, \"rank\": 1413, \"rankvar\": 1806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 212, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2382, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1828, \"group\": [1882.0, 280.0, 67.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56224_BALBc-1_X01_Y01_461_819\", \"ini\": 2613, \"clust\": 450, \"rank\": 2274, \"rankvar\": 2254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 213, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1818, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1342, \"group\": [453.0, 91.0, 22.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56566_BALBc-1_X01_Y01_466_376\", \"ini\": 2612, \"clust\": 1704, \"rank\": 135, \"rankvar\": 96, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 214, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 664, \"cat-2\": \"Density: 27\", \"cat_2_index\": 883, \"group\": [1702.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56664_BALBc-1_X01_Y01_467_502\", \"ini\": 2611, \"clust\": 1577, \"rank\": 693, \"rankvar\": 271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 215, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2383, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1466, \"group\": [1580.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56683_BALBc-1_X01_Y01_467_748\", \"ini\": 2610, \"clust\": 1785, \"rank\": 259, \"rankvar\": 515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 216, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 973, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1829, \"group\": [1781.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56772_BALBc-1_X01_Y01_468_926\", \"ini\": 2609, \"clust\": 65, \"rank\": 2314, \"rankvar\": 2622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 217, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 891, \"cat-2\": \"Density: 25\", \"cat_2_index\": 600, \"group\": [65.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56830_BALBc-1_X01_Y01_469_709\", \"ini\": 2608, \"clust\": 436, \"rank\": 1781, \"rankvar\": 2446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 218, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 974, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1830, \"group\": [435.0, 85.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57728_BALBc-1_X01_Y01_48_342\", \"ini\": 2607, \"clust\": 841, \"rank\": 1887, \"rankvar\": 2579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 219, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2384, \"cat-2\": \"Density: 25\", \"cat_2_index\": 601, \"group\": [842.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57798_BALBc-1_X01_Y01_480_352\", \"ini\": 2606, \"clust\": 990, \"rank\": 763, \"rankvar\": 981, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 220, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2385, \"cat-2\": \"Density: 27\", \"cat_2_index\": 884, \"group\": [990.0, 222.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57888_BALBc-1_X01_Y01_481_332\", \"ini\": 2605, \"clust\": 609, \"rank\": 2162, \"rankvar\": 2094, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 221, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 975, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1032, \"group\": [609.0, 140.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58066_BALBc-1_X01_Y01_483_751\", \"ini\": 2604, \"clust\": 842, \"rank\": 1888, \"rankvar\": 2328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 222, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 976, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1610, \"group\": [841.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58300_BALBc-1_X01_Y01_486_59\", \"ini\": 2603, \"clust\": 978, \"rank\": 689, \"rankvar\": 1343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 223, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2224, \"cat-2\": \"Density: 17\", \"cat_2_index\": 69, \"group\": [978.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58405_BALBc-1_X01_Y01_487_989\", \"ini\": 2602, \"clust\": 2457, \"rank\": 1946, \"rankvar\": 1501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 224, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1819, \"cat-2\": \"Density: 22\", \"cat_2_index\": 258, \"group\": [2455.0, 371.0, 89.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58769_BALBc-1_X01_Y01_491_835\", \"ini\": 2601, \"clust\": 147, \"rank\": 1835, \"rankvar\": 2345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 225, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2386, \"cat-2\": \"Density: 25\", \"cat_2_index\": 602, \"group\": [147.0, 30.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59185_BALBc-1_X01_Y01_496_860\", \"ini\": 2600, \"clust\": 658, \"rank\": 2792, \"rankvar\": 2798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 226, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2387, \"cat-2\": \"Density: 22\", \"cat_2_index\": 259, \"group\": [662.0, 155.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59663_BALBc-1_X01_Y01_501_885\", \"ini\": 2599, \"clust\": 41, \"rank\": 2650, \"rankvar\": 2780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 227, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2388, \"cat-2\": \"Density: 23\", \"cat_2_index\": 370, \"group\": [40.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59817_BALBc-1_X01_Y01_504_173\", \"ini\": 2598, \"clust\": 1534, \"rank\": 389, \"rankvar\": 143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 228, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1820, \"cat-2\": \"Density: 26\", \"cat_2_index\": 731, \"group\": [1534.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60154_BALBc-1_X01_Y01_508_261\", \"ini\": 2597, \"clust\": 344, \"rank\": 2761, \"rankvar\": 2812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 229, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1821, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1185, \"group\": [344.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60544_BALBc-1_X01_Y01_512_387\", \"ini\": 2596, \"clust\": 1144, \"rank\": 603, \"rankvar\": 974, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 230, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2806, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1033, \"group\": [1146.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61293_BALBc-1_X01_Y01_520_799\", \"ini\": 2595, \"clust\": 457, \"rank\": 2657, \"rankvar\": 2788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 231, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 977, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1034, \"group\": [457.0, 93.0, 24.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61360_BALBc-1_X01_Y01_521_696\", \"ini\": 2594, \"clust\": 710, \"rank\": 2225, \"rankvar\": 2454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 232, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 978, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1721, \"group\": [715.0, 159.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61696_BALBc-1_X01_Y01_525_94\", \"ini\": 2593, \"clust\": 121, \"rank\": 1326, \"rankvar\": 2096, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 233, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2225, \"cat-2\": \"Density: 18\", \"cat_2_index\": 88, \"group\": [122.0, 26.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62336_BALBc-1_X01_Y01_533_397\", \"ini\": 2592, \"clust\": 2092, \"rank\": 1845, \"rankvar\": 2458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 234, \"cat-1\": \"Neighbor: plasma cells\", \"cat_1_index\": 2824, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1186, \"group\": [2090.0, 308.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62423_BALBc-1_X01_Y01_534_722\", \"ini\": 2591, \"clust\": 760, \"rank\": 1268, \"rankvar\": 998, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 235, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 979, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1831, \"group\": [763.0, 173.0, 44.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62444_BALBc-1_X01_Y01_534_959\", \"ini\": 2590, \"clust\": 237, \"rank\": 2350, \"rankvar\": 2636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 236, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 892, \"cat-2\": \"Density: 25\", \"cat_2_index\": 603, \"group\": [240.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63078_BALBc-1_X01_Y01_542_700\", \"ini\": 2589, \"clust\": 485, \"rank\": 2774, \"rankvar\": 2665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 237, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2389, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1832, \"group\": [486.0, 101.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63087_BALBc-1_X01_Y01_542_797\", \"ini\": 2588, \"clust\": 422, \"rank\": 2587, \"rankvar\": 2695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 238, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 980, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1035, \"group\": [422.0, 83.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63522_BALBc-1_X01_Y01_547_973\", \"ini\": 2587, \"clust\": 1722, \"rank\": 131, \"rankvar\": 92, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 239, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1822, \"cat-2\": \"Density: 26\", \"cat_2_index\": 732, \"group\": [1718.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63778_BALBc-1_X01_Y01_550_157\", \"ini\": 2586, \"clust\": 1217, \"rank\": 93, \"rankvar\": 597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 240, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1823, \"cat-2\": \"Density: 24\", \"cat_2_index\": 473, \"group\": [1218.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63964_BALBc-1_X01_Y01_552_62\", \"ini\": 2585, \"clust\": 12, \"rank\": 2818, \"rankvar\": 2791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 241, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1824, \"cat-2\": \"Density: 15\", \"cat_2_index\": 35, \"group\": [10.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64005_BALBc-1_X01_Y01_553_25\", \"ini\": 2584, \"clust\": 970, \"rank\": 574, \"rankvar\": 1100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 242, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2226, \"cat-2\": \"Density: 10\", \"cat_2_index\": 2, \"group\": [968.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64010_BALBc-1_X01_Y01_553_292\", \"ini\": 2583, \"clust\": 836, \"rank\": 1216, \"rankvar\": 2403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 243, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1825, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1036, \"group\": [836.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65182_BALBc-1_X01_Y01_567_223\", \"ini\": 2582, \"clust\": 511, \"rank\": 1758, \"rankvar\": 2129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 244, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2264, \"cat-2\": \"Density: 25\", \"cat_2_index\": 604, \"group\": [509.0, 106.0, 28.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65656_BALBc-1_X01_Y01_572_784\", \"ini\": 2581, \"clust\": 1215, \"rank\": 457, \"rankvar\": 459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 245, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 981, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1187, \"group\": [1215.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66746_BALBc-1_X01_Y01_586_262\", \"ini\": 2580, \"clust\": 1483, \"rank\": 91, \"rankvar\": 1035, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 246, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2265, \"cat-2\": \"Density: 25\", \"cat_2_index\": 605, \"group\": [1483.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66807_BALBc-1_X01_Y01_586_921\", \"ini\": 2579, \"clust\": 160, \"rank\": 2758, \"rankvar\": 2639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 247, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 747, \"cat-2\": \"Density: 24\", \"cat_2_index\": 474, \"group\": [162.0, 35.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67268_BALBc-1_X01_Y01_591_693\", \"ini\": 2578, \"clust\": 2627, \"rank\": 2456, \"rankvar\": 1953, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 248, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2390, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1833, \"group\": [2627.0, 404.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67677_BALBc-1_X01_Y01_596_954\", \"ini\": 2577, \"clust\": 1889, \"rank\": 1520, \"rankvar\": 1708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 249, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 982, \"cat-2\": \"Density: 22\", \"cat_2_index\": 260, \"group\": [1887.0, 283.0, 68.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68075_BALBc-1_X01_Y01_600_937\", \"ini\": 2576, \"clust\": 992, \"rank\": 753, \"rankvar\": 1115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 250, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 983, \"cat-2\": \"Density: 23\", \"cat_2_index\": 371, \"group\": [992.0, 222.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68258_BALBc-1_X01_Y01_603_416\", \"ini\": 2575, \"clust\": 2025, \"rank\": 1919, \"rankvar\": 2370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 251, \"cat-1\": \"Neighbor: plasma cells\", \"cat_1_index\": 2825, \"cat-2\": \"Density: 26\", \"cat_2_index\": 733, \"group\": [2023.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68390_BALBc-1_X01_Y01_605_263\", \"ini\": 2574, \"clust\": 623, \"rank\": 2511, \"rankvar\": 2619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 252, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 748, \"cat-2\": \"Density: 26\", \"cat_2_index\": 734, \"group\": [627.0, 146.0, 38.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68460_BALBc-1_X01_Y01_605_972\", \"ini\": 2573, \"clust\": 187, \"rank\": 2073, \"rankvar\": 2424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 253, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 984, \"cat-2\": \"Density: 23\", \"cat_2_index\": 372, \"group\": [186.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68786_BALBc-1_X01_Y01_609_707\", \"ini\": 2572, \"clust\": 59, \"rank\": 1561, \"rankvar\": 2340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 254, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2391, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1722, \"group\": [56.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69393_BALBc-1_X01_Y01_616_802\", \"ini\": 2571, \"clust\": 35, \"rank\": 2390, \"rankvar\": 2556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 255, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 985, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1037, \"group\": [35.0, 13.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69452_BALBc-1_X01_Y01_617_654\", \"ini\": 2570, \"clust\": 828, \"rank\": 1566, \"rankvar\": 2244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 256, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2392, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1467, \"group\": [831.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69556_BALBc-1_X01_Y01_618_844\", \"ini\": 2569, \"clust\": 408, \"rank\": 2338, \"rankvar\": 2275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 257, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 986, \"cat-2\": \"Density: 23\", \"cat_2_index\": 373, \"group\": [407.0, 77.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69767_BALBc-1_X01_Y01_620_771\", \"ini\": 2568, \"clust\": 448, \"rank\": 1634, \"rankvar\": 2327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 258, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2393, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1468, \"group\": [446.0, 88.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70401_BALBc-1_X01_Y01_628_954\", \"ini\": 2567, \"clust\": 692, \"rank\": 2617, \"rankvar\": 2514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 259, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 4, \"cat-2\": \"Density: 21\", \"cat_2_index\": 192, \"group\": [688.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70856_BALBc-1_X01_Y01_633_693\", \"ini\": 2566, \"clust\": 1849, \"rank\": 227, \"rankvar\": 1118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 260, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 665, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1723, \"group\": [1848.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71169_BALBc-1_X01_Y01_637_858\", \"ini\": 2565, \"clust\": 1430, \"rank\": 1184, \"rankvar\": 2176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 261, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 987, \"cat-2\": \"Density: 26\", \"cat_2_index\": 735, \"group\": [1429.0, 266.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72334_BALBc-1_X01_Y01_650_922\", \"ini\": 2564, \"clust\": 93, \"rank\": 1679, \"rankvar\": 1744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 262, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1702, \"cat-2\": \"Density: 25\", \"cat_2_index\": 606, \"group\": [95.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72558_BALBc-1_X01_Y01_653_790\", \"ini\": 2563, \"clust\": 1134, \"rank\": 984, \"rankvar\": 2268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 263, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 988, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1724, \"group\": [1133.0, 241.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72805_BALBc-1_X01_Y01_656_972\", \"ini\": 2562, \"clust\": 2088, \"rank\": 1267, \"rankvar\": 778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 264, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1703, \"cat-2\": \"Density: 23\", \"cat_2_index\": 374, \"group\": [2085.0, 308.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73338_BALBc-1_X01_Y01_662_687\", \"ini\": 2561, \"clust\": 208, \"rank\": 1444, \"rankvar\": 1652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 265, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 989, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1611, \"group\": [212.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74854_BALBc-1_X01_Y01_680_662\", \"ini\": 2560, \"clust\": 1209, \"rank\": 217, \"rankvar\": 118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 266, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2394, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1834, \"group\": [1209.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75831_BALBc-1_X01_Y01_692_998\", \"ini\": 2559, \"clust\": 1945, \"rank\": 1978, \"rankvar\": 2057, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 267, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1704, \"cat-2\": \"Density: 23\", \"cat_2_index\": 375, \"group\": [1941.0, 301.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76190_BALBc-1_X01_Y01_697_768\", \"ini\": 2558, \"clust\": 1319, \"rank\": 521, \"rankvar\": 1448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 268, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 749, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1469, \"group\": [1320.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76418_BALBc-1_X01_Y01_7_625\", \"ini\": 2557, \"clust\": 53, \"rank\": 2640, \"rankvar\": 2661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 269, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2227, \"cat-2\": \"Density: 10\", \"cat_2_index\": 3, \"group\": [52.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77472_BALBc-1_X01_Y01_711_676\", \"ini\": 2556, \"clust\": 900, \"rank\": 1512, \"rankvar\": 1196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 270, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 990, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2045, \"group\": [905.0, 208.0, 55.0, 14.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77475_BALBc-1_X01_Y01_711_742\", \"ini\": 2555, \"clust\": 1178, \"rank\": 330, \"rankvar\": 395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 271, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 991, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1725, \"group\": [1176.0, 249.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77792_BALBc-1_X01_Y01_715_768\", \"ini\": 2554, \"clust\": 52, \"rank\": 2131, \"rankvar\": 2188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 272, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1705, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1612, \"group\": [54.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78451_BALBc-1_X01_Y01_722_839\", \"ini\": 2553, \"clust\": 1857, \"rank\": 90, \"rankvar\": 862, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 273, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2395, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1613, \"group\": [1852.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78461_BALBc-1_X01_Y01_722_950\", \"ini\": 2552, \"clust\": 327, \"rank\": 1529, \"rankvar\": 2312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 274, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1706, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1188, \"group\": [328.0, 66.0, 18.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78468_BALBc-1_X01_Y01_723_131\", \"ini\": 2551, \"clust\": 835, \"rank\": 1584, \"rankvar\": 2591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 275, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1826, \"cat-2\": \"Density: 21\", \"cat_2_index\": 193, \"group\": [837.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78787_BALBc-1_X01_Y01_727_496\", \"ini\": 2550, \"clust\": 1894, \"rank\": 2785, \"rankvar\": 2792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 276, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1707, \"cat-2\": \"Density: 27\", \"cat_2_index\": 885, \"group\": [1892.0, 286.0, 69.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78978_BALBc-1_X01_Y01_729_920\", \"ini\": 2549, \"clust\": 1725, \"rank\": 78, \"rankvar\": 354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 277, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1604, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1614, \"group\": [1722.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79106_BALBc-1_X01_Y01_730_753\", \"ini\": 2548, \"clust\": 1501, \"rank\": 448, \"rankvar\": 47, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 278, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1605, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1615, \"group\": [1500.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79197_BALBc-1_X01_Y01_731_852\", \"ini\": 2547, \"clust\": 185, \"rank\": 2503, \"rankvar\": 2539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 279, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 750, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1934, \"group\": [196.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79228_BALBc-1_X01_Y01_732_264\", \"ini\": 2546, \"clust\": 601, \"rank\": 2209, \"rankvar\": 2520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 280, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1827, \"cat-2\": \"Density: 16\", \"cat_2_index\": 50, \"group\": [602.0, 139.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79377_BALBc-1_X01_Y01_733_981\", \"ini\": 2545, \"clust\": 2036, \"rank\": 1617, \"rankvar\": 2389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 281, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 992, \"cat-2\": \"Density: 27\", \"cat_2_index\": 886, \"group\": [2033.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79939_BALBc-1_X01_Y01_740_1001\", \"ini\": 2544, \"clust\": 1184, \"rank\": 944, \"rankvar\": 1252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 282, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 993, \"cat-2\": \"Density: 25\", \"cat_2_index\": 607, \"group\": [1185.0, 253.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80506_BALBc-1_X01_Y01_747_927\", \"ini\": 2543, \"clust\": 569, \"rank\": 2530, \"rankvar\": 2396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 283, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1828, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1038, \"group\": [570.0, 128.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80525_BALBc-1_X01_Y01_748_234\", \"ini\": 2542, \"clust\": 67, \"rank\": 2576, \"rankvar\": 2751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 284, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1829, \"cat-2\": \"Density: 19\", \"cat_2_index\": 114, \"group\": [66.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80830_BALBc-1_X01_Y01_750_807\", \"ini\": 2541, \"clust\": 230, \"rank\": 2010, \"rankvar\": 2560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 285, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1708, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1189, \"group\": [230.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80965_BALBc-1_X01_Y01_752_728\", \"ini\": 2540, \"clust\": 423, \"rank\": 1806, \"rankvar\": 2311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 286, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 994, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1616, \"group\": [423.0, 83.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81569_BALBc-1_X01_Y01_76_36\", \"ini\": 2539, \"clust\": 1165, \"rank\": 1629, \"rankvar\": 1687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 287, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1830, \"cat-2\": \"Density: 8\", \"cat_2_index\": 0, \"group\": [1169.0, 246.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82103_BALBc-1_X01_Y01_766_541\", \"ini\": 2538, \"clust\": 426, \"rank\": 2377, \"rankvar\": 2735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 288, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1831, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1190, \"group\": [424.0, 83.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82283_BALBc-1_X01_Y01_768_747\", \"ini\": 2537, \"clust\": 1471, \"rank\": 482, \"rankvar\": 1242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 289, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1606, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1343, \"group\": [1472.0, 268.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82292_BALBc-1_X01_Y01_768_860\", \"ini\": 2536, \"clust\": 235, \"rank\": 2253, \"rankvar\": 2603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 290, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 751, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1726, \"group\": [236.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82501_BALBc-1_X01_Y01_770_672\", \"ini\": 2535, \"clust\": 1860, \"rank\": 61, \"rankvar\": 504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 291, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1832, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1617, \"group\": [1855.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82814_BALBc-1_X01_Y01_774_701\", \"ini\": 2534, \"clust\": 10, \"rank\": 2750, \"rankvar\": 2532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 292, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1833, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1039, \"group\": [13.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83141_BALBc-1_X01_Y01_778_865\", \"ini\": 2533, \"clust\": 680, \"rank\": 2738, \"rankvar\": 2775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 293, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 752, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1935, \"group\": [679.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83368_BALBc-1_X01_Y01_780_829\", \"ini\": 2532, \"clust\": 1452, \"rank\": 54, \"rankvar\": 1545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 294, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2228, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1727, \"group\": [1452.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83575_BALBc-1_X01_Y01_783_772\", \"ini\": 2531, \"clust\": 469, \"rank\": 2490, \"rankvar\": 2374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 295, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1834, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1344, \"group\": [476.0, 96.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83783_BALBc-1_X01_Y01_786_42\", \"ini\": 2530, \"clust\": 996, \"rank\": 1256, \"rankvar\": 924, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 296, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1835, \"cat-2\": \"Density: 11\", \"cat_2_index\": 5, \"group\": [997.0, 224.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84106_BALBc-1_X01_Y01_79_467\", \"ini\": 2529, \"clust\": 1666, \"rank\": 0, \"rankvar\": 1146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 297, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2396, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1040, \"group\": [1663.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84546_BALBc-1_X01_Y01_794_913\", \"ini\": 2528, \"clust\": 1693, \"rank\": 31, \"rankvar\": 301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 298, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1836, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1470, \"group\": [1689.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84882_BALBc-1_X01_Y01_798_898\", \"ini\": 2527, \"clust\": 2803, \"rank\": 2273, \"rankvar\": 2037, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 299, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 753, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2046, \"group\": [2801.0, 433.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84899_BALBc-1_X01_Y01_799_204\", \"ini\": 2526, \"clust\": 1162, \"rank\": 409, \"rankvar\": 617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 300, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1837, \"cat-2\": \"Density: 21\", \"cat_2_index\": 194, \"group\": [1162.0, 244.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85632_BALBc-1_X01_Y01_806_632\", \"ini\": 2525, \"clust\": 2535, \"rank\": 2281, \"rankvar\": 2571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 301, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1709, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1191, \"group\": [2531.0, 385.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85720_BALBc-1_X01_Y01_807_805\", \"ini\": 2524, \"clust\": 1478, \"rank\": 480, \"rankvar\": 1818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 302, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2229, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1728, \"group\": [1479.0, 268.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85870_BALBc-1_X01_Y01_809_965\", \"ini\": 2523, \"clust\": 864, \"rank\": 583, \"rankvar\": 1212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 303, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2397, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1729, \"group\": [864.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86589_BALBc-1_X01_Y01_818_406\", \"ini\": 2522, \"clust\": 292, \"rank\": 2609, \"rankvar\": 2800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 304, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1710, \"cat-2\": \"Density: 25\", \"cat_2_index\": 608, \"group\": [293.0, 61.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86924_BALBc-1_X01_Y01_821_936\", \"ini\": 2521, \"clust\": 60, \"rank\": 1900, \"rankvar\": 2438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 305, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 754, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1835, \"group\": [57.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87345_BALBc-1_X01_Y01_827_373\", \"ini\": 2520, \"clust\": 449, \"rank\": 1322, \"rankvar\": 1959, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 306, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1711, \"cat-2\": \"Density: 25\", \"cat_2_index\": 609, \"group\": [447.0, 88.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87649_BALBc-1_X01_Y01_830_295\", \"ini\": 2519, \"clust\": 1531, \"rank\": 190, \"rankvar\": 701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 307, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1838, \"cat-2\": \"Density: 22\", \"cat_2_index\": 261, \"group\": [1533.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87664_BALBc-1_X01_Y01_830_425\", \"ini\": 2518, \"clust\": 1880, \"rank\": 314, \"rankvar\": 1519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 308, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2398, \"cat-2\": \"Density: 27\", \"cat_2_index\": 887, \"group\": [1875.0, 278.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88044_BALBc-1_X01_Y01_835_742\", \"ini\": 2517, \"clust\": 961, \"rank\": 879, \"rankvar\": 1635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 309, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1839, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1041, \"group\": [963.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88079_BALBc-1_X01_Y01_836_344\", \"ini\": 2516, \"clust\": 1585, \"rank\": 499, \"rankvar\": 730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 310, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1536, \"cat-2\": \"Density: 25\", \"cat_2_index\": 610, \"group\": [1586.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88188_BALBc-1_X01_Y01_837_652\", \"ini\": 2515, \"clust\": 2483, \"rank\": 1563, \"rankvar\": 2194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 311, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 995, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1192, \"group\": [2480.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88270_BALBc-1_X01_Y01_838_807\", \"ini\": 2514, \"clust\": 739, \"rank\": 1574, \"rankvar\": 2377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 312, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1712, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1730, \"group\": [737.0, 164.0, 40.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88505_BALBc-1_X01_Y01_840_865\", \"ini\": 2513, \"clust\": 706, \"rank\": 2799, \"rankvar\": 2784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 313, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 755, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1936, \"group\": [707.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88518_BALBc-1_X01_Y01_840_980\", \"ini\": 2512, \"clust\": 1461, \"rank\": 101, \"rankvar\": 1230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 314, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 996, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1471, \"group\": [1462.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88712_BALBc-1_X01_Y01_843_668\", \"ini\": 2511, \"clust\": 1443, \"rank\": 245, \"rankvar\": 1185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 315, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1840, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1042, \"group\": [1451.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89100_BALBc-1_X01_Y01_848_541\", \"ini\": 2510, \"clust\": 499, \"rank\": 2645, \"rankvar\": 2657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 316, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1841, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1193, \"group\": [500.0, 104.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90045_BALBc-1_X01_Y01_859_822\", \"ini\": 2509, \"clust\": 2086, \"rank\": 1555, \"rankvar\": 1341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 317, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1713, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1618, \"group\": [2084.0, 307.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90185_BALBc-1_X01_Y01_860_626\", \"ini\": 2508, \"clust\": 910, \"rank\": 1373, \"rankvar\": 2107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 318, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1842, \"cat-2\": \"Density: 27\", \"cat_2_index\": 888, \"group\": [911.0, 212.0, 56.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90284_BALBc-1_X01_Y01_861_874\", \"ini\": 2507, \"clust\": 88, \"rank\": 1649, \"rankvar\": 1831, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 319, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 997, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2047, \"group\": [92.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90366_BALBc-1_X01_Y01_863_139\", \"ini\": 2506, \"clust\": 1708, \"rank\": 52, \"rankvar\": 137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 320, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2399, \"cat-2\": \"Density: 22\", \"cat_2_index\": 262, \"group\": [1704.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91015_BALBc-1_X01_Y01_870_358\", \"ini\": 2505, \"clust\": 14, \"rank\": 2709, \"rankvar\": 2519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 321, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1537, \"cat-2\": \"Density: 24\", \"cat_2_index\": 475, \"group\": [21.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91213_BALBc-1_X01_Y01_872_895\", \"ini\": 2504, \"clust\": 130, \"rank\": 1189, \"rankvar\": 1863, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 322, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 998, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1937, \"group\": [131.0, 28.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91215_BALBc-1_X01_Y01_872_930\", \"ini\": 2503, \"clust\": 1154, \"rank\": 671, \"rankvar\": 487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 323, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 999, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1472, \"group\": [1153.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91352_BALBc-1_X01_Y01_874_726\", \"ini\": 2502, \"clust\": 1292, \"rank\": 559, \"rankvar\": 374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 324, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1000, \"cat-2\": \"Density: 26\", \"cat_2_index\": 736, \"group\": [1290.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91645_BALBc-1_X01_Y01_878_559\", \"ini\": 2501, \"clust\": 1820, \"rank\": 235, \"rankvar\": 1407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 325, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1843, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1194, \"group\": [1816.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91823_BALBc-1_X01_Y01_88_805\", \"ini\": 2500, \"clust\": 833, \"rank\": 2415, \"rankvar\": 2517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 326, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2400, \"cat-2\": \"Density: 23\", \"cat_2_index\": 376, \"group\": [833.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92363_BALBc-1_X01_Y01_887_395\", \"ini\": 2499, \"clust\": 975, \"rank\": 325, \"rankvar\": 284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 327, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1844, \"cat-2\": \"Density: 25\", \"cat_2_index\": 611, \"group\": [974.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92765_BALBc-1_X01_Y01_891_617\", \"ini\": 2498, \"clust\": 837, \"rank\": 1676, \"rankvar\": 2727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 328, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2401, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1473, \"group\": [834.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93018_BALBc-1_X01_Y01_894_905\", \"ini\": 2497, \"clust\": 633, \"rank\": 2153, \"rankvar\": 1909, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 329, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1001, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1474, \"group\": [634.0, 149.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93161_BALBc-1_X01_Y01_896_937\", \"ini\": 2496, \"clust\": 1953, \"rank\": 1908, \"rankvar\": 2103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 330, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1002, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1731, \"group\": [1949.0, 302.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94070_BALBc-1_X01_Y01_907_486\", \"ini\": 2495, \"clust\": 994, \"rank\": 1618, \"rankvar\": 1240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 331, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 756, \"cat-2\": \"Density: 27\", \"cat_2_index\": 889, \"group\": [995.0, 223.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94547_BALBc-1_X01_Y01_912_926\", \"ini\": 2494, \"clust\": 1147, \"rank\": 783, \"rankvar\": 586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 332, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1845, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1619, \"group\": [1148.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94695_BALBc-1_X01_Y01_914_981\", \"ini\": 2493, \"clust\": 210, \"rank\": 1844, \"rankvar\": 2508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 333, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1846, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1732, \"group\": [209.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94725_BALBc-1_X01_Y01_915_472\", \"ini\": 2492, \"clust\": 510, \"rank\": 1894, \"rankvar\": 2495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 334, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1847, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1043, \"group\": [511.0, 106.0, 28.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94799_BALBc-1_X01_Y01_916_387\", \"ini\": 2491, \"clust\": 27, \"rank\": 2438, \"rankvar\": 2434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 335, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 666, \"cat-2\": \"Density: 25\", \"cat_2_index\": 612, \"group\": [28.0, 11.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94985_BALBc-1_X01_Y01_918_863\", \"ini\": 2490, \"clust\": 1231, \"rank\": 1248, \"rankvar\": 1521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 336, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 667, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1345, \"group\": [1234.0, 255.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95149_BALBc-1_X01_Y01_92_950\", \"ini\": 2489, \"clust\": 42, \"rank\": 2676, \"rankvar\": 2793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 337, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1848, \"cat-2\": \"Density: 18\", \"cat_2_index\": 89, \"group\": [41.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95350_BALBc-1_X01_Y01_922_525\", \"ini\": 2488, \"clust\": 445, \"rank\": 1234, \"rankvar\": 1372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 338, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2502, \"cat-2\": \"Density: 27\", \"cat_2_index\": 890, \"group\": [444.0, 88.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95627_BALBc-1_X01_Y01_925_921\", \"ini\": 2487, \"clust\": 417, \"rank\": 1651, \"rankvar\": 2271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 339, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 668, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1044, \"group\": [418.0, 82.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96058_BALBc-1_X01_Y01_930_613\", \"ini\": 2486, \"clust\": 49, \"rank\": 2219, \"rankvar\": 2439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 340, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2402, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1045, \"group\": [48.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96292_BALBc-1_X01_Y01_933_666\", \"ini\": 2485, \"clust\": 57, \"rank\": 1860, \"rankvar\": 2075, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 341, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2403, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1346, \"group\": [59.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96547_BALBc-1_X01_Y01_937_170\", \"ini\": 2484, \"clust\": 31, \"rank\": 2203, \"rankvar\": 1886, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 342, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1849, \"cat-2\": \"Density: 19\", \"cat_2_index\": 115, \"group\": [34.0, 12.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96665_BALBc-1_X01_Y01_938_963\", \"ini\": 2483, \"clust\": 2251, \"rank\": 1482, \"rankvar\": 1639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 343, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1850, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1836, \"group\": [2251.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96745_BALBc-1_X01_Y01_939_916\", \"ini\": 2482, \"clust\": 2173, \"rank\": 1004, \"rankvar\": 1555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 344, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 669, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1475, \"group\": [2169.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96964_BALBc-1_X01_Y01_941_78\", \"ini\": 2481, \"clust\": 25, \"rank\": 2770, \"rankvar\": 2822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 345, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1851, \"cat-2\": \"Density: 17\", \"cat_2_index\": 70, \"group\": [25.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98233_BALBc-1_X01_Y01_957_431\", \"ini\": 2480, \"clust\": 50, \"rank\": 2465, \"rankvar\": 2610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 346, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1852, \"cat-2\": \"Density: 23\", \"cat_2_index\": 377, \"group\": [49.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98244_BALBc-1_X01_Y01_957_547\", \"ini\": 2479, \"clust\": 219, \"rank\": 1053, \"rankvar\": 2183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 347, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1003, \"cat-2\": \"Density: 25\", \"cat_2_index\": 613, \"group\": [218.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98423_BALBc-1_X01_Y01_96_276\", \"ini\": 2478, \"clust\": 629, \"rank\": 2396, \"rankvar\": 2145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 348, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 757, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1347, \"group\": [628.0, 147.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98533_BALBc-1_X01_Y01_960_606\", \"ini\": 2477, \"clust\": 869, \"rank\": 181, \"rankvar\": 1610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 349, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1853, \"cat-2\": \"Density: 27\", \"cat_2_index\": 891, \"group\": [867.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98687_BALBc-1_X01_Y01_962_516\", \"ini\": 2476, \"clust\": 1127, \"rank\": 758, \"rankvar\": 2013, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 350, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1004, \"cat-2\": \"Density: 25\", \"cat_2_index\": 614, \"group\": [1127.0, 239.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98848_BALBc-1_X01_Y01_964_670\", \"ini\": 2475, \"clust\": 486, \"rank\": 2472, \"rankvar\": 2099, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 351, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1005, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1046, \"group\": [487.0, 101.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98850_BALBc-1_X01_Y01_964_694\", \"ini\": 2474, \"clust\": 1882, \"rank\": 86, \"rankvar\": 1315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 352, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1854, \"cat-2\": \"Density: 26\", \"cat_2_index\": 737, \"group\": [1877.0, 278.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99057_BALBc-1_X01_Y01_967_479\", \"ini\": 2473, \"clust\": 36, \"rank\": 2295, \"rankvar\": 2567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 353, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1855, \"cat-2\": \"Density: 23\", \"cat_2_index\": 378, \"group\": [36.0, 13.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99105_BALBc-1_X01_Y01_967_965\", \"ini\": 2472, \"clust\": 191, \"rank\": 2325, \"rankvar\": 2482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 354, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 670, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1476, \"group\": [189.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99401_BALBc-1_X01_Y01_970_988\", \"ini\": 2471, \"clust\": 2760, \"rank\": 1768, \"rankvar\": 1846, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 355, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 671, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1477, \"group\": [2763.0, 426.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99809_BALBc-1_X01_Y01_976_311\", \"ini\": 2470, \"clust\": 225, \"rank\": 2195, \"rankvar\": 2464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 356, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2404, \"cat-2\": \"Density: 24\", \"cat_2_index\": 476, \"group\": [225.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100228_BALBc-1_X01_Y01_980_928\", \"ini\": 2469, \"clust\": 853, \"rank\": 825, \"rankvar\": 1604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 357, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 893, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1047, \"group\": [854.0, 197.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100256_BALBc-1_X01_Y01_981_360\", \"ini\": 2468, \"clust\": 175, \"rank\": 1612, \"rankvar\": 1800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 358, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 672, \"cat-2\": \"Density: 25\", \"cat_2_index\": 615, \"group\": [174.0, 41.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100547_BALBc-1_X01_Y01_985_432\", \"ini\": 2467, \"clust\": 1075, \"rank\": 963, \"rankvar\": 466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 359, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1856, \"cat-2\": \"Density: 22\", \"cat_2_index\": 263, \"group\": [1076.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100572_BALBc-1_X01_Y01_985_76\", \"ini\": 2466, \"clust\": 462, \"rank\": 2677, \"rankvar\": 2645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 360, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2266, \"cat-2\": \"Density: 18\", \"cat_2_index\": 90, \"group\": [464.0, 94.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101105_BALBc-1_X01_Y01_991_734\", \"ini\": 2465, \"clust\": 2455, \"rank\": 1573, \"rankvar\": 601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 361, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1857, \"cat-2\": \"Density: 25\", \"cat_2_index\": 616, \"group\": [2453.0, 370.0, 89.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101341_BALBc-1_X01_Y01_994_653\", \"ini\": 2464, \"clust\": 1652, \"rank\": 25, \"rankvar\": 761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 362, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1006, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1048, \"group\": [1653.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101367_BALBc-1_X01_Y01_994_943\", \"ini\": 2463, \"clust\": 257, \"rank\": 2540, \"rankvar\": 2487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 363, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 673, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1049, \"group\": [257.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-727_BALBc-1_X02_Y01_100_250\", \"ini\": 2462, \"clust\": 571, \"rank\": 1943, \"rankvar\": 2054, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 364, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1858, \"cat-2\": \"Density: 26\", \"cat_2_index\": 738, \"group\": [569.0, 128.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-920_BALBc-1_X02_Y01_1001_805\", \"ini\": 2461, \"clust\": 777, \"rank\": 1703, \"rankvar\": 688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 365, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1714, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1478, \"group\": [780.0, 181.0, 46.0, 11.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1117_BALBc-1_X02_Y01_1004_49\", \"ini\": 2460, \"clust\": 1181, \"rank\": 935, \"rankvar\": 1274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 366, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1007, \"cat-2\": \"Density: 21\", \"cat_2_index\": 195, \"group\": [1178.0, 250.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1309_BALBc-1_X02_Y01_1006_988\", \"ini\": 2459, \"clust\": 538, \"rank\": 2702, \"rankvar\": 2670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 367, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1008, \"cat-2\": \"Density: 25\", \"cat_2_index\": 617, \"group\": [541.0, 116.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1701_BALBc-1_X02_Y01_1010_833\", \"ini\": 2458, \"clust\": 1589, \"rank\": 711, \"rankvar\": 614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 368, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1859, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1348, \"group\": [1595.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1932_BALBc-1_X02_Y01_1013_860\", \"ini\": 2457, \"clust\": 149, \"rank\": 2264, \"rankvar\": 2467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 369, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 758, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1479, \"group\": [150.0, 32.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1955_BALBc-1_X02_Y01_1014_248\", \"ini\": 2456, \"clust\": 2637, \"rank\": 2254, \"rankvar\": 1186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 370, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1860, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1620, \"group\": [2635.0, 406.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2025_BALBc-1_X02_Y01_1015_159\", \"ini\": 2455, \"clust\": 2751, \"rank\": 938, \"rankvar\": 1553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 371, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1861, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1480, \"group\": [2748.0, 424.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2212_BALBc-1_X02_Y01_1017_633\", \"ini\": 2454, \"clust\": 182, \"rank\": 1889, \"rankvar\": 1881, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 372, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2405, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1050, \"group\": [185.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2698_BALBc-1_X02_Y01_1022_99\", \"ini\": 2453, \"clust\": 316, \"rank\": 1495, \"rankvar\": 2299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 373, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1862, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1051, \"group\": [316.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2934_BALBc-1_X02_Y01_1025_811\", \"ini\": 2452, \"clust\": 2547, \"rank\": 1565, \"rankvar\": 979, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 374, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1715, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1938, \"group\": [2548.0, 388.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2976_BALBc-1_X02_Y01_1026_488\", \"ini\": 2451, \"clust\": 1001, \"rank\": 1212, \"rankvar\": 363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 375, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1863, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1481, \"group\": [1005.0, 224.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3352_BALBc-1_X02_Y01_103_900\", \"ini\": 2450, \"clust\": 2377, \"rank\": 2742, \"rankvar\": 2716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 376, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2477, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1621, \"group\": [2388.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3627_BALBc-1_X02_Y01_1033_729\", \"ini\": 2449, \"clust\": 1118, \"rank\": 676, \"rankvar\": 1614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 377, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2807, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1349, \"group\": [1117.0, 237.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3919_BALBc-1_X02_Y01_1037_288\", \"ini\": 2448, \"clust\": 2700, \"rank\": 2070, \"rankvar\": 2140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 378, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 674, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2048, \"group\": [2699.0, 415.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4041_BALBc-1_X02_Y01_1038_754\", \"ini\": 2447, \"clust\": 2241, \"rank\": 525, \"rankvar\": 667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 379, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1009, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1350, \"group\": [2242.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4239_BALBc-1_X02_Y01_1040_415\", \"ini\": 2446, \"clust\": 575, \"rank\": 2279, \"rankvar\": 2267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 380, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1864, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1052, \"group\": [575.0, 129.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4540_BALBc-1_X02_Y01_1044_183\", \"ini\": 2445, \"clust\": 2033, \"rank\": 2059, \"rankvar\": 2728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 381, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1010, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1733, \"group\": [2032.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4583_BALBc-1_X02_Y01_1044_66\", \"ini\": 2444, \"clust\": 2753, \"rank\": 1239, \"rankvar\": 424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 382, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1538, \"cat-2\": \"Density: 24\", \"cat_2_index\": 477, \"group\": [2757.0, 425.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4708_BALBc-1_X02_Y01_1046_353\", \"ini\": 2443, \"clust\": 1601, \"rank\": 331, \"rankvar\": 7, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 383, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 675, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1351, \"group\": [1600.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4717_BALBc-1_X02_Y01_1046_503\", \"ini\": 2442, \"clust\": 1946, \"rank\": 1775, \"rankvar\": 1935, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 384, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2808, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1482, \"group\": [1942.0, 301.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4778_BALBc-1_X02_Y01_1047_250\", \"ini\": 2441, \"clust\": 2488, \"rank\": 2115, \"rankvar\": 2675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 385, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1865, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1837, \"group\": [2485.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4973_BALBc-1_X02_Y01_1049_643\", \"ini\": 2440, \"clust\": 1712, \"rank\": 21, \"rankvar\": 628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 386, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 759, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1483, \"group\": [1708.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5021_BALBc-1_X02_Y01_105_184\", \"ini\": 2439, \"clust\": 223, \"rank\": 1945, \"rankvar\": 1770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 387, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2406, \"cat-2\": \"Density: 21\", \"cat_2_index\": 196, \"group\": [226.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5131_BALBc-1_X02_Y01_1050_723\", \"ini\": 2438, \"clust\": 2383, \"rank\": 2723, \"rankvar\": 2803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 388, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1866, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1734, \"group\": [2381.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5233_BALBc-1_X02_Y01_1052_226\", \"ini\": 2437, \"clust\": 1434, \"rank\": 250, \"rankvar\": 1830, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 389, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1011, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2049, \"group\": [1433.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5349_BALBc-1_X02_Y01_1053_839\", \"ini\": 2436, \"clust\": 1054, \"rank\": 874, \"rankvar\": 1765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 390, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1867, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2050, \"group\": [1055.0, 227.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5616_BALBc-1_X02_Y01_1056_980\", \"ini\": 2435, \"clust\": 1089, \"rank\": 497, \"rankvar\": 1559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 391, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1012, \"cat-2\": \"Density: 27\", \"cat_2_index\": 892, \"group\": [1089.0, 232.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5712_BALBc-1_X02_Y01_1058_349\", \"ini\": 2434, \"clust\": 969, \"rank\": 796, \"rankvar\": 608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 392, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 676, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1352, \"group\": [970.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5723_BALBc-1_X02_Y01_1058_507\", \"ini\": 2433, \"clust\": 174, \"rank\": 1368, \"rankvar\": 1942, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 393, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2809, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1622, \"group\": [176.0, 41.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6217_BALBc-1_X02_Y01_1063_382\", \"ini\": 2432, \"clust\": 2039, \"rank\": 1598, \"rankvar\": 2062, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 394, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1013, \"cat-2\": \"Density: 27\", \"cat_2_index\": 893, \"group\": [2036.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6529_BALBc-1_X02_Y01_1067_754\", \"ini\": 2431, \"clust\": 1419, \"rank\": 786, \"rankvar\": 1221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 395, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1868, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1623, \"group\": [1423.0, 265.0, 65.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6591_BALBc-1_X02_Y01_1068_473\", \"ini\": 2430, \"clust\": 194, \"rank\": 2543, \"rankvar\": 2745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 396, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1869, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1195, \"group\": [192.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6633_BALBc-1_X02_Y01_1068_843\", \"ini\": 2429, \"clust\": 1698, \"rank\": 11, \"rankvar\": 623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 397, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1870, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1939, \"group\": [1695.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7022_BALBc-1_X02_Y01_1072_571\", \"ini\": 2428, \"clust\": 109, \"rank\": 1389, \"rankvar\": 1703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 398, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 760, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1838, \"group\": [112.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7059_BALBc-1_X02_Y01_1072_960\", \"ini\": 2427, \"clust\": 161, \"rank\": 2389, \"rankvar\": 2154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 399, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1871, \"cat-2\": \"Density: 25\", \"cat_2_index\": 618, \"group\": [160.0, 35.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7262_BALBc-1_X02_Y01_1075_334\", \"ini\": 2426, \"clust\": 2221, \"rank\": 996, \"rankvar\": 645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 400, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2267, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1735, \"group\": [2219.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7803_BALBc-1_X02_Y01_1081_510\", \"ini\": 2425, \"clust\": 2702, \"rank\": 1589, \"rankvar\": 1928, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 401, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1576, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1053, \"group\": [2698.0, 415.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8504_BALBc-1_X02_Y01_109_960\", \"ini\": 2424, \"clust\": 2201, \"rank\": 854, \"rankvar\": 2146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 402, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1014, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2051, \"group\": [2196.0, 316.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8575_BALBc-1_X02_Y01_1090_708\", \"ini\": 2423, \"clust\": 1119, \"rank\": 803, \"rankvar\": 1417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 403, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1872, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1736, \"group\": [1118.0, 237.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8689_BALBc-1_X02_Y01_1092_353\", \"ini\": 2422, \"clust\": 2453, \"rank\": 2171, \"rankvar\": 1742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 404, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1873, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1484, \"group\": [2450.0, 368.0, 88.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9108_BALBc-1_X02_Y01_1097_627\", \"ini\": 2421, \"clust\": 2060, \"rank\": 2139, \"rankvar\": 2413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 405, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1015, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1940, \"group\": [2057.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9139_BALBc-1_X02_Y01_1098_191\", \"ini\": 2420, \"clust\": 2585, \"rank\": 1533, \"rankvar\": 1722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 406, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1874, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1941, \"group\": [2582.0, 393.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9234_BALBc-1_X02_Y01_1099_456\", \"ini\": 2419, \"clust\": 1918, \"rank\": 1379, \"rankvar\": 1543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 407, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1016, \"cat-2\": \"Density: 27\", \"cat_2_index\": 894, \"group\": [1916.0, 293.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9814_BALBc-1_X02_Y01_1104_657\", \"ini\": 2418, \"clust\": 2247, \"rank\": 447, \"rankvar\": 1031, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 408, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1607, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1839, \"group\": [2243.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9841_BALBc-1_X02_Y01_1104_956\", \"ini\": 2417, \"clust\": 1479, \"rank\": 398, \"rankvar\": 938, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 409, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1875, \"cat-2\": \"Density: 25\", \"cat_2_index\": 619, \"group\": [1480.0, 268.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9888_BALBc-1_X02_Y01_1105_530\", \"ini\": 2416, \"clust\": 1896, \"rank\": 2716, \"rankvar\": 2569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 410, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1577, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1353, \"group\": [1896.0, 288.0, 69.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9992_BALBc-1_X02_Y01_1106_822\", \"ini\": 2415, \"clust\": 1711, \"rank\": 62, \"rankvar\": 551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 411, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1876, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1840, \"group\": [1710.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10019_BALBc-1_X02_Y01_1107_235\", \"ini\": 2414, \"clust\": 584, \"rank\": 1300, \"rankvar\": 1646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 412, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2478, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1942, \"group\": [585.0, 133.0, 36.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10132_BALBc-1_X02_Y01_1108_495\", \"ini\": 2413, \"clust\": 1069, \"rank\": 772, \"rankvar\": 323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 413, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2407, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1354, \"group\": [1072.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10374_BALBc-1_X02_Y01_1110_694\", \"ini\": 2412, \"clust\": 2343, \"rank\": 1177, \"rankvar\": 868, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 414, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1539, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2140, \"group\": [2341.0, 336.0, 78.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10576_BALBc-1_X02_Y01_1113_426\", \"ini\": 2411, \"clust\": 144, \"rank\": 1852, \"rankvar\": 2228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 415, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1017, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1355, \"group\": [144.0, 30.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10601_BALBc-1_X02_Y01_1113_726\", \"ini\": 2410, \"clust\": 1530, \"rank\": 358, \"rankvar\": 181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 416, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 761, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1737, \"group\": [1529.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10688_BALBc-1_X02_Y01_1114_902\", \"ini\": 2409, \"clust\": 2348, \"rank\": 2632, \"rankvar\": 2443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 417, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1877, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1624, \"group\": [2349.0, 343.0, 80.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10939_BALBc-1_X02_Y01_1118_266\", \"ini\": 2408, \"clust\": 1837, \"rank\": 29, \"rankvar\": 762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 418, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1878, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1943, \"group\": [1836.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10988_BALBc-1_X02_Y01_1118_830\", \"ini\": 2407, \"clust\": 1315, \"rank\": 432, \"rankvar\": 669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 419, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 762, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1738, \"group\": [1317.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11337_BALBc-1_X02_Y01_1122_571\", \"ini\": 2406, \"clust\": 1886, \"rank\": 1811, \"rankvar\": 1306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 420, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1018, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1841, \"group\": [1884.0, 280.0, 67.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11413_BALBc-1_X02_Y01_1123_613\", \"ini\": 2405, \"clust\": 86, \"rank\": 1478, \"rankvar\": 1190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 421, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1019, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2141, \"group\": [87.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11498_BALBc-1_X02_Y01_1124_538\", \"ini\": 2404, \"clust\": 2235, \"rank\": 877, \"rankvar\": 836, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 422, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2268, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1739, \"group\": [2232.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11656_BALBc-1_X02_Y01_1126_662\", \"ini\": 2403, \"clust\": 602, \"rank\": 2441, \"rankvar\": 2544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 423, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1540, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2297, \"group\": [603.0, 139.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11767_BALBc-1_X02_Y01_1128_191\", \"ini\": 2402, \"clust\": 2199, \"rank\": 897, \"rankvar\": 2208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 424, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 763, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1740, \"group\": [2194.0, 316.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11839_BALBc-1_X02_Y01_1129_238\", \"ini\": 2401, \"clust\": 1593, \"rank\": 126, \"rankvar\": 1691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 425, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2479, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1944, \"group\": [1592.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12133_BALBc-1_X02_Y01_1132_128\", \"ini\": 2400, \"clust\": 2341, \"rank\": 1114, \"rankvar\": 781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 426, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 764, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1625, \"group\": [2338.0, 333.0, 77.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12185_BALBc-1_X02_Y01_1132_650\", \"ini\": 2399, \"clust\": 1944, \"rank\": 1801, \"rankvar\": 1528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 427, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 765, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1842, \"group\": [1943.0, 301.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12327_BALBc-1_X02_Y01_1134_751\", \"ini\": 2398, \"clust\": 682, \"rank\": 2549, \"rankvar\": 1617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 428, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 766, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1945, \"group\": [687.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12702_BALBc-1_X02_Y01_1139_494\", \"ini\": 2397, \"clust\": 2125, \"rank\": 1620, \"rankvar\": 1451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 429, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2269, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1485, \"group\": [2121.0, 312.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12872_BALBc-1_X02_Y01_1140_895\", \"ini\": 2396, \"clust\": 1185, \"rank\": 998, \"rankvar\": 536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 430, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1879, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1196, \"group\": [1190.0, 253.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13105_BALBc-1_X02_Y01_1143_686\", \"ini\": 2395, \"clust\": 2728, \"rank\": 1776, \"rankvar\": 1630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 431, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 767, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1626, \"group\": [2726.0, 420.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13323_BALBc-1_X02_Y01_1146_697\", \"ini\": 2394, \"clust\": 2131, \"rank\": 1147, \"rankvar\": 1073, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 432, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 768, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2052, \"group\": [2128.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13387_BALBc-1_X02_Y01_1147_623\", \"ini\": 2393, \"clust\": 2069, \"rank\": 2034, \"rankvar\": 2333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 433, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1020, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2053, \"group\": [2068.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13636_BALBc-1_X02_Y01_115_870\", \"ini\": 2392, \"clust\": 2255, \"rank\": 1078, \"rankvar\": 1656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 434, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 677, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1486, \"group\": [2252.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13712_BALBc-1_X02_Y01_1150_829\", \"ini\": 2391, \"clust\": 2219, \"rank\": 947, \"rankvar\": 969, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 435, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 769, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1356, \"group\": [2217.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13747_BALBc-1_X02_Y01_1151_270\", \"ini\": 2390, \"clust\": 1667, \"rank\": 1, \"rankvar\": 1147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 436, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2408, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2054, \"group\": [1663.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13791_BALBc-1_X02_Y01_1151_786\", \"ini\": 2389, \"clust\": 2749, \"rank\": 1237, \"rankvar\": 921, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 437, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1021, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1197, \"group\": [2746.0, 424.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13891_BALBc-1_X02_Y01_1153_161\", \"ini\": 2388, \"clust\": 96, \"rank\": 1329, \"rankvar\": 1164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 438, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 770, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1198, \"group\": [99.0, 22.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13893_BALBc-1_X02_Y01_1153_212\", \"ini\": 2387, \"clust\": 1557, \"rank\": 492, \"rankvar\": 1090, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 439, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1716, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1741, \"group\": [1558.0, 272.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14380_BALBc-1_X02_Y01_1159_66\", \"ini\": 2386, \"clust\": 1182, \"rank\": 771, \"rankvar\": 616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 440, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1880, \"cat-2\": \"Density: 22\", \"cat_2_index\": 264, \"group\": [1179.0, 250.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14826_BALBc-1_X02_Y01_1164_105\", \"ini\": 2385, \"clust\": 123, \"rank\": 1587, \"rankvar\": 2105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 441, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 771, \"cat-2\": \"Density: 27\", \"cat_2_index\": 895, \"group\": [124.0, 27.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15075_BALBc-1_X02_Y01_1167_300\", \"ini\": 2384, \"clust\": 470, \"rank\": 2825, \"rankvar\": 2779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 442, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 772, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2298, \"group\": [470.0, 95.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15083_BALBc-1_X02_Y01_1167_377\", \"ini\": 2383, \"clust\": 1474, \"rank\": 299, \"rankvar\": 1157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 443, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1022, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1054, \"group\": [1477.0, 268.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15194_BALBc-1_X02_Y01_1168_743\", \"ini\": 2382, \"clust\": 2511, \"rank\": 1094, \"rankvar\": 711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 444, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 5, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1742, \"group\": [2510.0, 381.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15334_BALBc-1_X02_Y01_117_883\", \"ini\": 2381, \"clust\": 2798, \"rank\": 1785, \"rankvar\": 1352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 445, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1881, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1487, \"group\": [2796.0, 430.0, 103.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15471_BALBc-1_X02_Y01_1171_582\", \"ini\": 2380, \"clust\": 550, \"rank\": 2011, \"rankvar\": 1683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 446, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1023, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1843, \"group\": [549.0, 120.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15630_BALBc-1_X02_Y01_1173_619\", \"ini\": 2379, \"clust\": 776, \"rank\": 2207, \"rankvar\": 891, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 447, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1024, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1844, \"group\": [776.0, 177.0, 45.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15634_BALBc-1_X02_Y01_1173_634\", \"ini\": 2378, \"clust\": 2030, \"rank\": 1672, \"rankvar\": 2368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 448, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 773, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2055, \"group\": [2025.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15644_BALBc-1_X02_Y01_1173_755\", \"ini\": 2377, \"clust\": 401, \"rank\": 2574, \"rankvar\": 2540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 449, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1025, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1488, \"group\": [403.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15706_BALBc-1_X02_Y01_1174_723\", \"ini\": 2376, \"clust\": 747, \"rank\": 1937, \"rankvar\": 1601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 450, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 774, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1627, \"group\": [747.0, 168.0, 43.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15832_BALBc-1_X02_Y01_1176_472\", \"ini\": 2375, \"clust\": 605, \"rank\": 1500, \"rankvar\": 2097, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 451, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1026, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1357, \"group\": [606.0, 139.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16250_BALBc-1_X02_Y01_1180_834\", \"ini\": 2374, \"clust\": 2019, \"rank\": 1985, \"rankvar\": 2515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 452, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 775, \"cat-2\": \"Density: 27\", \"cat_2_index\": 896, \"group\": [2017.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16261_BALBc-1_X02_Y01_1180_946\", \"ini\": 2373, \"clust\": 1032, \"rank\": 1092, \"rankvar\": 1244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 453, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1882, \"cat-2\": \"Density: 27\", \"cat_2_index\": 897, \"group\": [1031.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16286_BALBc-1_X02_Y01_1181_398\", \"ini\": 2372, \"clust\": 2551, \"rank\": 1743, \"rankvar\": 1006, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 454, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1027, \"cat-2\": \"Density: 27\", \"cat_2_index\": 898, \"group\": [2551.0, 388.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16453_BALBc-1_X02_Y01_1183_622\", \"ini\": 2371, \"clust\": 804, \"rank\": 1362, \"rankvar\": 766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 455, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 6, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1743, \"group\": [817.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16460_BALBc-1_X02_Y01_1183_734\", \"ini\": 2370, \"clust\": 1590, \"rank\": 369, \"rankvar\": 1049, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 456, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 7, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1628, \"group\": [1590.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16490_BALBc-1_X02_Y01_1184_20\", \"ini\": 2369, \"clust\": 26, \"rank\": 2499, \"rankvar\": 2463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 457, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 894, \"cat-2\": \"Density: 15\", \"cat_2_index\": 36, \"group\": [26.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16779_BALBc-1_X02_Y01_1188_180\", \"ini\": 2368, \"clust\": 491, \"rank\": 2366, \"rankvar\": 2253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 458, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 776, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2056, \"group\": [491.0, 103.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16869_BALBc-1_X02_Y01_1189_208\", \"ini\": 2367, \"clust\": 1420, \"rank\": 460, \"rankvar\": 1278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 459, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1717, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2220, \"group\": [1422.0, 264.0, 65.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16889_BALBc-1_X02_Y01_1189_451\", \"ini\": 2366, \"clust\": 1743, \"rank\": 159, \"rankvar\": 985, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 460, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1028, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1489, \"group\": [1743.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16901_BALBc-1_X02_Y01_1189_539\", \"ini\": 2365, \"clust\": 761, \"rank\": 1040, \"rankvar\": 394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 461, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1608, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2221, \"group\": [761.0, 173.0, 44.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17048_BALBc-1_X02_Y01_1190_641\", \"ini\": 2364, \"clust\": 1741, \"rank\": 212, \"rankvar\": 208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 462, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 8, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1946, \"group\": [1738.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17117_BALBc-1_X02_Y01_1191_556\", \"ini\": 2363, \"clust\": 2053, \"rank\": 2086, \"rankvar\": 2272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 463, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1609, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1629, \"group\": [2054.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17132_BALBc-1_X02_Y01_1191_663\", \"ini\": 2362, \"clust\": 2246, \"rank\": 588, \"rankvar\": 899, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 464, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 777, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1947, \"group\": [2247.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17336_BALBc-1_X02_Y01_1194_509\", \"ini\": 2361, \"clust\": 1597, \"rank\": 288, \"rankvar\": 62, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 465, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1610, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1630, \"group\": [1598.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17653_BALBc-1_X02_Y01_1198_693\", \"ini\": 2360, \"clust\": 1769, \"rank\": 360, \"rankvar\": 324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 466, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 778, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2057, \"group\": [1767.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17657_BALBc-1_X02_Y01_1198_792\", \"ini\": 2359, \"clust\": 2083, \"rank\": 1933, \"rankvar\": 2288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 467, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1029, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1055, \"group\": [2078.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17668_BALBc-1_X02_Y01_1198_965\", \"ini\": 2358, \"clust\": 509, \"rank\": 1440, \"rankvar\": 2330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 468, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2409, \"cat-2\": \"Density: 26\", \"cat_2_index\": 739, \"group\": [512.0, 106.0, 28.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17790_BALBc-1_X02_Y01_12_625\", \"ini\": 2357, \"clust\": 151, \"rank\": 2327, \"rankvar\": 1834, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 469, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1883, \"cat-2\": \"Density: 25\", \"cat_2_index\": 620, \"group\": [153.0, 33.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17829_BALBc-1_X02_Y01_12_949\", \"ini\": 2356, \"clust\": 2823, \"rank\": 2051, \"rankvar\": 797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 470, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1718, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1358, \"group\": [2823.0, 441.0, 107.0, 29.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17833_BALBc-1_X02_Y01_120_10\", \"ini\": 2355, \"clust\": 387, \"rank\": 2289, \"rankvar\": 2445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 471, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1611, \"cat-2\": \"Density: 15\", \"cat_2_index\": 37, \"group\": [386.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17960_BALBc-1_X02_Y01_1200_621\", \"ini\": 2354, \"clust\": 2249, \"rank\": 579, \"rankvar\": 835, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 472, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 9, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1845, \"group\": [2245.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18016_BALBc-1_X02_Y01_1201_255\", \"ini\": 2353, \"clust\": 265, \"rank\": 2017, \"rankvar\": 2116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 473, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1030, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1744, \"group\": [265.0, 48.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18096_BALBc-1_X02_Y01_1202_300\", \"ini\": 2352, \"clust\": 2093, \"rank\": 2046, \"rankvar\": 2500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 474, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1719, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1631, \"group\": [2091.0, 308.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18196_BALBc-1_X02_Y01_1203_578\", \"ini\": 2351, \"clust\": 2268, \"rank\": 965, \"rankvar\": 1910, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 475, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1612, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1632, \"group\": [2266.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18210_BALBc-1_X02_Y01_1203_725\", \"ini\": 2350, \"clust\": 1, \"rank\": 2193, \"rankvar\": 1549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 476, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1031, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1633, \"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18259_BALBc-1_X02_Y01_1204_360\", \"ini\": 2349, \"clust\": 2200, \"rank\": 919, \"rankvar\": 2287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 477, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1720, \"cat-2\": \"Density: 26\", \"cat_2_index\": 740, \"group\": [2195.0, 316.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18482_BALBc-1_X02_Y01_1206_858\", \"ini\": 2348, \"clust\": 648, \"rank\": 2596, \"rankvar\": 1679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 478, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 779, \"cat-2\": \"Density: 24\", \"cat_2_index\": 478, \"group\": [656.0, 154.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18612_BALBc-1_X02_Y01_1208_674\", \"ini\": 2347, \"clust\": 2621, \"rank\": 2083, \"rankvar\": 1877, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 479, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1032, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2058, \"group\": [2616.0, 400.0, 96.0, 25.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18710_BALBc-1_X02_Y01_1209_899\", \"ini\": 2346, \"clust\": 517, \"rank\": 2245, \"rankvar\": 1072, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 480, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 780, \"cat-2\": \"Density: 24\", \"cat_2_index\": 479, \"group\": [516.0, 109.0, 29.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18905_BALBc-1_X02_Y01_1211_658\", \"ini\": 2345, \"clust\": 743, \"rank\": 1327, \"rankvar\": 1330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 10, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2059, \"group\": [746.0, 167.0, 43.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19104_BALBc-1_X02_Y01_1214_445\", \"ini\": 2344, \"clust\": 762, \"rank\": 901, \"rankvar\": 1241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 482, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2410, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1056, \"group\": [762.0, 173.0, 44.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19264_BALBc-1_X02_Y01_1216_455\", \"ini\": 2343, \"clust\": 983, \"rank\": 839, \"rankvar\": 579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 483, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1613, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1359, \"group\": [982.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19265_BALBc-1_X02_Y01_1216_472\", \"ini\": 2342, \"clust\": 2041, \"rank\": 2064, \"rankvar\": 1466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 484, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1614, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1634, \"group\": [2045.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19271_BALBc-1_X02_Y01_1216_594\", \"ini\": 2341, \"clust\": 2316, \"rank\": 1665, \"rankvar\": 815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 485, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 781, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1635, \"group\": [2314.0, 320.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19288_BALBc-1_X02_Y01_1216_855\", \"ini\": 2340, \"clust\": 2011, \"rank\": 2518, \"rankvar\": 2564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 486, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 782, \"cat-2\": \"Density: 24\", \"cat_2_index\": 480, \"group\": [2008.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19310_BALBc-1_X02_Y01_1217_258\", \"ini\": 2339, \"clust\": 2151, \"rank\": 1129, \"rankvar\": 1293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 487, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1033, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1745, \"group\": [2148.0, 314.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19351_BALBc-1_X02_Y01_1217_759\", \"ini\": 2338, \"clust\": 2128, \"rank\": 1494, \"rankvar\": 885, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 488, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2503, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1360, \"group\": [2125.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19674_BALBc-1_X02_Y01_1221_135\", \"ini\": 2337, \"clust\": 1087, \"rank\": 1347, \"rankvar\": 470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 489, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2411, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1057, \"group\": [1087.0, 231.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19754_BALBc-1_X02_Y01_1222_168\", \"ini\": 2336, \"clust\": 2305, \"rank\": 779, \"rankvar\": 1063, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 490, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1721, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1746, \"group\": [2301.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19785_BALBc-1_X02_Y01_1222_508\", \"ini\": 2335, \"clust\": 2006, \"rank\": 1882, \"rankvar\": 2185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 491, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1615, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1490, \"group\": [2004.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20247_BALBc-1_X02_Y01_1228_427\", \"ini\": 2334, \"clust\": 2604, \"rank\": 1556, \"rankvar\": 671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2504, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1361, \"group\": [2604.0, 396.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20444_BALBc-1_X02_Y01_1230_254\", \"ini\": 2333, \"clust\": 2040, \"rank\": 1823, \"rankvar\": 2136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 493, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1034, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1636, \"group\": [2037.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20674_BALBc-1_X02_Y01_1232_895\", \"ini\": 2332, \"clust\": 2037, \"rank\": 1800, \"rankvar\": 2654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 494, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 783, \"cat-2\": \"Density: 27\", \"cat_2_index\": 899, \"group\": [2034.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20684_BALBc-1_X02_Y01_1232_950\", \"ini\": 2331, \"clust\": 471, \"rank\": 2815, \"rankvar\": 2620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 495, \"cat-1\": \"Neighbor: CD4(-)CD8(-) cDC\", \"cat_1_index\": 1590, \"cat-2\": \"Density: 24\", \"cat_2_index\": 481, \"group\": [471.0, 95.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20877_BALBc-1_X02_Y01_1235_619\", \"ini\": 2330, \"clust\": 2042, \"rank\": 2107, \"rankvar\": 2049, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 496, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 784, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1948, \"group\": [2044.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21358_BALBc-1_X02_Y01_1241_235\", \"ini\": 2329, \"clust\": 393, \"rank\": 2621, \"rankvar\": 2530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 497, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1035, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1362, \"group\": [395.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21512_BALBc-1_X02_Y01_1243_309\", \"ini\": 2328, \"clust\": 2731, \"rank\": 1464, \"rankvar\": 957, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 498, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1722, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1058, \"group\": [2727.0, 421.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21583_BALBc-1_X02_Y01_1244_275\", \"ini\": 2327, \"clust\": 2614, \"rank\": 1621, \"rankvar\": 225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 499, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 11, \"cat-2\": \"Density: 27\", \"cat_2_index\": 900, \"group\": [2620.0, 402.0, 97.0, 25.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21689_BALBc-1_X02_Y01_1245_805\", \"ini\": 2326, \"clust\": 2592, \"rank\": 2021, \"rankvar\": 2182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 500, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2505, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1199, \"group\": [2589.0, 393.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22019_BALBc-1_X02_Y01_125_269\", \"ini\": 2325, \"clust\": 2, \"rank\": 2582, \"rankvar\": 2335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 501, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1884, \"cat-2\": \"Density: 25\", \"cat_2_index\": 621, \"group\": [2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22239_BALBc-1_X02_Y01_1252_216\", \"ini\": 2324, \"clust\": 2176, \"rank\": 808, \"rankvar\": 1128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 502, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2270, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1363, \"group\": [2173.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22243_BALBc-1_X02_Y01_1252_255\", \"ini\": 2323, \"clust\": 2038, \"rank\": 1568, \"rankvar\": 1825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 503, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 12, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1200, \"group\": [2038.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22255_BALBc-1_X02_Y01_1252_348\", \"ini\": 2322, \"clust\": 1423, \"rank\": 544, \"rankvar\": 1113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 504, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1723, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1059, \"group\": [1426.0, 266.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22266_BALBc-1_X02_Y01_1252_472\", \"ini\": 2321, \"clust\": 887, \"rank\": 1058, \"rankvar\": 1540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 505, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2506, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1364, \"group\": [888.0, 203.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22548_BALBc-1_X02_Y01_1256_623\", \"ini\": 2320, \"clust\": 809, \"rank\": 1357, \"rankvar\": 753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 506, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 785, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2060, \"group\": [804.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22671_BALBc-1_X02_Y01_1258_136\", \"ini\": 2319, \"clust\": 1842, \"rank\": 481, \"rankvar\": 431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 507, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1036, \"cat-2\": \"Density: 27\", \"cat_2_index\": 901, \"group\": [1842.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22748_BALBc-1_X02_Y01_1259_383\", \"ini\": 2318, \"clust\": 2090, \"rank\": 1595, \"rankvar\": 2144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 508, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 678, \"cat-2\": \"Density: 27\", \"cat_2_index\": 902, \"group\": [2088.0, 308.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22787_BALBc-1_X02_Y01_1259_893\", \"ini\": 2317, \"clust\": 532, \"rank\": 2180, \"rankvar\": 1220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 509, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 786, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1060, \"group\": [533.0, 115.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22931_BALBc-1_X02_Y01_1260_924\", \"ini\": 2316, \"clust\": 2252, \"rank\": 1384, \"rankvar\": 2180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 510, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 787, \"cat-2\": \"Density: 27\", \"cat_2_index\": 903, \"group\": [2249.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23108_BALBc-1_X02_Y01_1263_256\", \"ini\": 2315, \"clust\": 323, \"rank\": 2689, \"rankvar\": 2790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 511, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 679, \"cat-2\": \"Density: 26\", \"cat_2_index\": 741, \"group\": [324.0, 64.0, 18.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23139_BALBc-1_X02_Y01_1263_670\", \"ini\": 2314, \"clust\": 506, \"rank\": 2802, \"rankvar\": 2776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 512, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1037, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1637, \"group\": [506.0, 105.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23280_BALBc-1_X02_Y01_1265_648\", \"ini\": 2313, \"clust\": 1486, \"rank\": 248, \"rankvar\": 721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 513, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 13, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1846, \"group\": [1485.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23335_BALBc-1_X02_Y01_1266_525\", \"ini\": 2312, \"clust\": 1012, \"rank\": 894, \"rankvar\": 694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 514, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2507, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1491, \"group\": [1010.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23348_BALBc-1_X02_Y01_1266_814\", \"ini\": 2311, \"clust\": 885, \"rank\": 716, \"rankvar\": 1058, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 515, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2508, \"cat-2\": \"Density: 22\", \"cat_2_index\": 265, \"group\": [885.0, 203.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23436_BALBc-1_X02_Y01_1268_124\", \"ini\": 2310, \"clust\": 1552, \"rank\": 490, \"rankvar\": 103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 516, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2271, \"cat-2\": \"Density: 26\", \"cat_2_index\": 742, \"group\": [1550.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23465_BALBc-1_X02_Y01_1268_478\", \"ini\": 2309, \"clust\": 2169, \"rank\": 1655, \"rankvar\": 1699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 517, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 14, \"cat-2\": \"Density: 27\", \"cat_2_index\": 904, \"group\": [2167.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23570_BALBc-1_X02_Y01_1269_960\", \"ini\": 2308, \"clust\": 1476, \"rank\": 145, \"rankvar\": 1581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 518, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1061, \"group\": [1474.0, 268.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23719_BALBc-1_X02_Y01_1271_19\", \"ini\": 2307, \"clust\": 261, \"rank\": 1420, \"rankvar\": 1745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 519, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1885, \"cat-2\": \"Density: 9\", \"cat_2_index\": 1, \"group\": [263.0, 46.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23817_BALBc-1_X02_Y01_1272_501\", \"ini\": 2306, \"clust\": 1614, \"rank\": 164, \"rankvar\": 28, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 520, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2509, \"cat-2\": \"Density: 27\", \"cat_2_index\": 905, \"group\": [1614.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23834_BALBc-1_X02_Y01_1272_684\", \"ini\": 2305, \"clust\": 787, \"rank\": 1005, \"rankvar\": 1993, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 521, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1038, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1365, \"group\": [786.0, 185.0, 48.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23870_BALBc-1_X02_Y01_1273_191\", \"ini\": 2304, \"clust\": 1097, \"rank\": 624, \"rankvar\": 539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 522, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1724, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1062, \"group\": [1104.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23961_BALBc-1_X02_Y01_1274_276\", \"ini\": 2303, \"clust\": 936, \"rank\": 511, \"rankvar\": 806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 523, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2412, \"cat-2\": \"Density: 24\", \"cat_2_index\": 482, \"group\": [936.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24129_BALBc-1_X02_Y01_1276_627\", \"ini\": 2302, \"clust\": 749, \"rank\": 1699, \"rankvar\": 880, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 524, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 15, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1492, \"group\": [750.0, 169.0, 43.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24213_BALBc-1_X02_Y01_1277_743\", \"ini\": 2301, \"clust\": 2612, \"rank\": 2087, \"rankvar\": 1329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 525, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2510, \"cat-2\": \"Density: 26\", \"cat_2_index\": 743, \"group\": [2610.0, 397.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24260_BALBc-1_X02_Y01_1278_371\", \"ini\": 2300, \"clust\": 501, \"rank\": 2130, \"rankvar\": 771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 526, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 16, \"cat-2\": \"Density: 20\", \"cat_2_index\": 140, \"group\": [502.0, 105.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24435_BALBc-1_X02_Y01_128_859\", \"ini\": 2299, \"clust\": 40, \"rank\": 2571, \"rankvar\": 2770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 527, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 680, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1493, \"group\": [42.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24454_BALBc-1_X02_Y01_1280_168\", \"ini\": 2298, \"clust\": 1792, \"rank\": 290, \"rankvar\": 365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 528, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1725, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1063, \"group\": [1789.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24523_BALBc-1_X02_Y01_1281_204\", \"ini\": 2297, \"clust\": 516, \"rank\": 2004, \"rankvar\": 489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 529, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2511, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1064, \"group\": [518.0, 109.0, 29.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24639_BALBc-1_X02_Y01_1282_936\", \"ini\": 2296, \"clust\": 679, \"rank\": 2662, \"rankvar\": 2509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 530, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 788, \"cat-2\": \"Density: 25\", \"cat_2_index\": 622, \"group\": [681.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24854_BALBc-1_X02_Y01_1285_865\", \"ini\": 2295, \"clust\": 2586, \"rank\": 1583, \"rankvar\": 1797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 531, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 789, \"cat-2\": \"Density: 20\", \"cat_2_index\": 141, \"group\": [2583.0, 393.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25171_BALBc-1_X02_Y01_129_327\", \"ini\": 2294, \"clust\": 754, \"rank\": 1044, \"rankvar\": 1828, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 532, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1886, \"cat-2\": \"Density: 26\", \"cat_2_index\": 744, \"group\": [755.0, 172.0, 44.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25272_BALBc-1_X02_Y01_1290_692\", \"ini\": 2293, \"clust\": 1432, \"rank\": 399, \"rankvar\": 1860, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 533, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 17, \"cat-2\": \"Density: 27\", \"cat_2_index\": 906, \"group\": [1436.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25330_BALBc-1_X02_Y01_1291_444\", \"ini\": 2292, \"clust\": 2473, \"rank\": 1741, \"rankvar\": 1068, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 534, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2512, \"cat-2\": \"Density: 21\", \"cat_2_index\": 197, \"group\": [2474.0, 378.0, 91.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25437_BALBc-1_X02_Y01_1292_824\", \"ini\": 2291, \"clust\": 1084, \"rank\": 1224, \"rankvar\": 429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 535, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 18, \"cat-2\": \"Density: 21\", \"cat_2_index\": 198, \"group\": [1085.0, 230.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25507_BALBc-1_X02_Y01_1293_608\", \"ini\": 2290, \"clust\": 805, \"rank\": 1185, \"rankvar\": 686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 536, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 19, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1065, \"group\": [809.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25576_BALBc-1_X02_Y01_1294_588\", \"ini\": 2289, \"clust\": 554, \"rank\": 1788, \"rankvar\": 1958, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 537, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 790, \"cat-2\": \"Density: 26\", \"cat_2_index\": 745, \"group\": [553.0, 121.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25582_BALBc-1_X02_Y01_1294_704\", \"ini\": 2288, \"clust\": 2478, \"rank\": 2401, \"rankvar\": 2529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 538, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1039, \"cat-2\": \"Density: 25\", \"cat_2_index\": 623, \"group\": [2475.0, 379.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25697_BALBc-1_X02_Y01_1296_329\", \"ini\": 2287, \"clust\": 2469, \"rank\": 2385, \"rankvar\": 2232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 539, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2413, \"cat-2\": \"Density: 19\", \"cat_2_index\": 116, \"group\": [2464.0, 372.0, 90.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25710_BALBc-1_X02_Y01_1296_563\", \"ini\": 2286, \"clust\": 2115, \"rank\": 2014, \"rankvar\": 1716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 540, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2513, \"cat-2\": \"Density: 25\", \"cat_2_index\": 624, \"group\": [2112.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25815_BALBc-1_X02_Y01_1297_976\", \"ini\": 2285, \"clust\": 556, \"rank\": 1175, \"rankvar\": 2602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 541, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1040, \"cat-2\": \"Density: 23\", \"cat_2_index\": 379, \"group\": [557.0, 122.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25841_BALBc-1_X02_Y01_1298_381\", \"ini\": 2284, \"clust\": 2031, \"rank\": 1673, \"rankvar\": 2351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 791, \"cat-2\": \"Density: 17\", \"cat_2_index\": 71, \"group\": [2026.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25946_BALBc-1_X02_Y01_1299_659\", \"ini\": 2283, \"clust\": 528, \"rank\": 1879, \"rankvar\": 927, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 543, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 20, \"cat-2\": \"Density: 24\", \"cat_2_index\": 483, \"group\": [528.0, 112.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26179_BALBc-1_X02_Y01_1300_765\", \"ini\": 2282, \"clust\": 2048, \"rank\": 1687, \"rankvar\": 1827, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 544, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2514, \"cat-2\": \"Density: 18\", \"cat_2_index\": 91, \"group\": [2046.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26338_BALBc-1_X02_Y01_1302_966\", \"ini\": 2281, \"clust\": 1963, \"rank\": 2680, \"rankvar\": 2483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 545, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1041, \"cat-2\": \"Density: 22\", \"cat_2_index\": 266, \"group\": [1960.0, 303.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26563_BALBc-1_X02_Y01_1306_615\", \"ini\": 2280, \"clust\": 1848, \"rank\": 933, \"rankvar\": 69, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 546, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 21, \"cat-2\": \"Density: 24\", \"cat_2_index\": 484, \"group\": [1849.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26947_BALBc-1_X02_Y01_1310_844\", \"ini\": 2279, \"clust\": 1935, \"rank\": 1228, \"rankvar\": 1903, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 547, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 22, \"cat-2\": \"Density: 17\", \"cat_2_index\": 72, \"group\": [1931.0, 296.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26986_BALBc-1_X02_Y01_1311_476\", \"ini\": 2278, \"clust\": 2625, \"rank\": 2442, \"rankvar\": 1732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 548, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 23, \"cat-2\": \"Density: 20\", \"cat_2_index\": 142, \"group\": [2623.0, 403.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27217_BALBc-1_X02_Y01_1314_632\", \"ini\": 2277, \"clust\": 1469, \"rank\": 630, \"rankvar\": 86, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 549, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 24, \"cat-2\": \"Density: 23\", \"cat_2_index\": 380, \"group\": [1468.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27299_BALBc-1_X02_Y01_1315_692\", \"ini\": 2276, \"clust\": 1811, \"rank\": 60, \"rankvar\": 1172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 550, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 25, \"cat-2\": \"Density: 22\", \"cat_2_index\": 267, \"group\": [1809.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27307_BALBc-1_X02_Y01_1315_735\", \"ini\": 2275, \"clust\": 874, \"rank\": 1401, \"rankvar\": 521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 26, \"cat-2\": \"Density: 19\", \"cat_2_index\": 117, \"group\": [874.0, 199.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27466_BALBc-1_X02_Y01_1317_879\", \"ini\": 2274, \"clust\": 2729, \"rank\": 1778, \"rankvar\": 808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 552, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 792, \"cat-2\": \"Density: 16\", \"cat_2_index\": 51, \"group\": [2730.0, 421.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27504_BALBc-1_X02_Y01_1318_405\", \"ini\": 2273, \"clust\": 1039, \"rank\": 1335, \"rankvar\": 1248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 553, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 793, \"cat-2\": \"Density: 16\", \"cat_2_index\": 52, \"group\": [1039.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27595_BALBc-1_X02_Y01_1319_808\", \"ini\": 2272, \"clust\": 2329, \"rank\": 1579, \"rankvar\": 1390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 554, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 27, \"cat-2\": \"Density: 15\", \"cat_2_index\": 38, \"group\": [2327.0, 329.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27599_BALBc-1_X02_Y01_1319_890\", \"ini\": 2271, \"clust\": 81, \"rank\": 1897, \"rankvar\": 1162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 555, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 794, \"cat-2\": \"Density: 17\", \"cat_2_index\": 73, \"group\": [80.0, 17.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27627_BALBc-1_X02_Y01_132_376\", \"ini\": 2270, \"clust\": 20, \"rank\": 2804, \"rankvar\": 2764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 556, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1042, \"cat-2\": \"Density: 26\", \"cat_2_index\": 746, \"group\": [19.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27677_BALBc-1_X02_Y01_132_918\", \"ini\": 2269, \"clust\": 173, \"rank\": 1208, \"rankvar\": 2042, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 557, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2515, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1949, \"group\": [177.0, 41.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27726_BALBc-1_X02_Y01_1320_540\", \"ini\": 2268, \"clust\": 2284, \"rank\": 1503, \"rankvar\": 1174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 558, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2516, \"cat-2\": \"Density: 18\", \"cat_2_index\": 92, \"group\": [2282.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27814_BALBc-1_X02_Y01_1321_772\", \"ini\": 2267, \"clust\": 2573, \"rank\": 1677, \"rankvar\": 1598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 559, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 28, \"cat-2\": \"Density: 17\", \"cat_2_index\": 74, \"group\": [2571.0, 391.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27851_BALBc-1_X02_Y01_1322_496\", \"ini\": 2266, \"clust\": 1949, \"rank\": 1734, \"rankvar\": 1350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 560, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2517, \"cat-2\": \"Density: 16\", \"cat_2_index\": 53, \"group\": [1945.0, 301.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27996_BALBc-1_X02_Y01_1324_340\", \"ini\": 2265, \"clust\": 1569, \"rank\": 547, \"rankvar\": 274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 561, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 795, \"cat-2\": \"Density: 13\", \"cat_2_index\": 12, \"group\": [1569.0, 274.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28090_BALBc-1_X02_Y01_1325_569\", \"ini\": 2264, \"clust\": 3, \"rank\": 2290, \"rankvar\": 1796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 562, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 29, \"cat-2\": \"Density: 20\", \"cat_2_index\": 143, \"group\": [4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28093_BALBc-1_X02_Y01_1325_603\", \"ini\": 2263, \"clust\": 599, \"rank\": 2251, \"rankvar\": 2005, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 563, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 30, \"cat-2\": \"Density: 22\", \"cat_2_index\": 268, \"group\": [600.0, 139.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28114_BALBc-1_X02_Y01_1325_828\", \"ini\": 2262, \"clust\": 2117, \"rank\": 2132, \"rankvar\": 1812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 564, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 31, \"cat-2\": \"Density: 15\", \"cat_2_index\": 39, \"group\": [2115.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28137_BALBc-1_X02_Y01_1325_999\", \"ini\": 2261, \"clust\": 1965, \"rank\": 2593, \"rankvar\": 2536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 565, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 796, \"cat-2\": \"Density: 17\", \"cat_2_index\": 75, \"group\": [1962.0, 303.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28664_BALBc-1_X02_Y01_1331_725\", \"ini\": 2260, \"clust\": 0, \"rank\": 2454, \"rankvar\": 1009, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 566, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 32, \"cat-2\": \"Density: 16\", \"cat_2_index\": 54, \"group\": [3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28713_BALBc-1_X02_Y01_1332_436\", \"ini\": 2259, \"clust\": 2362, \"rank\": 2759, \"rankvar\": 1574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 567, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2518, \"cat-2\": \"Density: 14\", \"cat_2_index\": 27, \"group\": [2362.0, 346.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28759_BALBc-1_X02_Y01_1332_937\", \"ini\": 2258, \"clust\": 503, \"rank\": 2736, \"rankvar\": 2359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 568, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 797, \"cat-2\": \"Density: 15\", \"cat_2_index\": 40, \"group\": [504.0, 105.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28951_BALBc-1_X02_Y01_1335_663\", \"ini\": 2257, \"clust\": 2784, \"rank\": 2108, \"rankvar\": 1086, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 569, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 33, \"cat-2\": \"Density: 20\", \"cat_2_index\": 144, \"group\": [2782.0, 428.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29000_BALBc-1_X02_Y01_1336_597\", \"ini\": 2256, \"clust\": 2135, \"rank\": 1550, \"rankvar\": 1270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 570, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 34, \"cat-2\": \"Density: 16\", \"cat_2_index\": 55, \"group\": [2131.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29507_BALBc-1_X02_Y01_137_977\", \"ini\": 2255, \"clust\": 2017, \"rank\": 2228, \"rankvar\": 2723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 571, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1043, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1950, \"group\": [2013.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29674_BALBc-1_X02_Y01_14_498\", \"ini\": 2254, \"clust\": 459, \"rank\": 2762, \"rankvar\": 2804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 572, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2414, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1201, \"group\": [459.0, 94.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29998_BALBc-1_X02_Y01_143_952\", \"ini\": 2253, \"clust\": 264, \"rank\": 1418, \"rankvar\": 1690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 573, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1044, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1951, \"group\": [267.0, 50.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30482_BALBc-1_X02_Y01_15_575\", \"ini\": 2252, \"clust\": 1401, \"rank\": 929, \"rankvar\": 1127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 574, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1887, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1202, \"group\": [1401.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30586_BALBc-1_X02_Y01_150_909\", \"ini\": 2251, \"clust\": 714, \"rank\": 2595, \"rankvar\": 2414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1045, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1494, \"group\": [712.0, 159.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31216_BALBc-1_X02_Y01_159_250\", \"ini\": 2250, \"clust\": 76, \"rank\": 2606, \"rankvar\": 2301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 576, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1617, \"cat-2\": \"Density: 26\", \"cat_2_index\": 747, \"group\": [75.0, 16.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31389_BALBc-1_X02_Y01_160_546\", \"ini\": 2249, \"clust\": 1306, \"rank\": 896, \"rankvar\": 1243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 577, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1888, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1203, \"group\": [1306.0, 259.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31462_BALBc-1_X02_Y01_161_584\", \"ini\": 2248, \"clust\": 1632, \"rank\": 194, \"rankvar\": 73, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 578, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1889, \"cat-2\": \"Density: 27\", \"cat_2_index\": 907, \"group\": [1632.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31774_BALBc-1_X02_Y01_166_30\", \"ini\": 2247, \"clust\": 906, \"rank\": 1120, \"rankvar\": 1161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 579, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1046, \"cat-2\": \"Density: 16\", \"cat_2_index\": 56, \"group\": [906.0, 209.0, 55.0, 14.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31790_BALBc-1_X02_Y01_166_464\", \"ini\": 2246, \"clust\": 914, \"rank\": 1355, \"rankvar\": 2061, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 580, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2810, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1495, \"group\": [913.0, 213.0, 56.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32250_BALBc-1_X02_Y01_171_888\", \"ini\": 2245, \"clust\": 142, \"rank\": 1819, \"rankvar\": 2021, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 581, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 798, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1366, \"group\": [141.0, 29.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32282_BALBc-1_X02_Y01_172_482\", \"ini\": 2244, \"clust\": 463, \"rank\": 2744, \"rankvar\": 2722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 582, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1890, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1496, \"group\": [462.0, 94.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32442_BALBc-1_X02_Y01_174_956\", \"ini\": 2243, \"clust\": 186, \"rank\": 1709, \"rankvar\": 1952, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 583, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1047, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1847, \"group\": [188.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32519_BALBc-1_X02_Y01_175_843\", \"ini\": 2242, \"clust\": 110, \"rank\": 1654, \"rankvar\": 2071, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 584, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1891, \"cat-2\": \"Density: 26\", \"cat_2_index\": 748, \"group\": [110.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32762_BALBc-1_X02_Y01_179_322\", \"ini\": 2241, \"clust\": 2385, \"rank\": 2096, \"rankvar\": 2466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 585, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1048, \"cat-2\": \"Density: 25\", \"cat_2_index\": 625, \"group\": [2378.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32908_BALBc-1_X02_Y01_180_240\", \"ini\": 2240, \"clust\": 1604, \"rank\": 134, \"rankvar\": 227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 586, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1618, \"cat-2\": \"Density: 23\", \"cat_2_index\": 381, \"group\": [1604.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33134_BALBc-1_X02_Y01_183_289\", \"ini\": 2239, \"clust\": 935, \"rank\": 828, \"rankvar\": 445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 587, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1049, \"cat-2\": \"Density: 24\", \"cat_2_index\": 485, \"group\": [938.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33188_BALBc-1_X02_Y01_183_994\", \"ini\": 2238, \"clust\": 2070, \"rank\": 2451, \"rankvar\": 2593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 588, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1619, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1497, \"group\": [2066.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33296_BALBc-1_X02_Y01_185_49\", \"ini\": 2237, \"clust\": 2610, \"rank\": 1636, \"rankvar\": 1450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 589, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2480, \"cat-2\": \"Density: 20\", \"cat_2_index\": 145, \"group\": [2608.0, 397.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33298_BALBc-1_X02_Y01_185_504\", \"ini\": 2236, \"clust\": 822, \"rank\": 625, \"rankvar\": 2422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 590, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2415, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1638, \"group\": [821.0, 195.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33505_BALBc-1_X02_Y01_188_605\", \"ini\": 2235, \"clust\": 128, \"rank\": 1282, \"rankvar\": 2048, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1050, \"cat-2\": \"Density: 27\", \"cat_2_index\": 908, \"group\": [128.0, 28.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34197_BALBc-1_X02_Y01_196_898\", \"ini\": 2234, \"clust\": 66, \"rank\": 2584, \"rankvar\": 2589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 592, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 799, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1204, \"group\": [70.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34308_BALBc-1_X02_Y01_198_421\", \"ini\": 2233, \"clust\": 474, \"rank\": 2793, \"rankvar\": 2649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 593, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1892, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1747, \"group\": [472.0, 95.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34743_BALBc-1_X02_Y01_203_465\", \"ini\": 2232, \"clust\": 2602, \"rank\": 1548, \"rankvar\": 1956, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 594, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1893, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1748, \"group\": [2599.0, 395.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35154_BALBc-1_X02_Y01_208_938\", \"ini\": 2231, \"clust\": 176, \"rank\": 1641, \"rankvar\": 2195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 595, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1051, \"cat-2\": \"Density: 26\", \"cat_2_index\": 749, \"group\": [175.0, 41.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35303_BALBc-1_X02_Y01_21_920\", \"ini\": 2230, \"clust\": 2168, \"rank\": 1223, \"rankvar\": 1475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 596, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2416, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1749, \"group\": [2164.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35604_BALBc-1_X02_Y01_214_17\", \"ini\": 2229, \"clust\": 24, \"rank\": 1856, \"rankvar\": 1698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 597, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1620, \"cat-2\": \"Density: 15\", \"cat_2_index\": 41, \"group\": [27.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35670_BALBc-1_X02_Y01_214_814\", \"ini\": 2228, \"clust\": 619, \"rank\": 1472, \"rankvar\": 2281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 598, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1894, \"cat-2\": \"Density: 25\", \"cat_2_index\": 626, \"group\": [620.0, 145.0, 38.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35942_BALBc-1_X02_Y01_218_649\", \"ini\": 2227, \"clust\": 558, \"rank\": 2672, \"rankvar\": 2669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 599, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1052, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1639, \"group\": [563.0, 124.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36172_BALBc-1_X02_Y01_221_262\", \"ini\": 2226, \"clust\": 1236, \"rank\": 694, \"rankvar\": 994, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 600, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1621, \"cat-2\": \"Density: 26\", \"cat_2_index\": 750, \"group\": [1237.0, 255.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36246_BALBc-1_X02_Y01_222_326\", \"ini\": 2225, \"clust\": 105, \"rank\": 866, \"rankvar\": 1858, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 601, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1622, \"cat-2\": \"Density: 24\", \"cat_2_index\": 486, \"group\": [105.0, 24.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36545_BALBc-1_X02_Y01_226_202\", \"ini\": 2224, \"clust\": 63, \"rank\": 2733, \"rankvar\": 2746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 602, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1623, \"cat-2\": \"Density: 24\", \"cat_2_index\": 487, \"group\": [63.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37650_BALBc-1_X02_Y01_24_403\", \"ini\": 2223, \"clust\": 58, \"rank\": 1547, \"rankvar\": 2262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 603, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2481, \"cat-2\": \"Density: 22\", \"cat_2_index\": 269, \"group\": [58.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37845_BALBc-1_X02_Y01_242_283\", \"ini\": 2222, \"clust\": 488, \"rank\": 2482, \"rankvar\": 2109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 604, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2272, \"cat-2\": \"Density: 22\", \"cat_2_index\": 270, \"group\": [488.0, 102.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37881_BALBc-1_X02_Y01_242_724\", \"ini\": 2221, \"clust\": 245, \"rank\": 2477, \"rankvar\": 2646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 605, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 617, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1205, \"group\": [246.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38216_BALBc-1_X02_Y01_246_892\", \"ini\": 2220, \"clust\": 1556, \"rank\": 158, \"rankvar\": 1153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 606, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1895, \"cat-2\": \"Density: 26\", \"cat_2_index\": 751, \"group\": [1556.0, 272.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38269_BALBc-1_X02_Y01_247_736\", \"ini\": 2219, \"clust\": 976, \"rank\": 582, \"rankvar\": 316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 607, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1896, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1367, \"group\": [975.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38745_BALBc-1_X02_Y01_253_169\", \"ini\": 2218, \"clust\": 220, \"rank\": 909, \"rankvar\": 2361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 608, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2417, \"cat-2\": \"Density: 20\", \"cat_2_index\": 146, \"group\": [219.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38753_BALBc-1_X02_Y01_253_315\", \"ini\": 2217, \"clust\": 840, \"rank\": 2352, \"rankvar\": 2588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 609, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1624, \"cat-2\": \"Density: 24\", \"cat_2_index\": 488, \"group\": [843.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39430_BALBc-1_X02_Y01_261_492\", \"ini\": 2216, \"clust\": 167, \"rank\": 2247, \"rankvar\": 2173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 610, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2418, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1750, \"group\": [168.0, 39.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39865_BALBc-1_X02_Y01_267_24\", \"ini\": 2215, \"clust\": 896, \"rank\": 1453, \"rankvar\": 2138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 611, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1053, \"cat-2\": \"Density: 15\", \"cat_2_index\": 42, \"group\": [896.0, 206.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40114_BALBc-1_X02_Y01_27_431\", \"ini\": 2214, \"clust\": 240, \"rank\": 2176, \"rankvar\": 2712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 612, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2482, \"cat-2\": \"Density: 26\", \"cat_2_index\": 752, \"group\": [241.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40196_BALBc-1_X02_Y01_270_639\", \"ini\": 2213, \"clust\": 2482, \"rank\": 1280, \"rankvar\": 2428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 613, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 618, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1206, \"group\": [2482.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40274_BALBc-1_X02_Y01_271_849\", \"ini\": 2212, \"clust\": 2611, \"rank\": 1787, \"rankvar\": 1402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 614, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1897, \"cat-2\": \"Density: 25\", \"cat_2_index\": 627, \"group\": [2609.0, 397.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40304_BALBc-1_X02_Y01_272_264\", \"ini\": 2211, \"clust\": 51, \"rank\": 2622, \"rankvar\": 2629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 615, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1054, \"cat-2\": \"Density: 21\", \"cat_2_index\": 199, \"group\": [55.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40412_BALBc-1_X02_Y01_273_730\", \"ini\": 2210, \"clust\": 606, \"rank\": 2121, \"rankvar\": 2429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 616, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 800, \"cat-2\": \"Density: 27\", \"cat_2_index\": 909, \"group\": [607.0, 139.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40506_BALBc-1_X02_Y01_275_150\", \"ini\": 2209, \"clust\": 1938, \"rank\": 1884, \"rankvar\": 2245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 617, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1055, \"cat-2\": \"Density: 20\", \"cat_2_index\": 147, \"group\": [1935.0, 298.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40534_BALBc-1_X02_Y01_275_491\", \"ini\": 2208, \"clust\": 675, \"rank\": 2608, \"rankvar\": 2486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 618, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2419, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1368, \"group\": [675.0, 157.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40859_BALBc-1_X02_Y01_279_657\", \"ini\": 2207, \"clust\": 774, \"rank\": 1663, \"rankvar\": 1859, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 619, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1056, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1066, \"group\": [777.0, 178.0, 45.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41366_BALBc-1_X02_Y01_285_702\", \"ini\": 2206, \"clust\": 409, \"rank\": 2150, \"rankvar\": 1961, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 620, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1057, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1207, \"group\": [408.0, 77.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41645_BALBc-1_X02_Y01_289_419\", \"ini\": 2205, \"clust\": 1232, \"rank\": 1057, \"rankvar\": 1280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 621, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1058, \"cat-2\": \"Density: 25\", \"cat_2_index\": 628, \"group\": [1232.0, 255.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41692_BALBc-1_X02_Y01_289_977\", \"ini\": 2204, \"clust\": 2194, \"rank\": 871, \"rankvar\": 2012, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 622, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2483, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1498, \"group\": [2200.0, 316.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41720_BALBc-1_X02_Y01_29_371\", \"ini\": 2203, \"clust\": 915, \"rank\": 1415, \"rankvar\": 1392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 623, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1898, \"cat-2\": \"Density: 21\", \"cat_2_index\": 200, \"group\": [914.0, 213.0, 56.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42093_BALBc-1_X02_Y01_294_471\", \"ini\": 2202, \"clust\": 206, \"rank\": 1480, \"rankvar\": 2101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 624, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1899, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1067, \"group\": [207.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42388_BALBc-1_X02_Y01_298_746\", \"ini\": 2201, \"clust\": 2114, \"rank\": 1667, \"rankvar\": 1531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 625, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1059, \"cat-2\": \"Density: 25\", \"cat_2_index\": 629, \"group\": [2114.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42422_BALBc-1_X02_Y01_299_309\", \"ini\": 2200, \"clust\": 1665, \"rank\": 2, \"rankvar\": 1148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 626, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1625, \"cat-2\": \"Density: 22\", \"cat_2_index\": 271, \"group\": [1663.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42773_BALBc-1_X02_Y01_302_572\", \"ini\": 2199, \"clust\": 1658, \"rank\": 4, \"rankvar\": 1010, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 627, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2420, \"cat-2\": \"Density: 27\", \"cat_2_index\": 910, \"group\": [1659.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42875_BALBc-1_X02_Y01_303_626\", \"ini\": 2198, \"clust\": 1436, \"rank\": 644, \"rankvar\": 1776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 628, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 939, \"cat-2\": \"Density: 26\", \"cat_2_index\": 753, \"group\": [1437.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42918_BALBc-1_X02_Y01_304_24\", \"ini\": 2197, \"clust\": 1173, \"rank\": 1193, \"rankvar\": 699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 629, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2484, \"cat-2\": \"Density: 14\", \"cat_2_index\": 28, \"group\": [1172.0, 248.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43254_BALBc-1_X02_Y01_309_522\", \"ini\": 2196, \"clust\": 1659, \"rank\": 20, \"rankvar\": 887, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 630, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1900, \"cat-2\": \"Density: 23\", \"cat_2_index\": 382, \"group\": [1660.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43735_BALBc-1_X02_Y01_314_988\", \"ini\": 2195, \"clust\": 2058, \"rank\": 2661, \"rankvar\": 2604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 631, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1060, \"cat-2\": \"Density: 26\", \"cat_2_index\": 754, \"group\": [2055.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44336_BALBc-1_X02_Y01_321_884\", \"ini\": 2194, \"clust\": 211, \"rank\": 1690, \"rankvar\": 2498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 632, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1061, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1068, \"group\": [210.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44373_BALBc-1_X02_Y01_322_353\", \"ini\": 2193, \"clust\": 1426, \"rank\": 173, \"rankvar\": 1731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 633, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2230, \"cat-2\": \"Density: 24\", \"cat_2_index\": 489, \"group\": [1427.0, 266.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44527_BALBc-1_X02_Y01_324_319\", \"ini\": 2192, \"clust\": 47, \"rank\": 2646, \"rankvar\": 2659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 634, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1626, \"cat-2\": \"Density: 24\", \"cat_2_index\": 490, \"group\": [51.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44555_BALBc-1_X02_Y01_324_635\", \"ini\": 2191, \"clust\": 1056, \"rank\": 1252, \"rankvar\": 1260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 635, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 940, \"cat-2\": \"Density: 27\", \"cat_2_index\": 911, \"group\": [1057.0, 227.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45166_BALBc-1_X02_Y01_331_409\", \"ini\": 2190, \"clust\": 354, \"rank\": 2718, \"rankvar\": 2820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 636, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2231, \"cat-2\": \"Density: 25\", \"cat_2_index\": 630, \"group\": [356.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45200_BALBc-1_X02_Y01_331_901\", \"ini\": 2189, \"clust\": 321, \"rank\": 1086, \"rankvar\": 2310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 637, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1901, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1208, \"group\": [320.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45510_BALBc-1_X02_Y01_335_873\", \"ini\": 2188, \"clust\": 1158, \"rank\": 567, \"rankvar\": 1727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 638, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1062, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1069, \"group\": [1159.0, 244.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45659_BALBc-1_X02_Y01_338_160\", \"ini\": 2187, \"clust\": 559, \"rank\": 2112, \"rankvar\": 2211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 639, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 801, \"cat-2\": \"Density: 26\", \"cat_2_index\": 755, \"group\": [562.0, 123.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45693_BALBc-1_X02_Y01_338_551\", \"ini\": 2186, \"clust\": 54, \"rank\": 2659, \"rankvar\": 2644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 640, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2421, \"cat-2\": \"Density: 26\", \"cat_2_index\": 756, \"group\": [53.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46414_BALBc-1_X02_Y01_346_740\", \"ini\": 2185, \"clust\": 531, \"rank\": 2553, \"rankvar\": 2460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 641, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1063, \"cat-2\": \"Density: 22\", \"cat_2_index\": 272, \"group\": [532.0, 114.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46504_BALBc-1_X02_Y01_348_114\", \"ini\": 2184, \"clust\": 1470, \"rank\": 697, \"rankvar\": 95, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 642, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1902, \"cat-2\": \"Density: 20\", \"cat_2_index\": 148, \"group\": [1469.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46508_BALBc-1_X02_Y01_348_141\", \"ini\": 2183, \"clust\": 1303, \"rank\": 420, \"rankvar\": 1081, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 643, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1903, \"cat-2\": \"Density: 23\", \"cat_2_index\": 383, \"group\": [1303.0, 259.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46935_BALBc-1_X02_Y01_352_73\", \"ini\": 2182, \"clust\": 1025, \"rank\": 486, \"rankvar\": 548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 644, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1064, \"cat-2\": \"Density: 19\", \"cat_2_index\": 118, \"group\": [1026.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46949_BALBc-1_X02_Y01_352_958\", \"ini\": 2181, \"clust\": 2441, \"rank\": 2731, \"rankvar\": 2795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 645, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1065, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2061, \"group\": [2438.0, 360.0, 85.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47181_BALBc-1_X02_Y01_355_871\", \"ini\": 2180, \"clust\": 512, \"rank\": 1902, \"rankvar\": 2592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 646, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2273, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1209, \"group\": [510.0, 106.0, 28.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47567_BALBc-1_X02_Y01_360_631\", \"ini\": 2179, \"clust\": 260, \"rank\": 1182, \"rankvar\": 1932, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 647, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1904, \"cat-2\": \"Density: 27\", \"cat_2_index\": 912, \"group\": [264.0, 47.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47808_BALBc-1_X02_Y01_363_91\", \"ini\": 2178, \"clust\": 1897, \"rank\": 2339, \"rankvar\": 1780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 648, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 681, \"cat-2\": \"Density: 20\", \"cat_2_index\": 149, \"group\": [1894.0, 287.0, 69.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47901_BALBc-1_X02_Y01_364_890\", \"ini\": 2177, \"clust\": 540, \"rank\": 2749, \"rankvar\": 2741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 649, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1627, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1499, \"group\": [538.0, 116.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48689_BALBc-1_X02_Y01_374_207\", \"ini\": 2176, \"clust\": 241, \"rank\": 2015, \"rankvar\": 2381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 650, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 802, \"cat-2\": \"Density: 22\", \"cat_2_index\": 273, \"group\": [242.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48761_BALBc-1_X02_Y01_375_164\", \"ini\": 2175, \"clust\": 1088, \"rank\": 1079, \"rankvar\": 1014, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 651, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 35, \"cat-2\": \"Density: 22\", \"cat_2_index\": 274, \"group\": [1088.0, 231.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48973_BALBc-1_X02_Y01_377_883\", \"ini\": 2174, \"clust\": 1095, \"rank\": 196, \"rankvar\": 1034, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 652, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2422, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1640, \"group\": [1093.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49252_BALBc-1_X02_Y01_380_635\", \"ini\": 2173, \"clust\": 476, \"rank\": 2712, \"rankvar\": 2510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 653, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 803, \"cat-2\": \"Density: 27\", \"cat_2_index\": 913, \"group\": [477.0, 97.0, 26.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49290_BALBc-1_X02_Y01_381_186\", \"ini\": 2172, \"clust\": 1573, \"rank\": 513, \"rankvar\": 1404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 654, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 804, \"cat-2\": \"Density: 20\", \"cat_2_index\": 150, \"group\": [1574.0, 274.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49698_BALBc-1_X02_Y01_386_108\", \"ini\": 2171, \"clust\": 634, \"rank\": 2118, \"rankvar\": 1087, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 655, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 682, \"cat-2\": \"Density: 23\", \"cat_2_index\": 384, \"group\": [635.0, 149.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50061_BALBc-1_X02_Y01_39_635\", \"ini\": 2170, \"clust\": 844, \"rank\": 2262, \"rankvar\": 2688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 656, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1905, \"cat-2\": \"Density: 22\", \"cat_2_index\": 275, \"group\": [840.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50421_BALBc-1_X02_Y01_394_629\", \"ini\": 2169, \"clust\": 1937, \"rank\": 2698, \"rankvar\": 2763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 657, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2232, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1070, \"group\": [1937.0, 298.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50593_BALBc-1_X02_Y01_396_836\", \"ini\": 2168, \"clust\": 823, \"rank\": 395, \"rankvar\": 2360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 658, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1906, \"cat-2\": \"Density: 27\", \"cat_2_index\": 914, \"group\": [822.0, 195.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50814_BALBc-1_X02_Y01_399_570\", \"ini\": 2167, \"clust\": 1465, \"rank\": 546, \"rankvar\": 70, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 659, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1907, \"cat-2\": \"Density: 27\", \"cat_2_index\": 915, \"group\": [1466.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50857_BALBc-1_X02_Y01_4_1000\", \"ini\": 2166, \"clust\": 2123, \"rank\": 1658, \"rankvar\": 1020, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 660, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1066, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1210, \"group\": [2124.0, 312.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50898_BALBc-1_X02_Y01_40_107\", \"ini\": 2165, \"clust\": 617, \"rank\": 2028, \"rankvar\": 2222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 661, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 805, \"cat-2\": \"Density: 18\", \"cat_2_index\": 93, \"group\": [616.0, 142.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51368_BALBc-1_X02_Y01_405_327\", \"ini\": 2164, \"clust\": 163, \"rank\": 2424, \"rankvar\": 2276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 662, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1908, \"cat-2\": \"Density: 25\", \"cat_2_index\": 631, \"group\": [164.0, 36.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51852_BALBc-1_X02_Y01_410_23\", \"ini\": 2163, \"clust\": 2278, \"rank\": 631, \"rankvar\": 2260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 663, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1067, \"cat-2\": \"Density: 13\", \"cat_2_index\": 13, \"group\": [2275.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51999_BALBc-1_X02_Y01_412_155\", \"ini\": 2162, \"clust\": 2286, \"rank\": 1438, \"rankvar\": 1558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 664, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1541, \"cat-2\": \"Density: 26\", \"cat_2_index\": 757, \"group\": [2284.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52079_BALBc-1_X02_Y01_413_103\", \"ini\": 2161, \"clust\": 2004, \"rank\": 1890, \"rankvar\": 2239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 665, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1542, \"cat-2\": \"Density: 26\", \"cat_2_index\": 758, \"group\": [2002.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52251_BALBc-1_X02_Y01_415_13\", \"ini\": 2160, \"clust\": 707, \"rank\": 2801, \"rankvar\": 2694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 666, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1068, \"cat-2\": \"Density: 13\", \"cat_2_index\": 14, \"group\": [708.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52621_BALBc-1_X02_Y01_419_991\", \"ini\": 2159, \"clust\": 1537, \"rank\": 313, \"rankvar\": 119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 667, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1069, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1848, \"group\": [1541.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52973_BALBc-1_X02_Y01_423_647\", \"ini\": 2158, \"clust\": 782, \"rank\": 899, \"rankvar\": 1988, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 668, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2233, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1211, \"group\": [782.0, 182.0, 47.0, 11.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53049_BALBc-1_X02_Y01_424_66\", \"ini\": 2157, \"clust\": 1463, \"rank\": 394, \"rankvar\": 1098, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 669, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 683, \"cat-2\": \"Density: 21\", \"cat_2_index\": 201, \"group\": [1464.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53155_BALBc-1_X02_Y01_426_178\", \"ini\": 2156, \"clust\": 1518, \"rank\": 498, \"rankvar\": 471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 670, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1909, \"cat-2\": \"Density: 26\", \"cat_2_index\": 759, \"group\": [1517.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53404_BALBc-1_X02_Y01_429_1005\", \"ini\": 2155, \"clust\": 404, \"rank\": 2570, \"rankvar\": 1917, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 671, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 36, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2142, \"group\": [413.0, 79.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53535_BALBc-1_X02_Y01_43_792\", \"ini\": 2154, \"clust\": 477, \"rank\": 2821, \"rankvar\": 2825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 672, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1070, \"cat-2\": \"Density: 26\", \"cat_2_index\": 760, \"group\": [478.0, 98.0, 26.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53582_BALBc-1_X02_Y01_430_391\", \"ini\": 2153, \"clust\": 13, \"rank\": 2764, \"rankvar\": 2011, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 673, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2423, \"cat-2\": \"Density: 23\", \"cat_2_index\": 385, \"group\": [11.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53678_BALBc-1_X02_Y01_431_589\", \"ini\": 2152, \"clust\": 1838, \"rank\": 50, \"rankvar\": 1282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 674, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2424, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1071, \"group\": [1834.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53767_BALBc-1_X02_Y01_432_601\", \"ini\": 2151, \"clust\": 535, \"rank\": 2090, \"rankvar\": 2196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 675, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2425, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1500, \"group\": [535.0, 116.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53917_BALBc-1_X02_Y01_434_617\", \"ini\": 2150, \"clust\": 418, \"rank\": 1722, \"rankvar\": 2250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 676, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2234, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1212, \"group\": [419.0, 82.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54343_BALBc-1_X02_Y01_439_956\", \"ini\": 2149, \"clust\": 798, \"rank\": 1433, \"rankvar\": 791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 677, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 806, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2143, \"group\": [798.0, 190.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54799_BALBc-1_X02_Y01_444_988\", \"ini\": 2148, \"clust\": 2818, \"rank\": 1633, \"rankvar\": 906, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 678, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1071, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2062, \"group\": [2814.0, 435.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54922_BALBc-1_X02_Y01_446_748\", \"ini\": 2147, \"clust\": 22, \"rank\": 2283, \"rankvar\": 2050, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 679, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1910, \"cat-2\": \"Density: 22\", \"cat_2_index\": 276, \"group\": [22.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55138_BALBc-1_X02_Y01_449_612\", \"ini\": 2146, \"clust\": 613, \"rank\": 1388, \"rankvar\": 2316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 680, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2426, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1369, \"group\": [611.0, 141.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55205_BALBc-1_X02_Y01_45_516\", \"ini\": 2145, \"clust\": 460, \"rank\": 2382, \"rankvar\": 2505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 681, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2427, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1213, \"group\": [460.0, 94.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55330_BALBc-1_X02_Y01_451_348\", \"ini\": 2144, \"clust\": 1207, \"rank\": 117, \"rankvar\": 654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 682, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1072, \"cat-2\": \"Density: 25\", \"cat_2_index\": 632, \"group\": [1207.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55345_BALBc-1_X02_Y01_451_533\", \"ini\": 2143, \"clust\": 2378, \"rank\": 2667, \"rankvar\": 2608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 683, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1726, \"cat-2\": \"Density: 27\", \"cat_2_index\": 916, \"group\": [2387.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55441_BALBc-1_X02_Y01_452_672\", \"ini\": 2142, \"clust\": 737, \"rank\": 946, \"rankvar\": 2095, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 684, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2428, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1370, \"group\": [736.0, 163.0, 40.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56039_BALBc-1_X02_Y01_46_538\", \"ini\": 2141, \"clust\": 573, \"rank\": 2740, \"rankvar\": 2759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 685, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2274, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1371, \"group\": [573.0, 129.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56270_BALBc-1_X02_Y01_462_394\", \"ini\": 2140, \"clust\": 2023, \"rank\": 2120, \"rankvar\": 2528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 686, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2429, \"cat-2\": \"Density: 25\", \"cat_2_index\": 633, \"group\": [2019.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56966_BALBc-1_X02_Y01_470_546\", \"ini\": 2139, \"clust\": 1554, \"rank\": 160, \"rankvar\": 855, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 687, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2275, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1501, \"group\": [1557.0, 272.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57291_BALBc-1_X02_Y01_474_753\", \"ini\": 2138, \"clust\": 1781, \"rank\": 335, \"rankvar\": 135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 688, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1073, \"cat-2\": \"Density: 22\", \"cat_2_index\": 277, \"group\": [1777.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57690_BALBc-1_X02_Y01_479_652\", \"ini\": 2137, \"clust\": 1104, \"rank\": 466, \"rankvar\": 321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 689, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1911, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1372, \"group\": [1101.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57946_BALBc-1_X02_Y01_482_291\", \"ini\": 2136, \"clust\": 415, \"rank\": 1596, \"rankvar\": 1996, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 690, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1912, \"cat-2\": \"Density: 23\", \"cat_2_index\": 386, \"group\": [416.0, 81.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58045_BALBc-1_X02_Y01_483_527\", \"ini\": 2135, \"clust\": 473, \"rank\": 2810, \"rankvar\": 2824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 691, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1727, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1373, \"group\": [474.0, 95.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58865_BALBc-1_X02_Y01_493_104\", \"ini\": 2134, \"clust\": 954, \"rank\": 904, \"rankvar\": 707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 692, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 684, \"cat-2\": \"Density: 24\", \"cat_2_index\": 491, \"group\": [957.0, 220.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59155_BALBc-1_X02_Y01_496_623\", \"ini\": 2133, \"clust\": 727, \"rank\": 2819, \"rankvar\": 2773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 693, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2276, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1502, \"group\": [728.0, 162.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59197_BALBc-1_X02_Y01_497_131\", \"ini\": 2132, \"clust\": 1700, \"rank\": 142, \"rankvar\": 165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 694, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2277, \"cat-2\": \"Density: 25\", \"cat_2_index\": 634, \"group\": [1698.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59416_BALBc-1_X02_Y01_499_768\", \"ini\": 2131, \"clust\": 526, \"rank\": 2167, \"rankvar\": 1229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 695, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1074, \"cat-2\": \"Density: 26\", \"cat_2_index\": 761, \"group\": [527.0, 111.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59420_BALBc-1_X02_Y01_499_799\", \"ini\": 2130, \"clust\": 1135, \"rank\": 800, \"rankvar\": 1998, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 696, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1075, \"cat-2\": \"Density: 25\", \"cat_2_index\": 635, \"group\": [1134.0, 241.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59463_BALBc-1_X02_Y01_5_879\", \"ini\": 2129, \"clust\": 171, \"rank\": 1600, \"rankvar\": 1495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 697, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2430, \"cat-2\": \"Density: 27\", \"cat_2_index\": 917, \"group\": [172.0, 40.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59517_BALBc-1_X02_Y01_50_888\", \"ini\": 2128, \"clust\": 1695, \"rank\": 45, \"rankvar\": 383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 698, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2431, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1214, \"group\": [1697.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59710_BALBc-1_X02_Y01_502_573\", \"ini\": 2127, \"clust\": 1835, \"rank\": 71, \"rankvar\": 1052, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 699, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2278, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1641, \"group\": [1832.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59712_BALBc-1_X02_Y01_502_604\", \"ini\": 2126, \"clust\": 1298, \"rank\": 287, \"rankvar\": 1194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 700, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2279, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1952, \"group\": [1300.0, 259.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59744_BALBc-1_X02_Y01_502_986\", \"ini\": 2125, \"clust\": 288, \"rank\": 1728, \"rankvar\": 1650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 701, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1076, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2144, \"group\": [288.0, 60.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60337_BALBc-1_X02_Y01_51_580\", \"ini\": 2124, \"clust\": 1307, \"rank\": 1155, \"rankvar\": 818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 702, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2280, \"cat-2\": \"Density: 27\", \"cat_2_index\": 918, \"group\": [1307.0, 259.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60489_BALBc-1_X02_Y01_511_561\", \"ini\": 2123, \"clust\": 2379, \"rank\": 2682, \"rankvar\": 2740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 703, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1728, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1751, \"group\": [2374.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61166_BALBc-1_X02_Y01_52_424\", \"ini\": 2122, \"clust\": 1839, \"rank\": 200, \"rankvar\": 448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 704, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1077, \"cat-2\": \"Density: 24\", \"cat_2_index\": 492, \"group\": [1835.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61199_BALBc-1_X02_Y01_52_776\", \"ini\": 2121, \"clust\": 1163, \"rank\": 315, \"rankvar\": 944, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 705, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2432, \"cat-2\": \"Density: 24\", \"cat_2_index\": 493, \"group\": [1164.0, 244.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61388_BALBc-1_X02_Y01_521_982\", \"ini\": 2120, \"clust\": 494, \"rank\": 2293, \"rankvar\": 2319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 706, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2235, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1953, \"group\": [494.0, 104.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62377_BALBc-1_X02_Y01_533_933\", \"ini\": 2119, \"clust\": 664, \"rank\": 2463, \"rankvar\": 2015, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 707, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1913, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1752, \"group\": [663.0, 156.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62863_BALBc-1_X02_Y01_54_847\", \"ini\": 2118, \"clust\": 895, \"rank\": 1554, \"rankvar\": 2238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 708, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2485, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1072, \"group\": [900.0, 207.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62911_BALBc-1_X02_Y01_540_549\", \"ini\": 2117, \"clust\": 39, \"rank\": 2580, \"rankvar\": 2584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 709, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2433, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1073, \"group\": [43.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62931_BALBc-1_X02_Y01_540_834\", \"ini\": 2116, \"clust\": 1836, \"rank\": 27, \"rankvar\": 1253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 710, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1914, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1503, \"group\": [1833.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63142_BALBc-1_X02_Y01_543_585\", \"ini\": 2115, \"clust\": 247, \"rank\": 2379, \"rankvar\": 2729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 711, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2281, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1215, \"group\": [249.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63191_BALBc-1_X02_Y01_543_972\", \"ini\": 2114, \"clust\": 77, \"rank\": 2732, \"rankvar\": 2635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 712, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 807, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1753, \"group\": [76.0, 16.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63252_BALBc-1_X02_Y01_544_650\", \"ini\": 2113, \"clust\": 207, \"rank\": 1365, \"rankvar\": 2417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 713, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2282, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1216, \"group\": [208.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63692_BALBc-1_X02_Y01_55_1003\", \"ini\": 2112, \"clust\": 2043, \"rank\": 2270, \"rankvar\": 2489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 714, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1078, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1374, \"group\": [2039.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63713_BALBc-1_X02_Y01_55_344\", \"ini\": 2111, \"clust\": 588, \"rank\": 846, \"rankvar\": 1143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 715, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1915, \"cat-2\": \"Density: 26\", \"cat_2_index\": 762, \"group\": [587.0, 134.0, 36.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63995_BALBc-1_X02_Y01_552_987\", \"ini\": 2110, \"clust\": 1954, \"rank\": 1652, \"rankvar\": 2093, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 716, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1079, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1642, \"group\": [1950.0, 302.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64052_BALBc-1_X02_Y01_553_695\", \"ini\": 2109, \"clust\": 827, \"rank\": 645, \"rankvar\": 1854, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 717, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2434, \"cat-2\": \"Density: 26\", \"cat_2_index\": 763, \"group\": [826.0, 195.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64156_BALBc-1_X02_Y01_555_138\", \"ini\": 2108, \"clust\": 2242, \"rank\": 707, \"rankvar\": 582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 718, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 685, \"cat-2\": \"Density: 26\", \"cat_2_index\": 764, \"group\": [2241.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64283_BALBc-1_X02_Y01_556_902\", \"ini\": 2107, \"clust\": 2703, \"rank\": 1793, \"rankvar\": 1595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 719, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1916, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2145, \"group\": [2707.0, 416.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64567_BALBc-1_X02_Y01_56_378\", \"ini\": 2106, \"clust\": 741, \"rank\": 1074, \"rankvar\": 1354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 720, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2435, \"cat-2\": \"Density: 26\", \"cat_2_index\": 765, \"group\": [739.0, 164.0, 40.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64703_BALBc-1_X02_Y01_561_10\", \"ini\": 2105, \"clust\": 1995, \"rank\": 1348, \"rankvar\": 1316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 721, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1729, \"cat-2\": \"Density: 15\", \"cat_2_index\": 43, \"group\": [1992.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64934_BALBc-1_X02_Y01_564_219\", \"ini\": 2104, \"clust\": 2239, \"rank\": 793, \"rankvar\": 1187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 722, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2436, \"cat-2\": \"Density: 24\", \"cat_2_index\": 494, \"group\": [2236.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65293_BALBc-1_X02_Y01_568_803\", \"ini\": 2103, \"clust\": 979, \"rank\": 782, \"rankvar\": 764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 723, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1628, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1849, \"group\": [984.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65644_BALBc-1_X02_Y01_572_683\", \"ini\": 2102, \"clust\": 23, \"rank\": 2445, \"rankvar\": 2063, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 724, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 686, \"cat-2\": \"Density: 25\", \"cat_2_index\": 636, \"group\": [23.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66649_BALBc-1_X02_Y01_585_154\", \"ini\": 2101, \"clust\": 1609, \"rank\": 210, \"rankvar\": 85, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 725, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 687, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1217, \"group\": [1609.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67382_BALBc-1_X02_Y01_593_27\", \"ini\": 2100, \"clust\": 2552, \"rank\": 1581, \"rankvar\": 556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 726, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2519, \"cat-2\": \"Density: 15\", \"cat_2_index\": 44, \"group\": [2549.0, 388.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67833_BALBc-1_X02_Y01_599_219\", \"ini\": 2099, \"clust\": 756, \"rank\": 660, \"rankvar\": 1227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 727, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2437, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1074, \"group\": [757.0, 173.0, 44.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68344_BALBc-1_X02_Y01_604_682\", \"ini\": 2098, \"clust\": 912, \"rank\": 1489, \"rankvar\": 1844, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 728, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1917, \"cat-2\": \"Density: 26\", \"cat_2_index\": 766, \"group\": [916.0, 213.0, 56.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68440_BALBc-1_X02_Y01_605_807\", \"ini\": 2097, \"clust\": 695, \"rank\": 2784, \"rankvar\": 2755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 729, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 808, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1643, \"group\": [696.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68443_BALBc-1_X02_Y01_605_835\", \"ini\": 2096, \"clust\": 769, \"rank\": 580, \"rankvar\": 2073, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 730, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1918, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1504, \"group\": [774.0, 176.0, 45.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68542_BALBc-1_X02_Y01_607_143\", \"ini\": 2095, \"clust\": 539, \"rank\": 2566, \"rankvar\": 2303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 731, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 688, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1218, \"group\": [540.0, 116.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68978_BALBc-1_X02_Y01_611_516\", \"ini\": 2094, \"clust\": 189, \"rank\": 2527, \"rankvar\": 2490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 732, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1919, \"cat-2\": \"Density: 25\", \"cat_2_index\": 637, \"group\": [195.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69185_BALBc-1_X02_Y01_614_181\", \"ini\": 2093, \"clust\": 635, \"rank\": 2638, \"rankvar\": 2342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 733, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 689, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1075, \"group\": [636.0, 150.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70273_BALBc-1_X02_Y01_627_209\", \"ini\": 2092, \"clust\": 576, \"rank\": 2419, \"rankvar\": 1973, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 734, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1730, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1219, \"group\": [576.0, 129.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70491_BALBc-1_X02_Y01_63_250\", \"ini\": 2091, \"clust\": 1686, \"rank\": 43, \"rankvar\": 261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 735, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1920, \"cat-2\": \"Density: 24\", \"cat_2_index\": 495, \"group\": [1681.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71443_BALBc-1_X02_Y01_640_235\", \"ini\": 2090, \"clust\": 1978, \"rank\": 1266, \"rankvar\": 1920, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 736, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2438, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1644, \"group\": [1973.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71479_BALBc-1_X02_Y01_640_560\", \"ini\": 2089, \"clust\": 2463, \"rank\": 1813, \"rankvar\": 735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 737, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2439, \"cat-2\": \"Density: 25\", \"cat_2_index\": 638, \"group\": [2468.0, 373.0, 90.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71570_BALBc-1_X02_Y01_642_167\", \"ini\": 2088, \"clust\": 268, \"rank\": 1174, \"rankvar\": 390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 738, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1731, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1076, \"group\": [268.0, 51.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71733_BALBc-1_X02_Y01_643_984\", \"ini\": 2087, \"clust\": 154, \"rank\": 2674, \"rankvar\": 2534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 739, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2283, \"cat-2\": \"Density: 27\", \"cat_2_index\": 919, \"group\": [155.0, 34.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71734_BALBc-1_X02_Y01_643_999\", \"ini\": 2086, \"clust\": 1424, \"rank\": 832, \"rankvar\": 565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 740, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1629, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1220, \"group\": [1424.0, 266.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72068_BALBc-1_X02_Y01_648_425\", \"ini\": 2085, \"clust\": 1229, \"rank\": 747, \"rankvar\": 656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 741, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1921, \"cat-2\": \"Density: 22\", \"cat_2_index\": 278, \"group\": [1229.0, 255.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72274_BALBc-1_X02_Y01_650_104\", \"ini\": 2084, \"clust\": 1288, \"rank\": 555, \"rankvar\": 775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 742, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 690, \"cat-2\": \"Density: 27\", \"cat_2_index\": 920, \"group\": [1286.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72329_BALBc-1_X02_Y01_650_882\", \"ini\": 2083, \"clust\": 118, \"rank\": 931, \"rankvar\": 1576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 743, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1732, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1754, \"group\": [118.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72440_BALBc-1_X02_Y01_652_474\", \"ini\": 2082, \"clust\": 1058, \"rank\": 1508, \"rankvar\": 715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 744, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 809, \"cat-2\": \"Density: 26\", \"cat_2_index\": 767, \"group\": [1063.0, 228.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73095_BALBc-1_X02_Y01_66_970\", \"ini\": 2081, \"clust\": 2374, \"rank\": 1874, \"rankvar\": 1927, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 745, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1080, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1755, \"group\": [2389.0, 351.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73185_BALBc-1_X02_Y01_661_141\", \"ini\": 2080, \"clust\": 1048, \"rank\": 951, \"rankvar\": 1099, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 746, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 810, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1221, \"group\": [1051.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73278_BALBc-1_X02_Y01_661_947\", \"ini\": 2079, \"clust\": 1176, \"rank\": 568, \"rankvar\": 603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 747, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1081, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1077, \"group\": [1177.0, 249.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73431_BALBc-1_X02_Y01_664_117\", \"ini\": 2078, \"clust\": 1094, \"rank\": 378, \"rankvar\": 1017, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 748, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1630, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1222, \"group\": [1095.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73653_BALBc-1_X02_Y01_667_199\", \"ini\": 2077, \"clust\": 2188, \"rank\": 1014, \"rankvar\": 718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 749, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1733, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1375, \"group\": [2186.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73761_BALBc-1_X02_Y01_668_692\", \"ini\": 2076, \"clust\": 1160, \"rank\": 637, \"rankvar\": 1365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 750, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2486, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1223, \"group\": [1163.0, 244.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74145_BALBc-1_X02_Y01_672_798\", \"ini\": 2075, \"clust\": 1421, \"rank\": 526, \"rankvar\": 1054, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 751, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1082, \"cat-2\": \"Density: 27\", \"cat_2_index\": 921, \"group\": [1420.0, 264.0, 65.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74412_BALBc-1_X02_Y01_675_754\", \"ini\": 2074, \"clust\": 716, \"rank\": 2786, \"rankvar\": 2385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 752, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1083, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1224, \"group\": [717.0, 161.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74523_BALBc-1_X02_Y01_677_25\", \"ini\": 2073, \"clust\": 337, \"rank\": 2551, \"rankvar\": 2160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 753, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 811, \"cat-2\": \"Density: 16\", \"cat_2_index\": 57, \"group\": [336.0, 69.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74897_BALBc-1_X02_Y01_681_262\", \"ini\": 2072, \"clust\": 385, \"rank\": 2668, \"rankvar\": 2810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 754, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1578, \"cat-2\": \"Density: 25\", \"cat_2_index\": 639, \"group\": [383.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75174_BALBc-1_X02_Y01_685_173\", \"ini\": 2071, \"clust\": 2243, \"rank\": 587, \"rankvar\": 403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 755, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 812, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1078, \"group\": [2239.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75539_BALBc-1_X02_Y01_689_937\", \"ini\": 2070, \"clust\": 17, \"rank\": 2813, \"rankvar\": 2738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 756, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1084, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1225, \"group\": [15.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75915_BALBc-1_X02_Y01_694_130\", \"ini\": 2069, \"clust\": 1191, \"rank\": 417, \"rankvar\": 340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 757, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1631, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1226, \"group\": [1191.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75959_BALBc-1_X02_Y01_694_670\", \"ini\": 2068, \"clust\": 1090, \"rank\": 446, \"rankvar\": 1686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 758, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2440, \"cat-2\": \"Density: 25\", \"cat_2_index\": 640, \"group\": [1090.0, 232.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76516_BALBc-1_X02_Y01_70_895\", \"ini\": 2067, \"clust\": 2386, \"rank\": 2635, \"rankvar\": 2814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 759, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2441, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1376, \"group\": [2379.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77517_BALBc-1_X02_Y01_712_265\", \"ini\": 2066, \"clust\": 884, \"rank\": 770, \"rankvar\": 538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 760, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 813, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1227, \"group\": [887.0, 203.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77678_BALBc-1_X02_Y01_714_293\", \"ini\": 2065, \"clust\": 348, \"rank\": 2537, \"rankvar\": 2562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 761, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 814, \"cat-2\": \"Density: 27\", \"cat_2_index\": 922, \"group\": [347.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77685_BALBc-1_X02_Y01_714_40\", \"ini\": 2064, \"clust\": 1440, \"rank\": 635, \"rankvar\": 1557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 762, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 815, \"cat-2\": \"Density: 23\", \"cat_2_index\": 387, \"group\": [1440.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77734_BALBc-1_X02_Y01_714_974\", \"ini\": 2063, \"clust\": 1521, \"rank\": 590, \"rankvar\": 530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 763, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2284, \"cat-2\": \"Density: 27\", \"cat_2_index\": 923, \"group\": [1520.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78145_BALBc-1_X02_Y01_72_12\", \"ini\": 2062, \"clust\": 939, \"rank\": 746, \"rankvar\": 248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 764, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1922, \"cat-2\": \"Density: 13\", \"cat_2_index\": 15, \"group\": [941.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78540_BALBc-1_X02_Y01_724_107\", \"ini\": 2061, \"clust\": 489, \"rank\": 2446, \"rankvar\": 2086, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 765, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 816, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1377, \"group\": [489.0, 102.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79190_BALBc-1_X02_Y01_731_769\", \"ini\": 2060, \"clust\": 735, \"rank\": 1192, \"rankvar\": 2308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 766, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1085, \"cat-2\": \"Density: 27\", \"cat_2_index\": 924, \"group\": [734.0, 163.0, 40.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79300_BALBc-1_X02_Y01_733_29\", \"ini\": 2059, \"clust\": 1080, \"rank\": 1251, \"rankvar\": 1184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 767, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1543, \"cat-2\": \"Density: 20\", \"cat_2_index\": 151, \"group\": [1084.0, 230.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79428_BALBc-1_X02_Y01_734_627\", \"ini\": 2058, \"clust\": 948, \"rank\": 257, \"rankvar\": 1649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 768, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2236, \"cat-2\": \"Density: 25\", \"cat_2_index\": 641, \"group\": [949.0, 220.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79624_BALBc-1_X02_Y01_737_12\", \"ini\": 2057, \"clust\": 1806, \"rank\": 238, \"rankvar\": 105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 769, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 37, \"cat-2\": \"Density: 18\", \"cat_2_index\": 94, \"group\": [1803.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80316_BALBc-1_X02_Y01_745_334\", \"ini\": 2056, \"clust\": 338, \"rank\": 2567, \"rankvar\": 2425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 770, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1923, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1079, \"group\": [337.0, 69.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80359_BALBc-1_X02_Y01_745_91\", \"ini\": 2055, \"clust\": 1851, \"rank\": 241, \"rankvar\": 624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 771, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 817, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1756, \"group\": [1845.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80734_BALBc-1_X02_Y01_75_602\", \"ini\": 2054, \"clust\": 572, \"rank\": 2541, \"rankvar\": 2433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 772, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2285, \"cat-2\": \"Density: 26\", \"cat_2_index\": 768, \"group\": [580.0, 130.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81293_BALBc-1_X02_Y01_756_706\", \"ini\": 2053, \"clust\": 580, \"rank\": 1896, \"rankvar\": 2178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 773, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2237, \"cat-2\": \"Density: 24\", \"cat_2_index\": 496, \"group\": [584.0, 132.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81486_BALBc-1_X02_Y01_759_199\", \"ini\": 2052, \"clust\": 2065, \"rank\": 2007, \"rankvar\": 1930, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 774, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1086, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1505, \"group\": [2062.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81590_BALBc-1_X02_Y01_76_583\", \"ini\": 2051, \"clust\": 209, \"rank\": 1840, \"rankvar\": 2575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 775, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2286, \"cat-2\": \"Density: 25\", \"cat_2_index\": 642, \"group\": [211.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81902_BALBc-1_X02_Y01_763_671\", \"ini\": 2050, \"clust\": 21, \"rank\": 2627, \"rankvar\": 2018, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 776, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 818, \"cat-2\": \"Density: 26\", \"cat_2_index\": 769, \"group\": [20.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82140_BALBc-1_X02_Y01_767_163\", \"ini\": 2049, \"clust\": 913, \"rank\": 1241, \"rankvar\": 1948, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 777, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2287, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1954, \"group\": [915.0, 213.0, 56.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82308_BALBc-1_X02_Y01_768_99\", \"ini\": 2048, \"clust\": 673, \"rank\": 2072, \"rankvar\": 1694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 778, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1544, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1645, \"group\": [676.0, 157.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82369_BALBc-1_X02_Y01_769_770\", \"ini\": 2047, \"clust\": 1661, \"rank\": 9, \"rankvar\": 1134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 779, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1632, \"cat-2\": \"Density: 25\", \"cat_2_index\": 643, \"group\": [1661.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83169_BALBc-1_X02_Y01_779_23\", \"ini\": 2046, \"clust\": 1633, \"rank\": 128, \"rankvar\": 63, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 780, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1087, \"cat-2\": \"Density: 24\", \"cat_2_index\": 497, \"group\": [1633.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83364_BALBc-1_X02_Y01_780_79\", \"ini\": 2045, \"clust\": 1454, \"rank\": 263, \"rankvar\": 381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 781, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1545, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1757, \"group\": [1455.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84196_BALBc-1_X02_Y01_790_748\", \"ini\": 2044, \"clust\": 7, \"rank\": 2823, \"rankvar\": 2802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 782, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2487, \"cat-2\": \"Density: 24\", \"cat_2_index\": 498, \"group\": [8.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84357_BALBc-1_X02_Y01_792_686\", \"ini\": 2043, \"clust\": 1070, \"rank\": 891, \"rankvar\": 464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 783, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 819, \"cat-2\": \"Density: 22\", \"cat_2_index\": 279, \"group\": [1070.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84582_BALBc-1_X02_Y01_795_344\", \"ini\": 2042, \"clust\": 56, \"rank\": 1637, \"rankvar\": 1606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 784, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2288, \"cat-2\": \"Density: 25\", \"cat_2_index\": 644, \"group\": [60.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84699_BALBc-1_X02_Y01_796_71\", \"ini\": 2041, \"clust\": 1900, \"rank\": 2239, \"rankvar\": 2229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 785, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2289, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1646, \"group\": [1897.0, 289.0, 69.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85322_BALBc-1_X02_Y01_802_832\", \"ini\": 2040, \"clust\": 1136, \"rank\": 289, \"rankvar\": 2167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 786, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1924, \"cat-2\": \"Density: 27\", \"cat_2_index\": 925, \"group\": [1139.0, 241.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85337_BALBc-1_X02_Y01_803_103\", \"ini\": 2039, \"clust\": 1353, \"rank\": 1070, \"rankvar\": 25, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 787, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 943, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1850, \"group\": [1354.0, 261.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85500_BALBc-1_X02_Y01_805_277\", \"ini\": 2038, \"clust\": 246, \"rank\": 2321, \"rankvar\": 2577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 788, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2488, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1378, \"group\": [250.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85553_BALBc-1_X02_Y01_805_711\", \"ini\": 2037, \"clust\": 916, \"rank\": 1841, \"rankvar\": 2241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 789, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2442, \"cat-2\": \"Density: 23\", \"cat_2_index\": 388, \"group\": [917.0, 214.0, 57.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85954_BALBc-1_X02_Y01_810_220\", \"ini\": 2036, \"clust\": 2824, \"rank\": 2220, \"rankvar\": 2202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 790, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2290, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1647, \"group\": [2821.0, 439.0, 106.0, 29.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86607_BALBc-1_X02_Y01_818_617\", \"ini\": 2035, \"clust\": 33, \"rank\": 2589, \"rankvar\": 2677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 791, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 820, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1080, \"group\": [33.0, 12.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86719_BALBc-1_X02_Y01_82_404\", \"ini\": 2034, \"clust\": 2766, \"rank\": 1378, \"rankvar\": 1069, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 792, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1088, \"cat-2\": \"Density: 26\", \"cat_2_index\": 770, \"group\": [2764.0, 426.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87009_BALBc-1_X02_Y01_822_96\", \"ini\": 2033, \"clust\": 764, \"rank\": 1299, \"rankvar\": 1175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 793, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1734, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2222, \"group\": [764.0, 174.0, 45.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87084_BALBc-1_X02_Y01_823_81\", \"ini\": 2032, \"clust\": 2307, \"rank\": 956, \"rankvar\": 706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 794, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1735, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1851, \"group\": [2303.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87109_BALBc-1_X02_Y01_824_179\", \"ini\": 2031, \"clust\": 882, \"rank\": 589, \"rankvar\": 1370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 795, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2291, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1852, \"group\": [883.0, 202.0, 53.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87294_BALBc-1_X02_Y01_826_54\", \"ini\": 2030, \"clust\": 971, \"rank\": 668, \"rankvar\": 769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 796, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1736, \"cat-2\": \"Density: 26\", \"cat_2_index\": 771, \"group\": [969.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87491_BALBc-1_X02_Y01_828_989\", \"ini\": 2029, \"clust\": 143, \"rank\": 1751, \"rankvar\": 678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 797, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1925, \"cat-2\": \"Density: 26\", \"cat_2_index\": 772, \"group\": [148.0, 31.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87558_BALBc-1_X02_Y01_829_961\", \"ini\": 2028, \"clust\": 1072, \"rank\": 721, \"rankvar\": 243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 798, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 821, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1081, \"group\": [1073.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87735_BALBc-1_X02_Y01_831_448\", \"ini\": 2027, \"clust\": 824, \"rank\": 1154, \"rankvar\": 2336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 799, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2443, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1379, \"group\": [823.0, 195.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87925_BALBc-1_X02_Y01_834_297\", \"ini\": 2026, \"clust\": 136, \"rank\": 1866, \"rankvar\": 1970, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 800, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1926, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1380, \"group\": [139.0, 28.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88101_BALBc-1_X02_Y01_836_594\", \"ini\": 2025, \"clust\": 1429, \"rank\": 1037, \"rankvar\": 1677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 801, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1927, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1082, \"group\": [1431.0, 266.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88212_BALBc-1_X02_Y01_837_889\", \"ini\": 2024, \"clust\": 38, \"rank\": 2113, \"rankvar\": 2127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 802, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1928, \"cat-2\": \"Density: 27\", \"cat_2_index\": 926, \"group\": [39.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88228_BALBc-1_X02_Y01_838_199\", \"ini\": 2023, \"clust\": 478, \"rank\": 2088, \"rankvar\": 2252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 803, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 822, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1955, \"group\": [479.0, 99.0, 26.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88242_BALBc-1_X02_Y01_838_433\", \"ini\": 2022, \"clust\": 1898, \"rank\": 2458, \"rankvar\": 2162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 804, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1737, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1228, \"group\": [1895.0, 287.0, 69.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88501_BALBc-1_X02_Y01_840_810\", \"ini\": 2021, \"clust\": 2202, \"rank\": 820, \"rankvar\": 2024, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 805, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1929, \"cat-2\": \"Density: 23\", \"cat_2_index\": 389, \"group\": [2197.0, 316.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88562_BALBc-1_X02_Y01_841_513\", \"ini\": 2020, \"clust\": 28, \"rank\": 2356, \"rankvar\": 2266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 806, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1930, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1956, \"group\": [29.0, 11.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88609_BALBc-1_X02_Y01_842_154\", \"ini\": 2019, \"clust\": 783, \"rank\": 1219, \"rankvar\": 1238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 807, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1738, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2146, \"group\": [784.0, 184.0, 48.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88759_BALBc-1_X02_Y01_844_26\", \"ini\": 2018, \"clust\": 1448, \"rank\": 202, \"rankvar\": 935, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 808, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2444, \"cat-2\": \"Density: 20\", \"cat_2_index\": 152, \"group\": [1448.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88814_BALBc-1_X02_Y01_844_864\", \"ini\": 2017, \"clust\": 600, \"rank\": 2523, \"rankvar\": 2436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 809, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1931, \"cat-2\": \"Density: 27\", \"cat_2_index\": 927, \"group\": [601.0, 139.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88845_BALBc-1_X02_Y01_845_321\", \"ini\": 2016, \"clust\": 537, \"rank\": 2226, \"rankvar\": 2410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 810, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1739, \"cat-2\": \"Density: 27\", \"cat_2_index\": 928, \"group\": [542.0, 116.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89110_BALBc-1_X02_Y01_848_694\", \"ini\": 2015, \"clust\": 2342, \"rank\": 957, \"rankvar\": 1982, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 811, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2238, \"cat-2\": \"Density: 22\", \"cat_2_index\": 280, \"group\": [2339.0, 334.0, 77.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90038_BALBc-1_X02_Y01_859_742\", \"ini\": 2014, \"clust\": 565, \"rank\": 1511, \"rankvar\": 1767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 812, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1932, \"cat-2\": \"Density: 26\", \"cat_2_index\": 773, \"group\": [564.0, 125.0, 33.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90134_BALBc-1_X02_Y01_86_851\", \"ini\": 2013, \"clust\": 164, \"rank\": 2260, \"rankvar\": 2329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 813, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 691, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1648, \"group\": [165.0, 37.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91113_BALBc-1_X02_Y01_871_608\", \"ini\": 2012, \"clust\": 917, \"rank\": 1215, \"rankvar\": 2278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 814, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1633, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1381, \"group\": [918.0, 214.0, 57.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91313_BALBc-1_X02_Y01_874_166\", \"ini\": 2011, \"clust\": 437, \"rank\": 1638, \"rankvar\": 2058, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 815, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1740, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2223, \"group\": [436.0, 85.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91333_BALBc-1_X02_Y01_874_423\", \"ini\": 2010, \"clust\": 483, \"rank\": 2505, \"rankvar\": 1231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 816, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1933, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1382, \"group\": [484.0, 101.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91389_BALBc-1_X02_Y01_875_273\", \"ini\": 2009, \"clust\": 73, \"rank\": 2509, \"rankvar\": 2543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 817, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1934, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1853, \"group\": [73.0, 15.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91790_BALBc-1_X02_Y01_88_353\", \"ini\": 2008, \"clust\": 1168, \"rank\": 1370, \"rankvar\": 535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 818, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1935, \"cat-2\": \"Density: 27\", \"cat_2_index\": 929, \"group\": [1167.0, 245.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91944_BALBc-1_X02_Y01_881_300\", \"ini\": 2007, \"clust\": 1765, \"rank\": 187, \"rankvar\": 309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 819, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 823, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1383, \"group\": [1762.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92119_BALBc-1_X02_Y01_883_690\", \"ini\": 2006, \"clust\": 1481, \"rank\": 361, \"rankvar\": 1566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 820, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2445, \"cat-2\": \"Density: 24\", \"cat_2_index\": 499, \"group\": [1487.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92234_BALBc-1_X02_Y01_885_483\", \"ini\": 2005, \"clust\": 521, \"rank\": 2575, \"rankvar\": 2128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 821, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1936, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2063, \"group\": [525.0, 110.0, 29.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92639_BALBc-1_X02_Y01_89_950\", \"ini\": 2004, \"clust\": 198, \"rank\": 2542, \"rankvar\": 2731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 822, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 824, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1957, \"group\": [198.0, 44.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92716_BALBc-1_X02_Y01_890_939\", \"ini\": 2003, \"clust\": 1672, \"rank\": 33, \"rankvar\": 846, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 823, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1089, \"cat-2\": \"Density: 25\", \"cat_2_index\": 645, \"group\": [1670.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92826_BALBc-1_X02_Y01_892_493\", \"ini\": 2002, \"clust\": 214, \"rank\": 1101, \"rankvar\": 1943, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 824, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1937, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1758, \"group\": [217.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92861_BALBc-1_X02_Y01_892_982\", \"ini\": 2001, \"clust\": 1249, \"rank\": 211, \"rankvar\": 317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 825, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 825, \"cat-2\": \"Density: 26\", \"cat_2_index\": 774, \"group\": [1250.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93022_BALBc-1_X02_Y01_894_971\", \"ini\": 2000, \"clust\": 2623, \"rank\": 2462, \"rankvar\": 2309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 826, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1090, \"cat-2\": \"Density: 26\", \"cat_2_index\": 775, \"group\": [2621.0, 403.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93068_BALBc-1_X02_Y01_895_559\", \"ini\": 1999, \"clust\": 482, \"rank\": 2473, \"rankvar\": 2581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 827, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1938, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1854, \"group\": [482.0, 100.0, 26.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93323_BALBc-1_X02_Y01_898_909\", \"ini\": 1998, \"clust\": 1170, \"rank\": 775, \"rankvar\": 988, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 828, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1091, \"cat-2\": \"Density: 26\", \"cat_2_index\": 776, \"group\": [1170.0, 247.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93904_BALBc-1_X02_Y01_905_249\", \"ini\": 1997, \"clust\": 249, \"rank\": 2426, \"rankvar\": 2684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 829, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 826, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2147, \"group\": [248.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93971_BALBc-1_X02_Y01_906_130\", \"ini\": 1996, \"clust\": 2479, \"rank\": 2675, \"rankvar\": 2633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 830, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1741, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2148, \"group\": [2476.0, 379.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94356_BALBc-1_X02_Y01_910_484\", \"ini\": 1995, \"clust\": 542, \"rank\": 1948, \"rankvar\": 1819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 831, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2446, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1759, \"group\": [543.0, 117.0, 31.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94868_BALBc-1_X02_Y01_917_430\", \"ini\": 1994, \"clust\": 2461, \"rank\": 1726, \"rankvar\": 1597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 832, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1939, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1229, \"group\": [2457.0, 371.0, 89.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95225_BALBc-1_X02_Y01_920_863\", \"ini\": 1993, \"clust\": 1133, \"rank\": 1195, \"rankvar\": 1788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 833, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1940, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1384, \"group\": [1135.0, 241.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95582_BALBc-1_X02_Y01_925_541\", \"ini\": 1992, \"clust\": 2390, \"rank\": 2611, \"rankvar\": 2801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 834, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1941, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1855, \"group\": [2382.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95746_BALBc-1_X02_Y01_927_54\", \"ini\": 1991, \"clust\": 1368, \"rank\": 1023, \"rankvar\": 773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 835, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1742, \"cat-2\": \"Density: 21\", \"cat_2_index\": 202, \"group\": [1369.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96191_BALBc-1_X02_Y01_932_492\", \"ini\": 1990, \"clust\": 2676, \"rank\": 2407, \"rankvar\": 1465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 836, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1942, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1958, \"group\": [2674.0, 412.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96279_BALBc-1_X02_Y01_933_566\", \"ini\": 1989, \"clust\": 145, \"rank\": 1868, \"rankvar\": 2273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 837, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1092, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1506, \"group\": [145.0, 30.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96334_BALBc-1_X02_Y01_934_380\", \"ini\": 1988, \"clust\": 2196, \"rank\": 1301, \"rankvar\": 1485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 838, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1943, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1083, \"group\": [2198.0, 316.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96344_BALBc-1_X02_Y01_934_613\", \"ini\": 1987, \"clust\": 226, \"rank\": 2322, \"rankvar\": 2638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 839, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2489, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1507, \"group\": [227.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96459_BALBc-1_X02_Y01_935_966\", \"ini\": 1986, \"clust\": 177, \"rank\": 2317, \"rankvar\": 2209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 840, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1093, \"cat-2\": \"Density: 26\", \"cat_2_index\": 777, \"group\": [178.0, 42.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96674_BALBc-1_X02_Y01_939_112\", \"ini\": 1985, \"clust\": 644, \"rank\": 2629, \"rankvar\": 1974, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 841, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 944, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1760, \"group\": [645.0, 152.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97053_BALBc-1_X02_Y01_943_180\", \"ini\": 1984, \"clust\": 2730, \"rank\": 1968, \"rankvar\": 1882, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 842, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1944, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1959, \"group\": [2729.0, 421.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97263_BALBc-1_X02_Y01_945_522\", \"ini\": 1983, \"clust\": 907, \"rank\": 734, \"rankvar\": 1590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 843, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2292, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1960, \"group\": [907.0, 209.0, 55.0, 14.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97534_BALBc-1_X02_Y01_949_394\", \"ini\": 1982, \"clust\": 46, \"rank\": 2367, \"rankvar\": 2521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 844, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1945, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1385, \"group\": [47.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98149_BALBc-1_X02_Y01_956_248\", \"ini\": 1981, \"clust\": 693, \"rank\": 2564, \"rankvar\": 2475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 845, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 827, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1649, \"group\": [689.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98727_BALBc-1_X02_Y01_963_190\", \"ini\": 1980, \"clust\": 1830, \"rank\": 408, \"rankvar\": 903, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 846, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 828, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2064, \"group\": [1827.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98778_BALBc-1_X02_Y01_963_859\", \"ini\": 1979, \"clust\": 122, \"rank\": 1599, \"rankvar\": 2004, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 847, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1094, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1230, \"group\": [123.0, 26.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98945_BALBc-1_X02_Y01_966_166\", \"ini\": 1978, \"clust\": 1637, \"rank\": 179, \"rankvar\": 40, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 848, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1946, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1856, \"group\": [1636.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99117_BALBc-1_X02_Y01_968_271\", \"ini\": 1977, \"clust\": 1218, \"rank\": 155, \"rankvar\": 451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 849, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1947, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1650, \"group\": [1219.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99166_BALBc-1_X02_Y01_968_799\", \"ini\": 1976, \"clust\": 640, \"rank\": 2683, \"rankvar\": 2164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 850, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1948, \"cat-2\": \"Density: 27\", \"cat_2_index\": 930, \"group\": [639.0, 150.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99323_BALBc-1_X02_Y01_97_873\", \"ini\": 1975, \"clust\": 585, \"rank\": 790, \"rankvar\": 1250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 851, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2447, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1651, \"group\": [586.0, 133.0, 36.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99561_BALBc-1_X02_Y01_973_197\", \"ini\": 1974, \"clust\": 2758, \"rank\": 1098, \"rankvar\": 1397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 852, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 829, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2065, \"group\": [2754.0, 425.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99777_BALBc-1_X02_Y01_975_860\", \"ini\": 1973, \"clust\": 1211, \"rank\": 473, \"rankvar\": 1438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 853, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1949, \"cat-2\": \"Density: 26\", \"cat_2_index\": 778, \"group\": [1214.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100239_BALBc-1_X02_Y01_981_12\", \"ini\": 1972, \"clust\": 1174, \"rank\": 967, \"rankvar\": 1126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 854, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1950, \"cat-2\": \"Density: 13\", \"cat_2_index\": 16, \"group\": [1173.0, 248.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100387_BALBc-1_X02_Y01_983_285\", \"ini\": 1971, \"clust\": 818, \"rank\": 1150, \"rankvar\": 736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 855, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1951, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1508, \"group\": [819.0, 193.0, 51.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100684_BALBc-1_X02_Y01_987_235\", \"ini\": 1970, \"clust\": 923, \"rank\": 1426, \"rankvar\": 926, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 856, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 830, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1761, \"group\": [923.0, 216.0, 57.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100729_BALBc-1_X02_Y01_987_776\", \"ini\": 1969, \"clust\": 1122, \"rank\": 952, \"rankvar\": 1534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 857, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1743, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1084, \"group\": [1121.0, 237.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101299_BALBc-1_X02_Y01_994_207\", \"ini\": 1968, \"clust\": 328, \"rank\": 1410, \"rankvar\": 1609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 858, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1095, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1961, \"group\": [329.0, 66.0, 18.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101376_BALBc-1_X02_Y01_995_115\", \"ini\": 1967, \"clust\": 703, \"rank\": 2766, \"rankvar\": 2736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 859, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1952, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1386, \"group\": [703.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101379_BALBc-1_X02_Y01_995_125\", \"ini\": 1966, \"clust\": 1265, \"rank\": 333, \"rankvar\": 767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 860, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1953, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1387, \"group\": [1265.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101762_BALBc-1_X02_Y01_999_749\", \"ini\": 1965, \"clust\": 108, \"rank\": 1506, \"rankvar\": 1720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 861, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1954, \"cat-2\": \"Density: 26\", \"cat_2_index\": 779, \"group\": [109.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-814_BALBc-1_X01_Y02_1000_470\", \"ini\": 1964, \"clust\": 810, \"rank\": 1317, \"rankvar\": 941, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 862, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2520, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2542, \"group\": [805.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1027_BALBc-1_X01_Y02_1003_258\", \"ini\": 1963, \"clust\": 2509, \"rank\": 1682, \"rankvar\": 1463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 863, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2521, \"cat-2\": \"Density: 27\", \"cat_2_index\": 931, \"group\": [2506.0, 381.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1035_BALBc-1_X01_Y02_1003_353\", \"ini\": 1962, \"clust\": 1098, \"rank\": 731, \"rankvar\": 875, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 864, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 38, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2365, \"group\": [1096.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1100_BALBc-1_X01_Y02_1004_310\", \"ini\": 1961, \"clust\": 1599, \"rank\": 373, \"rankvar\": 14, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 865, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 39, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1652, \"group\": [1603.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1200_BALBc-1_X01_Y02_1005_707\", \"ini\": 1960, \"clust\": 1951, \"rank\": 1817, \"rankvar\": 401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 866, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1096, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2503, \"group\": [1952.0, 302.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1322_BALBc-1_X01_Y02_1007_204\", \"ini\": 1959, \"clust\": 1059, \"rank\": 1296, \"rankvar\": 1613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 867, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 40, \"cat-2\": \"Density: 25\", \"cat_2_index\": 646, \"group\": [1059.0, 228.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1434_BALBc-1_X01_Y02_1008_667\", \"ini\": 1958, \"clust\": 795, \"rank\": 1283, \"rankvar\": 606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 868, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 41, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2543, \"group\": [795.0, 189.0, 49.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1462_BALBc-1_X01_Y02_1008_96\", \"ini\": 1957, \"clust\": 1676, \"rank\": 124, \"rankvar\": 184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 869, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2522, \"cat-2\": \"Density: 26\", \"cat_2_index\": 780, \"group\": [1674.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1655_BALBc-1_X01_Y02_1010_300\", \"ini\": 1956, \"clust\": 2211, \"rank\": 869, \"rankvar\": 1131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 870, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 42, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1762, \"group\": [2215.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1685_BALBc-1_X01_Y02_1010_638\", \"ini\": 1955, \"clust\": 1219, \"rank\": 326, \"rankvar\": 859, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 871, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1992, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2544, \"group\": [1220.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1696_BALBc-1_X01_Y02_1010_759\", \"ini\": 1954, \"clust\": 800, \"rank\": 1448, \"rankvar\": 801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 872, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1097, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2424, \"group\": [803.0, 191.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1730_BALBc-1_X01_Y02_1011_325\", \"ini\": 1953, \"clust\": 555, \"rank\": 1504, \"rankvar\": 1015, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 873, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 43, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2066, \"group\": [554.0, 121.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1847_BALBc-1_X01_Y02_1012_897\", \"ini\": 1952, \"clust\": 1532, \"rank\": 237, \"rankvar\": 275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 874, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1098, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2299, \"group\": [1531.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1915_BALBc-1_X01_Y02_1013_615\", \"ini\": 1951, \"clust\": 2665, \"rank\": 2538, \"rankvar\": 2365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 875, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1993, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2651, \"group\": [2663.0, 411.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2124_BALBc-1_X01_Y02_1016_391\", \"ini\": 1950, \"clust\": 2663, \"rank\": 1959, \"rankvar\": 952, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 876, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 44, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2773, \"group\": [2661.0, 411.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2204_BALBc-1_X01_Y02_1017_547\", \"ini\": 1949, \"clust\": 2222, \"rank\": 1107, \"rankvar\": 1159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 877, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 45, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2652, \"group\": [2220.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2235_BALBc-1_X01_Y02_1017_848\", \"ini\": 1948, \"clust\": 590, \"rank\": 1022, \"rankvar\": 1572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 878, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1099, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2504, \"group\": [592.0, 134.0, 36.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2283_BALBc-1_X01_Y02_1018_442\", \"ini\": 1947, \"clust\": 2360, \"rank\": 2452, \"rankvar\": 1741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 879, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2523, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2733, \"group\": [2358.0, 345.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2353_BALBc-1_X01_Y02_1019_489\", \"ini\": 1946, \"clust\": 420, \"rank\": 2466, \"rankvar\": 2640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 880, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2524, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2734, \"group\": [420.0, 83.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2355_BALBc-1_X01_Y02_1019_507\", \"ini\": 1945, \"clust\": 2666, \"rank\": 2395, \"rankvar\": 2378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 881, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 46, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2593, \"group\": [2664.0, 411.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2384_BALBc-1_X01_Y02_1019_836\", \"ini\": 1944, \"clust\": 306, \"rank\": 2363, \"rankvar\": 2630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 882, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1634, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2594, \"group\": [304.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2557_BALBc-1_X01_Y02_1021_285\", \"ini\": 1943, \"clust\": 1832, \"rank\": 385, \"rankvar\": 1155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 883, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 47, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1388, \"group\": [1830.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2591_BALBc-1_X01_Y02_1021_733\", \"ini\": 1942, \"clust\": 1816, \"rank\": 140, \"rankvar\": 777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 884, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1100, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2425, \"group\": [1813.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2671_BALBc-1_X01_Y02_1022_672\", \"ini\": 1941, \"clust\": 1272, \"rank\": 641, \"rankvar\": 313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 885, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1101, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2505, \"group\": [1273.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2730_BALBc-1_X01_Y02_1023_412\", \"ini\": 1940, \"clust\": 2257, \"rank\": 1199, \"rankvar\": 1748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 886, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2525, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2696, \"group\": [2262.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2766_BALBc-1_X01_Y02_1023_779\", \"ini\": 1939, \"clust\": 715, \"rank\": 2355, \"rankvar\": 2174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 887, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1102, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2426, \"group\": [713.0, 159.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2827_BALBc-1_X01_Y02_1024_575\", \"ini\": 1938, \"clust\": 2655, \"rank\": 2665, \"rankvar\": 2338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 888, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 48, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2595, \"group\": [2651.0, 409.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2833_BALBc-1_X01_Y02_1024_621\", \"ini\": 1937, \"clust\": 424, \"rank\": 1650, \"rankvar\": 1826, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 889, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 49, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2596, \"group\": [427.0, 83.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2893_BALBc-1_X01_Y02_1025_369\", \"ini\": 1936, \"clust\": 880, \"rank\": 1137, \"rankvar\": 918, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 890, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1635, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2506, \"group\": [881.0, 201.0, 53.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2964_BALBc-1_X01_Y02_1026_323\", \"ini\": 1935, \"clust\": 927, \"rank\": 1343, \"rankvar\": 402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 891, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 50, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1857, \"group\": [928.0, 217.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3081_BALBc-1_X01_Y02_1027_596\", \"ini\": 1934, \"clust\": 1623, \"rank\": 99, \"rankvar\": 89, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 892, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 51, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2653, \"group\": [1623.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3102_BALBc-1_X01_Y02_1027_8\", \"ini\": 1933, \"clust\": 1538, \"rank\": 214, \"rankvar\": 102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 893, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1636, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1763, \"group\": [1536.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3134_BALBc-1_X01_Y02_1028_174\", \"ini\": 1932, \"clust\": 1245, \"rank\": 537, \"rankvar\": 229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 894, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1103, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1085, \"group\": [1245.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3301_BALBc-1_X01_Y02_103_274\", \"ini\": 1931, \"clust\": 574, \"rank\": 2561, \"rankvar\": 2734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 895, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1104, \"cat-2\": \"Density: 25\", \"cat_2_index\": 647, \"group\": [574.0, 129.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3362_BALBc-1_X01_Y02_1030_122\", \"ini\": 1930, \"clust\": 2350, \"rank\": 2292, \"rankvar\": 816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 896, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 692, \"cat-2\": \"Density: 24\", \"cat_2_index\": 500, \"group\": [2346.0, 340.0, 80.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3370_BALBc-1_X01_Y02_1030_219\", \"ini\": 1929, \"clust\": 2447, \"rank\": 1559, \"rankvar\": 1666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 897, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1105, \"cat-2\": \"Density: 27\", \"cat_2_index\": 932, \"group\": [2445.0, 365.0, 86.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3687_BALBc-1_X01_Y02_1034_469\", \"ini\": 1928, \"clust\": 1547, \"rank\": 471, \"rankvar\": 357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 898, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2526, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2735, \"group\": [1548.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3758_BALBc-1_X01_Y02_1035_352\", \"ini\": 1927, \"clust\": 1540, \"rank\": 276, \"rankvar\": 180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 899, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1637, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2427, \"group\": [1540.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3764_BALBc-1_X01_Y02_1035_406\", \"ini\": 1926, \"clust\": 2318, \"rank\": 2430, \"rankvar\": 2065, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 900, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1638, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2597, \"group\": [2316.0, 322.0, 74.0, 19.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4026_BALBc-1_X01_Y02_1038_521\", \"ini\": 1925, \"clust\": 2734, \"rank\": 1421, \"rankvar\": 1145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 901, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 52, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2736, \"group\": [2731.0, 422.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4053_BALBc-1_X01_Y02_1038_905\", \"ini\": 1924, \"clust\": 362, \"rank\": 2378, \"rankvar\": 2549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 902, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1744, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2149, \"group\": [360.0, 73.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4056_BALBc-1_X01_Y02_1038_930\", \"ini\": 1923, \"clust\": 1192, \"rank\": 292, \"rankvar\": 378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 903, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1106, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1509, \"group\": [1192.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4110_BALBc-1_X01_Y02_1039_579\", \"ini\": 1922, \"clust\": 1111, \"rank\": 1304, \"rankvar\": 190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 904, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 53, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2598, \"group\": [1110.0, 234.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4115_BALBc-1_X01_Y02_1039_648\", \"ini\": 1921, \"clust\": 377, \"rank\": 2099, \"rankvar\": 2578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 905, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1107, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2428, \"group\": [375.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4300_BALBc-1_X01_Y02_1041_266\", \"ini\": 1920, \"clust\": 685, \"rank\": 2752, \"rankvar\": 2648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 906, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 54, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1231, \"group\": [685.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4313_BALBc-1_X01_Y02_1041_433\", \"ini\": 1919, \"clust\": 331, \"rank\": 2329, \"rankvar\": 2714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 907, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2527, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2697, \"group\": [330.0, 67.0, 18.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4822_BALBc-1_X01_Y02_1047_721\", \"ini\": 1918, \"clust\": 1387, \"rank\": 757, \"rankvar\": 437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 908, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1108, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2507, \"group\": [1388.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4884_BALBc-1_X01_Y02_1048_476\", \"ini\": 1917, \"clust\": 2778, \"rank\": 1502, \"rankvar\": 1297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 909, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 55, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2819, \"group\": [2776.0, 427.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4887_BALBc-1_X01_Y02_1048_504\", \"ini\": 1916, \"clust\": 1646, \"rank\": 224, \"rankvar\": 217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 910, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 56, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2820, \"group\": [1647.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4912_BALBc-1_X01_Y02_1048_876\", \"ini\": 1915, \"clust\": 2258, \"rank\": 1020, \"rankvar\": 2081, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 911, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1109, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2224, \"group\": [2258.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5193_BALBc-1_X01_Y02_1051_618\", \"ini\": 1914, \"clust\": 298, \"rank\": 2133, \"rankvar\": 2090, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 912, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1110, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2366, \"group\": [299.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5224_BALBc-1_X01_Y02_1052_107\", \"ini\": 1913, \"clust\": 1798, \"rank\": 48, \"rankvar\": 549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 913, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 693, \"cat-2\": \"Density: 23\", \"cat_2_index\": 390, \"group\": [1796.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5304_BALBc-1_X01_Y02_1053_18\", \"ini\": 1912, \"clust\": 631, \"rank\": 2255, \"rankvar\": 94, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 914, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2448, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1232, \"group\": [632.0, 148.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5328_BALBc-1_X01_Y02_1053_572\", \"ini\": 1911, \"clust\": 1349, \"rank\": 865, \"rankvar\": 230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 915, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 57, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2599, \"group\": [1350.0, 261.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5445_BALBc-1_X01_Y02_1055_145\", \"ini\": 1910, \"clust\": 2595, \"rank\": 2110, \"rankvar\": 1895, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 916, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 58, \"cat-2\": \"Density: 23\", \"cat_2_index\": 391, \"group\": [2592.0, 394.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5547_BALBc-1_X01_Y02_1056_251\", \"ini\": 1909, \"clust\": 1267, \"rank\": 1073, \"rankvar\": 598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 917, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1560, \"cat-2\": \"Density: 27\", \"cat_2_index\": 933, \"group\": [1272.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5577_BALBc-1_X01_Y02_1056_535\", \"ini\": 1908, \"clust\": 1648, \"rank\": 300, \"rankvar\": 200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 918, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 59, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2698, \"group\": [1649.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5586_BALBc-1_X01_Y02_1056_690\", \"ini\": 1907, \"clust\": 595, \"rank\": 1966, \"rankvar\": 2264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 919, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1111, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2429, \"group\": [594.0, 136.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5602_BALBc-1_X01_Y02_1056_84\", \"ini\": 1906, \"clust\": 1126, \"rank\": 1376, \"rankvar\": 97, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 920, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 694, \"cat-2\": \"Density: 26\", \"cat_2_index\": 781, \"group\": [1132.0, 240.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5707_BALBc-1_X01_Y02_1058_294\", \"ini\": 1905, \"clust\": 1550, \"rank\": 713, \"rankvar\": 33, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 921, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 60, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1510, \"group\": [1553.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5739_BALBc-1_X01_Y02_1058_669\", \"ini\": 1904, \"clust\": 834, \"rank\": 1786, \"rankvar\": 1640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 922, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1112, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2654, \"group\": [838.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5833_BALBc-1_X01_Y02_1059_848\", \"ini\": 1903, \"clust\": 299, \"rank\": 1867, \"rankvar\": 2249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 923, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1113, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2300, \"group\": [300.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6281_BALBc-1_X01_Y02_1064_432\", \"ini\": 1902, \"clust\": 396, \"rank\": 2754, \"rankvar\": 2643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 924, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 61, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2737, \"group\": [398.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6293_BALBc-1_X01_Y02_1064_504\", \"ini\": 1901, \"clust\": 2790, \"rank\": 1849, \"rankvar\": 728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 925, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 62, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2811, \"group\": [2786.0, 428.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6437_BALBc-1_X01_Y02_1066_473\", \"ini\": 1900, \"clust\": 1812, \"rank\": 393, \"rankvar\": 406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 926, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 63, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2821, \"group\": [1810.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6448_BALBc-1_X01_Y02_1066_590\", \"ini\": 1899, \"clust\": 1826, \"rank\": 275, \"rankvar\": 752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 927, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 64, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2655, \"group\": [1826.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6527_BALBc-1_X01_Y02_1067_691\", \"ini\": 1898, \"clust\": 1066, \"rank\": 1156, \"rankvar\": 690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 928, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1114, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2430, \"group\": [1069.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6588_BALBc-1_X01_Y02_1068_448\", \"ini\": 1897, \"clust\": 1328, \"rank\": 514, \"rankvar\": 1061, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 929, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 65, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2812, \"group\": [1329.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6686_BALBc-1_X01_Y02_1069_459\", \"ini\": 1896, \"clust\": 1373, \"rank\": 705, \"rankvar\": 91, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 930, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 66, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2793, \"group\": [1373.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6811_BALBc-1_X01_Y02_1070_150\", \"ini\": 1895, \"clust\": 290, \"rank\": 1988, \"rankvar\": 2512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 931, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1115, \"cat-2\": \"Density: 23\", \"cat_2_index\": 392, \"group\": [291.0, 61.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7004_BALBc-1_X01_Y02_1072_408\", \"ini\": 1894, \"clust\": 1562, \"rank\": 500, \"rankvar\": 1658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 932, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 619, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2794, \"group\": [1564.0, 273.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7308_BALBc-1_X01_Y02_1075_797\", \"ini\": 1893, \"clust\": 1624, \"rank\": 89, \"rankvar\": 83, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 933, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1116, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2301, \"group\": [1621.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7360_BALBc-1_X01_Y02_1076_505\", \"ini\": 1892, \"clust\": 2680, \"rank\": 1903, \"rankvar\": 780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 934, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 67, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2795, \"group\": [2681.0, 412.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7375_BALBc-1_X01_Y02_1076_614\", \"ini\": 1891, \"clust\": 2306, \"rank\": 642, \"rankvar\": 794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 935, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1117, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2656, \"group\": [2302.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7388_BALBc-1_X01_Y02_1076_772\", \"ini\": 1890, \"clust\": 447, \"rank\": 1486, \"rankvar\": 1873, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 936, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1118, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2367, \"group\": [448.0, 88.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7429_BALBc-1_X01_Y02_1077_283\", \"ini\": 1889, \"clust\": 1110, \"rank\": 1118, \"rankvar\": 315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 937, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 68, \"cat-2\": \"Density: 26\", \"cat_2_index\": 782, \"group\": [1112.0, 234.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7521_BALBc-1_X01_Y02_1078_434\", \"ini\": 1888, \"clust\": 758, \"rank\": 453, \"rankvar\": 1467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 938, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 69, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2796, \"group\": [759.0, 173.0, 44.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7604_BALBc-1_X01_Y02_1079_662\", \"ini\": 1887, \"clust\": 347, \"rank\": 2753, \"rankvar\": 2709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 939, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1119, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2431, \"group\": [349.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7606_BALBc-1_X01_Y02_1079_678\", \"ini\": 1886, \"clust\": 2699, \"rank\": 1719, \"rankvar\": 1129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 940, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1639, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2432, \"group\": [2700.0, 415.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7804_BALBc-1_X01_Y02_1081_554\", \"ini\": 1885, \"clust\": 924, \"rank\": 1406, \"rankvar\": 772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 941, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 70, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2699, \"group\": [924.0, 216.0, 57.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7953_BALBc-1_X01_Y02_1083_574\", \"ini\": 1884, \"clust\": 2787, \"rank\": 1593, \"rankvar\": 962, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 942, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 71, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2508, \"group\": [2784.0, 428.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8179_BALBc-1_X01_Y02_1086_62\", \"ini\": 1883, \"clust\": 931, \"rank\": 968, \"rankvar\": 679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 943, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1640, \"cat-2\": \"Density: 27\", \"cat_2_index\": 934, \"group\": [932.0, 218.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8323_BALBc-1_X01_Y02_1088_532\", \"ini\": 1882, \"clust\": 1674, \"rank\": 367, \"rankvar\": 57, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 944, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 72, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2774, \"group\": [1672.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8368_BALBc-1_X01_Y02_1089_10\", \"ini\": 1881, \"clust\": 1284, \"rank\": 317, \"rankvar\": 203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 945, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 695, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1233, \"group\": [1283.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8395_BALBc-1_X01_Y02_1089_383\", \"ini\": 1880, \"clust\": 1363, \"rank\": 1045, \"rankvar\": 779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 946, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 620, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2600, \"group\": [1368.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8610_BALBc-1_X01_Y02_1091_207\", \"ini\": 1879, \"clust\": 856, \"rank\": 729, \"rankvar\": 1458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 947, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1120, \"cat-2\": \"Density: 22\", \"cat_2_index\": 281, \"group\": [856.0, 197.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8618_BALBc-1_X01_Y02_1091_325\", \"ini\": 1878, \"clust\": 1385, \"rank\": 626, \"rankvar\": 298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 948, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1641, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1962, \"group\": [1382.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8711_BALBc-1_X01_Y02_1092_593\", \"ini\": 1877, \"clust\": 721, \"rank\": 2521, \"rankvar\": 1620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 949, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 73, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2738, \"group\": [727.0, 162.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8860_BALBc-1_X01_Y02_1094_414\", \"ini\": 1876, \"clust\": 500, \"rank\": 2655, \"rankvar\": 2658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 950, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 74, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2775, \"group\": [501.0, 104.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8911_BALBc-1_X01_Y02_1095_127\", \"ini\": 1875, \"clust\": 1082, \"rank\": 1246, \"rankvar\": 1056, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 951, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1121, \"cat-2\": \"Density: 24\", \"cat_2_index\": 501, \"group\": [1081.0, 230.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8950_BALBc-1_X01_Y02_1095_640\", \"ini\": 1874, \"clust\": 1524, \"rank\": 684, \"rankvar\": 578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 952, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1122, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2700, \"group\": [1523.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9039_BALBc-1_X01_Y02_1096_780\", \"ini\": 1873, \"clust\": 1294, \"rank\": 1236, \"rankvar\": 975, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 953, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 945, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2225, \"group\": [1297.0, 258.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9116_BALBc-1_X01_Y02_1097_820\", \"ini\": 1872, \"clust\": 364, \"rank\": 2563, \"rankvar\": 2192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 954, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1123, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2226, \"group\": [364.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9237_BALBc-1_X01_Y02_1099_474\", \"ini\": 1871, \"clust\": 1199, \"rank\": 754, \"rankvar\": 38, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 955, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 75, \"cat-2\": \"Density: 52\", \"cat_2_index\": 2825, \"group\": [1211.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9410_BALBc-1_X01_Y02_110_501\", \"ini\": 1870, \"clust\": 1427, \"rank\": 628, \"rankvar\": 1517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 956, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2449, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1086, \"group\": [1428.0, 266.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9518_BALBc-1_X01_Y02_1100_80\", \"ini\": 1869, \"clust\": 676, \"rank\": 2560, \"rankvar\": 2553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 957, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1955, \"cat-2\": \"Density: 24\", \"cat_2_index\": 502, \"group\": [677.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9617_BALBc-1_X01_Y02_1102_229\", \"ini\": 1868, \"clust\": 681, \"rank\": 2743, \"rankvar\": 2632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 958, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1561, \"cat-2\": \"Density: 26\", \"cat_2_index\": 783, \"group\": [680.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9723_BALBc-1_X01_Y02_1103_562\", \"ini\": 1867, \"clust\": 1752, \"rank\": 261, \"rankvar\": 204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 959, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 76, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2545, \"group\": [1751.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9784_BALBc-1_X01_Y02_1104_292\", \"ini\": 1866, \"clust\": 345, \"rank\": 2660, \"rankvar\": 2382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 960, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2528, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1511, \"group\": [342.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9793_BALBc-1_X01_Y02_1104_427\", \"ini\": 1865, \"clust\": 1787, \"rank\": 256, \"rankvar\": 1027, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 961, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 77, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2797, \"group\": [1785.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9800_BALBc-1_X01_Y02_1104_504\", \"ini\": 1864, \"clust\": 2762, \"rank\": 1607, \"rankvar\": 1039, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 962, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 78, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2798, \"group\": [2758.0, 426.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9883_BALBc-1_X01_Y02_1105_447\", \"ini\": 1863, \"clust\": 1017, \"rank\": 905, \"rankvar\": 257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 963, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 79, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2813, \"group\": [1029.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10036_BALBc-1_X01_Y02_1107_379\", \"ini\": 1862, \"clust\": 2349, \"rank\": 2154, \"rankvar\": 1775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 964, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 80, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2368, \"group\": [2348.0, 342.0, 80.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10115_BALBc-1_X01_Y02_1108_313\", \"ini\": 1861, \"clust\": 1829, \"rank\": 454, \"rankvar\": 1584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 965, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2529, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1389, \"group\": [1829.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10188_BALBc-1_X01_Y02_1109_186\", \"ini\": 1860, \"clust\": 797, \"rank\": 1132, \"rankvar\": 682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 966, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1124, \"cat-2\": \"Density: 20\", \"cat_2_index\": 153, \"group\": [800.0, 190.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10290_BALBc-1_X01_Y02_111_587\", \"ini\": 1859, \"clust\": 527, \"rank\": 2111, \"rankvar\": 2027, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 967, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1125, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1087, \"group\": [530.0, 113.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10354_BALBc-1_X01_Y02_1110_402\", \"ini\": 1858, \"clust\": 1654, \"rank\": 26, \"rankvar\": 876, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 968, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 81, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2546, \"group\": [1655.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10516_BALBc-1_X01_Y02_1112_616\", \"ini\": 1857, \"clust\": 446, \"rank\": 987, \"rankvar\": 2110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 969, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1126, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2739, \"group\": [445.0, 88.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10520_BALBc-1_X01_Y02_1112_667\", \"ini\": 1856, \"clust\": 1014, \"rank\": 690, \"rankvar\": 1322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 970, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 82, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2369, \"group\": [1015.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10730_BALBc-1_X01_Y02_1115_472\", \"ini\": 1855, \"clust\": 1870, \"rank\": 295, \"rankvar\": 4, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 971, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 83, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2814, \"group\": [1866.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10887_BALBc-1_X01_Y02_1117_527\", \"ini\": 1854, \"clust\": 2776, \"rank\": 1571, \"rankvar\": 1030, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 972, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 84, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2601, \"group\": [2774.0, 427.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10916_BALBc-1_X01_Y02_1117_796\", \"ini\": 1853, \"clust\": 413, \"rank\": 1295, \"rankvar\": 2558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 973, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1127, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1963, \"group\": [414.0, 80.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10974_BALBc-1_X01_Y02_1118_646\", \"ini\": 1852, \"clust\": 1108, \"rank\": 728, \"rankvar\": 882, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 974, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 85, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2602, \"group\": [1106.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11010_BALBc-1_X01_Y02_1119_25\", \"ini\": 1851, \"clust\": 180, \"rank\": 2692, \"rankvar\": 2511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 975, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 696, \"cat-2\": \"Density: 27\", \"cat_2_index\": 935, \"group\": [180.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11155_BALBc-1_X01_Y02_1120_361\", \"ini\": 1850, \"clust\": 1677, \"rank\": 63, \"rankvar\": 525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 976, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 86, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1964, \"group\": [1675.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11235_BALBc-1_X01_Y02_1121_237\", \"ini\": 1849, \"clust\": 1046, \"rank\": 1140, \"rankvar\": 1246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 977, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1562, \"cat-2\": \"Density: 23\", \"cat_2_index\": 393, \"group\": [1046.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11425_BALBc-1_X01_Y02_1123_682\", \"ini\": 1848, \"clust\": 652, \"rank\": 2500, \"rankvar\": 2134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 978, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1642, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2509, \"group\": [652.0, 154.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11501_BALBc-1_X01_Y02_1124_589\", \"ini\": 1847, \"clust\": 361, \"rank\": 1964, \"rankvar\": 1257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 979, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1128, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2433, \"group\": [362.0, 73.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11783_BALBc-1_X01_Y02_1128_375\", \"ini\": 1846, \"clust\": 2741, \"rank\": 1944, \"rankvar\": 1236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 980, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 87, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2227, \"group\": [2738.0, 423.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11789_BALBc-1_X01_Y02_1128_446\", \"ini\": 1845, \"clust\": 2755, \"rank\": 1123, \"rankvar\": 335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 981, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 88, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2776, \"group\": [2751.0, 425.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11818_BALBc-1_X01_Y02_1128_778\", \"ini\": 1844, \"clust\": 280, \"rank\": 1727, \"rankvar\": 1317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 982, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1129, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2302, \"group\": [284.0, 57.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11861_BALBc-1_X01_Y02_1129_519\", \"ini\": 1843, \"clust\": 1883, \"rank\": 258, \"rankvar\": 1575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 983, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1546, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2815, \"group\": [1878.0, 278.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11949_BALBc-1_X01_Y02_113_746\", \"ini\": 1842, \"clust\": 314, \"rank\": 1157, \"rankvar\": 2574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 984, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1130, \"cat-2\": \"Density: 26\", \"cat_2_index\": 784, \"group\": [314.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12248_BALBc-1_X01_Y02_1133_543\", \"ini\": 1841, \"clust\": 336, \"rank\": 2032, \"rankvar\": 1481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 985, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1547, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2547, \"group\": [338.0, 69.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12302_BALBc-1_X01_Y02_1134_424\", \"ini\": 1840, \"clust\": 2129, \"rank\": 1414, \"rankvar\": 534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 986, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2530, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2510, \"group\": [2126.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12338_BALBc-1_X01_Y02_1135_117\", \"ini\": 1839, \"clust\": 87, \"rank\": 1474, \"rankvar\": 1711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 987, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1131, \"cat-2\": \"Density: 25\", \"cat_2_index\": 648, \"group\": [88.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12370_BALBc-1_X01_Y02_1135_398\", \"ini\": 1838, \"clust\": 2116, \"rank\": 1798, \"rankvar\": 990, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 988, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2531, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2303, \"group\": [2113.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12399_BALBc-1_X01_Y02_1135_711\", \"ini\": 1837, \"clust\": 591, \"rank\": 1018, \"rankvar\": 1437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 989, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1132, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2511, \"group\": [590.0, 134.0, 36.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12520_BALBc-1_X01_Y02_1137_482\", \"ini\": 1836, \"clust\": 1789, \"rank\": 216, \"rankvar\": 822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 990, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 89, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2701, \"group\": [1787.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13075_BALBc-1_X01_Y02_1143_338\", \"ini\": 1835, \"clust\": 2174, \"rank\": 988, \"rankvar\": 1332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 991, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2532, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1234, \"group\": [2170.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13103_BALBc-1_X01_Y02_1143_664\", \"ini\": 1834, \"clust\": 1030, \"rank\": 979, \"rankvar\": 1433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 992, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 90, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2304, \"group\": [1034.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13162_BALBc-1_X01_Y02_1144_457\", \"ini\": 1833, \"clust\": 1846, \"rank\": 539, \"rankvar\": 674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 993, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 91, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2799, \"group\": [1843.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13164_BALBc-1_X01_Y02_1144_469\", \"ini\": 1832, \"clust\": 1359, \"rank\": 1034, \"rankvar\": 247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 994, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 92, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2702, \"group\": [1360.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13317_BALBc-1_X01_Y02_1146_638\", \"ini\": 1831, \"clust\": 1047, \"rank\": 1179, \"rankvar\": 1561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 995, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 93, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2305, \"group\": [1047.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13467_BALBc-1_X01_Y02_1148_565\", \"ini\": 1830, \"clust\": 1807, \"rank\": 169, \"rankvar\": 183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 996, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1133, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2434, \"group\": [1804.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13517_BALBc-1_X01_Y02_1149_362\", \"ini\": 1829, \"clust\": 689, \"rank\": 2610, \"rankvar\": 2782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 997, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 94, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1653, \"group\": [692.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13825_BALBc-1_X01_Y02_1152_206\", \"ini\": 1828, \"clust\": 889, \"rank\": 523, \"rankvar\": 1856, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 998, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2533, \"cat-2\": \"Density: 23\", \"cat_2_index\": 394, \"group\": [892.0, 204.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14075_BALBc-1_X01_Y02_1155_606\", \"ini\": 1827, \"clust\": 378, \"rank\": 2365, \"rankvar\": 2551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 999, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1134, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2228, \"group\": [376.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14139_BALBc-1_X01_Y02_1156_505\", \"ini\": 1826, \"clust\": 2571, \"rank\": 1843, \"rankvar\": 1234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1000, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1548, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2603, \"group\": [2568.0, 391.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14194_BALBc-1_X01_Y02_1157_257\", \"ini\": 1825, \"clust\": 893, \"rank\": 620, \"rankvar\": 1950, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1001, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1135, \"cat-2\": \"Density: 23\", \"cat_2_index\": 395, \"group\": [893.0, 205.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14333_BALBc-1_X01_Y02_1158_98\", \"ini\": 1824, \"clust\": 792, \"rank\": 1144, \"rankvar\": 328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1002, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1136, \"cat-2\": \"Density: 22\", \"cat_2_index\": 282, \"group\": [793.0, 188.0, 49.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14461_BALBc-1_X01_Y02_116_804\", \"ini\": 1823, \"clust\": 563, \"rank\": 2146, \"rankvar\": 1399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1003, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1137, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1654, \"group\": [567.0, 127.0, 34.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14529_BALBc-1_X01_Y02_1160_70\", \"ini\": 1822, \"clust\": 529, \"rank\": 1696, \"rankvar\": 1536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1004, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1956, \"cat-2\": \"Density: 23\", \"cat_2_index\": 396, \"group\": [529.0, 112.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14765_BALBc-1_X01_Y02_1163_363\", \"ini\": 1821, \"clust\": 2499, \"rank\": 1753, \"rankvar\": 1097, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1005, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2534, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1390, \"group\": [2497.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14775_BALBc-1_X01_Y02_1163_470\", \"ini\": 1820, \"clust\": 1326, \"rank\": 586, \"rankvar\": 510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1006, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1957, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2548, \"group\": [1325.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14940_BALBc-1_X01_Y02_1165_431\", \"ini\": 1819, \"clust\": 1670, \"rank\": 92, \"rankvar\": 511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1007, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1643, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2549, \"group\": [1668.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14952_BALBc-1_X01_Y02_1165_653\", \"ini\": 1818, \"clust\": 1459, \"rank\": 85, \"rankvar\": 909, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1008, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1138, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2229, \"group\": [1459.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15044_BALBc-1_X01_Y02_1166_715\", \"ini\": 1817, \"clust\": 386, \"rank\": 2664, \"rankvar\": 2813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1009, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1139, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2230, \"group\": [384.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15252_BALBc-1_X01_Y02_1169_690\", \"ini\": 1816, \"clust\": 1194, \"rank\": 405, \"rankvar\": 114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1010, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1140, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2306, \"group\": [1196.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15308_BALBc-1_X01_Y02_117_556\", \"ini\": 1815, \"clust\": 1435, \"rank\": 382, \"rankvar\": 1674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1011, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 95, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1391, \"group\": [1434.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15434_BALBc-1_X01_Y02_1171_25\", \"ini\": 1814, \"clust\": 2449, \"rank\": 2271, \"rankvar\": 1412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1012, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1958, \"cat-2\": \"Density: 27\", \"cat_2_index\": 936, \"group\": [2449.0, 367.0, 87.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15469_BALBc-1_X01_Y02_1171_563\", \"ini\": 1813, \"clust\": 313, \"rank\": 1891, \"rankvar\": 2326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1013, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1745, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2231, \"group\": [323.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15536_BALBc-1_X01_Y02_1172_623\", \"ini\": 1812, \"clust\": 611, \"rank\": 1693, \"rankvar\": 2488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1014, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1141, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2067, \"group\": [614.0, 141.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15847_BALBc-1_X01_Y02_1176_597\", \"ini\": 1811, \"clust\": 534, \"rank\": 2332, \"rankvar\": 2430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1015, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1746, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1965, \"group\": [537.0, 116.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15894_BALBc-1_X01_Y02_1177_234\", \"ini\": 1810, \"clust\": 2617, \"rank\": 2036, \"rankvar\": 1398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1016, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1142, \"cat-2\": \"Density: 22\", \"cat_2_index\": 283, \"group\": [2614.0, 399.0, 96.0, 25.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15978_BALBc-1_X01_Y02_1178_306\", \"ini\": 1809, \"clust\": 1775, \"rank\": 465, \"rankvar\": 159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1017, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1143, \"cat-2\": \"Density: 21\", \"cat_2_index\": 203, \"group\": [1773.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15996_BALBc-1_X01_Y02_1178_501\", \"ini\": 1808, \"clust\": 1873, \"rank\": 132, \"rankvar\": 458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1018, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1549, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2435, \"group\": [1871.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16362_BALBc-1_X01_Y02_1182_417\", \"ini\": 1807, \"clust\": 701, \"rank\": 2703, \"rankvar\": 2478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1019, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1644, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2307, \"group\": [701.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16367_BALBc-1_X01_Y02_1182_448\", \"ini\": 1806, \"clust\": 704, \"rank\": 2746, \"rankvar\": 2681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1020, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1645, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2436, \"group\": [704.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16640_BALBc-1_X01_Y02_1185_889\", \"ini\": 1805, \"clust\": 291, \"rank\": 2238, \"rankvar\": 2565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1021, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1144, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1858, \"group\": [292.0, 61.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16730_BALBc-1_X01_Y02_1187_385\", \"ini\": 1804, \"clust\": 281, \"rank\": 1752, \"rankvar\": 1208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1022, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2535, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1764, \"group\": [283.0, 57.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17035_BALBc-1_X01_Y02_1190_493\", \"ini\": 1803, \"clust\": 755, \"rank\": 1575, \"rankvar\": 848, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1023, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1959, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2232, \"group\": [756.0, 172.0, 44.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17207_BALBc-1_X01_Y02_1192_761\", \"ini\": 1802, \"clust\": 871, \"rank\": 1002, \"rankvar\": 1388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1024, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1145, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2370, \"group\": [872.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17322_BALBc-1_X01_Y02_1194_325\", \"ini\": 1801, \"clust\": 1281, \"rank\": 332, \"rankvar\": 989, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1025, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2293, \"cat-2\": \"Density: 24\", \"cat_2_index\": 503, \"group\": [1280.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17680_BALBc-1_X01_Y02_1199_122\", \"ini\": 1800, \"clust\": 1751, \"rank\": 103, \"rankvar\": 370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1026, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1146, \"cat-2\": \"Density: 20\", \"cat_2_index\": 154, \"group\": [1752.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17793_BALBc-1_X01_Y02_12_655\", \"ini\": 1799, \"clust\": 2186, \"rank\": 1271, \"rankvar\": 1406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1027, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 96, \"cat-2\": \"Density: 14\", \"cat_2_index\": 29, \"group\": [2184.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17839_BALBc-1_X01_Y02_120_140\", \"ini\": 1798, \"clust\": 204, \"rank\": 1588, \"rankvar\": 2305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1028, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1147, \"cat-2\": \"Density: 26\", \"cat_2_index\": 785, \"group\": [205.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17873_BALBc-1_X01_Y02_120_509\", \"ini\": 1797, \"clust\": 2628, \"rank\": 2361, \"rankvar\": 1523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1029, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 97, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1235, \"group\": [2625.0, 404.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17954_BALBc-1_X01_Y02_1200_546\", \"ini\": 1796, \"clust\": 630, \"rank\": 2728, \"rankvar\": 2617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1030, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1550, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1655, \"group\": [629.0, 147.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18320_BALBc-1_X01_Y02_1204_93\", \"ini\": 1795, \"clust\": 213, \"rank\": 1523, \"rankvar\": 1641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1031, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 98, \"cat-2\": \"Density: 22\", \"cat_2_index\": 284, \"group\": [214.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18357_BALBc-1_X01_Y02_1205_419\", \"ini\": 1794, \"clust\": 1320, \"rank\": 416, \"rankvar\": 1632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1032, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1646, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2150, \"group\": [1318.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18530_BALBc-1_X01_Y02_1207_517\", \"ini\": 1793, \"clust\": 388, \"rank\": 2050, \"rankvar\": 2331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1033, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1148, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1859, \"group\": [387.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18940_BALBc-1_X01_Y02_1212_14\", \"ini\": 1792, \"clust\": 1959, \"rank\": 2192, \"rankvar\": 1820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1034, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1960, \"cat-2\": \"Density: 26\", \"cat_2_index\": 786, \"group\": [1966.0, 303.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19125_BALBc-1_X01_Y02_1214_642\", \"ini\": 1791, \"clust\": 2492, \"rank\": 2393, \"rankvar\": 2703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1035, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1149, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2068, \"group\": [2490.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19244_BALBc-1_X01_Y02_1216_259\", \"ini\": 1790, \"clust\": 1200, \"rank\": 84, \"rankvar\": 680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1036, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1150, \"cat-2\": \"Density: 19\", \"cat_2_index\": 119, \"group\": [1204.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19318_BALBc-1_X01_Y02_1217_339\", \"ini\": 1789, \"clust\": 1644, \"rank\": 344, \"rankvar\": 34, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1037, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2294, \"cat-2\": \"Density: 25\", \"cat_2_index\": 649, \"group\": [1645.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19577_BALBc-1_X01_Y02_122_855\", \"ini\": 1788, \"clust\": 2808, \"rank\": 1969, \"rankvar\": 1681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1038, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2295, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1236, \"group\": [2811.0, 435.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19630_BALBc-1_X01_Y02_1220_488\", \"ini\": 1787, \"clust\": 757, \"rank\": 348, \"rankvar\": 1697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1039, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1151, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2151, \"group\": [758.0, 173.0, 44.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19649_BALBc-1_X01_Y02_1220_756\", \"ini\": 1786, \"clust\": 2587, \"rank\": 1324, \"rankvar\": 1892, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1040, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1647, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2308, \"group\": [2585.0, 393.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19712_BALBc-1_X01_Y02_1221_558\", \"ini\": 1785, \"clust\": 2480, \"rank\": 1938, \"rankvar\": 2726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1041, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1152, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1237, \"group\": [2478.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19804_BALBc-1_X01_Y02_1222_695\", \"ini\": 1784, \"clust\": 621, \"rank\": 2631, \"rankvar\": 2546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1042, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1153, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2371, \"group\": [622.0, 146.0, 38.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19893_BALBc-1_X01_Y02_1223_804\", \"ini\": 1783, \"clust\": 315, \"rank\": 647, \"rankvar\": 2469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1043, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1154, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2233, \"group\": [315.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19976_BALBc-1_X01_Y02_1224_87\", \"ini\": 1782, \"clust\": 618, \"rank\": 2026, \"rankvar\": 2277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1044, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1155, \"cat-2\": \"Density: 24\", \"cat_2_index\": 504, \"group\": [617.0, 142.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20108_BALBc-1_X01_Y02_1226_52\", \"ini\": 1781, \"clust\": 2598, \"rank\": 1476, \"rankvar\": 1577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1045, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1579, \"cat-2\": \"Density: 24\", \"cat_2_index\": 505, \"group\": [2597.0, 394.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20419_BALBc-1_X01_Y02_123_829\", \"ini\": 1780, \"clust\": 1482, \"rank\": 110, \"rankvar\": 976, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1046, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1156, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1512, \"group\": [1484.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20540_BALBc-1_X01_Y02_1231_399\", \"ini\": 1779, \"clust\": 1083, \"rank\": 1445, \"rankvar\": 1290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1047, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1157, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1656, \"group\": [1082.0, 230.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20591_BALBc-1_X01_Y02_1231_893\", \"ini\": 1778, \"clust\": 272, \"rank\": 921, \"rankvar\": 946, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1048, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1158, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1860, \"group\": [273.0, 55.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21204_BALBc-1_X01_Y02_124_109\", \"ini\": 1777, \"clust\": 636, \"rank\": 2630, \"rankvar\": 2554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1049, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1159, \"cat-2\": \"Density: 27\", \"cat_2_index\": 937, \"group\": [637.0, 150.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21575_BALBc-1_X01_Y02_1244_166\", \"ini\": 1776, \"clust\": 2517, \"rank\": 1430, \"rankvar\": 1106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1050, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2536, \"cat-2\": \"Density: 22\", \"cat_2_index\": 285, \"group\": [2514.0, 382.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21957_BALBc-1_X01_Y02_1249_556\", \"ini\": 1775, \"clust\": 536, \"rank\": 2590, \"rankvar\": 2778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1051, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1160, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1088, \"group\": [536.0, 116.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21977_BALBc-1_X01_Y02_1249_787\", \"ini\": 1774, \"clust\": 1400, \"rank\": 1127, \"rankvar\": 1500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1052, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1161, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2152, \"group\": [1406.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22035_BALBc-1_X01_Y02_125_534\", \"ini\": 1773, \"clust\": 2512, \"rank\": 1336, \"rankvar\": 940, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1053, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 99, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1392, \"group\": [2508.0, 381.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22253_BALBc-1_X01_Y02_1252_344\", \"ini\": 1772, \"clust\": 1034, \"rank\": 1361, \"rankvar\": 774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1054, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2296, \"cat-2\": \"Density: 23\", \"cat_2_index\": 397, \"group\": [1035.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22740_BALBc-1_X01_Y02_1259_25\", \"ini\": 1771, \"clust\": 2538, \"rank\": 1830, \"rankvar\": 1281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1055, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1961, \"cat-2\": \"Density: 26\", \"cat_2_index\": 787, \"group\": [2535.0, 385.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22891_BALBc-1_X01_Y02_1260_403\", \"ini\": 1770, \"clust\": 317, \"rank\": 1214, \"rankvar\": 1768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1056, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1162, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1513, \"group\": [317.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23039_BALBc-1_X01_Y02_1262_452\", \"ini\": 1769, \"clust\": 1205, \"rank\": 166, \"rankvar\": 692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1057, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1163, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1238, \"group\": [1205.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23057_BALBc-1_X01_Y02_1262_678\", \"ini\": 1768, \"clust\": 1290, \"rank\": 650, \"rankvar\": 312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1058, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1164, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2069, \"group\": [1293.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23972_BALBc-1_X01_Y02_1274_408\", \"ini\": 1767, \"clust\": 1455, \"rank\": 220, \"rankvar\": 426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1059, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 100, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1393, \"group\": [1456.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23974_BALBc-1_X01_Y02_1274_423\", \"ini\": 1766, \"clust\": 432, \"rank\": 1982, \"rankvar\": 1570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1060, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1165, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1514, \"group\": [430.0, 83.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24160_BALBc-1_X01_Y02_1277_153\", \"ini\": 1765, \"clust\": 1904, \"rank\": 1206, \"rankvar\": 572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1061, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2537, \"cat-2\": \"Density: 21\", \"cat_2_index\": 204, \"group\": [1902.0, 291.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24404_BALBc-1_X01_Y02_128_478\", \"ini\": 1764, \"clust\": 1502, \"rank\": 510, \"rankvar\": 5, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1062, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2450, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1089, \"group\": [1501.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24468_BALBc-1_X01_Y02_1280_260\", \"ini\": 1763, \"clust\": 2269, \"rank\": 744, \"rankvar\": 1730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1063, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2297, \"cat-2\": \"Density: 16\", \"cat_2_index\": 58, \"group\": [2264.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24628_BALBc-1_X01_Y02_1282_802\", \"ini\": 1762, \"clust\": 719, \"rank\": 2405, \"rankvar\": 2444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1064, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1166, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1861, \"group\": [719.0, 162.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25243_BALBc-1_X01_Y02_1290_386\", \"ini\": 1761, \"clust\": 441, \"rank\": 1363, \"rankvar\": 937, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1065, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1167, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1239, \"group\": [441.0, 87.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25273_BALBc-1_X01_Y02_1290_702\", \"ini\": 1760, \"clust\": 2375, \"rank\": 2714, \"rankvar\": 2660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1066, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2298, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1966, \"group\": [2372.0, 349.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25852_BALBc-1_X01_Y02_1298_50\", \"ini\": 1759, \"clust\": 1616, \"rank\": 349, \"rankvar\": 109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1067, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1580, \"cat-2\": \"Density: 24\", \"cat_2_index\": 506, \"group\": [1639.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25924_BALBc-1_X01_Y02_1299_448\", \"ini\": 1758, \"clust\": 1627, \"rank\": 57, \"rankvar\": 285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1068, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1648, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1394, \"group\": [1626.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26183_BALBc-1_X01_Y02_1300_80\", \"ini\": 1757, \"clust\": 1928, \"rank\": 1604, \"rankvar\": 1785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1069, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2538, \"cat-2\": \"Density: 23\", \"cat_2_index\": 398, \"group\": [1934.0, 297.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26216_BALBc-1_X01_Y02_1301_40\", \"ini\": 1756, \"clust\": 1114, \"rank\": 913, \"rankvar\": 215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1070, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1962, \"cat-2\": \"Density: 25\", \"cat_2_index\": 650, \"group\": [1113.0, 235.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26286_BALBc-1_X01_Y02_1302_362\", \"ini\": 1755, \"clust\": 683, \"rank\": 2693, \"rankvar\": 2557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1071, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1168, \"cat-2\": \"Density: 25\", \"cat_2_index\": 651, \"group\": [683.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26422_BALBc-1_X01_Y02_1304_482\", \"ini\": 1754, \"clust\": 1337, \"rank\": 467, \"rankvar\": 809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1072, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1169, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1090, \"group\": [1337.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26472_BALBc-1_X01_Y02_1305_154\", \"ini\": 1753, \"clust\": 1462, \"rank\": 19, \"rankvar\": 1116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1073, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2539, \"cat-2\": \"Density: 17\", \"cat_2_index\": 76, \"group\": [1463.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26543_BALBc-1_X01_Y02_1306_303\", \"ini\": 1752, \"clust\": 518, \"rank\": 2337, \"rankvar\": 2148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1074, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1170, \"cat-2\": \"Density: 22\", \"cat_2_index\": 286, \"group\": [517.0, 109.0, 29.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26628_BALBc-1_X01_Y02_1307_628\", \"ini\": 1751, \"clust\": 2264, \"rank\": 1068, \"rankvar\": 2080, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1075, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1171, \"cat-2\": \"Density: 26\", \"cat_2_index\": 788, \"group\": [2259.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26791_BALBc-1_X01_Y02_1309_847\", \"ini\": 1750, \"clust\": 1625, \"rank\": 59, \"rankvar\": 158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1076, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1172, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1967, \"group\": [1622.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26808_BALBc-1_X01_Y02_131_13\", \"ini\": 1749, \"clust\": 407, \"rank\": 2425, \"rankvar\": 1975, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1077, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1173, \"cat-2\": \"Density: 25\", \"cat_2_index\": 652, \"group\": [406.0, 76.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26858_BALBc-1_X01_Y02_131_710\", \"ini\": 1748, \"clust\": 2516, \"rank\": 1498, \"rankvar\": 1787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1078, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1174, \"cat-2\": \"Density: 25\", \"cat_2_index\": 653, \"group\": [2516.0, 382.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26907_BALBc-1_X01_Y02_1310_424\", \"ini\": 1747, \"clust\": 991, \"rank\": 831, \"rankvar\": 1480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1079, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 831, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1657, \"group\": [991.0, 222.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27339_BALBc-1_X01_Y02_1316_272\", \"ini\": 1746, \"clust\": 2580, \"rank\": 1528, \"rankvar\": 745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1080, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2540, \"cat-2\": \"Density: 16\", \"cat_2_index\": 59, \"group\": [2578.0, 392.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27376_BALBc-1_X01_Y02_1316_760\", \"ini\": 1745, \"clust\": 1052, \"rank\": 1305, \"rankvar\": 1409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1081, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1175, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1862, \"group\": [1052.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27712_BALBc-1_X01_Y02_1320_379\", \"ini\": 1744, \"clust\": 964, \"rank\": 1164, \"rankvar\": 516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1082, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1649, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1395, \"group\": [967.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27787_BALBc-1_X01_Y02_1321_46\", \"ini\": 1743, \"clust\": 2415, \"rank\": 2298, \"rankvar\": 1423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1083, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2451, \"cat-2\": \"Density: 25\", \"cat_2_index\": 654, \"group\": [2412.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28104_BALBc-1_X01_Y02_1325_686\", \"ini\": 1742, \"clust\": 524, \"rank\": 2701, \"rankvar\": 2707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1084, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1176, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1515, \"group\": [523.0, 110.0, 29.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28119_BALBc-1_X01_Y02_1325_869\", \"ini\": 1741, \"clust\": 1570, \"rank\": 397, \"rankvar\": 1043, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1085, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1177, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1516, \"group\": [1570.0, 274.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28171_BALBc-1_X01_Y02_1326_556\", \"ini\": 1740, \"clust\": 1238, \"rank\": 993, \"rankvar\": 740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1086, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1178, \"cat-2\": \"Density: 21\", \"cat_2_index\": 205, \"group\": [1239.0, 256.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28403_BALBc-1_X01_Y02_1329_340\", \"ini\": 1739, \"clust\": 2527, \"rank\": 2042, \"rankvar\": 1876, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1087, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2541, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1091, \"group\": [2524.0, 384.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28439_BALBc-1_X01_Y02_1329_667\", \"ini\": 1738, \"clust\": 311, \"rank\": 2045, \"rankvar\": 2606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1088, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1179, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1517, \"group\": [311.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28793_BALBc-1_X01_Y02_1333_435\", \"ini\": 1737, \"clust\": 2519, \"rank\": 1290, \"rankvar\": 759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1089, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 832, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1863, \"group\": [2517.0, 383.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28907_BALBc-1_X01_Y02_1334_958\", \"ini\": 1736, \"clust\": 1305, \"rank\": 902, \"rankvar\": 1487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1090, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1180, \"cat-2\": \"Density: 24\", \"cat_2_index\": 507, \"group\": [1308.0, 259.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29029_BALBc-1_X01_Y02_1337_148\", \"ini\": 1735, \"clust\": 2677, \"rank\": 2123, \"rankvar\": 1110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1091, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2542, \"cat-2\": \"Density: 17\", \"cat_2_index\": 77, \"group\": [2675.0, 412.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29253_BALBc-1_X01_Y02_1340_880\", \"ini\": 1734, \"clust\": 308, \"rank\": 1815, \"rankvar\": 2372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1092, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1181, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1864, \"group\": [308.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29328_BALBc-1_X01_Y02_135_526\", \"ini\": 1733, \"clust\": 1156, \"rank\": 1211, \"rankvar\": 569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1093, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 101, \"cat-2\": \"Density: 26\", \"cat_2_index\": 789, \"group\": [1157.0, 243.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29539_BALBc-1_X01_Y02_138_561\", \"ini\": 1732, \"clust\": 2296, \"rank\": 1213, \"rankvar\": 1701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1094, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 102, \"cat-2\": \"Density: 27\", \"cat_2_index\": 938, \"group\": [2294.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29570_BALBc-1_X01_Y02_138_885\", \"ini\": 1731, \"clust\": 1487, \"rank\": 236, \"rankvar\": 526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1095, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2299, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1240, \"group\": [1486.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29751_BALBc-1_X01_Y02_140_575\", \"ini\": 1730, \"clust\": 1964, \"rank\": 2313, \"rankvar\": 2201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1096, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1182, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1092, \"group\": [1961.0, 303.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29777_BALBc-1_X01_Y02_140_975\", \"ini\": 1729, \"clust\": 2502, \"rank\": 1463, \"rankvar\": 1980, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1097, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2300, \"cat-2\": \"Density: 18\", \"cat_2_index\": 95, \"group\": [2501.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29799_BALBc-1_X01_Y02_141_323\", \"ini\": 1728, \"clust\": 155, \"rank\": 2106, \"rankvar\": 817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1098, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 697, \"cat-2\": \"Density: 27\", \"cat_2_index\": 939, \"group\": [156.0, 34.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29956_BALBc-1_X01_Y02_143_444\", \"ini\": 1727, \"clust\": 1414, \"rank\": 352, \"rankvar\": 1062, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1099, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2452, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1518, \"group\": [1416.0, 263.0, 65.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30085_BALBc-1_X01_Y02_145_273\", \"ini\": 1726, \"clust\": 1591, \"rank\": 368, \"rankvar\": 1779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1100, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2239, \"cat-2\": \"Density: 25\", \"cat_2_index\": 655, \"group\": [1591.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30088_BALBc-1_X01_Y02_145_290\", \"ini\": 1725, \"clust\": 1287, \"rank\": 629, \"rankvar\": 600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1101, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2453, \"cat-2\": \"Density: 24\", \"cat_2_index\": 508, \"group\": [1288.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30181_BALBc-1_X01_Y02_146_484\", \"ini\": 1724, \"clust\": 1983, \"rank\": 1708, \"rankvar\": 1774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1102, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1963, \"cat-2\": \"Density: 26\", \"cat_2_index\": 790, \"group\": [1980.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30212_BALBc-1_X01_Y02_146_853\", \"ini\": 1723, \"clust\": 79, \"rank\": 2068, \"rankvar\": 1979, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1103, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 103, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1658, \"group\": [81.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30226_BALBc-1_X01_Y02_147_121\", \"ini\": 1722, \"clust\": 1113, \"rank\": 1190, \"rankvar\": 638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1104, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1183, \"cat-2\": \"Density: 22\", \"cat_2_index\": 287, \"group\": [1115.0, 235.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30323_BALBc-1_X01_Y02_148_511\", \"ini\": 1721, \"clust\": 2106, \"rank\": 2300, \"rankvar\": 2257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1105, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 104, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1241, \"group\": [2104.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30392_BALBc-1_X01_Y02_149_423\", \"ini\": 1720, \"clust\": 898, \"rank\": 1701, \"rankvar\": 2113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1106, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1650, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1396, \"group\": [898.0, 206.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30672_BALBc-1_X01_Y02_152_19\", \"ini\": 1719, \"clust\": 1275, \"rank\": 434, \"rankvar\": 322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1107, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1184, \"cat-2\": \"Density: 27\", \"cat_2_index\": 940, \"group\": [1275.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31029_BALBc-1_X01_Y02_156_815\", \"ini\": 1718, \"clust\": 642, \"rank\": 2794, \"rankvar\": 2624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1108, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2301, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1519, \"group\": [642.0, 151.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31048_BALBc-1_X01_Y02_156_993\", \"ini\": 1717, \"clust\": 825, \"rank\": 1015, \"rankvar\": 1853, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1109, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2543, \"cat-2\": \"Density: 13\", \"cat_2_index\": 17, \"group\": [824.0, 195.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31155_BALBc-1_X01_Y02_158_405\", \"ini\": 1716, \"clust\": 475, \"rank\": 2824, \"rankvar\": 2816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1110, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 698, \"cat-2\": \"Density: 27\", \"cat_2_index\": 941, \"group\": [473.0, 95.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31283_BALBc-1_X01_Y02_16_366\", \"ini\": 1715, \"clust\": 2467, \"rank\": 2687, \"rankvar\": 2597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1111, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1185, \"cat-2\": \"Density: 13\", \"cat_2_index\": 18, \"group\": [2467.0, 372.0, 90.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31361_BALBc-1_X01_Y02_160_197\", \"ini\": 1714, \"clust\": 1301, \"rank\": 376, \"rankvar\": 497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1112, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1186, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1093, \"group\": [1301.0, 259.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31477_BALBc-1_X01_Y02_161_787\", \"ini\": 1713, \"clust\": 1814, \"rank\": 127, \"rankvar\": 1107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1113, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1187, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1242, \"group\": [1812.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31533_BALBc-1_X01_Y02_162_623\", \"ini\": 1712, \"clust\": 2401, \"rank\": 1951, \"rankvar\": 1835, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1114, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1188, \"cat-2\": \"Density: 24\", \"cat_2_index\": 509, \"group\": [2397.0, 353.0, 83.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31548_BALBc-1_X01_Y02_162_836\", \"ini\": 1711, \"clust\": 868, \"rank\": 243, \"rankvar\": 1599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1115, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 105, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1520, \"group\": [869.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31566_BALBc-1_X01_Y02_163_150\", \"ini\": 1710, \"clust\": 78, \"rank\": 1514, \"rankvar\": 1875, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1116, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1189, \"cat-2\": \"Density: 27\", \"cat_2_index\": 942, \"group\": [82.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31622_BALBc-1_X01_Y02_163_893\", \"ini\": 1709, \"clust\": 375, \"rank\": 2400, \"rankvar\": 2332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1117, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2302, \"cat-2\": \"Density: 27\", \"cat_2_index\": 943, \"group\": [380.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31687_BALBc-1_X01_Y02_164_924\", \"ini\": 1708, \"clust\": 553, \"rank\": 1939, \"rankvar\": 2100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1118, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2303, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1243, \"group\": [555.0, 121.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31771_BALBc-1_X01_Y02_166_248\", \"ini\": 1707, \"clust\": 1522, \"rank\": 601, \"rankvar\": 327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1119, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1190, \"cat-2\": \"Density: 26\", \"cat_2_index\": 791, \"group\": [1521.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31778_BALBc-1_X01_Y02_166_382\", \"ini\": 1706, \"clust\": 1203, \"rank\": 56, \"rankvar\": 768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1120, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 699, \"cat-2\": \"Density: 24\", \"cat_2_index\": 510, \"group\": [1200.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31826_BALBc-1_X01_Y02_166_996\", \"ini\": 1705, \"clust\": 2789, \"rank\": 1675, \"rankvar\": 413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1121, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 106, \"cat-2\": \"Density: 14\", \"cat_2_index\": 30, \"group\": [2788.0, 428.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31882_BALBc-1_X01_Y02_167_871\", \"ini\": 1704, \"clust\": 1327, \"rank\": 639, \"rankvar\": 568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1122, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 107, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1521, \"group\": [1326.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32028_BALBc-1_X01_Y02_169_976\", \"ini\": 1703, \"clust\": 319, \"rank\": 1386, \"rankvar\": 1839, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1123, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2304, \"cat-2\": \"Density: 21\", \"cat_2_index\": 206, \"group\": [318.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32605_BALBc-1_X01_Y02_177_12\", \"ini\": 1702, \"clust\": 69, \"rank\": 2727, \"rankvar\": 2785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1124, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1191, \"cat-2\": \"Density: 26\", \"cat_2_index\": 792, \"group\": [68.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32781_BALBc-1_X01_Y02_179_504\", \"ini\": 1701, \"clust\": 2014, \"rank\": 2126, \"rankvar\": 2607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1125, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1964, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1397, \"group\": [2011.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32994_BALBc-1_X01_Y02_181_536\", \"ini\": 1700, \"clust\": 2588, \"rank\": 1558, \"rankvar\": 1668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1126, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 108, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1659, \"group\": [2586.0, 393.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33083_BALBc-1_X01_Y02_182_591\", \"ini\": 1699, \"clust\": 2501, \"rank\": 1864, \"rankvar\": 2390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1127, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2240, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1244, \"group\": [2502.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33098_BALBc-1_X01_Y02_182_806\", \"ini\": 1698, \"clust\": 1485, \"rank\": 42, \"rankvar\": 871, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1128, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1192, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1865, \"group\": [1482.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33178_BALBc-1_X01_Y02_183_939\", \"ini\": 1697, \"clust\": 307, \"rank\": 2397, \"rankvar\": 2696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1129, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 109, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1094, \"group\": [305.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33258_BALBc-1_X01_Y02_184_896\", \"ini\": 1696, \"clust\": 2660, \"rank\": 2134, \"rankvar\": 1123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1130, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 110, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1866, \"group\": [2659.0, 411.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33265_BALBc-1_X01_Y02_184_97\", \"ini\": 1695, \"clust\": 632, \"rank\": 2579, \"rankvar\": 1302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1131, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1651, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1245, \"group\": [633.0, 148.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33280_BALBc-1_X01_Y02_185_324\", \"ini\": 1694, \"clust\": 1141, \"rank\": 541, \"rankvar\": 1509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1132, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1193, \"cat-2\": \"Density: 26\", \"cat_2_index\": 793, \"group\": [1141.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33754_BALBc-1_X01_Y02_190_870\", \"ini\": 1693, \"clust\": 2288, \"rank\": 1678, \"rankvar\": 970, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1133, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 111, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2070, \"group\": [2289.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33990_BALBc-1_X01_Y02_193_959\", \"ini\": 1692, \"clust\": 1115, \"rank\": 989, \"rankvar\": 12, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1134, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 112, \"cat-2\": \"Density: 27\", \"cat_2_index\": 944, \"group\": [1114.0, 235.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34020_BALBc-1_X01_Y02_194_351\", \"ini\": 1691, \"clust\": 2589, \"rank\": 1713, \"rankvar\": 1766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1135, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 700, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1095, \"group\": [2591.0, 393.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34038_BALBc-1_X01_Y02_194_572\", \"ini\": 1690, \"clust\": 888, \"rank\": 1011, \"rankvar\": 839, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1136, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2544, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1522, \"group\": [889.0, 203.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34165_BALBc-1_X01_Y02_196_520\", \"ini\": 1689, \"clust\": 2054, \"rank\": 1986, \"rankvar\": 1984, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1137, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 895, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1867, \"group\": [2053.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34589_BALBc-1_X01_Y02_201_481\", \"ini\": 1688, \"clust\": 903, \"rank\": 939, \"rankvar\": 611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1138, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1965, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1246, \"group\": [901.0, 208.0, 55.0, 14.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34649_BALBc-1_X01_Y02_202_257\", \"ini\": 1687, \"clust\": 255, \"rank\": 2628, \"rankvar\": 2647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1139, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1966, \"cat-2\": \"Density: 27\", \"cat_2_index\": 945, \"group\": [259.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34718_BALBc-1_X01_Y02_203_164\", \"ini\": 1686, \"clust\": 622, \"rank\": 2684, \"rankvar\": 2600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1140, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1194, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1096, \"group\": [623.0, 146.0, 38.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34915_BALBc-1_X01_Y02_205_7\", \"ini\": 1685, \"clust\": 70, \"rank\": 2506, \"rankvar\": 2623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1141, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1195, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1097, \"group\": [69.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35085_BALBc-1_X01_Y02_207_892\", \"ini\": 1684, \"clust\": 1758, \"rank\": 162, \"rankvar\": 558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1142, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 113, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1765, \"group\": [1753.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35133_BALBc-1_X01_Y02_208_606\", \"ini\": 1683, \"clust\": 987, \"rank\": 1013, \"rankvar\": 1188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1143, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2241, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1098, \"group\": [986.0, 222.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35140_BALBc-1_X01_Y02_208_76\", \"ini\": 1682, \"clust\": 1425, \"rank\": 516, \"rankvar\": 1057, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1144, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1652, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1247, \"group\": [1425.0, 266.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35161_BALBc-1_X01_Y02_208_997\", \"ini\": 1681, \"clust\": 2522, \"rank\": 1557, \"rankvar\": 1079, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1145, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 114, \"cat-2\": \"Density: 20\", \"cat_2_index\": 155, \"group\": [2519.0, 383.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35307_BALBc-1_X01_Y02_21_950\", \"ini\": 1680, \"clust\": 742, \"rank\": 1119, \"rankvar\": 1810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1146, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1196, \"cat-2\": \"Density: 11\", \"cat_2_index\": 6, \"group\": [740.0, 164.0, 40.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35371_BALBc-1_X01_Y02_210_919\", \"ini\": 1679, \"clust\": 300, \"rank\": 1922, \"rankvar\": 2052, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1147, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 115, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1968, \"group\": [303.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35707_BALBc-1_X01_Y02_215_359\", \"ini\": 1678, \"clust\": 561, \"rank\": 1885, \"rankvar\": 2407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1148, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 701, \"cat-2\": \"Density: 25\", \"cat_2_index\": 656, \"group\": [559.0, 123.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35849_BALBc-1_X01_Y02_217_422\", \"ini\": 1677, \"clust\": 1416, \"rank\": 355, \"rankvar\": 337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1149, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 702, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1099, \"group\": [1415.0, 263.0, 65.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35964_BALBc-1_X01_Y02_218_953\", \"ini\": 1676, \"clust\": 1566, \"rank\": 688, \"rankvar\": 449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1150, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 116, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1868, \"group\": [1566.0, 274.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36019_BALBc-1_X01_Y02_219_856\", \"ini\": 1675, \"clust\": 1028, \"rank\": 204, \"rankvar\": 849, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1151, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2305, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2437, \"group\": [1027.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36350_BALBc-1_X01_Y02_223_52\", \"ini\": 1674, \"clust\": 2448, \"rank\": 1597, \"rankvar\": 1122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1152, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1197, \"cat-2\": \"Density: 26\", \"cat_2_index\": 794, \"group\": [2446.0, 365.0, 86.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36560_BALBc-1_X01_Y02_226_384\", \"ini\": 1673, \"clust\": 2071, \"rank\": 2623, \"rankvar\": 2687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1153, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 703, \"cat-2\": \"Density: 26\", \"cat_2_index\": 795, \"group\": [2067.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36605_BALBc-1_X01_Y02_226_872\", \"ini\": 1672, \"clust\": 2366, \"rank\": 2572, \"rankvar\": 1807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1154, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2306, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2234, \"group\": [2363.0, 347.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37140_BALBc-1_X01_Y02_233_273\", \"ini\": 1671, \"clust\": 1347, \"rank\": 388, \"rankvar\": 1135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1155, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1198, \"cat-2\": \"Density: 26\", \"cat_2_index\": 796, \"group\": [1345.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37170_BALBc-1_X01_Y02_233_605\", \"ini\": 1670, \"clust\": 2493, \"rank\": 2436, \"rankvar\": 2679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1156, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1199, \"cat-2\": \"Density: 27\", \"cat_2_index\": 946, \"group\": [2491.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37201_BALBc-1_X01_Y02_234_185\", \"ini\": 1669, \"clust\": 2032, \"rank\": 1972, \"rankvar\": 2655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1157, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1200, \"cat-2\": \"Density: 24\", \"cat_2_index\": 511, \"group\": [2035.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37456_BALBc-1_X01_Y02_237_70\", \"ini\": 1668, \"clust\": 654, \"rank\": 2767, \"rankvar\": 2599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1158, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 117, \"cat-2\": \"Density: 25\", \"cat_2_index\": 657, \"group\": [654.0, 154.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37475_BALBc-1_X01_Y02_237_937\", \"ini\": 1667, \"clust\": 875, \"rank\": 1232, \"rankvar\": 305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1159, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 118, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2153, \"group\": [875.0, 199.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37621_BALBc-1_X01_Y02_239_971\", \"ini\": 1666, \"clust\": 429, \"rank\": 1744, \"rankvar\": 1957, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1160, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 119, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1523, \"group\": [432.0, 83.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37749_BALBc-1_X01_Y02_240_84\", \"ini\": 1665, \"clust\": 1268, \"rank\": 616, \"rankvar\": 1434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1161, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1653, \"cat-2\": \"Density: 23\", \"cat_2_index\": 399, \"group\": [1268.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37862_BALBc-1_X01_Y02_242_444\", \"ini\": 1664, \"clust\": 2605, \"rank\": 1586, \"rankvar\": 874, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1162, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1654, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1660, \"group\": [2602.0, 396.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37892_BALBc-1_X01_Y02_242_898\", \"ini\": 1663, \"clust\": 801, \"rank\": 1572, \"rankvar\": 1573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1163, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 120, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1969, \"group\": [801.0, 191.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37950_BALBc-1_X01_Y02_243_786\", \"ini\": 1662, \"clust\": 2107, \"rank\": 1790, \"rankvar\": 1537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1164, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 833, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2071, \"group\": [2105.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38019_BALBc-1_X01_Y02_244_504\", \"ini\": 1661, \"clust\": 373, \"rank\": 2384, \"rankvar\": 2392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1165, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 896, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1398, \"group\": [371.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38163_BALBc-1_X01_Y02_246_349\", \"ini\": 1660, \"clust\": 183, \"rank\": 2440, \"rankvar\": 2573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1166, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1201, \"cat-2\": \"Density: 23\", \"cat_2_index\": 400, \"group\": [183.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38833_BALBc-1_X01_Y02_254_406\", \"ini\": 1659, \"clust\": 1948, \"rank\": 1792, \"rankvar\": 1462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1167, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 121, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1766, \"group\": [1947.0, 301.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38864_BALBc-1_X01_Y02_254_818\", \"ini\": 1658, \"clust\": 2564, \"rank\": 2082, \"rankvar\": 1137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1168, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1202, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1970, \"group\": [2565.0, 390.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38921_BALBc-1_X01_Y02_255_579\", \"ini\": 1657, \"clust\": 1878, \"rank\": 384, \"rankvar\": 1520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1169, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2545, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1399, \"group\": [1876.0, 278.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39097_BALBc-1_X01_Y02_257_981\", \"ini\": 1656, \"clust\": 2543, \"rank\": 1491, \"rankvar\": 1080, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1170, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 122, \"cat-2\": \"Density: 27\", \"cat_2_index\": 947, \"group\": [2540.0, 387.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39159_BALBc-1_X01_Y02_258_932\", \"ini\": 1655, \"clust\": 2365, \"rank\": 2512, \"rankvar\": 1496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1171, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 123, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2309, \"group\": [2365.0, 347.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39206_BALBc-1_X01_Y02_259_497\", \"ini\": 1654, \"clust\": 2613, \"rank\": 1997, \"rankvar\": 1849, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1172, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 897, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1971, \"group\": [2611.0, 397.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39295_BALBc-1_X01_Y02_26_739\", \"ini\": 1653, \"clust\": 2381, \"rank\": 2747, \"rankvar\": 2799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1173, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1747, \"cat-2\": \"Density: 17\", \"cat_2_index\": 78, \"group\": [2376.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39359_BALBc-1_X01_Y02_260_604\", \"ini\": 1652, \"clust\": 2137, \"rank\": 1821, \"rankvar\": 2074, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1174, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1203, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1400, \"group\": [2135.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39370_BALBc-1_X01_Y02_260_753\", \"ini\": 1651, \"clust\": 684, \"rank\": 2771, \"rankvar\": 2719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1175, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 834, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1972, \"group\": [684.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39467_BALBc-1_X01_Y02_261_915\", \"ini\": 1650, \"clust\": 1612, \"rank\": 87, \"rankvar\": 171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1176, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 124, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2310, \"group\": [1611.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39512_BALBc-1_X01_Y02_262_462\", \"ini\": 1649, \"clust\": 1992, \"rank\": 1602, \"rankvar\": 2190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1177, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1967, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1869, \"group\": [1991.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39541_BALBc-1_X01_Y02_262_944\", \"ini\": 1648, \"clust\": 1255, \"rank\": 479, \"rankvar\": 250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1178, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 125, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2154, \"group\": [1254.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39556_BALBc-1_X01_Y02_263_219\", \"ini\": 1647, \"clust\": 412, \"rank\": 2504, \"rankvar\": 2627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1179, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1204, \"cat-2\": \"Density: 24\", \"cat_2_index\": 512, \"group\": [410.0, 77.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39656_BALBc-1_X01_Y02_264_54\", \"ini\": 1646, \"clust\": 2356, \"rank\": 2755, \"rankvar\": 2664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1180, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2307, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1248, \"group\": [2353.0, 344.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39742_BALBc-1_X01_Y02_265_717\", \"ini\": 1645, \"clust\": 2713, \"rank\": 2008, \"rankvar\": 1502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1181, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 835, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1524, \"group\": [2710.0, 416.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39744_BALBc-1_X01_Y02_265_773\", \"ini\": 1644, \"clust\": 933, \"rank\": 855, \"rankvar\": 255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1182, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 836, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2072, \"group\": [934.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39786_BALBc-1_X01_Y02_266_282\", \"ini\": 1643, \"clust\": 1254, \"rank\": 504, \"rankvar\": 440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1205, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1100, \"group\": [1258.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39838_BALBc-1_X01_Y02_266_848\", \"ini\": 1642, \"clust\": 1634, \"rank\": 303, \"rankvar\": 26, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1184, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2308, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2311, \"group\": [1634.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39873_BALBc-1_X01_Y02_267_383\", \"ini\": 1641, \"clust\": 1595, \"rank\": 561, \"rankvar\": 124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1185, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 898, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1101, \"group\": [1596.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39968_BALBc-1_X01_Y02_268_561\", \"ini\": 1640, \"clust\": 2532, \"rank\": 2145, \"rankvar\": 2348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1186, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2546, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1870, \"group\": [2537.0, 385.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40006_BALBc-1_X01_Y02_268_984\", \"ini\": 1639, \"clust\": 2816, \"rank\": 1534, \"rankvar\": 873, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1187, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 126, \"cat-2\": \"Density: 27\", \"cat_2_index\": 948, \"group\": [2817.0, 435.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40052_BALBc-1_X01_Y02_269_644\", \"ini\": 1638, \"clust\": 2526, \"rank\": 2248, \"rankvar\": 2395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1188, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1206, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1525, \"group\": [2526.0, 384.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40139_BALBc-1_X01_Y02_27_826\", \"ini\": 1637, \"clust\": 1786, \"rank\": 184, \"rankvar\": 1287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1189, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1748, \"cat-2\": \"Density: 20\", \"cat_2_index\": 156, \"group\": [1782.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40204_BALBc-1_X01_Y02_270_792\", \"ini\": 1636, \"clust\": 2358, \"rank\": 2603, \"rankvar\": 1396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1190, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 899, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2073, \"group\": [2356.0, 345.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40333_BALBc-1_X01_Y02_272_580\", \"ini\": 1635, \"clust\": 2782, \"rank\": 1716, \"rankvar\": 1554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1191, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 127, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1249, \"group\": [2780.0, 427.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40421_BALBc-1_X01_Y02_273_871\", \"ini\": 1634, \"clust\": 1827, \"rank\": 611, \"rankvar\": 1003, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1192, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 128, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2438, \"group\": [1824.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40533_BALBc-1_X01_Y02_275_478\", \"ini\": 1633, \"clust\": 357, \"rank\": 1901, \"rankvar\": 1764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1193, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 129, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1661, \"group\": [404.0, 75.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40559_BALBc-1_X01_Y02_275_815\", \"ini\": 1632, \"clust\": 1580, \"rank\": 381, \"rankvar\": 571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1194, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 130, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2074, \"group\": [1581.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40761_BALBc-1_X01_Y02_278_453\", \"ini\": 1631, \"clust\": 1955, \"rank\": 1479, \"rankvar\": 1969, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1195, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 131, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1526, \"group\": [1953.0, 303.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41007_BALBc-1_X01_Y02_280_883\", \"ini\": 1630, \"clust\": 2654, \"rank\": 2535, \"rankvar\": 1525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1196, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 132, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2439, \"group\": [2655.0, 409.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41013_BALBc-1_X01_Y02_280_967\", \"ini\": 1629, \"clust\": 1874, \"rank\": 83, \"rankvar\": 302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1197, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 133, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1527, \"group\": [1869.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41049_BALBc-1_X01_Y02_281_533\", \"ini\": 1628, \"clust\": 1259, \"rank\": 873, \"rankvar\": 659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1198, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 900, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1973, \"group\": [1260.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41198_BALBc-1_X01_Y02_283_337\", \"ini\": 1627, \"clust\": 82, \"rank\": 1036, \"rankvar\": 954, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1199, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1207, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1102, \"group\": [83.0, 20.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41290_BALBc-1_X01_Y02_284_545\", \"ini\": 1626, \"clust\": 718, \"rank\": 2174, \"rankvar\": 1822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1200, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 134, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1974, \"group\": [721.0, 162.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41467_BALBc-1_X01_Y02_286_916\", \"ini\": 1625, \"clust\": 2746, \"rank\": 2054, \"rankvar\": 1991, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1201, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 135, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2372, \"group\": [2743.0, 423.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41763_BALBc-1_X01_Y02_29_936\", \"ini\": 1624, \"clust\": 668, \"rank\": 2760, \"rankvar\": 2533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1202, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1749, \"cat-2\": \"Density: 12\", \"cat_2_index\": 7, \"group\": [666.0, 156.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41809_BALBc-1_X01_Y02_290_713\", \"ini\": 1623, \"clust\": 799, \"rank\": 1603, \"rankvar\": 1336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1203, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 837, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1975, \"group\": [799.0, 190.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41901_BALBc-1_X01_Y02_291_852\", \"ini\": 1622, \"clust\": 2692, \"rank\": 2257, \"rankvar\": 1351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1204, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 136, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2155, \"group\": [2692.0, 414.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41931_BALBc-1_X01_Y02_292_367\", \"ini\": 1621, \"clust\": 650, \"rank\": 2534, \"rankvar\": 1850, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1205, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 901, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1401, \"group\": [649.0, 154.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41979_BALBc-1_X01_Y02_292_991\", \"ini\": 1620, \"clust\": 2134, \"rank\": 1659, \"rankvar\": 1105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1206, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 137, \"cat-2\": \"Density: 25\", \"cat_2_index\": 658, \"group\": [2133.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42051_BALBc-1_X01_Y02_293_825\", \"ini\": 1619, \"clust\": 2814, \"rank\": 1899, \"rankvar\": 1356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1207, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 138, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2312, \"group\": [2812.0, 435.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42197_BALBc-1_X01_Y02_296_1001\", \"ini\": 1618, \"clust\": 1190, \"rank\": 442, \"rankvar\": 702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1208, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 139, \"cat-2\": \"Density: 24\", \"cat_2_index\": 513, \"group\": [1193.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42211_BALBc-1_X01_Y02_296_251\", \"ini\": 1617, \"clust\": 184, \"rank\": 2644, \"rankvar\": 2769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1209, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1208, \"cat-2\": \"Density: 26\", \"cat_2_index\": 797, \"group\": [184.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42305_BALBc-1_X01_Y02_297_639\", \"ini\": 1616, \"clust\": 312, \"rank\": 1983, \"rankvar\": 2570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1210, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1209, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2075, \"group\": [312.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42319_BALBc-1_X01_Y02_297_804\", \"ini\": 1615, \"clust\": 2087, \"rank\": 1066, \"rankvar\": 971, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1211, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 902, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2373, \"group\": [2087.0, 308.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42398_BALBc-1_X01_Y02_298_87\", \"ini\": 1614, \"clust\": 968, \"rank\": 740, \"rankvar\": 741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1212, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1210, \"cat-2\": \"Density: 24\", \"cat_2_index\": 514, \"group\": [971.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42612_BALBc-1_X01_Y02_300_601\", \"ini\": 1613, \"clust\": 440, \"rank\": 1715, \"rankvar\": 1416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1213, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 140, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2076, \"group\": [443.0, 87.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42732_BALBc-1_X01_Y02_301_949\", \"ini\": 1612, \"clust\": 2768, \"rank\": 1567, \"rankvar\": 537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1214, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 141, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1976, \"group\": [2766.0, 426.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43120_BALBc-1_X01_Y02_307_419\", \"ini\": 1611, \"clust\": 1271, \"rank\": 980, \"rankvar\": 1150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1215, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 903, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1662, \"group\": [1271.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43132_BALBc-1_X01_Y02_307_574\", \"ini\": 1610, \"clust\": 1971, \"rank\": 1245, \"rankvar\": 1264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1216, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 142, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1767, \"group\": [1969.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43153_BALBc-1_X01_Y02_307_973\", \"ini\": 1609, \"clust\": 1764, \"rank\": 234, \"rankvar\": 533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1217, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1211, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1528, \"group\": [1764.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43190_BALBc-1_X01_Y02_308_551\", \"ini\": 1608, \"clust\": 2276, \"rank\": 841, \"rankvar\": 2130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1218, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 143, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1977, \"group\": [2273.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43335_BALBc-1_X01_Y02_31_697\", \"ini\": 1607, \"clust\": 564, \"rank\": 1431, \"rankvar\": 2031, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1219, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2547, \"cat-2\": \"Density: 14\", \"cat_2_index\": 31, \"group\": [566.0, 126.0, 33.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43610_BALBc-1_X01_Y02_313_207\", \"ini\": 1606, \"clust\": 1242, \"rank\": 1178, \"rankvar\": 2023, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1220, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1212, \"cat-2\": \"Density: 26\", \"cat_2_index\": 798, \"group\": [1243.0, 256.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43667_BALBc-1_X01_Y02_313_928\", \"ini\": 1605, \"clust\": 925, \"rank\": 1544, \"rankvar\": 1272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1221, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 144, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2440, \"group\": [925.0, 216.0, 57.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43786_BALBc-1_X01_Y02_315_720\", \"ini\": 1604, \"clust\": 1790, \"rank\": 120, \"rankvar\": 832, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1222, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1213, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2374, \"group\": [1788.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43787_BALBc-1_X01_Y02_315_732\", \"ini\": 1603, \"clust\": 2556, \"rank\": 2188, \"rankvar\": 1924, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1223, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1994, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2441, \"group\": [2552.0, 389.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43806_BALBc-1_X01_Y02_315_911\", \"ini\": 1602, \"clust\": 2104, \"rank\": 2160, \"rankvar\": 1456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1224, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 145, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2657, \"group\": [2101.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43842_BALBc-1_X01_Y02_316_523\", \"ini\": 1601, \"clust\": 496, \"rank\": 2410, \"rankvar\": 2306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1225, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 146, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2156, \"group\": [499.0, 104.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43849_BALBc-1_X01_Y02_316_620\", \"ini\": 1600, \"clust\": 2640, \"rank\": 1999, \"rankvar\": 1209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1226, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 147, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2157, \"group\": [2637.0, 407.0, 99.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43973_BALBc-1_X01_Y02_317_998\", \"ini\": 1599, \"clust\": 2690, \"rank\": 2487, \"rankvar\": 2137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1227, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 148, \"cat-2\": \"Density: 24\", \"cat_2_index\": 515, \"group\": [2688.0, 414.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44048_BALBc-1_X01_Y02_318_852\", \"ini\": 1598, \"clust\": 2210, \"rank\": 888, \"rankvar\": 892, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1228, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 149, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2550, \"group\": [2216.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44158_BALBc-1_X01_Y02_32_575\", \"ini\": 1597, \"clust\": 2076, \"rank\": 2114, \"rankvar\": 2235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1229, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 838, \"cat-2\": \"Density: 17\", \"cat_2_index\": 79, \"group\": [2073.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44319_BALBc-1_X01_Y02_321_675\", \"ini\": 1596, \"clust\": 333, \"rank\": 1712, \"rankvar\": 1936, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1230, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1214, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1978, \"group\": [333.0, 67.0, 18.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44330_BALBc-1_X01_Y02_321_819\", \"ini\": 1595, \"clust\": 2046, \"rank\": 2003, \"rankvar\": 2019, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1231, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 904, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2442, \"group\": [2041.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44535_BALBc-1_X01_Y02_324_399\", \"ini\": 1594, \"clust\": 1055, \"rank\": 982, \"rankvar\": 933, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1232, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 905, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1402, \"group\": [1056.0, 227.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44544_BALBc-1_X01_Y02_324_471\", \"ini\": 1593, \"clust\": 2607, \"rank\": 2261, \"rankvar\": 2200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1233, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 150, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2158, \"group\": [2607.0, 397.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44837_BALBc-1_X01_Y02_328_284\", \"ini\": 1592, \"clust\": 153, \"rank\": 2140, \"rankvar\": 1954, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1234, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 906, \"cat-2\": \"Density: 26\", \"cat_2_index\": 799, \"group\": [152.0, 33.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44938_BALBc-1_X01_Y02_329_485\", \"ini\": 1591, \"clust\": 1656, \"rank\": 51, \"rankvar\": 308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1235, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 151, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2235, \"group\": [1657.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44940_BALBc-1_X01_Y02_329_520\", \"ini\": 1590, \"clust\": 2279, \"rank\": 622, \"rankvar\": 2224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1236, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 152, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2236, \"group\": [2276.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45002_BALBc-1_X01_Y02_33_176\", \"ini\": 1589, \"clust\": 2334, \"rank\": 1075, \"rankvar\": 1589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1237, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1968, \"cat-2\": \"Density: 19\", \"cat_2_index\": 120, \"group\": [2332.0, 330.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45143_BALBc-1_X01_Y02_331_141\", \"ini\": 1588, \"clust\": 2384, \"rank\": 2600, \"rankvar\": 2797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1238, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2454, \"cat-2\": \"Density: 24\", \"cat_2_index\": 516, \"group\": [2380.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45181_BALBc-1_X01_Y02_331_563\", \"ini\": 1587, \"clust\": 2402, \"rank\": 1639, \"rankvar\": 1682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1239, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 153, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2077, \"group\": [2398.0, 353.0, 83.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45205_BALBc-1_X01_Y02_331_950\", \"ini\": 1586, \"clust\": 1507, \"rank\": 780, \"rankvar\": 51, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1240, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1215, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2237, \"group\": [1511.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45467_BALBc-1_X01_Y02_335_449\", \"ini\": 1585, \"clust\": 2293, \"rank\": 1069, \"rankvar\": 1255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1241, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 154, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1768, \"group\": [2292.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45505_BALBc-1_X01_Y02_335_812\", \"ini\": 1584, \"clust\": 1398, \"rank\": 724, \"rankvar\": 813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1242, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 907, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2604, \"group\": [1397.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45513_BALBc-1_X01_Y02_335_880\", \"ini\": 1583, \"clust\": 1606, \"rank\": 298, \"rankvar\": 53, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1243, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 155, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2703, \"group\": [1607.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45549_BALBc-1_X01_Y02_336_399\", \"ini\": 1582, \"clust\": 957, \"rank\": 986, \"rankvar\": 386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1244, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 156, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1403, \"group\": [960.0, 220.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45699_BALBc-1_X01_Y02_338_596\", \"ini\": 1581, \"clust\": 1234, \"rank\": 844, \"rankvar\": 708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1245, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 157, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2375, \"group\": [1235.0, 255.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45736_BALBc-1_X01_Y02_338_994\", \"ini\": 1580, \"clust\": 1876, \"rank\": 1330, \"rankvar\": 93, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1246, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1216, \"cat-2\": \"Density: 26\", \"cat_2_index\": 800, \"group\": [1881.0, 279.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45772_BALBc-1_X01_Y02_339_514\", \"ini\": 1579, \"clust\": 2485, \"rank\": 1594, \"rankvar\": 2172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1247, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 158, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2313, \"group\": [2483.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45887_BALBc-1_X01_Y02_340_11\", \"ini\": 1578, \"clust\": 215, \"rank\": 804, \"rankvar\": 2060, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1248, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2309, \"cat-2\": \"Density: 27\", \"cat_2_index\": 949, \"group\": [215.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46022_BALBc-1_X01_Y02_341_760\", \"ini\": 1577, \"clust\": 655, \"rank\": 2485, \"rankvar\": 1940, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1249, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 908, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2740, \"group\": [655.0, 154.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46029_BALBc-1_X01_Y02_341_855\", \"ini\": 1576, \"clust\": 2565, \"rank\": 2223, \"rankvar\": 1578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1250, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 159, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2512, \"group\": [2564.0, 390.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46196_BALBc-1_X01_Y02_344_268\", \"ini\": 1575, \"clust\": 124, \"rank\": 1865, \"rankvar\": 2435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1251, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1217, \"cat-2\": \"Density: 25\", \"cat_2_index\": 659, \"group\": [125.0, 27.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46287_BALBc-1_X01_Y02_345_339\", \"ini\": 1574, \"clust\": 2091, \"rank\": 1412, \"rankvar\": 2066, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1252, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 909, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1250, \"group\": [2089.0, 308.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46316_BALBc-1_X01_Y02_345_683\", \"ini\": 1573, \"clust\": 2153, \"rank\": 1207, \"rankvar\": 676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1253, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1218, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2238, \"group\": [2151.0, 314.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46325_BALBc-1_X01_Y02_345_783\", \"ini\": 1572, \"clust\": 2769, \"rank\": 1435, \"rankvar\": 240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1254, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 910, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2551, \"group\": [2767.0, 426.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46464_BALBc-1_X01_Y02_347_433\", \"ini\": 1571, \"clust\": 2494, \"rank\": 1674, \"rankvar\": 1539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1255, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 160, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2078, \"group\": [2492.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46599_BALBc-1_X01_Y02_349_408\", \"ini\": 1570, \"clust\": 883, \"rank\": 592, \"rankvar\": 896, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1256, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2548, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1529, \"group\": [884.0, 202.0, 53.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46604_BALBc-1_X01_Y02_349_467\", \"ini\": 1569, \"clust\": 2354, \"rank\": 2636, \"rankvar\": 1994, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1257, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 161, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2159, \"group\": [2350.0, 344.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46653_BALBc-1_X01_Y02_349_905\", \"ini\": 1568, \"clust\": 2642, \"rank\": 1630, \"rankvar\": 438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1258, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1563, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2741, \"group\": [2643.0, 408.0, 99.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46659_BALBc-1_X01_Y02_349_959\", \"ini\": 1567, \"clust\": 2287, \"rank\": 1393, \"rankvar\": 1452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1259, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1219, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1979, \"group\": [2285.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46698_BALBc-1_X01_Y02_35_602\", \"ini\": 1566, \"clust\": 2232, \"rank\": 889, \"rankvar\": 1754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1260, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 162, \"cat-2\": \"Density: 18\", \"cat_2_index\": 96, \"group\": [2229.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46751_BALBc-1_X01_Y02_350_379\", \"ini\": 1565, \"clust\": 2008, \"rank\": 2196, \"rankvar\": 2354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1261, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 911, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1251, \"group\": [2006.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46910_BALBc-1_X01_Y02_352_503\", \"ini\": 1564, \"clust\": 1096, \"rank\": 306, \"rankvar\": 879, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1262, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 163, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2443, \"group\": [1094.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46947_BALBc-1_X01_Y02_352_937\", \"ini\": 1563, \"clust\": 1223, \"rank\": 1136, \"rankvar\": 270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1263, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 164, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2376, \"group\": [1222.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47001_BALBc-1_X01_Y02_353_565\", \"ini\": 1562, \"clust\": 2649, \"rank\": 2178, \"rankvar\": 1471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1264, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 165, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2444, \"group\": [2645.0, 409.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47004_BALBc-1_X01_Y02_353_639\", \"ini\": 1561, \"clust\": 2421, \"rank\": 2341, \"rankvar\": 1771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1265, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 166, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2377, \"group\": [2418.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47226_BALBc-1_X01_Y02_356_521\", \"ini\": 1560, \"clust\": 1921, \"rank\": 1525, \"rankvar\": 1626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1266, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 167, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2239, \"group\": [1918.0, 294.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47251_BALBc-1_X01_Y02_356_828\", \"ini\": 1559, \"clust\": 1526, \"rank\": 646, \"rankvar\": 210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1267, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 168, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2445, \"group\": [1526.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47374_BALBc-1_X01_Y02_358_677\", \"ini\": 1558, \"clust\": 1865, \"rank\": 255, \"rankvar\": 581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1268, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 169, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2314, \"group\": [1859.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47389_BALBc-1_X01_Y02_358_844\", \"ini\": 1557, \"clust\": 946, \"rank\": 883, \"rankvar\": 724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1269, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 170, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2605, \"group\": [946.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47513_BALBc-1_X01_Y02_36_798\", \"ini\": 1556, \"clust\": 2370, \"rank\": 2719, \"rankvar\": 2737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1270, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1750, \"cat-2\": \"Density: 19\", \"cat_2_index\": 121, \"group\": [2368.0, 348.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47658_BALBc-1_X01_Y02_361_808\", \"ini\": 1555, \"clust\": 997, \"rank\": 1048, \"rankvar\": 742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1271, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1995, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2552, \"group\": [998.0, 224.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47694_BALBc-1_X01_Y02_362_294\", \"ini\": 1554, \"clust\": 1611, \"rank\": 150, \"rankvar\": 42, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1272, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2549, \"cat-2\": \"Density: 23\", \"cat_2_index\": 401, \"group\": [1613.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47867_BALBc-1_X01_Y02_364_621\", \"ini\": 1553, \"clust\": 1197, \"rank\": 329, \"rankvar\": 478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1273, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 171, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2315, \"group\": [1198.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47897_BALBc-1_X01_Y02_364_854\", \"ini\": 1552, \"clust\": 1689, \"rank\": 12, \"rankvar\": 677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1274, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 172, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2800, \"group\": [1688.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47915_BALBc-1_X01_Y02_365_14\", \"ini\": 1551, \"clust\": 2057, \"rank\": 2024, \"rankvar\": 1704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1275, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2550, \"cat-2\": \"Density: 24\", \"cat_2_index\": 517, \"group\": [2082.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48021_BALBc-1_X01_Y02_366_342\", \"ini\": 1550, \"clust\": 2566, \"rank\": 2263, \"rankvar\": 2047, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1276, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2551, \"cat-2\": \"Density: 27\", \"cat_2_index\": 950, \"group\": [2562.0, 390.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48025_BALBc-1_X01_Y02_366_428\", \"ini\": 1549, \"clust\": 902, \"rank\": 1017, \"rankvar\": 1136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1277, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2552, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1871, \"group\": [903.0, 208.0, 55.0, 14.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48215_BALBc-1_X01_Y02_368_757\", \"ini\": 1548, \"clust\": 2150, \"rank\": 948, \"rankvar\": 814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1278, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1996, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2606, \"group\": [2150.0, 314.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48507_BALBc-1_X01_Y02_371_768\", \"ini\": 1547, \"clust\": 2674, \"rank\": 2449, \"rankvar\": 1811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1279, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1997, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2742, \"group\": [2672.0, 412.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48580_BALBc-1_X01_Y02_372_677\", \"ini\": 1546, \"clust\": 2395, \"rank\": 1916, \"rankvar\": 1497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1280, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 173, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2378, \"group\": [2392.0, 353.0, 83.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48668_BALBc-1_X01_Y02_373_878\", \"ini\": 1545, \"clust\": 2572, \"rank\": 2144, \"rankvar\": 2072, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1281, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1564, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2553, \"group\": [2569.0, 391.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48752_BALBc-1_X01_Y02_374_953\", \"ini\": 1544, \"clust\": 1198, \"rank\": 476, \"rankvar\": 129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1282, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 174, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1980, \"group\": [1199.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48829_BALBc-1_X01_Y02_375_937\", \"ini\": 1543, \"clust\": 934, \"rank\": 766, \"rankvar\": 344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1283, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1565, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2316, \"group\": [935.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48836_BALBc-1_X01_Y02_375_988\", \"ini\": 1542, \"clust\": 2523, \"rank\": 1538, \"rankvar\": 824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1284, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1220, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1103, \"group\": [2520.0, 383.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48875_BALBc-1_X01_Y02_376_577\", \"ini\": 1541, \"clust\": 1193, \"rank\": 666, \"rankvar\": 297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1285, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 175, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1872, \"group\": [1197.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49022_BALBc-1_X01_Y02_378_546\", \"ini\": 1540, \"clust\": 2578, \"rank\": 1838, \"rankvar\": 1266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1286, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2553, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2446, \"group\": [2576.0, 392.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49038_BALBc-1_X01_Y02_378_703\", \"ini\": 1539, \"clust\": 1278, \"rank\": 565, \"rankvar\": 983, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1287, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1998, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2447, \"group\": [1278.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49110_BALBc-1_X01_Y02_379_604\", \"ini\": 1538, \"clust\": 2289, \"rank\": 1543, \"rankvar\": 1075, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1288, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 176, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2513, \"group\": [2288.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49158_BALBc-1_X01_Y02_38_459\", \"ini\": 1537, \"clust\": 2465, \"rank\": 2340, \"rankvar\": 2168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1289, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2310, \"cat-2\": \"Density: 21\", \"cat_2_index\": 207, \"group\": [2461.0, 372.0, 90.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49214_BALBc-1_X01_Y02_380_267\", \"ini\": 1536, \"clust\": 1969, \"rank\": 1380, \"rankvar\": 1064, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1290, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1221, \"cat-2\": \"Density: 24\", \"cat_2_index\": 518, \"group\": [1977.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49503_BALBc-1_X01_Y02_383_640\", \"ini\": 1535, \"clust\": 2051, \"rank\": 2061, \"rankvar\": 2149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1291, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 177, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2448, \"group\": [2048.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49514_BALBc-1_X01_Y02_383_738\", \"ini\": 1534, \"clust\": 1318, \"rank\": 818, \"rankvar\": 1204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1292, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1999, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2607, \"group\": [1321.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49654_BALBc-1_X01_Y02_385_588\", \"ini\": 1533, \"clust\": 1926, \"rank\": 1754, \"rankvar\": 1288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1293, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 178, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2240, \"group\": [1922.0, 294.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49736_BALBc-1_X01_Y02_386_473\", \"ini\": 1532, \"clust\": 2142, \"rank\": 1770, \"rankvar\": 1781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1294, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 179, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2241, \"group\": [2138.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49747_BALBc-1_X01_Y02_386_572\", \"ini\": 1531, \"clust\": 863, \"rank\": 615, \"rankvar\": 1193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1295, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2554, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2379, \"group\": [866.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49822_BALBc-1_X01_Y02_387_448\", \"ini\": 1530, \"clust\": 1608, \"rank\": 339, \"rankvar\": 17, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1296, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 839, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1981, \"group\": [1616.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50058_BALBc-1_X01_Y02_39_628\", \"ini\": 1529, \"clust\": 2021, \"rank\": 2142, \"rankvar\": 2293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1297, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1222, \"cat-2\": \"Density: 16\", \"cat_2_index\": 60, \"group\": [2022.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50084_BALBc-1_X01_Y02_39_93\", \"ini\": 1528, \"clust\": 2481, \"rank\": 1646, \"rankvar\": 2449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1298, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1969, \"cat-2\": \"Density: 17\", \"cat_2_index\": 80, \"group\": [2479.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50363_BALBc-1_X01_Y02_393_824\", \"ini\": 1527, \"clust\": 1673, \"rank\": 46, \"rankvar\": 727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1299, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2000, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2514, \"group\": [1671.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50468_BALBc-1_X01_Y02_395_251\", \"ini\": 1526, \"clust\": 1724, \"rank\": 109, \"rankvar\": 333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1300, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1223, \"cat-2\": \"Density: 27\", \"cat_2_index\": 951, \"group\": [1724.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50654_BALBc-1_X01_Y02_397_653\", \"ini\": 1525, \"clust\": 2770, \"rank\": 1293, \"rankvar\": 932, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1301, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 180, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2449, \"group\": [2768.0, 426.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50678_BALBc-1_X01_Y02_397_965\", \"ini\": 1524, \"clust\": 653, \"rank\": 2408, \"rankvar\": 1007, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1302, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 181, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1873, \"group\": [653.0, 154.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50749_BALBc-1_X01_Y02_398_842\", \"ini\": 1523, \"clust\": 2656, \"rank\": 2387, \"rankvar\": 1747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1303, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 182, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2450, \"group\": [2652.0, 409.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50801_BALBc-1_X01_Y02_399_479\", \"ini\": 1522, \"clust\": 958, \"rank\": 1047, \"rankvar\": 1488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1304, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 183, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2160, \"group\": [958.0, 220.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50842_BALBc-1_X01_Y02_399_873\", \"ini\": 1521, \"clust\": 1753, \"rank\": 154, \"rankvar\": 299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1305, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 184, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2554, \"group\": [1749.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50850_BALBc-1_X01_Y02_399_955\", \"ini\": 1520, \"clust\": 1630, \"rank\": 269, \"rankvar\": 77, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1306, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 185, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2161, \"group\": [1630.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51102_BALBc-1_X01_Y02_401_718\", \"ini\": 1519, \"clust\": 1112, \"rank\": 970, \"rankvar\": 330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1307, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2001, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2555, \"group\": [1111.0, 234.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51108_BALBc-1_X01_Y02_401_770\", \"ini\": 1518, \"clust\": 1809, \"rank\": 401, \"rankvar\": 555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1308, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2002, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2743, \"group\": [1806.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51160_BALBc-1_X01_Y02_402_614\", \"ini\": 1517, \"clust\": 2157, \"rank\": 1359, \"rankvar\": 1245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1309, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 186, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2317, \"group\": [2155.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51170_BALBc-1_X01_Y02_402_685\", \"ini\": 1516, \"clust\": 1675, \"rank\": 77, \"rankvar\": 514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1310, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 187, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2451, \"group\": [1673.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51249_BALBc-1_X01_Y02_403_900\", \"ini\": 1515, \"clust\": 1175, \"rank\": 1258, \"rankvar\": 127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1311, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1566, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2556, \"group\": [1182.0, 251.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51335_BALBc-1_X01_Y02_404_940\", \"ini\": 1514, \"clust\": 723, \"rank\": 2513, \"rankvar\": 1913, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1312, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1567, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2242, \"group\": [722.0, 162.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51490_BALBc-1_X01_Y02_406_791\", \"ini\": 1513, \"clust\": 2597, \"rank\": 1932, \"rankvar\": 1425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1313, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2003, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2608, \"group\": [2598.0, 394.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51601_BALBc-1_X01_Y02_408_107\", \"ini\": 1512, \"clust\": 1941, \"rank\": 2413, \"rankvar\": 2423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1314, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2311, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1104, \"group\": [1938.0, 299.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51695_BALBc-1_X01_Y02_409_238\", \"ini\": 1511, \"clust\": 453, \"rank\": 2429, \"rankvar\": 2191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1315, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1224, \"cat-2\": \"Density: 26\", \"cat_2_index\": 801, \"group\": [454.0, 92.0, 23.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51890_BALBc-1_X01_Y02_410_582\", \"ini\": 1510, \"clust\": 2574, \"rank\": 1527, \"rankvar\": 714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1316, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 188, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1982, \"group\": [2572.0, 391.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51921_BALBc-1_X01_Y02_411_121\", \"ini\": 1509, \"clust\": 1212, \"rank\": 182, \"rankvar\": 1522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1317, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 840, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1404, \"group\": [1212.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51976_BALBc-1_X01_Y02_411_847\", \"ini\": 1508, \"clust\": 1489, \"rank\": 640, \"rankvar\": 3, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1318, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 189, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2609, \"group\": [1494.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52269_BALBc-1_X01_Y02_415_277\", \"ini\": 1507, \"clust\": 2601, \"rank\": 1613, \"rankvar\": 709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1319, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 621, \"cat-2\": \"Density: 27\", \"cat_2_index\": 952, \"group\": [2601.0, 395.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52299_BALBc-1_X01_Y02_415_694\", \"ini\": 1506, \"clust\": 2577, \"rank\": 1549, \"rankvar\": 1333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1320, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 190, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2658, \"group\": [2574.0, 391.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52362_BALBc-1_X01_Y02_416_643\", \"ini\": 1505, \"clust\": 2047, \"rank\": 2275, \"rankvar\": 2163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1321, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 191, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2452, \"group\": [2042.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52446_BALBc-1_X01_Y02_417_9\", \"ini\": 1504, \"clust\": 137, \"rank\": 1338, \"rankvar\": 2119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1322, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2242, \"cat-2\": \"Density: 27\", \"cat_2_index\": 953, \"group\": [137.0, 28.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52574_BALBc-1_X01_Y02_419_463\", \"ini\": 1503, \"clust\": 1744, \"rank\": 121, \"rankvar\": 967, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1323, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 841, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2243, \"group\": [1741.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52615_BALBc-1_X01_Y02_419_921\", \"ini\": 1502, \"clust\": 1018, \"rank\": 487, \"rankvar\": 169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1324, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1568, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2453, \"group\": [1017.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52720_BALBc-1_X01_Y02_420_41\", \"ini\": 1501, \"clust\": 1132, \"rank\": 324, \"rankvar\": 1538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1325, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2312, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1405, \"group\": [1140.0, 241.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52738_BALBc-1_X01_Y02_420_619\", \"ini\": 1500, \"clust\": 2089, \"rank\": 1292, \"rankvar\": 863, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1326, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 192, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2380, \"group\": [2086.0, 308.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52831_BALBc-1_X01_Y02_421_884\", \"ini\": 1499, \"clust\": 765, \"rank\": 1187, \"rankvar\": 416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1327, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 193, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2557, \"group\": [765.0, 174.0, 45.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52841_BALBc-1_X01_Y02_421_966\", \"ini\": 1498, \"clust\": 1364, \"rank\": 867, \"rankvar\": 325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1328, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 194, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1769, \"group\": [1364.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52887_BALBc-1_X01_Y02_422_566\", \"ini\": 1497, \"clust\": 982, \"rank\": 651, \"rankvar\": 972, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1329, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2555, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2162, \"group\": [980.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52914_BALBc-1_X01_Y02_422_826\", \"ini\": 1496, \"clust\": 2338, \"rank\": 2074, \"rankvar\": 1114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1330, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 195, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2454, \"group\": [2336.0, 331.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52954_BALBc-1_X01_Y02_423_373\", \"ini\": 1495, \"clust\": 1967, \"rank\": 2498, \"rankvar\": 2502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1331, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2556, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1530, \"group\": [1964.0, 303.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52986_BALBc-1_X01_Y02_423_804\", \"ini\": 1494, \"clust\": 1068, \"rank\": 1071, \"rankvar\": 782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1332, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 912, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2659, \"group\": [1068.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53029_BALBc-1_X01_Y02_424_444\", \"ini\": 1493, \"clust\": 2549, \"rank\": 1499, \"rankvar\": 1621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1333, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 842, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2079, \"group\": [2545.0, 388.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53035_BALBc-1_X01_Y02_424_524\", \"ini\": 1492, \"clust\": 1544, \"rank\": 413, \"rankvar\": 61, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1334, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2557, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2381, \"group\": [1545.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53103_BALBc-1_X01_Y02_425_394\", \"ini\": 1491, \"clust\": 1533, \"rank\": 305, \"rankvar\": 256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1335, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2558, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1663, \"group\": [1532.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53160_BALBc-1_X01_Y02_426_216\", \"ini\": 1490, \"clust\": 1718, \"rank\": 229, \"rankvar\": 101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1336, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1225, \"cat-2\": \"Density: 27\", \"cat_2_index\": 954, \"group\": [1716.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53185_BALBc-1_X01_Y02_426_493\", \"ini\": 1489, \"clust\": 2530, \"rank\": 1829, \"rankvar\": 1464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1337, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2004, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2382, \"group\": [2527.0, 384.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53235_BALBc-1_X01_Y02_426_993\", \"ini\": 1488, \"clust\": 352, \"rank\": 2805, \"rankvar\": 2720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1338, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1226, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1105, \"group\": [352.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53488_BALBc-1_X01_Y02_43_189\", \"ini\": 1487, \"clust\": 709, \"rank\": 2578, \"rankvar\": 2507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1339, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2490, \"cat-2\": \"Density: 20\", \"cat_2_index\": 157, \"group\": [716.0, 160.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53513_BALBc-1_X01_Y02_43_535\", \"ini\": 1486, \"clust\": 2629, \"rank\": 2481, \"rankvar\": 1922, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1340, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 843, \"cat-2\": \"Density: 24\", \"cat_2_index\": 519, \"group\": [2626.0, 404.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53632_BALBc-1_X01_Y02_430_943\", \"ini\": 1485, \"clust\": 838, \"rank\": 1451, \"rankvar\": 2046, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1341, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 196, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2244, \"group\": [835.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53680_BALBc-1_X01_Y02_431_592\", \"ini\": 1484, \"clust\": 2049, \"rank\": 2081, \"rankvar\": 2025, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1342, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2005, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2245, \"group\": [2047.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53775_BALBc-1_X01_Y02_432_719\", \"ini\": 1483, \"clust\": 2819, \"rank\": 1625, \"rankvar\": 693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1343, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2006, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2660, \"group\": [2815.0, 435.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54002_BALBc-1_X01_Y02_435_644\", \"ini\": 1482, \"clust\": 2806, \"rank\": 1524, \"rankvar\": 342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1344, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 197, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2610, \"group\": [2804.0, 434.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54089_BALBc-1_X01_Y02_436_868\", \"ini\": 1481, \"clust\": 2425, \"rank\": 1725, \"rankvar\": 992, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1345, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 198, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2661, \"group\": [2421.0, 357.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54172_BALBc-1_X01_Y02_437_824\", \"ini\": 1480, \"clust\": 1277, \"rank\": 725, \"rankvar\": 943, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1346, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2007, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2455, \"group\": [1294.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54244_BALBc-1_X01_Y02_438_683\", \"ini\": 1479, \"clust\": 857, \"rank\": 1064, \"rankvar\": 1019, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1347, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2008, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2558, \"group\": [857.0, 197.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54404_BALBc-1_X01_Y02_44_835\", \"ini\": 1478, \"clust\": 497, \"rank\": 2565, \"rankvar\": 2563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1348, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1227, \"cat-2\": \"Density: 21\", \"cat_2_index\": 208, \"group\": [497.0, 104.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54437_BALBc-1_X01_Y02_440_316\", \"ini\": 1477, \"clust\": 1713, \"rank\": 44, \"rankvar\": 336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1349, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2559, \"cat-2\": \"Density: 25\", \"cat_2_index\": 660, \"group\": [1709.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54530_BALBc-1_X01_Y02_441_532\", \"ini\": 1476, \"clust\": 2234, \"rank\": 1125, \"rankvar\": 1074, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1350, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2009, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2383, \"group\": [2238.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54679_BALBc-1_X01_Y02_443_444\", \"ini\": 1475, \"clust\": 1583, \"rank\": 265, \"rankvar\": 865, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1351, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 199, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1874, \"group\": [1583.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54837_BALBc-1_X01_Y02_445_603\", \"ini\": 1474, \"clust\": 2562, \"rank\": 1832, \"rankvar\": 1552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1352, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 200, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2456, \"group\": [2560.0, 390.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54860_BALBc-1_X01_Y02_445_91\", \"ini\": 1473, \"clust\": 218, \"rank\": 607, \"rankvar\": 2324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1353, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2313, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1252, \"group\": [220.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54974_BALBc-1_X01_Y02_447_354\", \"ini\": 1472, \"clust\": 1664, \"rank\": 3, \"rankvar\": 1149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1354, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2560, \"cat-2\": \"Density: 26\", \"cat_2_index\": 802, \"group\": [1663.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55065_BALBc-1_X01_Y02_448_466\", \"ini\": 1471, \"clust\": 1617, \"rank\": 144, \"rankvar\": 126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1355, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2010, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2163, \"group\": [1617.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55103_BALBc-1_X01_Y02_448_891\", \"ini\": 1470, \"clust\": 1919, \"rank\": 1103, \"rankvar\": 881, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1356, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2011, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2559, \"group\": [1917.0, 293.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55107_BALBc-1_X01_Y02_448_964\", \"ini\": 1469, \"clust\": 2759, \"rank\": 1381, \"rankvar\": 784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1357, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 201, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1983, \"group\": [2755.0, 425.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55165_BALBc-1_X01_Y02_449_995\", \"ini\": 1468, \"clust\": 342, \"rank\": 2715, \"rankvar\": 2806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1358, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1228, \"cat-2\": \"Density: 25\", \"cat_2_index\": 661, \"group\": [346.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55457_BALBc-1_X01_Y02_452_827\", \"ini\": 1467, \"clust\": 2326, \"rank\": 1493, \"rankvar\": 1470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1359, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2012, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2662, \"group\": [2326.0, 328.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55626_BALBc-1_X01_Y02_454_938\", \"ini\": 1466, \"clust\": 2788, \"rank\": 1794, \"rankvar\": 980, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1360, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 202, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2318, \"group\": [2785.0, 428.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55632_BALBc-1_X01_Y02_455_133\", \"ini\": 1465, \"clust\": 119, \"rank\": 718, \"rankvar\": 1724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1361, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1229, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1253, \"group\": [119.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55682_BALBc-1_X01_Y02_455_662\", \"ini\": 1464, \"clust\": 1351, \"rank\": 955, \"rankvar\": 146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1362, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2013, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2457, \"group\": [1352.0, 261.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55975_BALBc-1_X01_Y02_459_725\", \"ini\": 1463, \"clust\": 2445, \"rank\": 1987, \"rankvar\": 1430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1363, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 913, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2611, \"group\": [2443.0, 364.0, 86.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55987_BALBc-1_X01_Y02_459_856\", \"ini\": 1462, \"clust\": 285, \"rank\": 1351, \"rankvar\": 1042, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1364, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2014, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2384, \"group\": [285.0, 58.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56102_BALBc-1_X01_Y02_460_412\", \"ini\": 1461, \"clust\": 696, \"rank\": 2808, \"rankvar\": 2732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1365, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2811, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1875, \"group\": [697.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56118_BALBc-1_X01_Y02_460_632\", \"ini\": 1460, \"clust\": 1916, \"rank\": 1294, \"rankvar\": 621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1366, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 203, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2515, \"group\": [1913.0, 292.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56299_BALBc-1_X01_Y02_462_698\", \"ini\": 1459, \"clust\": 1007, \"rank\": 1060, \"rankvar\": 1051, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1367, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2015, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2516, \"group\": [1006.0, 224.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56546_BALBc-1_X01_Y02_466_18\", \"ini\": 1458, \"clust\": 1130, \"rank\": 97, \"rankvar\": 1424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1368, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1551, \"cat-2\": \"Density: 27\", \"cat_2_index\": 955, \"group\": [1129.0, 239.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56758_BALBc-1_X01_Y02_468_767\", \"ini\": 1457, \"clust\": 2452, \"rank\": 2559, \"rankvar\": 2067, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1369, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 914, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2744, \"group\": [2452.0, 369.0, 88.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56777_BALBc-1_X01_Y02_469_107\", \"ini\": 1456, \"clust\": 678, \"rank\": 2796, \"rankvar\": 2768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1370, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 844, \"cat-2\": \"Density: 26\", \"cat_2_index\": 803, \"group\": [682.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56993_BALBc-1_X01_Y02_470_811\", \"ini\": 1455, \"clust\": 1045, \"rank\": 862, \"rankvar\": 1210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1371, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2016, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2663, \"group\": [1045.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57236_BALBc-1_X01_Y02_474_156\", \"ini\": 1454, \"clust\": 2321, \"rank\": 2388, \"rankvar\": 2347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1372, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 845, \"cat-2\": \"Density: 23\", \"cat_2_index\": 402, \"group\": [2320.0, 325.0, 75.0, 19.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57266_BALBc-1_X01_Y02_474_476\", \"ini\": 1453, \"clust\": 2427, \"rank\": 2020, \"rankvar\": 1564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1373, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2017, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2246, \"group\": [2425.0, 358.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57317_BALBc-1_X01_Y02_475_174\", \"ini\": 1452, \"clust\": 2388, \"rank\": 2291, \"rankvar\": 2261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1374, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1230, \"cat-2\": \"Density: 26\", \"cat_2_index\": 804, \"group\": [2385.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57390_BALBc-1_X01_Y02_475_992\", \"ini\": 1451, \"clust\": 2693, \"rank\": 2421, \"rankvar\": 1660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1375, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1231, \"cat-2\": \"Density: 26\", \"cat_2_index\": 805, \"group\": [2690.0, 414.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57421_BALBc-1_X01_Y02_476_442\", \"ini\": 1450, \"clust\": 1719, \"rank\": 208, \"rankvar\": 98, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1376, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 204, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2247, \"group\": [1717.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57434_BALBc-1_X01_Y02_476_544\", \"ini\": 1449, \"clust\": 1910, \"rank\": 1059, \"rankvar\": 657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1377, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2018, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2319, \"group\": [1907.0, 291.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57441_BALBc-1_X01_Y02_476_598\", \"ini\": 1448, \"clust\": 1413, \"rank\": 1046, \"rankvar\": 49, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1378, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 205, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2385, \"group\": [1419.0, 263.0, 65.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57487_BALBc-1_X01_Y02_477_186\", \"ini\": 1447, \"clust\": 1475, \"rank\": 218, \"rankvar\": 1214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1379, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1232, \"cat-2\": \"Density: 24\", \"cat_2_index\": 520, \"group\": [1476.0, 268.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57490_BALBc-1_X01_Y02_477_220\", \"ini\": 1446, \"clust\": 2259, \"rank\": 1284, \"rankvar\": 2317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1380, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1233, \"cat-2\": \"Density: 23\", \"cat_2_index\": 403, \"group\": [2254.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57549_BALBc-1_X01_Y02_477_962\", \"ini\": 1445, \"clust\": 1729, \"rank\": 621, \"rankvar\": 352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1381, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 206, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1984, \"group\": [1729.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57571_BALBc-1_X01_Y02_478_269\", \"ini\": 1444, \"clust\": 102, \"rank\": 1342, \"rankvar\": 1723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1382, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1234, \"cat-2\": \"Density: 24\", \"cat_2_index\": 521, \"group\": [102.0, 23.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57683_BALBc-1_X01_Y02_479_571\", \"ini\": 1443, \"clust\": 2428, \"rank\": 1784, \"rankvar\": 1313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1383, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2019, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2560, \"group\": [2426.0, 358.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57835_BALBc-1_X01_Y02_480_722\", \"ini\": 1442, \"clust\": 1392, \"rank\": 717, \"rankvar\": 110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1384, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 207, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2517, \"group\": [1396.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57878_BALBc-1_X01_Y02_481_244\", \"ini\": 1441, \"clust\": 586, \"rank\": 941, \"rankvar\": 1760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1385, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1235, \"cat-2\": \"Density: 22\", \"cat_2_index\": 288, \"group\": [593.0, 135.0, 36.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58001_BALBc-1_X01_Y02_482_917\", \"ini\": 1440, \"clust\": 1040, \"rank\": 1307, \"rankvar\": 737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1386, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2020, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2801, \"group\": [1040.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58043_BALBc-1_X01_Y02_483_520\", \"ini\": 1439, \"clust\": 922, \"rank\": 1315, \"rankvar\": 713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1387, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2021, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2080, \"group\": [927.0, 216.0, 57.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58156_BALBc-1_X01_Y02_484_753\", \"ini\": 1438, \"clust\": 1384, \"rank\": 730, \"rankvar\": 162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1388, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2022, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2704, \"group\": [1384.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58206_BALBc-1_X01_Y02_485_407\", \"ini\": 1437, \"clust\": 1705, \"rank\": 66, \"rankvar\": 191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1389, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2023, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1531, \"group\": [1703.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58226_BALBc-1_X01_Y02_485_621\", \"ini\": 1436, \"clust\": 2781, \"rank\": 1729, \"rankvar\": 1560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1390, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 208, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2081, \"group\": [2779.0, 427.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58228_BALBc-1_X01_Y02_485_649\", \"ini\": 1435, \"clust\": 2433, \"rank\": 2076, \"rankvar\": 1371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1391, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1236, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2248, \"group\": [2433.0, 359.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58327_BALBc-1_X01_Y02_486_99\", \"ini\": 1434, \"clust\": 1558, \"rank\": 366, \"rankvar\": 559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1392, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1655, \"cat-2\": \"Density: 27\", \"cat_2_index\": 956, \"group\": [1559.0, 272.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58359_BALBc-1_X01_Y02_487_496\", \"ini\": 1433, \"clust\": 1913, \"rank\": 1404, \"rankvar\": 498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1393, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2024, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2082, \"group\": [1910.0, 292.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58404_BALBc-1_X01_Y02_487_980\", \"ini\": 1432, \"clust\": 1833, \"rank\": 327, \"rankvar\": 1654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1394, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 209, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1664, \"group\": [1831.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58545_BALBc-1_X01_Y02_489_773\", \"ini\": 1431, \"clust\": 2423, \"rank\": 1718, \"rankvar\": 144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1395, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2025, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2518, \"group\": [2424.0, 357.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58554_BALBc-1_X01_Y02_489_847\", \"ini\": 1430, \"clust\": 2721, \"rank\": 2163, \"rankvar\": 1453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1396, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2026, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2705, \"group\": [2721.0, 418.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58565_BALBc-1_X01_Y02_489_942\", \"ini\": 1429, \"clust\": 628, \"rank\": 2531, \"rankvar\": 1868, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1397, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 210, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2519, \"group\": [630.0, 147.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58586_BALBc-1_X01_Y02_49_255\", \"ini\": 1428, \"clust\": 2391, \"rank\": 2641, \"rankvar\": 2781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1398, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1237, \"cat-2\": \"Density: 18\", \"cat_2_index\": 97, \"group\": [2383.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58666_BALBc-1_X01_Y02_490_220\", \"ini\": 1427, \"clust\": 2716, \"rank\": 1892, \"rankvar\": 1735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1399, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 211, \"cat-2\": \"Density: 23\", \"cat_2_index\": 404, \"group\": [2713.0, 417.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58836_BALBc-1_X01_Y02_492_696\", \"ini\": 1426, \"clust\": 2581, \"rank\": 1560, \"rankvar\": 506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1400, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2027, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2612, \"group\": [2579.0, 392.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58842_BALBc-1_X01_Y02_492_801\", \"ini\": 1425, \"clust\": 962, \"rank\": 699, \"rankvar\": 1706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1401, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2028, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2458, \"group\": [961.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59277_BALBc-1_X01_Y02_497_952\", \"ini\": 1424, \"clust\": 2280, \"rank\": 1353, \"rankvar\": 1324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1402, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2029, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1985, \"group\": [2278.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59332_BALBc-1_X01_Y02_498_722\", \"ini\": 1423, \"clust\": 1853, \"rank\": 270, \"rankvar\": 136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1403, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2030, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2520, \"group\": [1850.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59402_BALBc-1_X01_Y02_499_631\", \"ini\": 1422, \"clust\": 1909, \"rank\": 1169, \"rankvar\": 334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1404, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2031, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2249, \"group\": [1909.0, 291.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59433_BALBc-1_X01_Y02_499_987\", \"ini\": 1421, \"clust\": 2396, \"rank\": 2333, \"rankvar\": 2175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1405, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2032, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1254, \"group\": [2393.0, 353.0, 83.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59455_BALBc-1_X01_Y02_5_514\", \"ini\": 1420, \"clust\": 2108, \"rank\": 2555, \"rankvar\": 2504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1406, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 846, \"cat-2\": \"Density: 13\", \"cat_2_index\": 19, \"group\": [2106.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59697_BALBc-1_X01_Y02_502_382\", \"ini\": 1419, \"clust\": 1794, \"rank\": 297, \"rankvar\": 152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1407, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2561, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1255, \"group\": [1792.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59815_BALBc-1_X01_Y02_504_15\", \"ini\": 1418, \"clust\": 1431, \"rank\": 756, \"rankvar\": 1823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1408, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1970, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1106, \"group\": [1430.0, 266.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60055_BALBc-1_X01_Y02_507_1005\", \"ini\": 1417, \"clust\": 1942, \"rank\": 1714, \"rankvar\": 837, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1409, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 212, \"cat-2\": \"Density: 26\", \"cat_2_index\": 806, \"group\": [1939.0, 299.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60088_BALBc-1_X01_Y02_507_454\", \"ini\": 1416, \"clust\": 2332, \"rank\": 1468, \"rankvar\": 1171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1410, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 213, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1876, \"group\": [2329.0, 330.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60268_BALBc-1_X01_Y02_509_70\", \"ini\": 1415, \"clust\": 2344, \"rank\": 1172, \"rankvar\": 1583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1411, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1656, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1107, \"group\": [2342.0, 337.0, 78.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60435_BALBc-1_X01_Y02_510_900\", \"ini\": 1414, \"clust\": 2744, \"rank\": 2376, \"rankvar\": 1869, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1412, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2033, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2664, \"group\": [2741.0, 423.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60513_BALBc-1_X01_Y02_511_842\", \"ini\": 1413, \"clust\": 1361, \"rank\": 1108, \"rankvar\": 661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1413, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 214, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2613, \"group\": [1362.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60591_BALBc-1_X01_Y02_512_878\", \"ini\": 1412, \"clust\": 1336, \"rank\": 283, \"rankvar\": 820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1414, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2034, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2561, \"group\": [1339.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60694_BALBc-1_X01_Y02_514_485\", \"ini\": 1411, \"clust\": 1492, \"rank\": 412, \"rankvar\": 134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1415, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2035, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2459, \"group\": [1488.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60776_BALBc-1_X01_Y02_515_521\", \"ini\": 1410, \"clust\": 1563, \"rank\": 738, \"rankvar\": 425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1416, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 215, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2083, \"group\": [1562.0, 273.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60841_BALBc-1_X01_Y02_516_211\", \"ini\": 1409, \"clust\": 1152, \"rank\": 508, \"rankvar\": 1367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1417, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2562, \"cat-2\": \"Density: 23\", \"cat_2_index\": 405, \"group\": [1151.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60860_BALBc-1_X01_Y02_516_505\", \"ini\": 1408, \"clust\": 2738, \"rank\": 2101, \"rankvar\": 1801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1418, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 216, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2084, \"group\": [2736.0, 423.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60875_BALBc-1_X01_Y02_516_818\", \"ini\": 1407, \"clust\": 1515, \"rank\": 864, \"rankvar\": 384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1419, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2036, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2745, \"group\": [1515.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60902_BALBc-1_X01_Y02_517_236\", \"ini\": 1406, \"clust\": 192, \"rank\": 2467, \"rankvar\": 2663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1420, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 217, \"cat-2\": \"Density: 21\", \"cat_2_index\": 209, \"group\": [190.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61018_BALBc-1_X01_Y02_518_607\", \"ini\": 1405, \"clust\": 2540, \"rank\": 1717, \"rankvar\": 1693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1421, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2037, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2164, \"group\": [2538.0, 386.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61271_BALBc-1_X01_Y02_520_570\", \"ini\": 1404, \"clust\": 1684, \"rank\": 70, \"rankvar\": 279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1422, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2038, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2460, \"group\": [1682.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61339_BALBc-1_X01_Y02_521_434\", \"ini\": 1403, \"clust\": 1071, \"rank\": 781, \"rankvar\": 542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1423, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2039, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1986, \"group\": [1071.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61380_BALBc-1_X01_Y02_521_947\", \"ini\": 1402, \"clust\": 504, \"rank\": 2583, \"rankvar\": 2016, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1424, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1238, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2320, \"group\": [505.0, 105.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61674_BALBc-1_X01_Y02_525_652\", \"ini\": 1401, \"clust\": 2436, \"rank\": 2235, \"rankvar\": 2038, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1425, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1239, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2321, \"group\": [2436.0, 359.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61704_BALBc-1_X01_Y02_525_994\", \"ini\": 1400, \"clust\": 2719, \"rank\": 2381, \"rankvar\": 2010, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1426, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2040, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1256, \"group\": [2716.0, 418.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61719_BALBc-1_X01_Y02_526_269\", \"ini\": 1399, \"clust\": 2443, \"rank\": 2721, \"rankvar\": 2758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1427, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2563, \"cat-2\": \"Density: 20\", \"cat_2_index\": 158, \"group\": [2439.0, 361.0, 85.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61758_BALBc-1_X01_Y02_526_905\", \"ini\": 1398, \"clust\": 942, \"rank\": 749, \"rankvar\": 201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1428, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 218, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2461, \"group\": [945.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61791_BALBc-1_X01_Y02_527_347\", \"ini\": 1397, \"clust\": 1503, \"rank\": 575, \"rankvar\": 213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1429, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2564, \"cat-2\": \"Density: 25\", \"cat_2_index\": 662, \"group\": [1506.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61831_BALBc-1_X01_Y02_527_730\", \"ini\": 1396, \"clust\": 1571, \"rank\": 372, \"rankvar\": 1644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1430, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2041, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2562, \"group\": [1572.0, 274.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61836_BALBc-1_X01_Y02_527_777\", \"ini\": 1395, \"clust\": 2706, \"rank\": 1777, \"rankvar\": 2205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1431, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2042, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2386, \"group\": [2706.0, 416.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61953_BALBc-1_X01_Y02_529_35\", \"ini\": 1394, \"clust\": 2497, \"rank\": 1842, \"rankvar\": 2334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1432, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1657, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1108, \"group\": [2494.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61991_BALBc-1_X01_Y02_529_837\", \"ini\": 1393, \"clust\": 1678, \"rank\": 205, \"rankvar\": 147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1433, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 219, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2563, \"group\": [1692.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62023_BALBc-1_X01_Y02_53_321\", \"ini\": 1392, \"clust\": 170, \"rank\": 1981, \"rankvar\": 2181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1434, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1240, \"cat-2\": \"Density: 21\", \"cat_2_index\": 210, \"group\": [171.0, 39.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62344_BALBc-1_X01_Y02_533_462\", \"ini\": 1391, \"clust\": 940, \"rank\": 619, \"rankvar\": 450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1435, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2043, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2322, \"group\": [939.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62399_BALBc-1_X01_Y02_534_418\", \"ini\": 1390, \"clust\": 1727, \"rank\": 307, \"rankvar\": 23, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1436, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2044, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1987, \"group\": [1725.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62425_BALBc-1_X01_Y02_534_752\", \"ini\": 1389, \"clust\": 2704, \"rank\": 2183, \"rankvar\": 1925, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1437, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2045, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2462, \"group\": [2701.0, 416.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62434_BALBc-1_X01_Y02_534_821\", \"ini\": 1388, \"clust\": 2507, \"rank\": 1328, \"rankvar\": 743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1438, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2046, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2706, \"group\": [2503.0, 381.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62442_BALBc-1_X01_Y02_534_888\", \"ini\": 1387, \"clust\": 1575, \"rank\": 618, \"rankvar\": 48, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1439, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 220, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2463, \"group\": [1576.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62492_BALBc-1_X01_Y02_535_508\", \"ini\": 1386, \"clust\": 2708, \"rank\": 1648, \"rankvar\": 1426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1440, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2047, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2165, \"group\": [2703.0, 416.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62565_BALBc-1_X01_Y02_536_544\", \"ini\": 1385, \"clust\": 1972, \"rank\": 1242, \"rankvar\": 1643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1441, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2048, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2387, \"group\": [1967.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62586_BALBc-1_X01_Y02_536_855\", \"ini\": 1384, \"clust\": 2101, \"rank\": 2233, \"rankvar\": 1852, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1442, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 221, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2614, \"group\": [2103.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62671_BALBc-1_X01_Y02_537_981\", \"ini\": 1383, \"clust\": 851, \"rank\": 677, \"rankvar\": 252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1443, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1241, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1770, \"group\": [849.0, 197.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62763_BALBc-1_X01_Y02_539_389\", \"ini\": 1382, \"clust\": 1020, \"rank\": 654, \"rankvar\": 249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1444, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2049, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1257, \"group\": [1019.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62777_BALBc-1_X01_Y02_539_557\", \"ini\": 1381, \"clust\": 2739, \"rank\": 2532, \"rankvar\": 2409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1445, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2050, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2250, \"group\": [2737.0, 423.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62788_BALBc-1_X01_Y02_539_712\", \"ini\": 1380, \"clust\": 2405, \"rank\": 2501, \"rankvar\": 2401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1446, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1242, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2388, \"group\": [2403.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62960_BALBc-1_X01_Y02_541_26\", \"ini\": 1379, \"clust\": 1092, \"rank\": 739, \"rankvar\": 1967, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1447, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1971, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1109, \"group\": [1092.0, 232.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62991_BALBc-1_X01_Y02_541_75\", \"ini\": 1378, \"clust\": 2253, \"rank\": 1204, \"rankvar\": 1676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1448, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 847, \"cat-2\": \"Density: 26\", \"cat_2_index\": 807, \"group\": [2250.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63595_BALBc-1_X01_Y02_548_853\", \"ini\": 1377, \"clust\": 1404, \"rank\": 917, \"rankvar\": 838, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1449, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2051, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2615, \"group\": [1403.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63686_BALBc-1_X01_Y02_549_947\", \"ini\": 1376, \"clust\": 2681, \"rank\": 2402, \"rankvar\": 1938, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1450, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1243, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2323, \"group\": [2680.0, 412.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63912_BALBc-1_X01_Y02_551_904\", \"ini\": 1375, \"clust\": 1346, \"rank\": 814, \"rankvar\": 867, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1451, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 222, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2521, \"group\": [1347.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63952_BALBc-1_X01_Y02_552_377\", \"ini\": 1374, \"clust\": 1076, \"rank\": 868, \"rankvar\": 121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1452, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 223, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1110, \"group\": [1077.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64119_BALBc-1_X01_Y02_554_637\", \"ini\": 1373, \"clust\": 830, \"rank\": 1466, \"rankvar\": 1793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1453, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2052, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2564, \"group\": [830.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64205_BALBc-1_X01_Y02_555_738\", \"ini\": 1372, \"clust\": 1240, \"rank\": 755, \"rankvar\": 841, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1454, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 224, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2389, \"group\": [1241.0, 256.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64551_BALBc-1_X01_Y02_56_237\", \"ini\": 1371, \"clust\": 419, \"rank\": 1319, \"rankvar\": 2298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1455, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1244, \"cat-2\": \"Density: 20\", \"cat_2_index\": 159, \"group\": [434.0, 84.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64699_BALBc-1_X01_Y02_560_94\", \"ini\": 1370, \"clust\": 2382, \"rank\": 2748, \"rankvar\": 2796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1456, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2455, \"cat-2\": \"Density: 27\", \"cat_2_index\": 957, \"group\": [2377.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64829_BALBc-1_X01_Y02_562_691\", \"ini\": 1369, \"clust\": 1216, \"rank\": 391, \"rankvar\": 481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1457, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1245, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2616, \"group\": [1216.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64850_BALBc-1_X01_Y02_562_963\", \"ini\": 1368, \"clust\": 1339, \"rank\": 272, \"rankvar\": 575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1458, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1246, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2251, \"group\": [1342.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64896_BALBc-1_X01_Y02_563_569\", \"ini\": 1367, \"clust\": 1756, \"rank\": 380, \"rankvar\": 239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1459, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2053, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2464, \"group\": [1756.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64897_BALBc-1_X01_Y02_563_602\", \"ini\": 1366, \"clust\": 722, \"rank\": 2717, \"rankvar\": 2216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1460, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2054, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2465, \"group\": [724.0, 162.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64941_BALBc-1_X01_Y02_564_31\", \"ini\": 1365, \"clust\": 131, \"rank\": 1358, \"rankvar\": 644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1461, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1972, \"cat-2\": \"Density: 24\", \"cat_2_index\": 522, \"group\": [132.0, 28.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64994_BALBc-1_X01_Y02_564_874\", \"ini\": 1364, \"clust\": 852, \"rank\": 719, \"rankvar\": 362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1462, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2055, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2466, \"group\": [850.0, 197.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65052_BALBc-1_X01_Y02_565_665\", \"ini\": 1363, \"clust\": 1922, \"rank\": 1535, \"rankvar\": 1378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1463, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 225, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2565, \"group\": [1919.0, 294.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65064_BALBc-1_X01_Y02_565_759\", \"ini\": 1362, \"clust\": 2406, \"rank\": 2124, \"rankvar\": 1505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1464, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2565, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2522, \"group\": [2404.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65075_BALBc-1_X01_Y02_565_925\", \"ini\": 1361, \"clust\": 905, \"rank\": 1197, \"rankvar\": 591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1465, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 622, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2707, \"group\": [908.0, 209.0, 55.0, 14.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65095_BALBc-1_X01_Y02_566_271\", \"ini\": 1360, \"clust\": 1961, \"rank\": 2688, \"rankvar\": 2809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1466, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2566, \"cat-2\": \"Density: 21\", \"cat_2_index\": 211, \"group\": [1957.0, 303.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65299_BALBc-1_X01_Y02_568_889\", \"ini\": 1359, \"clust\": 2667, \"rank\": 1928, \"rankvar\": 1533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1467, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 226, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2566, \"group\": [2669.0, 411.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65326_BALBc-1_X01_Y02_569_433\", \"ini\": 1358, \"clust\": 1257, \"rank\": 443, \"rankvar\": 233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1468, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2056, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2085, \"group\": [1256.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65481_BALBc-1_X01_Y02_570_500\", \"ini\": 1357, \"clust\": 1527, \"rank\": 506, \"rankvar\": 222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1469, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2057, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2324, \"group\": [1527.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65533_BALBc-1_X01_Y02_571_197\", \"ini\": 1356, \"clust\": 1057, \"rank\": 1128, \"rankvar\": 1428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1470, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2491, \"cat-2\": \"Density: 23\", \"cat_2_index\": 406, \"group\": [1058.0, 227.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65552_BALBc-1_X01_Y02_571_380\", \"ini\": 1355, \"clust\": 2192, \"rank\": 1167, \"rankvar\": 733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1471, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2058, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1877, \"group\": [2190.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65700_BALBc-1_X01_Y02_573_349\", \"ini\": 1354, \"clust\": 1822, \"rank\": 185, \"rankvar\": 895, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1472, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2567, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1406, \"group\": [1818.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65716_BALBc-1_X01_Y02_573_564\", \"ini\": 1353, \"clust\": 2632, \"rank\": 2234, \"rankvar\": 1916, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1473, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2059, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2390, \"group\": [2630.0, 405.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65744_BALBc-1_X01_Y02_573_899\", \"ini\": 1352, \"clust\": 926, \"rank\": 1737, \"rankvar\": 738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1474, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 623, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2746, \"group\": [926.0, 216.0, 57.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65912_BALBc-1_X01_Y02_575_992\", \"ini\": 1351, \"clust\": 2568, \"rank\": 1954, \"rankvar\": 1237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1475, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 227, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1111, \"group\": [2566.0, 391.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65965_BALBc-1_X01_Y02_576_941\", \"ini\": 1350, \"clust\": 2691, \"rank\": 2296, \"rankvar\": 1688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1476, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 624, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2617, \"group\": [2689.0, 414.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66161_BALBc-1_X01_Y02_579_641\", \"ini\": 1349, \"clust\": 2709, \"rank\": 1831, \"rankvar\": 1670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1477, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 228, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2467, \"group\": [2704.0, 416.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66381_BALBc-1_X01_Y02_581_736\", \"ini\": 1348, \"clust\": 2560, \"rank\": 1721, \"rankvar\": 961, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1478, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 229, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2391, \"group\": [2556.0, 390.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66539_BALBc-1_X01_Y02_583_714\", \"ini\": 1347, \"clust\": 2418, \"rank\": 2354, \"rankvar\": 2106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1479, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 230, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2567, \"group\": [2416.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66625_BALBc-1_X01_Y02_584_872\", \"ini\": 1346, \"clust\": 1389, \"rank\": 507, \"rankvar\": 1198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1480, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2060, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2523, \"group\": [1392.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66780_BALBc-1_X01_Y02_586_608\", \"ini\": 1345, \"clust\": 1683, \"rank\": 141, \"rankvar\": 150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 231, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2568, \"group\": [1683.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66849_BALBc-1_X01_Y02_587_46\", \"ini\": 1344, \"clust\": 562, \"rank\": 2187, \"rankvar\": 2527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1482, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 232, \"cat-2\": \"Density: 24\", \"cat_2_index\": 523, \"group\": [560.0, 123.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67001_BALBc-1_X01_Y02_589_528\", \"ini\": 1343, \"clust\": 1464, \"rank\": 449, \"rankvar\": 410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1483, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2061, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2166, \"group\": [1465.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67087_BALBc-1_X01_Y02_59_592\", \"ini\": 1342, \"clust\": 99, \"rank\": 1640, \"rankvar\": 554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1484, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1247, \"cat-2\": \"Density: 20\", \"cat_2_index\": 160, \"group\": [100.0, 22.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67176_BALBc-1_X01_Y02_590_64\", \"ini\": 1341, \"clust\": 1856, \"rank\": 65, \"rankvar\": 613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1485, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1973, \"cat-2\": \"Density: 23\", \"cat_2_index\": 407, \"group\": [1854.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67186_BALBc-1_X01_Y02_590_689\", \"ini\": 1340, \"clust\": 507, \"rank\": 2807, \"rankvar\": 2743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1486, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 233, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2468, \"group\": [507.0, 105.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67202_BALBc-1_X01_Y02_590_825\", \"ini\": 1339, \"clust\": 1643, \"rank\": 174, \"rankvar\": 76, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1487, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2062, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2618, \"group\": [1641.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67369_BALBc-1_X01_Y02_593_1000\", \"ini\": 1338, \"clust\": 1840, \"rank\": 488, \"rankvar\": 422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1488, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1248, \"cat-2\": \"Density: 24\", \"cat_2_index\": 524, \"group\": [1838.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67476_BALBc-1_X01_Y02_594_578\", \"ini\": 1337, \"clust\": 1409, \"rank\": 680, \"rankvar\": 1344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1489, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 234, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2569, \"group\": [1412.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67538_BALBc-1_X01_Y02_595_430\", \"ini\": 1336, \"clust\": 2434, \"rank\": 2071, \"rankvar\": 1837, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1490, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2063, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2167, \"group\": [2431.0, 359.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67823_BALBc-1_X01_Y02_598_978\", \"ini\": 1335, \"clust\": 1784, \"rank\": 253, \"rankvar\": 1038, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1491, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1249, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1532, \"group\": [1783.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68029_BALBc-1_X01_Y02_600_513\", \"ini\": 1334, \"clust\": 2431, \"rank\": 2492, \"rankvar\": 1947, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2568, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2392, \"group\": [2427.0, 359.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68242_BALBc-1_X01_Y02_603_235\", \"ini\": 1333, \"clust\": 2063, \"rank\": 2343, \"rankvar\": 2408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1493, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 235, \"cat-2\": \"Density: 20\", \"cat_2_index\": 161, \"group\": [2059.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68295_BALBc-1_X01_Y02_603_794\", \"ini\": 1332, \"clust\": 1444, \"rank\": 407, \"rankvar\": 462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1494, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2064, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2665, \"group\": [1450.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68341_BALBc-1_X01_Y02_604_634\", \"ini\": 1331, \"clust\": 995, \"rank\": 1526, \"rankvar\": 1104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1495, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2065, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2325, \"group\": [996.0, 223.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68346_BALBc-1_X01_Y02_604_71\", \"ini\": 1330, \"clust\": 2000, \"rank\": 2211, \"rankvar\": 2323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1496, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1250, \"cat-2\": \"Density: 25\", \"cat_2_index\": 663, \"group\": [1998.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68427_BALBc-1_X01_Y02_605_663\", \"ini\": 1329, \"clust\": 1973, \"rank\": 1146, \"rankvar\": 1548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1497, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2066, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2393, \"group\": [1968.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68484_BALBc-1_X01_Y02_606_336\", \"ini\": 1328, \"clust\": 2599, \"rank\": 1957, \"rankvar\": 1896, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1498, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2569, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1258, \"group\": [2595.0, 394.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68508_BALBc-1_X01_Y02_606_611\", \"ini\": 1327, \"clust\": 1036, \"rank\": 1082, \"rankvar\": 1000, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1499, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2067, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2747, \"group\": [1037.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68608_BALBc-1_X01_Y02_607_745\", \"ini\": 1326, \"clust\": 2403, \"rank\": 2186, \"rankvar\": 722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1500, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 236, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2524, \"group\": [2401.0, 355.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68626_BALBc-1_X01_Y02_607_953\", \"ini\": 1325, \"clust\": 2136, \"rank\": 1591, \"rankvar\": 1511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1501, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 625, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2326, \"group\": [2132.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68666_BALBc-1_X01_Y02_608_396\", \"ini\": 1324, \"clust\": 2815, \"rank\": 1736, \"rankvar\": 949, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1502, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2570, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2086, \"group\": [2813.0, 435.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68709_BALBc-1_X01_Y02_608_893\", \"ini\": 1323, \"clust\": 2761, \"rank\": 1475, \"rankvar\": 923, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1503, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2571, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2708, \"group\": [2762.0, 426.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68790_BALBc-1_X01_Y02_609_760\", \"ini\": 1322, \"clust\": 1692, \"rank\": 22, \"rankvar\": 465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1504, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 237, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2394, \"group\": [1691.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68847_BALBc-1_X01_Y02_61_732\", \"ini\": 1321, \"clust\": 2825, \"rank\": 1395, \"rankvar\": 1981, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1505, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2572, \"cat-2\": \"Density: 20\", \"cat_2_index\": 162, \"group\": [2822.0, 440.0, 106.0, 29.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68852_BALBc-1_X01_Y02_61_768\", \"ini\": 1320, \"clust\": 1202, \"rank\": 38, \"rankvar\": 802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1506, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2243, \"cat-2\": \"Density: 22\", \"cat_2_index\": 289, \"group\": [1202.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68930_BALBc-1_X01_Y02_610_841\", \"ini\": 1319, \"clust\": 2668, \"rank\": 2173, \"rankvar\": 2087, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1507, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2573, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2525, \"group\": [2665.0, 411.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69043_BALBc-1_X01_Y02_612_22\", \"ini\": 1318, \"clust\": 252, \"rank\": 2412, \"rankvar\": 2341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1508, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1974, \"cat-2\": \"Density: 24\", \"cat_2_index\": 525, \"group\": [251.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69048_BALBc-1_X01_Y02_612_265\", \"ini\": 1317, \"clust\": 911, \"rank\": 1168, \"rankvar\": 1251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1509, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2574, \"cat-2\": \"Density: 22\", \"cat_2_index\": 290, \"group\": [912.0, 212.0, 56.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69070_BALBc-1_X01_Y02_612_557\", \"ini\": 1316, \"clust\": 1927, \"rank\": 1761, \"rankvar\": 1013, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1510, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2068, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2469, \"group\": [1923.0, 294.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69187_BALBc-1_X01_Y02_614_192\", \"ini\": 1315, \"clust\": 1159, \"rank\": 318, \"rankvar\": 1817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1511, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2314, \"cat-2\": \"Density: 19\", \"cat_2_index\": 122, \"group\": [1160.0, 244.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69384_BALBc-1_X01_Y02_616_696\", \"ini\": 1314, \"clust\": 2407, \"rank\": 2284, \"rankvar\": 1661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1512, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2069, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2470, \"group\": [2405.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69441_BALBc-1_X01_Y02_617_581\", \"ini\": 1313, \"clust\": 2227, \"rank\": 890, \"rankvar\": 1376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1513, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2070, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2666, \"group\": [2225.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69814_BALBc-1_X01_Y02_621_448\", \"ini\": 1312, \"clust\": 2179, \"rank\": 1160, \"rankvar\": 1300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1514, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2071, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2252, \"group\": [2182.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69943_BALBc-1_X01_Y02_622_815\", \"ini\": 1311, \"clust\": 1767, \"rank\": 171, \"rankvar\": 825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1515, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2072, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2570, \"group\": [1765.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70167_BALBc-1_X01_Y02_625_622\", \"ini\": 1310, \"clust\": 2563, \"rank\": 2031, \"rankvar\": 1634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1516, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2073, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2667, \"group\": [2561.0, 390.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70245_BALBc-1_X01_Y02_626_657\", \"ini\": 1309, \"clust\": 945, \"rank\": 696, \"rankvar\": 602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1517, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2074, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2571, \"group\": [948.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70250_BALBc-1_X01_Y02_626_738\", \"ini\": 1308, \"clust\": 2398, \"rank\": 2213, \"rankvar\": 2265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1518, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2075, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2619, \"group\": [2394.0, 353.0, 83.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70390_BALBc-1_X01_Y02_628_794\", \"ini\": 1307, \"clust\": 1285, \"rank\": 301, \"rankvar\": 278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1519, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 915, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2620, \"group\": [1284.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70677_BALBc-1_X01_Y02_631_569\", \"ini\": 1306, \"clust\": 1622, \"rank\": 148, \"rankvar\": 193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1520, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 238, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2621, \"group\": [1628.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70732_BALBc-1_X01_Y02_632_214\", \"ini\": 1305, \"clust\": 1139, \"rank\": 542, \"rankvar\": 2400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1521, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2575, \"cat-2\": \"Density: 22\", \"cat_2_index\": 291, \"group\": [1137.0, 241.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70788_BALBc-1_X01_Y02_632_885\", \"ini\": 1304, \"clust\": 919, \"rank\": 1019, \"rankvar\": 570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1522, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2576, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2526, \"group\": [921.0, 215.0, 57.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70792_BALBc-1_X01_Y02_632_917\", \"ini\": 1303, \"clust\": 2555, \"rank\": 2027, \"rankvar\": 1001, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1523, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 626, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2622, \"group\": [2554.0, 389.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71010_BALBc-1_X01_Y02_635_775\", \"ini\": 1302, \"clust\": 2413, \"rank\": 2528, \"rankvar\": 2056, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1524, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2076, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2471, \"group\": [2409.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71015_BALBc-1_X01_Y02_635_841\", \"ini\": 1301, \"clust\": 2127, \"rank\": 1553, \"rankvar\": 461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1525, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 916, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2327, \"group\": [2127.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71192_BALBc-1_X01_Y02_638_152\", \"ini\": 1300, \"clust\": 2217, \"rank\": 613, \"rankvar\": 1321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1526, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1251, \"cat-2\": \"Density: 23\", \"cat_2_index\": 408, \"group\": [2210.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71313_BALBc-1_X01_Y02_639_527\", \"ini\": 1299, \"clust\": 2450, \"rank\": 2040, \"rankvar\": 1449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1527, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2077, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2395, \"group\": [2447.0, 366.0, 87.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71373_BALBc-1_X01_Y02_64_410\", \"ini\": 1298, \"clust\": 2458, \"rank\": 1769, \"rankvar\": 1710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1528, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1252, \"cat-2\": \"Density: 21\", \"cat_2_index\": 212, \"group\": [2456.0, 371.0, 89.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71596_BALBc-1_X01_Y02_642_538\", \"ini\": 1297, \"clust\": 876, \"rank\": 959, \"rankvar\": 928, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1529, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2078, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2328, \"group\": [879.0, 199.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71667_BALBc-1_X01_Y02_643_341\", \"ini\": 1296, \"clust\": 1564, \"rank\": 702, \"rankvar\": 441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1530, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2079, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1771, \"group\": [1563.0, 273.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71767_BALBc-1_X01_Y02_644_390\", \"ini\": 1295, \"clust\": 2650, \"rank\": 2018, \"rankvar\": 1117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1531, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2080, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1988, \"group\": [2647.0, 409.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71919_BALBc-1_X01_Y02_646_330\", \"ini\": 1294, \"clust\": 2764, \"rank\": 1833, \"rankvar\": 1593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1532, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2081, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1407, \"group\": [2760.0, 426.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72032_BALBc-1_X01_Y02_647_871\", \"ini\": 1293, \"clust\": 2634, \"rank\": 2591, \"rankvar\": 2187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1533, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2577, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2623, \"group\": [2634.0, 406.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72139_BALBc-1_X01_Y02_649_280\", \"ini\": 1292, \"clust\": 505, \"rank\": 2669, \"rankvar\": 2419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1534, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2578, \"cat-2\": \"Density: 26\", \"cat_2_index\": 808, \"group\": [508.0, 105.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72165_BALBc-1_X01_Y02_649_642\", \"ini\": 1291, \"clust\": 2620, \"rank\": 1782, \"rankvar\": 1752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1535, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2082, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2777, \"group\": [2618.0, 400.0, 96.0, 25.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72176_BALBc-1_X01_Y02_649_80\", \"ini\": 1290, \"clust\": 1164, \"rank\": 104, \"rankvar\": 1473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1536, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1253, \"cat-2\": \"Density: 22\", \"cat_2_index\": 292, \"group\": [1165.0, 244.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72245_BALBc-1_X01_Y02_65_662\", \"ini\": 1289, \"clust\": 1186, \"rank\": 571, \"rankvar\": 1298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1537, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1254, \"cat-2\": \"Density: 21\", \"cat_2_index\": 213, \"group\": [1189.0, 253.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72484_BALBc-1_X01_Y02_652_944\", \"ini\": 1288, \"clust\": 820, \"rank\": 1170, \"rankvar\": 1746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1538, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 239, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2253, \"group\": [828.0, 195.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72716_BALBc-1_X01_Y02_656_182\", \"ini\": 1287, \"clust\": 484, \"rank\": 2756, \"rankvar\": 2468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1539, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2579, \"cat-2\": \"Density: 24\", \"cat_2_index\": 526, \"group\": [485.0, 101.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72777_BALBc-1_X01_Y02_656_712\", \"ini\": 1286, \"clust\": 2430, \"rank\": 2461, \"rankvar\": 1889, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1540, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2083, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2624, \"group\": [2429.0, 359.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72835_BALBc-1_X01_Y02_657_361\", \"ini\": 1285, \"clust\": 1862, \"rank\": 484, \"rankvar\": 0, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1541, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2580, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2254, \"group\": [1872.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72877_BALBc-1_X01_Y02_657_890\", \"ini\": 1284, \"clust\": 1815, \"rank\": 130, \"rankvar\": 1422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 917, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2625, \"group\": [1815.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72970_BALBc-1_X01_Y02_659_402\", \"ini\": 1283, \"clust\": 1662, \"rank\": 5, \"rankvar\": 1095, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1543, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2084, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2168, \"group\": [1662.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72984_BALBc-1_X01_Y02_659_578\", \"ini\": 1282, \"clust\": 2416, \"rank\": 2227, \"rankvar\": 1226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1544, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2085, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2668, \"group\": [2413.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73026_BALBc-1_X01_Y02_659_964\", \"ini\": 1281, \"clust\": 2688, \"rank\": 2468, \"rankvar\": 2251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1545, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2581, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1772, \"group\": [2685.0, 414.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73130_BALBc-1_X01_Y02_660_371\", \"ini\": 1280, \"clust\": 1831, \"rank\": 464, \"rankvar\": 911, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1546, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 240, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2169, \"group\": [1828.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73323_BALBc-1_X01_Y02_662_515\", \"ini\": 1279, \"clust\": 587, \"rank\": 438, \"rankvar\": 1059, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1547, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2086, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2087, \"group\": [589.0, 134.0, 36.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73330_BALBc-1_X01_Y02_662_600\", \"ini\": 1278, \"clust\": 920, \"rank\": 903, \"rankvar\": 1121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1548, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2087, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2709, \"group\": [919.0, 215.0, 57.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73406_BALBc-1_X01_Y02_663_676\", \"ini\": 1277, \"clust\": 2333, \"rank\": 1442, \"rankvar\": 1120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1549, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2088, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2669, \"group\": [2330.0, 330.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73682_BALBc-1_X01_Y02_667_559\", \"ini\": 1276, \"clust\": 1584, \"rank\": 252, \"rankvar\": 1219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1550, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2089, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2626, \"group\": [1584.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73864_BALBc-1_X01_Y02_669_904\", \"ini\": 1275, \"clust\": 2569, \"rank\": 2215, \"rankvar\": 2033, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 241, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2396, \"group\": [2567.0, 391.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74137_BALBc-1_X01_Y02_672_747\", \"ini\": 1274, \"clust\": 1866, \"rank\": 175, \"rankvar\": 433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1552, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2090, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2572, \"group\": [1860.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74157_BALBc-1_X01_Y02_672_938\", \"ini\": 1273, \"clust\": 1639, \"rank\": 197, \"rankvar\": 373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1553, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1255, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2170, \"group\": [1644.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74183_BALBc-1_X01_Y02_673_288\", \"ini\": 1272, \"clust\": 1650, \"rank\": 143, \"rankvar\": 197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1554, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2091, \"cat-2\": \"Density: 27\", \"cat_2_index\": 958, \"group\": [1651.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74202_BALBc-1_X01_Y02_673_537\", \"ini\": 1271, \"clust\": 1498, \"rank\": 608, \"rankvar\": 228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1555, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2092, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2255, \"group\": [1496.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74319_BALBc-1_X01_Y02_674_785\", \"ini\": 1270, \"clust\": 1871, \"rank\": 219, \"rankvar\": 198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1556, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 918, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2527, \"group\": [1867.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74367_BALBc-1_X01_Y02_675_381\", \"ini\": 1269, \"clust\": 2652, \"rank\": 2428, \"rankvar\": 2126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1557, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 242, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2256, \"group\": [2649.0, 409.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74379_BALBc-1_X01_Y02_675_428\", \"ini\": 1268, \"clust\": 2419, \"rank\": 2310, \"rankvar\": 1761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1558, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2093, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2171, \"group\": [2414.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74438_BALBc-1_X01_Y02_676_159\", \"ini\": 1267, \"clust\": 190, \"rank\": 2525, \"rankvar\": 2699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1559, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2456, \"cat-2\": \"Density: 21\", \"cat_2_index\": 214, \"group\": [191.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74507_BALBc-1_X01_Y02_676_988\", \"ini\": 1266, \"clust\": 2772, \"rank\": 1507, \"rankvar\": 420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1560, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1256, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1112, \"group\": [2770.0, 426.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74529_BALBc-1_X01_Y02_677_328\", \"ini\": 1265, \"clust\": 1064, \"rank\": 1143, \"rankvar\": 930, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1561, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2094, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1773, \"group\": [1064.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74573_BALBc-1_X01_Y02_677_811\", \"ini\": 1264, \"clust\": 2446, \"rank\": 1914, \"rankvar\": 1301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1562, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1257, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2670, \"group\": [2444.0, 364.0, 86.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74598_BALBc-1_X01_Y02_678_172\", \"ini\": 1263, \"clust\": 2322, \"rank\": 2056, \"rankvar\": 1738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1563, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2582, \"cat-2\": \"Density: 24\", \"cat_2_index\": 527, \"group\": [2318.0, 324.0, 75.0, 19.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74641_BALBc-1_X01_Y02_678_615\", \"ini\": 1262, \"clust\": 2400, \"rank\": 2210, \"rankvar\": 2258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1564, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2095, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2778, \"group\": [2399.0, 353.0, 83.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74779_BALBc-1_X01_Y02_68_443\", \"ini\": 1261, \"clust\": 1308, \"rank\": 1041, \"rankvar\": 877, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1565, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 704, \"cat-2\": \"Density: 26\", \"cat_2_index\": 809, \"group\": [1311.0, 259.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74924_BALBc-1_X01_Y02_681_731\", \"ini\": 1260, \"clust\": 2682, \"rank\": 2190, \"rankvar\": 1627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1566, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2096, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2397, \"group\": [2678.0, 412.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75385_BALBc-1_X01_Y02_687_918\", \"ini\": 1259, \"clust\": 1805, \"rank\": 316, \"rankvar\": 174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1567, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1258, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2472, \"group\": [1805.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75452_BALBc-1_X01_Y02_688_793\", \"ini\": 1258, \"clust\": 2308, \"rank\": 1049, \"rankvar\": 1490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1568, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1259, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2573, \"group\": [2304.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75503_BALBc-1_X01_Y02_689_468\", \"ini\": 1257, \"clust\": 2417, \"rank\": 2516, \"rankvar\": 2289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1569, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2097, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2329, \"group\": [2417.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75575_BALBc-1_X01_Y02_69_548\", \"ini\": 1256, \"clust\": 2077, \"rank\": 2119, \"rankvar\": 2186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1570, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 243, \"cat-2\": \"Density: 26\", \"cat_2_index\": 810, \"group\": [2074.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75777_BALBc-1_X01_Y02_692_441\", \"ini\": 1255, \"clust\": 1699, \"rank\": 7, \"rankvar\": 803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1571, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 244, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1989, \"group\": [1696.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75798_BALBc-1_X01_Y02_692_654\", \"ini\": 1254, \"clust\": 2508, \"rank\": 1455, \"rankvar\": 300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1572, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2098, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2748, \"group\": [2504.0, 381.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75805_BALBc-1_X01_Y02_692_719\", \"ini\": 1253, \"clust\": 1279, \"rank\": 485, \"rankvar\": 641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1573, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2099, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2749, \"group\": [1279.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76045_BALBc-1_X01_Y02_695_763\", \"ini\": 1252, \"clust\": 2687, \"rank\": 2285, \"rankvar\": 1737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1574, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1260, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2671, \"group\": [2687.0, 414.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76047_BALBc-1_X01_Y02_695_820\", \"ini\": 1251, \"clust\": 435, \"rank\": 1321, \"rankvar\": 1551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1261, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2627, \"group\": [437.0, 85.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76155_BALBc-1_X01_Y02_697_37\", \"ini\": 1250, \"clust\": 138, \"rank\": 1532, \"rankvar\": 2026, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1576, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2492, \"cat-2\": \"Density: 20\", \"cat_2_index\": 163, \"group\": [138.0, 28.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76157_BALBc-1_X01_Y02_697_390\", \"ini\": 1249, \"clust\": 1655, \"rank\": 18, \"rankvar\": 788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1577, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 245, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2257, \"group\": [1656.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76261_BALBc-1_X01_Y02_698_588\", \"ini\": 1248, \"clust\": 382, \"rank\": 2711, \"rankvar\": 2807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1578, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2100, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2750, \"group\": [385.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76284_BALBc-1_X01_Y02_698_894\", \"ini\": 1247, \"clust\": 1668, \"rank\": 82, \"rankvar\": 973, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1579, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 919, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2710, \"group\": [1666.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76311_BALBc-1_X01_Y02_699_282\", \"ini\": 1246, \"clust\": 546, \"rank\": 2539, \"rankvar\": 1715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1580, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2583, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1259, \"group\": [545.0, 119.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76337_BALBc-1_X01_Y02_699_564\", \"ini\": 1245, \"clust\": 2678, \"rank\": 2347, \"rankvar\": 1628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1581, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2101, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2628, \"group\": [2676.0, 412.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76344_BALBc-1_X01_Y02_699_679\", \"ini\": 1244, \"clust\": 1033, \"rank\": 958, \"rankvar\": 1008, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1582, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2102, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2629, \"group\": [1032.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76479_BALBc-1_X01_Y02_70_471\", \"ini\": 1243, \"clust\": 389, \"rank\": 2427, \"rankvar\": 2538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1583, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2457, \"cat-2\": \"Density: 26\", \"cat_2_index\": 811, \"group\": [391.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76545_BALBc-1_X01_Y02_700_356\", \"ini\": 1242, \"clust\": 1379, \"rank\": 632, \"rankvar\": 24, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1584, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 246, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2088, \"group\": [1378.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76565_BALBc-1_X01_Y02_700_603\", \"ini\": 1241, \"clust\": 2368, \"rank\": 2508, \"rankvar\": 2421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1585, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 247, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2751, \"group\": [2366.0, 348.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76633_BALBc-1_X01_Y02_701_469\", \"ini\": 1240, \"clust\": 1810, \"rank\": 346, \"rankvar\": 493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1586, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 248, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2258, \"group\": [1807.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77012_BALBc-1_X01_Y02_706_499\", \"ini\": 1239, \"clust\": 921, \"rank\": 1437, \"rankvar\": 407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1587, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2103, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2330, \"group\": [920.0, 215.0, 57.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77022_BALBc-1_X01_Y02_706_622\", \"ini\": 1238, \"clust\": 1843, \"rank\": 722, \"rankvar\": 474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1588, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2104, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2711, \"group\": [1840.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77055_BALBc-1_X01_Y02_706_998\", \"ini\": 1237, \"clust\": 1376, \"rank\": 895, \"rankvar\": 293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1589, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1262, \"cat-2\": \"Density: 22\", \"cat_2_index\": 293, \"group\": [1377.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77190_BALBc-1_X01_Y02_708_738\", \"ini\": 1236, \"clust\": 972, \"rank\": 686, \"rankvar\": 311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1590, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1263, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2574, \"group\": [976.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77401_BALBc-1_X01_Y02_710_828\", \"ini\": 1235, \"clust\": 1395, \"rank\": 377, \"rankvar\": 397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1264, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2630, \"group\": [1394.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77491_BALBc-1_X01_Y02_711_906\", \"ini\": 1234, \"clust\": 2689, \"rank\": 2375, \"rankvar\": 2212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1592, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 249, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2672, \"group\": [2686.0, 414.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77533_BALBc-1_X01_Y02_712_413\", \"ini\": 1233, \"clust\": 2683, \"rank\": 2265, \"rankvar\": 1546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1593, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2105, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2331, \"group\": [2679.0, 412.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77644_BALBc-1_X01_Y02_713_803\", \"ini\": 1232, \"clust\": 402, \"rank\": 2588, \"rankvar\": 2387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1594, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1265, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2631, \"group\": [401.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77833_BALBc-1_X01_Y02_716_257\", \"ini\": 1231, \"clust\": 1505, \"rank\": 418, \"rankvar\": 130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1595, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2584, \"cat-2\": \"Density: 24\", \"cat_2_index\": 528, \"group\": [1503.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77991_BALBc-1_X01_Y02_718_159\", \"ini\": 1230, \"clust\": 233, \"rank\": 1799, \"rankvar\": 2447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1596, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2585, \"cat-2\": \"Density: 22\", \"cat_2_index\": 294, \"group\": [234.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78053_BALBc-1_X01_Y02_718_850\", \"ini\": 1229, \"clust\": 1053, \"rank\": 1387, \"rankvar\": 1587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1597, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1266, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2473, \"group\": [1053.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78060_BALBc-1_X01_Y02_718_925\", \"ini\": 1228, \"clust\": 1702, \"rank\": 107, \"rankvar\": 87, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1598, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1267, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2575, \"group\": [1700.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78089_BALBc-1_X01_Y02_719_369\", \"ini\": 1227, \"clust\": 1093, \"rank\": 701, \"rankvar\": 1040, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1599, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 250, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2172, \"group\": [1105.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78113_BALBc-1_X01_Y02_719_632\", \"ini\": 1226, \"clust\": 2432, \"rank\": 2459, \"rankvar\": 1919, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1600, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 251, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2752, \"group\": [2428.0, 359.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78309_BALBc-1_X01_Y02_721_333\", \"ini\": 1225, \"clust\": 1657, \"rank\": 23, \"rankvar\": 421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1601, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 252, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1990, \"group\": [1658.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78374_BALBc-1_X01_Y02_721_954\", \"ini\": 1224, \"clust\": 1733, \"rank\": 540, \"rankvar\": 46, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1602, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1268, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2089, \"group\": [1732.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78457_BALBc-1_X01_Y02_722_887\", \"ini\": 1223, \"clust\": 2743, \"rank\": 2194, \"rankvar\": 1411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1603, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 253, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2816, \"group\": [2745.0, 423.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78466_BALBc-1_X01_Y02_723_123\", \"ini\": 1222, \"clust\": 2079, \"rank\": 1898, \"rankvar\": 2219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1604, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 920, \"cat-2\": \"Density: 21\", \"cat_2_index\": 215, \"group\": [2075.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78589_BALBc-1_X01_Y02_724_723\", \"ini\": 1221, \"clust\": 2725, \"rank\": 2060, \"rankvar\": 1232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1605, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2106, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2474, \"group\": [2722.0, 419.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78729_BALBc-1_X01_Y02_726_667\", \"ini\": 1220, \"clust\": 1687, \"rank\": 47, \"rankvar\": 236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1606, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 254, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2753, \"group\": [1684.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78765_BALBc-1_X01_Y02_727_233\", \"ini\": 1219, \"clust\": 641, \"rank\": 2776, \"rankvar\": 2456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1607, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2586, \"cat-2\": \"Density: 25\", \"cat_2_index\": 664, \"group\": [644.0, 151.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78858_BALBc-1_X01_Y02_728_317\", \"ini\": 1218, \"clust\": 2193, \"rank\": 1332, \"rankvar\": 919, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1608, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 255, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2090, \"group\": [2191.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78883_BALBc-1_X01_Y02_728_677\", \"ini\": 1217, \"clust\": 877, \"rank\": 1095, \"rankvar\": 277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1609, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2107, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2632, \"group\": [878.0, 199.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78937_BALBc-1_X01_Y02_729_454\", \"ini\": 1216, \"clust\": 2596, \"rank\": 1748, \"rankvar\": 756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1610, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2108, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2259, \"group\": [2593.0, 394.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78946_BALBc-1_X01_Y02_729_586\", \"ini\": 1215, \"clust\": 2437, \"rank\": 2371, \"rankvar\": 1899, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1611, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2109, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2673, \"group\": [2434.0, 359.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79000_BALBc-1_X01_Y02_73_364\", \"ini\": 1214, \"clust\": 251, \"rank\": 2052, \"rankvar\": 2325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1612, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1269, \"cat-2\": \"Density: 21\", \"cat_2_index\": 216, \"group\": [253.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79124_BALBc-1_X01_Y02_730_931\", \"ini\": 1213, \"clust\": 2638, \"rank\": 2464, \"rankvar\": 2045, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1613, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1270, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2332, \"group\": [2636.0, 406.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79128_BALBc-1_X01_Y02_730_977\", \"ini\": 1212, \"clust\": 2097, \"rank\": 1818, \"rankvar\": 1138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1614, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1271, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1533, \"group\": [2095.0, 309.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79171_BALBc-1_X01_Y02_731_534\", \"ini\": 1211, \"clust\": 2786, \"rank\": 2165, \"rankvar\": 1915, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1615, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2110, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2633, \"group\": [2789.0, 428.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79269_BALBc-1_X01_Y02_732_742\", \"ini\": 1210, \"clust\": 277, \"rank\": 1109, \"rankvar\": 861, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1616, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1272, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2634, \"group\": [279.0, 56.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79364_BALBc-1_X01_Y02_733_888\", \"ini\": 1209, \"clust\": 1681, \"rank\": 28, \"rankvar\": 560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1617, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1273, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2635, \"group\": [1678.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79543_BALBc-1_X01_Y02_735_827\", \"ini\": 1208, \"clust\": 1636, \"rank\": 167, \"rankvar\": 15, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1618, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 256, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2528, \"group\": [1638.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79586_BALBc-1_X01_Y02_736_403\", \"ini\": 1207, \"clust\": 1340, \"rank\": 359, \"rankvar\": 404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1619, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2111, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2398, \"group\": [1340.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79601_BALBc-1_X01_Y02_736_604\", \"ini\": 1206, \"clust\": 1451, \"rank\": 387, \"rankvar\": 685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1620, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 257, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2636, \"group\": [1454.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79632_BALBc-1_X01_Y02_737_250\", \"ini\": 1205, \"clust\": 1688, \"rank\": 37, \"rankvar\": 253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1621, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 258, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1113, \"group\": [1685.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79634_BALBc-1_X01_Y02_737_3\", \"ini\": 1204, \"clust\": 2464, \"rank\": 2177, \"rankvar\": 2135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1622, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2812, \"cat-2\": \"Density: 25\", \"cat_2_index\": 665, \"group\": [2463.0, 372.0, 90.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79643_BALBc-1_X01_Y02_737_366\", \"ini\": 1203, \"clust\": 2528, \"rank\": 2148, \"rankvar\": 2184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1623, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 259, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2260, \"group\": [2525.0, 384.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79664_BALBc-1_X01_Y02_737_57\", \"ini\": 1202, \"clust\": 1936, \"rank\": 886, \"rankvar\": 1669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1624, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2493, \"cat-2\": \"Density: 22\", \"cat_2_index\": 295, \"group\": [1932.0, 296.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79820_BALBc-1_X01_Y02_739_546\", \"ini\": 1201, \"clust\": 2541, \"rank\": 1487, \"rankvar\": 1195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1625, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2112, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2754, \"group\": [2539.0, 386.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79964_BALBc-1_X01_Y02_740_484\", \"ini\": 1200, \"clust\": 2420, \"rank\": 2309, \"rankvar\": 1862, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1626, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 260, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1991, \"group\": [2415.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80233_BALBc-1_X01_Y02_744_315\", \"ini\": 1199, \"clust\": 963, \"rank\": 835, \"rankvar\": 1140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1627, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1274, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1992, \"group\": [962.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80367_BALBc-1_X01_Y02_746_112\", \"ini\": 1198, \"clust\": 2274, \"rank\": 1194, \"rankvar\": 2440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1628, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2315, \"cat-2\": \"Density: 20\", \"cat_2_index\": 164, \"group\": [2271.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80487_BALBc-1_X01_Y02_747_644\", \"ini\": 1197, \"clust\": 1850, \"rank\": 334, \"rankvar\": 993, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1629, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2113, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2779, \"group\": [1847.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80586_BALBc-1_X01_Y02_748_800\", \"ini\": 1196, \"clust\": 355, \"rank\": 2520, \"rankvar\": 1977, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1630, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1275, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2637, \"group\": [354.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80591_BALBc-1_X01_Y02_748_849\", \"ini\": 1195, \"clust\": 2722, \"rank\": 2358, \"rankvar\": 1791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1631, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 261, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2712, \"group\": [2719.0, 418.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80621_BALBc-1_X01_Y02_749_281\", \"ini\": 1194, \"clust\": 616, \"rank\": 1834, \"rankvar\": 615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1632, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 262, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1534, \"group\": [618.0, 143.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80660_BALBc-1_X01_Y02_749_710\", \"ini\": 1193, \"clust\": 2171, \"rank\": 851, \"rankvar\": 996, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1633, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 263, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2713, \"group\": [2172.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80840_BALBc-1_X01_Y02_750_977\", \"ini\": 1192, \"clust\": 1022, \"rank\": 336, \"rankvar\": 329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1634, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1276, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1665, \"group\": [1023.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80920_BALBc-1_X01_Y02_752_157\", \"ini\": 1191, \"clust\": 135, \"rank\": 1590, \"rankvar\": 1459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1635, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 264, \"cat-2\": \"Density: 21\", \"cat_2_index\": 217, \"group\": [134.0, 28.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80933_BALBc-1_X01_Y02_752_347\", \"ini\": 1190, \"clust\": 310, \"rank\": 2143, \"rankvar\": 2499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1636, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1277, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2173, \"group\": [313.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80959_BALBc-1_X01_Y02_752_681\", \"ini\": 1189, \"clust\": 2545, \"rank\": 1762, \"rankvar\": 1633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1637, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 265, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2576, \"group\": [2543.0, 388.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81055_BALBc-1_X01_Y02_753_730\", \"ini\": 1188, \"clust\": 2745, \"rank\": 2469, \"rankvar\": 2307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1638, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 266, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2674, \"group\": [2742.0, 423.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81183_BALBc-1_X01_Y02_755_360\", \"ini\": 1187, \"clust\": 950, \"rank\": 745, \"rankvar\": 280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1639, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1278, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2174, \"group\": [951.0, 220.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81243_BALBc-1_X01_Y02_756_213\", \"ini\": 1186, \"clust\": 1078, \"rank\": 1308, \"rankvar\": 997, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1640, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2587, \"cat-2\": \"Density: 24\", \"cat_2_index\": 529, \"group\": [1079.0, 230.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81269_BALBc-1_X01_Y02_756_466\", \"ini\": 1185, \"clust\": 2330, \"rank\": 1750, \"rankvar\": 1871, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1641, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 267, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2091, \"group\": [2328.0, 329.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81277_BALBc-1_X01_Y02_756_573\", \"ini\": 1184, \"clust\": 1195, \"rank\": 267, \"rankvar\": 477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1642, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 268, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2802, \"group\": [1194.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81309_BALBc-1_X01_Y02_756_874\", \"ini\": 1183, \"clust\": 286, \"rank\": 1411, \"rankvar\": 1355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1643, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1279, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2638, \"group\": [286.0, 58.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81353_BALBc-1_X01_Y02_757_444\", \"ini\": 1182, \"clust\": 2435, \"rank\": 1911, \"rankvar\": 851, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1644, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2114, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2175, \"group\": [2432.0, 359.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81355_BALBc-1_X01_Y02_757_476\", \"ini\": 1181, \"clust\": 1406, \"rank\": 1016, \"rankvar\": 164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1645, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2115, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2092, \"group\": [1413.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81446_BALBc-1_X01_Y02_758_596\", \"ini\": 1180, \"clust\": 2281, \"rank\": 1323, \"rankvar\": 1400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1646, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 269, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2780, \"group\": [2279.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81458_BALBc-1_X01_Y02_758_756\", \"ini\": 1179, \"clust\": 1568, \"rank\": 522, \"rankvar\": 920, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1647, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1280, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2714, \"group\": [1571.0, 274.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81459_BALBc-1_X01_Y02_758_783\", \"ini\": 1178, \"clust\": 1362, \"rank\": 1027, \"rankvar\": 754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1648, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1281, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2675, \"group\": [1363.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81463_BALBc-1_X01_Y02_758_825\", \"ini\": 1177, \"clust\": 493, \"rank\": 2483, \"rankvar\": 2412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1649, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 270, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2676, \"group\": [496.0, 104.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81725_BALBc-1_X01_Y02_761_43\", \"ini\": 1176, \"clust\": 2466, \"rank\": 2374, \"rankvar\": 2300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1650, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2316, \"cat-2\": \"Density: 20\", \"cat_2_index\": 165, \"group\": [2462.0, 372.0, 90.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81746_BALBc-1_X01_Y02_761_621\", \"ini\": 1175, \"clust\": 2672, \"rank\": 2678, \"rankvar\": 2291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1651, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2116, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2715, \"group\": [2670.0, 412.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81892_BALBc-1_X01_Y02_763_542\", \"ini\": 1174, \"clust\": 2542, \"rank\": 1546, \"rankvar\": 1808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1652, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 271, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2716, \"group\": [2542.0, 387.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82092_BALBc-1_X01_Y02_766_413\", \"ini\": 1173, \"clust\": 2327, \"rank\": 1032, \"rankvar\": 650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1653, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2117, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2176, \"group\": [2324.0, 328.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82120_BALBc-1_X01_Y02_766_839\", \"ini\": 1172, \"clust\": 1881, \"rank\": 311, \"rankvar\": 2053, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1654, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 272, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2781, \"group\": [1879.0, 278.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82269_BALBc-1_X01_Y02_768_578\", \"ini\": 1171, \"clust\": 2310, \"rank\": 1473, \"rankvar\": 1622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1655, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 273, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2677, \"group\": [2309.0, 319.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82462_BALBc-1_X01_Y02_770_223\", \"ini\": 1170, \"clust\": 1923, \"rank\": 1158, \"rankvar\": 1304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1656, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 274, \"cat-2\": \"Density: 25\", \"cat_2_index\": 666, \"group\": [1920.0, 294.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82468_BALBc-1_X01_Y02_770_255\", \"ini\": 1169, \"clust\": 973, \"rank\": 562, \"rankvar\": 444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1657, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 275, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1408, \"group\": [972.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82542_BALBc-1_X01_Y02_771_302\", \"ini\": 1168, \"clust\": 1567, \"rank\": 363, \"rankvar\": 508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1658, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1282, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1774, \"group\": [1567.0, 274.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82661_BALBc-1_X01_Y02_772_660\", \"ini\": 1167, \"clust\": 1791, \"rank\": 456, \"rankvar\": 156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1659, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2118, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2782, \"group\": [1791.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82801_BALBc-1_X01_Y02_774_517\", \"ini\": 1166, \"clust\": 966, \"rank\": 1209, \"rankvar\": 1535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1660, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2119, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2333, \"group\": [964.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82803_BALBc-1_X01_Y02_774_554\", \"ini\": 1165, \"clust\": 1100, \"rank\": 552, \"rankvar\": 910, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1661, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 276, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2678, \"group\": [1100.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82911_BALBc-1_X01_Y02_776_103\", \"ini\": 1164, \"clust\": 1943, \"rank\": 2075, \"rankvar\": 1897, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1662, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1283, \"cat-2\": \"Density: 20\", \"cat_2_index\": 166, \"group\": [1944.0, 301.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83429_BALBc-1_X01_Y02_781_749\", \"ini\": 1163, \"clust\": 2783, \"rank\": 1542, \"rankvar\": 1154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1663, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 277, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2679, \"group\": [2781.0, 427.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83606_BALBc-1_X01_Y02_784_170\", \"ini\": 1162, \"clust\": 120, \"rank\": 1052, \"rankvar\": 2286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1664, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 278, \"cat-2\": \"Density: 24\", \"cat_2_index\": 530, \"group\": [120.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83627_BALBc-1_X01_Y02_784_444\", \"ini\": 1161, \"clust\": 1730, \"rank\": 665, \"rankvar\": 112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1665, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 279, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2177, \"group\": [1727.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83644_BALBc-1_X01_Y02_784_688\", \"ini\": 1160, \"clust\": 1397, \"rank\": 852, \"rankvar\": 1286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1666, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 280, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2755, \"group\": [1399.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83649_BALBc-1_X01_Y02_784_705\", \"ini\": 1159, \"clust\": 2024, \"rank\": 2444, \"rankvar\": 2685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1667, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 281, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2577, \"group\": [2020.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83656_BALBc-1_X01_Y02_784_772\", \"ini\": 1158, \"clust\": 750, \"rank\": 1680, \"rankvar\": 665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1668, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 282, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2756, \"group\": [751.0, 169.0, 43.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83744_BALBc-1_X01_Y02_785_846\", \"ini\": 1157, \"clust\": 1041, \"rank\": 1102, \"rankvar\": 1060, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1669, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1284, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2803, \"group\": [1042.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83780_BALBc-1_X01_Y02_786_374\", \"ini\": 1156, \"clust\": 304, \"rank\": 2242, \"rankvar\": 2692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1670, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1285, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2178, \"group\": [307.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84081_BALBc-1_X01_Y02_789_906\", \"ini\": 1155, \"clust\": 514, \"rank\": 2039, \"rankvar\": 939, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1671, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1286, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2717, \"group\": [515.0, 108.0, 29.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84286_BALBc-1_X01_Y02_791_823\", \"ini\": 1154, \"clust\": 1291, \"rank\": 609, \"rankvar\": 219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1672, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 283, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2783, \"group\": [1292.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84428_BALBc-1_X01_Y02_793_482\", \"ini\": 1153, \"clust\": 2657, \"rank\": 2166, \"rankvar\": 1084, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1673, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2120, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2578, \"group\": [2653.0, 409.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84437_BALBc-1_X01_Y02_793_558\", \"ini\": 1152, \"clust\": 2658, \"rank\": 2094, \"rankvar\": 1275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1674, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 284, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2639, \"group\": [2654.0, 409.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84444_BALBc-1_X01_Y02_793_629\", \"ini\": 1151, \"clust\": 2369, \"rank\": 2084, \"rankvar\": 2166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1675, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2121, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2718, \"group\": [2367.0, 348.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84524_BALBc-1_X01_Y02_794_639\", \"ini\": 1150, \"clust\": 1004, \"rank\": 573, \"rankvar\": 1408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1676, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2122, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2719, \"group\": [1003.0, 224.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84668_BALBc-1_X01_Y02_796_252\", \"ini\": 1149, \"clust\": 1984, \"rank\": 1642, \"rankvar\": 1364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1677, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 285, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1114, \"group\": [1981.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84693_BALBc-1_X01_Y02_796_606\", \"ini\": 1148, \"clust\": 1006, \"rank\": 1320, \"rankvar\": 120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1678, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2123, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2822, \"group\": [1008.0, 224.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84771_BALBc-1_X01_Y02_797_576\", \"ini\": 1147, \"clust\": 1864, \"rank\": 534, \"rankvar\": 122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1679, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 286, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2804, \"group\": [1861.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84890_BALBc-1_X01_Y02_799_133\", \"ini\": 1146, \"clust\": 2260, \"rank\": 1226, \"rankvar\": 2152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1680, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1287, \"cat-2\": \"Density: 22\", \"cat_2_index\": 296, \"group\": [2255.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85210_BALBc-1_X01_Y02_801_416\", \"ini\": 1145, \"clust\": 2309, \"rank\": 1225, \"rankvar\": 368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1681, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2124, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2334, \"group\": [2310.0, 319.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85318_BALBc-1_X01_Y02_802_791\", \"ini\": 1144, \"clust\": 1407, \"rank\": 732, \"rankvar\": 434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1682, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 287, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2720, \"group\": [1407.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85392_BALBc-1_X01_Y02_803_774\", \"ini\": 1143, \"clust\": 2661, \"rank\": 2335, \"rankvar\": 1842, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1683, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 288, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2757, \"group\": [2657.0, 411.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85429_BALBc-1_X01_Y02_804_316\", \"ini\": 1142, \"clust\": 296, \"rank\": 1247, \"rankvar\": 1945, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1684, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1288, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1535, \"group\": [297.0, 62.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85448_BALBc-1_X01_Y02_804_541\", \"ini\": 1141, \"clust\": 2393, \"rank\": 1731, \"rankvar\": 148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1685, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 289, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2640, \"group\": [2390.0, 352.0, 83.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85463_BALBc-1_X01_Y02_804_714\", \"ini\": 1140, \"clust\": 1536, \"rank\": 556, \"rankvar\": 1, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1686, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 290, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2721, \"group\": [1542.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85557_BALBc-1_X01_Y02_805_753\", \"ini\": 1139, \"clust\": 1386, \"rank\": 692, \"rankvar\": 216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1687, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 291, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2758, \"group\": [1383.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85602_BALBc-1_X01_Y02_806_33\", \"ini\": 1138, \"clust\": 1734, \"rank\": 489, \"rankvar\": 29, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1688, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2458, \"cat-2\": \"Density: 25\", \"cat_2_index\": 667, \"group\": [1730.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85669_BALBc-1_X01_Y02_807_182\", \"ini\": 1137, \"clust\": 492, \"rank\": 2398, \"rankvar\": 2350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1689, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2588, \"cat-2\": \"Density: 27\", \"cat_2_index\": 959, \"group\": [492.0, 103.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85834_BALBc-1_X01_Y02_809_436\", \"ini\": 1136, \"clust\": 5, \"rank\": 1960, \"rankvar\": 1662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1690, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2125, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2261, \"group\": [6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85868_BALBc-1_X01_Y02_809_912\", \"ini\": 1135, \"clust\": 986, \"rank\": 813, \"rankvar\": 2213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1691, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1289, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2805, \"group\": [988.0, 222.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85898_BALBc-1_X01_Y02_81_389\", \"ini\": 1134, \"clust\": 1128, \"rank\": 950, \"rankvar\": 1608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1692, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1290, \"cat-2\": \"Density: 21\", \"cat_2_index\": 218, \"group\": [1128.0, 239.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85923_BALBc-1_X01_Y02_81_743\", \"ini\": 1133, \"clust\": 329, \"rank\": 2726, \"rankvar\": 2762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1693, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2589, \"cat-2\": \"Density: 25\", \"cat_2_index\": 668, \"group\": [335.0, 68.0, 18.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85974_BALBc-1_X01_Y02_810_459\", \"ini\": 1132, \"clust\": 1517, \"rank\": 700, \"rankvar\": 567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1694, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 292, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2262, \"group\": [1519.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85979_BALBc-1_X01_Y02_810_520\", \"ini\": 1131, \"clust\": 2559, \"rank\": 1923, \"rankvar\": 1279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1695, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2126, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2475, \"group\": [2558.0, 390.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86074_BALBc-1_X01_Y02_811_664\", \"ini\": 1130, \"clust\": 2696, \"rank\": 2330, \"rankvar\": 1303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1696, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 293, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2759, \"group\": [2695.0, 414.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86098_BALBc-1_X01_Y02_811_975\", \"ini\": 1129, \"clust\": 1417, \"rank\": 584, \"rankvar\": 364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1697, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1291, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1666, \"group\": [1417.0, 263.0, 65.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86157_BALBc-1_X01_Y02_812_892\", \"ini\": 1128, \"clust\": 2130, \"rank\": 1539, \"rankvar\": 1239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1698, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1292, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2806, \"group\": [2130.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86213_BALBc-1_X01_Y02_813_595\", \"ini\": 1127, \"clust\": 2353, \"rank\": 2471, \"rankvar\": 2165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1699, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 294, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2680, \"group\": [2352.0, 344.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86243_BALBc-1_X01_Y02_813_835\", \"ini\": 1126, \"clust\": 1793, \"rank\": 452, \"rankvar\": 155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1700, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 295, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2722, \"group\": [1790.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86335_BALBc-1_X01_Y02_814_809\", \"ini\": 1125, \"clust\": 988, \"rank\": 926, \"rankvar\": 648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1701, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 296, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2723, \"group\": [987.0, 222.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86391_BALBc-1_X01_Y02_815_690\", \"ini\": 1124, \"clust\": 1466, \"rank\": 726, \"rankvar\": 9, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1702, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 297, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2784, \"group\": [1467.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86425_BALBc-1_X01_Y02_816_222\", \"ini\": 1123, \"clust\": 2203, \"rank\": 1205, \"rankvar\": 1579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1703, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 298, \"cat-2\": \"Density: 27\", \"cat_2_index\": 960, \"group\": [2201.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86647_BALBc-1_X01_Y02_819_250\", \"ini\": 1122, \"clust\": 2641, \"rank\": 1756, \"rankvar\": 843, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1704, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 299, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1115, \"group\": [2638.0, 407.0, 99.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86676_BALBc-1_X01_Y02_819_581\", \"ini\": 1121, \"clust\": 2409, \"rank\": 2301, \"rankvar\": 1880, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1705, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 300, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2681, \"group\": [2407.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86754_BALBc-1_X01_Y02_82_796\", \"ini\": 1120, \"clust\": 1930, \"rank\": 1501, \"rankvar\": 2044, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1706, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1293, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1116, \"group\": [1929.0, 296.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86790_BALBc-1_X01_Y02_820_302\", \"ini\": 1119, \"clust\": 2313, \"rank\": 1417, \"rankvar\": 1067, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1707, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 301, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1775, \"group\": [2313.0, 319.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86794_BALBc-1_X01_Y02_820_348\", \"ini\": 1118, \"clust\": 346, \"rank\": 2779, \"rankvar\": 2767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1708, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1294, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2093, \"group\": [343.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86829_BALBc-1_X01_Y02_820_75\", \"ini\": 1117, \"clust\": 2178, \"rank\": 1062, \"rankvar\": 687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1709, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1295, \"cat-2\": \"Density: 22\", \"cat_2_index\": 297, \"group\": [2183.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86839_BALBc-1_X01_Y02_820_855\", \"ini\": 1116, \"clust\": 1405, \"rank\": 974, \"rankvar\": 953, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1710, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1296, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2785, \"group\": [1404.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86899_BALBc-1_X01_Y02_821_630\", \"ini\": 1115, \"clust\": 2775, \"rank\": 1627, \"rankvar\": 1312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1711, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 302, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2724, \"group\": [2773.0, 427.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87034_BALBc-1_X01_Y02_823_34\", \"ini\": 1114, \"clust\": 543, \"rank\": 1993, \"rankvar\": 670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1712, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2459, \"cat-2\": \"Density: 25\", \"cat_2_index\": 669, \"group\": [544.0, 118.0, 31.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87221_BALBc-1_X01_Y02_825_543\", \"ini\": 1113, \"clust\": 2212, \"rank\": 765, \"rankvar\": 1474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1713, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 303, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2579, \"group\": [2208.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87372_BALBc-1_X01_Y02_827_730\", \"ini\": 1112, \"clust\": 2669, \"rank\": 2029, \"rankvar\": 1142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1714, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 304, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2682, \"group\": [2666.0, 411.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87470_BALBc-1_X01_Y02_828_775\", \"ini\": 1111, \"clust\": 1243, \"rank\": 1176, \"rankvar\": 491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1715, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2127, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2760, \"group\": [1244.0, 256.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87639_BALBc-1_X01_Y02_830_197\", \"ini\": 1110, \"clust\": 1408, \"rank\": 706, \"rankvar\": 409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1716, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1297, \"cat-2\": \"Density: 24\", \"cat_2_index\": 531, \"group\": [1408.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87741_BALBc-1_X01_Y02_831_562\", \"ini\": 1109, \"clust\": 724, \"rank\": 2652, \"rankvar\": 2179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1717, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 305, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2641, \"group\": [723.0, 162.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87745_BALBc-1_X01_Y02_831_662\", \"ini\": 1108, \"clust\": 1344, \"rank\": 643, \"rankvar\": 518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1718, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1298, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2725, \"group\": [1343.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87997_BALBc-1_X01_Y02_835_259\", \"ini\": 1107, \"clust\": 1295, \"rank\": 1054, \"rankvar\": 746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1719, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 306, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1409, \"group\": [1295.0, 258.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88002_BALBc-1_X01_Y02_835_327\", \"ini\": 1106, \"clust\": 1596, \"rank\": 596, \"rankvar\": 59, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1720, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2590, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1993, \"group\": [1597.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88095_BALBc-1_X01_Y02_836_515\", \"ini\": 1105, \"clust\": 1917, \"rank\": 1229, \"rankvar\": 1285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1721, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2128, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2580, \"group\": [1914.0, 292.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88266_BALBc-1_X01_Y02_838_738\", \"ini\": 1104, \"clust\": 1755, \"rank\": 271, \"rankvar\": 486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1722, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 307, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2761, \"group\": [1757.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88354_BALBc-1_X01_Y02_839_825\", \"ini\": 1103, \"clust\": 353, \"rank\": 2783, \"rankvar\": 2789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1723, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 308, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2823, \"group\": [353.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88357_BALBc-1_X01_Y02_839_852\", \"ini\": 1102, \"clust\": 2471, \"rank\": 1826, \"rankvar\": 716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1724, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1299, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2817, \"group\": [2469.0, 374.0, 91.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88496_BALBc-1_X01_Y02_840_696\", \"ini\": 1101, \"clust\": 1341, \"rank\": 550, \"rankvar\": 157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1725, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1300, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2762, \"group\": [1341.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88510_BALBc-1_X01_Y02_840_903\", \"ini\": 1100, \"clust\": 720, \"rank\": 2432, \"rankvar\": 2315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1726, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1301, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2807, \"group\": [720.0, 162.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88541_BALBc-1_X01_Y02_841_302\", \"ini\": 1099, \"clust\": 270, \"rank\": 1450, \"rankvar\": 1170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1727, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2591, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1994, \"group\": [271.0, 54.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88548_BALBc-1_X01_Y02_841_352\", \"ini\": 1098, \"clust\": 1914, \"rank\": 1253, \"rankvar\": 1410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1728, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2129, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2335, \"group\": [1911.0, 292.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88675_BALBc-1_X01_Y02_843_224\", \"ini\": 1097, \"clust\": 1494, \"rank\": 566, \"rankvar\": 167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1729, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1302, \"cat-2\": \"Density: 26\", \"cat_2_index\": 812, \"group\": [1491.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88693_BALBc-1_X01_Y02_843_446\", \"ini\": 1096, \"clust\": 2371, \"rank\": 2267, \"rankvar\": 1794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1730, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2130, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2399, \"group\": [2369.0, 348.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88704_BALBc-1_X01_Y02_843_602\", \"ini\": 1095, \"clust\": 2336, \"rank\": 1995, \"rankvar\": 1838, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1731, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2131, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2763, \"group\": [2334.0, 330.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88810_BALBc-1_X01_Y02_844_808\", \"ini\": 1094, \"clust\": 1220, \"rank\": 634, \"rankvar\": 501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1732, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 309, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2764, \"group\": [1221.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88868_BALBc-1_X01_Y02_845_558\", \"ini\": 1093, \"clust\": 1690, \"rank\": 16, \"rankvar\": 625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1733, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 310, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2683, \"group\": [1686.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88930_BALBc-1_X01_Y02_846_528\", \"ini\": 1092, \"clust\": 717, \"rank\": 2236, \"rankvar\": 1347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1734, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 311, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2400, \"group\": [718.0, 161.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89014_BALBc-1_X01_Y02_847_497\", \"ini\": 1091, \"clust\": 794, \"rank\": 1235, \"rankvar\": 482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1735, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2132, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2476, \"group\": [797.0, 189.0, 49.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89025_BALBc-1_X01_Y02_847_613\", \"ini\": 1090, \"clust\": 2779, \"rank\": 1610, \"rankvar\": 1592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1736, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2133, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2808, \"group\": [2777.0, 427.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89310_BALBc-1_X01_Y02_850_368\", \"ini\": 1089, \"clust\": 1008, \"rank\": 1139, \"rankvar\": 634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1737, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2134, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2336, \"group\": [1007.0, 224.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89480_BALBc-1_X01_Y02_852_712\", \"ini\": 1088, \"clust\": 1701, \"rank\": 165, \"rankvar\": 43, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1738, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1303, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2684, \"group\": [1699.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89535_BALBc-1_X01_Y02_853_431\", \"ini\": 1087, \"clust\": 1311, \"rank\": 945, \"rankvar\": 1328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1739, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2135, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2401, \"group\": [1322.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89554_BALBc-1_X01_Y02_853_632\", \"ini\": 1086, \"clust\": 1841, \"rank\": 424, \"rankvar\": 590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1740, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 312, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2685, \"group\": [1839.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89574_BALBc-1_X01_Y02_853_890\", \"ini\": 1085, \"clust\": 1196, \"rank\": 564, \"rankvar\": 245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1741, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1304, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2786, \"group\": [1195.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89619_BALBc-1_X01_Y02_854_42\", \"ini\": 1084, \"clust\": 222, \"rank\": 1397, \"rankvar\": 1655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1742, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1975, \"cat-2\": \"Density: 25\", \"cat_2_index\": 670, \"group\": [223.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89667_BALBc-1_X01_Y02_854_933\", \"ini\": 1083, \"clust\": 806, \"rank\": 1439, \"rankvar\": 1176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1743, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1305, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2642, \"group\": [808.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89670_BALBc-1_X01_Y02_854_970\", \"ini\": 1082, \"clust\": 1696, \"rank\": 17, \"rankvar\": 640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1744, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1306, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1776, \"group\": [1693.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89808_BALBc-1_X01_Y02_856_577\", \"ini\": 1081, \"clust\": 941, \"rank\": 649, \"rankvar\": 269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1745, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2136, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2787, \"group\": [940.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89834_BALBc-1_X01_Y02_856_743\", \"ini\": 1080, \"clust\": 2553, \"rank\": 1796, \"rankvar\": 1562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1746, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2137, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2686, \"group\": [2550.0, 388.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89916_BALBc-1_X01_Y02_857_916\", \"ini\": 1079, \"clust\": 1845, \"rank\": 362, \"rankvar\": 966, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1747, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1307, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2765, \"group\": [1873.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90046_BALBc-1_X01_Y02_859_832\", \"ini\": 1078, \"clust\": 1316, \"rank\": 633, \"rankvar\": 812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1748, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 313, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2788, \"group\": [1315.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90073_BALBc-1_X01_Y02_86_249\", \"ini\": 1077, \"clust\": 2351, \"rank\": 2615, \"rankvar\": 2531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1749, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1308, \"cat-2\": \"Density: 24\", \"cat_2_index\": 532, \"group\": [2347.0, 341.0, 80.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90207_BALBc-1_X01_Y02_860_848\", \"ini\": 1076, \"clust\": 391, \"rank\": 2035, \"rankvar\": 2255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1750, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1309, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2726, \"group\": [388.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90347_BALBc-1_X01_Y02_862_790\", \"ini\": 1075, \"clust\": 725, \"rank\": 2557, \"rankvar\": 1673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1751, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2138, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2687, \"group\": [725.0, 162.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90484_BALBc-1_X01_Y02_864_649\", \"ini\": 1074, \"clust\": 2438, \"rank\": 2453, \"rankvar\": 2415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1752, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 314, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2824, \"group\": [2435.0, 359.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90517_BALBc-1_X01_Y02_865_117\", \"ini\": 1073, \"clust\": 2236, \"rank\": 934, \"rankvar\": 790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1753, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1310, \"cat-2\": \"Density: 25\", \"cat_2_index\": 671, \"group\": [2233.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90526_BALBc-1_X01_Y02_865_275\", \"ini\": 1072, \"clust\": 1103, \"rank\": 496, \"rankvar\": 396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1754, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2592, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1536, \"group\": [1103.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90627_BALBc-1_X01_Y02_866_672\", \"ini\": 1071, \"clust\": 390, \"rank\": 2391, \"rankvar\": 2494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1755, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1311, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2766, \"group\": [390.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90717_BALBc-1_X01_Y02_867_77\", \"ini\": 1070, \"clust\": 1980, \"rank\": 1513, \"rankvar\": 1382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1756, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1312, \"cat-2\": \"Density: 23\", \"cat_2_index\": 409, \"group\": [1982.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90877_BALBc-1_X01_Y02_869_470\", \"ini\": 1069, \"clust\": 772, \"rank\": 1377, \"rankvar\": 1359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1757, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 315, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2477, \"group\": [772.0, 176.0, 45.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91022_BALBc-1_X01_Y02_870_430\", \"ini\": 1068, \"clust\": 878, \"rank\": 858, \"rankvar\": 88, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1758, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 316, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2263, \"group\": [876.0, 199.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91052_BALBc-1_X01_Y02_870_812\", \"ini\": 1067, \"clust\": 1847, \"rank\": 569, \"rankvar\": 192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1759, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 317, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2809, \"group\": [1844.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91129_BALBc-1_X01_Y02_871_893\", \"ini\": 1066, \"clust\": 394, \"rank\": 2724, \"rankvar\": 2472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1760, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1313, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2789, \"group\": [393.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91141_BALBc-1_X01_Y02_872_170\", \"ini\": 1065, \"clust\": 1264, \"rank\": 759, \"rankvar\": 658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1761, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1314, \"cat-2\": \"Density: 24\", \"cat_2_index\": 533, \"group\": [1267.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91166_BALBc-1_X01_Y02_872_397\", \"ini\": 1064, \"clust\": 1669, \"rank\": 98, \"rankvar\": 947, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1762, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2139, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2337, \"group\": [1667.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91495_BALBc-1_X01_Y02_876_48\", \"ini\": 1063, \"clust\": 1125, \"rank\": 930, \"rankvar\": 306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1763, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2593, \"cat-2\": \"Density: 24\", \"cat_2_index\": 534, \"group\": [1124.0, 237.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91511_BALBc-1_X01_Y02_876_712\", \"ini\": 1062, \"clust\": 793, \"rank\": 1270, \"rankvar\": 286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1764, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1315, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2581, \"group\": [794.0, 188.0, 49.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91600_BALBc-1_X01_Y02_877_848\", \"ini\": 1061, \"clust\": 1828, \"rank\": 386, \"rankvar\": 703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1765, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1316, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2688, \"group\": [1825.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91734_BALBc-1_X01_Y02_879_562\", \"ini\": 1060, \"clust\": 2290, \"rank\": 1601, \"rankvar\": 1445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1766, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2140, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2478, \"group\": [2286.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91760_BALBc-1_X01_Y02_879_747\", \"ini\": 1059, \"clust\": 366, \"rank\": 2685, \"rankvar\": 2503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1767, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2141, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2767, \"group\": [366.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91896_BALBc-1_X01_Y02_880_618\", \"ini\": 1058, \"clust\": 2812, \"rank\": 2214, \"rankvar\": 1510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1768, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2142, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2768, \"group\": [2808.0, 435.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91987_BALBc-1_X01_Y02_881_761\", \"ini\": 1057, \"clust\": 1274, \"rank\": 777, \"rankvar\": 541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1769, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2143, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2727, \"group\": [1277.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92091_BALBc-1_X01_Y02_883_354\", \"ini\": 1056, \"clust\": 1256, \"rank\": 517, \"rankvar\": 139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1770, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 318, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2264, \"group\": [1255.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92101_BALBc-1_X01_Y02_883_525\", \"ini\": 1055, \"clust\": 1188, \"rank\": 812, \"rankvar\": 561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1771, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 319, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2479, \"group\": [1186.0, 253.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92192_BALBc-1_X01_Y02_884_787\", \"ini\": 1054, \"clust\": 442, \"rank\": 1303, \"rankvar\": 1294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1772, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2144, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2790, \"group\": [442.0, 87.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92232_BALBc-1_X01_Y02_885_452\", \"ini\": 1053, \"clust\": 1621, \"rank\": 151, \"rankvar\": 237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1773, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 320, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2402, \"group\": [1629.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92319_BALBc-1_X01_Y02_886_720\", \"ini\": 1052, \"clust\": 1795, \"rank\": 282, \"rankvar\": 318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1774, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 321, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2728, \"group\": [1793.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92390_BALBc-1_X01_Y02_887_673\", \"ini\": 1051, \"clust\": 993, \"rank\": 936, \"rankvar\": 683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1775, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1317, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2729, \"group\": [993.0, 222.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92396_BALBc-1_X01_Y02_887_730\", \"ini\": 1050, \"clust\": 2426, \"rank\": 2043, \"rankvar\": 1217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1776, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 322, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2582, \"group\": [2422.0, 357.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92444_BALBc-1_X01_Y02_888_377\", \"ini\": 1049, \"clust\": 656, \"rank\": 2200, \"rankvar\": 2043, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1777, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 323, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2403, \"group\": [657.0, 155.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92446_BALBc-1_X01_Y02_888_392\", \"ini\": 1048, \"clust\": 2785, \"rank\": 1931, \"rankvar\": 1695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1778, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 324, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2265, \"group\": [2783.0, 428.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92557_BALBc-1_X01_Y02_889_842\", \"ini\": 1047, \"clust\": 369, \"rank\": 2475, \"rankvar\": 2346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1779, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1318, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2810, \"group\": [368.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92644_BALBc-1_X01_Y02_890_129\", \"ini\": 1046, \"clust\": 2606, \"rank\": 1289, \"rankvar\": 1124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1780, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2594, \"cat-2\": \"Density: 27\", \"cat_2_index\": 961, \"group\": [2603.0, 396.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92729_BALBc-1_X01_Y02_891_16\", \"ini\": 1045, \"clust\": 253, \"rank\": 2102, \"rankvar\": 2151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1781, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2595, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1117, \"group\": [252.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92737_BALBc-1_X01_Y02_891_219\", \"ini\": 1044, \"clust\": 1548, \"rank\": 505, \"rankvar\": 359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1782, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1319, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1260, \"group\": [1546.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92747_BALBc-1_X01_Y02_891_339\", \"ini\": 1043, \"clust\": 597, \"rank\": 1955, \"rankvar\": 1684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1783, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2596, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2266, \"group\": [598.0, 138.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92963_BALBc-1_X01_Y02_894_270\", \"ini\": 1042, \"clust\": 2372, \"rank\": 1802, \"rankvar\": 1429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1784, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2597, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1410, \"group\": [2370.0, 348.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92994_BALBc-1_X01_Y02_894_579\", \"ini\": 1041, \"clust\": 363, \"rank\": 2282, \"rankvar\": 2207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1785, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2145, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2643, \"group\": [361.0, 73.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93017_BALBc-1_X01_Y02_894_895\", \"ini\": 1040, \"clust\": 430, \"rank\": 1956, \"rankvar\": 2150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1786, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1320, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2644, \"group\": [428.0, 83.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93023_BALBc-1_X01_Y02_894_972\", \"ini\": 1039, \"clust\": 967, \"rank\": 1112, \"rankvar\": 1729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1787, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1321, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1261, \"group\": [965.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93058_BALBc-1_X01_Y02_895_417\", \"ini\": 1038, \"clust\": 1374, \"rank\": 805, \"rankvar\": 246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1788, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 325, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2179, \"group\": [1371.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93151_BALBc-1_X01_Y02_896_819\", \"ini\": 1037, \"clust\": 322, \"rank\": 1423, \"rankvar\": 2236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1789, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1322, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2791, \"group\": [321.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93204_BALBc-1_X01_Y02_897_498\", \"ini\": 1036, \"clust\": 2711, \"rank\": 1895, \"rankvar\": 1165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1790, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 326, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2480, \"group\": [2708.0, 416.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93411_BALBc-1_X01_Y02_9_314\", \"ini\": 1035, \"clust\": 168, \"rank\": 1893, \"rankvar\": 2233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1791, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1323, \"cat-2\": \"Density: 12\", \"cat_2_index\": 8, \"group\": [169.0, 39.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93436_BALBc-1_X01_Y02_9_681\", \"ini\": 1034, \"clust\": 2804, \"rank\": 2204, \"rankvar\": 785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1792, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 327, \"cat-2\": \"Density: 12\", \"cat_2_index\": 9, \"group\": [2802.0, 433.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93586_BALBc-1_X01_Y02_900_660\", \"ini\": 1033, \"clust\": 2331, \"rank\": 1465, \"rankvar\": 1394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1793, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 328, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2645, \"group\": [2331.0, 330.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93735_BALBc-1_X01_Y02_902_696\", \"ini\": 1032, \"clust\": 672, \"rank\": 2368, \"rankvar\": 2040, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1794, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 329, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2646, \"group\": [672.0, 157.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93759_BALBc-1_X01_Y02_903_167\", \"ini\": 1031, \"clust\": 1868, \"rank\": 149, \"rankvar\": 153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1795, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2813, \"cat-2\": \"Density: 25\", \"cat_2_index\": 672, \"group\": [1864.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93900_BALBc-1_X01_Y02_905_185\", \"ini\": 1030, \"clust\": 278, \"rank\": 1042, \"rankvar\": 1855, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1796, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2598, \"cat-2\": \"Density: 27\", \"cat_2_index\": 962, \"group\": [277.0, 56.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93911_BALBc-1_X01_Y02_905_312\", \"ini\": 1029, \"clust\": 1390, \"rank\": 652, \"rankvar\": 760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1797, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2599, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1878, \"group\": [1390.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94069_BALBc-1_X01_Y02_907_471\", \"ini\": 1028, \"clust\": 2647, \"rank\": 2104, \"rankvar\": 1205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1798, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 330, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2481, \"group\": [2646.0, 409.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94075_BALBc-1_X01_Y02_907_532\", \"ini\": 1027, \"clust\": 1541, \"rank\": 302, \"rankvar\": 80, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1799, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 331, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2180, \"group\": [1538.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94153_BALBc-1_X01_Y02_908_623\", \"ini\": 1026, \"clust\": 1399, \"rank\": 737, \"rankvar\": 712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1800, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1976, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2583, \"group\": [1398.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94234_BALBc-1_X01_Y02_909_73\", \"ini\": 1025, \"clust\": 258, \"rank\": 2604, \"rankvar\": 2582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1801, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2600, \"cat-2\": \"Density: 25\", \"cat_2_index\": 673, \"group\": [255.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94463_BALBc-1_X01_Y02_911_790\", \"ini\": 1024, \"clust\": 1925, \"rank\": 1735, \"rankvar\": 1225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1802, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1324, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2730, \"group\": [1924.0, 294.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94538_BALBc-1_X01_Y02_912_752\", \"ini\": 1023, \"clust\": 2145, \"rank\": 1760, \"rankvar\": 1443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1803, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2317, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2769, \"group\": [2143.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94605_BALBc-1_X01_Y02_913_728\", \"ini\": 1022, \"clust\": 985, \"rank\": 863, \"rankvar\": 1235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1804, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2318, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2584, \"group\": [989.0, 222.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94692_BALBc-1_X01_Y02_914_972\", \"ini\": 1021, \"clust\": 748, \"rank\": 2044, \"rankvar\": 1532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1805, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1325, \"cat-2\": \"Density: 27\", \"cat_2_index\": 963, \"group\": [748.0, 168.0, 43.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94737_BALBc-1_X01_Y02_915_653\", \"ini\": 1020, \"clust\": 2670, \"rank\": 1791, \"rankvar\": 1624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1806, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 332, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2647, \"group\": [2667.0, 411.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94800_BALBc-1_X01_Y02_916_392\", \"ini\": 1019, \"clust\": 879, \"rank\": 1111, \"rankvar\": 50, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1807, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 333, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2404, \"group\": [877.0, 199.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94865_BALBc-1_X01_Y02_917_414\", \"ini\": 1018, \"clust\": 1731, \"rank\": 535, \"rankvar\": 356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1808, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 334, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2267, \"group\": [1728.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94917_BALBc-1_X01_Y02_918_144\", \"ini\": 1017, \"clust\": 959, \"rank\": 1198, \"rankvar\": 244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1809, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2601, \"cat-2\": \"Density: 23\", \"cat_2_index\": 410, \"group\": [959.0, 220.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94976_BALBc-1_X01_Y02_918_685\", \"ini\": 1016, \"clust\": 2675, \"rank\": 2380, \"rankvar\": 1914, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1810, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 335, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2585, \"group\": [2673.0, 412.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95031_BALBc-1_X01_Y02_919_496\", \"ini\": 1015, \"clust\": 1773, \"rank\": 458, \"rankvar\": 90, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1811, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 336, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2181, \"group\": [1769.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95151_BALBc-1_X01_Y02_920_106\", \"ini\": 1014, \"clust\": 1509, \"rank\": 558, \"rankvar\": 182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1812, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2602, \"cat-2\": \"Density: 25\", \"cat_2_index\": 674, \"group\": [1509.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95247_BALBc-1_X01_Y02_921_339\", \"ini\": 1013, \"clust\": 1357, \"rank\": 821, \"rankvar\": 2, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1813, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 337, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2268, \"group\": [1358.0, 261.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95323_BALBc-1_X01_Y02_922_248\", \"ini\": 1012, \"clust\": 2510, \"rank\": 1399, \"rankvar\": 1401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1814, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2603, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1411, \"group\": [2507.0, 381.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95511_BALBc-1_X01_Y02_924_552\", \"ini\": 1011, \"clust\": 395, \"rank\": 2778, \"rankvar\": 2698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1815, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 338, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2405, \"group\": [394.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95603_BALBc-1_X01_Y02_925_713\", \"ini\": 1010, \"clust\": 2143, \"rank\": 2067, \"rankvar\": 1802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1816, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2319, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2770, \"group\": [2141.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95670_BALBc-1_X01_Y02_926_592\", \"ini\": 1009, \"clust\": 392, \"rank\": 2221, \"rankvar\": 2555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1817, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1977, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2586, \"group\": [389.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95679_BALBc-1_X01_Y02_926_670\", \"ini\": 1008, \"clust\": 1578, \"rank\": 494, \"rankvar\": 276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1818, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 339, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2689, \"group\": [1578.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95702_BALBc-1_X01_Y02_926_934\", \"ini\": 1007, \"clust\": 667, \"rank\": 2822, \"rankvar\": 2823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1819, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1326, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2529, \"group\": [668.0, 156.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95782_BALBc-1_X01_Y02_927_871\", \"ini\": 1006, \"clust\": 1628, \"rank\": 40, \"rankvar\": 375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1820, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1327, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2818, \"group\": [1624.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95802_BALBc-1_X01_Y02_928_19\", \"ini\": 1005, \"clust\": 1153, \"rank\": 577, \"rankvar\": 1178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1821, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2604, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1262, \"group\": [1155.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95821_BALBc-1_X01_Y02_928_362\", \"ini\": 1004, \"clust\": 1902, \"rank\": 834, \"rankvar\": 258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1822, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 340, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2482, \"group\": [1900.0, 291.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95912_BALBc-1_X01_Y02_929_417\", \"ini\": 1003, \"clust\": 1602, \"rank\": 180, \"rankvar\": 10, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1823, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 341, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2483, \"group\": [1601.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95959_BALBc-1_X01_Y02_93_212\", \"ini\": 1002, \"clust\": 1472, \"rank\": 419, \"rankvar\": 1756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1824, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2244, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1263, \"group\": [1473.0, 268.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96011_BALBc-1_X01_Y02_93_891\", \"ini\": 1001, \"clust\": 1929, \"rank\": 2001, \"rankvar\": 2386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1825, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2320, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1264, \"group\": [1930.0, 296.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96026_BALBc-1_X01_Y02_930_183\", \"ini\": 1000, \"clust\": 350, \"rank\": 2800, \"rankvar\": 2821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1826, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2605, \"cat-2\": \"Density: 25\", \"cat_2_index\": 675, \"group\": [350.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96035_BALBc-1_X01_Y02_930_310\", \"ini\": 999, \"clust\": 1065, \"rank\": 1116, \"rankvar\": 550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1827, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2321, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2094, \"group\": [1065.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96049_BALBc-1_X01_Y02_930_522\", \"ini\": 998, \"clust\": 1907, \"rank\": 1218, \"rankvar\": 563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1828, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 342, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2182, \"group\": [1904.0, 291.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96059_BALBc-1_X01_Y02_930_618\", \"ini\": 997, \"clust\": 2659, \"rank\": 2079, \"rankvar\": 810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1829, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 343, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2587, \"group\": [2660.0, 411.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96129_BALBc-1_X01_Y02_931_639\", \"ini\": 996, \"clust\": 1226, \"rank\": 602, \"rankvar\": 389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1830, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 344, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2588, \"group\": [1226.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96358_BALBc-1_X01_Y02_934_786\", \"ini\": 995, \"clust\": 416, \"rank\": 1624, \"rankvar\": 2197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1831, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1328, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2690, \"group\": [417.0, 81.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96494_BALBc-1_X01_Y02_936_390\", \"ini\": 994, \"clust\": 955, \"rank\": 906, \"rankvar\": 372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1832, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 345, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2484, \"group\": [955.0, 220.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96556_BALBc-1_X01_Y02_937_334\", \"ini\": 993, \"clust\": 943, \"rank\": 597, \"rankvar\": 828, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1833, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 346, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2485, \"group\": [943.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96785_BALBc-1_X01_Y02_94_443\", \"ini\": 992, \"clust\": 1888, \"rank\": 1909, \"rankvar\": 1516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1834, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2460, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1118, \"group\": [1883.0, 280.0, 67.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96861_BALBc-1_X01_Y02_940_441\", \"ini\": 991, \"clust\": 2733, \"rank\": 1688, \"rankvar\": 675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1835, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 347, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2406, \"group\": [2733.0, 422.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97094_BALBc-1_X01_Y02_943_554\", \"ini\": 990, \"clust\": 1377, \"rank\": 881, \"rankvar\": 290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1836, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 348, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2183, \"group\": [1375.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97328_BALBc-1_X01_Y02_946_392\", \"ini\": 989, \"clust\": 1381, \"rank\": 762, \"rankvar\": 113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1837, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 349, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2530, \"group\": [1380.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97429_BALBc-1_X01_Y02_947_898\", \"ini\": 988, \"clust\": 1391, \"rank\": 356, \"rankvar\": 1375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1838, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1329, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2691, \"group\": [1391.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97487_BALBc-1_X01_Y02_948_863\", \"ini\": 987, \"clust\": 324, \"rank\": 2394, \"rankvar\": 1389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1839, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1658, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2771, \"group\": [325.0, 65.0, 18.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97559_BALBc-1_X01_Y02_949_682\", \"ini\": 986, \"clust\": 1027, \"rank\": 425, \"rankvar\": 858, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1840, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 350, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2692, \"group\": [1025.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97703_BALBc-1_X01_Y02_950_608\", \"ini\": 985, \"clust\": 1872, \"rank\": 147, \"rankvar\": 369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1841, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2146, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2648, \"group\": [1868.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97845_BALBc-1_X01_Y02_952_483\", \"ini\": 984, \"clust\": 2594, \"rank\": 1749, \"rankvar\": 456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1842, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 351, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2531, \"group\": [2594.0, 394.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97851_BALBc-1_X01_Y02_952_581\", \"ini\": 983, \"clust\": 403, \"rank\": 2729, \"rankvar\": 2713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1843, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 352, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2532, \"group\": [402.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97911_BALBc-1_X01_Y02_953_421\", \"ini\": 982, \"clust\": 1788, \"rank\": 426, \"rankvar\": 620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1844, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 353, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2649, \"group\": [1786.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98041_BALBc-1_X01_Y02_955_11\", \"ini\": 981, \"clust\": 713, \"rank\": 2416, \"rankvar\": 2337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1845, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1330, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1265, \"group\": [711.0, 159.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98050_BALBc-1_X01_Y02_955_156\", \"ini\": 980, \"clust\": 1890, \"rank\": 1505, \"rankvar\": 1659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1846, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2606, \"cat-2\": \"Density: 27\", \"cat_2_index\": 964, \"group\": [1888.0, 283.0, 68.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98324_BALBc-1_X01_Y02_958_818\", \"ini\": 979, \"clust\": 1418, \"rank\": 727, \"rankvar\": 432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1847, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1331, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2589, \"group\": [1418.0, 263.0, 65.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98534_BALBc-1_X01_Y02_960_63\", \"ini\": 978, \"clust\": 2177, \"rank\": 748, \"rankvar\": 1160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1848, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2607, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1412, \"group\": [2174.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98596_BALBc-1_X01_Y02_961_438\", \"ini\": 977, \"clust\": 2773, \"rank\": 1660, \"rankvar\": 723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1849, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2608, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2693, \"group\": [2771.0, 426.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98752_BALBc-1_X01_Y02_963_631\", \"ini\": 976, \"clust\": 881, \"rank\": 1028, \"rankvar\": 956, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1850, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2147, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2486, \"group\": [882.0, 201.0, 53.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98837_BALBc-1_X01_Y02_964_510\", \"ini\": 975, \"clust\": 2662, \"rank\": 2522, \"rankvar\": 2203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1851, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 354, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2407, \"group\": [2658.0, 411.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98921_BALBc-1_X01_Y02_965_673\", \"ini\": 974, \"clust\": 2557, \"rank\": 1941, \"rankvar\": 1432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1852, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 355, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2694, \"group\": [2553.0, 389.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98956_BALBc-1_X01_Y02_966_344\", \"ini\": 973, \"clust\": 1587, \"rank\": 794, \"rankvar\": 580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1853, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 356, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2487, \"group\": [1588.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99211_BALBc-1_X01_Y02_969_41\", \"ini\": 972, \"clust\": 1273, \"rank\": 861, \"rankvar\": 116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1854, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1332, \"cat-2\": \"Density: 26\", \"cat_2_index\": 813, \"group\": [1274.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99244_BALBc-1_X01_Y02_969_891\", \"ini\": 971, \"clust\": 374, \"rank\": 2164, \"rankvar\": 2070, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1855, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1333, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2488, \"group\": [372.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99284_BALBc-1_X01_Y02_97_366\", \"ini\": 970, \"clust\": 1735, \"rank\": 309, \"rankvar\": 54, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1856, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1334, \"cat-2\": \"Density: 24\", \"cat_2_index\": 535, \"group\": [1731.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99306_BALBc-1_X01_Y02_97_619\", \"ini\": 969, \"clust\": 55, \"rank\": 1927, \"rankvar\": 2375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1857, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1335, \"cat-2\": \"Density: 24\", \"cat_2_index\": 536, \"group\": [61.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99355_BALBc-1_X01_Y02_970_403\", \"ini\": 968, \"clust\": 929, \"rank\": 1089, \"rankvar\": 307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1858, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 357, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2695, \"group\": [930.0, 217.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99386_BALBc-1_X01_Y02_970_788\", \"ini\": 967, \"clust\": 2631, \"rank\": 2411, \"rankvar\": 2320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1859, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1336, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2533, \"group\": [2629.0, 405.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99599_BALBc-1_X01_Y02_973_494\", \"ini\": 966, \"clust\": 1647, \"rank\": 100, \"rankvar\": 367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1860, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 358, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2489, \"group\": [1648.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99666_BALBc-1_X01_Y02_974_301\", \"ini\": 965, \"clust\": 1981, \"rank\": 1767, \"rankvar\": 1213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1861, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2148, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1995, \"group\": [1978.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99919_BALBc-1_X01_Y02_977_839\", \"ini\": 964, \"clust\": 367, \"rank\": 2763, \"rankvar\": 2583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1862, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2814, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2338, \"group\": [367.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99966_BALBc-1_X01_Y02_978_469\", \"ini\": 963, \"clust\": 1325, \"rank\": 570, \"rankvar\": 651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1863, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2609, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2792, \"group\": [1327.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99984_BALBc-1_X01_Y02_978_659\", \"ini\": 962, \"clust\": 6, \"rank\": 2138, \"rankvar\": 1258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1864, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2149, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2490, \"group\": [7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99988_BALBc-1_X01_Y02_978_700\", \"ini\": 961, \"clust\": 1297, \"rank\": 657, \"rankvar\": 1337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1865, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 359, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2731, \"group\": [1305.0, 259.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100113_BALBc-1_X01_Y02_98_33\", \"ini\": 960, \"clust\": 165, \"rank\": 1614, \"rankvar\": 1637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1866, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1337, \"cat-2\": \"Density: 20\", \"cat_2_index\": 167, \"group\": [166.0, 38.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100128_BALBc-1_X01_Y02_98_529\", \"ini\": 959, \"clust\": 1252, \"rank\": 474, \"rankvar\": 58, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1867, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2322, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1667, \"group\": [1252.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100158_BALBc-1_X01_Y02_98_936\", \"ini\": 958, \"clust\": 2490, \"rank\": 2488, \"rankvar\": 2667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1868, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1751, \"cat-2\": \"Density: 26\", \"cat_2_index\": 814, \"group\": [2488.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100196_BALBc-1_X01_Y02_980_535\", \"ini\": 957, \"clust\": 2752, \"rank\": 872, \"rankvar\": 1109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1869, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 360, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2491, \"group\": [2749.0, 424.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100343_BALBc-1_X01_Y02_982_719\", \"ini\": 956, \"clust\": 1063, \"rank\": 1099, \"rankvar\": 1089, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1870, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1338, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2534, \"group\": [1066.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100409_BALBc-1_X01_Y02_983_525\", \"ini\": 955, \"clust\": 1821, \"rank\": 341, \"rankvar\": 1071, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1871, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 361, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2535, \"group\": [1817.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100453_BALBc-1_X01_Y02_984_217\", \"ini\": 954, \"clust\": 2339, \"rank\": 1876, \"rankvar\": 1053, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1872, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2610, \"cat-2\": \"Density: 25\", \"cat_2_index\": 676, \"group\": [2337.0, 332.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100476_BALBc-1_X01_Y02_984_546\", \"ini\": 953, \"clust\": 2422, \"rank\": 2533, \"rankvar\": 2083, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1873, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 362, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2536, \"group\": [2419.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100533_BALBc-1_X01_Y02_985_319\", \"ini\": 952, \"clust\": 730, \"rank\": 2585, \"rankvar\": 2371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1874, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 363, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1777, \"group\": [730.0, 162.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100537_BALBc-1_X01_Y02_985_370\", \"ini\": 951, \"clust\": 1221, \"rank\": 840, \"rankvar\": 710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1875, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 364, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2537, \"group\": [1225.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100546_BALBc-1_X01_Y02_985_427\", \"ini\": 950, \"clust\": 666, \"rank\": 2495, \"rankvar\": 959, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1876, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2611, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2732, \"group\": [669.0, 156.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100828_BALBc-1_X01_Y02_989_180\", \"ini\": 949, \"clust\": 1441, \"rank\": 242, \"rankvar\": 1177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1877, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2612, \"cat-2\": \"Density: 26\", \"cat_2_index\": 815, \"group\": [1442.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101159_BALBc-1_X01_Y02_992_512\", \"ini\": 948, \"clust\": 1227, \"rank\": 495, \"rankvar\": 529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1878, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 365, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2650, \"group\": [1227.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101202_BALBc-1_X01_Y02_992_939\", \"ini\": 947, \"clust\": 1519, \"rank\": 656, \"rankvar\": 783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1879, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1339, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1668, \"group\": [1518.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101248_BALBc-1_X01_Y02_993_593\", \"ini\": 946, \"clust\": 1757, \"rank\": 221, \"rankvar\": 292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1880, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2150, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2590, \"group\": [1755.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101494_BALBc-1_X01_Y02_996_395\", \"ini\": 945, \"clust\": 2292, \"rank\": 856, \"rankvar\": 744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1881, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2613, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2772, \"group\": [2293.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101598_BALBc-1_X01_Y02_997_656\", \"ini\": 944, \"clust\": 356, \"rank\": 2497, \"rankvar\": 2353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1882, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2151, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2591, \"group\": [355.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101724_BALBc-1_X01_Y02_999_337\", \"ini\": 943, \"clust\": 1774, \"rank\": 392, \"rankvar\": 41, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1883, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 366, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2269, \"group\": [1770.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-742_BALBc-1_X02_Y02_100_496\", \"ini\": 942, \"clust\": 1504, \"rank\": 444, \"rankvar\": 39, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1884, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1340, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1879, \"group\": [1505.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-763_BALBc-1_X02_Y02_100_736\", \"ini\": 941, \"clust\": 1060, \"rank\": 1367, \"rankvar\": 1667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1885, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1341, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1880, \"group\": [1060.0, 228.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-824_BALBc-1_X02_Y02_1000_584\", \"ini\": 940, \"clust\": 952, \"rank\": 576, \"rankvar\": 235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1886, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1581, \"cat-2\": \"Density: 26\", \"cat_2_index\": 816, \"group\": [953.0, 220.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1111_BALBc-1_X02_Y02_1004_421\", \"ini\": 939, \"clust\": 2181, \"rank\": 829, \"rankvar\": 901, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1887, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 921, \"cat-2\": \"Density: 23\", \"cat_2_index\": 411, \"group\": [2176.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1386_BALBc-1_X02_Y02_1007_914\", \"ini\": 938, \"clust\": 589, \"rank\": 991, \"rankvar\": 1843, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1888, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2152, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1266, \"group\": [588.0, 134.0, 36.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1461_BALBc-1_X02_Y02_1008_949\", \"ini\": 937, \"clust\": 790, \"rank\": 1408, \"rankvar\": 196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1889, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2153, \"cat-2\": \"Density: 22\", \"cat_2_index\": 298, \"group\": [790.0, 187.0, 49.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1779_BALBc-1_X02_Y02_1011_766\", \"ini\": 936, \"clust\": 1901, \"rank\": 2063, \"rankvar\": 1926, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1890, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2614, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1669, \"group\": [1898.0, 289.0, 69.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1887_BALBc-1_X02_Y02_1013_366\", \"ini\": 935, \"clust\": 1607, \"rank\": 240, \"rankvar\": 71, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1891, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 367, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1267, \"group\": [1608.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2061_BALBc-1_X02_Y02_1015_519\", \"ini\": 934, \"clust\": 1974, \"rank\": 1536, \"rankvar\": 1908, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1892, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2615, \"cat-2\": \"Density: 23\", \"cat_2_index\": 412, \"group\": [1971.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2081_BALBc-1_X02_Y02_1015_789\", \"ini\": 933, \"clust\": 1388, \"rank\": 445, \"rankvar\": 1133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1893, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1119, \"group\": [1389.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2117_BALBc-1_X02_Y02_1016_330\", \"ini\": 932, \"clust\": 2002, \"rank\": 1483, \"rankvar\": 1468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1894, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1978, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1120, \"group\": [2000.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2209_BALBc-1_X02_Y02_1017_624\", \"ini\": 931, \"clust\": 2155, \"rank\": 1422, \"rankvar\": 1101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1895, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2617, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1413, \"group\": [2153.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2250_BALBc-1_X02_Y02_1017_995\", \"ini\": 930, \"clust\": 2429, \"rank\": 2648, \"rankvar\": 2000, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1896, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2154, \"cat-2\": \"Density: 16\", \"cat_2_index\": 61, \"group\": [2430.0, 359.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2321_BALBc-1_X02_Y02_1018_895\", \"ini\": 929, \"clust\": 1366, \"rank\": 853, \"rankvar\": 500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1897, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2155, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1121, \"group\": [1366.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2469_BALBc-1_X02_Y02_1020_120\", \"ini\": 928, \"clust\": 2323, \"rank\": 1582, \"rankvar\": 655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1898, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1342, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1537, \"group\": [2319.0, 324.0, 75.0, 19.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2761_BALBc-1_X02_Y02_1023_729\", \"ini\": 927, \"clust\": 1572, \"rank\": 462, \"rankvar\": 916, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1899, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1343, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1996, \"group\": [1573.0, 274.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2871_BALBc-1_X02_Y02_1025_203\", \"ini\": 926, \"clust\": 301, \"rank\": 1915, \"rankvar\": 2088, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1900, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 848, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1268, \"group\": [301.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2901_BALBc-1_X02_Y02_1025_465\", \"ini\": 925, \"clust\": 490, \"rank\": 2336, \"rankvar\": 599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1901, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2618, \"cat-2\": \"Density: 24\", \"cat_2_index\": 537, \"group\": [493.0, 103.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3027_BALBc-1_X02_Y02_1027_146\", \"ini\": 924, \"clust\": 2707, \"rank\": 1522, \"rankvar\": 1803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1902, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1344, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1670, \"group\": [2705.0, 416.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3163_BALBc-1_X02_Y02_1028_557\", \"ini\": 923, \"clust\": 2475, \"rank\": 1992, \"rankvar\": 1461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1903, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1582, \"cat-2\": \"Density: 25\", \"cat_2_index\": 677, \"group\": [2471.0, 376.0, 91.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3345_BALBc-1_X02_Y02_103_855\", \"ini\": 922, \"clust\": 284, \"rank\": 1855, \"rankvar\": 958, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1904, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1345, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1269, \"group\": [287.0, 59.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3406_BALBc-1_X02_Y02_1030_786\", \"ini\": 921, \"clust\": 697, \"rank\": 2780, \"rankvar\": 2771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1905, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2619, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1414, \"group\": [698.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3462_BALBc-1_X02_Y02_1031_450\", \"ini\": 920, \"clust\": 1453, \"rank\": 80, \"rankvar\": 1088, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1906, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 368, \"cat-2\": \"Density: 24\", \"cat_2_index\": 538, \"group\": [1453.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3716_BALBc-1_X02_Y02_1034_825\", \"ini\": 919, \"clust\": 980, \"rank\": 502, \"rankvar\": 1077, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1907, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2620, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1415, \"group\": [981.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3723_BALBc-1_X02_Y02_1034_946\", \"ini\": 918, \"clust\": 1746, \"rank\": 32, \"rankvar\": 646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1908, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 369, \"cat-2\": \"Density: 21\", \"cat_2_index\": 219, \"group\": [1744.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3800_BALBc-1_X02_Y02_1035_754\", \"ini\": 917, \"clust\": 1031, \"rank\": 859, \"rankvar\": 795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1909, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2621, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1538, \"group\": [1033.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3958_BALBc-1_X02_Y02_1037_680\", \"ini\": 916, \"clust\": 1777, \"rank\": 232, \"rankvar\": 138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1910, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1346, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1881, \"group\": [1775.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3996_BALBc-1_X02_Y02_1038_233\", \"ini\": 915, \"clust\": 2223, \"rank\": 914, \"rankvar\": 1338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1911, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1347, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1416, \"group\": [2221.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4123_BALBc-1_X02_Y02_1039_704\", \"ini\": 914, \"clust\": 303, \"rank\": 2016, \"rankvar\": 1439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1912, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1348, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1997, \"group\": [310.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4307_BALBc-1_X02_Y02_1041_402\", \"ini\": 913, \"clust\": 1535, \"rank\": 439, \"rankvar\": 104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1913, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 922, \"cat-2\": \"Density: 25\", \"cat_2_index\": 678, \"group\": [1535.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4349_BALBc-1_X02_Y02_1041_855\", \"ini\": 912, \"clust\": 1402, \"rank\": 1080, \"rankvar\": 1327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1914, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2787, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1270, \"group\": [1402.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4398_BALBc-1_X02_Y02_1042_440\", \"ini\": 911, \"clust\": 250, \"rank\": 2406, \"rankvar\": 1999, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1915, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 923, \"cat-2\": \"Density: 27\", \"cat_2_index\": 965, \"group\": [254.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4443_BALBc-1_X02_Y02_1042_919\", \"ini\": 910, \"clust\": 181, \"rank\": 2529, \"rankvar\": 2157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1916, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 370, \"cat-2\": \"Density: 23\", \"cat_2_index\": 413, \"group\": [181.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4730_BALBc-1_X02_Y02_1046_644\", \"ini\": 909, \"clust\": 1645, \"rank\": 266, \"rankvar\": 140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1917, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2622, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1671, \"group\": [1646.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5035_BALBc-1_X02_Y02_105_291\", \"ini\": 908, \"clust\": 1957, \"rank\": 1537, \"rankvar\": 1976, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1918, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2623, \"cat-2\": \"Density: 21\", \"cat_2_index\": 220, \"group\": [1955.0, 303.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5098_BALBc-1_X02_Y02_1050_351\", \"ini\": 907, \"clust\": 1131, \"rank\": 157, \"rankvar\": 1600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1919, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 371, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1271, \"group\": [1130.0, 239.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5288_BALBc-1_X02_Y02_1052_892\", \"ini\": 906, \"clust\": 566, \"rank\": 1443, \"rankvar\": 787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1920, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 372, \"cat-2\": \"Density: 25\", \"cat_2_index\": 679, \"group\": [565.0, 125.0, 33.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5378_BALBc-1_X02_Y02_1054_302\", \"ini\": 905, \"clust\": 686, \"rank\": 2626, \"rankvar\": 2398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1921, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1979, \"cat-2\": \"Density: 26\", \"cat_2_index\": 817, \"group\": [686.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5521_BALBc-1_X02_Y02_1055_965\", \"ini\": 904, \"clust\": 2570, \"rank\": 1870, \"rankvar\": 945, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1922, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2624, \"cat-2\": \"Density: 20\", \"cat_2_index\": 168, \"group\": [2570.0, 391.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5598_BALBc-1_X02_Y02_1056_814\", \"ini\": 903, \"clust\": 1330, \"rank\": 557, \"rankvar\": 886, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1923, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 373, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1417, \"group\": [1331.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5789_BALBc-1_X02_Y02_1059_368\", \"ini\": 902, \"clust\": 643, \"rank\": 2737, \"rankvar\": 2524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1924, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1659, \"cat-2\": \"Density: 27\", \"cat_2_index\": 966, \"group\": [643.0, 151.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5813_BALBc-1_X02_Y02_1059_633\", \"ini\": 901, \"clust\": 2317, \"rank\": 1276, \"rankvar\": 543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1925, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 374, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1998, \"group\": [2315.0, 321.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5959_BALBc-1_X02_Y02_1060_547\", \"ini\": 900, \"clust\": 325, \"rank\": 1530, \"rankvar\": 2111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1926, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2625, \"cat-2\": \"Density: 24\", \"cat_2_index\": 539, \"group\": [326.0, 66.0, 18.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5972_BALBc-1_X02_Y02_1060_686\", \"ini\": 899, \"clust\": 1749, \"rank\": 79, \"rankvar\": 379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1927, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 375, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1882, \"group\": [1746.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6003_BALBc-1_X02_Y02_1061_164\", \"ini\": 898, \"clust\": 626, \"rank\": 2619, \"rankvar\": 2459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1928, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1349, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1672, \"group\": [625.0, 146.0, 38.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6056_BALBc-1_X02_Y02_1061_611\", \"ini\": 897, \"clust\": 1260, \"rank\": 824, \"rankvar\": 223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1929, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1583, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1673, \"group\": [1261.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6125_BALBc-1_X02_Y02_1062_291\", \"ini\": 896, \"clust\": 2233, \"rank\": 811, \"rankvar\": 1571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1930, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2788, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1272, \"group\": [2230.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6156_BALBc-1_X02_Y02_1062_576\", \"ini\": 895, \"clust\": 294, \"rank\": 2091, \"rankvar\": 2193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1931, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1584, \"cat-2\": \"Density: 27\", \"cat_2_index\": 967, \"group\": [295.0, 61.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6277_BALBc-1_X02_Y02_1064_324\", \"ini\": 894, \"clust\": 1598, \"rank\": 402, \"rankvar\": 64, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1932, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 376, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1122, \"group\": [1599.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6307_BALBc-1_X02_Y02_1064_651\", \"ini\": 893, \"clust\": 2714, \"rank\": 1828, \"rankvar\": 1335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1933, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 377, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1883, \"group\": [2711.0, 416.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6501_BALBc-1_X02_Y02_1067_391\", \"ini\": 892, \"clust\": 1714, \"rank\": 430, \"rankvar\": 188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1934, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1660, \"cat-2\": \"Density: 27\", \"cat_2_index\": 968, \"group\": [1712.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6716_BALBc-1_X02_Y02_1069_716\", \"ini\": 891, \"clust\": 928, \"rank\": 1278, \"rankvar\": 419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1935, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2626, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2095, \"group\": [929.0, 217.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6732_BALBc-1_X02_Y02_1069_881\", \"ini\": 890, \"clust\": 547, \"rank\": 2519, \"rankvar\": 2156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1936, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2789, \"cat-2\": \"Density: 25\", \"cat_2_index\": 680, \"group\": [546.0, 119.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6777_BALBc-1_X02_Y02_107_560\", \"ini\": 889, \"clust\": 397, \"rank\": 2705, \"rankvar\": 2708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1937, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1569, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2096, \"group\": [396.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6883_BALBc-1_X02_Y02_1070_927\", \"ini\": 888, \"clust\": 101, \"rank\": 1065, \"rankvar\": 897, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1938, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2627, \"cat-2\": \"Density: 22\", \"cat_2_index\": 299, \"group\": [104.0, 23.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6955_BALBc-1_X02_Y02_1071_815\", \"ini\": 887, \"clust\": 1375, \"rank\": 736, \"rankvar\": 202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1939, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2790, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1539, \"group\": [1372.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7044_BALBc-1_X02_Y02_1072_750\", \"ini\": 886, \"clust\": 932, \"rank\": 1458, \"rankvar\": 128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1940, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2628, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1884, \"group\": [933.0, 218.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7048_BALBc-1_X02_Y02_1072_786\", \"ini\": 885, \"clust\": 1863, \"rank\": 321, \"rankvar\": 291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1941, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2629, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1674, \"group\": [1862.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7330_BALBc-1_X02_Y02_1076_192\", \"ini\": 884, \"clust\": 1497, \"rank\": 691, \"rankvar\": 99, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1942, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1350, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1418, \"group\": [1498.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7866_BALBc-1_X02_Y02_1082_334\", \"ini\": 883, \"clust\": 2300, \"rank\": 1056, \"rankvar\": 1103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1943, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1661, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1273, \"group\": [2300.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8112_BALBc-1_X02_Y02_1085_691\", \"ini\": 882, \"clust\": 930, \"rank\": 1001, \"rankvar\": 673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1944, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 378, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1885, \"group\": [931.0, 217.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8233_BALBc-1_X02_Y02_1087_411\", \"ini\": 881, \"clust\": 1107, \"rank\": 1115, \"rankvar\": 460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1945, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1662, \"cat-2\": \"Density: 27\", \"cat_2_index\": 969, \"group\": [1108.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8249_BALBc-1_X02_Y02_1087_626\", \"ini\": 880, \"clust\": 1703, \"rank\": 55, \"rankvar\": 232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1946, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 379, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1886, \"group\": [1701.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8448_BALBc-1_X02_Y02_109_151\", \"ini\": 879, \"clust\": 2072, \"rank\": 1645, \"rankvar\": 1814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1947, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2630, \"cat-2\": \"Density: 23\", \"cat_2_index\": 414, \"group\": [2072.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8463_BALBc-1_X02_Y02_109_451\", \"ini\": 878, \"clust\": 984, \"rank\": 898, \"rankvar\": 991, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1948, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2631, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1675, \"group\": [983.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8476_BALBc-1_X02_Y02_109_610\", \"ini\": 877, \"clust\": 2159, \"rank\": 1446, \"rankvar\": 1671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1949, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1351, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2097, \"group\": [2162.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8551_BALBc-1_X02_Y02_1090_469\", \"ini\": 876, \"clust\": 289, \"rank\": 1863, \"rankvar\": 978, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1950, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2632, \"cat-2\": \"Density: 24\", \"cat_2_index\": 540, \"group\": [289.0, 60.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8576_BALBc-1_X02_Y02_1090_711\", \"ini\": 875, \"clust\": 1803, \"rank\": 161, \"rankvar\": 224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1951, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2156, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2098, \"group\": [1801.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8913_BALBc-1_X02_Y02_1095_144\", \"ini\": 874, \"clust\": 259, \"rank\": 2666, \"rankvar\": 2634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1952, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1663, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1274, \"group\": [256.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8990_BALBc-1_X02_Y02_1096_180\", \"ini\": 873, \"clust\": 1694, \"rank\": 24, \"rankvar\": 343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1953, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 380, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1540, \"group\": [1690.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9078_BALBc-1_X02_Y02_1097_291\", \"ini\": 872, \"clust\": 454, \"rank\": 2093, \"rankvar\": 1784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1954, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2791, \"cat-2\": \"Density: 27\", \"cat_2_index\": 970, \"group\": [455.0, 92.0, 23.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9244_BALBc-1_X02_Y02_1099_550\", \"ini\": 871, \"clust\": 1513, \"rank\": 870, \"rankvar\": 622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1955, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 627, \"cat-2\": \"Density: 27\", \"cat_2_index\": 971, \"group\": [1512.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9402_BALBc-1_X02_Y02_110_392\", \"ini\": 870, \"clust\": 2498, \"rank\": 1906, \"rankvar\": 2437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1956, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2633, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1676, \"group\": [2495.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9494_BALBc-1_X02_Y02_1100_508\", \"ini\": 869, \"clust\": 708, \"rank\": 2695, \"rankvar\": 2453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1957, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2634, \"cat-2\": \"Density: 26\", \"cat_2_index\": 818, \"group\": [709.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9511_BALBc-1_X02_Y02_1100_671\", \"ini\": 868, \"clust\": 1348, \"rank\": 714, \"rankvar\": 720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1958, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 381, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2099, \"group\": [1346.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9687_BALBc-1_X02_Y02_1103_195\", \"ini\": 867, \"clust\": 2451, \"rank\": 1967, \"rankvar\": 900, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1959, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 382, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1677, \"group\": [2448.0, 366.0, 87.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9726_BALBc-1_X02_Y02_1103_600\", \"ini\": 866, \"clust\": 2367, \"rank\": 2455, \"rankvar\": 663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1960, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 383, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1678, \"group\": [2364.0, 347.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9731_BALBc-1_X02_Y02_1103_641\", \"ini\": 865, \"clust\": 731, \"rank\": 2373, \"rankvar\": 1700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1961, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 384, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1999, \"group\": [731.0, 162.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10109_BALBc-1_X02_Y02_1108_209\", \"ini\": 864, \"clust\": 1691, \"rank\": 15, \"rankvar\": 524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1962, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1352, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1419, \"group\": [1687.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10196_BALBc-1_X02_Y02_1109_33\", \"ini\": 863, \"clust\": 106, \"rank\": 816, \"rankvar\": 1672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1963, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1980, \"cat-2\": \"Density: 22\", \"cat_2_index\": 300, \"group\": [106.0, 24.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10201_BALBc-1_X02_Y02_1109_425\", \"ini\": 862, \"clust\": 1979, \"rank\": 1261, \"rankvar\": 1778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1964, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 924, \"cat-2\": \"Density: 26\", \"cat_2_index\": 819, \"group\": [1974.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10450_BALBc-1_X02_Y02_1111_750\", \"ini\": 861, \"clust\": 1516, \"rank\": 826, \"rankvar\": 398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1965, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2157, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1679, \"group\": [1516.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10495_BALBc-1_X02_Y02_1112_333\", \"ini\": 860, \"clust\": 1631, \"rank\": 350, \"rankvar\": 44, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1966, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1664, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1420, \"group\": [1631.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10548_BALBc-1_X02_Y02_1112_995\", \"ini\": 859, \"clust\": 2777, \"rank\": 1623, \"rankvar\": 987, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1967, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2635, \"cat-2\": \"Density: 17\", \"cat_2_index\": 81, \"group\": [2775.0, 427.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10672_BALBc-1_X02_Y02_1114_725\", \"ini\": 858, \"clust\": 1740, \"rank\": 244, \"rankvar\": 391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1968, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2158, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1887, \"group\": [1740.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10918_BALBc-1_X02_Y02_1117_812\", \"ini\": 857, \"clust\": 1446, \"rank\": 193, \"rankvar\": 1442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1969, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2792, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1680, \"group\": [1445.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10970_BALBc-1_X02_Y02_1118_562\", \"ini\": 856, \"clust\": 2618, \"rank\": 1780, \"rankvar\": 1414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1970, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2636, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1541, \"group\": [2615.0, 399.0, 96.0, 25.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11111_BALBc-1_X02_Y02_112_780\", \"ini\": 855, \"clust\": 1250, \"rank\": 428, \"rankvar\": 212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1971, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1353, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1421, \"group\": [1248.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11132_BALBc-1_X02_Y02_1120_160\", \"ini\": 854, \"clust\": 1553, \"rank\": 560, \"rankvar\": 72, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1972, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2323, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1275, \"group\": [1551.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11248_BALBc-1_X02_Y02_1121_389\", \"ini\": 853, \"clust\": 1899, \"rank\": 2012, \"rankvar\": 1529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1973, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1665, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1123, \"group\": [1899.0, 290.0, 69.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11332_BALBc-1_X02_Y02_1122_490\", \"ini\": 852, \"clust\": 1934, \"rank\": 1043, \"rankvar\": 1207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1974, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2793, \"cat-2\": \"Density: 24\", \"cat_2_index\": 541, \"group\": [1933.0, 296.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11531_BALBc-1_X02_Y02_1125_113\", \"ini\": 851, \"clust\": 1977, \"rank\": 1434, \"rankvar\": 1705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1975, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1981, \"cat-2\": \"Density: 26\", \"cat_2_index\": 820, \"group\": [1975.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11546_BALBc-1_X02_Y02_1125_315\", \"ini\": 850, \"clust\": 1920, \"rank\": 1429, \"rankvar\": 380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1976, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2637, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1124, \"group\": [1925.0, 295.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11566_BALBc-1_X02_Y02_1125_577\", \"ini\": 849, \"clust\": 1796, \"rank\": 64, \"rankvar\": 747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1977, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 385, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1888, \"group\": [1794.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11573_BALBc-1_X02_Y02_1125_626\", \"ini\": 848, \"clust\": 1716, \"rank\": 383, \"rankvar\": 52, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1978, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 386, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1778, \"group\": [1714.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11614_BALBc-1_X02_Y02_1126_250\", \"ini\": 847, \"clust\": 1166, \"rank\": 1097, \"rankvar\": 793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1979, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1354, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1542, \"group\": [1168.0, 245.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11867_BALBc-1_X02_Y02_1129_599\", \"ini\": 846, \"clust\": 2757, \"rank\": 1250, \"rankvar\": 427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1980, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 387, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1889, \"group\": [2756.0, 425.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11912_BALBc-1_X02_Y02_113_34\", \"ini\": 845, \"clust\": 1393, \"rank\": 375, \"rankvar\": 894, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1981, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1355, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1543, \"group\": [1395.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12036_BALBc-1_X02_Y02_1130_842\", \"ini\": 844, \"clust\": 1355, \"rank\": 823, \"rankvar\": 30, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1982, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2794, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1544, \"group\": [1356.0, 261.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12076_BALBc-1_X02_Y02_1131_409\", \"ini\": 843, \"clust\": 551, \"rank\": 1963, \"rankvar\": 1934, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1983, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 388, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1125, \"group\": [550.0, 120.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12101_BALBc-1_X02_Y02_1131_782\", \"ini\": 842, \"clust\": 2796, \"rank\": 1702, \"rankvar\": 1870, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1984, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2245, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1545, \"group\": [2794.0, 429.0, 103.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12136_BALBc-1_X02_Y02_1132_190\", \"ini\": 841, \"clust\": 2254, \"rank\": 1311, \"rankvar\": 415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1985, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1356, \"cat-2\": \"Density: 27\", \"cat_2_index\": 972, \"group\": [2263.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12165_BALBc-1_X02_Y02_1132_447\", \"ini\": 840, \"clust\": 582, \"rank\": 1517, \"rankvar\": 1696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1986, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2795, \"cat-2\": \"Density: 22\", \"cat_2_index\": 301, \"group\": [581.0, 131.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12320_BALBc-1_X02_Y02_1134_679\", \"ini\": 839, \"clust\": 1947, \"rank\": 1545, \"rankvar\": 755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1987, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2159, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2339, \"group\": [1948.0, 301.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12365_BALBc-1_X02_Y02_1135_365\", \"ini\": 838, \"clust\": 1520, \"rank\": 669, \"rankvar\": 428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1988, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1666, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1126, \"group\": [1522.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12416_BALBc-1_X02_Y02_1135_962\", \"ini\": 837, \"clust\": 1915, \"rank\": 778, \"rankvar\": 1334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1989, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2638, \"cat-2\": \"Density: 21\", \"cat_2_index\": 221, \"group\": [1915.0, 292.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12735_BALBc-1_X02_Y02_1139_866\", \"ini\": 836, \"clust\": 4, \"rank\": 2078, \"rankvar\": 833, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1990, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2796, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1890, \"group\": [5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12751_BALBc-1_X02_Y02_114_194\", \"ini\": 835, \"clust\": 2216, \"rank\": 530, \"rankvar\": 1360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1991, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2639, \"cat-2\": \"Density: 22\", \"cat_2_index\": 302, \"group\": [2212.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12784_BALBc-1_X02_Y02_114_729\", \"ini\": 834, \"clust\": 892, \"rank\": 971, \"rankvar\": 807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1992, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1357, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2000, \"group\": [895.0, 205.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12833_BALBc-1_X02_Y02_1140_332\", \"ini\": 833, \"clust\": 1610, \"rank\": 201, \"rankvar\": 35, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1993, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2797, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1276, \"group\": [1610.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12954_BALBc-1_X02_Y02_1141_896\", \"ini\": 832, \"clust\": 897, \"rank\": 1382, \"rankvar\": 1383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1994, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2640, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1681, \"group\": [897.0, 206.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12956_BALBc-1_X02_Y02_1141_931\", \"ini\": 831, \"clust\": 1460, \"rank\": 74, \"rankvar\": 823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1995, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2641, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1422, \"group\": [1460.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13018_BALBc-1_X02_Y02_1142_616\", \"ini\": 830, \"clust\": 1582, \"rank\": 477, \"rankvar\": 1228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1996, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 389, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1779, \"group\": [1585.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13318_BALBc-1_X02_Y02_1146_668\", \"ini\": 829, \"clust\": 1605, \"rank\": 138, \"rankvar\": 195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1997, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2160, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2184, \"group\": [1605.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13570_BALBc-1_X02_Y02_1149_984\", \"ini\": 828, \"clust\": 2756, \"rank\": 1210, \"rankvar\": 267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1998, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 390, \"cat-2\": \"Density: 22\", \"cat_2_index\": 303, \"group\": [2752.0, 425.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13572_BALBc-1_X02_Y02_115_109\", \"ini\": 827, \"clust\": 216, \"rank\": 949, \"rankvar\": 1568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1999, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 705, \"cat-2\": \"Density: 27\", \"cat_2_index\": 973, \"group\": [216.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13710_BALBc-1_X02_Y02_1150_801\", \"ini\": 826, \"clust\": 1225, \"rank\": 659, \"rankvar\": 1066, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2000, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2642, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1780, \"group\": [1228.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13772_BALBc-1_X02_Y02_1151_585\", \"ini\": 825, \"clust\": 2582, \"rank\": 1352, \"rankvar\": 878, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2001, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2643, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2001, \"group\": [2580.0, 392.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13938_BALBc-1_X02_Y02_1153_645\", \"ini\": 824, \"clust\": 647, \"rank\": 2243, \"rankvar\": 1273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2002, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 391, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1891, \"group\": [648.0, 153.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14156_BALBc-1_X02_Y02_1156_744\", \"ini\": 823, \"clust\": 368, \"rank\": 2751, \"rankvar\": 2616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2003, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2644, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2340, \"group\": [370.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14485_BALBc-1_X02_Y02_1160_173\", \"ini\": 822, \"clust\": 1506, \"rank\": 472, \"rankvar\": 45, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2004, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2324, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1127, \"group\": [1504.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14492_BALBc-1_X02_Y02_1160_253\", \"ini\": 821, \"clust\": 172, \"rank\": 2041, \"rankvar\": 1318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2005, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1358, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1128, \"group\": [173.0, 40.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14502_BALBc-1_X02_Y02_1160_402\", \"ini\": 820, \"clust\": 202, \"rank\": 1460, \"rankvar\": 1618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2006, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2798, \"cat-2\": \"Density: 27\", \"cat_2_index\": 974, \"group\": [203.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14546_BALBc-1_X02_Y02_1160_824\", \"ini\": 819, \"clust\": 1579, \"rank\": 685, \"rankvar\": 75, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2007, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 392, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1781, \"group\": [1579.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14684_BALBc-1_X02_Y02_1162_447\", \"ini\": 818, \"clust\": 2285, \"rank\": 1552, \"rankvar\": 2217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2008, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2799, \"cat-2\": \"Density: 23\", \"cat_2_index\": 415, \"group\": [2283.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14743_BALBc-1_X02_Y02_1163_128\", \"ini\": 817, \"clust\": 1145, \"rank\": 437, \"rankvar\": 1902, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2009, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1982, \"cat-2\": \"Density: 26\", \"cat_2_index\": 821, \"group\": [1144.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14867_BALBc-1_X02_Y02_1164_624\", \"ini\": 816, \"clust\": 2324, \"rank\": 1006, \"rankvar\": 1444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2010, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2645, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1782, \"group\": [2322.0, 327.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14896_BALBc-1_X02_Y02_1164_922\", \"ini\": 815, \"clust\": 1396, \"rank\": 1081, \"rankvar\": 436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2011, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 393, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1783, \"group\": [1400.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14971_BALBc-1_X02_Y02_1165_840\", \"ini\": 814, \"clust\": 1723, \"rank\": 112, \"rankvar\": 78, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2012, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 394, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1892, \"group\": [1719.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15063_BALBc-1_X02_Y02_1166_969\", \"ini\": 813, \"clust\": 2373, \"rank\": 1862, \"rankvar\": 494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2013, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 395, \"cat-2\": \"Density: 24\", \"cat_2_index\": 542, \"group\": [2371.0, 348.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15135_BALBc-1_X02_Y02_1167_999\", \"ini\": 812, \"clust\": 2410, \"rank\": 2510, \"rankvar\": 1885, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2014, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2161, \"cat-2\": \"Density: 20\", \"cat_2_index\": 169, \"group\": [2408.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15303_BALBc-1_X02_Y02_117_410\", \"ini\": 811, \"clust\": 1447, \"rank\": 119, \"rankvar\": 1259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2015, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2646, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1682, \"group\": [1449.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15305_BALBc-1_X02_Y02_117_463\", \"ini\": 810, \"clust\": 2624, \"rank\": 2691, \"rankvar\": 2717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2016, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 849, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1893, \"group\": [2622.0, 403.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15393_BALBc-1_X02_Y02_1170_650\", \"ini\": 809, \"clust\": 1262, \"rank\": 802, \"rankvar\": 473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2017, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 396, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2002, \"group\": [1262.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15414_BALBc-1_X02_Y02_1170_876\", \"ini\": 808, \"clust\": 2664, \"rank\": 1989, \"rankvar\": 1418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2018, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 397, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1784, \"group\": [2662.0, 411.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15423_BALBc-1_X02_Y02_1170_954\", \"ini\": 807, \"clust\": 1313, \"rank\": 554, \"rankvar\": 1028, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2019, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 398, \"cat-2\": \"Density: 26\", \"cat_2_index\": 822, \"group\": [1312.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15568_BALBc-1_X02_Y02_1172_980\", \"ini\": 806, \"clust\": 1797, \"rank\": 75, \"rankvar\": 697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2020, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 399, \"cat-2\": \"Density: 22\", \"cat_2_index\": 304, \"group\": [1795.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15595_BALBc-1_X02_Y02_1173_333\", \"ini\": 805, \"clust\": 2191, \"rank\": 1166, \"rankvar\": 1192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2021, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2800, \"cat-2\": \"Density: 26\", \"cat_2_index\": 823, \"group\": [2189.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15880_BALBc-1_X02_Y02_1176_923\", \"ini\": 804, \"clust\": 849, \"rank\": 911, \"rankvar\": 435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2022, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 400, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2003, \"group\": [852.0, 197.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15939_BALBc-1_X02_Y02_1177_805\", \"ini\": 803, \"clust\": 2561, \"rank\": 1496, \"rankvar\": 503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2023, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 401, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1894, \"group\": [2557.0, 390.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15968_BALBc-1_X02_Y02_1178_208\", \"ini\": 802, \"clust\": 2218, \"rank\": 664, \"rankvar\": 1361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2024, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1359, \"cat-2\": \"Density: 26\", \"cat_2_index\": 824, \"group\": [2211.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15986_BALBc-1_X02_Y02_1178_415\", \"ini\": 801, \"clust\": 2248, \"rank\": 594, \"rankvar\": 1036, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2025, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2647, \"cat-2\": \"Density: 24\", \"cat_2_index\": 543, \"group\": [2244.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16048_BALBc-1_X02_Y02_1178_942\", \"ini\": 800, \"clust\": 2817, \"rank\": 1521, \"rankvar\": 439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2026, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 402, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1683, \"group\": [2816.0, 435.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16314_BALBc-1_X02_Y02_1181_752\", \"ini\": 799, \"clust\": 2119, \"rank\": 2057, \"rankvar\": 1524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2027, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2648, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2100, \"group\": [2117.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16545_BALBc-1_X02_Y02_1184_787\", \"ini\": 798, \"clust\": 1804, \"rank\": 115, \"rankvar\": 304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2028, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2649, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1785, \"group\": [1802.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16556_BALBc-1_X02_Y02_1184_889\", \"ini\": 797, \"clust\": 1304, \"rank\": 273, \"rankvar\": 1092, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2029, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 403, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2101, \"group\": [1304.0, 259.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16843_BALBc-1_X02_Y02_1188_851\", \"ini\": 796, \"clust\": 1378, \"rank\": 932, \"rankvar\": 400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2030, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 404, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2102, \"group\": [1376.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16917_BALBc-1_X02_Y02_1189_710\", \"ini\": 795, \"clust\": 796, \"rank\": 1273, \"rankvar\": 272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2031, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2162, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1684, \"group\": [796.0, 189.0, 49.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17166_BALBc-1_X02_Y02_1192_172\", \"ini\": 794, \"clust\": 581, \"rank\": 1631, \"rankvar\": 1900, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2032, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 850, \"cat-2\": \"Density: 27\", \"cat_2_index\": 975, \"group\": [583.0, 131.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17200_BALBc-1_X02_Y02_1192_66\", \"ini\": 793, \"clust\": 2439, \"rank\": 2181, \"rankvar\": 642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2033, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 851, \"cat-2\": \"Density: 22\", \"cat_2_index\": 305, \"group\": [2442.0, 363.0, 85.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17277_BALBc-1_X02_Y02_1193_669\", \"ini\": 792, \"clust\": 860, \"rank\": 1026, \"rankvar\": 347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2034, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2163, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2004, \"group\": [863.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17324_BALBc-1_X02_Y02_1194_343\", \"ini\": 791, \"clust\": 1709, \"rank\": 41, \"rankvar\": 211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2035, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2801, \"cat-2\": \"Density: 24\", \"cat_2_index\": 544, \"group\": [1705.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17418_BALBc-1_X02_Y02_1195_565\", \"ini\": 790, \"clust\": 949, \"rank\": 421, \"rankvar\": 1508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2036, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2650, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1277, \"group\": [950.0, 220.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17557_BALBc-1_X02_Y02_1197_533\", \"ini\": 789, \"clust\": 1653, \"rank\": 36, \"rankvar\": 821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2037, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2651, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1423, \"group\": [1654.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17661_BALBc-1_X02_Y02_1198_827\", \"ini\": 788, \"clust\": 657, \"rank\": 2545, \"rankvar\": 2747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2038, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 405, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2103, \"group\": [658.0, 155.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17686_BALBc-1_X02_Y02_1199_215\", \"ini\": 787, \"clust\": 2470, \"rank\": 2577, \"rankvar\": 2355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2039, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2248, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1278, \"group\": [2465.0, 372.0, 90.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17736_BALBc-1_X02_Y02_1199_815\", \"ini\": 786, \"clust\": 2050, \"rank\": 2065, \"rankvar\": 2068, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2040, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 406, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2104, \"group\": [2050.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17809_BALBc-1_X02_Y02_12_793\", \"ini\": 785, \"clust\": 2472, \"rank\": 1795, \"rankvar\": 507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2041, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1360, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1786, \"group\": [2470.0, 375.0, 91.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18091_BALBc-1_X02_Y02_1202_280\", \"ini\": 784, \"clust\": 256, \"rank\": 2302, \"rankvar\": 2364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2042, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2249, \"cat-2\": \"Density: 24\", \"cat_2_index\": 545, \"group\": [258.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18146_BALBc-1_X02_Y02_1202_911\", \"ini\": 783, \"clust\": 2651, \"rank\": 2286, \"rankvar\": 1783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2043, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 407, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2492, \"group\": [2648.0, 409.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18155_BALBc-1_X02_Y02_1202_975\", \"ini\": 782, \"clust\": 1510, \"rank\": 478, \"rankvar\": 251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2044, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 408, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1129, \"group\": [1507.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18172_BALBc-1_X02_Y02_1203_305\", \"ini\": 781, \"clust\": 1549, \"rank\": 404, \"rankvar\": 295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2045, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2652, \"cat-2\": \"Density: 25\", \"cat_2_index\": 681, \"group\": [1547.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18233_BALBc-1_X02_Y02_1204_137\", \"ini\": 780, \"clust\": 2460, \"rank\": 1921, \"rankvar\": 1211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2046, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 706, \"cat-2\": \"Density: 23\", \"cat_2_index\": 416, \"group\": [2459.0, 371.0, 89.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18261_BALBc-1_X02_Y02_1204_367\", \"ini\": 779, \"clust\": 1116, \"rank\": 1456, \"rankvar\": 414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2047, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2802, \"cat-2\": \"Density: 26\", \"cat_2_index\": 825, \"group\": [1126.0, 238.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18290_BALBc-1_X02_Y02_1204_637\", \"ini\": 778, \"clust\": 2325, \"rank\": 843, \"rankvar\": 532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2048, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2164, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1895, \"group\": [2323.0, 327.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18505_BALBc-1_X02_Y02_1207_236\", \"ini\": 777, \"clust\": 1679, \"rank\": 10, \"rankvar\": 857, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2049, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2250, \"cat-2\": \"Density: 25\", \"cat_2_index\": 682, \"group\": [1676.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18616_BALBc-1_X02_Y02_1208_730\", \"ini\": 776, \"clust\": 2506, \"rank\": 1202, \"rankvar\": 141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2050, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 409, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2341, \"group\": [2505.0, 381.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18834_BALBc-1_X02_Y02_1210_68\", \"ini\": 775, \"clust\": 1852, \"rank\": 411, \"rankvar\": 479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2051, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 852, \"cat-2\": \"Density: 22\", \"cat_2_index\": 306, \"group\": [1846.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18835_BALBc-1_X02_Y02_1210_690\", \"ini\": 774, \"clust\": 944, \"rank\": 553, \"rankvar\": 552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2052, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 410, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1685, \"group\": [944.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18895_BALBc-1_X02_Y02_1211_550\", \"ini\": 773, \"clust\": 1952, \"rank\": 2244, \"rankvar\": 2461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2053, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1361, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1279, \"group\": [1951.0, 302.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18963_BALBc-1_X02_Y02_1212_417\", \"ini\": 772, \"clust\": 89, \"rank\": 1121, \"rankvar\": 1476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2054, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2653, \"cat-2\": \"Density: 23\", \"cat_2_index\": 417, \"group\": [91.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19058_BALBc-1_X02_Y02_1213_786\", \"ini\": 771, \"clust\": 1210, \"rank\": 213, \"rankvar\": 412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2055, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 411, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2185, \"group\": [1210.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19143_BALBc-1_X02_Y02_1214_853\", \"ini\": 770, \"clust\": 807, \"rank\": 1233, \"rankvar\": 705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2056, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 412, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2186, \"group\": [807.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19158_BALBc-1_X02_Y02_1214_998\", \"ini\": 769, \"clust\": 2695, \"rank\": 2105, \"rankvar\": 1865, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2057, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 413, \"cat-2\": \"Density: 22\", \"cat_2_index\": 307, \"group\": [2696.0, 414.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19934_BALBc-1_X02_Y02_1224_37\", \"ini\": 768, \"clust\": 1073, \"rank\": 797, \"rankvar\": 176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2058, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 853, \"cat-2\": \"Density: 23\", \"cat_2_index\": 418, \"group\": [1074.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19942_BALBc-1_X02_Y02_1224_457\", \"ini\": 767, \"clust\": 1300, \"rank\": 312, \"rankvar\": 1004, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2059, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2654, \"cat-2\": \"Density: 24\", \"cat_2_index\": 546, \"group\": [1299.0, 259.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19965_BALBc-1_X02_Y02_1224_717\", \"ini\": 766, \"clust\": 2055, \"rank\": 1850, \"rankvar\": 1821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2060, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 414, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2105, \"group\": [2051.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20040_BALBc-1_X02_Y02_1225_677\", \"ini\": 765, \"clust\": 1905, \"rank\": 1230, \"rankvar\": 442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2061, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 415, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2187, \"group\": [1903.0, 291.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20113_BALBc-1_X02_Y02_1226_605\", \"ini\": 764, \"clust\": 1356, \"rank\": 836, \"rankvar\": 31, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2062, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2165, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2005, \"group\": [1357.0, 261.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20117_BALBc-1_X02_Y02_1226_636\", \"ini\": 763, \"clust\": 1512, \"rank\": 708, \"rankvar\": 443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2063, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 416, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2342, \"group\": [1514.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20128_BALBc-1_X02_Y02_1226_776\", \"ini\": 762, \"clust\": 816, \"rank\": 1285, \"rankvar\": 960, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2064, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2166, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2270, \"group\": [814.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20281_BALBc-1_X02_Y02_1228_895\", \"ini\": 761, \"clust\": 2301, \"rank\": 880, \"rankvar\": 904, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2065, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 417, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2271, \"group\": [2298.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20297_BALBc-1_X02_Y02_1229_260\", \"ini\": 760, \"clust\": 1783, \"rank\": 403, \"rankvar\": 1065, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2066, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 418, \"cat-2\": \"Density: 24\", \"cat_2_index\": 547, \"group\": [1784.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20538_BALBc-1_X02_Y02_1231_364\", \"ini\": 759, \"clust\": 2074, \"rank\": 2019, \"rankvar\": 2104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2067, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 925, \"cat-2\": \"Density: 23\", \"cat_2_index\": 419, \"group\": [2069.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20631_BALBc-1_X02_Y02_1232_383\", \"ini\": 758, \"clust\": 1861, \"rank\": 374, \"rankvar\": 226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2068, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 419, \"cat-2\": \"Density: 22\", \"cat_2_index\": 308, \"group\": [1856.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20752_BALBc-1_X02_Y02_1233_882\", \"ini\": 757, \"clust\": 918, \"rank\": 1490, \"rankvar\": 1346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2069, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 420, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2343, \"group\": [922.0, 215.0, 57.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20757_BALBc-1_X02_Y02_1233_942\", \"ini\": 756, \"clust\": 1903, \"rank\": 1106, \"rankvar\": 170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2070, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 421, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2006, \"group\": [1901.0, 291.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20801_BALBc-1_X02_Y02_1234_579\", \"ini\": 755, \"clust\": 1715, \"rank\": 515, \"rankvar\": 19, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2071, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1362, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1686, \"group\": [1713.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20824_BALBc-1_X02_Y02_1234_805\", \"ini\": 754, \"clust\": 2794, \"rank\": 1469, \"rankvar\": 594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2072, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2167, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2408, \"group\": [2792.0, 429.0, 103.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20990_BALBc-1_X02_Y02_1236_981\", \"ini\": 753, \"clust\": 1747, \"rank\": 94, \"rankvar\": 691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2073, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2655, \"cat-2\": \"Density: 27\", \"cat_2_index\": 976, \"group\": [1745.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21052_BALBc-1_X02_Y02_1238_118\", \"ini\": 752, \"clust\": 1214, \"rank\": 228, \"rankvar\": 908, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2074, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 707, \"cat-2\": \"Density: 24\", \"cat_2_index\": 548, \"group\": [1217.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21101_BALBc-1_X02_Y02_1238_698\", \"ini\": 751, \"clust\": 1312, \"rank\": 720, \"rankvar\": 840, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2075, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 422, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2106, \"group\": [1314.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21177_BALBc-1_X02_Y02_1239_735\", \"ini\": 750, \"clust\": 592, \"rank\": 767, \"rankvar\": 1941, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2076, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 423, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2188, \"group\": [591.0, 134.0, 36.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21417_BALBc-1_X02_Y02_1241_859\", \"ini\": 749, \"clust\": 1721, \"rank\": 186, \"rankvar\": 18, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2077, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2168, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2189, \"group\": [1720.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21484_BALBc-1_X02_Y02_1242_93\", \"ini\": 748, \"clust\": 2022, \"rank\": 2202, \"rankvar\": 2404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2078, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 854, \"cat-2\": \"Density: 23\", \"cat_2_index\": 420, \"group\": [2021.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21581_BALBc-1_X02_Y02_1244_226\", \"ini\": 747, \"clust\": 1081, \"rank\": 1141, \"rankvar\": 986, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2079, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 855, \"cat-2\": \"Density: 27\", \"cat_2_index\": 977, \"group\": [1083.0, 230.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21628_BALBc-1_X02_Y02_1244_966\", \"ini\": 746, \"clust\": 2811, \"rank\": 2151, \"rankvar\": 1612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2080, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2656, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1424, \"group\": [2810.0, 435.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21630_BALBc-1_X02_Y02_1244_997\", \"ini\": 745, \"clust\": 2736, \"rank\": 1991, \"rankvar\": 1629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2081, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2657, \"cat-2\": \"Density: 22\", \"cat_2_index\": 309, \"group\": [2734.0, 423.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21647_BALBc-1_X02_Y02_1245_199\", \"ini\": 744, \"clust\": 1237, \"rank\": 848, \"rankvar\": 350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2082, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 708, \"cat-2\": \"Density: 27\", \"cat_2_index\": 978, \"group\": [1238.0, 255.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21656_BALBc-1_X02_Y02_1245_280\", \"ini\": 743, \"clust\": 297, \"rank\": 1222, \"rankvar\": 1657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2083, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 926, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1280, \"group\": [298.0, 62.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21832_BALBc-1_X02_Y02_1247_883\", \"ini\": 742, \"clust\": 1456, \"rank\": 415, \"rankvar\": 595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2084, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 424, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2190, \"group\": [1457.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22423_BALBc-1_X02_Y02_1254_748\", \"ini\": 741, \"clust\": 2809, \"rank\": 1869, \"rankvar\": 1082, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2085, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 425, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2344, \"group\": [2806.0, 435.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22543_BALBc-1_X02_Y02_1256_600\", \"ini\": 740, \"clust\": 2138, \"rank\": 2049, \"rankvar\": 2078, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2086, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 426, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2107, \"group\": [2136.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22609_BALBc-1_X02_Y02_1257_427\", \"ini\": 739, \"clust\": 1895, \"rank\": 2098, \"rankvar\": 1284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2087, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1363, \"cat-2\": \"Density: 21\", \"cat_2_index\": 222, \"group\": [1893.0, 286.0, 69.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22632_BALBc-1_X02_Y02_1257_646\", \"ini\": 738, \"clust\": 2314, \"rank\": 1383, \"rankvar\": 902, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2088, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 427, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2108, \"group\": [2311.0, 319.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22899_BALBc-1_X02_Y02_1260_506\", \"ini\": 737, \"clust\": 1369, \"rank\": 1008, \"rankvar\": 922, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2089, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1364, \"cat-2\": \"Density: 25\", \"cat_2_index\": 683, \"group\": [1370.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22914_BALBc-1_X02_Y02_1260_721\", \"ini\": 736, \"clust\": 2034, \"rank\": 1926, \"rankvar\": 2402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2090, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 428, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2007, \"group\": [2030.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22990_BALBc-1_X02_Y02_1261_872\", \"ini\": 735, \"clust\": 791, \"rank\": 1462, \"rankvar\": 220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2091, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 429, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1896, \"group\": [791.0, 187.0, 49.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23225_BALBc-1_X02_Y02_1264_989\", \"ini\": 734, \"clust\": 2694, \"rank\": 2392, \"rankvar\": 1685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2092, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2169, \"cat-2\": \"Density: 20\", \"cat_2_index\": 170, \"group\": [2691.0, 414.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23259_BALBc-1_X02_Y02_1265_403\", \"ini\": 733, \"clust\": 1140, \"rank\": 599, \"rankvar\": 847, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2093, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 430, \"cat-2\": \"Density: 19\", \"cat_2_index\": 123, \"group\": [1143.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23400_BALBc-1_X02_Y02_1267_557\", \"ini\": 732, \"clust\": 2487, \"rank\": 2259, \"rankvar\": 2690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2094, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1365, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1130, \"group\": [2487.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23411_BALBc-1_X02_Y02_1267_797\", \"ini\": 731, \"clust\": 1085, \"rank\": 1264, \"rankvar\": 418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2095, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2170, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1897, \"group\": [1086.0, 230.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23420_BALBc-1_X02_Y02_1267_912\", \"ini\": 730, \"clust\": 728, \"rank\": 2594, \"rankvar\": 2003, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2096, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 431, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1425, \"group\": [729.0, 162.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23445_BALBc-1_X02_Y02_1268_264\", \"ini\": 729, \"clust\": 1422, \"rank\": 768, \"rankvar\": 770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2097, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 709, \"cat-2\": \"Density: 23\", \"cat_2_index\": 421, \"group\": [1421.0, 264.0, 65.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23486_BALBc-1_X02_Y02_1268_775\", \"ini\": 728, \"clust\": 1908, \"rank\": 1286, \"rankvar\": 218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2098, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2171, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2191, \"group\": [1905.0, 291.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23578_BALBc-1_X02_Y02_127_136\", \"ini\": 727, \"clust\": 541, \"rank\": 2769, \"rankvar\": 2718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2099, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 432, \"cat-2\": \"Density: 22\", \"cat_2_index\": 310, \"group\": [539.0, 116.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23693_BALBc-1_X02_Y02_1270_691\", \"ini\": 726, \"clust\": 2361, \"rank\": 2592, \"rankvar\": 2112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2100, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 433, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1787, \"group\": [2359.0, 345.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23786_BALBc-1_X02_Y02_1272_150\", \"ini\": 725, \"clust\": 1726, \"rank\": 116, \"rankvar\": 287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2101, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 710, \"cat-2\": \"Density: 20\", \"cat_2_index\": 171, \"group\": [1723.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23903_BALBc-1_X02_Y02_1273_584\", \"ini\": 724, \"clust\": 819, \"rank\": 1063, \"rankvar\": 1809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2102, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 434, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1546, \"group\": [820.0, 194.0, 51.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23932_BALBc-1_X02_Y02_1273_933\", \"ini\": 723, \"clust\": 1317, \"rank\": 682, \"rankvar\": 1018, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2103, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 435, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1281, \"group\": [1316.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24090_BALBc-1_X02_Y02_1275_977\", \"ini\": 722, \"clust\": 2147, \"rank\": 1244, \"rankvar\": 583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2104, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2172, \"cat-2\": \"Density: 20\", \"cat_2_index\": 172, \"group\": [2147.0, 314.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24259_BALBc-1_X02_Y02_1278_364\", \"ini\": 721, \"clust\": 75, \"rank\": 2294, \"rankvar\": 2141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2105, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1667, \"cat-2\": \"Density: 18\", \"cat_2_index\": 98, \"group\": [77.0, 16.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24308_BALBc-1_X02_Y02_1278_906\", \"ini\": 720, \"clust\": 2544, \"rank\": 1394, \"rankvar\": 2082, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2106, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 436, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1282, \"group\": [2541.0, 387.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24363_BALBc-1_X02_Y02_1279_658\", \"ini\": 719, \"clust\": 2184, \"rank\": 789, \"rankvar\": 792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2107, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 437, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2109, \"group\": [2179.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24400_BALBc-1_X02_Y02_128_401\", \"ini\": 718, \"clust\": 2489, \"rank\": 2116, \"rankvar\": 2672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2108, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2658, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1547, \"group\": [2486.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24702_BALBc-1_X02_Y02_1283_757\", \"ini\": 717, \"clust\": 1736, \"rank\": 96, \"rankvar\": 748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2109, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 438, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1687, \"group\": [1734.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24791_BALBc-1_X02_Y02_1284_937\", \"ini\": 716, \"clust\": 2810, \"rank\": 1920, \"rankvar\": 853, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2110, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2173, \"cat-2\": \"Density: 25\", \"cat_2_index\": 684, \"group\": [2807.0, 435.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24871_BALBc-1_X02_Y02_1286_196\", \"ini\": 715, \"clust\": 2320, \"rank\": 1477, \"rankvar\": 854, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2111, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 711, \"cat-2\": \"Density: 23\", \"cat_2_index\": 422, \"group\": [2321.0, 326.0, 75.0, 19.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24910_BALBc-1_X02_Y02_1286_61\", \"ini\": 714, \"clust\": 1102, \"rank\": 536, \"rankvar\": 630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2112, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 856, \"cat-2\": \"Density: 22\", \"cat_2_index\": 311, \"group\": [1099.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24930_BALBc-1_X02_Y02_1286_94\", \"ini\": 713, \"clust\": 2505, \"rank\": 1340, \"rankvar\": 827, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2113, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 857, \"cat-2\": \"Density: 21\", \"cat_2_index\": 223, \"group\": [2511.0, 381.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24997_BALBc-1_X02_Y02_1287_830\", \"ini\": 712, \"clust\": 2805, \"rank\": 2422, \"rankvar\": 1619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2114, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2174, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1548, \"group\": [2803.0, 433.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25247_BALBc-1_X02_Y02_1290_427\", \"ini\": 711, \"clust\": 1561, \"rank\": 715, \"rankvar\": 1070, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2115, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1366, \"cat-2\": \"Density: 18\", \"cat_2_index\": 99, \"group\": [1565.0, 273.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25317_BALBc-1_X02_Y02_1291_314\", \"ini\": 710, \"clust\": 97, \"rank\": 1671, \"rankvar\": 1829, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2116, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 712, \"cat-2\": \"Density: 20\", \"cat_2_index\": 173, \"group\": [97.0, 22.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25428_BALBc-1_X02_Y02_1292_703\", \"ini\": 709, \"clust\": 2230, \"rank\": 661, \"rankvar\": 1441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2117, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 439, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1688, \"group\": [2228.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25511_BALBc-1_X02_Y02_1293_680\", \"ini\": 708, \"clust\": 1581, \"rank\": 183, \"rankvar\": 1283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2118, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 440, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1689, \"group\": [1582.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25661_BALBc-1_X02_Y02_1295_739\", \"ini\": 707, \"clust\": 1367, \"rank\": 849, \"rankvar\": 492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2119, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 441, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1898, \"group\": [1367.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25688_BALBc-1_X02_Y02_1296_24\", \"ini\": 706, \"clust\": 2213, \"rank\": 884, \"rankvar\": 1427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2120, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1367, \"cat-2\": \"Density: 22\", \"cat_2_index\": 312, \"group\": [2209.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25752_BALBc-1_X02_Y02_1297_227\", \"ini\": 705, \"clust\": 196, \"rank\": 1580, \"rankvar\": 2284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2121, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2494, \"cat-2\": \"Density: 23\", \"cat_2_index\": 423, \"group\": [199.0, 44.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26022_BALBc-1_X02_Y02_13_668\", \"ini\": 704, \"clust\": 2121, \"rank\": 1720, \"rankvar\": 1263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2122, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1368, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1283, \"group\": [2119.0, 312.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26077_BALBc-1_X02_Y02_130_473\", \"ini\": 703, \"clust\": 788, \"rank\": 723, \"rankvar\": 1995, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2123, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 858, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1549, \"group\": [787.0, 185.0, 48.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26124_BALBc-1_X02_Y02_1300_173\", \"ini\": 702, \"clust\": 1123, \"rank\": 1038, \"rankvar\": 717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2124, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 442, \"cat-2\": \"Density: 19\", \"cat_2_index\": 124, \"group\": [1125.0, 237.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26182_BALBc-1_X02_Y02_1300_787\", \"ini\": 701, \"clust\": 1551, \"rank\": 614, \"rankvar\": 107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2125, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2175, \"cat-2\": \"Density: 27\", \"cat_2_index\": 979, \"group\": [1552.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26230_BALBc-1_X02_Y02_1301_568\", \"ini\": 700, \"clust\": 2600, \"rank\": 1947, \"rankvar\": 1824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2126, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2659, \"cat-2\": \"Density: 26\", \"cat_2_index\": 826, \"group\": [2596.0, 394.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26312_BALBc-1_X02_Y02_1302_626\", \"ini\": 699, \"clust\": 778, \"rank\": 2137, \"rankvar\": 1603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2127, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 443, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1131, \"group\": [778.0, 179.0, 46.0, 11.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26315_BALBc-1_X02_Y02_1302_700\", \"ini\": 698, \"clust\": 2044, \"rank\": 2085, \"rankvar\": 2142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2128, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 444, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1550, \"group\": [2040.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26391_BALBc-1_X02_Y02_1303_927\", \"ini\": 697, \"clust\": 1649, \"rank\": 73, \"rankvar\": 681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2129, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2176, \"cat-2\": \"Density: 23\", \"cat_2_index\": 424, \"group\": [1650.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26449_BALBc-1_X02_Y02_1304_811\", \"ini\": 696, \"clust\": 1750, \"rank\": 30, \"rankvar\": 626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2130, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2177, \"cat-2\": \"Density: 26\", \"cat_2_index\": 827, \"group\": [1747.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26566_BALBc-1_X02_Y02_1306_658\", \"ini\": 695, \"clust\": 1352, \"rank\": 605, \"rankvar\": 106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2131, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 445, \"cat-2\": \"Density: 26\", \"cat_2_index\": 828, \"group\": [1353.0, 261.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26693_BALBc-1_X02_Y02_1308_47\", \"ini\": 694, \"clust\": 2020, \"rank\": 1846, \"rankvar\": 2366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2132, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 859, \"cat-2\": \"Density: 20\", \"cat_2_index\": 174, \"group\": [2018.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26715_BALBc-1_X02_Y02_1308_750\", \"ini\": 693, \"clust\": 2012, \"rank\": 2231, \"rankvar\": 2247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2133, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 446, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1426, \"group\": [2009.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26846_BALBc-1_X02_Y02_131_495\", \"ini\": 692, \"clust\": 1776, \"rank\": 379, \"rankvar\": 111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2134, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 447, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1427, \"group\": [1774.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27069_BALBc-1_X02_Y02_1312_571\", \"ini\": 691, \"clust\": 773, \"rank\": 1076, \"rankvar\": 1836, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2135, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2660, \"cat-2\": \"Density: 23\", \"cat_2_index\": 425, \"group\": [773.0, 176.0, 45.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27073_BALBc-1_X02_Y02_1312_596\", \"ini\": 690, \"clust\": 1282, \"rank\": 296, \"rankvar\": 750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2136, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 448, \"cat-2\": \"Density: 24\", \"cat_2_index\": 549, \"group\": [1281.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27093_BALBc-1_X02_Y02_1312_855\", \"ini\": 689, \"clust\": 1911, \"rank\": 1084, \"rankvar\": 540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2137, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 449, \"cat-2\": \"Density: 27\", \"cat_2_index\": 980, \"group\": [1908.0, 291.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27175_BALBc-1_X02_Y02_1313_889\", \"ini\": 688, \"clust\": 669, \"rank\": 2515, \"rankvar\": 1550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2138, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 450, \"cat-2\": \"Density: 21\", \"cat_2_index\": 224, \"group\": [667.0, 156.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27201_BALBc-1_X02_Y02_1314_469\", \"ini\": 687, \"clust\": 2185, \"rank\": 838, \"rankvar\": 1024, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2139, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2661, \"cat-2\": \"Density: 16\", \"cat_2_index\": 62, \"group\": [2180.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27203_BALBc-1_X02_Y02_1314_500\", \"ini\": 686, \"clust\": 1442, \"rank\": 247, \"rankvar\": 1314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2140, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2662, \"cat-2\": \"Density: 19\", \"cat_2_index\": 125, \"group\": [1443.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27300_BALBc-1_X02_Y02_1315_692\", \"ini\": 685, \"clust\": 974, \"rank\": 483, \"rankvar\": 296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2141, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 451, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1132, \"group\": [973.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27591_BALBc-1_X02_Y02_1319_767\", \"ini\": 684, \"clust\": 767, \"rank\": 940, \"rankvar\": 1713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2142, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 452, \"cat-2\": \"Density: 26\", \"cat_2_index\": 829, \"group\": [767.0, 175.0, 45.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27698_BALBc-1_X02_Y02_1320_253\", \"ini\": 683, \"clust\": 909, \"rank\": 687, \"rankvar\": 1029, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2143, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2495, \"cat-2\": \"Density: 19\", \"cat_2_index\": 126, \"group\": [910.0, 211.0, 55.0, 14.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27744_BALBc-1_X02_Y02_1320_827\", \"ini\": 682, \"clust\": 2767, \"rank\": 1274, \"rankvar\": 982, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2144, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 453, \"cat-2\": \"Density: 21\", \"cat_2_index\": 225, \"group\": [2765.0, 426.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27802_BALBc-1_X02_Y02_1321_633\", \"ini\": 681, \"clust\": 965, \"rank\": 1055, \"rankvar\": 1262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2145, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 454, \"cat-2\": \"Density: 24\", \"cat_2_index\": 550, \"group\": [966.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27977_BALBc-1_X02_Y02_1324_135\", \"ini\": 680, \"clust\": 1885, \"rank\": 2252, \"rankvar\": 1891, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2146, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1369, \"cat-2\": \"Density: 15\", \"cat_2_index\": 45, \"group\": [1885.0, 281.0, 67.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28001_BALBc-1_X02_Y02_1324_408\", \"ini\": 679, \"clust\": 2068, \"rank\": 1839, \"rankvar\": 1789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2147, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1668, \"cat-2\": \"Density: 13\", \"cat_2_index\": 20, \"group\": [2065.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28058_BALBc-1_X02_Y02_1325_209\", \"ini\": 678, \"clust\": 2099, \"rank\": 2345, \"rankvar\": 1725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2148, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1983, \"cat-2\": \"Density: 18\", \"cat_2_index\": 100, \"group\": [2096.0, 310.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28143_BALBc-1_X02_Y02_1326_180\", \"ini\": 677, \"clust\": 612, \"rank\": 1385, \"rankvar\": 2537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2149, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 455, \"cat-2\": \"Density: 15\", \"cat_2_index\": 46, \"group\": [613.0, 141.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28240_BALBc-1_X02_Y02_1327_430\", \"ini\": 676, \"clust\": 1912, \"rank\": 1345, \"rankvar\": 729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2150, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1984, \"cat-2\": \"Density: 12\", \"cat_2_index\": 10, \"group\": [1912.0, 292.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28326_BALBc-1_X02_Y02_1328_311\", \"ini\": 675, \"clust\": 2082, \"rank\": 1872, \"rankvar\": 2079, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2151, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1370, \"cat-2\": \"Density: 13\", \"cat_2_index\": 21, \"group\": [2080.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28355_BALBc-1_X02_Y02_1328_671\", \"ini\": 674, \"clust\": 479, \"rank\": 2069, \"rankvar\": 1933, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2152, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2178, \"cat-2\": \"Density: 21\", \"cat_2_index\": 226, \"group\": [480.0, 99.0, 26.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28450_BALBc-1_X02_Y02_1329_795\", \"ini\": 673, \"clust\": 2685, \"rank\": 1973, \"rankvar\": 1512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2153, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 456, \"cat-2\": \"Density: 21\", \"cat_2_index\": 227, \"group\": [2682.0, 413.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28468_BALBc-1_X02_Y02_1329_935\", \"ini\": 672, \"clust\": 2408, \"rank\": 2586, \"rankvar\": 2223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2154, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2179, \"cat-2\": \"Density: 17\", \"cat_2_index\": 82, \"group\": [2406.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28590_BALBc-1_X02_Y02_1330_719\", \"ini\": 671, \"clust\": 2098, \"rank\": 2316, \"rankvar\": 1567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2155, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2180, \"cat-2\": \"Density: 25\", \"cat_2_index\": 685, \"group\": [2098.0, 310.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28625_BALBc-1_X02_Y02_1331_165\", \"ini\": 670, \"clust\": 956, \"rank\": 976, \"rankvar\": 289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2156, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 628, \"cat-2\": \"Density: 14\", \"cat_2_index\": 32, \"group\": [956.0, 220.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28658_BALBc-1_X02_Y02_1331_656\", \"ini\": 669, \"clust\": 1800, \"rank\": 328, \"rankvar\": 163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2157, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2181, \"cat-2\": \"Density: 23\", \"cat_2_index\": 426, \"group\": [1800.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28726_BALBc-1_X02_Y02_1332_561\", \"ini\": 668, \"clust\": 2615, \"rank\": 2095, \"rankvar\": 1384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2158, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2663, \"cat-2\": \"Density: 19\", \"cat_2_index\": 127, \"group\": [2612.0, 398.0, 96.0, 25.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28748_BALBc-1_X02_Y02_1332_775\", \"ini\": 667, \"clust\": 2214, \"rank\": 787, \"rankvar\": 776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2159, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 457, \"cat-2\": \"Density: 20\", \"cat_2_index\": 175, \"group\": [2214.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28827_BALBc-1_X02_Y02_1333_879\", \"ini\": 666, \"clust\": 1241, \"rank\": 662, \"rankvar\": 632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2160, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2182, \"cat-2\": \"Density: 18\", \"cat_2_index\": 101, \"group\": [1242.0, 256.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28880_BALBc-1_X02_Y02_1334_638\", \"ini\": 665, \"clust\": 886, \"rank\": 743, \"rankvar\": 609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2161, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 458, \"cat-2\": \"Density: 20\", \"cat_2_index\": 176, \"group\": [886.0, 203.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29002_BALBc-1_X02_Y02_1336_613\", \"ini\": 664, \"clust\": 785, \"rank\": 1692, \"rankvar\": 668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2162, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 459, \"cat-2\": \"Density: 19\", \"cat_2_index\": 128, \"group\": [789.0, 186.0, 48.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29036_BALBc-1_X02_Y02_1337_280\", \"ini\": 663, \"clust\": 302, \"rank\": 2457, \"rankvar\": 2656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2163, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1371, \"cat-2\": \"Density: 13\", \"cat_2_index\": 22, \"group\": [302.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29306_BALBc-1_X02_Y02_135_188\", \"ini\": 662, \"clust\": 2712, \"rank\": 1732, \"rankvar\": 618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2164, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1372, \"cat-2\": \"Density: 23\", \"cat_2_index\": 427, \"group\": [2709.0, 416.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29325_BALBc-1_X02_Y02_135_44\", \"ini\": 661, \"clust\": 1819, \"rank\": 284, \"rankvar\": 589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2165, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1373, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1690, \"group\": [1820.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29381_BALBc-1_X02_Y02_136_322\", \"ini\": 660, \"clust\": 1960, \"rank\": 2568, \"rankvar\": 2572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2166, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2664, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1428, \"group\": [1959.0, 303.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29406_BALBc-1_X02_Y02_136_579\", \"ini\": 659, \"clust\": 293, \"rank\": 2642, \"rankvar\": 2601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2167, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 460, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2110, \"group\": [294.0, 61.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29538_BALBc-1_X02_Y02_138_553\", \"ini\": 658, \"clust\": 1253, \"rank\": 623, \"rankvar\": 179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2168, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 461, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2272, \"group\": [1253.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29589_BALBc-1_X02_Y02_139_229\", \"ini\": 657, \"clust\": 343, \"rank\": 2795, \"rankvar\": 2749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2169, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1374, \"cat-2\": \"Density: 22\", \"cat_2_index\": 313, \"group\": [345.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29755_BALBc-1_X02_Y02_140_609\", \"ini\": 656, \"clust\": 552, \"rank\": 1940, \"rankvar\": 1506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2170, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1375, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2008, \"group\": [556.0, 121.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29945_BALBc-1_X02_Y02_143_270\", \"ini\": 655, \"clust\": 2015, \"rank\": 2346, \"rankvar\": 2689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2171, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1552, \"cat-2\": \"Density: 23\", \"cat_2_index\": 428, \"group\": [2012.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29975_BALBc-1_X02_Y02_143_638\", \"ini\": 654, \"clust\": 865, \"rank\": 807, \"rankvar\": 1323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2172, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1376, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2192, \"group\": [865.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29979_BALBc-1_X02_Y02_143_672\", \"ini\": 653, \"clust\": 1488, \"rank\": 414, \"rankvar\": 796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2173, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1377, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2009, \"group\": [1495.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30142_BALBc-1_X02_Y02_145_833\", \"ini\": 652, \"clust\": 379, \"rank\": 2222, \"rankvar\": 2362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2174, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1378, \"cat-2\": \"Density: 26\", \"cat_2_index\": 830, \"group\": [377.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30179_BALBc-1_X02_Y02_146_479\", \"ini\": 651, \"clust\": 1985, \"rank\": 1611, \"rankvar\": 1594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2175, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 860, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1429, \"group\": [1985.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30188_BALBc-1_X02_Y02_146_532\", \"ini\": 650, \"clust\": 1331, \"rank\": 459, \"rankvar\": 869, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2176, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1379, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1788, \"group\": [1332.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30434_BALBc-1_X02_Y02_149_94\", \"ini\": 649, \"clust\": 2016, \"rank\": 2434, \"rankvar\": 2706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2177, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 713, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1284, \"group\": [2015.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30646_BALBc-1_X02_Y02_151_872\", \"ini\": 648, \"clust\": 1618, \"rank\": 111, \"rankvar\": 199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2178, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1380, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1285, \"group\": [1618.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30861_BALBc-1_X02_Y02_154_562\", \"ini\": 647, \"clust\": 998, \"rank\": 1427, \"rankvar\": 1625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2179, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1381, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2010, \"group\": [1001.0, 224.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30899_BALBc-1_X02_Y02_155_136\", \"ini\": 646, \"clust\": 2100, \"rank\": 2362, \"rankvar\": 1912, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2180, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 462, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1133, \"group\": [2097.0, 310.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30927_BALBc-1_X02_Y02_155_518\", \"ini\": 645, \"clust\": 1037, \"rank\": 1374, \"rankvar\": 1076, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2181, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1382, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1551, \"group\": [1038.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31105_BALBc-1_X02_Y02_157_714\", \"ini\": 644, \"clust\": 282, \"rank\": 2053, \"rankvar\": 1795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2182, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1383, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1899, \"group\": [281.0, 57.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31639_BALBc-1_X02_Y02_164_25\", \"ini\": 643, \"clust\": 1962, \"rank\": 2198, \"rankvar\": 2418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1384, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1286, \"group\": [1958.0, 303.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31675_BALBc-1_X02_Y02_164_786\", \"ini\": 642, \"clust\": 1490, \"rank\": 658, \"rankvar\": 320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2184, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1385, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1287, \"group\": [1493.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31758_BALBc-1_X02_Y02_165_987\", \"ini\": 641, \"clust\": 438, \"rank\": 1221, \"rankvar\": 1972, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2185, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1386, \"cat-2\": \"Density: 18\", \"cat_2_index\": 102, \"group\": [439.0, 86.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31767_BALBc-1_X02_Y02_166_176\", \"ini\": 640, \"clust\": 114, \"rank\": 1110, \"rankvar\": 1132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2186, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1387, \"cat-2\": \"Density: 22\", \"cat_2_index\": 314, \"group\": [113.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31803_BALBc-1_X02_Y02_166_611\", \"ini\": 639, \"clust\": 663, \"rank\": 2420, \"rankvar\": 1348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2187, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 463, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1789, \"group\": [665.0, 156.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31929_BALBc-1_X02_Y02_168_588\", \"ini\": 638, \"clust\": 846, \"rank\": 1492, \"rankvar\": 1199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2188, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1388, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1691, \"group\": [846.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31935_BALBc-1_X02_Y02_168_629\", \"ini\": 637, \"clust\": 376, \"rank\": 2103, \"rankvar\": 2036, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2189, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1389, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1790, \"group\": [379.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32146_BALBc-1_X02_Y02_170_52\", \"ini\": 636, \"clust\": 578, \"rank\": 2679, \"rankvar\": 2545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2190, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 714, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1430, \"group\": [577.0, 129.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32156_BALBc-1_X02_Y02_170_685\", \"ini\": 635, \"clust\": 1671, \"rank\": 81, \"rankvar\": 509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2191, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1390, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1791, \"group\": [1669.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32358_BALBc-1_X02_Y02_173_739\", \"ini\": 634, \"clust\": 309, \"rank\": 2372, \"rankvar\": 2705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2192, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1391, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1552, \"group\": [309.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32397_BALBc-1_X02_Y02_174_285\", \"ini\": 633, \"clust\": 1932, \"rank\": 1711, \"rankvar\": 2465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2193, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 715, \"cat-2\": \"Density: 21\", \"cat_2_index\": 228, \"group\": [1926.0, 296.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32509_BALBc-1_X02_Y02_175_663\", \"ini\": 632, \"clust\": 320, \"rank\": 1149, \"rankvar\": 2526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2194, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1392, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1792, \"group\": [319.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32671_BALBc-1_X02_Y02_177_97\", \"ini\": 631, \"clust\": 339, \"rank\": 2789, \"rankvar\": 2613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2195, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 716, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1431, \"group\": [341.0, 70.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32767_BALBc-1_X02_Y02_179_372\", \"ini\": 630, \"clust\": 768, \"rank\": 1402, \"rankvar\": 1446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2196, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2665, \"cat-2\": \"Density: 23\", \"cat_2_index\": 429, \"group\": [768.0, 175.0, 45.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32865_BALBc-1_X02_Y02_18_566\", \"ini\": 629, \"clust\": 1013, \"rank\": 1050, \"rankvar\": 528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2197, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1393, \"cat-2\": \"Density: 24\", \"cat_2_index\": 551, \"group\": [1011.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32892_BALBc-1_X02_Y02_18_931\", \"ini\": 628, \"clust\": 1403, \"rank\": 857, \"rankvar\": 1119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2198, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1394, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1288, \"group\": [1405.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33131_BALBc-1_X02_Y02_183_257\", \"ini\": 627, \"clust\": 100, \"rank\": 1883, \"rankvar\": 1866, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2199, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1395, \"cat-2\": \"Density: 20\", \"cat_2_index\": 177, \"group\": [101.0, 22.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33364_BALBc-1_X02_Y02_186_477\", \"ini\": 626, \"clust\": 1360, \"rank\": 1051, \"rankvar\": 160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2200, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 861, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1432, \"group\": [1361.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33643_BALBc-1_X02_Y02_19_416\", \"ini\": 625, \"clust\": 334, \"rank\": 2128, \"rankvar\": 2455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2201, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 862, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2111, \"group\": [334.0, 67.0, 18.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33747_BALBc-1_X02_Y02_190_764\", \"ini\": 624, \"clust\": 2514, \"rank\": 1344, \"rankvar\": 1112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2202, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1396, \"cat-2\": \"Density: 27\", \"cat_2_index\": 981, \"group\": [2512.0, 382.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33886_BALBc-1_X02_Y02_192_590\", \"ini\": 623, \"clust\": 1029, \"rank\": 343, \"rankvar\": 1023, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2203, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2666, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2112, \"group\": [1028.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34093_BALBc-1_X02_Y02_195_549\", \"ini\": 622, \"clust\": 2622, \"rank\": 2179, \"rankvar\": 2077, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2204, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1397, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1289, \"group\": [2617.0, 400.0, 96.0, 25.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34272_BALBc-1_X02_Y02_197_884\", \"ini\": 621, \"clust\": 2626, \"rank\": 2612, \"rankvar\": 2292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2205, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 629, \"cat-2\": \"Density: 27\", \"cat_2_index\": 982, \"group\": [2624.0, 403.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34519_BALBc-1_X02_Y02_200_308\", \"ini\": 620, \"clust\": 84, \"rank\": 915, \"rankvar\": 856, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2206, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2667, \"cat-2\": \"Density: 25\", \"cat_2_index\": 686, \"group\": [85.0, 20.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34660_BALBc-1_X02_Y02_202_393\", \"ini\": 619, \"clust\": 1043, \"rank\": 978, \"rankvar\": 888, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2207, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2668, \"cat-2\": \"Density: 25\", \"cat_2_index\": 687, \"group\": [1048.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34801_BALBc-1_X02_Y02_203_987\", \"ini\": 618, \"clust\": 780, \"rank\": 2129, \"rankvar\": 1992, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2208, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1398, \"cat-2\": \"Density: 17\", \"cat_2_index\": 83, \"group\": [783.0, 183.0, 47.0, 11.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34909_BALBc-1_X02_Y02_205_632\", \"ini\": 617, \"clust\": 381, \"rank\": 2460, \"rankvar\": 2541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2209, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1399, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2011, \"group\": [392.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34936_BALBc-1_X02_Y02_205_931\", \"ini\": 616, \"clust\": 372, \"rank\": 2598, \"rankvar\": 2766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2210, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1400, \"cat-2\": \"Density: 26\", \"cat_2_index\": 831, \"group\": [373.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35064_BALBc-1_X02_Y02_207_701\", \"ini\": 615, \"clust\": 847, \"rank\": 1471, \"rankvar\": 1111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2211, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1401, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1692, \"group\": [847.0, 196.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35117_BALBc-1_X02_Y02_208_445\", \"ini\": 614, \"clust\": 1588, \"rank\": 695, \"rankvar\": 314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2212, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2669, \"cat-2\": \"Density: 26\", \"cat_2_index\": 832, \"group\": [1589.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35215_BALBc-1_X02_Y02_209_729\", \"ini\": 613, \"clust\": 817, \"rank\": 1297, \"rankvar\": 1357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2213, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1752, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1134, \"group\": [815.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35344_BALBc-1_X02_Y02_210_512\", \"ini\": 612, \"clust\": 1021, \"rank\": 518, \"rankvar\": 647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2214, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2670, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1135, \"group\": [1020.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35379_BALBc-1_X02_Y02_211_205\", \"ini\": 611, \"clust\": 85, \"rank\": 1183, \"rankvar\": 1455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2215, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1402, \"cat-2\": \"Density: 22\", \"cat_2_index\": 315, \"group\": [86.0, 20.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35409_BALBc-1_X02_Y02_211_663\", \"ini\": 610, \"clust\": 677, \"rank\": 2433, \"rankvar\": 1921, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2216, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1403, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1553, \"group\": [678.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35439_BALBc-1_X02_Y02_212_134\", \"ini\": 609, \"clust\": 2225, \"rank\": 990, \"rankvar\": 1759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2217, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1404, \"cat-2\": \"Density: 27\", \"cat_2_index\": 983, \"group\": [2223.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35525_BALBc-1_X02_Y02_213_248\", \"ini\": 608, \"clust\": 2237, \"rank\": 837, \"rankvar\": 1216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2218, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1405, \"cat-2\": \"Density: 22\", \"cat_2_index\": 316, \"group\": [2234.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35690_BALBc-1_X02_Y02_215_161\", \"ini\": 607, \"clust\": 150, \"rank\": 2370, \"rankvar\": 2139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2219, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1406, \"cat-2\": \"Density: 19\", \"cat_2_index\": 129, \"group\": [154.0, 33.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36203_BALBc-1_X02_Y02_221_61\", \"ini\": 606, \"clust\": 610, \"rank\": 606, \"rankvar\": 1960, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2220, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 717, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1433, \"group\": [615.0, 141.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36421_BALBc-1_X02_Y02_224_50\", \"ini\": 605, \"clust\": 2442, \"rank\": 2556, \"rankvar\": 2442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2221, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2325, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1434, \"group\": [2441.0, 362.0, 85.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36428_BALBc-1_X02_Y02_224_564\", \"ini\": 604, \"clust\": 1329, \"rank\": 475, \"rankvar\": 1296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2222, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2671, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1435, \"group\": [1330.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36602_BALBc-1_X02_Y02_226_849\", \"ini\": 603, \"clust\": 2133, \"rank\": 1910, \"rankvar\": 1832, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2223, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1407, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1136, \"group\": [2134.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36662_BALBc-1_X02_Y02_227_672\", \"ini\": 602, \"clust\": 1038, \"rank\": 1419, \"rankvar\": 789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2224, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1753, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1436, \"group\": [1041.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37114_BALBc-1_X02_Y02_232_789\", \"ini\": 601, \"clust\": 2152, \"rank\": 1117, \"rankvar\": 951, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2225, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1408, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1137, \"group\": [2149.0, 314.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37225_BALBc-1_X02_Y02_234_543\", \"ini\": 600, \"clust\": 2524, \"rank\": 1861, \"rankvar\": 564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2226, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 464, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1138, \"group\": [2522.0, 383.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37303_BALBc-1_X02_Y02_235_622\", \"ini\": 599, \"clust\": 1248, \"rank\": 406, \"rankvar\": 393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2227, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2672, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1437, \"group\": [1251.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37334_BALBc-1_X02_Y02_236_115\", \"ini\": 598, \"clust\": 410, \"rank\": 2250, \"rankvar\": 1857, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2228, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1409, \"cat-2\": \"Density: 27\", \"cat_2_index\": 984, \"group\": [411.0, 77.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37540_BALBc-1_X02_Y02_238_897\", \"ini\": 597, \"clust\": 371, \"rank\": 2502, \"rankvar\": 2598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2229, \"cat-1\": \"Neighbor: CD3(+) other markers (-)\", \"cat_1_index\": 948, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1793, \"group\": [374.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37573_BALBc-1_X02_Y02_239_298\", \"ini\": 596, \"clust\": 870, \"rank\": 264, \"rankvar\": 1651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2230, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 718, \"cat-2\": \"Density: 24\", \"cat_2_index\": 552, \"group\": [868.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37791_BALBc-1_X02_Y02_241_389\", \"ini\": 595, \"clust\": 1009, \"rank\": 648, \"rankvar\": 423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2231, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2673, \"cat-2\": \"Density: 22\", \"cat_2_index\": 317, \"group\": [1014.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37827_BALBc-1_X02_Y02_242_102\", \"ini\": 594, \"clust\": 1680, \"rank\": 13, \"rankvar\": 890, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2232, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1410, \"cat-2\": \"Density: 27\", \"cat_2_index\": 985, \"group\": [1677.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37931_BALBc-1_X02_Y02_243_508\", \"ini\": 593, \"clust\": 1283, \"rank\": 593, \"rankvar\": 154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2233, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1411, \"cat-2\": \"Density: 26\", \"cat_2_index\": 833, \"group\": [1285.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38145_BALBc-1_X02_Y02_246_163\", \"ini\": 592, \"clust\": 649, \"rank\": 2599, \"rankvar\": 1037, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2234, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1412, \"cat-2\": \"Density: 20\", \"cat_2_index\": 178, \"group\": [651.0, 154.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38443_BALBc-1_X02_Y02_25_159\", \"ini\": 591, \"clust\": 8, \"rank\": 2369, \"rankvar\": 805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2235, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2674, \"cat-2\": \"Density: 20\", \"cat_2_index\": 179, \"group\": [9.0, 6.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38529_BALBc-1_X02_Y02_250_569\", \"ini\": 590, \"clust\": 904, \"rank\": 663, \"rankvar\": 963, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2236, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2675, \"cat-2\": \"Density: 26\", \"cat_2_index\": 834, \"group\": [902.0, 208.0, 55.0, 14.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38579_BALBc-1_X02_Y02_251_215\", \"ini\": 589, \"clust\": 2059, \"rank\": 2710, \"rankvar\": 2704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2237, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1585, \"cat-2\": \"Density: 23\", \"cat_2_index\": 430, \"group\": [2056.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38688_BALBc-1_X02_Y02_252_435\", \"ini\": 588, \"clust\": 2584, \"rank\": 1265, \"rankvar\": 1569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2238, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2676, \"cat-2\": \"Density: 22\", \"cat_2_index\": 318, \"group\": [2584.0, 393.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38696_BALBc-1_X02_Y02_252_541\", \"ini\": 587, \"clust\": 1079, \"rank\": 1269, \"rankvar\": 977, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2239, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 927, \"cat-2\": \"Density: 26\", \"cat_2_index\": 835, \"group\": [1080.0, 230.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38727_BALBc-1_X02_Y02_252_932\", \"ini\": 586, \"clust\": 1411, \"rank\": 636, \"rankvar\": 829, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2240, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1413, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1554, \"group\": [1409.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38830_BALBc-1_X02_Y02_254_340\", \"ini\": 585, \"clust\": 1855, \"rank\": 294, \"rankvar\": 505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2241, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2677, \"cat-2\": \"Density: 26\", \"cat_2_index\": 836, \"group\": [1858.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38872_BALBc-1_X02_Y02_254_893\", \"ini\": 584, \"clust\": 2531, \"rank\": 1812, \"rankvar\": 1678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2242, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1414, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1555, \"group\": [2528.0, 384.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38912_BALBc-1_X02_Y02_255_475\", \"ini\": 583, \"clust\": 1010, \"rank\": 912, \"rankvar\": 866, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2243, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1415, \"cat-2\": \"Density: 25\", \"cat_2_index\": 688, \"group\": [1013.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39046_BALBc-1_X02_Y02_257_270\", \"ini\": 582, \"clust\": 2081, \"rank\": 1424, \"rankvar\": 1790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2244, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 719, \"cat-2\": \"Density: 21\", \"cat_2_index\": 229, \"group\": [2081.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39285_BALBc-1_X02_Y02_26_589\", \"ini\": 581, \"clust\": 746, \"rank\": 1452, \"rankvar\": 1265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2245, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1416, \"cat-2\": \"Density: 27\", \"cat_2_index\": 986, \"group\": [749.0, 168.0, 43.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39521_BALBc-1_X02_Y02_262_59\", \"ini\": 580, \"clust\": 2304, \"rank\": 1275, \"rankvar\": 1990, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2246, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1417, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1556, \"group\": [2305.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39680_BALBc-1_X02_Y02_264_831\", \"ini\": 579, \"clust\": 1998, \"rank\": 2334, \"rankvar\": 2226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2247, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1418, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1139, \"group\": [1995.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39683_BALBc-1_X02_Y02_264_853\", \"ini\": 578, \"clust\": 1975, \"rank\": 1407, \"rankvar\": 1489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2248, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1419, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1557, \"group\": [1972.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39823_BALBc-1_X02_Y02_266_650\", \"ini\": 577, \"clust\": 2635, \"rank\": 2486, \"rankvar\": 2369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2249, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2678, \"cat-2\": \"Density: 27\", \"cat_2_index\": 987, \"group\": [2632.0, 406.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40170_BALBc-1_X02_Y02_270_307\", \"ini\": 576, \"clust\": 2208, \"rank\": 1203, \"rankvar\": 1387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2250, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 465, \"cat-2\": \"Density: 22\", \"cat_2_index\": 319, \"group\": [2205.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40172_BALBc-1_X02_Y02_270_325\", \"ini\": 575, \"clust\": 472, \"rank\": 2418, \"rankvar\": 1777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2251, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2679, \"cat-2\": \"Density: 22\", \"cat_2_index\": 320, \"group\": [475.0, 95.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40222_BALBc-1_X02_Y02_270_961\", \"ini\": 574, \"clust\": 779, \"rank\": 2022, \"rankvar\": 2177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2252, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2326, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1140, \"group\": [779.0, 180.0, 46.0, 11.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40524_BALBc-1_X02_Y02_275_413\", \"ini\": 573, \"clust\": 1019, \"rank\": 433, \"rankvar\": 472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2253, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2680, \"cat-2\": \"Density: 19\", \"cat_2_index\": 130, \"group\": [1018.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40563_BALBc-1_X02_Y02_275_847\", \"ini\": 572, \"clust\": 596, \"rank\": 2184, \"rankvar\": 2585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2254, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 466, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1290, \"group\": [595.0, 136.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40879_BALBc-1_X02_Y02_28_120\", \"ini\": 571, \"clust\": 2197, \"rank\": 1272, \"rankvar\": 2473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2255, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2681, \"cat-2\": \"Density: 21\", \"cat_2_index\": 230, \"group\": [2192.0, 316.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41079_BALBc-1_X02_Y02_281_863\", \"ini\": 570, \"clust\": 814, \"rank\": 1030, \"rankvar\": 1093, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2256, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1420, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1438, \"group\": [812.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41088_BALBc-1_X02_Y02_281_933\", \"ini\": 569, \"clust\": 2503, \"rank\": 1366, \"rankvar\": 2153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2257, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2327, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2012, \"group\": [2499.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41109_BALBc-1_X02_Y02_282_19\", \"ini\": 568, \"clust\": 1990, \"rank\": 1694, \"rankvar\": 2123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2258, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1421, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1291, \"group\": [1986.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41853_BALBc-1_X02_Y02_291_291\", \"ini\": 567, \"clust\": 2282, \"rank\": 1331, \"rankvar\": 1492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2259, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1669, \"cat-2\": \"Density: 21\", \"cat_2_index\": 231, \"group\": [2280.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41921_BALBc-1_X02_Y02_292_234\", \"ini\": 566, \"clust\": 1189, \"rank\": 981, \"rankvar\": 483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2260, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2682, \"cat-2\": \"Density: 26\", \"cat_2_index\": 837, \"group\": [1187.0, 253.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41969_BALBc-1_X02_Y02_292_826\", \"ini\": 565, \"clust\": 443, \"rank\": 992, \"rankvar\": 1499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2261, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1422, \"cat-2\": \"Density: 27\", \"cat_2_index\": 988, \"group\": [450.0, 89.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42255_BALBc-1_X02_Y02_296_91\", \"ini\": 564, \"clust\": 2026, \"rank\": 1626, \"rankvar\": 2367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2262, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1423, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1439, \"group\": [2024.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42361_BALBc-1_X02_Y02_298_51\", \"ini\": 563, \"clust\": 2392, \"rank\": 1738, \"rankvar\": 1094, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2263, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1553, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1440, \"group\": [2400.0, 354.0, 83.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42376_BALBc-1_X02_Y02_298_688\", \"ini\": 562, \"clust\": 439, \"rank\": 1706, \"rankvar\": 1331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2264, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1754, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1292, \"group\": [440.0, 86.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42549_BALBc-1_X02_Y02_30_717\", \"ini\": 561, \"clust\": 383, \"rank\": 2706, \"rankvar\": 2805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2265, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1424, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1558, \"group\": [381.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42623_BALBc-1_X02_Y02_300_742\", \"ini\": 560, \"clust\": 2548, \"rank\": 1853, \"rankvar\": 1861, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2266, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1755, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1293, \"group\": [2547.0, 388.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42724_BALBc-1_X02_Y02_301_912\", \"ini\": 559, \"clust\": 2486, \"rank\": 1615, \"rankvar\": 2384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2267, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1425, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2013, \"group\": [2484.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43016_BALBc-1_X02_Y02_305_789\", \"ini\": 558, \"clust\": 398, \"rank\": 2634, \"rankvar\": 2668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2268, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2683, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1141, \"group\": [397.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43073_BALBc-1_X02_Y02_306_759\", \"ini\": 557, \"clust\": 1437, \"rank\": 710, \"rankvar\": 1833, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2269, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2684, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1142, \"group\": [1438.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43104_BALBc-1_X02_Y02_307_25\", \"ini\": 556, \"clust\": 951, \"rank\": 503, \"rankvar\": 672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2270, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2461, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1559, \"group\": [952.0, 220.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43260_BALBc-1_X02_Y02_309_581\", \"ini\": 555, \"clust\": 1931, \"rank\": 1470, \"rankvar\": 2069, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2271, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2685, \"cat-2\": \"Density: 23\", \"cat_2_index\": 431, \"group\": [1928.0, 296.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43563_BALBc-1_X02_Y02_312_481\", \"ini\": 554, \"clust\": 2139, \"rank\": 1644, \"rankvar\": 1733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2272, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2686, \"cat-2\": \"Density: 23\", \"cat_2_index\": 432, \"group\": [2140.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43574_BALBc-1_X02_Y02_312_648\", \"ini\": 553, \"clust\": 425, \"rank\": 2493, \"rankvar\": 2628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2273, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2687, \"cat-2\": \"Density: 25\", \"cat_2_index\": 689, \"group\": [426.0, 83.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43750_BALBc-1_X02_Y02_315_261\", \"ini\": 552, \"clust\": 2319, \"rank\": 1875, \"rankvar\": 361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2274, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1670, \"cat-2\": \"Density: 25\", \"cat_2_index\": 690, \"group\": [2317.0, 323.0, 74.0, 19.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43996_BALBc-1_X02_Y02_318_328\", \"ini\": 551, \"clust\": 1940, \"rank\": 2155, \"rankvar\": 1386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2275, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2688, \"cat-2\": \"Density: 25\", \"cat_2_index\": 691, \"group\": [1940.0, 300.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44586_BALBc-1_X02_Y02_324_940\", \"ini\": 550, \"clust\": 1204, \"rank\": 49, \"rankvar\": 950, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2276, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2328, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1794, \"group\": [1201.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44663_BALBc-1_X02_Y02_326_112\", \"ini\": 549, \"clust\": 2198, \"rank\": 1163, \"rankvar\": 2416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2277, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1426, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1294, \"group\": [2193.0, 316.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44734_BALBc-1_X02_Y02_326_893\", \"ini\": 548, \"clust\": 1457, \"rank\": 390, \"rankvar\": 649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2278, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1427, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2193, \"group\": [1458.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44795_BALBc-1_X02_Y02_327_686\", \"ini\": 547, \"clust\": 2718, \"rank\": 1980, \"rankvar\": 1878, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2279, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2689, \"cat-2\": \"Density: 26\", \"cat_2_index\": 838, \"group\": [2718.0, 418.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44797_BALBc-1_X02_Y02_327_702\", \"ini\": 546, \"clust\": 1370, \"rank\": 815, \"rankvar\": 366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2280, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2690, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1295, \"group\": [1387.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44833_BALBc-1_X02_Y02_328_182\", \"ini\": 545, \"clust\": 651, \"rank\": 2820, \"rankvar\": 2772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2281, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1586, \"cat-2\": \"Density: 25\", \"cat_2_index\": 692, \"group\": [650.0, 154.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44890_BALBc-1_X02_Y02_328_742\", \"ini\": 544, \"clust\": 274, \"rank\": 1196, \"rankvar\": 1083, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2282, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1428, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1693, \"group\": [275.0, 55.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45097_BALBc-1_X02_Y02_330_51\", \"ini\": 543, \"clust\": 2376, \"rank\": 2304, \"rankvar\": 2339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2283, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2462, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1143, \"group\": [2373.0, 349.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45134_BALBc-1_X02_Y02_330_922\", \"ini\": 542, \"clust\": 2273, \"rank\": 876, \"rankvar\": 2007, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2284, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1429, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2273, \"group\": [2269.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45153_BALBc-1_X02_Y02_331_217\", \"ini\": 541, \"clust\": 1371, \"rank\": 893, \"rankvar\": 241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2285, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1587, \"cat-2\": \"Density: 22\", \"cat_2_index\": 321, \"group\": [1386.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45435_BALBc-1_X02_Y02_334_951\", \"ini\": 540, \"clust\": 461, \"rank\": 2803, \"rankvar\": 2750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2286, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2329, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1795, \"group\": [465.0, 94.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45581_BALBc-1_X02_Y02_336_819\", \"ini\": 539, \"clust\": 2715, \"rank\": 2353, \"rankvar\": 2158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2287, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 467, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1560, \"group\": [2715.0, 417.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45601_BALBc-1_X02_Y02_337_15\", \"ini\": 538, \"clust\": 2462, \"rank\": 1858, \"rankvar\": 1890, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2288, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1554, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1796, \"group\": [2458.0, 371.0, 89.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45622_BALBc-1_X02_Y02_337_558\", \"ini\": 537, \"clust\": 1246, \"rank\": 337, \"rankvar\": 262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2289, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2691, \"cat-2\": \"Density: 22\", \"cat_2_index\": 322, \"group\": [1246.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45630_BALBc-1_X02_Y02_337_608\", \"ini\": 536, \"clust\": 2297, \"rank\": 1148, \"rankvar\": 1647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2290, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1430, \"cat-2\": \"Density: 25\", \"cat_2_index\": 693, \"group\": [2295.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45716_BALBc-1_X02_Y02_338_787\", \"ini\": 535, \"clust\": 380, \"rank\": 2443, \"rankvar\": 2522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2291, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1431, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1694, \"group\": [378.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45734_BALBc-1_X02_Y02_338_973\", \"ini\": 534, \"clust\": 1697, \"rank\": 14, \"rankvar\": 637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2292, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2330, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1296, \"group\": [1694.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46044_BALBc-1_X02_Y02_342_196\", \"ini\": 533, \"clust\": 231, \"rank\": 2351, \"rankvar\": 2673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2293, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1756, \"cat-2\": \"Density: 23\", \"cat_2_index\": 433, \"group\": [232.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46376_BALBc-1_X02_Y02_346_38\", \"ini\": 532, \"clust\": 1737, \"rank\": 35, \"rankvar\": 931, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2294, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1671, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1695, \"group\": [1735.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46496_BALBc-1_X02_Y02_347_862\", \"ini\": 531, \"clust\": 365, \"rank\": 2806, \"rankvar\": 2757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2295, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1432, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2113, \"group\": [365.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46558_BALBc-1_X02_Y02_348_812\", \"ini\": 530, \"clust\": 1322, \"rank\": 817, \"rankvar\": 633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2296, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 468, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1797, \"group\": [1323.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46798_BALBc-1_X02_Y02_350_899\", \"ini\": 529, \"clust\": 1762, \"rank\": 176, \"rankvar\": 495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2297, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1433, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2194, \"group\": [1760.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46832_BALBc-1_X02_Y02_351_395\", \"ini\": 528, \"clust\": 1594, \"rank\": 422, \"rankvar\": 1369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2298, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2692, \"cat-2\": \"Density: 18\", \"cat_2_index\": 103, \"group\": [1593.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47131_BALBc-1_X02_Y02_355_343\", \"ini\": 527, \"clust\": 1892, \"rank\": 1917, \"rankvar\": 547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2299, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1672, \"cat-2\": \"Density: 18\", \"cat_2_index\": 104, \"group\": [1889.0, 284.0, 68.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47280_BALBc-1_X02_Y02_357_240\", \"ini\": 526, \"clust\": 2187, \"rank\": 1316, \"rankvar\": 1005, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2300, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 469, \"cat-2\": \"Density: 23\", \"cat_2_index\": 434, \"group\": [2185.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47378_BALBc-1_X02_Y02_358_713\", \"ini\": 525, \"clust\": 821, \"rank\": 1135, \"rankvar\": 527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2301, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1434, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2014, \"group\": [827.0, 195.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47461_BALBc-1_X02_Y02_359_961\", \"ini\": 524, \"clust\": 1251, \"rank\": 268, \"rankvar\": 214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2302, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1985, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1798, \"group\": [1249.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47870_BALBc-1_X02_Y02_364_646\", \"ini\": 523, \"clust\": 1266, \"rank\": 509, \"rankvar\": 1048, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2303, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 470, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1441, \"group\": [1266.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47876_BALBc-1_X02_Y02_364_679\", \"ini\": 522, \"clust\": 2520, \"rank\": 1318, \"rankvar\": 1016, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2304, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2693, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1900, \"group\": [2518.0, 383.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47961_BALBc-1_X02_Y02_365_605\", \"ini\": 521, \"clust\": 2710, \"rank\": 1975, \"rankvar\": 1864, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2305, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2694, \"cat-2\": \"Density: 26\", \"cat_2_index\": 839, \"group\": [2712.0, 416.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48010_BALBc-1_X02_Y02_366_148\", \"ini\": 520, \"clust\": 340, \"rank\": 2814, \"rankvar\": 2815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2306, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1435, \"cat-2\": \"Density: 25\", \"cat_2_index\": 694, \"group\": [339.0, 70.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48086_BALBc-1_X02_Y02_367_266\", \"ini\": 519, \"clust\": 193, \"rank\": 2546, \"rankvar\": 2611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2307, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1673, \"cat-2\": \"Density: 21\", \"cat_2_index\": 232, \"group\": [194.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48310_BALBc-1_X02_Y02_369_971\", \"ini\": 518, \"clust\": 464, \"rank\": 2653, \"rankvar\": 2448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2308, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2331, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1297, \"group\": [463.0, 94.0, 25.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48337_BALBc-1_X02_Y02_37_334\", \"ini\": 517, \"clust\": 2619, \"rank\": 1391, \"rankvar\": 1379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2309, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2695, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1298, \"group\": [2619.0, 401.0, 96.0, 25.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48352_BALBc-1_X02_Y02_37_533\", \"ini\": 516, \"clust\": 1343, \"rank\": 1096, \"rankvar\": 294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2310, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1436, \"cat-2\": \"Density: 27\", \"cat_2_index\": 989, \"group\": [1348.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48474_BALBc-1_X02_Y02_371_45\", \"ini\": 515, \"clust\": 1235, \"rank\": 679, \"rankvar\": 476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2311, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1674, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1799, \"group\": [1236.0, 255.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48542_BALBc-1_X02_Y02_372_378\", \"ini\": 514, \"clust\": 1545, \"rank\": 364, \"rankvar\": 189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2312, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2696, \"cat-2\": \"Density: 16\", \"cat_2_index\": 63, \"group\": [1543.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48653_BALBc-1_X02_Y02_373_710\", \"ini\": 513, \"clust\": 2799, \"rank\": 1447, \"rankvar\": 592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2313, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1437, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2114, \"group\": [2797.0, 431.0, 103.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48742_BALBc-1_X02_Y02_374_766\", \"ini\": 512, \"clust\": 275, \"rank\": 1254, \"rankvar\": 639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2314, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1438, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2274, \"group\": [276.0, 55.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48757_BALBc-1_X02_Y02_375_1002\", \"ini\": 511, \"clust\": 1206, \"rank\": 153, \"rankvar\": 731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2315, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1439, \"cat-2\": \"Density: 23\", \"cat_2_index\": 435, \"group\": [1206.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48766_BALBc-1_X02_Y02_375_206\", \"ini\": 510, \"clust\": 238, \"rank\": 2258, \"rankvar\": 2612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2316, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1757, \"cat-2\": \"Density: 25\", \"cat_2_index\": 695, \"group\": [238.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49046_BALBc-1_X02_Y02_378_827\", \"ini\": 509, \"clust\": 2515, \"rank\": 1188, \"rankvar\": 948, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2317, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1440, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2115, \"group\": [2513.0, 382.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49131_BALBc-1_X02_Y02_379_932\", \"ini\": 508, \"clust\": 271, \"rank\": 1632, \"rankvar\": 1055, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2318, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1441, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2015, \"group\": [272.0, 54.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49273_BALBc-1_X02_Y02_380_907\", \"ini\": 507, \"clust\": 1333, \"rank\": 370, \"rankvar\": 915, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2319, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1442, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2275, \"group\": [1334.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49542_BALBc-1_X02_Y02_384_270\", \"ini\": 506, \"clust\": 2052, \"rank\": 1827, \"rankvar\": 2084, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2320, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 720, \"cat-2\": \"Density: 21\", \"cat_2_index\": 233, \"group\": [2049.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49696_BALBc-1_X02_Y02_386_104\", \"ini\": 505, \"clust\": 2484, \"rank\": 1950, \"rankvar\": 2420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2321, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 721, \"cat-2\": \"Density: 26\", \"cat_2_index\": 840, \"group\": [2481.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49859_BALBc-1_X02_Y02_387_719\", \"ini\": 504, \"clust\": 2646, \"rank\": 2218, \"rankvar\": 826, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2322, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1443, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2276, \"group\": [2656.0, 410.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49926_BALBc-1_X02_Y02_388_683\", \"ini\": 503, \"clust\": 1247, \"rank\": 604, \"rankvar\": 573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2323, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 471, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2116, \"group\": [1259.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49970_BALBc-1_X02_Y02_389_234\", \"ini\": 502, \"clust\": 1309, \"rank\": 741, \"rankvar\": 704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2324, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 722, \"cat-2\": \"Density: 24\", \"cat_2_index\": 553, \"group\": [1309.0, 259.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50081_BALBc-1_X02_Y02_39_906\", \"ini\": 501, \"clust\": 759, \"rank\": 461, \"rankvar\": 1152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2325, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1444, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1561, \"group\": [760.0, 173.0, 44.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50288_BALBc-1_X02_Y02_392_752\", \"ini\": 500, \"clust\": 1324, \"rank\": 850, \"rankvar\": 604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2326, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1445, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2409, \"group\": [1328.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50373_BALBc-1_X02_Y02_393_952\", \"ini\": 499, \"clust\": 1760, \"rank\": 207, \"rankvar\": 288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2327, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 472, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1901, \"group\": [1758.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50545_BALBc-1_X02_Y02_396_299\", \"ini\": 498, \"clust\": 1187, \"rank\": 1024, \"rankvar\": 1289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2328, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1675, \"cat-2\": \"Density: 21\", \"cat_2_index\": 234, \"group\": [1188.0, 253.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50577_BALBc-1_X02_Y02_396_66\", \"ini\": 497, \"clust\": 560, \"rank\": 2299, \"rankvar\": 2484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2329, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2463, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1562, \"group\": [561.0, 123.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50639_BALBc-1_X02_Y02_397_506\", \"ini\": 496, \"clust\": 2525, \"rank\": 1789, \"rankvar\": 1435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2330, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2697, \"cat-2\": \"Density: 20\", \"cat_2_index\": 180, \"group\": [2523.0, 383.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50667_BALBc-1_X02_Y02_397_837\", \"ini\": 495, \"clust\": 434, \"rank\": 1935, \"rankvar\": 1645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2331, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1446, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2117, \"group\": [438.0, 85.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50671_BALBc-1_X02_Y02_397_871\", \"ini\": 494, \"clust\": 1640, \"rank\": 274, \"rankvar\": 36, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2332, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1447, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2016, \"group\": [1643.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50773_BALBc-1_X02_Y02_399_185\", \"ini\": 493, \"clust\": 205, \"rank\": 1698, \"rankvar\": 2462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2333, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1758, \"cat-2\": \"Density: 26\", \"cat_2_index\": 841, \"group\": [206.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50866_BALBc-1_X02_Y02_4_371\", \"ini\": 492, \"clust\": 698, \"rank\": 2781, \"rankvar\": 2496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2334, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1676, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1563, \"group\": [699.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51013_BALBc-1_X02_Y02_400_654\", \"ini\": 491, \"clust\": 1999, \"rank\": 2491, \"rankvar\": 2691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2335, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 473, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2118, \"group\": [1996.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51178_BALBc-1_X02_Y02_402_800\", \"ini\": 490, \"clust\": 2608, \"rank\": 2324, \"rankvar\": 1968, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2336, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 474, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2538, \"group\": [2605.0, 397.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51223_BALBc-1_X02_Y02_403_448\", \"ini\": 489, \"clust\": 2028, \"rank\": 1349, \"rankvar\": 2028, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2337, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 630, \"cat-2\": \"Density: 18\", \"cat_2_index\": 105, \"group\": [2028.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51252_BALBc-1_X02_Y02_403_925\", \"ini\": 488, \"clust\": 318, \"rank\": 1243, \"rankvar\": 1544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2338, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 475, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2345, \"group\": [322.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51314_BALBc-1_X02_Y02_404_700\", \"ini\": 487, \"clust\": 2735, \"rank\": 1540, \"rankvar\": 587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2339, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1570, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2017, \"group\": [2732.0, 422.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51733_BALBc-1_X02_Y02_409_627\", \"ini\": 486, \"clust\": 2513, \"rank\": 1217, \"rankvar\": 984, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2340, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 476, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1800, \"group\": [2509.0, 381.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51815_BALBc-1_X02_Y02_41_743\", \"ini\": 485, \"clust\": 1629, \"rank\": 53, \"rankvar\": 376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2341, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1448, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1801, \"group\": [1625.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51858_BALBc-1_X02_Y02_410_359\", \"ini\": 484, \"clust\": 2283, \"rank\": 1281, \"rankvar\": 1816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2342, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 631, \"cat-2\": \"Density: 16\", \"cat_2_index\": 64, \"group\": [2281.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51875_BALBc-1_X02_Y02_410_48\", \"ini\": 483, \"clust\": 200, \"rank\": 1519, \"rankvar\": 1905, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2343, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1677, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1564, \"group\": [200.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51967_BALBc-1_X02_Y02_411_743\", \"ini\": 482, \"clust\": 522, \"rank\": 2360, \"rankvar\": 1963, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2344, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1571, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2346, \"group\": [524.0, 110.0, 29.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52455_BALBc-1_X02_Y02_417_999\", \"ini\": 481, \"clust\": 1314, \"rank\": 538, \"rankvar\": 942, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2345, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1449, \"cat-2\": \"Density: 22\", \"cat_2_index\": 323, \"group\": [1313.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52537_BALBc-1_X02_Y02_418_969\", \"ini\": 480, \"clust\": 2705, \"rank\": 1925, \"rankvar\": 1642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2346, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1450, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1565, \"group\": [2702.0, 416.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52561_BALBc-1_X02_Y02_419_278\", \"ini\": 479, \"clust\": 544, \"rank\": 2331, \"rankvar\": 2161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2347, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 723, \"cat-2\": \"Density: 21\", \"cat_2_index\": 235, \"group\": [548.0, 119.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52608_BALBc-1_X02_Y02_419_84\", \"ini\": 478, \"clust\": 1428, \"rank\": 532, \"rankvar\": 1616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2348, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1451, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1802, \"group\": [1432.0, 266.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52692_BALBc-1_X02_Y02_420_10\", \"ini\": 477, \"clust\": 2154, \"rank\": 1346, \"rankvar\": 749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2349, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1452, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1696, \"group\": [2152.0, 314.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52698_BALBc-1_X02_Y02_420_121\", \"ini\": 476, \"clust\": 188, \"rank\": 1569, \"rankvar\": 2474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2350, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 724, \"cat-2\": \"Density: 27\", \"cat_2_index\": 990, \"group\": [187.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52763_BALBc-1_X02_Y02_420_947\", \"ini\": 475, \"clust\": 1754, \"rank\": 280, \"rankvar\": 207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2351, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 477, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1902, \"group\": [1750.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52982_BALBc-1_X02_Y02_423_748\", \"ini\": 474, \"clust\": 2148, \"rank\": 1240, \"rankvar\": 1158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2352, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 478, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2347, \"group\": [2145.0, 314.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53042_BALBc-1_X02_Y02_424_598\", \"ini\": 473, \"clust\": 947, \"rank\": 286, \"rankvar\": 968, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2353, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2698, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1299, \"group\": [947.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53143_BALBc-1_X02_Y02_425_911\", \"ini\": 472, \"clust\": 960, \"rank\": 916, \"rankvar\": 463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2354, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1453, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2493, \"group\": [985.0, 221.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53612_BALBc-1_X02_Y02_430_780\", \"ini\": 471, \"clust\": 498, \"rank\": 2318, \"rankvar\": 2356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2355, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 479, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2277, \"group\": [498.0, 104.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53651_BALBc-1_X02_Y02_431_210\", \"ini\": 470, \"clust\": 2112, \"rank\": 1905, \"rankvar\": 2118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2356, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 725, \"cat-2\": \"Density: 27\", \"cat_2_index\": 991, \"group\": [2108.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53748_BALBc-1_X02_Y02_432_458\", \"ini\": 469, \"clust\": 2009, \"rank\": 2038, \"rankvar\": 2274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2357, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2699, \"cat-2\": \"Density: 18\", \"cat_2_index\": 106, \"group\": [2007.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53769_BALBc-1_X02_Y02_432_657\", \"ini\": 468, \"clust\": 702, \"rank\": 2735, \"rankvar\": 2566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2358, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 480, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2018, \"group\": [702.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53818_BALBc-1_X02_Y02_433_32\", \"ini\": 467, \"clust\": 1651, \"rank\": 105, \"rankvar\": 168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2359, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 863, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1903, \"group\": [1652.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53861_BALBc-1_X02_Y02_433_832\", \"ini\": 466, \"clust\": 2521, \"rank\": 1724, \"rankvar\": 1191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2360, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2700, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2494, \"group\": [2521.0, 383.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53918_BALBc-1_X02_Y02_434_639\", \"ini\": 465, \"clust\": 1586, \"rank\": 319, \"rankvar\": 1309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2361, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 481, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1803, \"group\": [1587.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53990_BALBc-1_X02_Y02_435_547\", \"ini\": 464, \"clust\": 1263, \"rank\": 792, \"rankvar\": 405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2362, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2701, \"cat-2\": \"Density: 24\", \"cat_2_index\": 554, \"group\": [1263.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54076_BALBc-1_X02_Y02_436_716\", \"ini\": 463, \"clust\": 2643, \"rank\": 1881, \"rankvar\": 553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2363, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1572, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2348, \"group\": [2642.0, 408.0, 99.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54081_BALBc-1_X02_Y02_436_770\", \"ini\": 462, \"clust\": 751, \"rank\": 1142, \"rankvar\": 1202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2364, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 482, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2410, \"group\": [754.0, 171.0, 43.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54253_BALBc-1_X02_Y02_438_736\", \"ini\": 461, \"clust\": 999, \"rank\": 1152, \"rankvar\": 1596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2365, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 483, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2349, \"group\": [999.0, 224.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54323_BALBc-1_X02_Y02_439_680\", \"ini\": 460, \"clust\": 2303, \"rank\": 1090, \"rankvar\": 584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2366, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 484, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2278, \"group\": [2306.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54356_BALBc-1_X02_Y02_44_193\", \"ini\": 459, \"clust\": 890, \"rank\": 842, \"rankvar\": 596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2367, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2702, \"cat-2\": \"Density: 21\", \"cat_2_index\": 236, \"group\": [890.0, 204.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54458_BALBc-1_X02_Y02_440_577\", \"ini\": 458, \"clust\": 1989, \"rank\": 1904, \"rankvar\": 1965, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2368, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2703, \"cat-2\": \"Density: 24\", \"cat_2_index\": 555, \"group\": [1988.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54556_BALBc-1_X02_Y02_441_892\", \"ini\": 457, \"clust\": 2359, \"rank\": 2772, \"rankvar\": 2002, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2369, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1454, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2350, \"group\": [2357.0, 345.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54798_BALBc-1_X02_Y02_444_961\", \"ini\": 456, \"clust\": 1276, \"rank\": 833, \"rankvar\": 22, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2370, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1455, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1442, \"group\": [1276.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54819_BALBc-1_X02_Y02_445_21\", \"ini\": 455, \"clust\": 2109, \"rank\": 2447, \"rankvar\": 2234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2371, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 485, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1904, \"group\": [2107.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54862_BALBc-1_X02_Y02_445_938\", \"ini\": 454, \"clust\": 766, \"rank\": 1467, \"rankvar\": 522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2372, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 632, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2019, \"group\": [769.0, 175.0, 45.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55022_BALBc-1_X02_Y02_448_177\", \"ini\": 453, \"clust\": 1525, \"rank\": 512, \"rankvar\": 319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2373, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1456, \"cat-2\": \"Density: 27\", \"cat_2_index\": 992, \"group\": [1524.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55154_BALBc-1_X02_Y02_449_850\", \"ini\": 452, \"clust\": 1982, \"rank\": 1740, \"rankvar\": 1527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2374, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2704, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2279, \"group\": [1979.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55263_BALBc-1_X02_Y02_450_401\", \"ini\": 451, \"clust\": 103, \"rank\": 1151, \"rankvar\": 1380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2375, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1457, \"cat-2\": \"Density: 18\", \"cat_2_index\": 107, \"group\": [103.0, 23.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55369_BALBc-1_X02_Y02_451_799\", \"ini\": 450, \"clust\": 1224, \"rank\": 735, \"rankvar\": 513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2376, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 486, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2280, \"group\": [1223.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55395_BALBc-1_X02_Y02_452_153\", \"ini\": 449, \"clust\": 1086, \"rank\": 1564, \"rankvar\": 1623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2377, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 726, \"cat-2\": \"Density: 25\", \"cat_2_index\": 696, \"group\": [1116.0, 236.0, 61.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55452_BALBc-1_X02_Y02_452_751\", \"ini\": 448, \"clust\": 1799, \"rank\": 122, \"rankvar\": 453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2378, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 487, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2281, \"group\": [1797.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55453_BALBc-1_X02_Y02_452_762\", \"ini\": 447, \"clust\": 2558, \"rank\": 1608, \"rankvar\": 348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2379, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 488, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2411, \"group\": [2559.0, 390.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55520_BALBc-1_X02_Y02_453_611\", \"ini\": 446, \"clust\": 2495, \"rank\": 1814, \"rankvar\": 2240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2380, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 489, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1300, \"group\": [2493.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55535_BALBc-1_X02_Y02_453_779\", \"ini\": 445, \"clust\": 2792, \"rank\": 1153, \"rankvar\": 1125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2381, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 490, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2351, \"group\": [2790.0, 429.0, 103.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55769_BALBc-1_X02_Y02_456_717\", \"ini\": 444, \"clust\": 1258, \"rank\": 322, \"rankvar\": 166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2382, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 491, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2539, \"group\": [1257.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55815_BALBc-1_X02_Y02_457_41\", \"ini\": 443, \"clust\": 2340, \"rank\": 674, \"rankvar\": 2143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2383, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1986, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1697, \"group\": [2340.0, 335.0, 77.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55836_BALBc-1_X02_Y02_457_651\", \"ini\": 442, \"clust\": 1745, \"rank\": 189, \"rankvar\": 739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2384, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 492, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1905, \"group\": [1742.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55853_BALBc-1_X02_Y02_457_820\", \"ini\": 441, \"clust\": 1823, \"rank\": 441, \"rankvar\": 326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2385, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 493, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2540, \"group\": [1819.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55927_BALBc-1_X02_Y02_458_893\", \"ini\": 440, \"clust\": 1449, \"rank\": 123, \"rankvar\": 1130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2386, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 633, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2412, \"group\": [1446.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56318_BALBc-1_X02_Y02_462_867\", \"ini\": 439, \"clust\": 645, \"rank\": 2725, \"rankvar\": 2132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2387, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 634, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2495, \"group\": [646.0, 152.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56467_BALBc-1_X02_Y02_465_167\", \"ini\": 438, \"clust\": 1172, \"rank\": 922, \"rankvar\": 399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2388, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 494, \"cat-2\": \"Density: 26\", \"cat_2_index\": 842, \"group\": [1174.0, 248.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56525_BALBc-1_X02_Y02_465_852\", \"ini\": 437, \"clust\": 2397, \"rank\": 1929, \"rankvar\": 1728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2389, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 495, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2413, \"group\": [2396.0, 353.0, 83.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56552_BALBc-1_X02_Y02_466_269\", \"ini\": 436, \"clust\": 2636, \"rank\": 2649, \"rankvar\": 2491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2390, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1458, \"cat-2\": \"Density: 23\", \"cat_2_index\": 436, \"group\": [2633.0, 406.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56674_BALBc-1_X02_Y02_467_624\", \"ini\": 435, \"clust\": 866, \"rank\": 910, \"rankvar\": 898, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2391, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 496, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1804, \"group\": [871.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56705_BALBc-1_X02_Y02_467_999\", \"ini\": 434, \"clust\": 2111, \"rank\": 2127, \"rankvar\": 2014, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2392, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1459, \"cat-2\": \"Density: 21\", \"cat_2_index\": 237, \"group\": [2110.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56787_BALBc-1_X02_Y02_469_24\", \"ini\": 433, \"clust\": 295, \"rank\": 1622, \"rankvar\": 1726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2393, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1460, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2119, \"group\": [296.0, 61.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56914_BALBc-1_X02_Y02_47_868\", \"ini\": 432, \"clust\": 283, \"rank\": 2189, \"rankvar\": 2295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2394, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1461, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1805, \"group\": [282.0, 57.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57003_BALBc-1_X02_Y02_470_953\", \"ini\": 431, \"clust\": 2807, \"rank\": 1683, \"rankvar\": 173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2395, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 635, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1443, \"group\": [2805.0, 434.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57113_BALBc-1_X02_Y02_472_681\", \"ini\": 430, \"clust\": 2686, \"rank\": 2000, \"rankvar\": 1591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2396, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 497, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2352, \"group\": [2683.0, 413.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57374_BALBc-1_X02_Y02_475_756\", \"ini\": 429, \"clust\": 1875, \"rank\": 114, \"rankvar\": 408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2397, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 498, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2414, \"group\": [1870.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57405_BALBc-1_X02_Y02_476_220\", \"ini\": 428, \"clust\": 2180, \"rank\": 810, \"rankvar\": 844, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2398, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2705, \"cat-2\": \"Density: 26\", \"cat_2_index\": 843, \"group\": [2178.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57527_BALBc-1_X02_Y02_477_735\", \"ini\": 427, \"clust\": 2697, \"rank\": 2230, \"rankvar\": 1486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2399, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 499, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2496, \"group\": [2693.0, 414.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57580_BALBc-1_X02_Y02_478_330\", \"ini\": 426, \"clust\": 2170, \"rank\": 1697, \"rankvar\": 1786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2400, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1462, \"cat-2\": \"Density: 18\", \"cat_2_index\": 108, \"group\": [2168.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57688_BALBc-1_X02_Y02_479_626\", \"ini\": 425, \"clust\": 2720, \"rank\": 2323, \"rankvar\": 2064, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2401, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 500, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1566, \"group\": [2717.0, 418.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57711_BALBc-1_X02_Y02_48_105\", \"ini\": 424, \"clust\": 2380, \"rank\": 2694, \"rankvar\": 2761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2402, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2464, \"cat-2\": \"Density: 22\", \"cat_2_index\": 324, \"group\": [2375.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57920_BALBc-1_X02_Y02_481_785\", \"ini\": 423, \"clust\": 1893, \"rank\": 1774, \"rankvar\": 627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2403, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 501, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2282, \"group\": [1890.0, 284.0, 68.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58105_BALBc-1_X02_Y02_484_252\", \"ini\": 422, \"clust\": 1433, \"rank\": 285, \"rankvar\": 1340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2404, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1463, \"cat-2\": \"Density: 23\", \"cat_2_index\": 437, \"group\": [1435.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58124_BALBc-1_X02_Y02_484_432\", \"ini\": 421, \"clust\": 1015, \"rank\": 1033, \"rankvar\": 1798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2405, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1464, \"cat-2\": \"Density: 20\", \"cat_2_index\": 181, \"group\": [1016.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58170_BALBc-1_X02_Y02_484_987\", \"ini\": 420, \"clust\": 2791, \"rank\": 1873, \"rankvar\": 660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2406, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 502, \"cat-2\": \"Density: 24\", \"cat_2_index\": 556, \"group\": [2787.0, 428.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58222_BALBc-1_X02_Y02_485_578\", \"ini\": 419, \"clust\": 1968, \"rank\": 2423, \"rankvar\": 2269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2407, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2706, \"cat-2\": \"Density: 27\", \"cat_2_index\": 993, \"group\": [1965.0, 303.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58242_BALBc-1_X02_Y02_485_832\", \"ini\": 418, \"clust\": 2724, \"rank\": 2342, \"rankvar\": 1310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2408, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 503, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2415, \"group\": [2724.0, 419.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58476_BALBc-1_X02_Y02_488_845\", \"ini\": 417, \"clust\": 1771, \"rank\": 260, \"rankvar\": 79, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2409, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 504, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2353, \"group\": [1772.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58566_BALBc-1_X02_Y02_489_956\", \"ini\": 416, \"clust\": 433, \"rank\": 2089, \"rankvar\": 2199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2410, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 636, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1567, \"group\": [431.0, 83.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58719_BALBc-1_X02_Y02_491_17\", \"ini\": 415, \"clust\": 1296, \"rank\": 1181, \"rankvar\": 914, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2411, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1465, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2283, \"group\": [1296.0, 258.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58720_BALBc-1_X02_Y02_491_183\", \"ini\": 414, \"clust\": 157, \"rank\": 2152, \"rankvar\": 2120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2412, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 505, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1444, \"group\": [157.0, 34.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58765_BALBc-1_X02_Y02_491_801\", \"ini\": 413, \"clust\": 2793, \"rank\": 1145, \"rankvar\": 557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2413, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 506, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2497, \"group\": [2791.0, 429.0, 103.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58869_BALBc-1_X02_Y02_493_117\", \"ini\": 412, \"clust\": 1230, \"rank\": 1000, \"rankvar\": 700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2414, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1466, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1568, \"group\": [1230.0, 255.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58906_BALBc-1_X02_Y02_493_620\", \"ini\": 411, \"clust\": 2035, \"rank\": 2158, \"rankvar\": 2724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2415, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 507, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1698, \"group\": [2031.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58994_BALBc-1_X02_Y02_494_645\", \"ini\": 410, \"clust\": 2209, \"rank\": 1227, \"rankvar\": 1867, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2416, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 508, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1806, \"group\": [2206.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59111_BALBc-1_X02_Y02_496_195\", \"ini\": 409, \"clust\": 770, \"rank\": 924, \"rankvar\": 1918, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2417, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 727, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1144, \"group\": [770.0, 176.0, 45.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59190_BALBc-1_X02_Y02_496_937\", \"ini\": 408, \"clust\": 1508, \"rank\": 704, \"rankvar\": 430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2418, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 637, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2020, \"group\": [1510.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59361_BALBc-1_X02_Y02_499_164\", \"ini\": 407, \"clust\": 2302, \"rank\": 1031, \"rankvar\": 798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2419, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 728, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1569, \"group\": [2299.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59627_BALBc-1_X02_Y02_501_380\", \"ini\": 406, \"clust\": 2027, \"rank\": 1804, \"rankvar\": 2221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2420, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1467, \"cat-2\": \"Density: 20\", \"cat_2_index\": 182, \"group\": [2029.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59630_BALBc-1_X02_Y02_501_406\", \"ini\": 405, \"clust\": 1458, \"rank\": 152, \"rankvar\": 884, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2421, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 509, \"cat-2\": \"Density: 21\", \"cat_2_index\": 238, \"group\": [1461.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59720_BALBc-1_X02_Y02_502_671\", \"ini\": 404, \"clust\": 1523, \"rank\": 760, \"rankvar\": 177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2422, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 510, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1807, \"group\": [1525.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59726_BALBc-1_X02_Y02_502_707\", \"ini\": 403, \"clust\": 1380, \"rank\": 788, \"rankvar\": 55, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2423, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 511, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2592, \"group\": [1379.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59879_BALBc-1_X02_Y02_504_867\", \"ini\": 402, \"clust\": 2633, \"rank\": 2315, \"rankvar\": 1615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2424, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 638, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2120, \"group\": [2631.0, 405.0, 98.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59993_BALBc-1_X02_Y02_506_250\", \"ini\": 401, \"clust\": 98, \"rank\": 1459, \"rankvar\": 1717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2425, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1468, \"cat-2\": \"Density: 25\", \"cat_2_index\": 697, \"group\": [98.0, 22.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60209_BALBc-1_X02_Y02_508_95\", \"ini\": 400, \"clust\": 614, \"rank\": 1138, \"rankvar\": 2098, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2426, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 928, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1808, \"group\": [612.0, 141.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60246_BALBc-1_X02_Y02_509_500\", \"ini\": 399, \"clust\": 2207, \"rank\": 1126, \"rankvar\": 1513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2427, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2707, \"cat-2\": \"Density: 22\", \"cat_2_index\": 325, \"group\": [2207.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60484_BALBc-1_X02_Y02_511_481\", \"ini\": 398, \"clust\": 502, \"rank\": 2136, \"rankvar\": 1021, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2428, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1469, \"cat-2\": \"Density: 19\", \"cat_2_index\": 131, \"group\": [503.0, 105.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60509_BALBc-1_X02_Y02_511_799\", \"ini\": 397, \"clust\": 2750, \"rank\": 1249, \"rankvar\": 588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2429, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 512, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2498, \"group\": [2747.0, 424.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60571_BALBc-1_X02_Y02_512_687\", \"ini\": 396, \"clust\": 861, \"rank\": 954, \"rankvar\": 1308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2430, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 513, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2121, \"group\": [861.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60617_BALBc-1_X02_Y02_513_306\", \"ini\": 395, \"clust\": 2001, \"rank\": 1880, \"rankvar\": 2032, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2431, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1470, \"cat-2\": \"Density: 22\", \"cat_2_index\": 326, \"group\": [1999.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60829_BALBc-1_X02_Y02_515_980\", \"ini\": 394, \"clust\": 1766, \"rank\": 156, \"rankvar\": 388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2432, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 639, \"cat-2\": \"Density: 24\", \"cat_2_index\": 557, \"group\": [1763.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60871_BALBc-1_X02_Y02_516_759\", \"ini\": 393, \"clust\": 2146, \"rank\": 1949, \"rankvar\": 1224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2433, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 514, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2541, \"group\": [2144.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61279_BALBc-1_X02_Y02_520_66\", \"ini\": 392, \"clust\": 2166, \"rank\": 1375, \"rankvar\": 1734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2434, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1987, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1906, \"group\": [2165.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61334_BALBc-1_X02_Y02_521_353\", \"ini\": 391, \"clust\": 732, \"rank\": 1628, \"rankvar\": 517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2435, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2803, \"cat-2\": \"Density: 21\", \"cat_2_index\": 239, \"group\": [743.0, 166.0, 42.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61348_BALBc-1_X02_Y02_521_546\", \"ini\": 390, \"clust\": 1966, \"rank\": 2172, \"rankvar\": 2092, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2436, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2708, \"cat-2\": \"Density: 24\", \"cat_2_index\": 558, \"group\": [1963.0, 303.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61372_BALBc-1_X02_Y02_521_896\", \"ini\": 389, \"clust\": 2684, \"rank\": 2077, \"rankvar\": 1345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2437, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 640, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2416, \"group\": [2684.0, 413.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61534_BALBc-1_X02_Y02_523_860\", \"ini\": 388, \"clust\": 2018, \"rank\": 2269, \"rankvar\": 2650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2438, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 515, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2354, \"group\": [2014.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61617_BALBc-1_X02_Y02_525_120\", \"ini\": 387, \"clust\": 1146, \"rank\": 703, \"rankvar\": 1477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2439, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 929, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1907, \"group\": [1145.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61773_BALBc-1_X02_Y02_527_152\", \"ini\": 386, \"clust\": 104, \"rank\": 1061, \"rankvar\": 1305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2440, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 729, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1570, \"group\": [107.0, 24.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61824_BALBc-1_X02_Y02_527_636\", \"ini\": 385, \"clust\": 2550, \"rank\": 1570, \"rankvar\": 1368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2441, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2709, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1445, \"group\": [2546.0, 388.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61842_BALBc-1_X02_Y02_527_845\", \"ini\": 384, \"clust\": 2717, \"rank\": 1847, \"rankvar\": 1377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2442, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 516, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2499, \"group\": [2714.0, 417.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61916_BALBc-1_X02_Y02_528_823\", \"ini\": 383, \"clust\": 1323, \"rank\": 997, \"rankvar\": 149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2443, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 517, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2355, \"group\": [1324.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61962_BALBc-1_X02_Y02_529_428\", \"ini\": 382, \"clust\": 1233, \"rank\": 966, \"rankvar\": 1189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2444, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 518, \"cat-2\": \"Density: 23\", \"cat_2_index\": 438, \"group\": [1233.0, 255.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61994_BALBc-1_X02_Y02_529_877\", \"ini\": 381, \"clust\": 1467, \"rank\": 1035, \"rankvar\": 74, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2445, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 519, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2284, \"group\": [1471.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62001_BALBc-1_X02_Y02_529_999\", \"ini\": 380, \"clust\": 2105, \"rank\": 2569, \"rankvar\": 2358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2446, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 520, \"cat-2\": \"Density: 19\", \"cat_2_index\": 132, \"group\": [2102.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62024_BALBc-1_X02_Y02_53_346\", \"ini\": 379, \"clust\": 603, \"rank\": 2624, \"rankvar\": 2777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2447, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1588, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1301, \"group\": [604.0, 139.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62088_BALBc-1_X02_Y02_530_268\", \"ini\": 378, \"clust\": 2132, \"rank\": 1325, \"rankvar\": 1484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2448, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1471, \"cat-2\": \"Density: 23\", \"cat_2_index\": 439, \"group\": [2129.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62119_BALBc-1_X02_Y02_530_680\", \"ini\": 377, \"clust\": 2653, \"rank\": 2161, \"rankvar\": 1363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2449, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 521, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1908, \"group\": [2650.0, 409.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62139_BALBc-1_X02_Y02_530_910\", \"ini\": 376, \"clust\": 2271, \"rank\": 1077, \"rankvar\": 1648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2450, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 522, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2356, \"group\": [2270.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62142_BALBc-1_X02_Y02_530_925\", \"ini\": 375, \"clust\": 745, \"rank\": 1797, \"rankvar\": 1586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2451, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 641, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2357, \"group\": [745.0, 167.0, 43.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62170_BALBc-1_X02_Y02_531_40\", \"ini\": 374, \"clust\": 1660, \"rank\": 8, \"rankvar\": 1339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2452, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2246, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1809, \"group\": [1665.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62352_BALBc-1_X02_Y02_533_593\", \"ini\": 373, \"clust\": 1991, \"rank\": 1695, \"rankvar\": 2008, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2453, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2710, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1145, \"group\": [1987.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62487_BALBc-1_X02_Y02_535_456\", \"ini\": 372, \"clust\": 1105, \"rank\": 519, \"rankvar\": 480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2454, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2711, \"cat-2\": \"Density: 22\", \"cat_2_index\": 327, \"group\": [1102.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62584_BALBc-1_X02_Y02_536_793\", \"ini\": 371, \"clust\": 1382, \"rank\": 533, \"rankvar\": 254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2455, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 523, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2285, \"group\": [1381.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62698_BALBc-1_X02_Y02_538_395\", \"ini\": 370, \"clust\": 2609, \"rank\": 1857, \"rankvar\": 1636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2456, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2804, \"cat-2\": \"Density: 23\", \"cat_2_index\": 440, \"group\": [2606.0, 397.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62842_BALBc-1_X02_Y02_54_556\", \"ini\": 369, \"clust\": 2504, \"rank\": 1686, \"rankvar\": 2001, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2457, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1573, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1146, \"group\": [2500.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62982_BALBc-1_X02_Y02_541_688\", \"ini\": 368, \"clust\": 2291, \"rank\": 1605, \"rankvar\": 1247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2458, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 524, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2021, \"group\": [2287.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63073_BALBc-1_X02_Y02_542_677\", \"ini\": 367, \"clust\": 549, \"rank\": 2055, \"rankvar\": 1504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2459, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 525, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1810, \"group\": [551.0, 120.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63152_BALBc-1_X02_Y02_543_663\", \"ini\": 366, \"clust\": 1801, \"rank\": 168, \"rankvar\": 339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2460, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2712, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1302, \"group\": [1798.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63263_BALBc-1_X02_Y02_544_724\", \"ini\": 365, \"clust\": 2182, \"rank\": 827, \"rankvar\": 1012, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2461, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1472, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2195, \"group\": [2177.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63356_BALBc-1_X02_Y02_545_764\", \"ini\": 364, \"clust\": 2189, \"rank\": 942, \"rankvar\": 457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2462, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 526, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2417, \"group\": [2187.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63594_BALBc-1_X02_Y02_548_836\", \"ini\": 363, \"clust\": 2639, \"rank\": 2030, \"rankvar\": 1102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2463, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 527, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2500, \"group\": [2639.0, 407.0, 99.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63611_BALBc-1_X02_Y02_548_990\", \"ini\": 362, \"clust\": 1171, \"rank\": 1124, \"rankvar\": 1804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2464, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 642, \"cat-2\": \"Density: 21\", \"cat_2_index\": 240, \"group\": [1171.0, 247.0, 63.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63621_BALBc-1_X02_Y02_549_222\", \"ini\": 361, \"clust\": 266, \"rank\": 1643, \"rankvar\": 1997, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2465, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2713, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1571, \"group\": [266.0, 49.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63732_BALBc-1_X02_Y02_55_601\", \"ini\": 360, \"clust\": 2763, \"rank\": 1396, \"rankvar\": 1166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2466, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 946, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1303, \"group\": [2759.0, 426.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63834_BALBc-1_X02_Y02_550_878\", \"ini\": 359, \"clust\": 2747, \"rank\": 2047, \"rankvar\": 1215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2467, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 528, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2286, \"group\": [2744.0, 423.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64028_BALBc-1_X02_Y02_553_519\", \"ini\": 358, \"clust\": 1993, \"rank\": 1705, \"rankvar\": 2189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2468, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 864, \"cat-2\": \"Density: 22\", \"cat_2_index\": 328, \"group\": [1989.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64073_BALBc-1_X02_Y02_553_924\", \"ini\": 357, \"clust\": 1763, \"rank\": 246, \"rankvar\": 732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2469, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 643, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2196, \"group\": [1761.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64372_BALBc-1_X02_Y02_558_116\", \"ini\": 356, \"clust\": 688, \"rank\": 2514, \"rankvar\": 2481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2470, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 930, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1811, \"group\": [693.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64456_BALBc-1_X02_Y02_558_995\", \"ini\": 355, \"clust\": 2679, \"rank\": 2673, \"rankvar\": 2242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2471, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 529, \"cat-2\": \"Density: 22\", \"cat_2_index\": 329, \"group\": [2677.0, 412.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64463_BALBc-1_X02_Y02_559_16\", \"ini\": 354, \"clust\": 92, \"rank\": 1619, \"rankvar\": 1893, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2472, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2247, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1699, \"group\": [96.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64505_BALBc-1_X02_Y02_559_58\", \"ini\": 353, \"clust\": 203, \"rank\": 1578, \"rankvar\": 1373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2473, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 931, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1909, \"group\": [204.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64571_BALBc-1_X02_Y02_56_412\", \"ini\": 352, \"clust\": 305, \"rank\": 2431, \"rankvar\": 2701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2474, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2714, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2122, \"group\": [306.0, 63.0, 17.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64626_BALBc-1_X02_Y02_560_186\", \"ini\": 351, \"clust\": 1201, \"rank\": 39, \"rankvar\": 652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2475, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 730, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1700, \"group\": [1203.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64676_BALBc-1_X02_Y02_560_746\", \"ini\": 350, \"clust\": 789, \"rank\": 1432, \"rankvar\": 132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2476, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1473, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2123, \"group\": [792.0, 187.0, 49.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64706_BALBc-1_X02_Y02_561_129\", \"ini\": 349, \"clust\": 2175, \"rank\": 1085, \"rankvar\": 1276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2477, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1474, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1910, \"group\": [2175.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64758_BALBc-1_X02_Y02_561_689\", \"ini\": 348, \"clust\": 1970, \"rank\": 1072, \"rankvar\": 1261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2478, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 530, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1812, \"group\": [1970.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64883_BALBc-1_X02_Y02_563_442\", \"ini\": 347, \"clust\": 2156, \"rank\": 1372, \"rankvar\": 1541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2479, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1574, \"cat-2\": \"Density: 26\", \"cat_2_index\": 844, \"group\": [2154.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64889_BALBc-1_X02_Y02_563_483\", \"ini\": 346, \"clust\": 1956, \"rank\": 1877, \"rankvar\": 2227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2480, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2715, \"cat-2\": \"Density: 23\", \"cat_2_index\": 441, \"group\": [1954.0, 303.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64905_BALBc-1_X02_Y02_563_774\", \"ini\": 345, \"clust\": 414, \"rank\": 1816, \"rankvar\": 1753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 531, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2358, \"group\": [415.0, 80.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65149_BALBc-1_X02_Y02_566_81\", \"ini\": 344, \"clust\": 2315, \"rank\": 1369, \"rankvar\": 1420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2482, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 865, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1911, \"group\": [2312.0, 319.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65186_BALBc-1_X02_Y02_567_271\", \"ini\": 343, \"clust\": 1289, \"rank\": 501, \"rankvar\": 643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2483, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1988, \"cat-2\": \"Density: 25\", \"cat_2_index\": 698, \"group\": [1287.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65292_BALBc-1_X02_Y02_568_797\", \"ini\": 342, \"clust\": 2575, \"rank\": 1779, \"rankvar\": 1518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2484, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 532, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2359, \"group\": [2575.0, 391.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65906_BALBc-1_X02_Y02_575_921\", \"ini\": 341, \"clust\": 2029, \"rank\": 1859, \"rankvar\": 2206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2485, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2716, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2197, \"group\": [2027.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66097_BALBc-1_X02_Y02_578_646\", \"ini\": 340, \"clust\": 1986, \"rank\": 1764, \"rankvar\": 1955, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2486, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2717, \"cat-2\": \"Density: 27\", \"cat_2_index\": 994, \"group\": [1983.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66183_BALBc-1_X02_Y02_579_966\", \"ini\": 339, \"clust\": 2414, \"rank\": 2297, \"rankvar\": 1349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2487, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 644, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1147, \"group\": [2410.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66339_BALBc-1_X02_Y02_581_317\", \"ini\": 338, \"clust\": 2204, \"rank\": 1312, \"rankvar\": 1709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2488, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1989, \"cat-2\": \"Density: 23\", \"cat_2_index\": 442, \"group\": [2202.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66357_BALBc-1_X02_Y02_581_49\", \"ini\": 337, \"clust\": 1976, \"rank\": 1516, \"rankvar\": 2283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2489, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1678, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2022, \"group\": [1976.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66415_BALBc-1_X02_Y02_582_178\", \"ini\": 336, \"clust\": 2389, \"rank\": 2741, \"rankvar\": 2811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2490, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2496, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1572, \"group\": [2384.0, 350.0, 82.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66616_BALBc-1_X02_Y02_584_773\", \"ini\": 335, \"clust\": 1410, \"rank\": 712, \"rankvar\": 883, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2491, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 533, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2198, \"group\": [1411.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66755_BALBc-1_X02_Y02_586_349\", \"ini\": 334, \"clust\": 349, \"rank\": 2601, \"rankvar\": 2753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2718, \"cat-2\": \"Density: 23\", \"cat_2_index\": 443, \"group\": [348.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66774_BALBc-1_X02_Y02_586_530\", \"ini\": 333, \"clust\": 358, \"rank\": 2548, \"rankvar\": 2406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2493, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2719, \"cat-2\": \"Density: 22\", \"cat_2_index\": 330, \"group\": [358.0, 73.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66875_BALBc-1_X02_Y02_587_790\", \"ini\": 332, \"clust\": 1412, \"rank\": 617, \"rankvar\": 1168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2494, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 534, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2199, \"group\": [1410.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66943_BALBc-1_X02_Y02_588_705\", \"ini\": 331, \"clust\": 2800, \"rank\": 2308, \"rankvar\": 1987, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2495, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1475, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1912, \"group\": [2798.0, 432.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67033_BALBc-1_X02_Y02_589_854\", \"ini\": 330, \"clust\": 1854, \"rank\": 233, \"rankvar\": 133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2496, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 535, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2418, \"group\": [1851.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67050_BALBc-1_X02_Y02_59_136\", \"ini\": 329, \"clust\": 2195, \"rank\": 1010, \"rankvar\": 1653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2497, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2720, \"cat-2\": \"Density: 22\", \"cat_2_index\": 331, \"group\": [2199.0, 316.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67117_BALBc-1_X02_Y02_59_886\", \"ini\": 328, \"clust\": 431, \"rank\": 2206, \"rankvar\": 2525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2498, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1476, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1304, \"group\": [429.0, 83.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67206_BALBc-1_X02_Y02_590_941\", \"ini\": 327, \"clust\": 1768, \"rank\": 172, \"rankvar\": 490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2499, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2721, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1913, \"group\": [1766.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67342_BALBc-1_X02_Y02_592_741\", \"ini\": 326, \"clust\": 427, \"rank\": 2232, \"rankvar\": 2393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2500, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1477, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2287, \"group\": [425.0, 83.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67356_BALBc-1_X02_Y02_592_870\", \"ini\": 325, \"clust\": 2102, \"rank\": 2249, \"rankvar\": 1978, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2501, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2722, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2200, \"group\": [2099.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67680_BALBc-1_X02_Y02_596_996\", \"ini\": 324, \"clust\": 1372, \"rank\": 709, \"rankvar\": 234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2502, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 536, \"cat-2\": \"Density: 21\", \"cat_2_index\": 241, \"group\": [1374.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67689_BALBc-1_X02_Y02_597_244\", \"ini\": 323, \"clust\": 733, \"rank\": 1961, \"rankvar\": 995, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2503, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1759, \"cat-2\": \"Density: 24\", \"cat_2_index\": 559, \"group\": [742.0, 165.0, 41.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67735_BALBc-1_X02_Y02_597_815\", \"ini\": 322, \"clust\": 771, \"rank\": 1288, \"rankvar\": 864, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2504, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 537, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2288, \"group\": [771.0, 176.0, 45.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67822_BALBc-1_X02_Y02_598_971\", \"ini\": 321, \"clust\": 2726, \"rank\": 2319, \"rankvar\": 2243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2505, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 538, \"cat-2\": \"Density: 25\", \"cat_2_index\": 699, \"group\": [2723.0, 419.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67827_BALBc-1_X02_Y02_599_124\", \"ini\": 320, \"clust\": 2064, \"rank\": 2404, \"rankvar\": 2480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2506, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1478, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1573, \"group\": [2060.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67881_BALBc-1_X02_Y02_599_836\", \"ini\": 319, \"clust\": 1261, \"rank\": 822, \"rankvar\": 469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2507, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 539, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2501, \"group\": [1264.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68161_BALBc-1_X02_Y02_602_173\", \"ini\": 318, \"clust\": 444, \"rank\": 1159, \"rankvar\": 2055, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2508, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1479, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1305, \"group\": [449.0, 88.0, 21.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68329_BALBc-1_X02_Y02_604_479\", \"ini\": 317, \"clust\": 1958, \"rank\": 1730, \"rankvar\": 1906, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2509, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2465, \"cat-2\": \"Density: 26\", \"cat_2_index\": 845, \"group\": [1956.0, 303.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68364_BALBc-1_X02_Y02_604_898\", \"ini\": 316, \"clust\": 1000, \"rank\": 1067, \"rankvar\": 1271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2510, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2723, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2201, \"group\": [1000.0, 224.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68650_BALBc-1_X02_Y02_608_247\", \"ini\": 315, \"clust\": 1491, \"rank\": 531, \"rankvar\": 332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2511, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1679, \"cat-2\": \"Density: 24\", \"cat_2_index\": 560, \"group\": [1490.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68746_BALBc-1_X02_Y02_609_287\", \"ini\": 314, \"clust\": 2454, \"rank\": 2240, \"rankvar\": 1320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2512, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 540, \"cat-2\": \"Density: 24\", \"cat_2_index\": 561, \"group\": [2451.0, 368.0, 88.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68769_BALBc-1_X02_Y02_609_505\", \"ini\": 313, \"clust\": 1770, \"rank\": 345, \"rankvar\": 631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2513, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2724, \"cat-2\": \"Density: 21\", \"cat_2_index\": 242, \"group\": [1768.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68812_BALBc-1_X02_Y02_61_160\", \"ini\": 312, \"clust\": 2010, \"rank\": 2484, \"rankvar\": 2411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2514, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 541, \"cat-2\": \"Density: 19\", \"cat_2_index\": 133, \"group\": [2010.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68919_BALBc-1_X02_Y02_610_685\", \"ini\": 311, \"clust\": 1514, \"rank\": 784, \"rankvar\": 371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2515, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1480, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1813, \"group\": [1513.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68936_BALBc-1_X02_Y02_610_908\", \"ini\": 310, \"clust\": 2149, \"rank\": 1356, \"rankvar\": 1358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2516, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2725, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2202, \"group\": [2146.0, 314.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69083_BALBc-1_X02_Y02_612_642\", \"ini\": 309, \"clust\": 2546, \"rank\": 1848, \"rankvar\": 1405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2517, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1481, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1148, \"group\": [2544.0, 388.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69172_BALBc-1_X02_Y02_613_941\", \"ini\": 308, \"clust\": 2298, \"rank\": 1449, \"rankvar\": 1757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2518, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2726, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1574, \"group\": [2296.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69269_BALBc-1_X02_Y02_615_12\", \"ini\": 307, \"clust\": 178, \"rank\": 1710, \"rankvar\": 1222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2519, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1482, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1575, \"group\": [179.0, 42.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69314_BALBc-1_X02_Y02_615_721\", \"ini\": 306, \"clust\": 2266, \"rank\": 973, \"rankvar\": 2259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2520, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1483, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2023, \"group\": [2277.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69385_BALBc-1_X02_Y02_616_708\", \"ini\": 305, \"clust\": 2723, \"rank\": 2480, \"rankvar\": 2115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2521, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 542, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1814, \"group\": [2720.0, 418.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69392_BALBc-1_X02_Y02_616_80\", \"ini\": 304, \"clust\": 2183, \"rank\": 994, \"rankvar\": 1256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2522, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 866, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1815, \"group\": [2181.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69516_BALBc-1_X02_Y02_618_346\", \"ini\": 303, \"clust\": 2224, \"rank\": 1025, \"rankvar\": 1326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2523, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2727, \"cat-2\": \"Density: 26\", \"cat_2_index\": 846, \"group\": [2222.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69550_BALBc-1_X02_Y02_618_772\", \"ini\": 302, \"clust\": 326, \"rank\": 1592, \"rankvar\": 2029, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2524, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1680, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2124, \"group\": [327.0, 66.0, 18.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69694_BALBc-1_X02_Y02_62_685\", \"ini\": 301, \"clust\": 384, \"rank\": 2647, \"rankvar\": 2794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2525, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1484, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1576, \"group\": [382.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69845_BALBc-1_X02_Y02_621_738\", \"ini\": 300, \"clust\": 1051, \"rank\": 1403, \"rankvar\": 1025, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2526, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 543, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2125, \"group\": [1054.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69869_BALBc-1_X02_Y02_621_980\", \"ini\": 299, \"clust\": 2122, \"rank\": 1562, \"rankvar\": 1197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2527, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 544, \"cat-2\": \"Density: 22\", \"cat_2_index\": 332, \"group\": [2120.0, 312.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69947_BALBc-1_X02_Y02_622_856\", \"ini\": 298, \"clust\": 2124, \"rank\": 1551, \"rankvar\": 475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2528, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2728, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2419, \"group\": [2123.0, 312.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70036_BALBc-1_X02_Y02_623_791\", \"ini\": 297, \"clust\": 2500, \"rank\": 1907, \"rankvar\": 1962, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2529, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1681, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2203, \"group\": [2498.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70145_BALBc-1_X02_Y02_625_402\", \"ini\": 296, \"clust\": 1825, \"rank\": 125, \"rankvar\": 1702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2530, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2332, \"cat-2\": \"Density: 23\", \"cat_2_index\": 444, \"group\": [1823.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70178_BALBc-1_X02_Y02_625_825\", \"ini\": 295, \"clust\": 867, \"rank\": 549, \"rankvar\": 1342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2531, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1485, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2360, \"group\": [870.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70445_BALBc-1_X02_Y02_629_611\", \"ini\": 294, \"clust\": 899, \"rank\": 1485, \"rankvar\": 1894, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2532, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2729, \"cat-2\": \"Density: 24\", \"cat_2_index\": 562, \"group\": [899.0, 206.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70500_BALBc-1_X02_Y02_63_385\", \"ini\": 293, \"clust\": 604, \"rank\": 2311, \"rankvar\": 2609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2533, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2730, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2024, \"group\": [605.0, 139.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70692_BALBc-1_X02_Y02_631_72\", \"ini\": 292, \"clust\": 139, \"rank\": 1976, \"rankvar\": 1395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2534, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 545, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1701, \"group\": [143.0, 29.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70695_BALBc-1_X02_Y02_631_748\", \"ini\": 291, \"clust\": 2113, \"rank\": 1979, \"rankvar\": 1898, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2535, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1682, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2204, \"group\": [2109.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70916_BALBc-1_X02_Y02_634_5\", \"ini\": 290, \"clust\": 232, \"rank\": 1809, \"rankvar\": 2432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2536, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1683, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1577, \"group\": [233.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70961_BALBc-1_X02_Y02_635_253\", \"ini\": 289, \"clust\": 855, \"rank\": 1171, \"rankvar\": 925, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2537, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1684, \"cat-2\": \"Density: 24\", \"cat_2_index\": 563, \"group\": [858.0, 197.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71202_BALBc-1_X02_Y02_638_308\", \"ini\": 288, \"clust\": 2080, \"rank\": 2159, \"rankvar\": 2405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2538, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1486, \"cat-2\": \"Density: 24\", \"cat_2_index\": 564, \"group\": [2076.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71220_BALBc-1_X02_Y02_638_474\", \"ini\": 287, \"clust\": 2468, \"rank\": 2489, \"rankvar\": 2471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2539, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2731, \"cat-2\": \"Density: 26\", \"cat_2_index\": 847, \"group\": [2466.0, 372.0, 90.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71595_BALBc-1_X02_Y02_642_520\", \"ini\": 286, \"clust\": 1011, \"rank\": 845, \"rankvar\": 726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2540, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2732, \"cat-2\": \"Density: 22\", \"cat_2_index\": 333, \"group\": [1012.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71629_BALBc-1_X02_Y02_642_830\", \"ini\": 285, \"clust\": 360, \"rank\": 2197, \"rankvar\": 2263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2541, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1487, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2289, \"group\": [363.0, 73.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71736_BALBc-1_X02_Y02_644_115\", \"ini\": 284, \"clust\": 1358, \"rank\": 799, \"rankvar\": 82, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 867, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1702, \"group\": [1359.0, 261.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71739_BALBc-1_X02_Y02_644_155\", \"ini\": 283, \"clust\": 2066, \"rank\": 2403, \"rankvar\": 2450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2543, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1760, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1816, \"group\": [2063.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71744_BALBc-1_X02_Y02_644_213\", \"ini\": 282, \"clust\": 2144, \"rank\": 2307, \"rankvar\": 2290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2544, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1761, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1578, \"group\": [2142.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71785_BALBc-1_X02_Y02_644_568\", \"ini\": 281, \"clust\": 359, \"rank\": 2654, \"rankvar\": 2666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2545, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2733, \"cat-2\": \"Density: 23\", \"cat_2_index\": 445, \"group\": [359.0, 73.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71963_BALBc-1_X02_Y02_646_955\", \"ini\": 280, \"clust\": 2355, \"rank\": 2383, \"rankvar\": 605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2546, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2183, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1149, \"group\": [2351.0, 344.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72006_BALBc-1_X02_Y02_647_56\", \"ini\": 279, \"clust\": 1302, \"rank\": 440, \"rankvar\": 907, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2547, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 546, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1703, \"group\": [1302.0, 259.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72118_BALBc-1_X02_Y02_648_980\", \"ini\": 278, \"clust\": 1635, \"rank\": 199, \"rankvar\": 20, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2548, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 547, \"cat-2\": \"Density: 25\", \"cat_2_index\": 700, \"group\": [1635.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72144_BALBc-1_X02_Y02_649_345\", \"ini\": 277, \"clust\": 1933, \"rank\": 1635, \"rankvar\": 2302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2549, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2333, \"cat-2\": \"Density: 24\", \"cat_2_index\": 565, \"group\": [1927.0, 296.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72328_BALBc-1_X02_Y02_650_881\", \"ini\": 276, \"clust\": 2737, \"rank\": 1647, \"rankvar\": 1403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2550, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2734, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2126, \"group\": [2735.0, 423.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72406_BALBc-1_X02_Y02_651_83\", \"ini\": 275, \"clust\": 1782, \"rank\": 262, \"rankvar\": 185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 548, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2025, \"group\": [1778.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72482_BALBc-1_X02_Y02_652_908\", \"ini\": 274, \"clust\": 2411, \"rank\": 1886, \"rankvar\": 447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2552, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2184, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2205, \"group\": [2420.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72586_BALBc-1_X02_Y02_654_266\", \"ini\": 273, \"clust\": 2265, \"rank\": 1231, \"rankvar\": 2076, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2553, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1488, \"cat-2\": \"Density: 24\", \"cat_2_index\": 566, \"group\": [2260.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72771_BALBc-1_X02_Y02_656_677\", \"ini\": 272, \"clust\": 1565, \"rank\": 410, \"rankvar\": 385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2554, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1489, \"cat-2\": \"Density: 27\", \"cat_2_index\": 995, \"group\": [1568.0, 274.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72775_BALBc-1_X02_Y02_656_705\", \"ini\": 271, \"clust\": 2476, \"rank\": 1836, \"rankvar\": 1167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2555, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 549, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1817, \"group\": [2472.0, 376.0, 91.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72872_BALBc-1_X02_Y02_657_832\", \"ini\": 270, \"clust\": 370, \"rank\": 2613, \"rankvar\": 2548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2556, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1490, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2290, \"group\": [369.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73062_BALBc-1_X02_Y02_66_601\", \"ini\": 269, \"clust\": 1338, \"rank\": 581, \"rankvar\": 454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2557, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 550, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1306, \"group\": [1338.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73332_BALBc-1_X02_Y02_662_61\", \"ini\": 268, \"clust\": 577, \"rank\": 2782, \"rankvar\": 2686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2558, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 551, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1579, \"group\": [579.0, 129.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73887_BALBc-1_X02_Y02_67_263\", \"ini\": 267, \"clust\": 1099, \"rank\": 672, \"rankvar\": 917, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2559, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2735, \"cat-2\": \"Density: 19\", \"cat_2_index\": 134, \"group\": [1097.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73953_BALBc-1_X02_Y02_670_242\", \"ini\": 266, \"clust\": 2084, \"rank\": 1918, \"rankvar\": 2214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2560, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1491, \"cat-2\": \"Density: 23\", \"cat_2_index\": 446, \"group\": [2079.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73968_BALBc-1_X02_Y02_670_412\", \"ini\": 265, \"clust\": 1844, \"rank\": 136, \"rankvar\": 1664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2561, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2736, \"cat-2\": \"Density: 23\", \"cat_2_index\": 447, \"group\": [1841.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73976_BALBc-1_X02_Y02_670_483\", \"ini\": 264, \"clust\": 1438, \"rank\": 491, \"rankvar\": 2124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2562, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1492, \"cat-2\": \"Density: 24\", \"cat_2_index\": 567, \"group\": [1441.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74149_BALBc-1_X02_Y02_672_855\", \"ini\": 263, \"clust\": 1638, \"rank\": 163, \"rankvar\": 27, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2563, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 552, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2502, \"group\": [1637.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74167_BALBc-1_X02_Y02_673_108\", \"ini\": 262, \"clust\": 1157, \"rank\": 1087, \"rankvar\": 758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2564, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 932, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1150, \"group\": [1158.0, 243.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74236_BALBc-1_X02_Y02_673_890\", \"ini\": 261, \"clust\": 1574, \"rank\": 612, \"rankvar\": 610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2565, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 553, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2206, \"group\": [1575.0, 274.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74383_BALBc-1_X02_Y02_675_456\", \"ini\": 260, \"clust\": 111, \"rank\": 1962, \"rankvar\": 2218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2566, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1493, \"cat-2\": \"Density: 24\", \"cat_2_index\": 568, \"group\": [111.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74388_BALBc-1_X02_Y02_675_540\", \"ini\": 259, \"clust\": 854, \"rank\": 769, \"rankvar\": 804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2567, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 554, \"cat-2\": \"Density: 24\", \"cat_2_index\": 569, \"group\": [855.0, 197.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74441_BALBc-1_X02_Y02_676_169\", \"ini\": 258, \"clust\": 201, \"rank\": 1392, \"rankvar\": 1983, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2568, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 933, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1307, \"group\": [201.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74508_BALBc-1_X02_Y02_676_991\", \"ini\": 257, \"clust\": 2698, \"rank\": 2237, \"rankvar\": 1393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2569, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 555, \"cat-2\": \"Density: 18\", \"cat_2_index\": 109, \"group\": [2694.0, 414.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74535_BALBc-1_X02_Y02_677_385\", \"ini\": 256, \"clust\": 2444, \"rank\": 2643, \"rankvar\": 2580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2570, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2334, \"cat-2\": \"Density: 26\", \"cat_2_index\": 848, \"group\": [2440.0, 361.0, 85.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74729_BALBc-1_X02_Y02_679_790\", \"ini\": 255, \"clust\": 1924, \"rank\": 918, \"rankvar\": 1046, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2571, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1494, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2291, \"group\": [1921.0, 294.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74731_BALBc-1_X02_Y02_679_812\", \"ini\": 254, \"clust\": 452, \"rank\": 1803, \"rankvar\": 1391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2572, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1495, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2361, \"group\": [452.0, 90.0, 22.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74790_BALBc-1_X02_Y02_68_580\", \"ini\": 253, \"clust\": 953, \"rank\": 733, \"rankvar\": 382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2573, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1575, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1151, \"group\": [954.0, 220.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74845_BALBc-1_X02_Y02_680_497\", \"ini\": 252, \"clust\": 2005, \"rank\": 1825, \"rankvar\": 2035, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2574, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1496, \"cat-2\": \"Density: 23\", \"cat_2_index\": 448, \"group\": [2003.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74920_BALBc-1_X02_Y02_681_628\", \"ini\": 251, \"clust\": 1817, \"rank\": 137, \"rankvar\": 531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1497, \"cat-2\": \"Density: 23\", \"cat_2_index\": 449, \"group\": [1814.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75012_BALBc-1_X02_Y02_682_927\", \"ini\": 250, \"clust\": 2294, \"rank\": 1088, \"rankvar\": 1421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2576, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2185, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2026, \"group\": [2290.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75078_BALBc-1_X02_Y02_683_754\", \"ini\": 249, \"clust\": 2536, \"rank\": 2417, \"rankvar\": 2304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2577, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1685, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2127, \"group\": [2533.0, 385.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75093_BALBc-1_X02_Y02_683_961\", \"ini\": 248, \"clust\": 1495, \"rank\": 548, \"rankvar\": 194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2578, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2186, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1152, \"group\": [1492.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75122_BALBc-1_X02_Y02_684_41\", \"ini\": 247, \"clust\": 1539, \"rank\": 251, \"rankvar\": 125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2579, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1686, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1580, \"group\": [1537.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75210_BALBc-1_X02_Y02_685_709\", \"ini\": 246, \"clust\": 2160, \"rank\": 1238, \"rankvar\": 1714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2580, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 556, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1914, \"group\": [2157.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75222_BALBc-1_X02_Y02_685_85\", \"ini\": 245, \"clust\": 1148, \"rank\": 678, \"rankvar\": 629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2581, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 557, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1153, \"group\": [1149.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75253_BALBc-1_X02_Y02_686_343\", \"ini\": 244, \"clust\": 227, \"rank\": 1824, \"rankvar\": 2256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2582, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 868, \"cat-2\": \"Density: 22\", \"cat_2_index\": 334, \"group\": [228.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75823_BALBc-1_X02_Y02_692_891\", \"ini\": 243, \"clust\": 1772, \"rank\": 450, \"rankvar\": 68, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2583, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 558, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2292, \"group\": [1771.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75887_BALBc-1_X02_Y02_693_684\", \"ini\": 242, \"clust\": 533, \"rank\": 2344, \"rankvar\": 1721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2584, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 869, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1446, \"group\": [534.0, 115.0, 30.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76096_BALBc-1_X02_Y02_696_645\", \"ini\": 241, \"clust\": 2537, \"rank\": 2002, \"rankvar\": 1556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2585, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 870, \"cat-2\": \"Density: 27\", \"cat_2_index\": 996, \"group\": [2534.0, 385.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76103_BALBc-1_X02_Y02_696_735\", \"ini\": 240, \"clust\": 1592, \"rank\": 254, \"rankvar\": 1848, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2586, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 559, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2027, \"group\": [1594.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76294_BALBc-1_X02_Y02_699_112\", \"ini\": 239, \"clust\": 1739, \"rank\": 177, \"rankvar\": 266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2587, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 934, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1154, \"group\": [1737.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76538_BALBc-1_X02_Y02_700_290\", \"ini\": 238, \"clust\": 2267, \"rank\": 600, \"rankvar\": 2051, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2588, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1498, \"cat-2\": \"Density: 24\", \"cat_2_index\": 570, \"group\": [2267.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76553_BALBc-1_X02_Y02_700_423\", \"ini\": 237, \"clust\": 2732, \"rank\": 1656, \"rankvar\": 1851, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2589, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1499, \"cat-2\": \"Density: 23\", \"cat_2_index\": 450, \"group\": [2728.0, 421.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76803_BALBc-1_X02_Y02_703_773\", \"ini\": 236, \"clust\": 607, \"rank\": 2277, \"rankvar\": 2552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2590, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 560, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2362, \"group\": [610.0, 140.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76901_BALBc-1_X02_Y02_704_869\", \"ini\": 235, \"clust\": 332, \"rank\": 2544, \"rankvar\": 2683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1500, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2207, \"group\": [331.0, 67.0, 18.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77001_BALBc-1_X02_Y02_706_34\", \"ini\": 234, \"clust\": 405, \"rank\": 2169, \"rankvar\": 1515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2592, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1687, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1581, \"group\": [412.0, 78.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77014_BALBc-1_X02_Y02_706_510\", \"ini\": 233, \"clust\": 2056, \"rank\": 1974, \"rankvar\": 2147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2593, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1501, \"cat-2\": \"Density: 24\", \"cat_2_index\": 571, \"group\": [2052.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77039_BALBc-1_X02_Y02_706_830\", \"ini\": 232, \"clust\": 1342, \"rank\": 1083, \"rankvar\": 819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2594, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1502, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2420, \"group\": [1349.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77074_BALBc-1_X02_Y02_707_326\", \"ini\": 231, \"clust\": 2616, \"rank\": 2013, \"rankvar\": 1758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2595, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1503, \"cat-2\": \"Density: 22\", \"cat_2_index\": 335, \"group\": [2613.0, 398.0, 96.0, 25.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77093_BALBc-1_X02_Y02_707_617\", \"ini\": 230, \"clust\": 2590, \"rank\": 1606, \"rankvar\": 1799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2596, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2737, \"cat-2\": \"Density: 27\", \"cat_2_index\": 997, \"group\": [2587.0, 393.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77135_BALBc-1_X02_Y02_707_975\", \"ini\": 229, \"clust\": 1859, \"rank\": 249, \"rankvar\": 172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2597, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 561, \"cat-2\": \"Density: 23\", \"cat_2_index\": 451, \"group\": [1857.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77220_BALBc-1_X02_Y02_709_226\", \"ini\": 228, \"clust\": 2094, \"rank\": 1681, \"rankvar\": 1966, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2598, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1762, \"cat-2\": \"Density: 21\", \"cat_2_index\": 243, \"group\": [2092.0, 308.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77373_BALBc-1_X02_Y02_710_537\", \"ini\": 227, \"clust\": 2165, \"rank\": 1436, \"rankvar\": 1931, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2599, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1504, \"cat-2\": \"Density: 26\", \"cat_2_index\": 849, \"group\": [2166.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77376_BALBc-1_X02_Y02_710_565\", \"ini\": 226, \"clust\": 2163, \"rank\": 1409, \"rankvar\": 1901, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2600, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2738, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1155, \"group\": [2159.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77395_BALBc-1_X02_Y02_710_791\", \"ini\": 225, \"clust\": 1988, \"rank\": 1733, \"rankvar\": 2059, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2601, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 562, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2028, \"group\": [1994.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77586_BALBc-1_X02_Y02_712_99\", \"ini\": 224, \"clust\": 199, \"rank\": 1746, \"rankvar\": 1944, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2602, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 563, \"cat-2\": \"Density: 27\", \"cat_2_index\": 998, \"group\": [202.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77673_BALBc-1_X02_Y02_714_203\", \"ini\": 223, \"clust\": 637, \"rank\": 2637, \"rankvar\": 2294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2603, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2739, \"cat-2\": \"Density: 24\", \"cat_2_index\": 572, \"group\": [641.0, 150.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77790_BALBc-1_X02_Y02_715_74\", \"ini\": 222, \"clust\": 2250, \"rank\": 493, \"rankvar\": 1203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2604, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1990, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1156, \"group\": [2246.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77983_BALBc-1_X02_Y02_717_921\", \"ini\": 221, \"clust\": 2765, \"rank\": 1759, \"rankvar\": 1454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2605, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 564, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1915, \"group\": [2761.0, 426.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78066_BALBc-1_X02_Y02_719_1006\", \"ini\": 220, \"clust\": 2742, \"rank\": 1996, \"rankvar\": 1911, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2606, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 565, \"cat-2\": \"Density: 16\", \"cat_2_index\": 65, \"group\": [2739.0, 423.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78175_BALBc-1_X02_Y02_72_479\", \"ini\": 219, \"clust\": 515, \"rank\": 2787, \"rankvar\": 2676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2607, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 871, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2029, \"group\": [519.0, 109.0, 29.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78545_BALBc-1_X02_Y02_724_169\", \"ini\": 218, \"clust\": 557, \"rank\": 1763, \"rankvar\": 2313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2608, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 935, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1582, \"group\": [558.0, 122.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78626_BALBc-1_X02_Y02_725_382\", \"ini\": 217, \"clust\": 236, \"rank\": 1998, \"rankvar\": 2344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2609, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 872, \"cat-2\": \"Density: 22\", \"cat_2_index\": 336, \"group\": [237.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78655_BALBc-1_X02_Y02_725_758\", \"ini\": 216, \"clust\": 2161, \"rank\": 1360, \"rankvar\": 1750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2610, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 566, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1818, \"group\": [2158.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78673_BALBc-1_X02_Y02_725_953\", \"ini\": 215, \"clust\": 2120, \"rank\": 1971, \"rankvar\": 1483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2611, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2187, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1157, \"group\": [2118.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78684_BALBc-1_X02_Y02_726_124\", \"ini\": 214, \"clust\": 2220, \"rank\": 882, \"rankvar\": 913, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2612, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 873, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1158, \"group\": [2218.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78789_BALBc-1_X02_Y02_727_511\", \"ini\": 213, \"clust\": 254, \"rank\": 2399, \"rankvar\": 2497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2613, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1505, \"cat-2\": \"Density: 23\", \"cat_2_index\": 452, \"group\": [260.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78889_BALBc-1_X02_Y02_728_781\", \"ini\": 212, \"clust\": 740, \"rank\": 1657, \"rankvar\": 1563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2614, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 567, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2128, \"group\": [738.0, 164.0, 40.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78953_BALBc-1_X02_Y02_729_688\", \"ini\": 211, \"clust\": 2491, \"rank\": 2280, \"rankvar\": 2492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2615, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2740, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1583, \"group\": [2489.0, 380.0, 92.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78974_BALBc-1_X02_Y02_729_890\", \"ini\": 210, \"clust\": 1542, \"rank\": 293, \"rankvar\": 115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2616, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 568, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2208, \"group\": [1539.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78999_BALBc-1_X02_Y02_73_354\", \"ini\": 209, \"clust\": 2591, \"rank\": 1757, \"rankvar\": 2030, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2617, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2741, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1159, \"group\": [2588.0, 393.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79016_BALBc-1_X02_Y02_73_624\", \"ini\": 208, \"clust\": 699, \"rank\": 2775, \"rankvar\": 2621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2618, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1506, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1584, \"group\": [700.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79095_BALBc-1_X02_Y02_730_647\", \"ini\": 207, \"clust\": 2275, \"rank\": 1104, \"rankvar\": 2357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2619, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2742, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1447, \"group\": [2272.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79236_BALBc-1_X02_Y02_732_35\", \"ini\": 206, \"clust\": 1142, \"rank\": 528, \"rankvar\": 1085, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2620, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 941, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1308, \"group\": [1142.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79458_BALBc-1_X02_Y02_734_917\", \"ini\": 205, \"clust\": 330, \"rank\": 2597, \"rankvar\": 2711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2621, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2188, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2030, \"group\": [332.0, 67.0, 18.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79623_BALBc-1_X02_Y02_737_105\", \"ini\": 204, \"clust\": 1149, \"rank\": 953, \"rankvar\": 1366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2622, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 874, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1160, \"group\": [1156.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79762_BALBc-1_X02_Y02_738_804\", \"ini\": 203, \"clust\": 1016, \"rank\": 1122, \"rankvar\": 108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2623, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1507, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2209, \"group\": [1030.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79767_BALBc-1_X02_Y02_738_865\", \"ini\": 202, \"clust\": 1493, \"rank\": 524, \"rankvar\": 142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2624, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1508, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2421, \"group\": [1489.0, 269.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79785_BALBc-1_X02_Y02_739_196\", \"ini\": 201, \"clust\": 1023, \"rank\": 279, \"rankvar\": 360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2625, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2743, \"cat-2\": \"Density: 24\", \"cat_2_index\": 573, \"group\": [1021.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79862_BALBc-1_X02_Y02_739_981\", \"ini\": 200, \"clust\": 1208, \"rank\": 170, \"rankvar\": 520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2626, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2189, \"cat-2\": \"Density: 22\", \"cat_2_index\": 337, \"group\": [1208.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79984_BALBc-1_X02_Y02_740_709\", \"ini\": 199, \"clust\": 989, \"rank\": 1191, \"rankvar\": 1937, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2627, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2744, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1916, \"group\": [994.0, 222.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80165_BALBc-1_X02_Y02_743_497\", \"ini\": 198, \"clust\": 687, \"rank\": 2562, \"rankvar\": 2590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2628, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1509, \"cat-2\": \"Density: 25\", \"cat_2_index\": 701, \"group\": [694.0, 158.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80587_BALBc-1_X02_Y02_748_815\", \"ini\": 197, \"clust\": 1603, \"rank\": 281, \"rankvar\": 259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2629, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2190, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2210, \"group\": [1606.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80635_BALBc-1_X02_Y02_749_454\", \"ini\": 196, \"clust\": 2164, \"rank\": 1518, \"rankvar\": 2006, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2630, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1510, \"cat-2\": \"Density: 27\", \"cat_2_index\": 999, \"group\": [2160.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80695_BALBc-1_X02_Y02_75_13\", \"ini\": 195, \"clust\": 1049, \"rank\": 764, \"rankvar\": 523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2631, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1511, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1309, \"group\": [1049.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80817_BALBc-1_X02_Y02_750_584\", \"ini\": 194, \"clust\": 2533, \"rank\": 2656, \"rankvar\": 2721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2632, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1512, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1161, \"group\": [2532.0, 385.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81059_BALBc-1_X02_Y02_753_779\", \"ini\": 193, \"clust\": 1155, \"rank\": 585, \"rankvar\": 719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2633, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 569, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2129, \"group\": [1154.0, 242.0, 62.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81060_BALBc-1_X02_Y02_753_793\", \"ini\": 192, \"clust\": 2797, \"rank\": 1428, \"rankvar\": 1044, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2634, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 570, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2130, \"group\": [2795.0, 429.0, 103.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81068_BALBc-1_X02_Y02_753_897\", \"ini\": 191, \"clust\": 548, \"rank\": 2224, \"rankvar\": 1951, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2635, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2191, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2131, \"group\": [552.0, 120.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81108_BALBc-1_X02_Y02_754_416\", \"ini\": 190, \"clust\": 115, \"rank\": 1131, \"rankvar\": 1022, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2636, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 571, \"cat-2\": \"Density: 25\", \"cat_2_index\": 702, \"group\": [114.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81179_BALBc-1_X02_Y02_755_323\", \"ini\": 189, \"clust\": 2061, \"rank\": 2097, \"rankvar\": 2343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2637, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 875, \"cat-2\": \"Density: 22\", \"cat_2_index\": 338, \"group\": [2058.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81222_BALBc-1_X02_Y02_755_881\", \"ini\": 188, \"clust\": 2299, \"rank\": 1298, \"rankvar\": 1180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2638, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2192, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1917, \"group\": [2297.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81284_BALBc-1_X02_Y02_756_634\", \"ini\": 187, \"clust\": 2740, \"rank\": 2328, \"rankvar\": 1879, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2639, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2745, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1819, \"group\": [2740.0, 423.0, 101.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81466_BALBc-1_X02_Y02_758_853\", \"ini\": 186, \"clust\": 2335, \"rank\": 1350, \"rankvar\": 1078, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2640, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2193, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2422, \"group\": [2333.0, 330.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81536_BALBc-1_X02_Y02_759_820\", \"ini\": 185, \"clust\": 1778, \"rank\": 308, \"rankvar\": 178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2641, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2194, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2031, \"group\": [1776.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81627_BALBc-1_X02_Y02_760_153\", \"ini\": 184, \"clust\": 2205, \"rank\": 1133, \"rankvar\": 1179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2642, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 876, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1162, \"group\": [2203.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81992_BALBc-1_X02_Y02_764_995\", \"ini\": 183, \"clust\": 2813, \"rank\": 2149, \"rankvar\": 1413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2643, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2195, \"cat-2\": \"Density: 21\", \"cat_2_index\": 244, \"group\": [2809.0, 435.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82113_BALBc-1_X02_Y02_766_756\", \"ini\": 182, \"clust\": 1350, \"rank\": 995, \"rankvar\": 175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2644, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2746, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2293, \"group\": [1351.0, 261.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82616_BALBc-1_X02_Y02_772_197\", \"ini\": 181, \"clust\": 1473, \"rank\": 340, \"rankvar\": 585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2645, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2747, \"cat-2\": \"Density: 26\", \"cat_2_index\": 850, \"group\": [1478.0, 268.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82799_BALBc-1_X02_Y02_774_509\", \"ini\": 180, \"clust\": 1546, \"rank\": 338, \"rankvar\": 187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2646, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1513, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1000, \"group\": [1544.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82871_BALBc-1_X02_Y02_775_626\", \"ini\": 179, \"clust\": 1987, \"rank\": 1773, \"rankvar\": 1736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2647, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2815, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2032, \"group\": [1984.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82932_BALBc-1_X02_Y02_776_234\", \"ini\": 178, \"clust\": 620, \"rank\": 2437, \"rankvar\": 2674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2648, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2748, \"cat-2\": \"Density: 25\", \"cat_2_index\": 703, \"group\": [621.0, 145.0, 38.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83113_BALBc-1_X02_Y02_778_564\", \"ini\": 177, \"clust\": 351, \"rank\": 2809, \"rankvar\": 2819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2649, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1555, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1310, \"group\": [351.0, 71.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83255_BALBc-1_X02_Y02_78_243\", \"ini\": 176, \"clust\": 593, \"rank\": 1616, \"rankvar\": 2085, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2650, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2749, \"cat-2\": \"Density: 19\", \"cat_2_index\": 135, \"group\": [597.0, 137.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83347_BALBc-1_X02_Y02_780_648\", \"ini\": 175, \"clust\": 273, \"rank\": 653, \"rankvar\": 662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2651, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2750, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1918, \"group\": [274.0, 55.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83401_BALBc-1_X02_Y02_781_370\", \"ini\": 174, \"clust\": 495, \"rank\": 2507, \"rankvar\": 2470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2652, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 877, \"cat-2\": \"Density: 23\", \"cat_2_index\": 453, \"group\": [495.0, 104.0, 27.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83432_BALBc-1_X02_Y02_781_781\", \"ini\": 173, \"clust\": 2404, \"rank\": 2025, \"rankvar\": 593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2653, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 572, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2211, \"group\": [2402.0, 355.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83518_BALBc-1_X02_Y02_782_947\", \"ini\": 172, \"clust\": 2295, \"rank\": 908, \"rankvar\": 1041, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2654, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2196, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1585, \"group\": [2291.0, 318.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83545_BALBc-1_X02_Y02_783_408\", \"ini\": 171, \"clust\": 1310, \"rank\": 962, \"rankvar\": 310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2655, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 573, \"cat-2\": \"Density: 20\", \"cat_2_index\": 183, \"group\": [1310.0, 259.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83579_BALBc-1_X02_Y02_783_829\", \"ini\": 170, \"clust\": 815, \"rank\": 1105, \"rankvar\": 929, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2656, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2197, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2212, \"group\": [813.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83813_BALBc-1_X02_Y02_786_688\", \"ini\": 169, \"clust\": 2539, \"rank\": 2135, \"rankvar\": 2034, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2657, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2751, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1919, \"group\": [2536.0, 385.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83857_BALBc-1_X02_Y02_787_296\", \"ini\": 168, \"clust\": 2075, \"rank\": 2199, \"rankvar\": 2380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2658, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1763, \"cat-2\": \"Density: 23\", \"cat_2_index\": 454, \"group\": [2070.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84179_BALBc-1_X02_Y02_790_487\", \"ini\": 167, \"clust\": 660, \"rank\": 2734, \"rankvar\": 2535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2659, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2752, \"cat-2\": \"Density: 22\", \"cat_2_index\": 339, \"group\": [659.0, 155.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84223_BALBc-1_X02_Y02_791_169\", \"ini\": 166, \"clust\": 1213, \"rank\": 342, \"rankvar\": 1440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2660, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 731, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1163, \"group\": [1213.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84480_BALBc-1_X02_Y02_793_920\", \"ini\": 165, \"clust\": 659, \"rank\": 2730, \"rankvar\": 2542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2661, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2198, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1920, \"group\": [661.0, 155.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84554_BALBc-1_X02_Y02_794_978\", \"ini\": 164, \"clust\": 1720, \"rank\": 188, \"rankvar\": 21, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2662, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2199, \"cat-2\": \"Density: 24\", \"cat_2_index\": 574, \"group\": [1721.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84577_BALBc-1_X02_Y02_795_333\", \"ini\": 163, \"clust\": 2162, \"rank\": 1510, \"rankvar\": 2017, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2663, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 574, \"cat-2\": \"Density: 23\", \"cat_2_index\": 455, \"group\": [2161.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84864_BALBc-1_X02_Y02_798_754\", \"ini\": 162, \"clust\": 1269, \"rank\": 675, \"rankvar\": 1436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2664, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1514, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2213, \"group\": [1269.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85074_BALBc-1_X02_Y02_80_689\", \"ini\": 161, \"clust\": 1365, \"rank\": 960, \"rankvar\": 411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2665, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1515, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2132, \"group\": [1365.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85146_BALBc-1_X02_Y02_800_596\", \"ini\": 160, \"clust\": 862, \"rank\": 999, \"rankvar\": 725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2666, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2816, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1586, \"group\": [862.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85365_BALBc-1_X02_Y02_803_450\", \"ini\": 159, \"clust\": 1286, \"rank\": 455, \"rankvar\": 273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2667, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 575, \"cat-2\": \"Density: 22\", \"cat_2_index\": 340, \"group\": [1289.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85452_BALBc-1_X02_Y02_804_6\", \"ini\": 158, \"clust\": 480, \"rank\": 2651, \"rankvar\": 2733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2668, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 942, \"cat-2\": \"Density: 26\", \"cat_2_index\": 851, \"group\": [483.0, 100.0, 26.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85759_BALBc-1_X02_Y02_808_377\", \"ini\": 157, \"clust\": 624, \"rank\": 2720, \"rankvar\": 2568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2669, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 576, \"cat-2\": \"Density: 23\", \"cat_2_index\": 456, \"group\": [626.0, 146.0, 38.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85916_BALBc-1_X02_Y02_81_656\", \"ini\": 156, \"clust\": 2424, \"rank\": 1664, \"rankvar\": 485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2670, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1516, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2214, \"group\": [2423.0, 357.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85926_BALBc-1_X02_Y02_81_785\", \"ini\": 155, \"clust\": 2673, \"rank\": 2670, \"rankvar\": 2171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2671, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1517, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1001, \"group\": [2671.0, 412.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85942_BALBc-1_X02_Y02_81_991\", \"ini\": 154, \"clust\": 802, \"rank\": 1481, \"rankvar\": 1415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2672, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1518, \"cat-2\": \"Density: 16\", \"cat_2_index\": 66, \"group\": [802.0, 191.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86002_BALBc-1_X02_Y02_810_796\", \"ini\": 153, \"clust\": 1761, \"rank\": 88, \"rankvar\": 353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2673, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 577, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2294, \"group\": [1759.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86177_BALBc-1_X02_Y02_813_187\", \"ini\": 152, \"clust\": 1939, \"rank\": 2474, \"rankvar\": 2637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2674, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1556, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1164, \"group\": [1936.0, 298.0, 71.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86247_BALBc-1_X02_Y02_813_882\", \"ini\": 151, \"clust\": 812, \"rank\": 1173, \"rankvar\": 1033, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2675, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2200, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2033, \"group\": [810.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86277_BALBc-1_X02_Y02_814_239\", \"ini\": 150, \"clust\": 1477, \"rank\": 178, \"rankvar\": 1381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2676, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2497, \"cat-2\": \"Density: 24\", \"cat_2_index\": 575, \"group\": [1475.0, 268.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86338_BALBc-1_X02_Y02_814_833\", \"ini\": 149, \"clust\": 1906, \"rank\": 1257, \"rankvar\": 502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2677, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2201, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2295, \"group\": [1906.0, 291.0, 70.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86350_BALBc-1_X02_Y02_815_1001\", \"ini\": 148, \"clust\": 2579, \"rank\": 1820, \"rankvar\": 1268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2678, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 578, \"cat-2\": \"Density: 17\", \"cat_2_index\": 84, \"group\": [2577.0, 392.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86446_BALBc-1_X02_Y02_816_410\", \"ini\": 147, \"clust\": 1480, \"rank\": 925, \"rankvar\": 145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2679, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 579, \"cat-2\": \"Density: 25\", \"cat_2_index\": 704, \"group\": [1554.0, 271.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86456_BALBc-1_X02_Y02_816_577\", \"ini\": 146, \"clust\": 858, \"rank\": 1134, \"rankvar\": 1813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2680, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1557, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1448, \"group\": [859.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86485_BALBc-1_X02_Y02_816_906\", \"ini\": 145, \"clust\": 1345, \"rank\": 774, \"rankvar\": 221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2681, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2202, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1820, \"group\": [1344.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86584_BALBc-1_X02_Y02_818_376\", \"ini\": 144, \"clust\": 752, \"rank\": 937, \"rankvar\": 2246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2682, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 580, \"cat-2\": \"Density: 24\", \"cat_2_index\": 576, \"group\": [752.0, 170.0, 43.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86654_BALBc-1_X02_Y02_819_312\", \"ini\": 143, \"clust\": 195, \"rank\": 2306, \"rankvar\": 2485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2683, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 581, \"cat-2\": \"Density: 23\", \"cat_2_index\": 457, \"group\": [193.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86760_BALBc-1_X02_Y02_82_873\", \"ini\": 142, \"clust\": 1334, \"rank\": 320, \"rankvar\": 1689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2684, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1519, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1311, \"group\": [1335.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86819_BALBc-1_X02_Y02_820_592\", \"ini\": 141, \"clust\": 2748, \"rank\": 610, \"rankvar\": 1249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2685, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 582, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1587, \"group\": [2750.0, 424.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86859_BALBc-1_X02_Y02_821_272\", \"ini\": 140, \"clust\": 1994, \"rank\": 1739, \"rankvar\": 2231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2686, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 583, \"cat-2\": \"Density: 24\", \"cat_2_index\": 577, \"group\": [1990.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86882_BALBc-1_X02_Y02_821_469\", \"ini\": 139, \"clust\": 1450, \"rank\": 118, \"rankvar\": 1108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2687, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2753, \"cat-2\": \"Density: 22\", \"cat_2_index\": 341, \"group\": [1447.0, 267.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86995_BALBc-1_X02_Y02_822_773\", \"ini\": 138, \"clust\": 2644, \"rank\": 1668, \"rankvar\": 265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2688, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 584, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2034, \"group\": [2640.0, 408.0, 99.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87010_BALBc-1_X02_Y02_822_970\", \"ini\": 137, \"clust\": 2399, \"rank\": 1765, \"rankvar\": 1514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2689, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2203, \"cat-2\": \"Density: 25\", \"cat_2_index\": 705, \"group\": [2395.0, 353.0, 83.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87223_BALBc-1_X02_Y02_825_637\", \"ini\": 136, \"clust\": 1293, \"rank\": 627, \"rankvar\": 281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2690, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2754, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2035, \"group\": [1291.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87231_BALBc-1_X02_Y02_825_685\", \"ini\": 135, \"clust\": 341, \"rank\": 2816, \"rankvar\": 2742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2691, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1520, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2215, \"group\": [340.0, 70.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87361_BALBc-1_X02_Y02_827_663\", \"ini\": 134, \"clust\": 2013, \"rank\": 2364, \"rankvar\": 2595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2692, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2755, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2423, \"group\": [2016.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87401_BALBc-1_X02_Y02_828_136\", \"ini\": 133, \"clust\": 2206, \"rank\": 1039, \"rankvar\": 689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2693, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 878, \"cat-2\": \"Density: 25\", \"cat_2_index\": 706, \"group\": [2204.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87753_BALBc-1_X02_Y02_831_750\", \"ini\": 132, \"clust\": 1077, \"rank\": 1021, \"rankvar\": 345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2694, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1521, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2036, \"group\": [1078.0, 229.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87772_BALBc-1_X02_Y02_832_176\", \"ini\": 131, \"clust\": 129, \"rank\": 1009, \"rankvar\": 2091, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2695, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1558, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1165, \"group\": [129.0, 28.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87940_BALBc-1_X02_Y02_834_449\", \"ini\": 130, \"clust\": 2238, \"rank\": 819, \"rankvar\": 1353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2696, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 585, \"cat-2\": \"Density: 22\", \"cat_2_index\": 342, \"group\": [2235.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88160_BALBc-1_X02_Y02_837_355\", \"ini\": 129, \"clust\": 753, \"rank\": 431, \"rankvar\": 1692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2697, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 586, \"cat-2\": \"Density: 23\", \"cat_2_index\": 458, \"group\": [753.0, 170.0, 43.0, 10.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88190_BALBc-1_X02_Y02_837_668\", \"ini\": 128, \"clust\": 1511, \"rank\": 545, \"rankvar\": 303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2698, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 587, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2296, \"group\": [1508.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88264_BALBc-1_X02_Y02_838_719\", \"ini\": 127, \"clust\": 2256, \"rank\": 1354, \"rankvar\": 1939, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2699, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1522, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2133, \"group\": [2253.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88363_BALBc-1_X02_Y02_839_932\", \"ini\": 126, \"clust\": 937, \"rank\": 752, \"rankvar\": 263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2700, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2204, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1704, \"group\": [937.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88394_BALBc-1_X02_Y02_84_515\", \"ini\": 125, \"clust\": 1759, \"rank\": 191, \"rankvar\": 417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2701, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1523, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1921, \"group\": [1754.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88440_BALBc-1_X02_Y02_84_969\", \"ini\": 124, \"clust\": 1335, \"rank\": 304, \"rankvar\": 1325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2702, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1524, \"cat-2\": \"Density: 20\", \"cat_2_index\": 184, \"group\": [1336.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88503_BALBc-1_X02_Y02_840_832\", \"ini\": 123, \"clust\": 2771, \"rank\": 1441, \"rankvar\": 893, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2703, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 588, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2134, \"group\": [2769.0, 426.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88555_BALBc-1_X02_Y02_841_439\", \"ini\": 122, \"clust\": 71, \"rank\": 1810, \"rankvar\": 1472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2704, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 589, \"cat-2\": \"Density: 23\", \"cat_2_index\": 459, \"group\": [74.0, 15.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88760_BALBc-1_X02_Y02_844_277\", \"ini\": 121, \"clust\": 1228, \"rank\": 1012, \"rankvar\": 612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2705, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 590, \"cat-2\": \"Density: 22\", \"cat_2_index\": 343, \"group\": [1231.0, 255.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88917_BALBc-1_X02_Y02_846_331\", \"ini\": 120, \"clust\": 1499, \"rank\": 451, \"rankvar\": 100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2706, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 591, \"cat-2\": \"Density: 24\", \"cat_2_index\": 578, \"group\": [1497.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88934_BALBc-1_X02_Y02_846_601\", \"ini\": 119, \"clust\": 1877, \"rank\": 920, \"rankvar\": 619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2707, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2756, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1705, \"group\": [1880.0, 278.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88985_BALBc-1_X02_Y02_847_249\", \"ini\": 118, \"clust\": 158, \"rank\": 2216, \"rankvar\": 1740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2708, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2498, \"cat-2\": \"Density: 25\", \"cat_2_index\": 707, \"group\": [158.0, 34.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89032_BALBc-1_X02_Y02_847_706\", \"ini\": 117, \"clust\": 813, \"rank\": 1333, \"rankvar\": 912, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2709, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 592, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2216, \"group\": [811.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89042_BALBc-1_X02_Y02_847_797\", \"ini\": 116, \"clust\": 1626, \"rank\": 146, \"rankvar\": 56, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2710, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2817, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2037, \"group\": [1627.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89169_BALBc-1_X02_Y02_849_386\", \"ini\": 115, \"clust\": 179, \"rank\": 2205, \"rankvar\": 1712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2711, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 593, \"cat-2\": \"Density: 23\", \"cat_2_index\": 460, \"group\": [182.0, 43.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89338_BALBc-1_X02_Y02_850_734\", \"ini\": 114, \"clust\": 1732, \"rank\": 468, \"rankvar\": 151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2712, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 594, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2038, \"group\": [1733.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89357_BALBc-1_X02_Y02_851_140\", \"ini\": 113, \"clust\": 1496, \"rank\": 683, \"rankvar\": 67, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2713, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 879, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1002, \"group\": [1499.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89396_BALBc-1_X02_Y02_851_573\", \"ini\": 112, \"clust\": 2593, \"rank\": 2009, \"rankvar\": 1755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2714, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1559, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1312, \"group\": [2590.0, 393.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89419_BALBc-1_X02_Y02_851_872\", \"ini\": 111, \"clust\": 1742, \"rank\": 223, \"rankvar\": 377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2715, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2205, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1821, \"group\": [1739.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89427_BALBc-1_X02_Y02_852_1004\", \"ini\": 110, \"clust\": 2118, \"rank\": 2048, \"rankvar\": 1530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2716, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 595, \"cat-2\": \"Density: 16\", \"cat_2_index\": 67, \"group\": [2116.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89491_BALBc-1_X02_Y02_852_856\", \"ini\": 109, \"clust\": 2754, \"rank\": 1162, \"rankvar\": 131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2717, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 596, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1922, \"group\": [2753.0, 425.0, 102.0, 27.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89556_BALBc-1_X02_Y02_853_642\", \"ini\": 108, \"clust\": 2801, \"rank\": 1990, \"rankvar\": 684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2718, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2757, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2135, \"group\": [2799.0, 432.0, 104.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89743_BALBc-1_X02_Y02_855_754\", \"ini\": 107, \"clust\": 2671, \"rank\": 1807, \"rankvar\": 811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2719, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2818, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1822, \"group\": [2668.0, 411.0, 100.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89977_BALBc-1_X02_Y02_858_899\", \"ini\": 106, \"clust\": 1354, \"rank\": 892, \"rankvar\": 32, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2720, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2206, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1706, \"group\": [1355.0, 261.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90055_BALBc-1_X02_Y02_859_983\", \"ini\": 105, \"clust\": 2337, \"rank\": 1669, \"rankvar\": 889, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2721, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 597, \"cat-2\": \"Density: 24\", \"cat_2_index\": 579, \"group\": [2335.0, 330.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90109_BALBc-1_X02_Y02_86_60\", \"ini\": 104, \"clust\": 166, \"rank\": 1970, \"rankvar\": 1904, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2722, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 732, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1313, \"group\": [167.0, 38.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90319_BALBc-1_X02_Y02_862_37\", \"ini\": 103, \"clust\": 848, \"rank\": 943, \"rankvar\": 850, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2723, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1991, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1003, \"group\": [853.0, 197.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90441_BALBc-1_X02_Y02_864_212\", \"ini\": 102, \"clust\": 579, \"rank\": 2686, \"rankvar\": 2625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2724, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2499, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1166, \"group\": [578.0, 129.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90472_BALBc-1_X02_Y02_864_516\", \"ini\": 101, \"clust\": 1244, \"rank\": 106, \"rankvar\": 1047, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2725, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1525, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1004, \"group\": [1247.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90584_BALBc-1_X02_Y02_865_954\", \"ini\": 100, \"clust\": 2270, \"rank\": 900, \"rankvar\": 1663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2726, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2207, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1314, \"group\": [2265.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90756_BALBc-1_X02_Y02_868_247\", \"ini\": 99, \"clust\": 421, \"rank\": 2256, \"rankvar\": 2457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2727, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1764, \"cat-2\": \"Density: 24\", \"cat_2_index\": 580, \"group\": [421.0, 83.0, 20.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90964_BALBc-1_X02_Y02_87_810\", \"ini\": 98, \"clust\": 1050, \"rank\": 885, \"rankvar\": 799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2728, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1688, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1167, \"group\": [1050.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90993_BALBc-1_X02_Y02_870_113\", \"ini\": 97, \"clust\": 594, \"rank\": 2109, \"rankvar\": 2373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2729, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 645, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1005, \"group\": [596.0, 136.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91037_BALBc-1_X02_Y02_870_608\", \"ini\": 96, \"clust\": 2363, \"rank\": 2552, \"rankvar\": 765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2730, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2758, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1588, \"group\": [2360.0, 346.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91170_BALBc-1_X02_Y02_872_455\", \"ini\": 95, \"clust\": 2231, \"rank\": 830, \"rankvar\": 1739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2731, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1526, \"cat-2\": \"Density: 19\", \"cat_2_index\": 136, \"group\": [2231.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91208_BALBc-1_X02_Y02_872_797\", \"ini\": 94, \"clust\": 2364, \"rank\": 2550, \"rankvar\": 999, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2732, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2819, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1923, \"group\": [2361.0, 346.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91245_BALBc-1_X02_Y02_873_333\", \"ini\": 93, \"clust\": 234, \"rank\": 2409, \"rankvar\": 2702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2733, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 598, \"cat-2\": \"Density: 25\", \"cat_2_index\": 708, \"group\": [235.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91506_BALBc-1_X02_Y02_876_651\", \"ini\": 92, \"clust\": 1682, \"rank\": 34, \"rankvar\": 452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2734, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2759, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2217, \"group\": [1679.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91693_BALBc-1_X02_Y02_879_140\", \"ini\": 91, \"clust\": 269, \"rank\": 1454, \"rankvar\": 562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2735, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 646, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1589, \"group\": [269.0, 52.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91994_BALBc-1_X02_Y02_881_868\", \"ini\": 90, \"clust\": 2795, \"rank\": 1515, \"rankvar\": 496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2736, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2208, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1707, \"group\": [2793.0, 429.0, 103.0, 28.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92030_BALBc-1_X02_Y02_882_354\", \"ini\": 89, \"clust\": 2261, \"rank\": 1093, \"rankvar\": 2296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2737, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 599, \"cat-2\": \"Density: 23\", \"cat_2_index\": 461, \"group\": [2256.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92117_BALBc-1_X02_Y02_883_671\", \"ini\": 88, \"clust\": 2567, \"rank\": 2212, \"rankvar\": 1782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2738, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2760, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2039, \"group\": [2563.0, 390.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92273_BALBc-1_X02_Y02_886_181\", \"ini\": 87, \"clust\": 1239, \"rank\": 791, \"rankvar\": 1498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2739, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2466, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1315, \"group\": [1240.0, 256.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92311_BALBc-1_X02_Y02_886_596\", \"ini\": 86, \"clust\": 1997, \"rank\": 2147, \"rankvar\": 2133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2740, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2820, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1316, \"group\": [1997.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92434_BALBc-1_X02_Y02_888_295\", \"ini\": 85, \"clust\": 2158, \"rank\": 1186, \"rankvar\": 1460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2741, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 880, \"cat-2\": \"Density: 25\", \"cat_2_index\": 709, \"group\": [2156.0, 315.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92552_BALBc-1_X02_Y02_889_735\", \"ini\": 84, \"clust\": 1802, \"rank\": 226, \"rankvar\": 349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2742, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 600, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1924, \"group\": [1799.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92558_BALBc-1_X02_Y02_889_853\", \"ini\": 83, \"clust\": 2394, \"rank\": 1783, \"rankvar\": 1151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2743, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 601, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1708, \"group\": [2391.0, 352.0, 83.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92570_BALBc-1_X02_Y02_889_96\", \"ini\": 82, \"clust\": 1005, \"rank\": 1259, \"rankvar\": 282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2744, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 881, \"cat-2\": \"Density: 26\", \"cat_2_index\": 852, \"group\": [1009.0, 224.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92700_BALBc-1_X02_Y02_890_746\", \"ini\": 81, \"clust\": 2412, \"rank\": 2268, \"rankvar\": 1299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2745, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2821, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1709, \"group\": [2411.0, 356.0, 84.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92756_BALBc-1_X02_Y02_891_44\", \"ini\": 80, \"clust\": 83, \"rank\": 1029, \"rankvar\": 852, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2746, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 882, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1168, \"group\": [84.0, 20.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92817_BALBc-1_X02_Y02_892_413\", \"ini\": 79, \"clust\": 583, \"rank\": 1994, \"rankvar\": 2230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2747, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 602, \"cat-2\": \"Density: 26\", \"cat_2_index\": 853, \"group\": [582.0, 131.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92906_BALBc-1_X02_Y02_893_546\", \"ini\": 78, \"clust\": 2103, \"rank\": 2312, \"rankvar\": 1883, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2748, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1527, \"cat-2\": \"Density: 24\", \"cat_2_index\": 581, \"group\": [2100.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92912_BALBc-1_X02_Y02_893_644\", \"ini\": 77, \"clust\": 1950, \"rank\": 1913, \"rankvar\": 1374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2749, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2761, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1925, \"group\": [1946.0, 301.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92924_BALBc-1_X02_Y02_893_808\", \"ini\": 76, \"clust\": 1620, \"rank\": 67, \"rankvar\": 283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2750, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2822, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1710, \"group\": [1620.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93103_BALBc-1_X02_Y02_895_993\", \"ini\": 75, \"clust\": 2110, \"rank\": 1871, \"rankvar\": 1665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2751, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 603, \"cat-2\": \"Density: 17\", \"cat_2_index\": 85, \"group\": [2111.0, 311.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93223_BALBc-1_X02_Y02_897_705\", \"ini\": 74, \"clust\": 2583, \"rank\": 1509, \"rankvar\": 1494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2752, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2762, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2040, \"group\": [2581.0, 392.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93348_BALBc-1_X02_Y02_899_389\", \"ini\": 73, \"clust\": 1042, \"rank\": 742, \"rankvar\": 1292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2753, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 604, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1006, \"group\": [1043.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93415_BALBc-1_X02_Y02_9_38\", \"ini\": 72, \"clust\": 894, \"rank\": 1100, \"rankvar\": 467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2754, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2467, \"cat-2\": \"Density: 24\", \"cat_2_index\": 582, \"group\": [894.0, 205.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93437_BALBc-1_X02_Y02_9_690\", \"ini\": 71, \"clust\": 279, \"rank\": 801, \"rankvar\": 905, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2755, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1528, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1711, \"group\": [278.0, 56.0, 16.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93474_BALBc-1_X02_Y02_90_174\", \"ini\": 70, \"clust\": 891, \"rank\": 776, \"rankvar\": 499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2756, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2763, \"cat-2\": \"Density: 20\", \"cat_2_index\": 185, \"group\": [891.0, 204.0, 54.0, 13.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93570_BALBc-1_X02_Y02_900_320\", \"ini\": 69, \"clust\": 2095, \"rank\": 1609, \"rankvar\": 2210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2757, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 605, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1007, \"group\": [2093.0, 308.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93778_BALBc-1_X02_Y02_903_445\", \"ini\": 68, \"clust\": 239, \"rank\": 2117, \"rankvar\": 2618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2758, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1529, \"cat-2\": \"Density: 23\", \"cat_2_index\": 462, \"group\": [239.0, 45.0, 12.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93852_BALBc-1_X02_Y02_904_543\", \"ini\": 67, \"clust\": 1858, \"rank\": 129, \"rankvar\": 488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2759, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1530, \"cat-2\": \"Density: 24\", \"cat_2_index\": 583, \"group\": [1853.0, 277.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93948_BALBc-1_X02_Y02_905_80\", \"ini\": 66, \"clust\": 1528, \"rank\": 354, \"rankvar\": 242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2760, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 883, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1317, \"group\": [1530.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94108_BALBc-1_X02_Y02_907_946\", \"ini\": 65, \"clust\": 2645, \"rank\": 1670, \"rankvar\": 696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2761, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2209, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1449, \"group\": [2641.0, 408.0, 99.0, 26.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94454_BALBc-1_X02_Y02_911_705\", \"ini\": 64, \"clust\": 1663, \"rank\": 6, \"rankvar\": 1181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2762, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2764, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1926, \"group\": [1664.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94481_BALBc-1_X02_Y02_912_148\", \"ini\": 63, \"clust\": 2226, \"rank\": 928, \"rankvar\": 1605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2763, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 647, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1318, \"group\": [2224.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94484_BALBc-1_X02_Y02_912_174\", \"ini\": 62, \"clust\": 1728, \"rank\": 323, \"rankvar\": 81, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2764, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 606, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1319, \"group\": [1726.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94610_BALBc-1_X02_Y02_913_822\", \"ini\": 61, \"clust\": 2045, \"rank\": 2156, \"rankvar\": 1986, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2765, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2765, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1450, \"group\": [2043.0, 305.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94815_BALBc-1_X02_Y02_916_641\", \"ini\": 60, \"clust\": 1613, \"rank\": 139, \"rankvar\": 65, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2766, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2766, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1590, \"group\": [1612.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94838_BALBc-1_X02_Y02_916_85\", \"ini\": 59, \"clust\": 1717, \"rank\": 400, \"rankvar\": 16, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2767, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 884, \"cat-2\": \"Density: 25\", \"cat_2_index\": 710, \"group\": [1715.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94839_BALBc-1_X02_Y02_916_856\", \"ini\": 58, \"clust\": 2529, \"rank\": 2037, \"rankvar\": 1847, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2768, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2767, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1451, \"group\": [2529.0, 384.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94853_BALBc-1_X02_Y02_917_213\", \"ini\": 57, \"clust\": 1280, \"rank\": 231, \"rankvar\": 446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2769, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 885, \"cat-2\": \"Density: 26\", \"cat_2_index\": 854, \"group\": [1282.0, 257.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94891_BALBc-1_X02_Y02_917_742\", \"ini\": 56, \"clust\": 1576, \"rank\": 527, \"rankvar\": 205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2770, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 607, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1591, \"group\": [1577.0, 275.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95053_BALBc-1_X02_Y02_919_786\", \"ini\": 55, \"clust\": 1779, \"rank\": 591, \"rankvar\": 8, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2771, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2823, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1823, \"group\": [1780.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95070_BALBc-1_X02_Y02_919_984\", \"ini\": 54, \"clust\": 1321, \"rank\": 351, \"rankvar\": 1611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2772, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2210, \"cat-2\": \"Density: 20\", \"cat_2_index\": 186, \"group\": [1319.0, 260.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95344_BALBc-1_X02_Y02_922_457\", \"ini\": 53, \"clust\": 850, \"rank\": 463, \"rankvar\": 546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2773, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1531, \"cat-2\": \"Density: 22\", \"cat_2_index\": 344, \"group\": [851.0, 197.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95351_BALBc-1_X02_Y02_922_549\", \"ini\": 52, \"clust\": 2357, \"rank\": 2817, \"rankvar\": 2765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2774, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2768, \"cat-2\": \"Density: 22\", \"cat_2_index\": 345, \"group\": [2354.0, 344.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95458_BALBc-1_X02_Y02_923_893\", \"ini\": 51, \"clust\": 938, \"rank\": 847, \"rankvar\": 117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2775, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2211, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1452, \"group\": [942.0, 219.0, 58.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95495_BALBc-1_X02_Y02_924_349\", \"ini\": 50, \"clust\": 1035, \"rank\": 1337, \"rankvar\": 1547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2776, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 608, \"cat-2\": \"Density: 24\", \"cat_2_index\": 584, \"group\": [1036.0, 226.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95866_BALBc-1_X02_Y02_928_872\", \"ini\": 49, \"clust\": 598, \"rank\": 2122, \"rankvar\": 1769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2777, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2769, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1592, \"group\": [599.0, 138.0, 37.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95874_BALBc-1_X02_Y02_929_132\", \"ini\": 48, \"clust\": 568, \"rank\": 2326, \"rankvar\": 2476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2778, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2468, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1320, \"group\": [571.0, 128.0, 35.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96102_BALBc-1_X02_Y02_931_305\", \"ini\": 47, \"clust\": 2262, \"rank\": 1314, \"rankvar\": 1815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2779, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 886, \"cat-2\": \"Density: 24\", \"cat_2_index\": 585, \"group\": [2257.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96234_BALBc-1_X02_Y02_932_924\", \"ini\": 46, \"clust\": 808, \"rank\": 1400, \"rankvar\": 834, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2780, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2212, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1593, \"group\": [806.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96350_BALBc-1_X02_Y02_934_713\", \"ini\": 45, \"clust\": 2603, \"rank\": 1747, \"rankvar\": 1311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2781, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2770, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1594, \"group\": [2600.0, 395.0, 95.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96428_BALBc-1_X02_Y02_935_613\", \"ini\": 44, \"clust\": 1383, \"rank\": 875, \"rankvar\": 341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2782, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 609, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1321, \"group\": [1385.0, 262.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96640_BALBc-1_X02_Y02_938_684\", \"ini\": 43, \"clust\": 811, \"rank\": 1531, \"rankvar\": 455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2783, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2771, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1453, \"group\": [816.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97000_BALBc-1_X02_Y02_942_474\", \"ini\": 42, \"clust\": 2078, \"rank\": 1878, \"rankvar\": 2131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2784, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2772, \"cat-2\": \"Density: 23\", \"cat_2_index\": 463, \"group\": [2077.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97011_BALBc-1_X02_Y02_942_662\", \"ini\": 41, \"clust\": 1615, \"rank\": 277, \"rankvar\": 13, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2785, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2773, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1454, \"group\": [1615.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97056_BALBc-1_X02_Y02_943_193\", \"ini\": 40, \"clust\": 2244, \"rank\": 598, \"rankvar\": 358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2786, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2774, \"cat-2\": \"Density: 25\", \"cat_2_index\": 711, \"group\": [2240.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97137_BALBc-1_X02_Y02_944_154\", \"ini\": 39, \"clust\": 2456, \"rank\": 1965, \"rankvar\": 1223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2787, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2775, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1824, \"group\": [2454.0, 370.0, 89.0, 23.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97167_BALBc-1_X02_Y02_944_435\", \"ini\": 38, \"clust\": 1600, \"rank\": 429, \"rankvar\": 6, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2788, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 936, \"cat-2\": \"Density: 21\", \"cat_2_index\": 245, \"group\": [1602.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97214_BALBc-1_X02_Y02_944_966\", \"ini\": 37, \"clust\": 1808, \"rank\": 69, \"rankvar\": 1156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2789, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2213, \"cat-2\": \"Density: 24\", \"cat_2_index\": 586, \"group\": [1808.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97451_BALBc-1_X02_Y02_948_331\", \"ini\": 36, \"clust\": 2277, \"rank\": 969, \"rankvar\": 2020, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2790, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 610, \"cat-2\": \"Density: 21\", \"cat_2_index\": 246, \"group\": [2274.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97491_BALBc-1_X02_Y02_948_932\", \"ini\": 35, \"clust\": 859, \"rank\": 1200, \"rankvar\": 1482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2791, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2214, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1595, \"group\": [860.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97517_BALBc-1_X02_Y02_949_240\", \"ini\": 34, \"clust\": 2003, \"rank\": 1771, \"rankvar\": 1840, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2792, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 887, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1008, \"group\": [2001.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97549_BALBc-1_X02_Y02_949_586\", \"ini\": 33, \"clust\": 2352, \"rank\": 2658, \"rankvar\": 2022, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2793, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1589, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1009, \"group\": [2355.0, 344.0, 81.0, 22.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98069_BALBc-1_X02_Y02_955_308\", \"ini\": 32, \"clust\": 545, \"rank\": 2191, \"rankvar\": 1503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2794, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 611, \"cat-2\": \"Density: 22\", \"cat_2_index\": 346, \"group\": [547.0, 119.0, 32.0, 8.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98157_BALBc-1_X02_Y02_956_396\", \"ini\": 31, \"clust\": 661, \"rank\": 2614, \"rankvar\": 2297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2795, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 612, \"cat-2\": \"Density: 25\", \"cat_2_index\": 712, \"group\": [660.0, 155.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98194_BALBc-1_X02_Y02_956_883\", \"ini\": 30, \"clust\": 2140, \"rank\": 1689, \"rankvar\": 1218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2796, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2215, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1712, \"group\": [2139.0, 313.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98263_BALBc-1_X02_Y02_957_843\", \"ini\": 29, \"clust\": 1748, \"rank\": 68, \"rankvar\": 512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2797, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2776, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1322, \"group\": [1748.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98313_BALBc-1_X02_Y02_958_647\", \"ini\": 28, \"clust\": 784, \"rank\": 1220, \"rankvar\": 576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2798, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 613, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1323, \"group\": [785.0, 184.0, 48.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98322_BALBc-1_X02_Y02_958_769\", \"ini\": 27, \"clust\": 2328, \"rank\": 1201, \"rankvar\": 123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2799, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2777, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1455, \"group\": [2325.0, 328.0, 76.0, 20.0, 6.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98806_BALBc-1_X02_Y02_964_191\", \"ini\": 26, \"clust\": 2007, \"rank\": 1837, \"rankvar\": 2280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2800, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 888, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1169, \"group\": [2005.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98856_BALBc-1_X02_Y02_964_78\", \"ini\": 25, \"clust\": 68, \"rank\": 2573, \"rankvar\": 2818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2801, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 889, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1596, \"group\": [67.0, 14.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98994_BALBc-1_X02_Y02_966_741\", \"ini\": 24, \"clust\": 1543, \"rank\": 578, \"rankvar\": 387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2802, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2778, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1713, \"group\": [1549.0, 270.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99000_BALBc-1_X02_Y02_966_800\", \"ini\": 23, \"clust\": 2126, \"rank\": 1942, \"rankvar\": 1638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2803, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2779, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1456, \"group\": [2122.0, 312.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99040_BALBc-1_X02_Y02_967_294\", \"ini\": 22, \"clust\": 2073, \"rank\": 1924, \"rankvar\": 1792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2804, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 890, \"cat-2\": \"Density: 21\", \"cat_2_index\": 247, \"group\": [2071.0, 306.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99129_BALBc-1_X02_Y02_968_372\", \"ini\": 21, \"clust\": 2240, \"rank\": 907, \"rankvar\": 1431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2805, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 614, \"cat-2\": \"Density: 24\", \"cat_2_index\": 587, \"group\": [2237.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99400_BALBc-1_X02_Y02_970_970\", \"ini\": 20, \"clust\": 665, \"rank\": 2517, \"rankvar\": 1631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2806, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2216, \"cat-2\": \"Density: 22\", \"cat_2_index\": 347, \"group\": [664.0, 156.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99453_BALBc-1_X02_Y02_971_668\", \"ini\": 19, \"clust\": 726, \"rank\": 2479, \"rankvar\": 1743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2807, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2780, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1597, \"group\": [726.0, 162.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99472_BALBc-1_X02_Y02_971_945\", \"ini\": 18, \"clust\": 1024, \"rank\": 427, \"rankvar\": 351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2808, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2217, \"cat-2\": \"Density: 25\", \"cat_2_index\": 713, \"group\": [1022.0, 225.0, 59.0, 15.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99576_BALBc-1_X02_Y02_973_307\", \"ini\": 17, \"clust\": 1106, \"rank\": 761, \"rankvar\": 468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2809, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 615, \"cat-2\": \"Density: 22\", \"cat_2_index\": 348, \"group\": [1109.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99819_BALBc-1_X02_Y02_976_413\", \"ini\": 16, \"clust\": 95, \"rank\": 2062, \"rankvar\": 2159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2810, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 937, \"cat-2\": \"Density: 25\", \"cat_2_index\": 714, \"group\": [94.0, 21.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99924_BALBc-1_X02_Y02_977_857\", \"ini\": 15, \"clust\": 1996, \"rank\": 1497, \"rankvar\": 1707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2811, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2218, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1714, \"group\": [1993.0, 304.0, 72.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100214_BALBc-1_X02_Y02_980_820\", \"ini\": 14, \"clust\": 1109, \"rank\": 878, \"rankvar\": 545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2812, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2781, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1324, \"group\": [1107.0, 233.0, 60.0, 16.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100337_BALBc-1_X02_Y02_982_632\", \"ini\": 13, \"clust\": 1222, \"rank\": 1007, \"rankvar\": 238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2813, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2782, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1325, \"group\": [1224.0, 254.0, 64.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100367_BALBc-1_X02_Y02_982_992\", \"ini\": 12, \"clust\": 2518, \"rank\": 1339, \"rankvar\": 955, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2814, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2219, \"cat-2\": \"Density: 17\", \"cat_2_index\": 86, \"group\": [2515.0, 382.0, 93.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100561_BALBc-1_X02_Y02_985_561\", \"ini\": 11, \"clust\": 2474, \"rank\": 1851, \"rankvar\": 1144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2815, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2783, \"cat-2\": \"Density: 22\", \"cat_2_index\": 349, \"group\": [2473.0, 377.0, 91.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100649_BALBc-1_X02_Y02_986_672\", \"ini\": 10, \"clust\": 803, \"rank\": 1263, \"rankvar\": 1183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2816, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2784, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1825, \"group\": [818.0, 192.0, 50.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100670_BALBc-1_X02_Y02_987_14\", \"ini\": 9, \"clust\": 162, \"rank\": 2745, \"rankvar\": 2693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2817, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1532, \"cat-2\": \"Density: 23\", \"cat_2_index\": 464, \"group\": [161.0, 35.0, 11.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100764_BALBc-1_X02_Y02_988_366\", \"ini\": 8, \"clust\": 2312, \"rank\": 1461, \"rankvar\": 872, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2818, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1170, \"group\": [2308.0, 319.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100956_BALBc-1_X02_Y02_99_748\", \"ini\": 7, \"clust\": 662, \"rank\": 2713, \"rankvar\": 2270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2819, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1533, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1715, \"group\": [670.0, 156.0, 39.0, 9.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100988_BALBc-1_X02_Y02_990_472\", \"ini\": 6, \"clust\": 2228, \"rank\": 785, \"rankvar\": 1493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2820, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 938, \"cat-2\": \"Density: 20\", \"cat_2_index\": 187, \"group\": [2226.0, 317.0, 73.0, 18.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101005_BALBc-1_X02_Y02_990_71\", \"ini\": 5, \"clust\": 872, \"rank\": 222, \"rankvar\": 1884, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2821, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2469, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1010, \"group\": [873.0, 198.0, 52.0, 12.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101037_BALBc-1_X02_Y02_991_103\", \"ini\": 4, \"clust\": 400, \"rank\": 2739, \"rankvar\": 2725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2822, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2470, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1326, \"group\": [400.0, 74.0, 19.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101297_BALBc-1_X02_Y02_994_186\", \"ini\": 3, \"clust\": 112, \"rank\": 1334, \"rankvar\": 1491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2823, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2785, \"cat-2\": \"Density: 26\", \"cat_2_index\": 855, \"group\": [116.0, 25.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101397_BALBc-1_X02_Y02_995_288\", \"ini\": 2, \"clust\": 1780, \"rank\": 291, \"rankvar\": 66, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2824, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2471, \"cat-2\": \"Density: 23\", \"cat_2_index\": 465, \"group\": [1779.0, 276.0, 66.0, 17.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101608_BALBc-1_X02_Y02_997_729\", \"ini\": 1, \"clust\": 2554, \"rank\": 2125, \"rankvar\": 1457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2825, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2786, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2041, \"group\": [2555.0, 389.0, 94.0, 24.0, 7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}]}}, {\"N_row_var\": \"all\", \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"name\": \"CD45\", \"ini\": 29, \"clust\": 19, \"rank\": 26, \"rankvar\": 20, \"group\": [19.0, 18.0, 17.0, 15.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"Ly6C\", \"ini\": 28, \"clust\": 2, \"rank\": 1, \"rankvar\": 1, \"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"TCR\", \"ini\": 27, \"clust\": 4, \"rank\": 7, \"rankvar\": 7, \"group\": [5.0, 5.0, 5.0, 5.0, 4.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"Ly6G\", \"ini\": 26, \"clust\": 10, \"rank\": 0, \"rankvar\": 0, \"group\": [11.0, 11.0, 11.0, 10.0, 7.0, 6.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD19\", \"ini\": 25, \"clust\": 20, \"rank\": 28, \"rankvar\": 27, \"group\": [20.0, 19.0, 18.0, 15.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD169\", \"ini\": 24, \"clust\": 27, \"rank\": 24, \"rankvar\": 28, \"group\": [27.0, 26.0, 25.0, 21.0, 14.0, 12.0, 8.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD106\", \"ini\": 23, \"clust\": 24, \"rank\": 16, \"rankvar\": 16, \"group\": [24.0, 23.0, 22.0, 18.0, 12.0, 10.0, 7.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD3\", \"ini\": 22, \"clust\": 3, \"rank\": 5, \"rankvar\": 6, \"group\": [4.0, 4.0, 4.0, 4.0, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD1632\", \"ini\": 21, \"clust\": 17, \"rank\": 27, \"rankvar\": 26, \"group\": [17.0, 16.0, 15.0, 14.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD8a\", \"ini\": 20, \"clust\": 16, \"rank\": 14, \"rankvar\": 14, \"group\": [23.0, 22.0, 21.0, 17.0, 11.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD90\", \"ini\": 19, \"clust\": 21, \"rank\": 21, \"rankvar\": 21, \"group\": [21.0, 20.0, 19.0, 16.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"F480\", \"ini\": 18, \"clust\": 25, \"rank\": 12, \"rankvar\": 10, \"group\": [25.0, 24.0, 23.0, 19.0, 12.0, 10.0, 7.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD11c\", \"ini\": 17, \"clust\": 22, \"rank\": 19, \"rankvar\": 24, \"group\": [22.0, 21.0, 20.0, 16.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"Ter119\", \"ini\": 16, \"clust\": 0, \"rank\": 9, \"rankvar\": 9, \"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD11b\", \"ini\": 15, \"clust\": 11, \"rank\": 3, \"rankvar\": 2, \"group\": [12.0, 12.0, 12.0, 11.0, 7.0, 6.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"IgD\", \"ini\": 14, \"clust\": 8, \"rank\": 18, \"rankvar\": 17, \"group\": [9.0, 9.0, 9.0, 8.0, 6.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD27\", \"ini\": 13, \"clust\": 5, \"rank\": 15, \"rankvar\": 15, \"group\": [6.0, 6.0, 6.0, 5.0, 4.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD5\", \"ini\": 12, \"clust\": 6, \"rank\": 2, \"rankvar\": 3, \"group\": [7.0, 7.0, 7.0, 6.0, 5.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD79b\", \"ini\": 11, \"clust\": 12, \"rank\": 23, \"rankvar\": 22, \"group\": [13.0, 13.0, 13.0, 12.0, 8.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD71\", \"ini\": 10, \"clust\": 1, \"rank\": 4, \"rankvar\": 4, \"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD31\", \"ini\": 9, \"clust\": 18, \"rank\": 20, \"rankvar\": 23, \"group\": [18.0, 17.0, 16.0, 14.0, 10.0, 9.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD4\", \"ini\": 8, \"clust\": 7, \"rank\": 11, \"rankvar\": 12, \"group\": [8.0, 8.0, 8.0, 7.0, 5.0, 4.0, 4.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"IgM\", \"ini\": 7, \"clust\": 13, \"rank\": 8, \"rankvar\": 8, \"group\": [14.0, 14.0, 13.0, 12.0, 8.0, 7.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"B220\", \"ini\": 6, \"clust\": 9, \"rank\": 17, \"rankvar\": 19, \"group\": [10.0, 10.0, 10.0, 9.0, 6.0, 5.0, 5.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"ERTR7\", \"ini\": 5, \"clust\": 23, \"rank\": 10, \"rankvar\": 11, \"group\": [26.0, 25.0, 24.0, 20.0, 13.0, 11.0, 7.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD35\", \"ini\": 4, \"clust\": 14, \"rank\": 25, \"rankvar\": 18, \"group\": [15.0, 15.0, 14.0, 13.0, 9.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD2135\", \"ini\": 3, \"clust\": 15, \"rank\": 13, \"rankvar\": 13, \"group\": [16.0, 15.0, 14.0, 13.0, 9.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD44\", \"ini\": 2, \"clust\": 28, \"rank\": 22, \"rankvar\": 25, \"group\": [28.0, 27.0, 26.0, 22.0, 15.0, 12.0, 8.0, 3.0, 1.0, 1.0, 1.0]}, {\"name\": \"NKp46\", \"ini\": 1, \"clust\": 26, \"rank\": 6, \"rankvar\": 5, \"group\": [29.0, 28.0, 27.0, 23.0, 16.0, 13.0, 9.0, 3.0, 1.0, 1.0, 1.0]}], \"col_nodes\": [{\"name\": \"C-643_BALBc-1_X01_Y01_10_277\", \"ini\": 2826, \"clust\": 1468, \"rank\": 2223, \"rankvar\": 2115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 0, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2805, \"cat-2\": \"Density: 14\", \"cat_2_index\": 23, \"group\": [1468.0, 801.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1264_BALBc-1_X01_Y01_1006_490\", \"ini\": 2825, \"clust\": 249, \"rank\": 921, \"rankvar\": 1499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1765, \"cat-2\": \"Density: 23\", \"cat_2_index\": 350, \"group\": [248.0, 172.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1589_BALBc-1_X01_Y01_101_504\", \"ini\": 2824, \"clust\": 1648, \"rank\": 2495, \"rankvar\": 2565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2335, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1011, \"group\": [1649.0, 909.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1611_BALBc-1_X01_Y01_101_759\", \"ini\": 2823, \"clust\": 1501, \"rank\": 2442, \"rankvar\": 2546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 3, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2336, \"cat-2\": \"Density: 25\", \"cat_2_index\": 588, \"group\": [1505.0, 814.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1873_BALBc-1_X01_Y01_1013_254\", \"ini\": 2822, \"clust\": 1769, \"rank\": 1402, \"rankvar\": 2022, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 4, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 949, \"cat-2\": \"Density: 25\", \"cat_2_index\": 589, \"group\": [1770.0, 1003.0, 302.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1877_BALBc-1_X01_Y01_1013_293\", \"ini\": 2821, \"clust\": 461, \"rank\": 832, \"rankvar\": 1527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 5, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2337, \"cat-2\": \"Density: 27\", \"cat_2_index\": 856, \"group\": [461.0, 321.0, 109.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1935_BALBc-1_X01_Y01_1013_914\", \"ini\": 2820, \"clust\": 1174, \"rank\": 1065, \"rankvar\": 2364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 6, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2338, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1327, \"group\": [1173.0, 568.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2478_BALBc-1_X01_Y01_1020_25\", \"ini\": 2819, \"clust\": 342, \"rank\": 916, \"rankvar\": 1994, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 7, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1766, \"cat-2\": \"Density: 14\", \"cat_2_index\": 24, \"group\": [342.0, 239.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2866_BALBc-1_X01_Y01_1025_128\", \"ini\": 2818, \"clust\": 1709, \"rank\": 2610, \"rankvar\": 2555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 8, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2251, \"cat-2\": \"Density: 21\", \"cat_2_index\": 188, \"group\": [1709.0, 962.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2988_BALBc-1_X01_Y01_1026_609\", \"ini\": 2817, \"clust\": 542, \"rank\": 611, \"rankvar\": 908, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 9, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 950, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1012, \"group\": [543.0, 371.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3121_BALBc-1_X01_Y01_1028_10\", \"ini\": 2816, \"clust\": 618, \"rank\": 500, \"rankvar\": 676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 10, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1767, \"cat-2\": \"Density: 11\", \"cat_2_index\": 4, \"group\": [619.0, 419.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3220_BALBc-1_X01_Y01_1029_199\", \"ini\": 2815, \"clust\": 1548, \"rank\": 977, \"rankvar\": 827, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 11, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 951, \"cat-2\": \"Density: 21\", \"cat_2_index\": 189, \"group\": [1552.0, 842.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3350_BALBc-1_X01_Y01_103_877\", \"ini\": 2814, \"clust\": 1515, \"rank\": 2496, \"rankvar\": 2763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 12, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1768, \"cat-2\": \"Density: 22\", \"cat_2_index\": 248, \"group\": [1512.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3562_BALBc-1_X01_Y01_1032_941\", \"ini\": 2813, \"clust\": 619, \"rank\": 613, \"rankvar\": 1131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 13, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 648, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1598, \"group\": [620.0, 419.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3566_BALBc-1_X01_Y01_1032_996\", \"ini\": 2812, \"clust\": 2749, \"rank\": 1733, \"rankvar\": 1628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 14, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 649, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1599, \"group\": [2748.0, 1483.0, 440.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3997_BALBc-1_X01_Y01_1038_240\", \"ini\": 2811, \"clust\": 1514, \"rank\": 2106, \"rankvar\": 2122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 15, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 952, \"cat-2\": \"Density: 23\", \"cat_2_index\": 351, \"group\": [1514.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4331_BALBc-1_X01_Y01_1041_691\", \"ini\": 2810, \"clust\": 1618, \"rank\": 1890, \"rankvar\": 2060, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 16, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 953, \"cat-2\": \"Density: 27\", \"cat_2_index\": 857, \"group\": [1622.0, 892.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4357_BALBc-1_X01_Y01_1041_883\", \"ini\": 2809, \"clust\": 1507, \"rank\": 2348, \"rankvar\": 1826, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 17, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 733, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1013, \"group\": [1522.0, 821.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4446_BALBc-1_X01_Y01_1042_941\", \"ini\": 2808, \"clust\": 206, \"rank\": 776, \"rankvar\": 1029, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 18, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2500, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1328, \"group\": [210.0, 142.0, 48.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4781_BALBc-1_X01_Y01_1047_289\", \"ini\": 2807, \"clust\": 1656, \"rank\": 2570, \"rankvar\": 2797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 19, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2339, \"cat-2\": \"Density: 25\", \"cat_2_index\": 590, \"group\": [1657.0, 915.0, 266.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6348_BALBc-1_X01_Y01_1065_305\", \"ini\": 2806, \"clust\": 1337, \"rank\": 1036, \"rankvar\": 2382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 20, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2472, \"cat-2\": \"Density: 25\", \"cat_2_index\": 591, \"group\": [1337.0, 702.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6416_BALBc-1_X01_Y01_1066_194\", \"ini\": 2805, \"clust\": 1144, \"rank\": 1133, \"rankvar\": 967, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 21, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2340, \"cat-2\": \"Density: 22\", \"cat_2_index\": 249, \"group\": [1147.0, 547.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6555_BALBc-1_X01_Y01_1068_135\", \"ini\": 2804, \"clust\": 458, \"rank\": 185, \"rankvar\": 2430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 22, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2252, \"cat-2\": \"Density: 19\", \"cat_2_index\": 110, \"group\": [458.0, 319.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6697_BALBc-1_X01_Y01_1069_600\", \"ini\": 2803, \"clust\": 1567, \"rank\": 647, \"rankvar\": 709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 23, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1769, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1329, \"group\": [1568.0, 857.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6969_BALBc-1_X01_Y01_1072_106\", \"ini\": 2802, \"clust\": 2402, \"rank\": 2821, \"rankvar\": 2825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 24, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2253, \"cat-2\": \"Density: 22\", \"cat_2_index\": 250, \"group\": [2402.0, 1272.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7033_BALBc-1_X01_Y01_1072_670\", \"ini\": 2801, \"clust\": 703, \"rank\": 325, \"rankvar\": 1562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 25, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1770, \"cat-2\": \"Density: 24\", \"cat_2_index\": 466, \"group\": [708.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7127_BALBc-1_X01_Y01_1073_75\", \"ini\": 2800, \"clust\": 459, \"rank\": 412, \"rankvar\": 2612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 26, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2254, \"cat-2\": \"Density: 23\", \"cat_2_index\": 352, \"group\": [459.0, 319.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7426_BALBc-1_X01_Y01_1077_266\", \"ini\": 2799, \"clust\": 1338, \"rank\": 787, \"rankvar\": 1446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 27, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2341, \"cat-2\": \"Density: 27\", \"cat_2_index\": 858, \"group\": [1338.0, 702.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7713_BALBc-1_X01_Y01_1080_242\", \"ini\": 2798, \"clust\": 926, \"rank\": 365, \"rankvar\": 44, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 28, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2342, \"cat-2\": \"Density: 24\", \"cat_2_index\": 467, \"group\": [927.0, 481.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8117_BALBc-1_X01_Y01_1085_774\", \"ini\": 2797, \"clust\": 1523, \"rank\": 1819, \"rankvar\": 2619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 29, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 954, \"cat-2\": \"Density: 24\", \"cat_2_index\": 468, \"group\": [1523.0, 822.0, 240.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8161_BALBc-1_X01_Y01_1086_450\", \"ini\": 2796, \"clust\": 1145, \"rank\": 999, \"rankvar\": 1637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 30, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2220, \"cat-2\": \"Density: 27\", \"cat_2_index\": 859, \"group\": [1145.0, 545.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8563_BALBc-1_X01_Y01_1090_6\", \"ini\": 2795, \"clust\": 1341, \"rank\": 1139, \"rankvar\": 1271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 31, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 650, \"cat-2\": \"Density: 14\", \"cat_2_index\": 25, \"group\": [1342.0, 706.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8628_BALBc-1_X01_Y01_1091_43\", \"ini\": 2794, \"clust\": 1466, \"rank\": 1851, \"rankvar\": 2187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 32, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1591, \"cat-2\": \"Density: 19\", \"cat_2_index\": 111, \"group\": [1464.0, 798.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9642_BALBc-1_X01_Y01_1102_507\", \"ini\": 2793, \"clust\": 1402, \"rank\": 1410, \"rankvar\": 1402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 33, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2255, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1330, \"group\": [1403.0, 753.0, 222.0, 63.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9652_BALBc-1_X01_Y01_1102_662\", \"ini\": 2792, \"clust\": 1602, \"rank\": 1871, \"rankvar\": 1989, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 34, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1771, \"cat-2\": \"Density: 23\", \"cat_2_index\": 353, \"group\": [1603.0, 885.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9706_BALBc-1_X01_Y01_1103_434\", \"ini\": 2791, \"clust\": 393, \"rank\": 1110, \"rankvar\": 1856, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 35, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 955, \"cat-2\": \"Density: 27\", \"cat_2_index\": 860, \"group\": [397.0, 278.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10170_BALBc-1_X01_Y01_1108_899\", \"ini\": 2790, \"clust\": 1259, \"rank\": 2222, \"rankvar\": 2166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 36, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 956, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1171, \"group\": [1259.0, 639.0, 183.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10432_BALBc-1_X01_Y01_1111_474\", \"ini\": 2789, \"clust\": 396, \"rank\": 1070, \"rankvar\": 2396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 37, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2343, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1331, \"group\": [393.0, 275.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10617_BALBc-1_X01_Y01_1113_927\", \"ini\": 2788, \"clust\": 111, \"rank\": 705, \"rankvar\": 1136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 38, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1592, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1014, \"group\": [115.0, 71.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10619_BALBc-1_X01_Y01_1113_965\", \"ini\": 2787, \"clust\": 603, \"rank\": 106, \"rankvar\": 1102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 39, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1593, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1457, \"group\": [603.0, 412.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10837_BALBc-1_X01_Y01_1116_858\", \"ini\": 2786, \"clust\": 1526, \"rank\": 2389, \"rankvar\": 2556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 40, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 734, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1015, \"group\": [1528.0, 825.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11085_BALBc-1_X01_Y01_112_387\", \"ini\": 2785, \"clust\": 963, \"rank\": 470, \"rankvar\": 622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 41, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 651, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1600, \"group\": [963.0, 494.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11633_BALBc-1_X01_Y01_1126_451\", \"ini\": 2784, \"clust\": 748, \"rank\": 306, \"rankvar\": 387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 42, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2344, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1172, \"group\": [755.0, 473.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11797_BALBc-1_X01_Y01_1128_484\", \"ini\": 2783, \"clust\": 2474, \"rank\": 1461, \"rankvar\": 1430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 43, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2345, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1458, \"group\": [2474.0, 1322.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12372_BALBc-1_X01_Y01_1135_41\", \"ini\": 2782, \"clust\": 1610, \"rank\": 1321, \"rankvar\": 1638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 44, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1594, \"cat-2\": \"Density: 16\", \"cat_2_index\": 47, \"group\": [1609.0, 888.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12571_BALBc-1_X01_Y01_1137_963\", \"ini\": 2781, \"clust\": 2753, \"rank\": 1763, \"rankvar\": 1387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 45, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 0, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1173, \"group\": [2752.0, 1487.0, 441.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12609_BALBc-1_X01_Y01_1138_500\", \"ini\": 2780, \"clust\": 690, \"rank\": 243, \"rankvar\": 1841, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 46, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2346, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1459, \"group\": [691.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13081_BALBc-1_X01_Y01_1143_436\", \"ini\": 2779, \"clust\": 1556, \"rank\": 965, \"rankvar\": 1755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 47, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 957, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1016, \"group\": [1555.0, 845.0, 245.0, 70.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13731_BALBc-1_X01_Y01_1150_998\", \"ini\": 2778, \"clust\": 2819, \"rank\": 2489, \"rankvar\": 2272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 48, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2347, \"cat-2\": \"Density: 26\", \"cat_2_index\": 715, \"group\": [2820.0, 1532.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13749_BALBc-1_X01_Y01_1151_281\", \"ini\": 2777, \"clust\": 929, \"rank\": 155, \"rankvar\": 467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 49, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2348, \"cat-2\": \"Density: 21\", \"cat_2_index\": 190, \"group\": [931.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13948_BALBc-1_X01_Y01_1153_833\", \"ini\": 2776, \"clust\": 1527, \"rank\": 2174, \"rankvar\": 2733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 50, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1689, \"cat-2\": \"Density: 26\", \"cat_2_index\": 716, \"group\": [1526.0, 825.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14037_BALBc-1_X01_Y01_1154_869\", \"ini\": 2775, \"clust\": 1528, \"rank\": 2024, \"rankvar\": 2455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 51, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1595, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1332, \"group\": [1527.0, 825.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14325_BALBc-1_X01_Y01_1158_916\", \"ini\": 2774, \"clust\": 1418, \"rank\": 1930, \"rankvar\": 1114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 52, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 1, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1017, \"group\": [1419.0, 766.0, 227.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14446_BALBc-1_X01_Y01_116_658\", \"ini\": 2773, \"clust\": 226, \"rank\": 1101, \"rankvar\": 1985, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 53, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1772, \"cat-2\": \"Density: 27\", \"cat_2_index\": 861, \"group\": [225.0, 157.0, 55.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14698_BALBc-1_X01_Y01_1162_538\", \"ini\": 2772, \"clust\": 1221, \"rank\": 1969, \"rankvar\": 2275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 54, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1773, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1826, \"group\": [1223.0, 613.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14855_BALBc-1_X01_Y01_1164_480\", \"ini\": 2771, \"clust\": 1576, \"rank\": 1658, \"rankvar\": 452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 55, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2349, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1716, \"group\": [1580.0, 866.0, 253.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15062_BALBc-1_X01_Y01_1166_964\", \"ini\": 2770, \"clust\": 2748, \"rank\": 1380, \"rankvar\": 1267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 56, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2350, \"cat-2\": \"Density: 27\", \"cat_2_index\": 862, \"group\": [2750.0, 1485.0, 440.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15797_BALBc-1_X01_Y01_1175_906\", \"ini\": 2769, \"clust\": 1353, \"rank\": 1211, \"rankvar\": 1225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 57, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 652, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1018, \"group\": [1354.0, 715.0, 212.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16293_BALBc-1_X01_Y01_1181_53\", \"ini\": 2768, \"clust\": 1291, \"rank\": 1569, \"rankvar\": 668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 58, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1774, \"cat-2\": \"Density: 16\", \"cat_2_index\": 48, \"group\": [1292.0, 663.0, 190.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16370_BALBc-1_X01_Y01_1182_491\", \"ini\": 2767, \"clust\": 279, \"rank\": 1446, \"rankvar\": 1480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 59, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1596, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1174, \"group\": [282.0, 204.0, 74.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16563_BALBc-1_X01_Y01_1184_941\", \"ini\": 2766, \"clust\": 371, \"rank\": 960, \"rankvar\": 1034, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 60, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2351, \"cat-2\": \"Density: 27\", \"cat_2_index\": 863, \"group\": [368.0, 255.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16691_BALBc-1_X01_Y01_1186_803\", \"ini\": 2765, \"clust\": 778, \"rank\": 126, \"rankvar\": 106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 61, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 735, \"cat-2\": \"Density: 25\", \"cat_2_index\": 592, \"group\": [779.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17060_BALBc-1_X01_Y01_1190_820\", \"ini\": 2764, \"clust\": 1799, \"rank\": 2698, \"rankvar\": 2789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 62, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 958, \"cat-2\": \"Density: 26\", \"cat_2_index\": 717, \"group\": [1805.0, 1019.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17493_BALBc-1_X01_Y01_1196_594\", \"ini\": 2763, \"clust\": 1277, \"rank\": 1288, \"rankvar\": 2417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 63, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1775, \"cat-2\": \"Density: 26\", \"cat_2_index\": 718, \"group\": [1276.0, 653.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17526_BALBc-1_X01_Y01_1196_998\", \"ini\": 2762, \"clust\": 2768, \"rank\": 1770, \"rankvar\": 1465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 64, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2352, \"cat-2\": \"Density: 26\", \"cat_2_index\": 719, \"group\": [2771.0, 1501.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17577_BALBc-1_X01_Y01_1197_786\", \"ini\": 2761, \"clust\": 568, \"rank\": 329, \"rankvar\": 2207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 65, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 736, \"cat-2\": \"Density: 24\", \"cat_2_index\": 469, \"group\": [568.0, 389.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17628_BALBc-1_X01_Y01_1198_413\", \"ini\": 2760, \"clust\": 1461, \"rank\": 2186, \"rankvar\": 2608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 66, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 959, \"cat-2\": \"Density: 26\", \"cat_2_index\": 720, \"group\": [1463.0, 797.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18640_BALBc-1_X01_Y01_1209_127\", \"ini\": 2759, \"clust\": 1380, \"rank\": 954, \"rankvar\": 1253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 67, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 960, \"cat-2\": \"Density: 20\", \"cat_2_index\": 137, \"group\": [1381.0, 734.0, 216.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19476_BALBc-1_X01_Y01_1219_513\", \"ini\": 2758, \"clust\": 1219, \"rank\": 1134, \"rankvar\": 1115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 68, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1776, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1019, \"group\": [1219.0, 611.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19678_BALBc-1_X01_Y01_1221_169\", \"ini\": 2757, \"clust\": 1370, \"rank\": 2524, \"rankvar\": 2564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 69, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1690, \"cat-2\": \"Density: 22\", \"cat_2_index\": 251, \"group\": [1369.0, 729.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19861_BALBc-1_X01_Y01_1223_430\", \"ini\": 2756, \"clust\": 1535, \"rank\": 2292, \"rankvar\": 2602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 70, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1597, \"cat-2\": \"Density: 27\", \"cat_2_index\": 864, \"group\": [1535.0, 831.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19879_BALBc-1_X01_Y01_1223_598\", \"ini\": 2755, \"clust\": 1651, \"rank\": 2208, \"rankvar\": 2670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 71, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2353, \"cat-2\": \"Density: 27\", \"cat_2_index\": 865, \"group\": [1651.0, 911.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20505_BALBc-1_X01_Y01_1230_928\", \"ini\": 2754, \"clust\": 1318, \"rank\": 750, \"rankvar\": 200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 72, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 653, \"cat-2\": \"Density: 25\", \"cat_2_index\": 593, \"group\": [1318.0, 686.0, 204.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20820_BALBc-1_X01_Y01_1234_752\", \"ini\": 2753, \"clust\": 307, \"rank\": 1918, \"rankvar\": 2640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 73, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 961, \"cat-2\": \"Density: 24\", \"cat_2_index\": 470, \"group\": [305.0, 215.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20832_BALBc-1_X01_Y01_1234_952\", \"ini\": 2752, \"clust\": 1278, \"rank\": 1208, \"rankvar\": 2471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 74, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2354, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1020, \"group\": [1277.0, 653.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21409_BALBc-1_X01_Y01_1241_777\", \"ini\": 2751, \"clust\": 1486, \"rank\": 2220, \"rankvar\": 2461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 75, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1777, \"cat-2\": \"Density: 24\", \"cat_2_index\": 471, \"group\": [1485.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21558_BALBc-1_X01_Y01_1243_856\", \"ini\": 2750, \"clust\": 1140, \"rank\": 655, \"rankvar\": 1279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 76, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 654, \"cat-2\": \"Density: 25\", \"cat_2_index\": 594, \"group\": [1141.0, 542.0, 149.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21876_BALBc-1_X01_Y01_1248_400\", \"ini\": 2749, \"clust\": 1497, \"rank\": 1521, \"rankvar\": 992, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 77, \"cat-1\": \"Neighbor: CD3(+) other markers (-)\", \"cat_1_index\": 947, \"cat-2\": \"Density: 23\", \"cat_2_index\": 354, \"group\": [1501.0, 811.0, 238.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22222_BALBc-1_X01_Y01_1251_971\", \"ini\": 2748, \"clust\": 978, \"rank\": 758, \"rankvar\": 746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 78, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 737, \"cat-2\": \"Density: 27\", \"cat_2_index\": 866, \"group\": [984.0, 505.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22283_BALBc-1_X01_Y01_1252_608\", \"ini\": 2747, \"clust\": 1652, \"rank\": 2006, \"rankvar\": 2245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 79, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2355, \"cat-2\": \"Density: 23\", \"cat_2_index\": 355, \"group\": [1652.0, 911.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22370_BALBc-1_X01_Y01_1253_930\", \"ini\": 2746, \"clust\": 1552, \"rank\": 1147, \"rankvar\": 942, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 80, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 738, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1021, \"group\": [1553.0, 843.0, 244.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22471_BALBc-1_X01_Y01_1255_479\", \"ini\": 2745, \"clust\": 1472, \"rank\": 2514, \"rankvar\": 2590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 81, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 739, \"cat-2\": \"Density: 27\", \"cat_2_index\": 867, \"group\": [1470.0, 802.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22920_BALBc-1_X01_Y01_1260_756\", \"ini\": 2744, \"clust\": 460, \"rank\": 1189, \"rankvar\": 699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 82, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 962, \"cat-2\": \"Density: 23\", \"cat_2_index\": 356, \"group\": [463.0, 323.0, 110.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23720_BALBc-1_X01_Y01_1271_214\", \"ini\": 2743, \"clust\": 873, \"rank\": 26, \"rankvar\": 479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 83, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1778, \"cat-2\": \"Density: 22\", \"cat_2_index\": 252, \"group\": [877.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23748_BALBc-1_X01_Y01_1271_543\", \"ini\": 2742, \"clust\": 1620, \"rank\": 2312, \"rankvar\": 2484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 84, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2356, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1175, \"group\": [1619.0, 892.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23973_BALBc-1_X01_Y01_1274_422\", \"ini\": 2741, \"clust\": 1688, \"rank\": 2307, \"rankvar\": 2750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 85, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1779, \"cat-2\": \"Density: 22\", \"cat_2_index\": 253, \"group\": [1688.0, 945.0, 281.0, 81.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24535_BALBc-1_X01_Y01_1281_350\", \"ini\": 2740, \"clust\": 653, \"rank\": 501, \"rankvar\": 234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 86, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 963, \"cat-2\": \"Density: 20\", \"cat_2_index\": 138, \"group\": [653.0, 437.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24998_BALBc-1_X01_Y01_1287_867\", \"ini\": 2739, \"clust\": 1400, \"rank\": 2259, \"rankvar\": 2228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 87, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 655, \"cat-2\": \"Density: 23\", \"cat_2_index\": 357, \"group\": [1401.0, 751.0, 221.0, 63.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25430_BALBc-1_X01_Y01_1292_741\", \"ini\": 2738, \"clust\": 1317, \"rank\": 666, \"rankvar\": 953, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 88, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1780, \"cat-2\": \"Density: 23\", \"cat_2_index\": 358, \"group\": [1320.0, 688.0, 204.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25531_BALBc-1_X01_Y01_1293_912\", \"ini\": 2737, \"clust\": 1532, \"rank\": 2207, \"rankvar\": 2393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 89, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1781, \"cat-2\": \"Density: 26\", \"cat_2_index\": 721, \"group\": [1533.0, 829.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25534_BALBc-1_X01_Y01_1293_926\", \"ini\": 2736, \"clust\": 1666, \"rank\": 1565, \"rankvar\": 1548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 90, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1782, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1333, \"group\": [1667.0, 924.0, 270.0, 76.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25729_BALBc-1_X01_Y01_1296_850\", \"ini\": 2735, \"clust\": 769, \"rank\": 53, \"rankvar\": 783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 91, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1598, \"cat-2\": \"Density: 25\", \"cat_2_index\": 595, \"group\": [771.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25779_BALBc-1_X01_Y01_1297_522\", \"ini\": 2734, \"clust\": 322, \"rank\": 1696, \"rankvar\": 2705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 92, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1783, \"cat-2\": \"Density: 27\", \"cat_2_index\": 868, \"group\": [322.0, 225.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26533_BALBc-1_X01_Y01_1306_107\", \"ini\": 2733, \"clust\": 1560, \"rank\": 1001, \"rankvar\": 1292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 93, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 740, \"cat-2\": \"Density: 21\", \"cat_2_index\": 191, \"group\": [1561.0, 850.0, 248.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27126_BALBc-1_X01_Y01_1313_325\", \"ini\": 2732, \"clust\": 1545, \"rank\": 1099, \"rankvar\": 1493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 94, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1784, \"cat-2\": \"Density: 23\", \"cat_2_index\": 359, \"group\": [1547.0, 838.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27291_BALBc-1_X01_Y01_1315_624\", \"ini\": 2731, \"clust\": 1474, \"rank\": 2723, \"rankvar\": 2521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 95, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1785, \"cat-2\": \"Density: 24\", \"cat_2_index\": 472, \"group\": [1490.0, 804.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27496_BALBc-1_X01_Y01_1318_358\", \"ini\": 2730, \"clust\": 1459, \"rank\": 2745, \"rankvar\": 2676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 96, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2473, \"cat-2\": \"Density: 23\", \"cat_2_index\": 360, \"group\": [1459.0, 795.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27658_BALBc-1_X01_Y01_132_746\", \"ini\": 2729, \"clust\": 1245, \"rank\": 1718, \"rankvar\": 1075, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 97, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2357, \"cat-2\": \"Density: 26\", \"cat_2_index\": 722, \"group\": [1246.0, 627.0, 179.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27856_BALBc-1_X01_Y01_1322_539\", \"ini\": 2728, \"clust\": 1592, \"rank\": 1418, \"rankvar\": 1572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 98, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2256, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1022, \"group\": [1594.0, 877.0, 256.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27868_BALBc-1_X01_Y01_1322_716\", \"ini\": 2727, \"clust\": 1536, \"rank\": 2206, \"rankvar\": 2428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 99, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 741, \"cat-2\": \"Density: 25\", \"cat_2_index\": 596, \"group\": [1536.0, 831.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28466_BALBc-1_X01_Y01_1329_929\", \"ini\": 2726, \"clust\": 2787, \"rank\": 2290, \"rankvar\": 2497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 100, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1786, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1601, \"group\": [2788.0, 1510.0, 450.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28618_BALBc-1_X01_Y01_1331_1005\", \"ini\": 2725, \"clust\": 1837, \"rank\": 1685, \"rankvar\": 1655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 101, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1787, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1334, \"group\": [1838.0, 1032.0, 309.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29005_BALBc-1_X01_Y01_1336_646\", \"ini\": 2724, \"clust\": 1557, \"rank\": 1557, \"rankvar\": 1239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 102, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1788, \"cat-2\": \"Density: 20\", \"cat_2_index\": 139, \"group\": [1556.0, 846.0, 245.0, 70.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29014_BALBc-1_X01_Y01_1336_791\", \"ini\": 2723, \"clust\": 1537, \"rank\": 2407, \"rankvar\": 2603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 103, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2257, \"cat-2\": \"Density: 27\", \"cat_2_index\": 869, \"group\": [1544.0, 836.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29210_BALBc-1_X01_Y01_134_634\", \"ini\": 2722, \"clust\": 1615, \"rank\": 1844, \"rankvar\": 2463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 104, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1599, \"cat-2\": \"Density: 26\", \"cat_2_index\": 723, \"group\": [1618.0, 891.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29734_BALBc-1_X01_Y01_140_392\", \"ini\": 2721, \"clust\": 1544, \"rank\": 1043, \"rankvar\": 1597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 105, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 742, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1602, \"group\": [1548.0, 839.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30018_BALBc-1_X01_Y01_144_355\", \"ini\": 2720, \"clust\": 964, \"rank\": 229, \"rankvar\": 1805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 106, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 743, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1927, \"group\": [964.0, 494.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30053_BALBc-1_X01_Y01_144_841\", \"ini\": 2719, \"clust\": 1747, \"rank\": 2649, \"rankvar\": 2714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 107, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1789, \"cat-2\": \"Density: 22\", \"cat_2_index\": 254, \"group\": [1746.0, 987.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30398_BALBc-1_X01_Y01_149_544\", \"ini\": 2718, \"clust\": 1097, \"rank\": 115, \"rankvar\": 125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 108, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1790, \"cat-2\": \"Density: 23\", \"cat_2_index\": 361, \"group\": [1097.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30507_BALBc-1_X01_Y01_15_762\", \"ini\": 2717, \"clust\": 1516, \"rank\": 2251, \"rankvar\": 2312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 109, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 744, \"cat-2\": \"Density: 15\", \"cat_2_index\": 33, \"group\": [1513.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30743_BALBc-1_X01_Y01_152_927\", \"ini\": 2716, \"clust\": 1499, \"rank\": 1988, \"rankvar\": 1937, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 110, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1791, \"cat-2\": \"Density: 22\", \"cat_2_index\": 255, \"group\": [1498.0, 809.0, 238.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30803_BALBc-1_X01_Y01_153_644\", \"ini\": 2715, \"clust\": 1458, \"rank\": 2484, \"rankvar\": 2280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 111, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1792, \"cat-2\": \"Density: 26\", \"cat_2_index\": 724, \"group\": [1497.0, 808.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31107_BALBc-1_X01_Y01_157_727\", \"ini\": 2714, \"clust\": 540, \"rank\": 617, \"rankvar\": 164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 112, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2358, \"cat-2\": \"Density: 27\", \"cat_2_index\": 870, \"group\": [538.0, 368.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32393_BALBc-1_X01_Y01_174_205\", \"ini\": 2713, \"clust\": 981, \"rank\": 439, \"rankvar\": 532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 113, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2359, \"cat-2\": \"Density: 26\", \"cat_2_index\": 725, \"group\": [983.0, 504.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32406_BALBc-1_X01_Y01_174_446\", \"ini\": 2712, \"clust\": 1609, \"rank\": 1635, \"rankvar\": 2051, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 114, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1793, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1335, \"group\": [1611.0, 888.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32440_BALBc-1_X01_Y01_174_937\", \"ini\": 2711, \"clust\": 1476, \"rank\": 2695, \"rankvar\": 2736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 115, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2221, \"cat-2\": \"Density: 23\", \"cat_2_index\": 362, \"group\": [1474.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33321_BALBc-1_X01_Y01_185_828\", \"ini\": 2710, \"clust\": 1477, \"rank\": 2640, \"rankvar\": 2772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 116, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1691, \"cat-2\": \"Density: 23\", \"cat_2_index\": 363, \"group\": [1475.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34399_BALBc-1_X01_Y01_199_788\", \"ini\": 2709, \"clust\": 339, \"rank\": 642, \"rankvar\": 1683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 117, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2360, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1023, \"group\": [339.0, 238.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34469_BALBc-1_X01_Y01_20_606\", \"ini\": 2708, \"clust\": 1749, \"rank\": 1185, \"rankvar\": 1843, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 118, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1794, \"cat-2\": \"Density: 15\", \"cat_2_index\": 34, \"group\": [1761.0, 997.0, 300.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34670_BALBc-1_X01_Y01_202_526\", \"ini\": 2707, \"clust\": 1285, \"rank\": 1315, \"rankvar\": 1945, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 119, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 656, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1176, \"group\": [1284.0, 656.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34677_BALBc-1_X01_Y01_202_578\", \"ini\": 2706, \"clust\": 2410, \"rank\": 1791, \"rankvar\": 787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 120, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1795, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1177, \"group\": [2412.0, 1282.0, 384.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34817_BALBc-1_X01_Y01_204_297\", \"ini\": 2705, \"clust\": 1403, \"rank\": 1358, \"rankvar\": 991, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 121, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1692, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1336, \"group\": [1404.0, 754.0, 222.0, 63.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34866_BALBc-1_X01_Y01_204_930\", \"ini\": 2704, \"clust\": 2411, \"rank\": 890, \"rankvar\": 588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 122, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2361, \"cat-2\": \"Density: 23\", \"cat_2_index\": 364, \"group\": [2410.0, 1280.0, 383.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35315_BALBc-1_X01_Y01_210_142\", \"ini\": 2703, \"clust\": 288, \"rank\": 1381, \"rankvar\": 2654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 123, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1796, \"cat-2\": \"Density: 23\", \"cat_2_index\": 365, \"group\": [288.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35570_BALBc-1_X01_Y01_213_684\", \"ini\": 2702, \"clust\": 1503, \"rank\": 2780, \"rankvar\": 2689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 124, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1797, \"cat-2\": \"Density: 26\", \"cat_2_index\": 726, \"group\": [1502.0, 812.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35785_BALBc-1_X01_Y01_216_442\", \"ini\": 2701, \"clust\": 711, \"rank\": 244, \"rankvar\": 1389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 125, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1798, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1603, \"group\": [709.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36633_BALBc-1_X01_Y01_227_305\", \"ini\": 2700, \"clust\": 1334, \"rank\": 1460, \"rankvar\": 1888, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 126, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1534, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1337, \"group\": [1335.0, 701.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36710_BALBc-1_X01_Y01_228_469\", \"ini\": 2699, \"clust\": 605, \"rank\": 317, \"rankvar\": 42, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 127, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1799, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1178, \"group\": [605.0, 412.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36780_BALBc-1_X01_Y01_229_278\", \"ini\": 2698, \"clust\": 219, \"rank\": 1214, \"rankvar\": 1196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 128, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1535, \"cat-2\": \"Density: 23\", \"cat_2_index\": 366, \"group\": [219.0, 151.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37147_BALBc-1_X01_Y01_233_345\", \"ini\": 2697, \"clust\": 1336, \"rank\": 878, \"rankvar\": 1563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 129, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 964, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1338, \"group\": [1339.0, 703.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37192_BALBc-1_X01_Y01_233_984\", \"ini\": 2696, \"clust\": 1328, \"rank\": 2091, \"rankvar\": 2237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 130, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2222, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1024, \"group\": [1328.0, 695.0, 207.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37390_BALBc-1_X01_Y01_236_829\", \"ini\": 2695, \"clust\": 1261, \"rank\": 1202, \"rankvar\": 2440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 131, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1693, \"cat-2\": \"Density: 27\", \"cat_2_index\": 871, \"group\": [1264.0, 643.0, 185.0, 52.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37665_BALBc-1_X01_Y01_24_582\", \"ini\": 2694, \"clust\": 1218, \"rank\": 1758, \"rankvar\": 1815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 132, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1800, \"cat-2\": \"Density: 14\", \"cat_2_index\": 26, \"group\": [1224.0, 614.0, 175.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38087_BALBc-1_X01_Y01_245_436\", \"ini\": 2693, \"clust\": 1039, \"rank\": 476, \"rankvar\": 353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 133, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2362, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1604, \"group\": [1039.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38121_BALBc-1_X01_Y01_245_812\", \"ini\": 2692, \"clust\": 225, \"rank\": 827, \"rankvar\": 1560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 134, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2363, \"cat-2\": \"Density: 27\", \"cat_2_index\": 872, \"group\": [227.0, 158.0, 55.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38523_BALBc-1_X01_Y01_250_505\", \"ini\": 2691, \"clust\": 885, \"rank\": 73, \"rankvar\": 113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 135, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1801, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1025, \"group\": [893.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38805_BALBc-1_X01_Y01_253_960\", \"ini\": 2690, \"clust\": 41, \"rank\": 688, \"rankvar\": 1270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 136, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2474, \"cat-2\": \"Density: 26\", \"cat_2_index\": 727, \"group\": [43.0, 36.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38981_BALBc-1_X01_Y01_256_369\", \"ini\": 2689, \"clust\": 809, \"rank\": 50, \"rankvar\": 328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 137, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2364, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1460, \"group\": [808.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39031_BALBc-1_X01_Y01_256_980\", \"ini\": 2688, \"clust\": 1389, \"rank\": 2690, \"rankvar\": 2400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 138, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1802, \"cat-2\": \"Density: 26\", \"cat_2_index\": 728, \"group\": [1391.0, 742.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39262_BALBc-1_X01_Y01_26_273\", \"ini\": 2687, \"clust\": 1442, \"rank\": 2684, \"rankvar\": 2740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 139, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1803, \"cat-2\": \"Density: 17\", \"cat_2_index\": 68, \"group\": [1446.0, 785.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39659_BALBc-1_X01_Y01_264_554\", \"ini\": 2686, \"clust\": 1414, \"rank\": 2090, \"rankvar\": 1524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 140, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1694, \"cat-2\": \"Density: 27\", \"cat_2_index\": 873, \"group\": [1413.0, 762.0, 226.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39807_BALBc-1_X01_Y01_266_477\", \"ini\": 2685, \"clust\": 1443, \"rank\": 2631, \"rankvar\": 2404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 141, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1695, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1605, \"group\": [1442.0, 784.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39811_BALBc-1_X01_Y01_266_516\", \"ini\": 2684, \"clust\": 1694, \"rank\": 1707, \"rankvar\": 2454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 142, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1696, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1179, \"group\": [1697.0, 954.0, 285.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40558_BALBc-1_X01_Y01_275_814\", \"ini\": 2683, \"clust\": 1287, \"rank\": 1628, \"rankvar\": 273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 143, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2365, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1180, \"group\": [1288.0, 659.0, 189.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41204_BALBc-1_X01_Y01_283_369\", \"ini\": 2682, \"clust\": 1495, \"rank\": 2800, \"rankvar\": 2741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 144, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 965, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1181, \"group\": [1493.0, 806.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41354_BALBc-1_X01_Y01_285_575\", \"ini\": 2681, \"clust\": 1606, \"rank\": 1161, \"rankvar\": 2123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 145, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1804, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1606, \"group\": [1605.0, 887.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41940_BALBc-1_X01_Y01_292_456\", \"ini\": 2680, \"clust\": 1469, \"rank\": 2216, \"rankvar\": 1746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 146, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1697, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1928, \"group\": [1469.0, 801.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41976_BALBc-1_X01_Y01_292_937\", \"ini\": 2679, \"clust\": 1585, \"rank\": 1006, \"rankvar\": 1263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 147, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1805, \"cat-2\": \"Density: 27\", \"cat_2_index\": 874, \"group\": [1588.0, 871.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42301_BALBc-1_X01_Y01_297_556\", \"ini\": 2678, \"clust\": 1725, \"rank\": 2405, \"rankvar\": 1557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 148, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1698, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1461, \"group\": [1731.0, 976.0, 291.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42630_BALBc-1_X01_Y01_300_775\", \"ini\": 2677, \"clust\": 224, \"rank\": 1296, \"rankvar\": 1129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 149, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2366, \"cat-2\": \"Density: 25\", \"cat_2_index\": 597, \"group\": [228.0, 159.0, 55.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42740_BALBc-1_X01_Y01_302_128\", \"ini\": 2676, \"clust\": 1451, \"rank\": 1586, \"rankvar\": 1844, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 150, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1600, \"cat-2\": \"Density: 22\", \"cat_2_index\": 256, \"group\": [1454.0, 791.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43040_BALBc-1_X01_Y01_306_364\", \"ini\": 2675, \"clust\": 1364, \"rank\": 2409, \"rankvar\": 2363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 151, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 966, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1717, \"group\": [1365.0, 726.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43178_BALBc-1_X01_Y01_308_412\", \"ini\": 2674, \"clust\": 1440, \"rank\": 2722, \"rankvar\": 2574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 152, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2367, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2136, \"group\": [1439.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43217_BALBc-1_X01_Y01_308_969\", \"ini\": 2673, \"clust\": 216, \"rank\": 1037, \"rankvar\": 1026, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 153, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2475, \"cat-2\": \"Density: 27\", \"cat_2_index\": 875, \"group\": [216.0, 148.0, 52.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43287_BALBc-1_X01_Y01_309_987\", \"ini\": 2672, \"clust\": 1633, \"rank\": 2634, \"rankvar\": 2648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 154, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2476, \"cat-2\": \"Density: 27\", \"cat_2_index\": 876, \"group\": [1635.0, 900.0, 261.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43697_BALBc-1_X01_Y01_314_444\", \"ini\": 2671, \"clust\": 1492, \"rank\": 2368, \"rankvar\": 1513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 155, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 2, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2218, \"group\": [1491.0, 805.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43943_BALBc-1_X01_Y01_317_804\", \"ini\": 2670, \"clust\": 370, \"rank\": 1003, \"rankvar\": 1689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 156, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2368, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1339, \"group\": [370.0, 256.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44052_BALBc-1_X01_Y01_318_913\", \"ini\": 2669, \"clust\": 620, \"rank\": 289, \"rankvar\": 1012, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 157, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2258, \"cat-2\": \"Density: 26\", \"cat_2_index\": 729, \"group\": [623.0, 420.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44139_BALBc-1_X01_Y01_32_289\", \"ini\": 2668, \"clust\": 2547, \"rank\": 2461, \"rankvar\": 2758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 158, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1806, \"cat-2\": \"Density: 18\", \"cat_2_index\": 87, \"group\": [2547.0, 1372.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44170_BALBc-1_X01_Y01_32_755\", \"ini\": 2667, \"clust\": 2240, \"rank\": 1847, \"rankvar\": 1474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 159, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 745, \"cat-2\": \"Density: 16\", \"cat_2_index\": 49, \"group\": [2242.0, 1220.0, 366.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44230_BALBc-1_X01_Y01_320_524\", \"ini\": 2666, \"clust\": 1713, \"rank\": 2638, \"rankvar\": 2632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 160, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1699, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1462, \"group\": [1714.0, 966.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44536_BALBc-1_X01_Y01_324_441\", \"ini\": 2665, \"clust\": 1572, \"rank\": 489, \"rankvar\": 1948, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 161, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2369, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2363, \"group\": [1573.0, 860.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44775_BALBc-1_X01_Y01_327_457\", \"ini\": 2664, \"clust\": 608, \"rank\": 385, \"rankvar\": 432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 162, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2370, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2364, \"group\": [609.0, 413.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45547_BALBc-1_X01_Y01_336_358\", \"ini\": 2663, \"clust\": 40, \"rank\": 807, \"rankvar\": 1776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 163, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 657, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1607, \"group\": [44.0, 37.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45620_BALBc-1_X01_Y01_337_515\", \"ini\": 2662, \"clust\": 1237, \"rank\": 990, \"rankvar\": 1940, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 164, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 967, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2042, \"group\": [1237.0, 622.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45792_BALBc-1_X01_Y01_339_781\", \"ini\": 2661, \"clust\": 222, \"rank\": 1210, \"rankvar\": 1031, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 165, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2259, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1463, \"group\": [221.0, 153.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46150_BALBc-1_X01_Y01_343_551\", \"ini\": 2660, \"clust\": 1622, \"rank\": 1865, \"rankvar\": 2683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 166, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 968, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1182, \"group\": [1623.0, 893.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46164_BALBc-1_X01_Y01_343_747\", \"ini\": 2659, \"clust\": 291, \"rank\": 1372, \"rankvar\": 2695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 167, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1807, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1026, \"group\": [292.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46255_BALBc-1_X01_Y01_344_899\", \"ini\": 2658, \"clust\": 1502, \"rank\": 2538, \"rankvar\": 2687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 168, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1808, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1183, \"group\": [1504.0, 813.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46297_BALBc-1_X01_Y01_345_451\", \"ini\": 2657, \"clust\": 1580, \"rank\": 1322, \"rankvar\": 1332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 169, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2371, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2137, \"group\": [1581.0, 867.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46315_BALBc-1_X01_Y01_345_681\", \"ini\": 2656, \"clust\": 820, \"rank\": 135, \"rankvar\": 12, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 170, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2260, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1027, \"group\": [819.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46829_BALBc-1_X01_Y01_351_348\", \"ini\": 2655, \"clust\": 1470, \"rank\": 2268, \"rankvar\": 2367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 171, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 969, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1608, \"group\": [1473.0, 802.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46843_BALBc-1_X01_Y01_351_600\", \"ini\": 2654, \"clust\": 1441, \"rank\": 2778, \"rankvar\": 2663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 172, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1809, \"cat-2\": \"Density: 25\", \"cat_2_index\": 598, \"group\": [1440.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46930_BALBc-1_X01_Y01_352_655\", \"ini\": 2653, \"clust\": 655, \"rank\": 578, \"rankvar\": 420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 173, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1810, \"cat-2\": \"Density: 23\", \"cat_2_index\": 367, \"group\": [655.0, 438.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47025_BALBc-1_X01_Y01_353_977\", \"ini\": 2652, \"clust\": 1329, \"rank\": 1439, \"rankvar\": 2544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 174, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2223, \"cat-2\": \"Density: 26\", \"cat_2_index\": 730, \"group\": [1329.0, 696.0, 207.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47116_BALBc-1_X01_Y01_355_165\", \"ini\": 2651, \"clust\": 1574, \"rank\": 1998, \"rankvar\": 2403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 175, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1700, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1028, \"group\": [1575.0, 861.0, 252.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47124_BALBc-1_X01_Y01_355_25\", \"ini\": 2650, \"clust\": 1141, \"rank\": 430, \"rankvar\": 569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 176, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1811, \"cat-2\": \"Density: 13\", \"cat_2_index\": 11, \"group\": [1142.0, 543.0, 149.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47290_BALBc-1_X01_Y01_357_393\", \"ini\": 2649, \"clust\": 1425, \"rank\": 1018, \"rankvar\": 1981, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 177, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 658, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1929, \"group\": [1424.0, 770.0, 229.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48026_BALBc-1_X01_Y01_366_429\", \"ini\": 2648, \"clust\": 1342, \"rank\": 1087, \"rankvar\": 1957, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 178, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2372, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1930, \"group\": [1343.0, 707.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48028_BALBc-1_X01_Y01_366_461\", \"ini\": 2647, \"clust\": 930, \"rank\": 367, \"rankvar\": 149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 179, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1601, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1931, \"group\": [929.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48335_BALBc-1_X01_Y01_37_313\", \"ini\": 2646, \"clust\": 1482, \"rank\": 2750, \"rankvar\": 2796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 180, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 746, \"cat-2\": \"Density: 23\", \"cat_2_index\": 368, \"group\": [1480.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48557_BALBc-1_X01_Y01_372_492\", \"ini\": 2645, \"clust\": 1036, \"rank\": 313, \"rankvar\": 473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 181, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 970, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2138, \"group\": [1036.0, 521.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48582_BALBc-1_X01_Y01_372_692\", \"ini\": 2644, \"clust\": 1494, \"rank\": 2820, \"rankvar\": 2785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 182, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2373, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1340, \"group\": [1495.0, 806.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48853_BALBc-1_X01_Y01_376_314\", \"ini\": 2643, \"clust\": 1479, \"rank\": 2754, \"rankvar\": 2662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 971, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1184, \"group\": [1477.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49055_BALBc-1_X01_Y01_378_862\", \"ini\": 2642, \"clust\": 1744, \"rank\": 1974, \"rankvar\": 1617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 184, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2261, \"cat-2\": \"Density: 27\", \"cat_2_index\": 877, \"group\": [1748.0, 989.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49397_BALBc-1_X01_Y01_382_422\", \"ini\": 2641, \"clust\": 1292, \"rank\": 1220, \"rankvar\": 1144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 185, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 659, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2043, \"group\": [1290.0, 661.0, 190.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49496_BALBc-1_X01_Y01_383_563\", \"ini\": 2640, \"clust\": 1500, \"rank\": 1833, \"rankvar\": 2369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 186, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 972, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1464, \"group\": [1499.0, 809.0, 238.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50108_BALBc-1_X01_Y01_390_456\", \"ini\": 2639, \"clust\": 341, \"rank\": 692, \"rankvar\": 399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 187, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1602, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2044, \"group\": [344.0, 240.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50236_BALBc-1_X01_Y01_392_183\", \"ini\": 2638, \"clust\": 1445, \"rank\": 2172, \"rankvar\": 2172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 188, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1812, \"cat-2\": \"Density: 27\", \"cat_2_index\": 878, \"group\": [1444.0, 784.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50329_BALBc-1_X01_Y01_393_436\", \"ini\": 2637, \"clust\": 1330, \"rank\": 1667, \"rankvar\": 2529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 189, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 3, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2139, \"group\": [1331.0, 698.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50622_BALBc-1_X01_Y01_397_212\", \"ini\": 2636, \"clust\": 1558, \"rank\": 1219, \"rankvar\": 1861, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 190, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1701, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1029, \"group\": [1559.0, 849.0, 248.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50633_BALBc-1_X01_Y01_397_371\", \"ini\": 2635, \"clust\": 1473, \"rank\": 2118, \"rankvar\": 2186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 191, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 660, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2219, \"group\": [1471.0, 802.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50940_BALBc-1_X01_Y01_40_516\", \"ini\": 2634, \"clust\": 1710, \"rank\": 2464, \"rankvar\": 2659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 192, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2374, \"cat-2\": \"Density: 22\", \"cat_2_index\": 257, \"group\": [1710.0, 962.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50944_BALBc-1_X01_Y01_40_562\", \"ini\": 2633, \"clust\": 340, \"rank\": 162, \"rankvar\": 1719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 193, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1813, \"cat-2\": \"Density: 19\", \"cat_2_index\": 112, \"group\": [340.0, 238.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51105_BALBc-1_X01_Y01_401_748\", \"ini\": 2632, \"clust\": 305, \"rank\": 1609, \"rankvar\": 2006, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 194, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2375, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1030, \"group\": [308.0, 216.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51247_BALBc-1_X01_Y01_403_851\", \"ini\": 2631, \"clust\": 462, \"rank\": 996, \"rankvar\": 2561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 195, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2262, \"cat-2\": \"Density: 27\", \"cat_2_index\": 879, \"group\": [462.0, 322.0, 109.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51412_BALBc-1_X01_Y01_405_776\", \"ini\": 2630, \"clust\": 1230, \"rank\": 2170, \"rankvar\": 2696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 196, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2263, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1718, \"group\": [1231.0, 620.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51444_BALBc-1_X01_Y01_406_240\", \"ini\": 2629, \"clust\": 1573, \"rank\": 846, \"rankvar\": 719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 197, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2376, \"cat-2\": \"Density: 25\", \"cat_2_index\": 599, \"group\": [1574.0, 860.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51463_BALBc-1_X01_Y01_406_433\", \"ini\": 2628, \"clust\": 1480, \"rank\": 2803, \"rankvar\": 2795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 198, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 661, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1719, \"group\": [1478.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51525_BALBc-1_X01_Y01_407_279\", \"ini\": 2627, \"clust\": 1475, \"rank\": 2665, \"rankvar\": 2692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 199, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 662, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1341, \"group\": [1476.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51947_BALBc-1_X01_Y01_411_566\", \"ini\": 2626, \"clust\": 1565, \"rank\": 467, \"rankvar\": 961, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 200, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2377, \"cat-2\": \"Density: 27\", \"cat_2_index\": 880, \"group\": [1566.0, 855.0, 250.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51995_BALBc-1_X01_Y01_412_107\", \"ini\": 2625, \"clust\": 1225, \"rank\": 1178, \"rankvar\": 2276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 201, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1814, \"cat-2\": \"Density: 23\", \"cat_2_index\": 369, \"group\": [1229.0, 618.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52220_BALBc-1_X01_Y01_414_632\", \"ini\": 2624, \"clust\": 1335, \"rank\": 1525, \"rankvar\": 1798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 202, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2378, \"cat-2\": \"Density: 27\", \"cat_2_index\": 881, \"group\": [1336.0, 701.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52340_BALBc-1_X01_Y01_416_366\", \"ini\": 2623, \"clust\": 705, \"rank\": 70, \"rankvar\": 1953, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 203, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2501, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1932, \"group\": [703.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52585_BALBc-1_X01_Y01_419_56\", \"ini\": 2622, \"clust\": 1619, \"rank\": 1999, \"rankvar\": 2444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 204, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1815, \"cat-2\": \"Density: 19\", \"cat_2_index\": 113, \"group\": [1621.0, 892.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53186_BALBc-1_X01_Y01_426_497\", \"ini\": 2621, \"clust\": 1449, \"rank\": 2190, \"rankvar\": 2085, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 205, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1816, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1827, \"group\": [1448.0, 787.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53439_BALBc-1_X01_Y01_429_519\", \"ini\": 2620, \"clust\": 714, \"rank\": 403, \"rankvar\": 924, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 206, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1817, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1465, \"group\": [714.0, 458.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53460_BALBc-1_X01_Y01_429_728\", \"ini\": 2619, \"clust\": 1170, \"rank\": 541, \"rankvar\": 1439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 207, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2379, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1720, \"group\": [1170.0, 566.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54293_BALBc-1_X01_Y01_439_281\", \"ini\": 2618, \"clust\": 1426, \"rank\": 1492, \"rankvar\": 2017, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 208, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1603, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1609, \"group\": [1425.0, 771.0, 229.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54995_BALBc-1_X01_Y01_447_636\", \"ini\": 2617, \"clust\": 1232, \"rank\": 670, \"rankvar\": 2032, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 209, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2380, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1031, \"group\": [1236.0, 621.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55049_BALBc-1_X01_Y01_448_341\", \"ini\": 2616, \"clust\": 1247, \"rank\": 2509, \"rankvar\": 2500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 210, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 663, \"cat-2\": \"Density: 27\", \"cat_2_index\": 882, \"group\": [1250.0, 631.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55837_BALBc-1_X01_Y01_457_685\", \"ini\": 2615, \"clust\": 946, \"rank\": 104, \"rankvar\": 103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 211, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2381, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1933, \"group\": [947.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55843_BALBc-1_X01_Y01_457_714\", \"ini\": 2614, \"clust\": 55, \"rank\": 947, \"rankvar\": 1287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 212, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2382, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1828, \"group\": [56.0, 45.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56224_BALBc-1_X01_Y01_461_819\", \"ini\": 2613, \"clust\": 1297, \"rank\": 1343, \"rankvar\": 1611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 213, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1818, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1342, \"group\": [1300.0, 671.0, 196.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56566_BALBc-1_X01_Y01_466_376\", \"ini\": 2612, \"clust\": 960, \"rank\": 520, \"rankvar\": 1525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 214, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 664, \"cat-2\": \"Density: 27\", \"cat_2_index\": 883, \"group\": [961.0, 492.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56664_BALBc-1_X01_Y01_467_502\", \"ini\": 2611, \"clust\": 1019, \"rank\": 510, \"rankvar\": 88, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 215, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2383, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1466, \"group\": [1033.0, 519.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56683_BALBc-1_X01_Y01_467_748\", \"ini\": 2610, \"clust\": 1105, \"rank\": 266, \"rankvar\": 580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 216, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 973, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1829, \"group\": [1104.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56772_BALBc-1_X01_Y01_468_926\", \"ini\": 2609, \"clust\": 1233, \"rank\": 1054, \"rankvar\": 2285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 217, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 891, \"cat-2\": \"Density: 25\", \"cat_2_index\": 600, \"group\": [1235.0, 621.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56830_BALBc-1_X01_Y01_469_709\", \"ini\": 2608, \"clust\": 1748, \"rank\": 2283, \"rankvar\": 2598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 218, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 974, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1830, \"group\": [1747.0, 988.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57728_BALBc-1_X01_Y01_48_342\", \"ini\": 2607, \"clust\": 1222, \"rank\": 1796, \"rankvar\": 2352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 219, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2384, \"cat-2\": \"Density: 25\", \"cat_2_index\": 601, \"group\": [1221.0, 612.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57798_BALBc-1_X01_Y01_480_352\", \"ini\": 2606, \"clust\": 1138, \"rank\": 803, \"rankvar\": 1185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 220, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2385, \"cat-2\": \"Density: 27\", \"cat_2_index\": 884, \"group\": [1139.0, 541.0, 149.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57888_BALBc-1_X01_Y01_481_332\", \"ini\": 2605, \"clust\": 280, \"rank\": 1352, \"rankvar\": 2263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 221, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 975, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1032, \"group\": [280.0, 202.0, 74.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58066_BALBc-1_X01_Y01_483_751\", \"ini\": 2604, \"clust\": 1239, \"rank\": 1169, \"rankvar\": 1426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 222, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 976, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1610, \"group\": [1243.0, 624.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58300_BALBc-1_X01_Y01_486_59\", \"ini\": 2603, \"clust\": 1139, \"rank\": 839, \"rankvar\": 1356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 223, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2224, \"cat-2\": \"Density: 17\", \"cat_2_index\": 69, \"group\": [1140.0, 541.0, 149.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58405_BALBc-1_X01_Y01_487_989\", \"ini\": 2602, \"clust\": 1483, \"rank\": 2762, \"rankvar\": 2761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 224, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1819, \"cat-2\": \"Density: 22\", \"cat_2_index\": 258, \"group\": [1481.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58769_BALBc-1_X01_Y01_491_835\", \"ini\": 2601, \"clust\": 1331, \"rank\": 1694, \"rankvar\": 2345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 225, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2386, \"cat-2\": \"Density: 25\", \"cat_2_index\": 602, \"group\": [1332.0, 699.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59185_BALBc-1_X01_Y01_496_860\", \"ini\": 2600, \"clust\": 286, \"rank\": 1549, \"rankvar\": 2798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 226, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2387, \"cat-2\": \"Density: 22\", \"cat_2_index\": 259, \"group\": [286.0, 208.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59663_BALBc-1_X01_Y01_501_885\", \"ini\": 2599, \"clust\": 1518, \"rank\": 2588, \"rankvar\": 2637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 227, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2388, \"cat-2\": \"Density: 23\", \"cat_2_index\": 370, \"group\": [1516.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59817_BALBc-1_X01_Y01_504_173\", \"ini\": 2598, \"clust\": 1597, \"rank\": 1077, \"rankvar\": 919, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 228, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1820, \"cat-2\": \"Density: 26\", \"cat_2_index\": 731, \"group\": [1598.0, 880.0, 257.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60154_BALBc-1_X01_Y01_508_261\", \"ini\": 2597, \"clust\": 1690, \"rank\": 2622, \"rankvar\": 2815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 229, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1821, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1185, \"group\": [1691.0, 948.0, 284.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60544_BALBc-1_X01_Y01_512_387\", \"ini\": 2596, \"clust\": 697, \"rank\": 151, \"rankvar\": 794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 230, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2806, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1033, \"group\": [700.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61293_BALBc-1_X01_Y01_520_799\", \"ini\": 2595, \"clust\": 1268, \"rank\": 1389, \"rankvar\": 2726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 231, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 977, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1034, \"group\": [1268.0, 647.0, 187.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61360_BALBc-1_X01_Y01_521_696\", \"ini\": 2594, \"clust\": 1687, \"rank\": 2161, \"rankvar\": 2225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 232, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 978, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1721, \"group\": [1690.0, 947.0, 283.0, 81.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61696_BALBc-1_X01_Y01_525_94\", \"ini\": 2593, \"clust\": 574, \"rank\": 534, \"rankvar\": 1154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 233, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2225, \"cat-2\": \"Density: 18\", \"cat_2_index\": 88, \"group\": [573.0, 391.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62336_BALBc-1_X01_Y01_533_397\", \"ini\": 2592, \"clust\": 2404, \"rank\": 1405, \"rankvar\": 2260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 234, \"cat-1\": \"Neighbor: plasma cells\", \"cat_1_index\": 2824, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1186, \"group\": [2405.0, 1275.0, 379.0, 103.0, 21.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62423_BALBc-1_X01_Y01_534_722\", \"ini\": 2591, \"clust\": 621, \"rank\": 504, \"rankvar\": 872, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 235, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 979, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1831, \"group\": [621.0, 420.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62444_BALBc-1_X01_Y01_534_959\", \"ini\": 2590, \"clust\": 1533, \"rank\": 1730, \"rankvar\": 2414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 236, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 892, \"cat-2\": \"Density: 25\", \"cat_2_index\": 603, \"group\": [1534.0, 830.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63078_BALBc-1_X01_Y01_542_700\", \"ini\": 2589, \"clust\": 1884, \"rank\": 2666, \"rankvar\": 2787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 237, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2389, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1832, \"group\": [1887.0, 1077.0, 328.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63087_BALBc-1_X01_Y01_542_797\", \"ini\": 2588, \"clust\": 1421, \"rank\": 2605, \"rankvar\": 2652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 238, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 980, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1035, \"group\": [1421.0, 768.0, 228.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63522_BALBc-1_X01_Y01_547_973\", \"ini\": 2587, \"clust\": 48, \"rank\": 490, \"rankvar\": 513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 239, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1822, \"cat-2\": \"Density: 26\", \"cat_2_index\": 732, \"group\": [48.0, 40.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63778_BALBc-1_X01_Y01_550_157\", \"ini\": 2586, \"clust\": 1570, \"rank\": 394, \"rankvar\": 1766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 240, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1823, \"cat-2\": \"Density: 24\", \"cat_2_index\": 473, \"group\": [1570.0, 859.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63964_BALBc-1_X01_Y01_552_62\", \"ini\": 2585, \"clust\": 306, \"rank\": 2342, \"rankvar\": 2801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 241, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1824, \"cat-2\": \"Density: 15\", \"cat_2_index\": 35, \"group\": [307.0, 215.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64005_BALBc-1_X01_Y01_553_25\", \"ini\": 2584, \"clust\": 927, \"rank\": 357, \"rankvar\": 171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 242, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2226, \"cat-2\": \"Density: 10\", \"cat_2_index\": 2, \"group\": [928.0, 481.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64010_BALBc-1_X01_Y01_553_292\", \"ini\": 2583, \"clust\": 967, \"rank\": 327, \"rankvar\": 1451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 243, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1825, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1036, \"group\": [967.0, 495.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65182_BALBc-1_X01_Y01_567_223\", \"ini\": 2582, \"clust\": 1365, \"rank\": 2111, \"rankvar\": 2292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 244, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2264, \"cat-2\": \"Density: 25\", \"cat_2_index\": 604, \"group\": [1366.0, 727.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65656_BALBc-1_X01_Y01_572_784\", \"ini\": 2581, \"clust\": 1616, \"rank\": 1771, \"rankvar\": 1970, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 245, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 981, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1187, \"group\": [1616.0, 891.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66746_BALBc-1_X01_Y01_586_262\", \"ini\": 2580, \"clust\": 649, \"rank\": 173, \"rankvar\": 148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 246, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2265, \"cat-2\": \"Density: 25\", \"cat_2_index\": 605, \"group\": [649.0, 436.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66807_BALBc-1_X01_Y01_586_921\", \"ini\": 2579, \"clust\": 1265, \"rank\": 2381, \"rankvar\": 2547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 247, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 747, \"cat-2\": \"Density: 24\", \"cat_2_index\": 474, \"group\": [1265.0, 644.0, 186.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67268_BALBc-1_X01_Y01_591_693\", \"ini\": 2578, \"clust\": 2241, \"rank\": 2198, \"rankvar\": 1400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 248, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2390, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1833, \"group\": [2240.0, 1219.0, 366.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67677_BALBc-1_X01_Y01_596_954\", \"ini\": 2577, \"clust\": 1844, \"rank\": 1856, \"rankvar\": 1830, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 249, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 982, \"cat-2\": \"Density: 22\", \"cat_2_index\": 260, \"group\": [1845.0, 1038.0, 311.0, 86.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68075_BALBc-1_X01_Y01_600_937\", \"ini\": 2576, \"clust\": 1741, \"rank\": 1766, \"rankvar\": 1658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 250, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 983, \"cat-2\": \"Density: 23\", \"cat_2_index\": 371, \"group\": [1742.0, 985.0, 296.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68258_BALBc-1_X01_Y01_603_416\", \"ini\": 2575, \"clust\": 1372, \"rank\": 2642, \"rankvar\": 2715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 251, \"cat-1\": \"Neighbor: plasma cells\", \"cat_1_index\": 2825, \"cat-2\": \"Density: 26\", \"cat_2_index\": 733, \"group\": [1373.0, 730.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68390_BALBc-1_X01_Y01_605_263\", \"ini\": 2574, \"clust\": 309, \"rank\": 1031, \"rankvar\": 2452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 252, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 748, \"cat-2\": \"Density: 26\", \"cat_2_index\": 734, \"group\": [317.0, 221.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68460_BALBc-1_X01_Y01_605_972\", \"ini\": 2573, \"clust\": 1302, \"rank\": 1377, \"rankvar\": 1812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 253, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 984, \"cat-2\": \"Density: 23\", \"cat_2_index\": 372, \"group\": [1301.0, 672.0, 197.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68786_BALBc-1_X01_Y01_609_707\", \"ini\": 2572, \"clust\": 563, \"rank\": 754, \"rankvar\": 1300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 254, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2391, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1722, \"group\": [564.0, 388.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69393_BALBc-1_X01_Y01_616_802\", \"ini\": 2571, \"clust\": 1227, \"rank\": 2109, \"rankvar\": 2391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 255, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 985, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1037, \"group\": [1227.0, 616.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69452_BALBc-1_X01_Y01_617_654\", \"ini\": 2570, \"clust\": 1220, \"rank\": 1631, \"rankvar\": 1800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 256, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2392, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1467, \"group\": [1220.0, 611.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69556_BALBc-1_X01_Y01_618_844\", \"ini\": 2569, \"clust\": 1431, \"rank\": 2261, \"rankvar\": 2205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 257, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 986, \"cat-2\": \"Density: 23\", \"cat_2_index\": 373, \"group\": [1431.0, 777.0, 233.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69767_BALBc-1_X01_Y01_620_771\", \"ini\": 2568, \"clust\": 1806, \"rank\": 1398, \"rankvar\": 2036, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 258, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2393, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1468, \"group\": [1806.0, 1020.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70401_BALBc-1_X01_Y01_628_954\", \"ini\": 2567, \"clust\": 325, \"rank\": 1822, \"rankvar\": 2410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 259, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 4, \"cat-2\": \"Density: 21\", \"cat_2_index\": 192, \"group\": [324.0, 226.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70856_BALBc-1_X01_Y01_633_693\", \"ini\": 2566, \"clust\": 749, \"rank\": 163, \"rankvar\": 257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 260, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 665, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1723, \"group\": [752.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71169_BALBc-1_X01_Y01_637_858\", \"ini\": 2565, \"clust\": 231, \"rank\": 1789, \"rankvar\": 2004, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 261, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 987, \"cat-2\": \"Density: 26\", \"cat_2_index\": 735, \"group\": [233.0, 162.0, 57.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72334_BALBc-1_X01_Y01_650_922\", \"ini\": 2564, \"clust\": 236, \"rank\": 950, \"rankvar\": 1257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 262, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1702, \"cat-2\": \"Density: 25\", \"cat_2_index\": 606, \"group\": [235.0, 164.0, 58.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72558_BALBc-1_X01_Y01_653_790\", \"ini\": 2563, \"clust\": 609, \"rank\": 220, \"rankvar\": 1881, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 263, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 988, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1724, \"group\": [607.0, 413.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72805_BALBc-1_X01_Y01_656_972\", \"ini\": 2562, \"clust\": 2523, \"rank\": 1237, \"rankvar\": 1139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 264, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1703, \"cat-2\": \"Density: 23\", \"cat_2_index\": 374, \"group\": [2524.0, 1354.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73338_BALBc-1_X01_Y01_662_687\", \"ini\": 2561, \"clust\": 559, \"rank\": 989, \"rankvar\": 531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 265, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 989, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1611, \"group\": [559.0, 383.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74854_BALBc-1_X01_Y01_680_662\", \"ini\": 2560, \"clust\": 602, \"rank\": 565, \"rankvar\": 243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 266, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2394, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1834, \"group\": [616.0, 417.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75831_BALBc-1_X01_Y01_692_998\", \"ini\": 2559, \"clust\": 1979, \"rank\": 2169, \"rankvar\": 1897, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 267, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1704, \"cat-2\": \"Density: 23\", \"cat_2_index\": 375, \"group\": [1980.0, 1121.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76190_BALBc-1_X01_Y01_697_768\", \"ini\": 2558, \"clust\": 595, \"rank\": 604, \"rankvar\": 745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 268, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 749, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1469, \"group\": [596.0, 407.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76418_BALBc-1_X01_Y01_7_625\", \"ini\": 2557, \"clust\": 1241, \"rank\": 2081, \"rankvar\": 2406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 269, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2227, \"cat-2\": \"Density: 10\", \"cat_2_index\": 3, \"group\": [1240.0, 623.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77472_BALBc-1_X01_Y01_711_676\", \"ini\": 2556, \"clust\": 1175, \"rank\": 1414, \"rankvar\": 2053, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 270, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 990, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2045, \"group\": [1174.0, 568.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77475_BALBc-1_X01_Y01_711_742\", \"ini\": 2555, \"clust\": 1171, \"rank\": 361, \"rankvar\": 874, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 271, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 991, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1725, \"group\": [1171.0, 566.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77792_BALBc-1_X01_Y01_715_768\", \"ini\": 2554, \"clust\": 1243, \"rank\": 1570, \"rankvar\": 1757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 272, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1705, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1612, \"group\": [1244.0, 625.0, 179.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78451_BALBc-1_X01_Y01_722_839\", \"ini\": 2553, \"clust\": 1347, \"rank\": 1230, \"rankvar\": 1724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 273, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2395, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1613, \"group\": [1348.0, 710.0, 211.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78461_BALBc-1_X01_Y01_722_950\", \"ini\": 2552, \"clust\": 185, \"rank\": 1273, \"rankvar\": 2680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 274, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1706, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1188, \"group\": [186.0, 122.0, 40.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78468_BALBc-1_X01_Y01_723_131\", \"ini\": 2551, \"clust\": 1546, \"rank\": 879, \"rankvar\": 2210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 275, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1826, \"cat-2\": \"Density: 21\", \"cat_2_index\": 193, \"group\": [1545.0, 837.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78787_BALBc-1_X01_Y01_727_496\", \"ini\": 2550, \"clust\": 1653, \"rank\": 2791, \"rankvar\": 2799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 276, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1707, \"cat-2\": \"Density: 27\", \"cat_2_index\": 885, \"group\": [1656.0, 914.0, 265.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78978_BALBc-1_X01_Y01_729_920\", \"ini\": 2549, \"clust\": 217, \"rank\": 658, \"rankvar\": 1555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 277, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1604, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1614, \"group\": [217.0, 149.0, 52.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79106_BALBc-1_X01_Y01_730_753\", \"ini\": 2548, \"clust\": 2457, \"rank\": 998, \"rankvar\": 665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 278, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1605, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1615, \"group\": [2459.0, 1308.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79197_BALBc-1_X01_Y01_731_852\", \"ini\": 2547, \"clust\": 1310, \"rank\": 1348, \"rankvar\": 2138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 279, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 750, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1934, \"group\": [1311.0, 679.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79228_BALBc-1_X01_Y01_732_264\", \"ini\": 2546, \"clust\": 320, \"rank\": 1459, \"rankvar\": 2206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 280, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1827, \"cat-2\": \"Density: 16\", \"cat_2_index\": 50, \"group\": [318.0, 222.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79377_BALBc-1_X01_Y01_733_981\", \"ini\": 2545, \"clust\": 183, \"rank\": 1396, \"rankvar\": 2333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 281, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 992, \"cat-2\": \"Density: 27\", \"cat_2_index\": 886, \"group\": [184.0, 121.0, 40.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79939_BALBc-1_X01_Y01_740_1001\", \"ini\": 2544, \"clust\": 1603, \"rank\": 1739, \"rankvar\": 1467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 282, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 993, \"cat-2\": \"Density: 25\", \"cat_2_index\": 607, \"group\": [1604.0, 886.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80506_BALBc-1_X01_Y01_747_927\", \"ini\": 2543, \"clust\": 1530, \"rank\": 2577, \"rankvar\": 2314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 283, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1828, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1038, \"group\": [1530.0, 827.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80525_BALBc-1_X01_Y01_748_234\", \"ini\": 2542, \"clust\": 1517, \"rank\": 2241, \"rankvar\": 2532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 284, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1829, \"cat-2\": \"Density: 19\", \"cat_2_index\": 114, \"group\": [1520.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80830_BALBc-1_X01_Y01_750_807\", \"ini\": 2541, \"clust\": 1252, \"rank\": 1909, \"rankvar\": 2631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 285, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1708, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1189, \"group\": [1251.0, 632.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80965_BALBc-1_X01_Y01_752_728\", \"ini\": 2540, \"clust\": 1408, \"rank\": 1813, \"rankvar\": 1944, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 286, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 994, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1616, \"group\": [1408.0, 758.0, 224.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81569_BALBc-1_X01_Y01_76_36\", \"ini\": 2539, \"clust\": 696, \"rank\": 353, \"rankvar\": 1297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 287, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1830, \"cat-2\": \"Density: 8\", \"cat_2_index\": 0, \"group\": [713.0, 457.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82103_BALBc-1_X01_Y01_766_541\", \"ini\": 2538, \"clust\": 1422, \"rank\": 2422, \"rankvar\": 2690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 288, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1831, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1190, \"group\": [1422.0, 768.0, 228.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82283_BALBc-1_X01_Y01_768_747\", \"ini\": 2537, \"clust\": 777, \"rank\": 275, \"rankvar\": 311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 289, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1606, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1343, \"group\": [780.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82292_BALBc-1_X01_Y01_768_860\", \"ini\": 2536, \"clust\": 1279, \"rank\": 1874, \"rankvar\": 2296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 290, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 751, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1726, \"group\": [1287.0, 658.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82501_BALBc-1_X01_Y01_770_672\", \"ini\": 2535, \"clust\": 840, \"rank\": 78, \"rankvar\": 419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 291, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1832, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1617, \"group\": [841.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82814_BALBc-1_X01_Y01_774_701\", \"ini\": 2534, \"clust\": 1505, \"rank\": 2572, \"rankvar\": 2617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 292, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1833, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1039, \"group\": [1506.0, 815.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83141_BALBc-1_X01_Y01_778_865\", \"ini\": 2533, \"clust\": 289, \"rank\": 2072, \"rankvar\": 2739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 293, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 752, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1935, \"group\": [289.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83368_BALBc-1_X01_Y01_780_829\", \"ini\": 2532, \"clust\": 2750, \"rank\": 1406, \"rankvar\": 1533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 294, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2228, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1727, \"group\": [2749.0, 1484.0, 440.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83575_BALBc-1_X01_Y01_783_772\", \"ini\": 2531, \"clust\": 317, \"rank\": 1815, \"rankvar\": 2023, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 295, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1834, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1344, \"group\": [327.0, 228.0, 79.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83783_BALBc-1_X01_Y01_786_42\", \"ini\": 2530, \"clust\": 1149, \"rank\": 1048, \"rankvar\": 168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 296, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1835, \"cat-2\": \"Density: 11\", \"cat_2_index\": 5, \"group\": [1148.0, 548.0, 151.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84106_BALBc-1_X01_Y01_79_467\", \"ini\": 2529, \"clust\": 1101, \"rank\": 32, \"rankvar\": 455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 297, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2396, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1040, \"group\": [1099.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84546_BALBc-1_X01_Y01_794_913\", \"ini\": 2528, \"clust\": 1323, \"rank\": 1102, \"rankvar\": 1900, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 298, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1836, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1470, \"group\": [1323.0, 691.0, 206.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84882_BALBc-1_X01_Y01_798_898\", \"ini\": 2527, \"clust\": 1224, \"rank\": 2184, \"rankvar\": 2120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 299, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 753, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2046, \"group\": [1230.0, 619.0, 177.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84899_BALBc-1_X01_Y01_799_204\", \"ini\": 2526, \"clust\": 808, \"rank\": 176, \"rankvar\": 355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 300, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1837, \"cat-2\": \"Density: 21\", \"cat_2_index\": 194, \"group\": [810.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85632_BALBc-1_X01_Y01_806_632\", \"ini\": 2525, \"clust\": 394, \"rank\": 799, \"rankvar\": 2176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 301, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1709, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1191, \"group\": [396.0, 277.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85720_BALBc-1_X01_Y01_807_805\", \"ini\": 2524, \"clust\": 909, \"rank\": 58, \"rankvar\": 965, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 302, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2229, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1728, \"group\": [910.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85870_BALBc-1_X01_Y01_809_965\", \"ini\": 2523, \"clust\": 973, \"rank\": 549, \"rankvar\": 959, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 303, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2397, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1729, \"group\": [973.0, 499.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86589_BALBc-1_X01_Y01_818_406\", \"ini\": 2522, \"clust\": 1773, \"rank\": 1821, \"rankvar\": 2732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 304, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1710, \"cat-2\": \"Density: 25\", \"cat_2_index\": 608, \"group\": [1772.0, 1005.0, 303.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86924_BALBc-1_X01_Y01_821_936\", \"ini\": 2521, \"clust\": 1244, \"rank\": 1159, \"rankvar\": 2302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 305, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 754, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1835, \"group\": [1245.0, 626.0, 179.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87345_BALBc-1_X01_Y01_827_373\", \"ini\": 2520, \"clust\": 1745, \"rank\": 1625, \"rankvar\": 1458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 306, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1711, \"cat-2\": \"Density: 25\", \"cat_2_index\": 609, \"group\": [1744.0, 986.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87649_BALBc-1_X01_Y01_830_295\", \"ini\": 2519, \"clust\": 176, \"rank\": 259, \"rankvar\": 1586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 307, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1838, \"cat-2\": \"Density: 22\", \"cat_2_index\": 261, \"group\": [176.0, 114.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87664_BALBc-1_X01_Y01_830_425\", \"ini\": 2518, \"clust\": 1037, \"rank\": 241, \"rankvar\": 974, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 308, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2398, \"cat-2\": \"Density: 27\", \"cat_2_index\": 887, \"group\": [1037.0, 521.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88044_BALBc-1_X01_Y01_835_742\", \"ini\": 2517, \"clust\": 1452, \"rank\": 1777, \"rankvar\": 1518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 309, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1839, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1041, \"group\": [1452.0, 790.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88079_BALBc-1_X01_Y01_836_344\", \"ini\": 2516, \"clust\": 1577, \"rank\": 1156, \"rankvar\": 1301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 310, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1536, \"cat-2\": \"Density: 25\", \"cat_2_index\": 610, \"group\": [1579.0, 865.0, 253.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88188_BALBc-1_X01_Y01_837_652\", \"ini\": 2515, \"clust\": 401, \"rank\": 492, \"rankvar\": 1398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 311, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 995, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1192, \"group\": [403.0, 281.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88270_BALBc-1_X01_Y01_838_807\", \"ini\": 2514, \"clust\": 1146, \"rank\": 1259, \"rankvar\": 1425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 312, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1712, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1730, \"group\": [1146.0, 546.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88505_BALBc-1_X01_Y01_840_865\", \"ini\": 2513, \"clust\": 1444, \"rank\": 2749, \"rankvar\": 2782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 313, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 755, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1936, \"group\": [1443.0, 784.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88518_BALBc-1_X01_Y01_840_980\", \"ini\": 2512, \"clust\": 756, \"rank\": 83, \"rankvar\": 758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 314, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 996, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1471, \"group\": [758.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88712_BALBc-1_X01_Y01_843_668\", \"ini\": 2511, \"clust\": 1598, \"rank\": 1080, \"rankvar\": 1160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 315, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1840, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1042, \"group\": [1599.0, 881.0, 257.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89100_BALBc-1_X01_Y01_848_541\", \"ini\": 2510, \"clust\": 1898, \"rank\": 2599, \"rankvar\": 2625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 316, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1841, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1193, \"group\": [1900.0, 1088.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90045_BALBc-1_X01_Y01_859_822\", \"ini\": 2509, \"clust\": 2751, \"rank\": 1765, \"rankvar\": 832, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 317, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1713, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1618, \"group\": [2755.0, 1489.0, 442.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90185_BALBc-1_X01_Y01_860_626\", \"ini\": 2508, \"clust\": 1127, \"rank\": 1373, \"rankvar\": 1717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 318, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1842, \"cat-2\": \"Density: 27\", \"cat_2_index\": 888, \"group\": [1128.0, 530.0, 144.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90284_BALBc-1_X01_Y01_861_874\", \"ini\": 2507, \"clust\": 232, \"rank\": 1475, \"rankvar\": 1343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 319, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 997, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2047, \"group\": [231.0, 161.0, 57.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90366_BALBc-1_X01_Y01_863_139\", \"ini\": 2506, \"clust\": 904, \"rank\": 40, \"rankvar\": 9, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 320, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2399, \"cat-2\": \"Density: 22\", \"cat_2_index\": 262, \"group\": [905.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91015_BALBc-1_X01_Y01_870_358\", \"ini\": 2505, \"clust\": 304, \"rank\": 1378, \"rankvar\": 2541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 321, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1537, \"cat-2\": \"Density: 24\", \"cat_2_index\": 475, \"group\": [309.0, 217.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91213_BALBc-1_X01_Y01_872_895\", \"ini\": 2504, \"clust\": 713, \"rank\": 861, \"rankvar\": 602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 322, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 998, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1937, \"group\": [716.0, 459.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91215_BALBc-1_X01_Y01_872_930\", \"ini\": 2503, \"clust\": 2475, \"rank\": 1409, \"rankvar\": 1130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 323, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 999, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1472, \"group\": [2475.0, 1323.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91352_BALBc-1_X01_Y01_874_726\", \"ini\": 2502, \"clust\": 1487, \"rank\": 2387, \"rankvar\": 2436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 324, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1000, \"cat-2\": \"Density: 26\", \"cat_2_index\": 736, \"group\": [1486.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91645_BALBc-1_X01_Y01_878_559\", \"ini\": 2501, \"clust\": 2406, \"rank\": 1243, \"rankvar\": 1361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 325, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1843, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1194, \"group\": [2409.0, 1279.0, 382.0, 104.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91823_BALBc-1_X01_Y01_88_805\", \"ini\": 2500, \"clust\": 1511, \"rank\": 2297, \"rankvar\": 2126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 326, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2400, \"cat-2\": \"Density: 23\", \"cat_2_index\": 376, \"group\": [1510.0, 818.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92363_BALBc-1_X01_Y01_887_395\", \"ini\": 2499, \"clust\": 1562, \"rank\": 689, \"rankvar\": 323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 327, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1844, \"cat-2\": \"Density: 25\", \"cat_2_index\": 611, \"group\": [1565.0, 854.0, 249.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92765_BALBc-1_X01_Y01_891_617\", \"ini\": 2498, \"clust\": 1223, \"rank\": 1347, \"rankvar\": 2489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 328, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2401, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1473, \"group\": [1222.0, 612.0, 174.0, 48.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93018_BALBc-1_X01_Y01_894_905\", \"ini\": 2497, \"clust\": 566, \"rank\": 691, \"rankvar\": 1614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 329, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1001, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1474, \"group\": [566.0, 389.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93161_BALBc-1_X01_Y01_896_937\", \"ini\": 2496, \"clust\": 2780, \"rank\": 2532, \"rankvar\": 2234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 330, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1002, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1731, \"group\": [2783.0, 1506.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94070_BALBc-1_X01_Y01_907_486\", \"ini\": 2495, \"clust\": 2556, \"rank\": 2149, \"rankvar\": 2181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 331, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 756, \"cat-2\": \"Density: 27\", \"cat_2_index\": 889, \"group\": [2555.0, 1378.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94547_BALBc-1_X01_Y01_912_926\", \"ini\": 2494, \"clust\": 2742, \"rank\": 1518, \"rankvar\": 2066, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 332, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1845, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1619, \"group\": [2745.0, 1480.0, 437.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94695_BALBc-1_X01_Y01_914_981\", \"ini\": 2493, \"clust\": 1280, \"rank\": 1629, \"rankvar\": 1828, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 333, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1846, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1732, \"group\": [1283.0, 655.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94725_BALBc-1_X01_Y01_915_472\", \"ini\": 2492, \"clust\": 331, \"rank\": 873, \"rankvar\": 1967, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 334, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1847, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1043, \"group\": [330.0, 231.0, 82.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94799_BALBc-1_X01_Y01_916_387\", \"ini\": 2491, \"clust\": 1491, \"rank\": 2550, \"rankvar\": 2397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 335, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 666, \"cat-2\": \"Density: 25\", \"cat_2_index\": 612, \"group\": [1496.0, 807.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94985_BALBc-1_X01_Y01_918_863\", \"ini\": 2490, \"clust\": 2757, \"rank\": 1620, \"rankvar\": 1420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 336, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 667, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1345, \"group\": [2756.0, 1490.0, 443.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95149_BALBc-1_X01_Y01_92_950\", \"ini\": 2489, \"clust\": 1519, \"rank\": 2607, \"rankvar\": 2711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 337, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1848, \"cat-2\": \"Density: 18\", \"cat_2_index\": 89, \"group\": [1517.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95350_BALBc-1_X01_Y01_922_525\", \"ini\": 2488, \"clust\": 1742, \"rank\": 2097, \"rankvar\": 1933, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 338, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2502, \"cat-2\": \"Density: 27\", \"cat_2_index\": 890, \"group\": [1743.0, 985.0, 296.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95627_BALBc-1_X01_Y01_925_921\", \"ini\": 2487, \"clust\": 1398, \"rank\": 1780, \"rankvar\": 2383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 339, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 668, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1044, \"group\": [1396.0, 747.0, 219.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96058_BALBc-1_X01_Y01_930_613\", \"ini\": 2486, \"clust\": 1578, \"rank\": 1584, \"rankvar\": 2009, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 340, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2402, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1045, \"group\": [1577.0, 863.0, 253.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96292_BALBc-1_X01_Y01_933_666\", \"ini\": 2485, \"clust\": 1579, \"rank\": 1692, \"rankvar\": 2209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 341, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2403, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1346, \"group\": [1578.0, 864.0, 253.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96547_BALBc-1_X01_Y01_937_170\", \"ini\": 2484, \"clust\": 346, \"rank\": 744, \"rankvar\": 1151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 342, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1849, \"cat-2\": \"Density: 19\", \"cat_2_index\": 115, \"group\": [345.0, 241.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96665_BALBc-1_X01_Y01_938_963\", \"ini\": 2483, \"clust\": 227, \"rank\": 1032, \"rankvar\": 1551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 343, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1850, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1836, \"group\": [226.0, 157.0, 55.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96745_BALBc-1_X01_Y01_939_916\", \"ini\": 2482, \"clust\": 2754, \"rank\": 1465, \"rankvar\": 985, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 344, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 669, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1475, \"group\": [2753.0, 1487.0, 441.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96964_BALBc-1_X01_Y01_941_78\", \"ini\": 2481, \"clust\": 1510, \"rank\": 2703, \"rankvar\": 2792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 345, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1851, \"cat-2\": \"Density: 17\", \"cat_2_index\": 70, \"group\": [1521.0, 820.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98233_BALBc-1_X01_Y01_957_431\", \"ini\": 2480, \"clust\": 1512, \"rank\": 2473, \"rankvar\": 2458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 346, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1852, \"cat-2\": \"Density: 23\", \"cat_2_index\": 377, \"group\": [1511.0, 818.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98244_BALBc-1_X01_Y01_957_547\", \"ini\": 2479, \"clust\": 706, \"rank\": 72, \"rankvar\": 1568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 347, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1003, \"cat-2\": \"Density: 25\", \"cat_2_index\": 613, \"group\": [704.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98423_BALBc-1_X01_Y01_96_276\", \"ini\": 2478, \"clust\": 281, \"rank\": 1399, \"rankvar\": 2459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 348, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 757, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1347, \"group\": [281.0, 203.0, 74.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98533_BALBc-1_X01_Y01_960_606\", \"ini\": 2477, \"clust\": 596, \"rank\": 392, \"rankvar\": 523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 349, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1853, \"cat-2\": \"Density: 27\", \"cat_2_index\": 891, \"group\": [597.0, 408.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98687_BALBc-1_X01_Y01_962_516\", \"ini\": 2476, \"clust\": 1624, \"rank\": 1532, \"rankvar\": 2338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 350, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1004, \"cat-2\": \"Density: 25\", \"cat_2_index\": 614, \"group\": [1625.0, 893.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98848_BALBc-1_X01_Y01_964_670\", \"ini\": 2475, \"clust\": 1436, \"rank\": 2083, \"rankvar\": 1428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 351, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1005, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1046, \"group\": [1447.0, 786.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98850_BALBc-1_X01_Y01_964_694\", \"ini\": 2474, \"clust\": 177, \"rank\": 204, \"rankvar\": 1352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 352, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1854, \"cat-2\": \"Density: 26\", \"cat_2_index\": 737, \"group\": [177.0, 114.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99057_BALBc-1_X01_Y01_967_479\", \"ini\": 2473, \"clust\": 1529, \"rank\": 2397, \"rankvar\": 2431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 353, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1855, \"cat-2\": \"Density: 23\", \"cat_2_index\": 378, \"group\": [1532.0, 828.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99105_BALBc-1_X01_Y01_967_965\", \"ini\": 2472, \"clust\": 1538, \"rank\": 2288, \"rankvar\": 1935, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 354, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 670, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1476, \"group\": [1538.0, 833.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99401_BALBc-1_X01_Y01_970_988\", \"ini\": 2471, \"clust\": 1413, \"rank\": 2124, \"rankvar\": 2361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 355, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 671, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1477, \"group\": [1415.0, 763.0, 226.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99809_BALBc-1_X01_Y01_976_311\", \"ini\": 2470, \"clust\": 1583, \"rank\": 1366, \"rankvar\": 2262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 356, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2404, \"cat-2\": \"Density: 24\", \"cat_2_index\": 476, \"group\": [1583.0, 868.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100228_BALBc-1_X01_Y01_980_928\", \"ini\": 2469, \"clust\": 155, \"rank\": 708, \"rankvar\": 1367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 357, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 893, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1047, \"group\": [156.0, 98.0, 32.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100256_BALBc-1_X01_Y01_981_360\", \"ini\": 2468, \"clust\": 369, \"rank\": 473, \"rankvar\": 795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 358, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 672, \"cat-2\": \"Density: 25\", \"cat_2_index\": 615, \"group\": [371.0, 257.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100547_BALBc-1_X01_Y01_985_432\", \"ini\": 2467, \"clust\": 1595, \"rank\": 1453, \"rankvar\": 825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 359, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1856, \"cat-2\": \"Density: 22\", \"cat_2_index\": 263, \"group\": [1596.0, 879.0, 257.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100572_BALBc-1_X01_Y01_985_76\", \"ini\": 2466, \"clust\": 1649, \"rank\": 2493, \"rankvar\": 2284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 360, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2266, \"cat-2\": \"Density: 18\", \"cat_2_index\": 90, \"group\": [1650.0, 910.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101105_BALBc-1_X01_Y01_991_734\", \"ini\": 2465, \"clust\": 1371, \"rank\": 2291, \"rankvar\": 1906, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 361, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1857, \"cat-2\": \"Density: 25\", \"cat_2_index\": 616, \"group\": [1370.0, 729.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101341_BALBc-1_X01_Y01_994_653\", \"ini\": 2464, \"clust\": 821, \"rank\": 88, \"rankvar\": 55, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 362, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1006, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1048, \"group\": [820.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101367_BALBc-1_X01_Y01_994_943\", \"ini\": 2463, \"clust\": 1540, \"rank\": 2330, \"rankvar\": 1794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 363, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 673, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1049, \"group\": [1540.0, 834.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-727_BALBc-1_X02_Y01_100_250\", \"ini\": 2462, \"clust\": 707, \"rank\": 429, \"rankvar\": 1286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 364, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1858, \"cat-2\": \"Density: 26\", \"cat_2_index\": 738, \"group\": [706.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-920_BALBc-1_X02_Y01_1001_805\", \"ini\": 2461, \"clust\": 175, \"rank\": 819, \"rankvar\": 1003, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 365, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1714, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1478, \"group\": [178.0, 115.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1117_BALBc-1_X02_Y01_1004_49\", \"ini\": 2460, \"clust\": 1559, \"rank\": 1105, \"rankvar\": 1959, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 366, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1007, \"cat-2\": \"Density: 21\", \"cat_2_index\": 195, \"group\": [1560.0, 849.0, 248.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1309_BALBc-1_X02_Y01_1006_988\", \"ini\": 2459, \"clust\": 1660, \"rank\": 1929, \"rankvar\": 2476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 367, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1008, \"cat-2\": \"Density: 25\", \"cat_2_index\": 617, \"group\": [1659.0, 917.0, 267.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1701_BALBc-1_X02_Y01_1010_833\", \"ini\": 2458, \"clust\": 1428, \"rank\": 1675, \"rankvar\": 870, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 368, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1859, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1348, \"group\": [1426.0, 772.0, 230.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1932_BALBc-1_X02_Y01_1013_860\", \"ini\": 2457, \"clust\": 1524, \"rank\": 1404, \"rankvar\": 2218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 369, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 758, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1479, \"group\": [1524.0, 823.0, 240.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1955_BALBc-1_X02_Y01_1014_248\", \"ini\": 2456, \"clust\": 1390, \"rank\": 2636, \"rankvar\": 2191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 370, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1860, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1620, \"group\": [1389.0, 740.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2025_BALBc-1_X02_Y01_1015_159\", \"ini\": 2455, \"clust\": 2265, \"rank\": 1286, \"rankvar\": 1379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 371, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1861, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1480, \"group\": [2263.0, 1236.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2212_BALBc-1_X02_Y01_1017_633\", \"ini\": 2454, \"clust\": 248, \"rank\": 919, \"rankvar\": 1308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 372, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2405, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1050, \"group\": [250.0, 173.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2698_BALBc-1_X02_Y01_1022_99\", \"ini\": 2453, \"clust\": 377, \"rank\": 417, \"rankvar\": 1877, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 373, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1862, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1051, \"group\": [376.0, 262.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2934_BALBc-1_X02_Y01_1025_811\", \"ini\": 2452, \"clust\": 1368, \"rank\": 2142, \"rankvar\": 1797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 374, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1715, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1938, \"group\": [1372.0, 729.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2976_BALBc-1_X02_Y01_1026_488\", \"ini\": 2451, \"clust\": 2254, \"rank\": 1680, \"rankvar\": 808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 375, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1863, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1481, \"group\": [2257.0, 1233.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3352_BALBc-1_X02_Y01_103_900\", \"ini\": 2450, \"clust\": 1640, \"rank\": 1901, \"rankvar\": 2627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 376, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2477, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1621, \"group\": [1647.0, 907.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3627_BALBc-1_X02_Y01_1033_729\", \"ini\": 2449, \"clust\": 1040, \"rank\": 336, \"rankvar\": 826, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 377, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2807, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1349, \"group\": [1040.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3919_BALBc-1_X02_Y01_1037_288\", \"ini\": 2448, \"clust\": 1416, \"rank\": 2104, \"rankvar\": 1806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 378, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 674, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2048, \"group\": [1417.0, 765.0, 227.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4041_BALBc-1_X02_Y01_1038_754\", \"ini\": 2447, \"clust\": 1213, \"rank\": 1014, \"rankvar\": 1370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 379, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1009, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1350, \"group\": [1214.0, 607.0, 172.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4239_BALBc-1_X02_Y01_1040_415\", \"ini\": 2446, \"clust\": 710, \"rank\": 347, \"rankvar\": 1907, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 380, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1864, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1052, \"group\": [711.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4540_BALBc-1_X02_Y01_1044_183\", \"ini\": 2445, \"clust\": 93, \"rank\": 249, \"rankvar\": 2634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 381, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1010, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1733, \"group\": [94.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4583_BALBc-1_X02_Y01_1044_66\", \"ini\": 2444, \"clust\": 1471, \"rank\": 2335, \"rankvar\": 2626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 382, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1538, \"cat-2\": \"Density: 24\", \"cat_2_index\": 477, \"group\": [1472.0, 802.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4708_BALBc-1_X02_Y01_1046_353\", \"ini\": 2443, \"clust\": 818, \"rank\": 217, \"rankvar\": 92, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 383, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 675, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1351, \"group\": [822.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4717_BALBc-1_X02_Y01_1046_503\", \"ini\": 2442, \"clust\": 1357, \"rank\": 2038, \"rankvar\": 2136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 384, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2808, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1482, \"group\": [1358.0, 719.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4778_BALBc-1_X02_Y01_1047_250\", \"ini\": 2441, \"clust\": 1890, \"rank\": 2008, \"rankvar\": 2543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 385, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1865, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1837, \"group\": [1890.0, 1080.0, 330.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4973_BALBc-1_X02_Y01_1049_643\", \"ini\": 2440, \"clust\": 824, \"rank\": 39, \"rankvar\": 393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 386, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 759, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1483, \"group\": [825.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5021_BALBc-1_X02_Y01_105_184\", \"ini\": 2439, \"clust\": 569, \"rank\": 568, \"rankvar\": 1126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 387, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2406, \"cat-2\": \"Density: 21\", \"cat_2_index\": 196, \"group\": [569.0, 389.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5131_BALBc-1_X02_Y01_1050_723\", \"ini\": 2438, \"clust\": 1641, \"rank\": 2212, \"rankvar\": 2727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 388, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1866, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1734, \"group\": [1640.0, 904.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5233_BALBc-1_X02_Y01_1052_226\", \"ini\": 2437, \"clust\": 770, \"rank\": 27, \"rankvar\": 1303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 389, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1011, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2049, \"group\": [769.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5349_BALBc-1_X02_Y01_1053_839\", \"ini\": 2436, \"clust\": 1877, \"rank\": 1740, \"rankvar\": 1761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 390, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1867, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2050, \"group\": [1879.0, 1069.0, 324.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5616_BALBc-1_X02_Y01_1056_980\", \"ini\": 2435, \"clust\": 507, \"rank\": 634, \"rankvar\": 404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 391, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1012, \"cat-2\": \"Density: 27\", \"cat_2_index\": 892, \"group\": [508.0, 348.0, 118.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5712_BALBc-1_X02_Y01_1058_349\", \"ini\": 2434, \"clust\": 1381, \"rank\": 1638, \"rankvar\": 1567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 392, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 676, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1352, \"group\": [1382.0, 734.0, 216.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5723_BALBc-1_X02_Y01_1058_507\", \"ini\": 2433, \"clust\": 2743, \"rank\": 1346, \"rankvar\": 2579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 393, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2809, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1622, \"group\": [2743.0, 1478.0, 437.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6217_BALBc-1_X02_Y01_1063_382\", \"ini\": 2432, \"clust\": 230, \"rank\": 1688, \"rankvar\": 1865, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 394, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1013, \"cat-2\": \"Density: 27\", \"cat_2_index\": 893, \"group\": [234.0, 163.0, 57.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6529_BALBc-1_X02_Y01_1067_754\", \"ini\": 2431, \"clust\": 535, \"rank\": 402, \"rankvar\": 975, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 395, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1868, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1623, \"group\": [536.0, 367.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6591_BALBc-1_X02_Y01_1068_473\", \"ini\": 2430, \"clust\": 1307, \"rank\": 1452, \"rankvar\": 2645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 396, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1869, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1195, \"group\": [1307.0, 678.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6633_BALBc-1_X02_Y01_1068_843\", \"ini\": 2429, \"clust\": 1096, \"rank\": 76, \"rankvar\": 654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 397, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1870, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1939, \"group\": [1098.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7022_BALBc-1_X02_Y01_1072_571\", \"ini\": 2428, \"clust\": 1362, \"rank\": 2393, \"rankvar\": 2109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 398, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 760, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1838, \"group\": [1363.0, 724.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7059_BALBc-1_X02_Y01_1072_960\", \"ini\": 2427, \"clust\": 1531, \"rank\": 2285, \"rankvar\": 2221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 399, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1871, \"cat-2\": \"Density: 25\", \"cat_2_index\": 618, \"group\": [1531.0, 827.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7262_BALBc-1_X02_Y01_1075_334\", \"ini\": 2426, \"clust\": 218, \"rank\": 1120, \"rankvar\": 1359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 400, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2267, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1735, \"group\": [224.0, 156.0, 54.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7803_BALBc-1_X02_Y01_1081_510\", \"ini\": 2425, \"clust\": 1417, \"rank\": 1649, \"rankvar\": 1538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 401, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1576, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1053, \"group\": [1418.0, 765.0, 227.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8504_BALBc-1_X02_Y01_109_960\", \"ini\": 2424, \"clust\": 2752, \"rank\": 1941, \"rankvar\": 1963, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 402, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1014, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2051, \"group\": [2754.0, 1488.0, 441.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8575_BALBc-1_X02_Y01_1090_708\", \"ini\": 2423, \"clust\": 607, \"rank\": 419, \"rankvar\": 561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 403, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1872, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1736, \"group\": [610.0, 413.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8689_BALBc-1_X02_Y01_1092_353\", \"ini\": 2422, \"clust\": 1386, \"rank\": 2205, \"rankvar\": 1635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 404, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1873, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1484, \"group\": [1387.0, 738.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9108_BALBc-1_X02_Y01_1097_627\", \"ini\": 2421, \"clust\": 243, \"rank\": 988, \"rankvar\": 2124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 405, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1015, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1940, \"group\": [243.0, 170.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9139_BALBc-1_X02_Y01_1098_191\", \"ini\": 2420, \"clust\": 1339, \"rank\": 1143, \"rankvar\": 1339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 406, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1874, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1941, \"group\": [1340.0, 704.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9234_BALBc-1_X02_Y01_1099_456\", \"ini\": 2419, \"clust\": 80, \"rank\": 536, \"rankvar\": 1081, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 407, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1016, \"cat-2\": \"Density: 27\", \"cat_2_index\": 894, \"group\": [83.0, 62.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9814_BALBc-1_X02_Y01_1104_657\", \"ini\": 2418, \"clust\": 2478, \"rank\": 1536, \"rankvar\": 2282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 408, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1607, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1839, \"group\": [2476.0, 1324.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9841_BALBc-1_X02_Y01_1104_956\", \"ini\": 2417, \"clust\": 779, \"rank\": 225, \"rankvar\": 170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 409, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1875, \"cat-2\": \"Density: 25\", \"cat_2_index\": 619, \"group\": [777.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9888_BALBc-1_X02_Y01_1105_530\", \"ini\": 2416, \"clust\": 1678, \"rank\": 2402, \"rankvar\": 2681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 410, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1577, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1353, \"group\": [1678.0, 935.0, 276.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9992_BALBc-1_X02_Y01_1106_822\", \"ini\": 2415, \"clust\": 47, \"rank\": 677, \"rankvar\": 1408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 411, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1876, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1840, \"group\": [50.0, 41.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10019_BALBc-1_X02_Y01_1107_235\", \"ini\": 2414, \"clust\": 1589, \"rank\": 1665, \"rankvar\": 1987, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 412, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2478, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1942, \"group\": [1589.0, 872.0, 255.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10132_BALBc-1_X02_Y01_1108_495\", \"ini\": 2413, \"clust\": 1366, \"rank\": 2230, \"rankvar\": 2095, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 413, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2407, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1354, \"group\": [1367.0, 728.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10374_BALBc-1_X02_Y01_1110_694\", \"ini\": 2412, \"clust\": 2479, \"rank\": 1474, \"rankvar\": 1376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 414, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1539, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2140, \"group\": [2477.0, 1324.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10576_BALBc-1_X02_Y01_1113_426\", \"ini\": 2411, \"clust\": 1493, \"rank\": 2678, \"rankvar\": 2303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 415, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1017, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1355, \"group\": [1492.0, 805.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10601_BALBc-1_X02_Y01_1113_726\", \"ini\": 2410, \"clust\": 759, \"rank\": 438, \"rankvar\": 20, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 416, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 761, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1737, \"group\": [762.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10688_BALBc-1_X02_Y01_1114_902\", \"ini\": 2409, \"clust\": 2396, \"rank\": 2814, \"rankvar\": 2745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 417, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1877, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1624, \"group\": [2394.0, 1268.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10939_BALBc-1_X02_Y01_1118_266\", \"ini\": 2408, \"clust\": 1102, \"rank\": 65, \"rankvar\": 194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 418, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1878, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1943, \"group\": [1100.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10988_BALBc-1_X02_Y01_1118_830\", \"ini\": 2407, \"clust\": 1025, \"rank\": 200, \"rankvar\": 276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 419, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 762, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1738, \"group\": [1032.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11337_BALBc-1_X02_Y01_1122_571\", \"ini\": 2406, \"clust\": 391, \"rank\": 1092, \"rankvar\": 371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 420, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1018, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1841, \"group\": [391.0, 273.0, 93.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11413_BALBc-1_X02_Y01_1123_613\", \"ini\": 2405, \"clust\": 1360, \"rank\": 1772, \"rankvar\": 1320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 421, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1019, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2141, \"group\": [1360.0, 721.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11498_BALBc-1_X02_Y01_1124_538\", \"ini\": 2404, \"clust\": 2476, \"rank\": 1400, \"rankvar\": 723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 422, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2268, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1739, \"group\": [2479.0, 1326.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11656_BALBc-1_X02_Y01_1126_662\", \"ini\": 2403, \"clust\": 302, \"rank\": 591, \"rankvar\": 2344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 423, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1540, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2297, \"group\": [299.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11767_BALBc-1_X02_Y01_1128_191\", \"ini\": 2402, \"clust\": 103, \"rank\": 610, \"rankvar\": 1759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 424, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 763, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1740, \"group\": [108.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11839_BALBc-1_X02_Y01_1129_238\", \"ini\": 2401, \"clust\": 987, \"rank\": 186, \"rankvar\": 1269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 425, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2479, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1944, \"group\": [988.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12133_BALBc-1_X02_Y01_1132_128\", \"ini\": 2400, \"clust\": 947, \"rank\": 260, \"rankvar\": 411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 426, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 764, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1625, \"group\": [948.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12185_BALBc-1_X02_Y01_1132_650\", \"ini\": 2399, \"clust\": 1980, \"rank\": 2275, \"rankvar\": 1411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 427, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 765, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1842, \"group\": [1981.0, 1122.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12327_BALBc-1_X02_Y01_1134_751\", \"ini\": 2398, \"clust\": 1448, \"rank\": 2476, \"rankvar\": 1487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 428, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 766, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1945, \"group\": [1450.0, 788.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12702_BALBc-1_X02_Y01_1139_494\", \"ini\": 2397, \"clust\": 1373, \"rank\": 2736, \"rankvar\": 2528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 429, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2269, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1485, \"group\": [1374.0, 730.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12872_BALBc-1_X02_Y01_1140_895\", \"ini\": 2396, \"clust\": 1322, \"rank\": 1307, \"rankvar\": 1328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 430, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1879, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1196, \"group\": [1325.0, 692.0, 206.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13105_BALBc-1_X02_Y01_1143_686\", \"ini\": 2395, \"clust\": 1399, \"rank\": 1511, \"rankvar\": 1565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 431, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 767, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1626, \"group\": [1397.0, 747.0, 219.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13323_BALBc-1_X02_Y01_1146_697\", \"ini\": 2394, \"clust\": 2299, \"rank\": 1767, \"rankvar\": 1615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 432, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 768, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2052, \"group\": [2296.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13387_BALBc-1_X02_Y01_1147_623\", \"ini\": 2393, \"clust\": 245, \"rank\": 749, \"rankvar\": 1992, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 433, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1020, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2053, \"group\": [246.0, 171.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13636_BALBc-1_X02_Y01_115_870\", \"ini\": 2392, \"clust\": 53, \"rank\": 760, \"rankvar\": 1018, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 434, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 677, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1486, \"group\": [51.0, 42.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13712_BALBc-1_X02_Y01_1150_829\", \"ini\": 2391, \"clust\": 184, \"rank\": 1333, \"rankvar\": 1040, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 435, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 769, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1356, \"group\": [185.0, 121.0, 40.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13747_BALBc-1_X02_Y01_1151_270\", \"ini\": 2390, \"clust\": 870, \"rank\": 3, \"rankvar\": 376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 436, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2408, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2054, \"group\": [868.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13791_BALBc-1_X02_Y01_1151_786\", \"ini\": 2389, \"clust\": 2261, \"rank\": 1330, \"rankvar\": 1119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 437, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1021, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1197, \"group\": [2262.0, 1235.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13891_BALBc-1_X02_Y01_1153_161\", \"ini\": 2388, \"clust\": 240, \"rank\": 876, \"rankvar\": 756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 438, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 770, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1198, \"group\": [239.0, 167.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13893_BALBc-1_X02_Y01_1153_212\", \"ini\": 2387, \"clust\": 1343, \"rank\": 1017, \"rankvar\": 2423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 439, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1716, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1741, \"group\": [1344.0, 708.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14380_BALBc-1_X02_Y01_1159_66\", \"ini\": 2386, \"clust\": 1571, \"rank\": 761, \"rankvar\": 552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 440, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1880, \"cat-2\": \"Density: 22\", \"cat_2_index\": 264, \"group\": [1571.0, 859.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14826_BALBc-1_X02_Y01_1164_105\", \"ini\": 2385, \"clust\": 213, \"rank\": 1419, \"rankvar\": 2038, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 441, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 771, \"cat-2\": \"Density: 27\", \"cat_2_index\": 895, \"group\": [214.0, 146.0, 51.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15075_BALBc-1_X02_Y01_1167_300\", \"ini\": 2384, \"clust\": 1654, \"rank\": 2822, \"rankvar\": 2770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 442, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 772, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2298, \"group\": [1654.0, 913.0, 265.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15083_BALBc-1_X02_Y01_1167_377\", \"ini\": 2383, \"clust\": 1324, \"rank\": 1369, \"rankvar\": 2076, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 443, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1022, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1054, \"group\": [1324.0, 691.0, 206.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15194_BALBc-1_X02_Y01_1168_743\", \"ini\": 2382, \"clust\": 2561, \"rank\": 2585, \"rankvar\": 2447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 444, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 5, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1742, \"group\": [2559.0, 1381.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15334_BALBc-1_X02_Y01_117_883\", \"ini\": 2381, \"clust\": 1588, \"rank\": 1506, \"rankvar\": 1209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 445, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1881, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1487, \"group\": [1591.0, 874.0, 255.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15471_BALBc-1_X02_Y01_1171_582\", \"ini\": 2380, \"clust\": 372, \"rank\": 550, \"rankvar\": 1273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 446, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1023, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1843, \"group\": [369.0, 255.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15630_BALBc-1_X02_Y01_1173_619\", \"ini\": 2379, \"clust\": 1672, \"rank\": 1519, \"rankvar\": 254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 447, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1024, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1844, \"group\": [1671.0, 928.0, 272.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15634_BALBc-1_X02_Y01_1173_634\", \"ini\": 2378, \"clust\": 1988, \"rank\": 1845, \"rankvar\": 2056, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 448, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 773, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2055, \"group\": [1991.0, 1125.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15644_BALBc-1_X02_Y01_1173_755\", \"ini\": 2377, \"clust\": 1782, \"rank\": 2479, \"rankvar\": 2472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 449, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1025, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1488, \"group\": [1782.0, 1012.0, 307.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15706_BALBc-1_X02_Y01_1174_723\", \"ini\": 2376, \"clust\": 1667, \"rank\": 1578, \"rankvar\": 537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 450, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 774, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1627, \"group\": [1668.0, 925.0, 270.0, 76.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15832_BALBc-1_X02_Y01_1176_472\", \"ini\": 2375, \"clust\": 1161, \"rank\": 943, \"rankvar\": 2174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 451, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1026, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1357, \"group\": [1165.0, 561.0, 155.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16250_BALBc-1_X02_Y01_1180_834\", \"ini\": 2374, \"clust\": 2499, \"rank\": 2376, \"rankvar\": 2349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 452, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 775, \"cat-2\": \"Density: 27\", \"cat_2_index\": 896, \"group\": [2498.0, 1344.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16261_BALBc-1_X02_Y01_1180_946\", \"ini\": 2373, \"clust\": 2553, \"rank\": 2372, \"rankvar\": 2480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 453, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1882, \"cat-2\": \"Density: 27\", \"cat_2_index\": 897, \"group\": [2553.0, 1376.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16286_BALBc-1_X02_Y01_1181_398\", \"ini\": 2372, \"clust\": 1415, \"rank\": 2131, \"rankvar\": 1951, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 454, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1027, \"cat-2\": \"Density: 27\", \"cat_2_index\": 898, \"group\": [1414.0, 762.0, 226.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16453_BALBc-1_X02_Y01_1183_622\", \"ini\": 2371, \"clust\": 2300, \"rank\": 1787, \"rankvar\": 1410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 455, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 6, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1743, \"group\": [2297.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16460_BALBc-1_X02_Y01_1183_734\", \"ini\": 2370, \"clust\": 753, \"rank\": 447, \"rankvar\": 407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 456, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 7, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1628, \"group\": [753.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16490_BALBc-1_X02_Y01_1184_20\", \"ini\": 2369, \"clust\": 1553, \"rank\": 1097, \"rankvar\": 2142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 457, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 894, \"cat-2\": \"Density: 15\", \"cat_2_index\": 36, \"group\": [1554.0, 844.0, 244.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16779_BALBc-1_X02_Y01_1188_180\", \"ini\": 2368, \"clust\": 1432, \"rank\": 2067, \"rankvar\": 2250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 458, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 776, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2056, \"group\": [1432.0, 778.0, 233.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16869_BALBc-1_X02_Y01_1189_208\", \"ini\": 2367, \"clust\": 776, \"rank\": 134, \"rankvar\": 326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 459, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1717, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2220, \"group\": [781.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16889_BALBc-1_X02_Y01_1189_451\", \"ini\": 2366, \"clust\": 661, \"rank\": 117, \"rankvar\": 694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 460, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1028, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1489, \"group\": [660.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16901_BALBc-1_X02_Y01_1189_539\", \"ini\": 2365, \"clust\": 993, \"rank\": 880, \"rankvar\": 579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 461, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1608, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2221, \"group\": [996.0, 510.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17048_BALBc-1_X02_Y01_1190_641\", \"ini\": 2364, \"clust\": 1110, \"rank\": 294, \"rankvar\": 99, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 462, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 8, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1946, \"group\": [1112.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17117_BALBc-1_X02_Y01_1191_556\", \"ini\": 2363, \"clust\": 1910, \"rank\": 2336, \"rankvar\": 2158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 463, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1609, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1629, \"group\": [1911.0, 1097.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17132_BALBc-1_X02_Y01_1191_663\", \"ini\": 2362, \"clust\": 71, \"rank\": 867, \"rankvar\": 705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 464, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 777, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1947, \"group\": [72.0, 54.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17336_BALBc-1_X02_Y01_1194_509\", \"ini\": 2361, \"clust\": 38, \"rank\": 380, \"rankvar\": 121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 465, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1610, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1630, \"group\": [38.0, 33.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17653_BALBc-1_X02_Y01_1198_693\", \"ini\": 2360, \"clust\": 2407, \"rank\": 1040, \"rankvar\": 810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 466, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 778, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2057, \"group\": [2407.0, 1277.0, 381.0, 104.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17657_BALBc-1_X02_Y01_1198_792\", \"ini\": 2359, \"clust\": 2816, \"rank\": 1952, \"rankvar\": 1836, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 467, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1029, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1055, \"group\": [2815.0, 1529.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17668_BALBc-1_X02_Y01_1198_965\", \"ini\": 2358, \"clust\": 330, \"rank\": 539, \"rankvar\": 1534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 468, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2409, \"cat-2\": \"Density: 26\", \"cat_2_index\": 739, \"group\": [332.0, 233.0, 82.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17790_BALBc-1_X02_Y01_12_625\", \"ini\": 2357, \"clust\": 1262, \"rank\": 1632, \"rankvar\": 1252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 469, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1883, \"cat-2\": \"Density: 25\", \"cat_2_index\": 620, \"group\": [1262.0, 641.0, 185.0, 52.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17829_BALBc-1_X02_Y01_12_949\", \"ini\": 2356, \"clust\": 1423, \"rank\": 1651, \"rankvar\": 189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 470, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1718, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1358, \"group\": [1430.0, 776.0, 232.0, 66.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17833_BALBc-1_X02_Y01_120_10\", \"ini\": 2355, \"clust\": 1797, \"rank\": 2162, \"rankvar\": 2507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 471, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1611, \"cat-2\": \"Density: 15\", \"cat_2_index\": 37, \"group\": [1796.0, 1016.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17960_BALBc-1_X02_Y01_1200_621\", \"ini\": 2354, \"clust\": 762, \"rank\": 247, \"rankvar\": 847, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 472, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 9, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1845, \"group\": [763.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18016_BALBc-1_X02_Y01_1201_255\", \"ini\": 2353, \"clust\": 1298, \"rank\": 1502, \"rankvar\": 1362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 473, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1030, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1744, \"group\": [1298.0, 669.0, 195.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18096_BALBc-1_X02_Y01_1202_300\", \"ini\": 2352, \"clust\": 2812, \"rank\": 1515, \"rankvar\": 2062, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 474, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1719, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1631, \"group\": [2810.0, 1527.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18196_BALBc-1_X02_Y01_1203_578\", \"ini\": 2351, \"clust\": 2510, \"rank\": 1545, \"rankvar\": 1962, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 475, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1612, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1632, \"group\": [2510.0, 1350.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18210_BALBc-1_X02_Y01_1203_725\", \"ini\": 2350, \"clust\": 1404, \"rank\": 2084, \"rankvar\": 1010, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 476, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1031, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1633, \"group\": [1407.0, 757.0, 223.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18259_BALBc-1_X02_Y01_1204_360\", \"ini\": 2349, \"clust\": 223, \"rank\": 1125, \"rankvar\": 2003, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 477, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1720, \"cat-2\": \"Density: 26\", \"cat_2_index\": 740, \"group\": [222.0, 154.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18482_BALBc-1_X02_Y01_1206_858\", \"ini\": 2348, \"clust\": 1675, \"rank\": 2191, \"rankvar\": 1585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 478, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 779, \"cat-2\": \"Density: 24\", \"cat_2_index\": 478, \"group\": [1675.0, 932.0, 274.0, 78.0, 16.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18612_BALBc-1_X02_Y01_1208_674\", \"ini\": 2347, \"clust\": 2764, \"rank\": 2364, \"rankvar\": 1803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 479, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1032, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2058, \"group\": [2765.0, 1497.0, 446.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18710_BALBc-1_X02_Y01_1209_899\", \"ini\": 2346, \"clust\": 2555, \"rank\": 2485, \"rankvar\": 1246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 480, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 780, \"cat-2\": \"Density: 24\", \"cat_2_index\": 479, \"group\": [2557.0, 1379.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18905_BALBc-1_X02_Y01_1211_658\", \"ini\": 2345, \"clust\": 2594, \"rank\": 1467, \"rankvar\": 1155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 10, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2059, \"group\": [2598.0, 1405.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19104_BALBc-1_X02_Y01_1214_445\", \"ini\": 2344, \"clust\": 2408, \"rank\": 1275, \"rankvar\": 1336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 482, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2410, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1056, \"group\": [2408.0, 1278.0, 381.0, 104.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19264_BALBc-1_X02_Y01_1216_455\", \"ini\": 2343, \"clust\": 195, \"rank\": 426, \"rankvar\": 687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 483, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1613, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1359, \"group\": [195.0, 131.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19265_BALBc-1_X02_Y01_1216_472\", \"ini\": 2342, \"clust\": 2652, \"rank\": 2680, \"rankvar\": 2034, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 484, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1614, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1634, \"group\": [2650.0, 1439.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19271_BALBc-1_X02_Y01_1216_594\", \"ini\": 2341, \"clust\": 2706, \"rank\": 2197, \"rankvar\": 2075, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 485, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 781, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1635, \"group\": [2706.0, 1454.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19288_BALBc-1_X02_Y01_1216_855\", \"ini\": 2340, \"clust\": 2809, \"rank\": 2099, \"rankvar\": 2231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 486, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 782, \"cat-2\": \"Density: 24\", \"cat_2_index\": 480, \"group\": [2808.0, 1526.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19310_BALBc-1_X02_Y01_1217_258\", \"ini\": 2339, \"clust\": 1990, \"rank\": 2079, \"rankvar\": 1901, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 487, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1033, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1745, \"group\": [1988.0, 1125.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19351_BALBc-1_X02_Y01_1217_759\", \"ini\": 2338, \"clust\": 1983, \"rank\": 2001, \"rankvar\": 475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 488, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2503, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1360, \"group\": [1987.0, 1124.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19674_BALBc-1_X02_Y01_1221_135\", \"ini\": 2337, \"clust\": 197, \"rank\": 527, \"rankvar\": 231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 489, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2411, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1057, \"group\": [197.0, 132.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19754_BALBc-1_X02_Y01_1222_168\", \"ini\": 2336, \"clust\": 16, \"rank\": 1002, \"rankvar\": 990, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 490, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1721, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1746, \"group\": [16.0, 15.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19785_BALBc-1_X02_Y01_1222_508\", \"ini\": 2335, \"clust\": 2775, \"rank\": 2245, \"rankvar\": 1982, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 491, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1615, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1490, \"group\": [2776.0, 1503.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20247_BALBc-1_X02_Y01_1228_427\", \"ini\": 2334, \"clust\": 2699, \"rank\": 2384, \"rankvar\": 1997, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2504, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1361, \"group\": [2701.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20444_BALBc-1_X02_Y01_1230_254\", \"ini\": 2333, \"clust\": 2498, \"rank\": 1920, \"rankvar\": 2055, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 493, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1034, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1636, \"group\": [2500.0, 1344.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20674_BALBc-1_X02_Y01_1232_895\", \"ini\": 2332, \"clust\": 69, \"rank\": 930, \"rankvar\": 2545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 494, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 783, \"cat-2\": \"Density: 27\", \"cat_2_index\": 899, \"group\": [65.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20684_BALBc-1_X02_Y01_1232_950\", \"ini\": 2331, \"clust\": 1655, \"rank\": 2792, \"rankvar\": 2647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 495, \"cat-1\": \"Neighbor: CD4(-)CD8(-) cDC\", \"cat_1_index\": 1590, \"cat-2\": \"Density: 24\", \"cat_2_index\": 481, \"group\": [1655.0, 913.0, 265.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20877_BALBc-1_X02_Y01_1235_619\", \"ini\": 2330, \"clust\": 2659, \"rank\": 2623, \"rankvar\": 2182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 496, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 784, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1948, \"group\": [2660.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21358_BALBc-1_X02_Y01_1241_235\", \"ini\": 2329, \"clust\": 1821, \"rank\": 2533, \"rankvar\": 2241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 497, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1035, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1362, \"group\": [1826.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21512_BALBc-1_X02_Y01_1243_309\", \"ini\": 2328, \"clust\": 1401, \"rank\": 1986, \"rankvar\": 1809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 498, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1722, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1058, \"group\": [1402.0, 752.0, 221.0, 63.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21583_BALBc-1_X02_Y01_1244_275\", \"ini\": 2327, \"clust\": 1374, \"rank\": 2130, \"rankvar\": 2229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 499, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 11, \"cat-2\": \"Density: 27\", \"cat_2_index\": 900, \"group\": [1375.0, 731.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21689_BALBc-1_X02_Y01_1245_805\", \"ini\": 2326, \"clust\": 2762, \"rank\": 2355, \"rankvar\": 2506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 500, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2505, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1199, \"group\": [2763.0, 1496.0, 446.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22019_BALBc-1_X02_Y01_125_269\", \"ini\": 2325, \"clust\": 1555, \"rank\": 1936, \"rankvar\": 2202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 501, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1884, \"cat-2\": \"Density: 25\", \"cat_2_index\": 621, \"group\": [1557.0, 847.0, 246.0, 70.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22239_BALBc-1_X02_Y01_1252_216\", \"ini\": 2324, \"clust\": 1344, \"rank\": 1356, \"rankvar\": 2438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 502, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2270, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1363, \"group\": [1345.0, 708.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22243_BALBc-1_X02_Y01_1252_255\", \"ini\": 2323, \"clust\": 59, \"rank\": 940, \"rankvar\": 1605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 503, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 12, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1200, \"group\": [71.0, 53.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22255_BALBc-1_X02_Y01_1252_348\", \"ini\": 2322, \"clust\": 2755, \"rank\": 1471, \"rankvar\": 1993, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 504, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1723, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1059, \"group\": [2759.0, 1492.0, 444.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22266_BALBc-1_X02_Y01_1252_472\", \"ini\": 2321, \"clust\": 2572, \"rank\": 2151, \"rankvar\": 2568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 505, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2506, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1364, \"group\": [2571.0, 1391.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22548_BALBc-1_X02_Y01_1256_623\", \"ini\": 2320, \"clust\": 2722, \"rank\": 1912, \"rankvar\": 1241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 506, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 785, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2060, \"group\": [2722.0, 1462.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22671_BALBc-1_X02_Y01_1258_136\", \"ini\": 2319, \"clust\": 751, \"rank\": 326, \"rankvar\": 209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 507, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1036, \"cat-2\": \"Density: 27\", \"cat_2_index\": 901, \"group\": [749.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22748_BALBc-1_X02_Y01_1259_383\", \"ini\": 2318, \"clust\": 67, \"rank\": 1135, \"rankvar\": 1686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 508, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 678, \"cat-2\": \"Density: 27\", \"cat_2_index\": 902, \"group\": [68.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22787_BALBc-1_X02_Y01_1259_893\", \"ini\": 2317, \"clust\": 2641, \"rank\": 2147, \"rankvar\": 1039, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 509, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 786, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1060, \"group\": [2642.0, 1434.0, 424.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22931_BALBc-1_X02_Y01_1260_924\", \"ini\": 2316, \"clust\": 68, \"rank\": 1108, \"rankvar\": 1770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 510, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 787, \"cat-2\": \"Density: 27\", \"cat_2_index\": 903, \"group\": [67.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23108_BALBc-1_X02_Y01_1263_256\", \"ini\": 2315, \"clust\": 1677, \"rank\": 2643, \"rankvar\": 2812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 511, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 679, \"cat-2\": \"Density: 26\", \"cat_2_index\": 741, \"group\": [1680.0, 937.0, 277.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23139_BALBc-1_X02_Y01_1263_670\", \"ini\": 2314, \"clust\": 1888, \"rank\": 2770, \"rankvar\": 2776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 512, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1037, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1637, \"group\": [1888.0, 1078.0, 329.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23280_BALBc-1_X02_Y01_1265_648\", \"ini\": 2313, \"clust\": 2578, \"rank\": 1173, \"rankvar\": 1871, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 513, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 13, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1846, \"group\": [2584.0, 1397.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23335_BALBc-1_X02_Y01_1266_525\", \"ini\": 2312, \"clust\": 1179, \"rank\": 1809, \"rankvar\": 1324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 514, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2507, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1491, \"group\": [1179.0, 572.0, 159.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23348_BALBc-1_X02_Y01_1266_814\", \"ini\": 2311, \"clust\": 2570, \"rank\": 1826, \"rankvar\": 2117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 515, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2508, \"cat-2\": \"Density: 22\", \"cat_2_index\": 265, \"group\": [2574.0, 1391.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23436_BALBc-1_X02_Y01_1268_124\", \"ini\": 2310, \"clust\": 1376, \"rank\": 1951, \"rankvar\": 2583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 516, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2271, \"cat-2\": \"Density: 26\", \"cat_2_index\": 742, \"group\": [1377.0, 732.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23465_BALBc-1_X02_Y01_1268_478\", \"ini\": 2309, \"clust\": 2660, \"rank\": 2619, \"rankvar\": 2175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 517, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 14, \"cat-2\": \"Density: 27\", \"cat_2_index\": 904, \"group\": [2661.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23570_BALBc-1_X02_Y01_1269_960\", \"ini\": 2308, \"clust\": 781, \"rank\": 203, \"rankvar\": 1211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 518, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1061, \"group\": [784.0, 475.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23719_BALBc-1_X02_Y01_1271_19\", \"ini\": 2307, \"clust\": 701, \"rank\": 211, \"rankvar\": 1322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 519, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1885, \"cat-2\": \"Density: 9\", \"cat_2_index\": 1, \"group\": [701.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23817_BALBc-1_X02_Y01_1272_501\", \"ini\": 2306, \"clust\": 1211, \"rank\": 883, \"rankvar\": 683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 520, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2509, \"cat-2\": \"Density: 27\", \"cat_2_index\": 905, \"group\": [1210.0, 603.0, 171.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23834_BALBc-1_X02_Y01_1272_684\", \"ini\": 2305, \"clust\": 2483, \"rank\": 1336, \"rankvar\": 1789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 521, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1038, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1365, \"group\": [2485.0, 1332.0, 396.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23870_BALBc-1_X02_Y01_1273_191\", \"ini\": 2304, \"clust\": 752, \"rank\": 152, \"rankvar\": 405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 522, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1724, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1062, \"group\": [750.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23961_BALBc-1_X02_Y01_1274_276\", \"ini\": 2303, \"clust\": 1387, \"rank\": 2215, \"rankvar\": 2470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 523, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2412, \"cat-2\": \"Density: 24\", \"cat_2_index\": 482, \"group\": [1385.0, 737.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24129_BALBc-1_X02_Y01_1276_627\", \"ini\": 2302, \"clust\": 327, \"rank\": 1158, \"rankvar\": 385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 524, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 15, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1492, \"group\": [328.0, 229.0, 80.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24213_BALBc-1_X02_Y01_1277_743\", \"ini\": 2301, \"clust\": 2627, \"rank\": 1828, \"rankvar\": 1164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 525, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2510, \"cat-2\": \"Density: 26\", \"cat_2_index\": 743, \"group\": [2630.0, 1423.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24260_BALBc-1_X02_Y01_1278_371\", \"ini\": 2300, \"clust\": 2642, \"rank\": 2076, \"rankvar\": 599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 526, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 16, \"cat-2\": \"Density: 20\", \"cat_2_index\": 140, \"group\": [2643.0, 1434.0, 424.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24435_BALBc-1_X02_Y01_128_859\", \"ini\": 2299, \"clust\": 1238, \"rank\": 786, \"rankvar\": 2656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 527, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 680, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1493, \"group\": [1238.0, 622.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24454_BALBc-1_X02_Y01_1280_168\", \"ini\": 2298, \"clust\": 1617, \"rank\": 2238, \"rankvar\": 2569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 528, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1725, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1063, \"group\": [1617.0, 891.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24523_BALBc-1_X02_Y01_1281_204\", \"ini\": 2297, \"clust\": 1367, \"rank\": 2431, \"rankvar\": 2267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 529, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2511, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1064, \"group\": [1368.0, 728.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24639_BALBc-1_X02_Y01_1282_936\", \"ini\": 2296, \"clust\": 1699, \"rank\": 2400, \"rankvar\": 2154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 530, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 788, \"cat-2\": \"Density: 25\", \"cat_2_index\": 622, \"group\": [1705.0, 960.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24854_BALBc-1_X02_Y01_1285_865\", \"ini\": 2295, \"clust\": 2711, \"rank\": 2510, \"rankvar\": 2346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 531, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 789, \"cat-2\": \"Density: 20\", \"cat_2_index\": 141, \"group\": [2708.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25171_BALBc-1_X02_Y01_129_327\", \"ini\": 2294, \"clust\": 994, \"rank\": 581, \"rankvar\": 1143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 532, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1886, \"cat-2\": \"Density: 26\", \"cat_2_index\": 744, \"group\": [994.0, 510.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25272_BALBc-1_X02_Y01_1290_692\", \"ini\": 2293, \"clust\": 1922, \"rank\": 2231, \"rankvar\": 2386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 533, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 17, \"cat-2\": \"Density: 27\", \"cat_2_index\": 906, \"group\": [1922.0, 1105.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25330_BALBc-1_X02_Y01_1291_444\", \"ini\": 2292, \"clust\": 2562, \"rank\": 2478, \"rankvar\": 2266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 534, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2512, \"cat-2\": \"Density: 21\", \"cat_2_index\": 197, \"group\": [2560.0, 1381.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25437_BALBc-1_X02_Y01_1292_824\", \"ini\": 2291, \"clust\": 157, \"rank\": 1558, \"rankvar\": 1795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 535, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 18, \"cat-2\": \"Density: 21\", \"cat_2_index\": 198, \"group\": [161.0, 102.0, 33.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25507_BALBc-1_X02_Y01_1293_608\", \"ini\": 2290, \"clust\": 1949, \"rank\": 2007, \"rankvar\": 1581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 536, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 19, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1065, \"group\": [1951.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25576_BALBc-1_X02_Y01_1294_588\", \"ini\": 2289, \"clust\": 355, \"rank\": 562, \"rankvar\": 1218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 537, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 790, \"cat-2\": \"Density: 26\", \"cat_2_index\": 745, \"group\": [355.0, 249.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25582_BALBc-1_X02_Y01_1294_704\", \"ini\": 2288, \"clust\": 390, \"rank\": 1552, \"rankvar\": 2161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 538, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1039, \"cat-2\": \"Density: 25\", \"cat_2_index\": 623, \"group\": [408.0, 286.0, 97.0, 28.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25697_BALBc-1_X02_Y01_1296_329\", \"ini\": 2287, \"clust\": 2759, \"rank\": 2054, \"rankvar\": 2104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 539, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2413, \"cat-2\": \"Density: 19\", \"cat_2_index\": 116, \"group\": [2762.0, 1495.0, 445.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25710_BALBc-1_X02_Y01_1296_563\", \"ini\": 2286, \"clust\": 2717, \"rank\": 2304, \"rankvar\": 1740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 540, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2513, \"cat-2\": \"Density: 25\", \"cat_2_index\": 624, \"group\": [2721.0, 1461.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25815_BALBc-1_X02_Y01_1297_976\", \"ini\": 2285, \"clust\": 359, \"rank\": 158, \"rankvar\": 2223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 541, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1040, \"cat-2\": \"Density: 23\", \"cat_2_index\": 379, \"group\": [362.0, 251.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25841_BALBc-1_X02_Y01_1298_381\", \"ini\": 2284, \"clust\": 2781, \"rank\": 2444, \"rankvar\": 2712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 791, \"cat-2\": \"Density: 17\", \"cat_2_index\": 71, \"group\": [2781.0, 1506.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25946_BALBc-1_X02_Y01_1299_659\", \"ini\": 2283, \"clust\": 199, \"rank\": 1168, \"rankvar\": 494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 543, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 20, \"cat-2\": \"Density: 24\", \"cat_2_index\": 483, \"group\": [200.0, 134.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26179_BALBc-1_X02_Y01_1300_765\", \"ini\": 2282, \"clust\": 2132, \"rank\": 2604, \"rankvar\": 2748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 544, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2514, \"cat-2\": \"Density: 18\", \"cat_2_index\": 91, \"group\": [2132.0, 1153.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26338_BALBc-1_X02_Y01_1302_966\", \"ini\": 2281, \"clust\": 2657, \"rank\": 2795, \"rankvar\": 2633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 545, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1041, \"cat-2\": \"Density: 22\", \"cat_2_index\": 266, \"group\": [2657.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26563_BALBc-1_X02_Y01_1306_615\", \"ini\": 2280, \"clust\": 636, \"rank\": 593, \"rankvar\": 34, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 546, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 21, \"cat-2\": \"Density: 24\", \"cat_2_index\": 484, \"group\": [635.0, 428.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26947_BALBc-1_X02_Y01_1310_844\", \"ini\": 2279, \"clust\": 2674, \"rank\": 2626, \"rankvar\": 2441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 547, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 22, \"cat-2\": \"Density: 17\", \"cat_2_index\": 72, \"group\": [2681.0, 1446.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26986_BALBc-1_X02_Y01_1311_476\", \"ini\": 2278, \"clust\": 2138, \"rank\": 2314, \"rankvar\": 1274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 548, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 23, \"cat-2\": \"Density: 20\", \"cat_2_index\": 142, \"group\": [2142.0, 1159.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27217_BALBc-1_X02_Y01_1314_632\", \"ini\": 2277, \"clust\": 152, \"rank\": 1096, \"rankvar\": 372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 549, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 24, \"cat-2\": \"Density: 23\", \"cat_2_index\": 380, \"group\": [155.0, 97.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27299_BALBc-1_X02_Y01_1315_692\", \"ini\": 2276, \"clust\": 979, \"rank\": 556, \"rankvar\": 444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 550, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 25, \"cat-2\": \"Density: 22\", \"cat_2_index\": 267, \"group\": [979.0, 503.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27307_BALBc-1_X02_Y01_1315_735\", \"ini\": 2275, \"clust\": 2018, \"rank\": 1850, \"rankvar\": 1202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 26, \"cat-2\": \"Density: 19\", \"cat_2_index\": 117, \"group\": [2019.0, 1137.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27466_BALBc-1_X02_Y01_1317_879\", \"ini\": 2274, \"clust\": 257, \"rank\": 1351, \"rankvar\": 1067, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 552, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 792, \"cat-2\": \"Density: 16\", \"cat_2_index\": 51, \"group\": [263.0, 185.0, 64.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27504_BALBc-1_X02_Y01_1318_405\", \"ini\": 2273, \"clust\": 1405, \"rank\": 2132, \"rankvar\": 1636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 553, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 793, \"cat-2\": \"Density: 16\", \"cat_2_index\": 52, \"group\": [1405.0, 755.0, 223.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27595_BALBc-1_X02_Y01_1319_808\", \"ini\": 2272, \"clust\": 2184, \"rank\": 1579, \"rankvar\": 2501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 554, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 27, \"cat-2\": \"Density: 15\", \"cat_2_index\": 38, \"group\": [2182.0, 1185.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27599_BALBc-1_X02_Y01_1319_890\", \"ini\": 2271, \"clust\": 578, \"rank\": 1160, \"rankvar\": 1522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 555, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 794, \"cat-2\": \"Density: 17\", \"cat_2_index\": 73, \"group\": [595.0, 406.0, 133.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27627_BALBc-1_X02_Y01_132_376\", \"ini\": 2270, \"clust\": 308, \"rank\": 2203, \"rankvar\": 2725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 556, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1042, \"cat-2\": \"Density: 26\", \"cat_2_index\": 746, \"group\": [306.0, 215.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27677_BALBc-1_X02_Y01_132_918\", \"ini\": 2269, \"clust\": 250, \"rank\": 834, \"rankvar\": 907, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 557, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2515, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1949, \"group\": [249.0, 172.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27726_BALBc-1_X02_Y01_1320_540\", \"ini\": 2268, \"clust\": 2518, \"rank\": 1470, \"rankvar\": 1020, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 558, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2516, \"cat-2\": \"Density: 18\", \"cat_2_index\": 92, \"group\": [2518.0, 1352.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27814_BALBc-1_X02_Y01_1321_772\", \"ini\": 2267, \"clust\": 2271, \"rank\": 1548, \"rankvar\": 1462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 559, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 28, \"cat-2\": \"Density: 17\", \"cat_2_index\": 74, \"group\": [2269.0, 1239.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27851_BALBc-1_X02_Y01_1322_496\", \"ini\": 2266, \"clust\": 1961, \"rank\": 2345, \"rankvar\": 1341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 560, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2517, \"cat-2\": \"Density: 16\", \"cat_2_index\": 53, \"group\": [1959.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27996_BALBc-1_X02_Y01_1324_340\", \"ini\": 2265, \"clust\": 1345, \"rank\": 816, \"rankvar\": 1536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 561, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 795, \"cat-2\": \"Density: 13\", \"cat_2_index\": 12, \"group\": [1346.0, 709.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28090_BALBc-1_X02_Y01_1325_569\", \"ini\": 2264, \"clust\": 1905, \"rank\": 2378, \"rankvar\": 1226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 562, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 29, \"cat-2\": \"Density: 20\", \"cat_2_index\": 143, \"group\": [1905.0, 1092.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28093_BALBc-1_X02_Y01_1325_603\", \"ini\": 2263, \"clust\": 1697, \"rank\": 1776, \"rankvar\": 1554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 563, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 30, \"cat-2\": \"Density: 22\", \"cat_2_index\": 268, \"group\": [1698.0, 955.0, 286.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28114_BALBc-1_X02_Y01_1325_828\", \"ini\": 2262, \"clust\": 2650, \"rank\": 2270, \"rankvar\": 1860, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 564, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 31, \"cat-2\": \"Density: 15\", \"cat_2_index\": 39, \"group\": [2653.0, 1440.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28137_BALBc-1_X02_Y01_1325_999\", \"ini\": 2261, \"clust\": 2658, \"rank\": 2807, \"rankvar\": 2722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 565, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 796, \"cat-2\": \"Density: 17\", \"cat_2_index\": 75, \"group\": [2658.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28664_BALBc-1_X02_Y01_1331_725\", \"ini\": 2260, \"clust\": 2140, \"rank\": 2554, \"rankvar\": 949, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 566, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 32, \"cat-2\": \"Density: 16\", \"cat_2_index\": 54, \"group\": [2139.0, 1157.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28713_BALBc-1_X02_Y01_1332_436\", \"ini\": 2259, \"clust\": 2689, \"rank\": 2793, \"rankvar\": 1660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 567, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2518, \"cat-2\": \"Density: 14\", \"cat_2_index\": 27, \"group\": [2691.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28759_BALBc-1_X02_Y01_1332_937\", \"ini\": 2258, \"clust\": 2691, \"rank\": 2794, \"rankvar\": 2291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 568, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 797, \"cat-2\": \"Density: 15\", \"cat_2_index\": 40, \"group\": [2688.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28951_BALBc-1_X02_Y01_1335_663\", \"ini\": 2257, \"clust\": 2304, \"rank\": 1907, \"rankvar\": 1208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 569, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 33, \"cat-2\": \"Density: 20\", \"cat_2_index\": 144, \"group\": [2303.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29000_BALBc-1_X02_Y01_1336_597\", \"ini\": 2256, \"clust\": 1970, \"rank\": 2287, \"rankvar\": 1879, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 570, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 34, \"cat-2\": \"Density: 16\", \"cat_2_index\": 55, \"group\": [1964.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29507_BALBc-1_X02_Y01_137_977\", \"ini\": 2255, \"clust\": 65, \"rank\": 1253, \"rankvar\": 2589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 571, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1043, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1950, \"group\": [63.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29674_BALBc-1_X02_Y01_14_498\", \"ini\": 2254, \"clust\": 1664, \"rank\": 2031, \"rankvar\": 2771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 572, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2414, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1201, \"group\": [1664.0, 921.0, 268.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29998_BALBc-1_X02_Y01_143_952\", \"ini\": 2253, \"clust\": 1156, \"rank\": 2452, \"rankvar\": 2255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 573, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1044, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1951, \"group\": [1156.0, 555.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30482_BALBc-1_X02_Y01_15_575\", \"ini\": 2252, \"clust\": 23, \"rank\": 810, \"rankvar\": 937, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 574, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1887, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1202, \"group\": [23.0, 22.0, 13.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30586_BALBc-1_X02_Y01_150_909\", \"ini\": 2251, \"clust\": 1763, \"rank\": 1773, \"rankvar\": 2156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1045, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1494, \"group\": [1764.0, 999.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31216_BALBc-1_X02_Y01_159_250\", \"ini\": 2250, \"clust\": 1228, \"rank\": 1841, \"rankvar\": 1893, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 576, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1617, \"cat-2\": \"Density: 26\", \"cat_2_index\": 747, \"group\": [1225.0, 615.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31389_BALBc-1_X02_Y01_160_546\", \"ini\": 2249, \"clust\": 1550, \"rank\": 872, \"rankvar\": 645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 577, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1888, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1203, \"group\": [1549.0, 840.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31462_BALBc-1_X02_Y01_161_584\", \"ini\": 2248, \"clust\": 835, \"rank\": 142, \"rankvar\": 38, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 578, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1889, \"cat-2\": \"Density: 27\", \"cat_2_index\": 907, \"group\": [834.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31774_BALBc-1_X02_Y01_166_30\", \"ini\": 2247, \"clust\": 1608, \"rank\": 1384, \"rankvar\": 1097, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 579, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1046, \"cat-2\": \"Density: 16\", \"cat_2_index\": 56, \"group\": [1612.0, 888.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31790_BALBc-1_X02_Y01_166_464\", \"ini\": 2246, \"clust\": 1128, \"rank\": 1233, \"rankvar\": 1184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 580, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2810, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1495, \"group\": [1129.0, 531.0, 144.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32250_BALBc-1_X02_Y01_171_888\", \"ini\": 2245, \"clust\": 1288, \"rank\": 1464, \"rankvar\": 1278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 581, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 798, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1366, \"group\": [1289.0, 660.0, 189.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32282_BALBc-1_X02_Y01_172_482\", \"ini\": 2244, \"clust\": 1658, \"rank\": 2279, \"rankvar\": 2762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 582, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1890, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1496, \"group\": [1666.0, 923.0, 269.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32442_BALBc-1_X02_Y01_174_956\", \"ini\": 2243, \"clust\": 1303, \"rank\": 1227, \"rankvar\": 1232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 583, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1047, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1847, \"group\": [1302.0, 673.0, 197.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32519_BALBc-1_X02_Y01_175_843\", \"ini\": 2242, \"clust\": 2758, \"rank\": 2037, \"rankvar\": 2151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 584, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1891, \"cat-2\": \"Density: 26\", \"cat_2_index\": 748, \"group\": [2757.0, 1490.0, 443.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32762_BALBc-1_X02_Y01_179_322\", \"ini\": 2241, \"clust\": 450, \"rank\": 458, \"rankvar\": 2039, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 585, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1048, \"cat-2\": \"Density: 25\", \"cat_2_index\": 625, \"group\": [451.0, 315.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32908_BALBc-1_X02_Y01_180_240\", \"ini\": 2240, \"clust\": 1605, \"rank\": 682, \"rankvar\": 2434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 586, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1618, \"cat-2\": \"Density: 23\", \"cat_2_index\": 381, \"group\": [1607.0, 887.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33134_BALBc-1_X02_Y01_183_289\", \"ini\": 2239, \"clust\": 1332, \"rank\": 1248, \"rankvar\": 871, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 587, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1049, \"cat-2\": \"Density: 24\", \"cat_2_index\": 485, \"group\": [1333.0, 700.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33188_BALBc-1_X02_Y01_183_994\", \"ini\": 2238, \"clust\": 2502, \"rank\": 2262, \"rankvar\": 2429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 588, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1619, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1497, \"group\": [2501.0, 1345.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33296_BALBc-1_X02_Y01_185_49\", \"ini\": 2237, \"clust\": 20, \"rank\": 1242, \"rankvar\": 557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 589, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2480, \"cat-2\": \"Density: 20\", \"cat_2_index\": 145, \"group\": [25.0, 24.0, 14.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33298_BALBc-1_X02_Y01_185_504\", \"ini\": 2236, \"clust\": 968, \"rank\": 137, \"rankvar\": 1667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 590, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2415, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1638, \"group\": [968.0, 495.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33505_BALBc-1_X02_Y01_188_605\", \"ini\": 2235, \"clust\": 555, \"rank\": 699, \"rankvar\": 786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1050, \"cat-2\": \"Density: 27\", \"cat_2_index\": 908, \"group\": [557.0, 381.0, 127.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34197_BALBc-1_X02_Y01_196_898\", \"ini\": 2234, \"clust\": 1520, \"rank\": 2644, \"rankvar\": 2511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 592, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 799, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1204, \"group\": [1518.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34308_BALBc-1_X02_Y01_198_421\", \"ini\": 2233, \"clust\": 1707, \"rank\": 2691, \"rankvar\": 2577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 593, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1892, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1747, \"group\": [1706.0, 961.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34743_BALBc-1_X02_Y01_203_465\", \"ini\": 2232, \"clust\": 1465, \"rank\": 2337, \"rankvar\": 2164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 594, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1893, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1748, \"group\": [1466.0, 799.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35154_BALBc-1_X02_Y01_208_938\", \"ini\": 2231, \"clust\": 237, \"rank\": 743, \"rankvar\": 1890, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 595, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1051, \"cat-2\": \"Density: 26\", \"cat_2_index\": 749, \"group\": [236.0, 164.0, 58.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35303_BALBc-1_X02_Y01_21_920\", \"ini\": 2230, \"clust\": 56, \"rank\": 1104, \"rankvar\": 571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 596, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2416, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1749, \"group\": [57.0, 46.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35604_BALBc-1_X02_Y01_214_17\", \"ini\": 2229, \"clust\": 24, \"rank\": 1062, \"rankvar\": 915, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 597, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1620, \"cat-2\": \"Density: 15\", \"cat_2_index\": 41, \"group\": [24.0, 23.0, 13.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35670_BALBc-1_X02_Y01_214_814\", \"ini\": 2228, \"clust\": 269, \"rank\": 1262, \"rankvar\": 1282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 598, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1894, \"cat-2\": \"Density: 25\", \"cat_2_index\": 626, \"group\": [269.0, 191.0, 68.0, 21.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35942_BALBc-1_X02_Y01_218_649\", \"ini\": 2227, \"clust\": 354, \"rank\": 1157, \"rankvar\": 2618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 599, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1052, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1639, \"group\": [367.0, 254.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36172_BALBc-1_X02_Y01_221_262\", \"ini\": 2226, \"clust\": 1563, \"rank\": 844, \"rankvar\": 186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 600, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1621, \"cat-2\": \"Density: 26\", \"cat_2_index\": 750, \"group\": [1563.0, 852.0, 249.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36246_BALBc-1_X02_Y01_222_326\", \"ini\": 2225, \"clust\": 402, \"rank\": 370, \"rankvar\": 605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 601, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1622, \"cat-2\": \"Density: 24\", \"cat_2_index\": 486, \"group\": [401.0, 280.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36545_BALBc-1_X02_Y01_226_202\", \"ini\": 2224, \"clust\": 1231, \"rank\": 1926, \"rankvar\": 2582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 602, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1623, \"cat-2\": \"Density: 24\", \"cat_2_index\": 487, \"group\": [1232.0, 620.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37650_BALBc-1_X02_Y01_24_403\", \"ini\": 2223, \"clust\": 1551, \"rank\": 909, \"rankvar\": 1671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 603, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2481, \"cat-2\": \"Density: 22\", \"cat_2_index\": 269, \"group\": [1550.0, 840.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37845_BALBc-1_X02_Y01_242_283\", \"ini\": 2222, \"clust\": 328, \"rank\": 1155, \"rankvar\": 1721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 604, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2272, \"cat-2\": \"Density: 22\", \"cat_2_index\": 270, \"group\": [329.0, 230.0, 81.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37881_BALBc-1_X02_Y01_242_724\", \"ini\": 2221, \"clust\": 1272, \"rank\": 935, \"rankvar\": 2355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 605, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 617, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1205, \"group\": [1275.0, 652.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38216_BALBc-1_X02_Y01_246_892\", \"ini\": 2220, \"clust\": 1593, \"rank\": 766, \"rankvar\": 804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 606, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1895, \"cat-2\": \"Density: 26\", \"cat_2_index\": 751, \"group\": [1592.0, 875.0, 256.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38269_BALBc-1_X02_Y01_247_736\", \"ini\": 2219, \"clust\": 511, \"rank\": 742, \"rankvar\": 33, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 607, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1896, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1367, \"group\": [512.0, 351.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38745_BALBc-1_X02_Y01_253_169\", \"ini\": 2218, \"clust\": 692, \"rank\": 131, \"rankvar\": 1750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 608, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2417, \"cat-2\": \"Density: 20\", \"cat_2_index\": 146, \"group\": [696.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38753_BALBc-1_X02_Y01_253_315\", \"ini\": 2217, \"clust\": 1547, \"rank\": 1129, \"rankvar\": 2313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 609, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1624, \"cat-2\": \"Density: 24\", \"cat_2_index\": 488, \"group\": [1546.0, 837.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39430_BALBc-1_X02_Y01_261_492\", \"ini\": 2216, \"clust\": 1582, \"rank\": 1039, \"rankvar\": 2026, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 610, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2418, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1750, \"group\": [1585.0, 869.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39865_BALBc-1_X02_Y01_267_24\", \"ini\": 2215, \"clust\": 452, \"rank\": 525, \"rankvar\": 819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 611, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1053, \"cat-2\": \"Density: 15\", \"cat_2_index\": 42, \"group\": [455.0, 317.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40114_BALBc-1_X02_Y01_27_431\", \"ini\": 2214, \"clust\": 1273, \"rank\": 488, \"rankvar\": 2485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 612, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2482, \"cat-2\": \"Density: 26\", \"cat_2_index\": 752, \"group\": [1273.0, 652.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40196_BALBc-1_X02_Y01_270_639\", \"ini\": 2213, \"clust\": 398, \"rank\": 174, \"rankvar\": 1745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 613, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 618, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1206, \"group\": [400.0, 279.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40274_BALBc-1_X02_Y01_271_849\", \"ini\": 2212, \"clust\": 1484, \"rank\": 2264, \"rankvar\": 2078, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 614, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1897, \"cat-2\": \"Density: 25\", \"cat_2_index\": 627, \"group\": [1483.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40304_BALBc-1_X02_Y01_272_264\", \"ini\": 2211, \"clust\": 1229, \"rank\": 2138, \"rankvar\": 2305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 615, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1054, \"cat-2\": \"Density: 21\", \"cat_2_index\": 199, \"group\": [1226.0, 615.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40412_BALBc-1_X02_Y01_273_730\", \"ini\": 2210, \"clust\": 323, \"rank\": 1313, \"rankvar\": 2467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 616, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 800, \"cat-2\": \"Density: 27\", \"cat_2_index\": 909, \"group\": [323.0, 225.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40506_BALBc-1_X02_Y01_275_150\", \"ini\": 2209, \"clust\": 456, \"rank\": 252, \"rankvar\": 1633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 617, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1055, \"cat-2\": \"Density: 20\", \"cat_2_index\": 147, \"group\": [456.0, 318.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40534_BALBc-1_X02_Y01_275_491\", \"ini\": 2208, \"clust\": 1446, \"rank\": 2358, \"rankvar\": 2189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 618, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2419, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1368, \"group\": [1445.0, 784.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40859_BALBc-1_X02_Y01_279_657\", \"ini\": 2207, \"clust\": 1600, \"rank\": 1498, \"rankvar\": 1859, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 619, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1056, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1066, \"group\": [1600.0, 882.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41366_BALBc-1_X02_Y01_285_702\", \"ini\": 2206, \"clust\": 1746, \"rank\": 1861, \"rankvar\": 1516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 620, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1057, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1207, \"group\": [1745.0, 986.0, 297.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41645_BALBc-1_X02_Y01_289_419\", \"ini\": 2205, \"clust\": 1207, \"rank\": 606, \"rankvar\": 713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 621, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1058, \"cat-2\": \"Density: 25\", \"cat_2_index\": 628, \"group\": [1207.0, 600.0, 170.0, 46.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41692_BALBc-1_X02_Y01_289_977\", \"ini\": 2204, \"clust\": 2524, \"rank\": 1175, \"rankvar\": 1918, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 622, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2483, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1498, \"group\": [2525.0, 1354.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41720_BALBc-1_X02_Y01_29_371\", \"ini\": 2203, \"clust\": 2219, \"rank\": 1190, \"rankvar\": 177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 623, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1898, \"cat-2\": \"Density: 21\", \"cat_2_index\": 200, \"group\": [2219.0, 1200.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42093_BALBc-1_X02_Y01_294_471\", \"ini\": 2202, \"clust\": 1584, \"rank\": 1434, \"rankvar\": 1816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 624, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1899, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1067, \"group\": [1584.0, 868.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42388_BALBc-1_X02_Y01_298_746\", \"ini\": 2201, \"clust\": 50, \"rank\": 1287, \"rankvar\": 813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 625, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1059, \"cat-2\": \"Density: 25\", \"cat_2_index\": 629, \"group\": [55.0, 44.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42422_BALBc-1_X02_Y01_299_309\", \"ini\": 2200, \"clust\": 819, \"rank\": 14, \"rankvar\": 238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 626, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1625, \"cat-2\": \"Density: 22\", \"cat_2_index\": 271, \"group\": [821.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42773_BALBc-1_X02_Y01_302_572\", \"ini\": 2199, \"clust\": 915, \"rank\": 21, \"rankvar\": 191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 627, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2420, \"cat-2\": \"Density: 27\", \"cat_2_index\": 910, \"group\": [917.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42875_BALBc-1_X02_Y01_303_626\", \"ini\": 2198, \"clust\": 771, \"rank\": 215, \"rankvar\": 831, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 628, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 939, \"cat-2\": \"Density: 26\", \"cat_2_index\": 753, \"group\": [770.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42918_BALBc-1_X02_Y01_304_24\", \"ini\": 2197, \"clust\": 702, \"rank\": 351, \"rankvar\": 450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 629, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2484, \"cat-2\": \"Density: 14\", \"cat_2_index\": 28, \"group\": [702.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43254_BALBc-1_X02_Y01_309_522\", \"ini\": 2196, \"clust\": 1098, \"rank\": 30, \"rankvar\": 334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 630, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1900, \"cat-2\": \"Density: 23\", \"cat_2_index\": 382, \"group\": [1095.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43735_BALBc-1_X02_Y01_314_988\", \"ini\": 2195, \"clust\": 2820, \"rank\": 2435, \"rankvar\": 2474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 631, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1060, \"cat-2\": \"Density: 26\", \"cat_2_index\": 754, \"group\": [2818.0, 1532.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44336_BALBc-1_X02_Y01_321_884\", \"ini\": 2194, \"clust\": 1586, \"rank\": 945, \"rankvar\": 2082, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 632, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1061, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1068, \"group\": [1586.0, 870.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44373_BALBc-1_X02_Y01_322_353\", \"ini\": 2193, \"clust\": 537, \"rank\": 322, \"rankvar\": 1099, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 633, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2230, \"cat-2\": \"Density: 24\", \"cat_2_index\": 489, \"group\": [542.0, 370.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44527_BALBc-1_X02_Y01_324_319\", \"ini\": 2192, \"clust\": 1240, \"rank\": 1679, \"rankvar\": 2368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 634, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1626, \"cat-2\": \"Density: 24\", \"cat_2_index\": 490, \"group\": [1242.0, 623.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44555_BALBc-1_X02_Y01_324_635\", \"ini\": 2191, \"clust\": 1147, \"rank\": 1136, \"rankvar\": 70, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 635, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 940, \"cat-2\": \"Density: 27\", \"cat_2_index\": 911, \"group\": [1151.0, 551.0, 152.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45166_BALBc-1_X02_Y01_331_409\", \"ini\": 2190, \"clust\": 1801, \"rank\": 2705, \"rankvar\": 2814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 636, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2231, \"cat-2\": \"Density: 25\", \"cat_2_index\": 630, \"group\": [1803.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45200_BALBc-1_X02_Y01_331_901\", \"ini\": 2189, \"clust\": 378, \"rank\": 342, \"rankvar\": 1835, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 637, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1901, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1208, \"group\": [377.0, 262.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45510_BALBc-1_X02_Y01_335_873\", \"ini\": 2188, \"clust\": 1320, \"rank\": 884, \"rankvar\": 701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 638, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1062, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1069, \"group\": [1321.0, 689.0, 205.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45659_BALBc-1_X02_Y01_338_160\", \"ini\": 2187, \"clust\": 363, \"rank\": 324, \"rankvar\": 1872, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 639, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 801, \"cat-2\": \"Density: 26\", \"cat_2_index\": 755, \"group\": [363.0, 252.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45693_BALBc-1_X02_Y01_338_551\", \"ini\": 2186, \"clust\": 1242, \"rank\": 1786, \"rankvar\": 2390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 640, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2421, \"cat-2\": \"Density: 26\", \"cat_2_index\": 756, \"group\": [1241.0, 623.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46414_BALBc-1_X02_Y01_346_740\", \"ini\": 2185, \"clust\": 1650, \"rank\": 2201, \"rankvar\": 2157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 641, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1063, \"cat-2\": \"Density: 22\", \"cat_2_index\": 272, \"group\": [1653.0, 912.0, 264.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46504_BALBc-1_X02_Y01_348_114\", \"ini\": 2184, \"clust\": 822, \"rank\": 293, \"rankvar\": 29, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 642, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1902, \"cat-2\": \"Density: 20\", \"cat_2_index\": 148, \"group\": [823.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46508_BALBc-1_X02_Y01_348_141\", \"ini\": 2183, \"clust\": 611, \"rank\": 624, \"rankvar\": 802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 643, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1903, \"cat-2\": \"Density: 23\", \"cat_2_index\": 383, \"group\": [611.0, 414.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46935_BALBc-1_X02_Y01_352_73\", \"ini\": 2182, \"clust\": 616, \"rank\": 643, \"rankvar\": 712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 644, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1064, \"cat-2\": \"Density: 19\", \"cat_2_index\": 118, \"group\": [617.0, 418.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46949_BALBc-1_X02_Y01_352_958\", \"ini\": 2181, \"clust\": 395, \"rank\": 1697, \"rankvar\": 2738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 645, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1065, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2061, \"group\": [395.0, 276.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47181_BALBc-1_X02_Y01_355_871\", \"ini\": 2180, \"clust\": 329, \"rank\": 635, \"rankvar\": 2240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 646, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2273, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1209, \"group\": [333.0, 234.0, 82.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47567_BALBc-1_X02_Y01_360_631\", \"ini\": 2179, \"clust\": 715, \"rank\": 771, \"rankvar\": 628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 647, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1904, \"cat-2\": \"Density: 27\", \"cat_2_index\": 912, \"group\": [715.0, 458.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47808_BALBc-1_X02_Y01_363_91\", \"ini\": 2178, \"clust\": 1299, \"rank\": 1562, \"rankvar\": 1632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 648, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 681, \"cat-2\": \"Density: 20\", \"cat_2_index\": 149, \"group\": [1299.0, 670.0, 195.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47901_BALBc-1_X02_Y01_364_890\", \"ini\": 2177, \"clust\": 1661, \"rank\": 1795, \"rankvar\": 2623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 649, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1627, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1499, \"group\": [1660.0, 918.0, 267.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48689_BALBc-1_X02_Y01_374_207\", \"ini\": 2176, \"clust\": 1289, \"rank\": 1494, \"rankvar\": 2179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 650, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 802, \"cat-2\": \"Density: 22\", \"cat_2_index\": 273, \"group\": [1294.0, 665.0, 191.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48761_BALBc-1_X02_Y01_375_164\", \"ini\": 2175, \"clust\": 509, \"rank\": 602, \"rankvar\": 93, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 651, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 35, \"cat-2\": \"Density: 22\", \"cat_2_index\": 274, \"group\": [510.0, 350.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48973_BALBc-1_X02_Y01_377_883\", \"ini\": 2174, \"clust\": 658, \"rank\": 479, \"rankvar\": 223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 652, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2422, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1640, \"group\": [657.0, 439.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49252_BALBc-1_X02_Y01_380_635\", \"ini\": 2173, \"clust\": 1430, \"rank\": 2374, \"rankvar\": 2418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 653, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 803, \"cat-2\": \"Density: 27\", \"cat_2_index\": 913, \"group\": [1433.0, 779.0, 233.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49290_BALBc-1_X02_Y01_381_186\", \"ini\": 2172, \"clust\": 597, \"rank\": 461, \"rankvar\": 979, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 654, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 804, \"cat-2\": \"Density: 20\", \"cat_2_index\": 150, \"group\": [598.0, 409.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49698_BALBc-1_X02_Y01_386_108\", \"ini\": 2171, \"clust\": 625, \"rank\": 1020, \"rankvar\": 906, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 655, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 682, \"cat-2\": \"Density: 23\", \"cat_2_index\": 384, \"group\": [632.0, 425.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50061_BALBc-1_X02_Y01_39_635\", \"ini\": 2170, \"clust\": 1513, \"rank\": 1889, \"rankvar\": 2596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 656, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1905, \"cat-2\": \"Density: 22\", \"cat_2_index\": 275, \"group\": [1515.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50421_BALBc-1_X02_Y01_394_629\", \"ini\": 2169, \"clust\": 2405, \"rank\": 2511, \"rankvar\": 2655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 657, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2232, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1070, \"group\": [2406.0, 1276.0, 380.0, 103.0, 21.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50593_BALBc-1_X02_Y01_396_836\", \"ini\": 2168, \"clust\": 965, \"rank\": 219, \"rankvar\": 1736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 658, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1906, \"cat-2\": \"Density: 27\", \"cat_2_index\": 914, \"group\": [965.0, 495.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50814_BALBc-1_X02_Y01_399_570\", \"ini\": 2167, \"clust\": 662, \"rank\": 301, \"rankvar\": 51, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 659, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1907, \"cat-2\": \"Density: 27\", \"cat_2_index\": 915, \"group\": [661.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50857_BALBc-1_X02_Y01_4_1000\", \"ini\": 2166, \"clust\": 118, \"rank\": 1027, \"rankvar\": 573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 660, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1066, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1210, \"group\": [119.0, 75.0, 25.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50898_BALBc-1_X02_Y01_40_107\", \"ini\": 2165, \"clust\": 1613, \"rank\": 1898, \"rankvar\": 2531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 661, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 805, \"cat-2\": \"Density: 18\", \"cat_2_index\": 93, \"group\": [1613.0, 889.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51368_BALBc-1_X02_Y01_405_327\", \"ini\": 2164, \"clust\": 565, \"rank\": 928, \"rankvar\": 1788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 662, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1908, \"cat-2\": \"Density: 25\", \"cat_2_index\": 631, \"group\": [570.0, 390.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51852_BALBc-1_X02_Y01_410_23\", \"ini\": 2163, \"clust\": 75, \"rank\": 619, \"rankvar\": 1804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 663, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1067, \"cat-2\": \"Density: 13\", \"cat_2_index\": 13, \"group\": [78.0, 57.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51999_BALBc-1_X02_Y01_412_155\", \"ini\": 2162, \"clust\": 2525, \"rank\": 1137, \"rankvar\": 782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 664, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1541, \"cat-2\": \"Density: 26\", \"cat_2_index\": 757, \"group\": [2528.0, 1355.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52079_BALBc-1_X02_Y01_413_103\", \"ini\": 2161, \"clust\": 2789, \"rank\": 2077, \"rankvar\": 1988, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 665, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1542, \"cat-2\": \"Density: 26\", \"cat_2_index\": 758, \"group\": [2790.0, 1512.0, 450.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52251_BALBc-1_X02_Y01_415_13\", \"ini\": 2160, \"clust\": 2727, \"rank\": 2766, \"rankvar\": 2808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 666, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1068, \"cat-2\": \"Density: 13\", \"cat_2_index\": 14, \"group\": [2730.0, 1467.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52621_BALBc-1_X02_Y01_419_991\", \"ini\": 2159, \"clust\": 39, \"rank\": 738, \"rankvar\": 506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 667, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1069, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1848, \"group\": [39.0, 33.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52973_BALBc-1_X02_Y01_423_647\", \"ini\": 2158, \"clust\": 1590, \"rank\": 1700, \"rankvar\": 1854, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 668, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2233, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1211, \"group\": [1590.0, 873.0, 255.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53049_BALBc-1_X02_Y01_424_66\", \"ini\": 2157, \"clust\": 782, \"rank\": 281, \"rankvar\": 534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 669, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 683, \"cat-2\": \"Density: 21\", \"cat_2_index\": 201, \"group\": [782.0, 475.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53155_BALBc-1_X02_Y01_426_178\", \"ini\": 2156, \"clust\": 1214, \"rank\": 1118, \"rankvar\": 1392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 670, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1909, \"cat-2\": \"Density: 26\", \"cat_2_index\": 759, \"group\": [1215.0, 608.0, 172.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53404_BALBc-1_X02_Y01_429_1005\", \"ini\": 2155, \"clust\": 2142, \"rank\": 2443, \"rankvar\": 1827, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 671, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 36, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2142, \"group\": [2145.0, 1162.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53535_BALBc-1_X02_Y01_43_792\", \"ini\": 2154, \"clust\": 1630, \"rank\": 2707, \"rankvar\": 2811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 672, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1070, \"cat-2\": \"Density: 26\", \"cat_2_index\": 760, \"group\": [1630.0, 897.0, 260.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53582_BALBc-1_X02_Y01_430_391\", \"ini\": 2153, \"clust\": 1506, \"rank\": 2433, \"rankvar\": 1784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 673, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2423, \"cat-2\": \"Density: 23\", \"cat_2_index\": 385, \"group\": [1507.0, 816.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53678_BALBc-1_X02_Y01_431_589\", \"ini\": 2152, \"clust\": 657, \"rank\": 475, \"rankvar\": 726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 674, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2424, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1071, \"group\": [659.0, 439.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53767_BALBc-1_X02_Y01_432_601\", \"ini\": 2151, \"clust\": 332, \"rank\": 555, \"rankvar\": 1463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 675, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2425, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1500, \"group\": [331.0, 232.0, 82.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53917_BALBc-1_X02_Y01_434_617\", \"ini\": 2150, \"clust\": 1420, \"rank\": 2228, \"rankvar\": 1584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 676, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2234, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1212, \"group\": [1423.0, 769.0, 228.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54343_BALBc-1_X02_Y01_439_956\", \"ini\": 2149, \"clust\": 1575, \"rank\": 1678, \"rankvar\": 1459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 677, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 806, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2143, \"group\": [1576.0, 862.0, 252.0, 72.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54799_BALBc-1_X02_Y01_444_988\", \"ini\": 2148, \"clust\": 2477, \"rank\": 1788, \"rankvar\": 1494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 678, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1071, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2062, \"group\": [2478.0, 1325.0, 393.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54922_BALBc-1_X02_Y01_446_748\", \"ini\": 2147, \"clust\": 1614, \"rank\": 2318, \"rankvar\": 2353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 679, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1910, \"cat-2\": \"Density: 22\", \"cat_2_index\": 276, \"group\": [1614.0, 889.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55138_BALBc-1_X02_Y01_449_612\", \"ini\": 2146, \"clust\": 792, \"rank\": 60, \"rankvar\": 1857, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 680, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2426, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1369, \"group\": [794.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55205_BALBc-1_X02_Y01_45_516\", \"ini\": 2145, \"clust\": 1665, \"rank\": 973, \"rankvar\": 2155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 681, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2427, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1213, \"group\": [1665.0, 922.0, 268.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55330_BALBc-1_X02_Y01_451_348\", \"ini\": 2144, \"clust\": 1348, \"rank\": 853, \"rankvar\": 2224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 682, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1072, \"cat-2\": \"Density: 25\", \"cat_2_index\": 632, \"group\": [1349.0, 710.0, 211.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55345_BALBc-1_X02_Y01_451_533\", \"ini\": 2143, \"clust\": 1634, \"rank\": 2529, \"rankvar\": 2597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 683, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1726, \"cat-2\": \"Density: 27\", \"cat_2_index\": 916, \"group\": [1633.0, 900.0, 261.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55441_BALBc-1_X02_Y01_452_672\", \"ini\": 2142, \"clust\": 656, \"rank\": 284, \"rankvar\": 1337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 684, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2428, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1370, \"group\": [656.0, 438.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56039_BALBc-1_X02_Y01_46_538\", \"ini\": 2141, \"clust\": 311, \"rank\": 1725, \"rankvar\": 2731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 685, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2274, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1371, \"group\": [313.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56270_BALBc-1_X02_Y01_462_394\", \"ini\": 2140, \"clust\": 221, \"rank\": 1857, \"rankvar\": 2524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 686, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2429, \"cat-2\": \"Density: 25\", \"cat_2_index\": 633, \"group\": [223.0, 155.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56966_BALBc-1_X02_Y01_470_546\", \"ini\": 2139, \"clust\": 606, \"rank\": 271, \"rankvar\": 641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 687, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2275, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1501, \"group\": [606.0, 412.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57291_BALBc-1_X02_Y01_474_753\", \"ini\": 2138, \"clust\": 1111, \"rank\": 431, \"rankvar\": 165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 688, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1073, \"cat-2\": \"Density: 22\", \"cat_2_index\": 277, \"group\": [1110.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57690_BALBc-1_X02_Y01_479_652\", \"ini\": 2137, \"clust\": 1453, \"rank\": 1630, \"rankvar\": 1507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 689, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1911, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1372, \"group\": [1453.0, 790.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57946_BALBc-1_X02_Y01_482_291\", \"ini\": 2136, \"clust\": 1325, \"rank\": 1723, \"rankvar\": 1931, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 690, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1912, \"cat-2\": \"Density: 23\", \"cat_2_index\": 386, \"group\": [1330.0, 697.0, 208.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58045_BALBc-1_X02_Y01_483_527\", \"ini\": 2135, \"clust\": 1631, \"rank\": 2396, \"rankvar\": 2794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 691, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1727, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1373, \"group\": [1631.0, 898.0, 260.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58865_BALBc-1_X02_Y01_493_104\", \"ini\": 2134, \"clust\": 464, \"rank\": 1165, \"rankvar\": 936, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 692, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 684, \"cat-2\": \"Density: 24\", \"cat_2_index\": 491, \"group\": [464.0, 324.0, 111.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59155_BALBc-1_X02_Y01_496_623\", \"ini\": 2133, \"clust\": 2382, \"rank\": 2817, \"rankvar\": 2791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 693, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2276, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1502, \"group\": [2388.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59197_BALBc-1_X02_Y01_497_131\", \"ini\": 2132, \"clust\": 838, \"rank\": 116, \"rankvar\": 25, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 694, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2277, \"cat-2\": \"Density: 25\", \"cat_2_index\": 634, \"group\": [838.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59416_BALBc-1_X02_Y01_499_768\", \"ini\": 2131, \"clust\": 1384, \"rank\": 2000, \"rankvar\": 1265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 695, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1074, \"cat-2\": \"Density: 26\", \"cat_2_index\": 761, \"group\": [1392.0, 743.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59420_BALBc-1_X02_Y01_499_799\", \"ini\": 2130, \"clust\": 28, \"rank\": 369, \"rankvar\": 2132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 696, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1075, \"cat-2\": \"Density: 25\", \"cat_2_index\": 635, \"group\": [28.0, 27.0, 16.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59463_BALBc-1_X02_Y01_5_879\", \"ini\": 2129, \"clust\": 1294, \"rank\": 1535, \"rankvar\": 635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 697, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2430, \"cat-2\": \"Density: 27\", \"cat_2_index\": 917, \"group\": [1297.0, 668.0, 194.0, 55.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59517_BALBc-1_X02_Y01_50_888\", \"ini\": 2128, \"clust\": 660, \"rank\": 261, \"rankvar\": 71, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 698, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2431, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1214, \"group\": [662.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59710_BALBc-1_X02_Y01_502_573\", \"ini\": 2127, \"clust\": 647, \"rank\": 318, \"rankvar\": 386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 699, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2278, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1641, \"group\": [647.0, 435.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59712_BALBc-1_X02_Y01_502_604\", \"ini\": 2126, \"clust\": 958, \"rank\": 573, \"rankvar\": 1228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 700, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2279, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1952, \"group\": [957.0, 490.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59744_BALBc-1_X02_Y01_502_986\", \"ini\": 2125, \"clust\": 11, \"rank\": 1186, \"rankvar\": 365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 701, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1076, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2144, \"group\": [12.0, 11.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60337_BALBc-1_X02_Y01_51_580\", \"ini\": 2124, \"clust\": 612, \"rank\": 721, \"rankvar\": 696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 702, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2280, \"cat-2\": \"Density: 27\", \"cat_2_index\": 918, \"group\": [612.0, 414.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60489_BALBc-1_X02_Y01_511_561\", \"ini\": 2123, \"clust\": 1642, \"rank\": 2060, \"rankvar\": 2548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 703, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1728, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1751, \"group\": [1641.0, 904.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61166_BALBc-1_X02_Y01_52_424\", \"ini\": 2122, \"clust\": 1568, \"rank\": 651, \"rankvar\": 137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 704, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1077, \"cat-2\": \"Density: 24\", \"cat_2_index\": 492, \"group\": [1569.0, 858.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61199_BALBc-1_X02_Y01_52_776\", \"ini\": 2121, \"clust\": 1216, \"rank\": 877, \"rankvar\": 1889, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 705, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2432, \"cat-2\": \"Density: 24\", \"cat_2_index\": 493, \"group\": [1216.0, 609.0, 173.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61388_BALBc-1_X02_Y01_521_982\", \"ini\": 2120, \"clust\": 1885, \"rank\": 1613, \"rankvar\": 1620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 706, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2235, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1953, \"group\": [1885.0, 1075.0, 328.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62377_BALBc-1_X02_Y01_533_933\", \"ini\": 2119, \"clust\": 1433, \"rank\": 2163, \"rankvar\": 1503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 707, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1913, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1752, \"group\": [1436.0, 782.0, 234.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62863_BALBc-1_X02_Y01_54_847\", \"ini\": 2118, \"clust\": 451, \"rank\": 737, \"rankvar\": 1523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 708, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2485, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1072, \"group\": [452.0, 315.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62911_BALBc-1_X02_Y01_540_549\", \"ini\": 2117, \"clust\": 1508, \"rank\": 2687, \"rankvar\": 2716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 709, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2433, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1073, \"group\": [1508.0, 817.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62931_BALBc-1_X02_Y01_540_834\", \"ini\": 2116, \"clust\": 864, \"rank\": 13, \"rankvar\": 763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 710, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1914, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1503, \"group\": [864.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63142_BALBc-1_X02_Y01_543_585\", \"ini\": 2115, \"clust\": 1509, \"rank\": 2630, \"rankvar\": 2774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 711, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2281, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1215, \"group\": [1509.0, 817.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63191_BALBc-1_X02_Y01_543_972\", \"ini\": 2114, \"clust\": 1226, \"rank\": 2517, \"rankvar\": 2339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 712, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 807, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1753, \"group\": [1228.0, 617.0, 176.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63252_BALBc-1_X02_Y01_544_650\", \"ini\": 2113, \"clust\": 1587, \"rank\": 601, \"rankvar\": 1924, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 713, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2282, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1216, \"group\": [1587.0, 870.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63692_BALBc-1_X02_Y01_55_1003\", \"ini\": 2112, \"clust\": 1359, \"rank\": 2490, \"rankvar\": 2498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 714, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1078, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1374, \"group\": [1362.0, 723.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63713_BALBc-1_X02_Y01_55_344\", \"ini\": 2111, \"clust\": 547, \"rank\": 595, \"rankvar\": 1127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 715, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1915, \"cat-2\": \"Density: 26\", \"cat_2_index\": 762, \"group\": [545.0, 372.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63995_BALBc-1_X02_Y01_552_987\", \"ini\": 2110, \"clust\": 166, \"rank\": 1485, \"rankvar\": 1659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 716, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1079, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1642, \"group\": [166.0, 107.0, 35.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64052_BALBc-1_X02_Y01_553_695\", \"ini\": 2109, \"clust\": 966, \"rank\": 404, \"rankvar\": 690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 717, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2434, \"cat-2\": \"Density: 26\", \"cat_2_index\": 763, \"group\": [966.0, 495.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64156_BALBc-1_X02_Y01_555_138\", \"ini\": 2108, \"clust\": 2526, \"rank\": 1009, \"rankvar\": 1412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 718, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 685, \"cat-2\": \"Density: 26\", \"cat_2_index\": 764, \"group\": [2526.0, 1355.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64283_BALBc-1_X02_Y01_556_902\", \"ini\": 2107, \"clust\": 1485, \"rank\": 2424, \"rankvar\": 2341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 719, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1916, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2145, \"group\": [1484.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64567_BALBc-1_X02_Y01_56_378\", \"ini\": 2106, \"clust\": 338, \"rank\": 665, \"rankvar\": 218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 720, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2435, \"cat-2\": \"Density: 26\", \"cat_2_index\": 765, \"group\": [341.0, 238.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64703_BALBc-1_X02_Y01_561_10\", \"ini\": 2105, \"clust\": 165, \"rank\": 1600, \"rankvar\": 1595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 721, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1729, \"cat-2\": \"Density: 15\", \"cat_2_index\": 43, \"group\": [168.0, 109.0, 36.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64934_BALBc-1_X02_Y01_564_219\", \"ini\": 2104, \"clust\": 238, \"rank\": 1071, \"rankvar\": 1199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 722, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2436, \"cat-2\": \"Density: 24\", \"cat_2_index\": 494, \"group\": [242.0, 169.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65293_BALBc-1_X02_Y01_568_803\", \"ini\": 2103, \"clust\": 632, \"rank\": 462, \"rankvar\": 814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 723, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1628, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1849, \"group\": [633.0, 426.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65644_BALBc-1_X02_Y01_572_683\", \"ini\": 2102, \"clust\": 334, \"rank\": 958, \"rankvar\": 1665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 724, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 686, \"cat-2\": \"Density: 25\", \"cat_2_index\": 636, \"group\": [334.0, 235.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66649_BALBc-1_X02_Y01_585_154\", \"ini\": 2101, \"clust\": 1023, \"rank\": 356, \"rankvar\": 80, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 725, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 687, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1217, \"group\": [1023.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67382_BALBc-1_X02_Y01_593_27\", \"ini\": 2100, \"clust\": 1454, \"rank\": 1989, \"rankvar\": 859, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 726, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2519, \"cat-2\": \"Density: 15\", \"cat_2_index\": 44, \"group\": [1455.0, 792.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67833_BALBc-1_X02_Y01_599_219\", \"ini\": 2099, \"clust\": 805, \"rank\": 159, \"rankvar\": 498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 727, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2437, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1074, \"group\": [806.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68344_BALBc-1_X02_Y01_604_682\", \"ini\": 2098, \"clust\": 465, \"rank\": 920, \"rankvar\": 1049, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 728, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1917, \"cat-2\": \"Density: 26\", \"cat_2_index\": 766, \"group\": [465.0, 325.0, 111.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68440_BALBc-1_X02_Y01_605_807\", \"ini\": 2097, \"clust\": 1722, \"rank\": 2459, \"rankvar\": 2784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 729, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 808, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1643, \"group\": [1724.0, 970.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68443_BALBc-1_X02_Y01_605_835\", \"ini\": 2096, \"clust\": 1549, \"rank\": 706, \"rankvar\": 1514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 730, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1918, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1504, \"group\": [1551.0, 841.0, 243.0, 69.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68542_BALBc-1_X02_Y01_607_143\", \"ini\": 2095, \"clust\": 2732, \"rank\": 2082, \"rankvar\": 2433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 731, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 688, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1218, \"group\": [2731.0, 1468.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68978_BALBc-1_X02_Y01_611_516\", \"ini\": 2094, \"clust\": 1496, \"rank\": 2799, \"rankvar\": 2773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 732, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1919, \"cat-2\": \"Density: 25\", \"cat_2_index\": 637, \"group\": [1494.0, 806.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69185_BALBc-1_X02_Y01_614_181\", \"ini\": 2093, \"clust\": 2725, \"rank\": 2236, \"rankvar\": 2493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 733, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 689, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1075, \"group\": [2725.0, 1464.0, 430.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70273_BALBc-1_X02_Y01_627_209\", \"ini\": 2092, \"clust\": 1682, \"rank\": 1540, \"rankvar\": 2068, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 734, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1730, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1219, \"group\": [1687.0, 944.0, 280.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70491_BALBc-1_X02_Y01_63_250\", \"ini\": 2091, \"clust\": 883, \"rank\": 19, \"rankvar\": 470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 735, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1920, \"cat-2\": \"Density: 24\", \"cat_2_index\": 495, \"group\": [883.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71443_BALBc-1_X02_Y01_640_235\", \"ini\": 2090, \"clust\": 1363, \"rank\": 2628, \"rankvar\": 2778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 736, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2438, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1644, \"group\": [1364.0, 725.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71479_BALBc-1_X02_Y01_640_560\", \"ini\": 2089, \"clust\": 1481, \"rank\": 2385, \"rankvar\": 2325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 737, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2439, \"cat-2\": \"Density: 25\", \"cat_2_index\": 638, \"group\": [1482.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71570_BALBc-1_X02_Y01_642_167\", \"ini\": 2088, \"clust\": 247, \"rank\": 955, \"rankvar\": 97, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 738, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1731, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1076, \"group\": [251.0, 174.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71733_BALBc-1_X02_Y01_643_984\", \"ini\": 2087, \"clust\": 1254, \"rank\": 2596, \"rankvar\": 2244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 739, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2283, \"cat-2\": \"Density: 27\", \"cat_2_index\": 919, \"group\": [1255.0, 636.0, 181.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71734_BALBc-1_X02_Y01_643_999\", \"ini\": 2086, \"clust\": 757, \"rank\": 214, \"rankvar\": 700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 740, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1629, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1220, \"group\": [756.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72068_BALBc-1_X02_Y01_648_425\", \"ini\": 2085, \"clust\": 1382, \"rank\": 1949, \"rankvar\": 2168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 741, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1921, \"cat-2\": \"Density: 22\", \"cat_2_index\": 278, \"group\": [1383.0, 735.0, 216.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72274_BALBc-1_X02_Y01_650_104\", \"ini\": 2084, \"clust\": 1208, \"rank\": 835, \"rankvar\": 1347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 742, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 690, \"cat-2\": \"Density: 27\", \"cat_2_index\": 920, \"group\": [1208.0, 601.0, 170.0, 46.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72329_BALBc-1_X02_Y01_650_882\", \"ini\": 2083, \"clust\": 1301, \"rank\": 1239, \"rankvar\": 562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 743, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1732, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1754, \"group\": [1303.0, 674.0, 197.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72440_BALBc-1_X02_Y01_652_474\", \"ini\": 2082, \"clust\": 1489, \"rank\": 2708, \"rankvar\": 2730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 744, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 809, \"cat-2\": \"Density: 26\", \"cat_2_index\": 767, \"group\": [1487.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73095_BALBc-1_X02_Y01_66_970\", \"ini\": 2081, \"clust\": 1917, \"rank\": 2073, \"rankvar\": 1817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 745, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1080, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1755, \"group\": [1918.0, 1102.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73185_BALBc-1_X02_Y01_661_141\", \"ini\": 2080, \"clust\": 2615, \"rank\": 1260, \"rankvar\": 1296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 746, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 810, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1221, \"group\": [2616.0, 1413.0, 417.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73278_BALBc-1_X02_Y01_661_947\", \"ini\": 2079, \"clust\": 1612, \"rank\": 1503, \"rankvar\": 1961, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 747, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1081, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1077, \"group\": [1615.0, 890.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73431_BALBc-1_X02_Y01_664_117\", \"ini\": 2078, \"clust\": 532, \"rank\": 518, \"rankvar\": 1064, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 748, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1630, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1222, \"group\": [535.0, 366.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73653_BALBc-1_X02_Y01_667_199\", \"ini\": 2077, \"clust\": 1391, \"rank\": 2333, \"rankvar\": 2366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 749, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1733, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1375, \"group\": [1390.0, 741.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73761_BALBc-1_X02_Y01_668_692\", \"ini\": 2076, \"clust\": 558, \"rank\": 862, \"rankvar\": 204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 750, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2486, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1223, \"group\": [563.0, 387.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74145_BALBc-1_X02_Y01_672_798\", \"ini\": 2075, \"clust\": 1621, \"rank\": 1927, \"rankvar\": 2365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 751, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1082, \"cat-2\": \"Density: 27\", \"cat_2_index\": 921, \"group\": [1620.0, 892.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74412_BALBc-1_X02_Y01_675_754\", \"ini\": 2074, \"clust\": 1692, \"rank\": 2733, \"rankvar\": 2674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 752, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1083, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1224, \"group\": [1693.0, 950.0, 284.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74523_BALBc-1_X02_Y01_677_25\", \"ini\": 2073, \"clust\": 1721, \"rank\": 2160, \"rankvar\": 1786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 753, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 811, \"cat-2\": \"Density: 16\", \"cat_2_index\": 57, \"group\": [1725.0, 971.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74897_BALBc-1_X02_Y01_681_262\", \"ini\": 2072, \"clust\": 1811, \"rank\": 2465, \"rankvar\": 2749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 754, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1578, \"cat-2\": \"Density: 25\", \"cat_2_index\": 639, \"group\": [1811.0, 1024.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75174_BALBc-1_X02_Y01_685_173\", \"ini\": 2071, \"clust\": 220, \"rank\": 1300, \"rankvar\": 1384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 755, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 812, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1078, \"group\": [220.0, 152.0, 53.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75539_BALBc-1_X02_Y01_689_937\", \"ini\": 2070, \"clust\": 1504, \"rank\": 2660, \"rankvar\": 2665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 756, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1084, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1225, \"group\": [1503.0, 812.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75915_BALBc-1_X02_Y01_694_130\", \"ini\": 2069, \"clust\": 669, \"rank\": 164, \"rankvar\": 1316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 757, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1631, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1226, \"group\": [667.0, 442.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75959_BALBc-1_X02_Y01_694_670\", \"ini\": 2068, \"clust\": 508, \"rank\": 1012, \"rankvar\": 678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 758, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2440, \"cat-2\": \"Density: 25\", \"cat_2_index\": 640, \"group\": [509.0, 349.0, 118.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76516_BALBc-1_X02_Y01_70_895\", \"ini\": 2067, \"clust\": 1645, \"rank\": 1337, \"rankvar\": 2724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 759, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2441, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1376, \"group\": [1644.0, 905.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77517_BALBc-1_X02_Y01_712_265\", \"ini\": 2066, \"clust\": 1858, \"rank\": 2202, \"rankvar\": 2593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 760, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 813, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1227, \"group\": [1862.0, 1053.0, 317.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77678_BALBc-1_X02_Y01_714_293\", \"ini\": 2065, \"clust\": 1695, \"rank\": 1695, \"rankvar\": 2671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 761, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 814, \"cat-2\": \"Density: 27\", \"cat_2_index\": 922, \"group\": [1695.0, 952.0, 285.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77685_BALBc-1_X02_Y01_714_40\", \"ini\": 2064, \"clust\": 2790, \"rank\": 1238, \"rankvar\": 1684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 762, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 815, \"cat-2\": \"Density: 23\", \"cat_2_index\": 387, \"group\": [2791.0, 1513.0, 450.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77734_BALBc-1_X02_Y01_714_974\", \"ini\": 2063, \"clust\": 2747, \"rank\": 1654, \"rankvar\": 2072, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 763, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2284, \"cat-2\": \"Density: 27\", \"cat_2_index\": 923, \"group\": [2751.0, 1486.0, 440.0, 116.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78145_BALBc-1_X02_Y01_72_12\", \"ini\": 2062, \"clust\": 654, \"rank\": 532, \"rankvar\": 135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 764, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1922, \"cat-2\": \"Density: 13\", \"cat_2_index\": 15, \"group\": [654.0, 437.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78540_BALBc-1_X02_Y01_724_107\", \"ini\": 2061, \"clust\": 2733, \"rank\": 2194, \"rankvar\": 2336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 765, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 816, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1377, \"group\": [2732.0, 1468.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79190_BALBc-1_X02_Y01_731_769\", \"ini\": 2060, \"clust\": 1743, \"rank\": 1497, \"rankvar\": 2086, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 766, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1085, \"cat-2\": \"Density: 27\", \"cat_2_index\": 924, \"group\": [1749.0, 990.0, 298.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79300_BALBc-1_X02_Y01_733_29\", \"ini\": 2059, \"clust\": 202, \"rank\": 1124, \"rankvar\": 362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 767, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1543, \"cat-2\": \"Density: 20\", \"cat_2_index\": 151, \"group\": [202.0, 136.0, 46.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79428_BALBc-1_X02_Y01_734_627\", \"ini\": 2058, \"clust\": 2557, \"rank\": 2349, \"rankvar\": 2587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 768, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2236, \"cat-2\": \"Density: 25\", \"cat_2_index\": 641, \"group\": [2556.0, 1378.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79624_BALBc-1_X02_Y01_737_12\", \"ini\": 2057, \"clust\": 666, \"rank\": 437, \"rankvar\": 585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 769, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 37, \"cat-2\": \"Density: 18\", \"cat_2_index\": 94, \"group\": [671.0, 444.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80316_BALBc-1_X02_Y01_745_334\", \"ini\": 2056, \"clust\": 1693, \"rank\": 2603, \"rankvar\": 2412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 770, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1923, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1079, \"group\": [1694.0, 951.0, 284.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80359_BALBc-1_X02_Y01_745_91\", \"ini\": 2055, \"clust\": 944, \"rank\": 59, \"rankvar\": 375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 771, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 817, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1756, \"group\": [945.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80734_BALBc-1_X02_Y01_75_602\", \"ini\": 2054, \"clust\": 283, \"rank\": 1673, \"rankvar\": 2020, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 772, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2285, \"cat-2\": \"Density: 26\", \"cat_2_index\": 768, \"group\": [283.0, 205.0, 75.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81293_BALBc-1_X02_Y01_756_706\", \"ini\": 2053, \"clust\": 1668, \"rank\": 1183, \"rankvar\": 1782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 773, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2237, \"cat-2\": \"Density: 24\", \"cat_2_index\": 496, \"group\": [1669.0, 926.0, 271.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81486_BALBc-1_X02_Y01_759_199\", \"ini\": 2052, \"clust\": 2788, \"rank\": 1653, \"rankvar\": 1693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 774, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1086, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1505, \"group\": [2789.0, 1511.0, 450.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81590_BALBc-1_X02_Y01_76_583\", \"ini\": 2051, \"clust\": 694, \"rank\": 228, \"rankvar\": 2148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 775, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2286, \"cat-2\": \"Density: 25\", \"cat_2_index\": 642, \"group\": [693.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81902_BALBc-1_X02_Y01_763_671\", \"ini\": 2050, \"clust\": 1439, \"rank\": 2693, \"rankvar\": 2301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 776, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 818, \"cat-2\": \"Density: 26\", \"cat_2_index\": 769, \"group\": [1441.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82140_BALBc-1_X02_Y01_767_163\", \"ini\": 2049, \"clust\": 1860, \"rank\": 1875, \"rankvar\": 2492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 777, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2287, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1954, \"group\": [1859.0, 1051.0, 317.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82308_BALBc-1_X02_Y01_768_99\", \"ini\": 2048, \"clust\": 343, \"rank\": 1140, \"rankvar\": 1189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 778, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1544, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1645, \"group\": [343.0, 239.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82369_BALBc-1_X02_Y01_769_770\", \"ini\": 2047, \"clust\": 1162, \"rank\": 371, \"rankvar\": 1395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 779, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1632, \"cat-2\": \"Density: 25\", \"cat_2_index\": 643, \"group\": [1164.0, 560.0, 155.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83169_BALBc-1_X02_Y01_779_23\", \"ini\": 2046, \"clust\": 1197, \"rank\": 882, \"rankvar\": 1519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 780, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1087, \"cat-2\": \"Density: 24\", \"cat_2_index\": 497, \"group\": [1200.0, 593.0, 167.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83364_BALBc-1_X02_Y01_780_79\", \"ini\": 2045, \"clust\": 910, \"rank\": 122, \"rankvar\": 100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 781, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1545, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1757, \"group\": [908.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84196_BALBc-1_X02_Y01_790_748\", \"ini\": 2044, \"clust\": 1629, \"rank\": 2676, \"rankvar\": 2816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 782, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2487, \"cat-2\": \"Density: 24\", \"cat_2_index\": 498, \"group\": [1632.0, 899.0, 260.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84357_BALBc-1_X02_Y01_792_686\", \"ini\": 2043, \"clust\": 1383, \"rank\": 1458, \"rankvar\": 947, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 783, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 819, \"cat-2\": \"Density: 22\", \"cat_2_index\": 279, \"group\": [1384.0, 736.0, 216.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84582_BALBc-1_X02_Y01_795_344\", \"ini\": 2042, \"clust\": 1525, \"rank\": 1686, \"rankvar\": 595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 784, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2288, \"cat-2\": \"Density: 25\", \"cat_2_index\": 644, \"group\": [1529.0, 826.0, 241.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84699_BALBc-1_X02_Y01_796_71\", \"ini\": 2041, \"clust\": 2245, \"rank\": 1720, \"rankvar\": 1916, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 785, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2289, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1646, \"group\": [2244.0, 1222.0, 367.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85322_BALBc-1_X02_Y01_802_832\", \"ini\": 2040, \"clust\": 688, \"rank\": 194, \"rankvar\": 816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 786, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1924, \"cat-2\": \"Density: 27\", \"cat_2_index\": 925, \"group\": [688.0, 453.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85337_BALBc-1_X02_Y01_803_103\", \"ini\": 2039, \"clust\": 1392, \"rank\": 1320, \"rankvar\": 105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 787, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 943, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1850, \"group\": [1400.0, 750.0, 220.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85500_BALBc-1_X02_Y01_805_277\", \"ini\": 2038, \"clust\": 1542, \"rank\": 2504, \"rankvar\": 2328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 788, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2488, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1378, \"group\": [1542.0, 835.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85553_BALBc-1_X02_Y01_805_711\", \"ini\": 2037, \"clust\": 1148, \"rank\": 1132, \"rankvar\": 1321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 789, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2442, \"cat-2\": \"Density: 23\", \"cat_2_index\": 388, \"group\": [1150.0, 550.0, 151.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85954_BALBc-1_X02_Y01_810_220\", \"ini\": 2036, \"clust\": 2239, \"rank\": 2329, \"rankvar\": 1904, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 790, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2290, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1647, \"group\": [2243.0, 1221.0, 366.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86607_BALBc-1_X02_Y01_818_617\", \"ini\": 2035, \"clust\": 1498, \"rank\": 2296, \"rankvar\": 2424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 791, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 820, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1080, \"group\": [1500.0, 810.0, 238.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86719_BALBc-1_X02_Y01_82_404\", \"ini\": 2034, \"clust\": 1429, \"rank\": 1574, \"rankvar\": 381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 792, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1088, \"cat-2\": \"Density: 26\", \"cat_2_index\": 770, \"group\": [1427.0, 773.0, 230.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87009_BALBc-1_X02_Y01_822_96\", \"ini\": 2033, \"clust\": 1427, \"rank\": 1672, \"rankvar\": 669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 793, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1734, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2222, \"group\": [1428.0, 774.0, 230.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87084_BALBc-1_X02_Y01_823_81\", \"ini\": 2032, \"clust\": 172, \"rank\": 622, \"rankvar\": 2061, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 794, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1735, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1851, \"group\": [175.0, 113.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87109_BALBc-1_X02_Y01_824_179\", \"ini\": 2031, \"clust\": 1861, \"rank\": 1867, \"rankvar\": 2664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 795, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2291, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1852, \"group\": [1860.0, 1051.0, 317.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87294_BALBc-1_X02_Y01_826_54\", \"ini\": 2030, \"clust\": 1862, \"rank\": 1580, \"rankvar\": 1162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 796, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1736, \"cat-2\": \"Density: 26\", \"cat_2_index\": 771, \"group\": [1863.0, 1054.0, 318.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87491_BALBc-1_X02_Y01_828_989\", \"ini\": 2029, \"clust\": 1456, \"rank\": 1864, \"rankvar\": 612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 797, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1925, \"cat-2\": \"Density: 26\", \"cat_2_index\": 772, \"group\": [1457.0, 793.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87558_BALBc-1_X02_Y01_829_961\", \"ini\": 2028, \"clust\": 1394, \"rank\": 1229, \"rankvar\": 1382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 798, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 821, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1081, \"group\": [1393.0, 744.0, 218.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87735_BALBc-1_X02_Y01_831_448\", \"ini\": 2027, \"clust\": 1599, \"rank\": 1748, \"rankvar\": 2297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 799, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2443, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1379, \"group\": [1602.0, 884.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87925_BALBc-1_X02_Y01_834_297\", \"ini\": 2026, \"clust\": 1467, \"rank\": 2325, \"rankvar\": 1793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 800, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1926, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1380, \"group\": [1465.0, 798.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88101_BALBc-1_X02_Y01_836_594\", \"ini\": 2025, \"clust\": 233, \"rank\": 1074, \"rankvar\": 1186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 801, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1927, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1082, \"group\": [232.0, 161.0, 57.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88212_BALBc-1_X02_Y01_837_889\", \"ini\": 2024, \"clust\": 1246, \"rank\": 1666, \"rankvar\": 1495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 802, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1928, \"cat-2\": \"Density: 27\", \"cat_2_index\": 926, \"group\": [1247.0, 628.0, 179.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88228_BALBc-1_X02_Y01_838_199\", \"ini\": 2023, \"clust\": 463, \"rank\": 968, \"rankvar\": 1692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 803, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 822, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1955, \"group\": [466.0, 326.0, 112.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88242_BALBc-1_X02_Y01_838_433\", \"ini\": 2022, \"clust\": 228, \"rank\": 1900, \"rankvar\": 2007, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 804, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1737, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1228, \"group\": [229.0, 160.0, 56.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88501_BALBc-1_X02_Y01_840_810\", \"ini\": 2021, \"clust\": 239, \"rank\": 845, \"rankvar\": 1469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 805, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1929, \"cat-2\": \"Density: 23\", \"cat_2_index\": 389, \"group\": [241.0, 168.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88562_BALBc-1_X02_Y01_841_513\", \"ini\": 2020, \"clust\": 347, \"rank\": 452, \"rankvar\": 2197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 806, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1930, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1956, \"group\": [346.0, 241.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88609_BALBc-1_X02_Y01_842_154\", \"ini\": 2019, \"clust\": 1840, \"rank\": 1644, \"rankvar\": 1774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 807, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1738, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2146, \"group\": [1843.0, 1036.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88759_BALBc-1_X02_Y01_844_26\", \"ini\": 2018, \"clust\": 1561, \"rank\": 778, \"rankvar\": 1587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 808, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2444, \"cat-2\": \"Density: 20\", \"cat_2_index\": 152, \"group\": [1562.0, 851.0, 248.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88814_BALBc-1_X02_Y01_844_864\", \"ini\": 2017, \"clust\": 319, \"rank\": 1987, \"rankvar\": 1990, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 809, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1931, \"cat-2\": \"Density: 27\", \"cat_2_index\": 927, \"group\": [320.0, 223.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88845_BALBc-1_X02_Y01_845_321\", \"ini\": 2016, \"clust\": 344, \"rank\": 524, \"rankvar\": 2283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 810, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1739, \"cat-2\": \"Density: 27\", \"cat_2_index\": 928, \"group\": [348.0, 243.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89110_BALBc-1_X02_Y01_848_694\", \"ini\": 2015, \"clust\": 211, \"rank\": 993, \"rankvar\": 1864, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 811, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2238, \"cat-2\": \"Density: 22\", \"cat_2_index\": 280, \"group\": [212.0, 144.0, 50.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90038_BALBc-1_X02_Y01_859_742\", \"ini\": 2014, \"clust\": 212, \"rank\": 1231, \"rankvar\": 1501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 812, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1932, \"cat-2\": \"Density: 26\", \"cat_2_index\": 773, \"group\": [213.0, 145.0, 50.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90134_BALBc-1_X02_Y01_86_851\", \"ini\": 2013, \"clust\": 685, \"rank\": 506, \"rankvar\": 2035, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 813, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 691, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1648, \"group\": [685.0, 451.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91113_BALBc-1_X02_Y01_871_608\", \"ini\": 2012, \"clust\": 1457, \"rank\": 1916, \"rankvar\": 2125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 814, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1633, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1381, \"group\": [1458.0, 794.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91313_BALBc-1_X02_Y01_874_166\", \"ini\": 2011, \"clust\": 1841, \"rank\": 1614, \"rankvar\": 1968, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 815, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1740, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2223, \"group\": [1842.0, 1035.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91333_BALBc-1_X02_Y01_874_423\", \"ini\": 2010, \"clust\": 1437, \"rank\": 2594, \"rankvar\": 2170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 816, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1933, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1382, \"group\": [1437.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91389_BALBc-1_X02_Y01_875_273\", \"ini\": 2009, \"clust\": 1534, \"rank\": 1978, \"rankvar\": 2199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 817, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1934, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1853, \"group\": [1537.0, 832.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91790_BALBc-1_X02_Y01_88_353\", \"ini\": 2008, \"clust\": 1566, \"rank\": 925, \"rankvar\": 124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 818, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1935, \"cat-2\": \"Density: 27\", \"cat_2_index\": 929, \"group\": [1567.0, 856.0, 250.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91944_BALBc-1_X02_Y01_881_300\", \"ini\": 2007, \"clust\": 961, \"rank\": 415, \"rankvar\": 294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 819, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 823, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1383, \"group\": [962.0, 493.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92119_BALBc-1_X02_Y01_883_690\", \"ini\": 2006, \"clust\": 1200, \"rank\": 1517, \"rankvar\": 2198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 820, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2445, \"cat-2\": \"Density: 24\", \"cat_2_index\": 499, \"group\": [1206.0, 599.0, 169.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92234_BALBc-1_X02_Y01_885_483\", \"ini\": 2005, \"clust\": 272, \"rank\": 1712, \"rankvar\": 1397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 821, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1936, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2063, \"group\": [272.0, 194.0, 70.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92639_BALBc-1_X02_Y01_89_950\", \"ini\": 2004, \"clust\": 1269, \"rank\": 1331, \"rankvar\": 2586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 822, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 824, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1957, \"group\": [1269.0, 648.0, 187.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92716_BALBc-1_X02_Y01_890_939\", \"ini\": 2003, \"clust\": 754, \"rank\": 240, \"rankvar\": 32, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 823, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1089, \"cat-2\": \"Density: 25\", \"cat_2_index\": 645, \"group\": [754.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92826_BALBc-1_X02_Y01_892_493\", \"ini\": 2002, \"clust\": 1581, \"rank\": 1114, \"rankvar\": 1850, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 824, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1937, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1758, \"group\": [1582.0, 867.0, 254.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92861_BALBc-1_X02_Y01_892_982\", \"ini\": 2001, \"clust\": 1183, \"rank\": 841, \"rankvar\": 491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 825, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 825, \"cat-2\": \"Density: 26\", \"cat_2_index\": 774, \"group\": [1184.0, 577.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93022_BALBc-1_X02_Y01_894_971\", \"ini\": 2000, \"clust\": 2403, \"rank\": 2773, \"rankvar\": 2450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 826, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1090, \"cat-2\": \"Density: 26\", \"cat_2_index\": 775, \"group\": [2403.0, 1273.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93068_BALBc-1_X02_Y01_895_559\", \"ini\": 1999, \"clust\": 455, \"rank\": 1263, \"rankvar\": 2273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 827, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1938, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1854, \"group\": [460.0, 320.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93323_BALBc-1_X02_Y01_898_909\", \"ini\": 1998, \"clust\": 622, \"rank\": 221, \"rankvar\": 672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 828, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1091, \"cat-2\": \"Density: 26\", \"cat_2_index\": 776, \"group\": [622.0, 420.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93904_BALBc-1_X02_Y01_905_249\", \"ini\": 1997, \"clust\": 1284, \"rank\": 1957, \"rankvar\": 2357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 829, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 826, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2147, \"group\": [1286.0, 657.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93971_BALBc-1_X02_Y01_906_130\", \"ini\": 1996, \"clust\": 1891, \"rank\": 2697, \"rankvar\": 2719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 830, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1741, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2148, \"group\": [1891.0, 1081.0, 330.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94356_BALBc-1_X02_Y01_910_484\", \"ini\": 1995, \"clust\": 229, \"rank\": 1235, \"rankvar\": 1444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 831, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2446, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1759, \"group\": [230.0, 160.0, 56.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94868_BALBc-1_X02_Y01_917_430\", \"ini\": 1994, \"clust\": 1490, \"rank\": 2582, \"rankvar\": 2554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 832, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1939, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1229, \"group\": [1488.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95225_BALBc-1_X02_Y01_920_863\", \"ini\": 1993, \"clust\": 689, \"rank\": 537, \"rankvar\": 277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 833, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1940, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1384, \"group\": [689.0, 453.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95582_BALBc-1_X02_Y01_925_541\", \"ini\": 1992, \"clust\": 1644, \"rank\": 1490, \"rankvar\": 2706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 834, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1941, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1855, \"group\": [1645.0, 905.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95746_BALBc-1_X02_Y01_927_54\", \"ini\": 1991, \"clust\": 1378, \"rank\": 1945, \"rankvar\": 2398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 835, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1742, \"cat-2\": \"Density: 21\", \"cat_2_index\": 202, \"group\": [1379.0, 733.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96191_BALBc-1_X02_Y01_932_492\", \"ini\": 1990, \"clust\": 1478, \"rank\": 2686, \"rankvar\": 2065, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 836, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1942, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1958, \"group\": [1479.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96279_BALBc-1_X02_Y01_933_566\", \"ini\": 1989, \"clust\": 561, \"rank\": 1146, \"rankvar\": 1417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 837, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1092, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1506, \"group\": [561.0, 385.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96334_BALBc-1_X02_Y01_934_380\", \"ini\": 1988, \"clust\": 1596, \"rank\": 1561, \"rankvar\": 2018, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 838, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1943, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1083, \"group\": [1597.0, 879.0, 257.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96344_BALBc-1_X02_Y01_934_613\", \"ini\": 1987, \"clust\": 1539, \"rank\": 2553, \"rankvar\": 2666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 839, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2489, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1507, \"group\": [1539.0, 833.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96459_BALBc-1_X02_Y01_935_966\", \"ini\": 1986, \"clust\": 1306, \"rank\": 1375, \"rankvar\": 1771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 840, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1093, \"cat-2\": \"Density: 26\", \"cat_2_index\": 777, \"group\": [1313.0, 681.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96674_BALBc-1_X02_Y01_939_112\", \"ini\": 1985, \"clust\": 1434, \"rank\": 2565, \"rankvar\": 2256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 841, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 944, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1760, \"group\": [1434.0, 780.0, 234.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97053_BALBc-1_X02_Y01_943_180\", \"ini\": 1984, \"clust\": 1462, \"rank\": 1781, \"rankvar\": 1975, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 842, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1944, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1959, \"group\": [1461.0, 797.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97263_BALBc-1_X02_Y01_945_522\", \"ini\": 1983, \"clust\": 1463, \"rank\": 2103, \"rankvar\": 2694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 843, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2292, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1960, \"group\": [1462.0, 797.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97534_BALBc-1_X02_Y01_949_394\", \"ini\": 1982, \"clust\": 1236, \"rank\": 1379, \"rankvar\": 1978, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 844, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1945, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1385, \"group\": [1239.0, 622.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98149_BALBc-1_X02_Y01_956_248\", \"ini\": 1981, \"clust\": 290, \"rank\": 1172, \"rankvar\": 2073, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 845, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 827, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1649, \"group\": [293.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98727_BALBc-1_X02_Y01_963_190\", \"ini\": 1980, \"clust\": 931, \"rank\": 139, \"rankvar\": 340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 846, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 828, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2064, \"group\": [930.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98778_BALBc-1_X02_Y01_963_859\", \"ini\": 1979, \"clust\": 1464, \"rank\": 2126, \"rankvar\": 2238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 847, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1094, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1230, \"group\": [1467.0, 800.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98945_BALBc-1_X02_Y01_966_166\", \"ini\": 1978, \"clust\": 1564, \"rank\": 727, \"rankvar\": 87, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 848, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1946, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1856, \"group\": [1564.0, 853.0, 249.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99117_BALBc-1_X02_Y01_968_271\", \"ini\": 1977, \"clust\": 1604, \"rank\": 709, \"rankvar\": 1442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 849, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1947, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1650, \"group\": [1608.0, 887.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99166_BALBc-1_X02_Y01_968_799\", \"ini\": 1976, \"clust\": 1438, \"rank\": 2717, \"rankvar\": 2268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 850, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1948, \"cat-2\": \"Density: 27\", \"cat_2_index\": 930, \"group\": [1438.0, 783.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99323_BALBc-1_X02_Y01_97_873\", \"ini\": 1975, \"clust\": 648, \"rank\": 513, \"rankvar\": 304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 851, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2447, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1651, \"group\": [648.0, 435.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99561_BALBc-1_X02_Y01_973_197\", \"ini\": 1974, \"clust\": 501, \"rank\": 898, \"rankvar\": 904, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 852, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 829, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2065, \"group\": [500.0, 341.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99777_BALBc-1_X02_Y01_975_860\", \"ini\": 1973, \"clust\": 614, \"rank\": 630, \"rankvar\": 1254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 853, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1949, \"cat-2\": \"Density: 26\", \"cat_2_index\": 778, \"group\": [613.0, 415.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100239_BALBc-1_X02_Y01_981_12\", \"ini\": 1972, \"clust\": 1569, \"rank\": 572, \"rankvar\": 582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 854, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1950, \"cat-2\": \"Density: 13\", \"cat_2_index\": 16, \"group\": [1572.0, 859.0, 251.0, 71.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100387_BALBc-1_X02_Y01_983_285\", \"ini\": 1971, \"clust\": 928, \"rank\": 161, \"rankvar\": 1092, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 855, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1951, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1508, \"group\": [932.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100684_BALBc-1_X02_Y01_987_235\", \"ini\": 1970, \"clust\": 1388, \"rank\": 2281, \"rankvar\": 2600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 856, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 830, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1761, \"group\": [1386.0, 737.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100729_BALBc-1_X02_Y01_987_776\", \"ini\": 1969, \"clust\": 1136, \"rank\": 1094, \"rankvar\": 875, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 857, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1743, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1084, \"group\": [1137.0, 539.0, 147.0, 37.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101299_BALBc-1_X02_Y01_994_207\", \"ini\": 1968, \"clust\": 214, \"rank\": 1804, \"rankvar\": 2173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 858, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1095, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1961, \"group\": [215.0, 147.0, 51.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101376_BALBc-1_X02_Y01_995_115\", \"ini\": 1967, \"clust\": 292, \"rank\": 1906, \"rankvar\": 2708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 859, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1952, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1386, \"group\": [290.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101379_BALBc-1_X02_Y01_995_125\", \"ini\": 1966, \"clust\": 1488, \"rank\": 2559, \"rankvar\": 2754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 860, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1953, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1387, \"group\": [1489.0, 803.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101762_BALBc-1_X02_Y01_999_749\", \"ini\": 1965, \"clust\": 1369, \"rank\": 2494, \"rankvar\": 2566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 861, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1954, \"cat-2\": \"Density: 26\", \"cat_2_index\": 779, \"group\": [1371.0, 729.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-814_BALBc-1_X01_Y02_1000_470\", \"ini\": 1964, \"clust\": 2301, \"rank\": 1715, \"rankvar\": 956, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 862, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2520, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2542, \"group\": [2301.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1027_BALBc-1_X01_Y02_1003_258\", \"ini\": 1963, \"clust\": 2603, \"rank\": 1923, \"rankvar\": 2005, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 863, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2521, \"cat-2\": \"Density: 27\", \"cat_2_index\": 931, \"group\": [2601.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1035_BALBc-1_X01_Y02_1003_353\", \"ini\": 1962, \"clust\": 515, \"rank\": 552, \"rankvar\": 308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 864, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 38, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2365, \"group\": [514.0, 353.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1100_BALBc-1_X01_Y02_1004_310\", \"ini\": 1961, \"clust\": 850, \"rank\": 205, \"rankvar\": 801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 865, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 39, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1652, \"group\": [851.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1200_BALBc-1_X01_Y02_1005_707\", \"ini\": 1960, \"clust\": 368, \"rank\": 765, \"rankvar\": 373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 866, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1096, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2503, \"group\": [372.0, 258.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1322_BALBc-1_X01_Y02_1007_204\", \"ini\": 1959, \"clust\": 2584, \"rank\": 1462, \"rankvar\": 1508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 867, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 40, \"cat-2\": \"Density: 25\", \"cat_2_index\": 646, \"group\": [2587.0, 1399.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1434_BALBc-1_X01_Y02_1008_667\", \"ini\": 1958, \"clust\": 2287, \"rank\": 2127, \"rankvar\": 1858, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 868, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 41, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2543, \"group\": [2286.0, 1245.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1462_BALBc-1_X01_Y02_1008_96\", \"ini\": 1957, \"clust\": 816, \"rank\": 98, \"rankvar\": 522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 869, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2522, \"cat-2\": \"Density: 26\", \"cat_2_index\": 780, \"group\": [816.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1655_BALBc-1_X01_Y02_1010_300\", \"ini\": 1956, \"clust\": 129, \"rank\": 1010, \"rankvar\": 1213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 870, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 42, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1762, \"group\": [131.0, 81.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1685_BALBc-1_X01_Y02_1010_638\", \"ini\": 1955, \"clust\": 642, \"rank\": 184, \"rankvar\": 916, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 871, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1992, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2544, \"group\": [641.0, 431.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1696_BALBc-1_X01_Y02_1010_759\", \"ini\": 1954, \"clust\": 962, \"rank\": 704, \"rankvar\": 435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 872, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1097, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2424, \"group\": [969.0, 496.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1730_BALBc-1_X01_Y02_1011_325\", \"ini\": 1953, \"clust\": 950, \"rank\": 863, \"rankvar\": 848, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 873, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 43, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2066, \"group\": [949.0, 483.0, 138.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1847_BALBc-1_X01_Y02_1012_897\", \"ini\": 1952, \"clust\": 773, \"rank\": 51, \"rankvar\": 256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 874, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1098, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2299, \"group\": [775.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1915_BALBc-1_X01_Y02_1013_615\", \"ini\": 1951, \"clust\": 2372, \"rank\": 2743, \"rankvar\": 2320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 875, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1993, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2651, \"group\": [2373.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2124_BALBc-1_X01_Y02_1016_391\", \"ini\": 1950, \"clust\": 2280, \"rank\": 1843, \"rankvar\": 1019, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 876, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 44, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2773, \"group\": [2280.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2204_BALBc-1_X01_Y02_1017_547\", \"ini\": 1949, \"clust\": 45, \"rank\": 971, \"rankvar\": 852, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 877, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 45, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2652, \"group\": [45.0, 38.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2235_BALBc-1_X01_Y02_1017_848\", \"ini\": 1948, \"clust\": 348, \"rank\": 768, \"rankvar\": 235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 878, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1099, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2504, \"group\": [349.0, 244.0, 84.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2283_BALBc-1_X01_Y02_1018_442\", \"ini\": 1947, \"clust\": 2062, \"rank\": 2688, \"rankvar\": 2048, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 879, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2523, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2733, \"group\": [2061.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2353_BALBc-1_X01_Y02_1019_489\", \"ini\": 1946, \"clust\": 1903, \"rank\": 2530, \"rankvar\": 2760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 880, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2524, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2734, \"group\": [1902.0, 1090.0, 333.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2355_BALBc-1_X01_Y02_1019_507\", \"ini\": 1945, \"clust\": 1906, \"rank\": 2334, \"rankvar\": 1936, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 881, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 46, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2593, \"group\": [1906.0, 1093.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2384_BALBc-1_X01_Y02_1019_836\", \"ini\": 1944, \"clust\": 1786, \"rank\": 1904, \"rankvar\": 2570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 882, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1634, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2594, \"group\": [1790.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2557_BALBc-1_X01_Y02_1021_285\", \"ini\": 1943, \"clust\": 945, \"rank\": 105, \"rankvar\": 518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 883, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 47, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1388, \"group\": [946.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2591_BALBc-1_X01_Y02_1021_733\", \"ini\": 1942, \"clust\": 448, \"rank\": 287, \"rankvar\": 367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 884, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1100, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2425, \"group\": [447.0, 313.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2671_BALBc-1_X01_Y02_1022_672\", \"ini\": 1941, \"clust\": 723, \"rank\": 206, \"rankvar\": 1224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 885, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1101, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2505, \"group\": [723.0, 463.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2730_BALBc-1_X01_Y02_1023_412\", \"ini\": 1940, \"clust\": 132, \"rank\": 696, \"rankvar\": 1701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 886, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2525, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2696, \"group\": [135.0, 83.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2766_BALBc-1_X01_Y02_1023_779\", \"ini\": 1939, \"clust\": 1770, \"rank\": 1762, \"rankvar\": 1204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 887, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1102, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2426, \"group\": [1771.0, 1004.0, 302.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2827_BALBc-1_X01_Y02_1024_575\", \"ini\": 1938, \"clust\": 2059, \"rank\": 2797, \"rankvar\": 2247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 888, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 48, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2595, \"group\": [2056.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2833_BALBc-1_X01_Y02_1024_621\", \"ini\": 1937, \"clust\": 1842, \"rank\": 1682, \"rankvar\": 1589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 889, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 49, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2596, \"group\": [1840.0, 1034.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2893_BALBc-1_X01_Y02_1025_369\", \"ini\": 1936, \"clust\": 2172, \"rank\": 1523, \"rankvar\": 1423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 890, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1635, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2506, \"group\": [2171.0, 1177.0, 347.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2964_BALBc-1_X01_Y02_1026_323\", \"ini\": 1935, \"clust\": 2235, \"rank\": 1619, \"rankvar\": 374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 891, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 50, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1857, \"group\": [2236.0, 1215.0, 363.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3081_BALBc-1_X01_Y02_1027_596\", \"ini\": 1934, \"clust\": 891, \"rank\": 28, \"rankvar\": 126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 892, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 51, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2653, \"group\": [888.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3102_BALBc-1_X01_Y02_1027_8\", \"ini\": 1933, \"clust\": 834, \"rank\": 140, \"rankvar\": 110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 893, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1636, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1763, \"group\": [836.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3134_BALBc-1_X01_Y02_1028_174\", \"ini\": 1932, \"clust\": 2585, \"rank\": 1086, \"rankvar\": 1132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 894, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1103, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1085, \"group\": [2585.0, 1398.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3301_BALBc-1_X01_Y02_103_274\", \"ini\": 1931, \"clust\": 312, \"rank\": 1163, \"rankvar\": 2641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 895, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1104, \"cat-2\": \"Density: 25\", \"cat_2_index\": 647, \"group\": [312.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3362_BALBc-1_X01_Y02_1030_122\", \"ini\": 1930, \"clust\": 2693, \"rank\": 2399, \"rankvar\": 1808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 896, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 692, \"cat-2\": \"Density: 24\", \"cat_2_index\": 500, \"group\": [2694.0, 1451.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3370_BALBc-1_X01_Y02_1030_219\", \"ini\": 1929, \"clust\": 2576, \"rank\": 1849, \"rankvar\": 2537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 897, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1105, \"cat-2\": \"Density: 27\", \"cat_2_index\": 932, \"group\": [2577.0, 1392.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3687_BALBc-1_X01_Y02_1034_469\", \"ini\": 1928, \"clust\": 2012, \"rank\": 1943, \"rankvar\": 2012, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 898, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2526, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2735, \"group\": [2012.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3758_BALBc-1_X01_Y02_1035_352\", \"ini\": 1927, \"clust\": 897, \"rank\": 24, \"rankvar\": 437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 899, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1637, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2427, \"group\": [896.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3764_BALBc-1_X01_Y02_1035_406\", \"ini\": 1926, \"clust\": 2048, \"rank\": 2390, \"rankvar\": 1955, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 900, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1638, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2597, \"group\": [2136.0, 1154.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4026_BALBc-1_X01_Y02_1038_521\", \"ini\": 1925, \"clust\": 2250, \"rank\": 1837, \"rankvar\": 564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 901, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 52, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2736, \"group\": [2250.0, 1227.0, 370.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4053_BALBc-1_X01_Y02_1038_905\", \"ini\": 1924, \"clust\": 1802, \"rank\": 2253, \"rankvar\": 2488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 902, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1744, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2149, \"group\": [1802.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4056_BALBc-1_X01_Y02_1038_930\", \"ini\": 1923, \"clust\": 797, \"rank\": 191, \"rankvar\": 702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 903, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1106, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1509, \"group\": [801.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4110_BALBc-1_X01_Y02_1039_579\", \"ini\": 1922, \"clust\": 2451, \"rank\": 1706, \"rankvar\": 566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 904, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 53, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2598, \"group\": [2452.0, 1304.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4115_BALBc-1_X01_Y02_1039_648\", \"ini\": 1921, \"clust\": 1788, \"rank\": 1567, \"rankvar\": 2392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 905, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1107, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2428, \"group\": [1787.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4300_BALBc-1_X01_Y02_1041_266\", \"ini\": 1920, \"clust\": 1702, \"rank\": 2352, \"rankvar\": 2604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 906, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 54, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1231, \"group\": [1702.0, 957.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4313_BALBc-1_X01_Y02_1041_433\", \"ini\": 1919, \"clust\": 1732, \"rank\": 2293, \"rankvar\": 2538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 907, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2527, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2697, \"group\": [1735.0, 978.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4822_BALBc-1_X01_Y02_1047_721\", \"ini\": 1918, \"clust\": 505, \"rank\": 857, \"rankvar\": 347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 908, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1108, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2507, \"group\": [506.0, 346.0, 117.0, 33.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4884_BALBc-1_X01_Y02_1048_476\", \"ini\": 1917, \"clust\": 503, \"rank\": 769, \"rankvar\": 1104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 909, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 55, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2819, \"group\": [504.0, 344.0, 116.0, 33.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4887_BALBc-1_X01_Y02_1048_504\", \"ini\": 1916, \"clust\": 1055, \"rank\": 487, \"rankvar\": 301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 910, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 56, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2820, \"group\": [1058.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4912_BALBc-1_X01_Y02_1048_876\", \"ini\": 1915, \"clust\": 76, \"rank\": 522, \"rankvar\": 1482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 911, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1109, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2224, \"group\": [76.0, 57.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5193_BALBc-1_X01_Y02_1051_618\", \"ini\": 1914, \"clust\": 1772, \"rank\": 1650, \"rankvar\": 1714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 912, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1110, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2366, \"group\": [1774.0, 1006.0, 303.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5224_BALBc-1_X01_Y02_1052_107\", \"ini\": 1913, \"clust\": 1004, \"rank\": 171, \"rankvar\": 811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 913, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 693, \"cat-2\": \"Density: 23\", \"cat_2_index\": 390, \"group\": [1002.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5304_BALBc-1_X01_Y02_1053_18\", \"ini\": 1912, \"clust\": 1248, \"rank\": 1717, \"rankvar\": 1913, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 914, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2448, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1232, \"group\": [1248.0, 629.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5328_BALBc-1_X01_Y02_1053_572\", \"ini\": 1911, \"clust\": 2446, \"rank\": 1564, \"rankvar\": 483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 915, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 57, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2599, \"group\": [2447.0, 1302.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5445_BALBc-1_X01_Y02_1055_145\", \"ini\": 1910, \"clust\": 149, \"rank\": 1737, \"rankvar\": 1517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 916, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 58, \"cat-2\": \"Density: 23\", \"cat_2_index\": 391, \"group\": [152.0, 95.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5547_BALBc-1_X01_Y02_1056_251\", \"ini\": 1909, \"clust\": 2592, \"rank\": 1442, \"rankvar\": 617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 917, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1560, \"cat-2\": \"Density: 27\", \"cat_2_index\": 933, \"group\": [2590.0, 1401.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5577_BALBc-1_X01_Y02_1056_535\", \"ini\": 1908, \"clust\": 923, \"rank\": 202, \"rankvar\": 83, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 918, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 59, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2698, \"group\": [925.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5586_BALBc-1_X01_Y02_1056_690\", \"ini\": 1907, \"clust\": 357, \"rank\": 612, \"rankvar\": 1791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 919, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1111, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2429, \"group\": [357.0, 250.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5602_BALBc-1_X01_Y02_1056_84\", \"ini\": 1906, \"clust\": 806, \"rank\": 656, \"rankvar\": 26, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 920, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 694, \"cat-2\": \"Density: 26\", \"cat_2_index\": 781, \"group\": [807.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5707_BALBc-1_X01_Y02_1058_294\", \"ini\": 1905, \"clust\": 1002, \"rank\": 629, \"rankvar\": 152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 921, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 60, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1510, \"group\": [1005.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5739_BALBc-1_X01_Y02_1058_669\", \"ini\": 1904, \"clust\": 2467, \"rank\": 1265, \"rankvar\": 732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 922, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1112, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2654, \"group\": [2467.0, 1315.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5833_BALBc-1_X01_Y02_1059_848\", \"ini\": 1903, \"clust\": 384, \"rank\": 851, \"rankvar\": 1313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 923, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1113, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2300, \"group\": [383.0, 266.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6281_BALBc-1_X01_Y02_1064_432\", \"ini\": 1902, \"clust\": 1822, \"rank\": 2696, \"rankvar\": 2553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 924, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 61, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2737, \"group\": [1822.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6293_BALBc-1_X01_Y02_1064_504\", \"ini\": 1901, \"clust\": 2278, \"rank\": 1790, \"rankvar\": 413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 925, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 62, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2811, \"group\": [2278.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6437_BALBc-1_X01_Y02_1066_473\", \"ini\": 1900, \"clust\": 2452, \"rank\": 1241, \"rankvar\": 895, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 926, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 63, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2821, \"group\": [2453.0, 1304.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6448_BALBc-1_X01_Y02_1066_590\", \"ini\": 1899, \"clust\": 872, \"rank\": 36, \"rankvar\": 517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 927, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 64, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2655, \"group\": [878.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6527_BALBc-1_X01_Y02_1067_691\", \"ini\": 1898, \"clust\": 204, \"rank\": 922, \"rankvar\": 434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 928, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1114, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2430, \"group\": [204.0, 137.0, 46.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6588_BALBc-1_X01_Y02_1068_448\", \"ini\": 1897, \"clust\": 2439, \"rank\": 1019, \"rankvar\": 721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 929, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 65, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2812, \"group\": [2440.0, 1298.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6686_BALBc-1_X01_Y02_1069_459\", \"ini\": 1896, \"clust\": 1028, \"rank\": 358, \"rankvar\": 59, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 930, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 66, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2793, \"group\": [1029.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6811_BALBc-1_X01_Y02_1070_150\", \"ini\": 1895, \"clust\": 376, \"rank\": 811, \"rankvar\": 2165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 931, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1115, \"cat-2\": \"Density: 23\", \"cat_2_index\": 392, \"group\": [380.0, 264.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7004_BALBc-1_X01_Y02_1072_408\", \"ini\": 1894, \"clust\": 2149, \"rank\": 707, \"rankvar\": 2014, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 932, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 619, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2794, \"group\": [2150.0, 1166.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7308_BALBc-1_X01_Y02_1075_797\", \"ini\": 1893, \"clust\": 817, \"rank\": 133, \"rankvar\": 180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 933, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1116, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2301, \"group\": [817.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7360_BALBc-1_X01_Y02_1076_505\", \"ini\": 1892, \"clust\": 1455, \"rank\": 2192, \"rankvar\": 939, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 934, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 67, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2795, \"group\": [1456.0, 792.0, 236.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7375_BALBc-1_X01_Y02_1076_614\", \"ini\": 1891, \"clust\": 724, \"rank\": 180, \"rankvar\": 657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 935, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1117, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2656, \"group\": [724.0, 463.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7388_BALBc-1_X01_Y02_1076_772\", \"ini\": 1890, \"clust\": 1807, \"rank\": 1615, \"rankvar\": 1504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 936, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1118, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2367, \"group\": [1807.0, 1021.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7429_BALBc-1_X01_Y02_1077_283\", \"ini\": 1889, \"clust\": 514, \"rank\": 720, \"rankvar\": 36, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 937, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 68, \"cat-2\": \"Density: 26\", \"cat_2_index\": 782, \"group\": [516.0, 353.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7521_BALBc-1_X01_Y02_1078_434\", \"ini\": 1888, \"clust\": 795, \"rank\": 280, \"rankvar\": 625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 938, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 69, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2796, \"group\": [796.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7604_BALBc-1_X01_Y02_1079_662\", \"ini\": 1887, \"clust\": 1691, \"rank\": 2635, \"rankvar\": 2775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 939, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1119, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2431, \"group\": [1692.0, 949.0, 284.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7606_BALBc-1_X01_Y02_1079_678\", \"ini\": 1886, \"clust\": 2544, \"rank\": 1824, \"rankvar\": 1470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 940, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1639, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2432, \"group\": [2545.0, 1370.0, 408.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7804_BALBc-1_X01_Y02_1081_554\", \"ini\": 1885, \"clust\": 502, \"rank\": 1081, \"rankvar\": 202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 941, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 70, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2699, \"group\": [501.0, 341.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7953_BALBc-1_X01_Y02_1083_574\", \"ini\": 1884, \"clust\": 2305, \"rank\": 1803, \"rankvar\": 1071, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 942, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 71, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2508, \"group\": [2304.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8179_BALBc-1_X01_Y02_1086_62\", \"ini\": 1883, \"clust\": 785, \"rank\": 338, \"rankvar\": 250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 943, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1640, \"cat-2\": \"Density: 27\", \"cat_2_index\": 934, \"group\": [785.0, 476.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8323_BALBc-1_X01_Y02_1088_532\", \"ini\": 1882, \"clust\": 681, \"rank\": 485, \"rankvar\": 114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 944, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 72, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2774, \"group\": [684.0, 450.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8368_BALBc-1_X01_Y02_1089_10\", \"ini\": 1881, \"clust\": 942, \"rank\": 44, \"rankvar\": 360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 945, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 695, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1233, \"group\": [941.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8395_BALBc-1_X01_Y02_1089_383\", \"ini\": 1880, \"clust\": 1075, \"rank\": 381, \"rankvar\": 728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 946, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 620, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2600, \"group\": [1076.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8610_BALBc-1_X01_Y02_1091_207\", \"ini\": 1879, \"clust\": 591, \"rank\": 1030, \"rankvar\": 1060, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 947, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1120, \"cat-2\": \"Density: 22\", \"cat_2_index\": 281, \"group\": [594.0, 405.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8618_BALBc-1_X01_Y02_1091_325\", \"ini\": 1878, \"clust\": 2433, \"rank\": 718, \"rankvar\": 752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 948, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1641, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1962, \"group\": [2431.0, 1295.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8711_BALBc-1_X01_Y02_1092_593\", \"ini\": 1877, \"clust\": 2389, \"rank\": 2453, \"rankvar\": 1309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 949, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 73, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2738, \"group\": [2389.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8860_BALBc-1_X01_Y02_1094_414\", \"ini\": 1876, \"clust\": 1896, \"rank\": 2427, \"rankvar\": 2377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 950, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 74, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2775, \"group\": [1896.0, 1085.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8911_BALBc-1_X01_Y02_1095_127\", \"ini\": 1875, \"clust\": 194, \"rank\": 418, \"rankvar\": 1066, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 951, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1121, \"cat-2\": \"Density: 24\", \"cat_2_index\": 501, \"group\": [199.0, 133.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8950_BALBc-1_X01_Y02_1095_640\", \"ini\": 1874, \"clust\": 774, \"rank\": 232, \"rankvar\": 162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 952, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1122, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2700, \"group\": [773.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9039_BALBc-1_X01_Y02_1096_780\", \"ini\": 1873, \"clust\": 414, \"rank\": 963, \"rankvar\": 791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 953, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 945, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2225, \"group\": [415.0, 292.0, 101.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9116_BALBc-1_X01_Y02_1097_820\", \"ini\": 1872, \"clust\": 1834, \"rank\": 2526, \"rankvar\": 2091, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 954, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1123, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2226, \"group\": [1836.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9237_BALBc-1_X01_Y02_1099_474\", \"ini\": 1871, \"clust\": 814, \"rank\": 311, \"rankvar\": 24, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 955, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 75, \"cat-2\": \"Density: 52\", \"cat_2_index\": 2825, \"group\": [812.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9410_BALBc-1_X01_Y02_110_501\", \"ini\": 1870, \"clust\": 758, \"rank\": 108, \"rankvar\": 1406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 956, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2449, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1086, \"group\": [757.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9518_BALBc-1_X01_Y02_1100_80\", \"ini\": 1869, \"clust\": 326, \"rank\": 1636, \"rankvar\": 2599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 957, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1955, \"cat-2\": \"Density: 24\", \"cat_2_index\": 502, \"group\": [325.0, 226.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9617_BALBc-1_X01_Y02_1102_229\", \"ini\": 1868, \"clust\": 1703, \"rank\": 2425, \"rankvar\": 2374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 958, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1561, \"cat-2\": \"Density: 26\", \"cat_2_index\": 783, \"group\": [1700.0, 957.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9723_BALBc-1_X01_Y02_1103_562\", \"ini\": 1867, \"clust\": 733, \"rank\": 298, \"rankvar\": 150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 959, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 76, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2545, \"group\": [733.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9784_BALBc-1_X01_Y02_1104_292\", \"ini\": 1866, \"clust\": 1767, \"rank\": 1955, \"rankvar\": 2239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 960, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2528, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1511, \"group\": [1766.0, 1001.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9793_BALBc-1_X01_Y02_1104_427\", \"ini\": 1865, \"clust\": 997, \"rank\": 652, \"rankvar\": 348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 961, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 77, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2797, \"group\": [999.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9800_BALBc-1_X01_Y02_1104_504\", \"ini\": 1864, \"clust\": 2324, \"rank\": 1967, \"rankvar\": 760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 962, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 78, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2798, \"group\": [2322.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9883_BALBc-1_X01_Y02_1105_447\", \"ini\": 1863, \"clust\": 422, \"rank\": 970, \"rankvar\": 78, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 963, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 79, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2813, \"group\": [422.0, 298.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10036_BALBc-1_X01_Y02_1107_379\", \"ini\": 1862, \"clust\": 1904, \"rank\": 2210, \"rankvar\": 1874, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 964, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 80, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2368, \"group\": [1903.0, 1090.0, 333.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10115_BALBc-1_X01_Y02_1108_313\", \"ini\": 1861, \"clust\": 786, \"rank\": 285, \"rankvar\": 468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 965, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2529, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1389, \"group\": [786.0, 476.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10188_BALBc-1_X01_Y02_1109_186\", \"ini\": 1860, \"clust\": 1082, \"rank\": 559, \"rankvar\": 743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 966, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1124, \"cat-2\": \"Density: 20\", \"cat_2_index\": 153, \"group\": [1085.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10290_BALBc-1_X01_Y02_111_587\", \"ini\": 1859, \"clust\": 345, \"rank\": 557, \"rankvar\": 1739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 967, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1125, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1087, \"group\": [347.0, 242.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10354_BALBc-1_X01_Y02_1110_402\", \"ini\": 1858, \"clust\": 874, \"rank\": 1, \"rankvar\": 443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 968, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 81, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2546, \"group\": [871.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10516_BALBc-1_X01_Y02_1112_616\", \"ini\": 1857, \"clust\": 1131, \"rank\": 722, \"rankvar\": 2010, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 969, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1126, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2739, \"group\": [1130.0, 532.0, 145.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10520_BALBc-1_X01_Y02_1112_667\", \"ini\": 1856, \"clust\": 2535, \"rank\": 1778, \"rankvar\": 1882, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 970, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 82, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2369, \"group\": [2536.0, 1362.0, 404.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10730_BALBc-1_X01_Y02_1115_472\", \"ini\": 1855, \"clust\": 841, \"rank\": 297, \"rankvar\": 0, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 971, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 83, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2814, \"group\": [842.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10887_BALBc-1_X01_Y02_1117_527\", \"ini\": 1854, \"clust\": 499, \"rank\": 1041, \"rankvar\": 309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 972, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 84, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2601, \"group\": [498.0, 340.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10916_BALBc-1_X01_Y02_1117_796\", \"ini\": 1853, \"clust\": 1759, \"rank\": 1052, \"rankvar\": 2717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 973, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1127, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1963, \"group\": [1758.0, 995.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10974_BALBc-1_X01_Y02_1118_646\", \"ini\": 1852, \"clust\": 78, \"rank\": 542, \"rankvar\": 548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 974, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 85, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2602, \"group\": [79.0, 58.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11010_BALBc-1_X01_Y02_1119_25\", \"ini\": 1851, \"clust\": 2818, \"rank\": 2404, \"rankvar\": 2146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 975, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 696, \"cat-2\": \"Density: 27\", \"cat_2_index\": 935, \"group\": [2821.0, 1533.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11155_BALBc-1_X01_Y02_1120_361\", \"ini\": 1850, \"clust\": 857, \"rank\": 74, \"rankvar\": 1013, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 976, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 86, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1964, \"group\": [857.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11235_BALBc-1_X01_Y02_1121_237\", \"ini\": 1849, \"clust\": 190, \"rank\": 866, \"rankvar\": 187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 977, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1562, \"cat-2\": \"Density: 23\", \"cat_2_index\": 393, \"group\": [191.0, 127.0, 43.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11425_BALBc-1_X01_Y02_1123_682\", \"ini\": 1848, \"clust\": 285, \"rank\": 1073, \"rankvar\": 1705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 978, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1642, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2509, \"group\": [294.0, 210.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11501_BALBc-1_X01_Y02_1124_589\", \"ini\": 1847, \"clust\": 1827, \"rank\": 2310, \"rankvar\": 1751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 979, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1128, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2433, \"group\": [1827.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11783_BALBc-1_X01_Y02_1128_375\", \"ini\": 1846, \"clust\": 2279, \"rank\": 1853, \"rankvar\": 321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 980, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 87, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2227, \"group\": [2279.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11789_BALBc-1_X01_Y02_1128_446\", \"ini\": 1845, \"clust\": 2262, \"rank\": 1309, \"rankvar\": 327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 981, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 88, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2776, \"group\": [2260.0, 1235.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11818_BALBc-1_X01_Y02_1128_778\", \"ini\": 1844, \"clust\": 0, \"rank\": 1709, \"rankvar\": 754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 982, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1129, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2302, \"group\": [3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11861_BALBc-1_X01_Y02_1129_519\", \"ini\": 1843, \"clust\": 949, \"rank\": 641, \"rankvar\": 933, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 983, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1546, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2815, \"group\": [951.0, 484.0, 138.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11949_BALBc-1_X01_Y02_113_746\", \"ini\": 1842, \"clust\": 1739, \"rank\": 1677, \"rankvar\": 2334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 984, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1130, \"cat-2\": \"Density: 26\", \"cat_2_index\": 784, \"group\": [1740.0, 983.0, 295.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12248_BALBc-1_X01_Y02_1133_543\", \"ini\": 1841, \"clust\": 1761, \"rank\": 1782, \"rankvar\": 1016, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 985, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1547, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2547, \"group\": [1762.0, 998.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12302_BALBc-1_X01_Y02_1134_424\", \"ini\": 1840, \"clust\": 13, \"rank\": 1297, \"rankvar\": 37, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 986, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2530, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2510, \"group\": [14.0, 13.0, 8.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12338_BALBc-1_X01_Y02_1135_117\", \"ini\": 1839, \"clust\": 2795, \"rank\": 1121, \"rankvar\": 1146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 987, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1131, \"cat-2\": \"Density: 25\", \"cat_2_index\": 648, \"group\": [2795.0, 1516.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12370_BALBc-1_X01_Y02_1135_398\", \"ini\": 1838, \"clust\": 2631, \"rank\": 2252, \"rankvar\": 1591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 988, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2531, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2303, \"group\": [2631.0, 1424.0, 419.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12399_BALBc-1_X01_Y02_1135_711\", \"ini\": 1837, \"clust\": 742, \"rank\": 546, \"rankvar\": 931, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 989, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1132, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2511, \"group\": [748.0, 471.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12520_BALBc-1_X01_Y02_1137_482\", \"ini\": 1836, \"clust\": 861, \"rank\": 183, \"rankvar\": 272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 990, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 89, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2701, \"group\": [862.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13075_BALBc-1_X01_Y02_1143_338\", \"ini\": 1835, \"clust\": 2471, \"rank\": 980, \"rankvar\": 693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 991, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2532, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1234, \"group\": [2472.0, 1320.0, 392.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13103_BALBc-1_X01_Y02_1143_664\", \"ini\": 1834, \"clust\": 2536, \"rank\": 1663, \"rankvar\": 1200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 992, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 90, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2304, \"group\": [2537.0, 1362.0, 404.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13162_BALBc-1_X01_Y02_1144_457\", \"ini\": 1833, \"clust\": 801, \"rank\": 316, \"rankvar\": 54, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 993, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 91, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2799, \"group\": [802.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13164_BALBc-1_X01_Y02_1144_469\", \"ini\": 1832, \"clust\": 1013, \"rank\": 848, \"rankvar\": 19, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 994, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 92, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2702, \"group\": [1018.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13317_BALBc-1_X01_Y02_1146_638\", \"ini\": 1831, \"clust\": 1868, \"rank\": 1131, \"rankvar\": 425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 995, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 93, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2305, \"group\": [1868.0, 1059.0, 320.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13467_BALBc-1_X01_Y02_1148_565\", \"ini\": 1830, \"clust\": 907, \"rank\": 85, \"rankvar\": 62, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 996, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1133, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2434, \"group\": [906.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13517_BALBc-1_X01_Y02_1149_362\", \"ini\": 1829, \"clust\": 293, \"rank\": 1341, \"rankvar\": 2667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 997, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 94, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1653, \"group\": [291.0, 209.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13825_BALBc-1_X01_Y02_1152_206\", \"ini\": 1828, \"clust\": 453, \"rank\": 346, \"rankvar\": 502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 998, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2533, \"cat-2\": \"Density: 23\", \"cat_2_index\": 394, \"group\": [453.0, 316.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14075_BALBc-1_X01_Y02_1155_606\", \"ini\": 1827, \"clust\": 383, \"rank\": 1111, \"rankvar\": 2286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 999, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1134, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2228, \"group\": [385.0, 267.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14139_BALBc-1_X01_Y02_1156_505\", \"ini\": 1826, \"clust\": 2326, \"rank\": 1924, \"rankvar\": 941, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1000, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1548, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2603, \"group\": [2324.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14194_BALBc-1_X01_Y02_1157_257\", \"ini\": 1825, \"clust\": 454, \"rank\": 433, \"rankvar\": 442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1001, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1135, \"cat-2\": \"Density: 23\", \"cat_2_index\": 395, \"group\": [454.0, 316.0, 107.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14333_BALBc-1_X01_Y02_1158_98\", \"ini\": 1824, \"clust\": 21, \"rank\": 1055, \"rankvar\": 64, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1002, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1136, \"cat-2\": \"Density: 22\", \"cat_2_index\": 282, \"group\": [21.0, 20.0, 12.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14461_BALBc-1_X01_Y02_116_804\", \"ini\": 1823, \"clust\": 2643, \"rank\": 2306, \"rankvar\": 1488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1003, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1137, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1654, \"group\": [2649.0, 1438.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14529_BALBc-1_X01_Y02_1160_70\", \"ini\": 1822, \"clust\": 2736, \"rank\": 1811, \"rankvar\": 948, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1004, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1956, \"cat-2\": \"Density: 23\", \"cat_2_index\": 396, \"group\": [2737.0, 1472.0, 433.0, 113.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14765_BALBc-1_X01_Y02_1163_363\", \"ini\": 1821, \"clust\": 9, \"rank\": 1605, \"rankvar\": 886, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1005, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2534, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1390, \"group\": [9.0, 8.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14775_BALBc-1_X01_Y02_1163_470\", \"ini\": 1820, \"clust\": 1069, \"rank\": 661, \"rankvar\": 368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1006, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1957, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2548, \"group\": [1073.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14940_BALBc-1_X01_Y02_1165_431\", \"ini\": 1819, \"clust\": 880, \"rank\": 125, \"rankvar\": 528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1007, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1643, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2549, \"group\": [881.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14952_BALBc-1_X01_Y02_1165_653\", \"ini\": 1818, \"clust\": 787, \"rank\": 165, \"rankvar\": 504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1008, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1138, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2229, \"group\": [788.0, 477.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15044_BALBc-1_X01_Y02_1166_715\", \"ini\": 1817, \"clust\": 1803, \"rank\": 2171, \"rankvar\": 2802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1009, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1139, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2230, \"group\": [1800.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15252_BALBc-1_X01_Y02_1169_690\", \"ini\": 1816, \"clust\": 638, \"rank\": 422, \"rankvar\": 290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1010, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1140, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2306, \"group\": [639.0, 429.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15308_BALBc-1_X01_Y02_117_556\", \"ini\": 1815, \"clust\": 181, \"rank\": 910, \"rankvar\": 2289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1011, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 95, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1391, \"group\": [182.0, 119.0, 39.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15434_BALBc-1_X01_Y02_1171_25\", \"ini\": 1814, \"clust\": 1355, \"rank\": 1934, \"rankvar\": 279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1012, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1958, \"cat-2\": \"Density: 27\", \"cat_2_index\": 936, \"group\": [1356.0, 717.0, 213.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15469_BALBc-1_X01_Y02_1171_563\", \"ini\": 1813, \"clust\": 386, \"rank\": 982, \"rankvar\": 1947, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1013, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1745, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2231, \"group\": [386.0, 268.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15536_BALBc-1_X01_Y02_1172_623\", \"ini\": 1812, \"clust\": 296, \"rank\": 650, \"rankvar\": 2315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1014, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1141, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2067, \"group\": [304.0, 214.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15847_BALBc-1_X01_Y02_1176_597\", \"ini\": 1811, \"clust\": 1880, \"rank\": 1858, \"rankvar\": 2219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1015, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1746, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1965, \"group\": [1881.0, 1071.0, 326.0, 91.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15894_BALBc-1_X01_Y02_1177_234\", \"ini\": 1810, \"clust\": 2608, \"rank\": 2107, \"rankvar\": 2222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1016, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1142, \"cat-2\": \"Density: 22\", \"cat_2_index\": 283, \"group\": [2606.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15978_BALBc-1_X01_Y02_1178_306\", \"ini\": 1809, \"clust\": 799, \"rank\": 236, \"rankvar\": 299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1017, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1143, \"cat-2\": \"Density: 21\", \"cat_2_index\": 203, \"group\": [798.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15996_BALBc-1_X01_Y02_1178_501\", \"ini\": 1808, \"clust\": 428, \"rank\": 408, \"rankvar\": 1000, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1018, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1549, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2435, \"group\": [427.0, 303.0, 105.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16362_BALBc-1_X01_Y02_1182_417\", \"ini\": 1807, \"clust\": 1715, \"rank\": 2305, \"rankvar\": 2110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1019, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1644, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2307, \"group\": [1716.0, 967.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16367_BALBc-1_X01_Y02_1182_448\", \"ini\": 1806, \"clust\": 1716, \"rank\": 2193, \"rankvar\": 2591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1020, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1645, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2436, \"group\": [1717.0, 967.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16640_BALBc-1_X01_Y02_1185_889\", \"ini\": 1805, \"clust\": 1, \"rank\": 1193, \"rankvar\": 2375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1021, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1144, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1858, \"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16730_BALBc-1_X01_Y02_1187_385\", \"ini\": 1804, \"clust\": 12, \"rank\": 1407, \"rankvar\": 488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1022, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2535, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1764, \"group\": [13.0, 12.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17035_BALBc-1_X01_Y02_1190_493\", \"ini\": 1803, \"clust\": 2453, \"rank\": 1752, \"rankvar\": 829, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1023, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1959, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2232, \"group\": [2456.0, 1306.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17207_BALBc-1_X01_Y02_1192_761\", \"ini\": 1802, \"clust\": 976, \"rank\": 967, \"rankvar\": 634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1024, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1145, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2370, \"group\": [976.0, 501.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17322_BALBc-1_X01_Y02_1194_325\", \"ini\": 1801, \"clust\": 599, \"rank\": 639, \"rankvar\": 550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1025, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2293, \"cat-2\": \"Density: 24\", \"cat_2_index\": 503, \"group\": [602.0, 411.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17680_BALBc-1_X01_Y02_1199_122\", \"ini\": 1800, \"clust\": 1077, \"rank\": 118, \"rankvar\": 893, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1026, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1146, \"cat-2\": \"Density: 20\", \"cat_2_index\": 154, \"group\": [1078.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17793_BALBc-1_X01_Y02_12_655\", \"ini\": 1799, \"clust\": 2766, \"rank\": 2093, \"rankvar\": 1851, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1027, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 96, \"cat-2\": \"Density: 14\", \"cat_2_index\": 29, \"group\": [2767.0, 1498.0, 447.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17839_BALBc-1_X01_Y02_120_140\", \"ini\": 1798, \"clust\": 1623, \"rank\": 1724, \"rankvar\": 2432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1028, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1147, \"cat-2\": \"Density: 26\", \"cat_2_index\": 785, \"group\": [1624.0, 893.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17873_BALBc-1_X01_Y02_120_509\", \"ini\": 1797, \"clust\": 2760, \"rank\": 1877, \"rankvar\": 1481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1029, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 97, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1235, \"group\": [2760.0, 1493.0, 445.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17954_BALBc-1_X01_Y02_1200_546\", \"ini\": 1796, \"clust\": 1659, \"rank\": 2108, \"rankvar\": 2362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1030, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1550, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1655, \"group\": [1661.0, 919.0, 267.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18320_BALBc-1_X01_Y02_1204_93\", \"ini\": 1795, \"clust\": 1251, \"rank\": 1433, \"rankvar\": 1825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1031, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 98, \"cat-2\": \"Density: 22\", \"cat_2_index\": 284, \"group\": [1253.0, 634.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18357_BALBc-1_X01_Y02_1205_419\", \"ini\": 1794, \"clust\": 989, \"rank\": 826, \"rankvar\": 1421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1032, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1646, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2150, \"group\": [990.0, 507.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18530_BALBc-1_X01_Y02_1207_517\", \"ini\": 1793, \"clust\": 1757, \"rank\": 1626, \"rankvar\": 2409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1033, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1148, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1859, \"group\": [1756.0, 995.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18940_BALBc-1_X01_Y02_1212_14\", \"ini\": 1792, \"clust\": 2769, \"rank\": 2030, \"rankvar\": 720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1034, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1960, \"cat-2\": \"Density: 26\", \"cat_2_index\": 786, \"group\": [2769.0, 1500.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19125_BALBc-1_X01_Y02_1214_642\", \"ini\": 1791, \"clust\": 1899, \"rank\": 2373, \"rankvar\": 2614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1035, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1149, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2068, \"group\": [1898.0, 1087.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19244_BALBc-1_X01_Y02_1216_259\", \"ini\": 1790, \"clust\": 985, \"rank\": 212, \"rankvar\": 1172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1036, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1150, \"cat-2\": \"Density: 19\", \"cat_2_index\": 119, \"group\": [985.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19318_BALBc-1_X01_Y02_1217_339\", \"ini\": 1789, \"clust\": 623, \"rank\": 502, \"rankvar\": 67, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1037, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2294, \"cat-2\": \"Density: 25\", \"cat_2_index\": 649, \"group\": [624.0, 421.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19577_BALBc-1_X01_Y02_122_855\", \"ini\": 1788, \"clust\": 2653, \"rank\": 2641, \"rankvar\": 2016, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1038, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2295, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1236, \"group\": [2651.0, 1439.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19630_BALBc-1_X01_Y02_1220_488\", \"ini\": 1787, \"clust\": 995, \"rank\": 472, \"rankvar\": 1419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1039, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1151, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2151, \"group\": [995.0, 510.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19649_BALBc-1_X01_Y02_1220_756\", \"ini\": 1786, \"clust\": 1875, \"rank\": 1479, \"rankvar\": 897, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1040, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1647, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2308, \"group\": [1875.0, 1065.0, 323.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19712_BALBc-1_X01_Y02_1221_558\", \"ini\": 1785, \"clust\": 399, \"rank\": 246, \"rankvar\": 2478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1041, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1152, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1237, \"group\": [398.0, 279.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19804_BALBc-1_X01_Y02_1222_695\", \"ini\": 1784, \"clust\": 315, \"rank\": 1546, \"rankvar\": 2378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1042, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1153, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2371, \"group\": [315.0, 219.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19893_BALBc-1_X01_Y02_1223_804\", \"ini\": 1783, \"clust\": 379, \"rank\": 269, \"rankvar\": 1952, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1043, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1154, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2233, \"group\": [378.0, 263.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19976_BALBc-1_X01_Y02_1224_87\", \"ini\": 1782, \"clust\": 297, \"rank\": 828, \"rankvar\": 1685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1044, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1155, \"cat-2\": \"Density: 24\", \"cat_2_index\": 504, \"group\": [303.0, 213.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20108_BALBc-1_X01_Y02_1226_52\", \"ini\": 1781, \"clust\": 2472, \"rank\": 1244, \"rankvar\": 891, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1045, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1579, \"cat-2\": \"Density: 24\", \"cat_2_index\": 505, \"group\": [2473.0, 1321.0, 392.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20419_BALBc-1_X01_Y02_123_829\", \"ini\": 1780, \"clust\": 768, \"rank\": 66, \"rankvar\": 546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1046, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1156, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1512, \"group\": [772.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20540_BALBc-1_X01_Y02_1231_399\", \"ini\": 1779, \"clust\": 203, \"rank\": 911, \"rankvar\": 659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1047, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1157, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1656, \"group\": [203.0, 136.0, 46.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20591_BALBc-1_X01_Y02_1231_893\", \"ini\": 1778, \"clust\": 427, \"rank\": 759, \"rankvar\": 778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1048, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1158, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1860, \"group\": [429.0, 304.0, 105.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21204_BALBc-1_X01_Y02_124_109\", \"ini\": 1777, \"clust\": 284, \"rank\": 1801, \"rankvar\": 2466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1049, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1159, \"cat-2\": \"Density: 27\", \"cat_2_index\": 937, \"group\": [284.0, 206.0, 75.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21575_BALBc-1_X01_Y02_1244_166\", \"ini\": 1776, \"clust\": 2591, \"rank\": 1583, \"rankvar\": 2190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1050, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2536, \"cat-2\": \"Density: 22\", \"cat_2_index\": 285, \"group\": [2592.0, 1401.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21957_BALBc-1_X01_Y02_1249_556\", \"ini\": 1775, \"clust\": 1881, \"rank\": 2323, \"rankvar\": 2747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1051, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1160, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1088, \"group\": [1882.0, 1072.0, 326.0, 91.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21977_BALBc-1_X01_Y02_1249_787\", \"ini\": 1774, \"clust\": 670, \"rank\": 378, \"rankvar\": 1206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1052, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1161, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2152, \"group\": [668.0, 442.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22035_BALBc-1_X01_Y02_125_534\", \"ini\": 1773, \"clust\": 1379, \"rank\": 1741, \"rankvar\": 1317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1053, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 99, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1392, \"group\": [1380.0, 733.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22253_BALBc-1_X01_Y02_1252_344\", \"ini\": 1772, \"clust\": 8, \"rank\": 1421, \"rankvar\": 127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1054, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2296, \"cat-2\": \"Density: 23\", \"cat_2_index\": 397, \"group\": [11.0, 10.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22740_BALBc-1_X01_Y02_1259_25\", \"ini\": 1771, \"clust\": 1375, \"rank\": 2135, \"rankvar\": 1703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1055, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1961, \"cat-2\": \"Density: 26\", \"cat_2_index\": 787, \"group\": [1376.0, 731.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22891_BALBc-1_X01_Y02_1260_403\", \"ini\": 1770, \"clust\": 444, \"rank\": 654, \"rankvar\": 1138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1056, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1162, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1513, \"group\": [445.0, 312.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23039_BALBc-1_X01_Y02_1262_452\", \"ini\": 1769, \"clust\": 813, \"rank\": 103, \"rankvar\": 284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1057, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1163, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1238, \"group\": [814.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23057_BALBc-1_X01_Y02_1262_678\", \"ini\": 1768, \"clust\": 173, \"rank\": 379, \"rankvar\": 619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1058, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1164, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2069, \"group\": [173.0, 112.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23972_BALBc-1_X01_Y02_1274_408\", \"ini\": 1767, \"clust\": 902, \"rank\": 57, \"rankvar\": 410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1059, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 100, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1393, \"group\": [900.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23974_BALBc-1_X01_Y02_1274_423\", \"ini\": 1766, \"clust\": 1142, \"rank\": 1151, \"rankvar\": 553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1060, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1165, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1514, \"group\": [1143.0, 544.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24160_BALBc-1_X01_Y02_1277_153\", \"ini\": 1765, \"clust\": 27, \"rank\": 979, \"rankvar\": 769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1061, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2537, \"cat-2\": \"Density: 21\", \"cat_2_index\": 204, \"group\": [30.0, 28.0, 16.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24404_BALBc-1_X01_Y02_128_478\", \"ini\": 1764, \"clust\": 1104, \"rank\": 344, \"rankvar\": 596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1062, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2450, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1089, \"group\": [1108.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24468_BALBc-1_X01_Y02_1280_260\", \"ini\": 1763, \"clust\": 128, \"rank\": 1059, \"rankvar\": 1340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1063, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2297, \"cat-2\": \"Density: 16\", \"cat_2_index\": 58, \"group\": [132.0, 82.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24628_BALBc-1_X01_Y02_1282_802\", \"ini\": 1762, \"clust\": 1776, \"rank\": 2143, \"rankvar\": 2483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1064, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1166, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1861, \"group\": [1776.0, 1008.0, 304.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25243_BALBc-1_X01_Y02_1290_386\", \"ini\": 1761, \"clust\": 420, \"rank\": 1281, \"rankvar\": 492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1065, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1167, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1239, \"group\": [420.0, 296.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25273_BALBc-1_X01_Y02_1290_702\", \"ini\": 1760, \"clust\": 1626, \"rank\": 2765, \"rankvar\": 2751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1066, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2298, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1966, \"group\": [1629.0, 896.0, 259.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25852_BALBc-1_X01_Y02_1298_50\", \"ini\": 1759, \"clust\": 604, \"rank\": 425, \"rankvar\": 560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1067, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1580, \"cat-2\": \"Density: 24\", \"cat_2_index\": 506, \"group\": [604.0, 412.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25924_BALBc-1_X01_Y02_1299_448\", \"ini\": 1758, \"clust\": 839, \"rank\": 61, \"rankvar\": 68, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1068, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1648, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1394, \"group\": [839.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26183_BALBc-1_X01_Y02_1300_80\", \"ini\": 1757, \"clust\": 2738, \"rank\": 1983, \"rankvar\": 2134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1069, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2538, \"cat-2\": \"Density: 23\", \"cat_2_index\": 398, \"group\": [2739.0, 1474.0, 435.0, 114.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26216_BALBc-1_X01_Y02_1301_40\", \"ini\": 1756, \"clust\": 513, \"rank\": 724, \"rankvar\": 390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1070, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1962, \"cat-2\": \"Density: 25\", \"cat_2_index\": 650, \"group\": [517.0, 354.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26286_BALBc-1_X01_Y02_1302_362\", \"ini\": 1755, \"clust\": 1704, \"rank\": 1905, \"rankvar\": 2310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1071, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1168, \"cat-2\": \"Density: 25\", \"cat_2_index\": 651, \"group\": [1701.0, 957.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26422_BALBc-1_X01_Y02_1304_482\", \"ini\": 1754, \"clust\": 1009, \"rank\": 516, \"rankvar\": 431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1072, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1169, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1090, \"group\": [1012.0, 514.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26472_BALBc-1_X01_Y02_1305_154\", \"ini\": 1753, \"clust\": 29, \"rank\": 156, \"rankvar\": 2509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1073, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2539, \"cat-2\": \"Density: 17\", \"cat_2_index\": 76, \"group\": [29.0, 27.0, 16.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26543_BALBc-1_X01_Y02_1306_303\", \"ini\": 1752, \"clust\": 2628, \"rank\": 2353, \"rankvar\": 2214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1074, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1170, \"cat-2\": \"Density: 22\", \"cat_2_index\": 286, \"group\": [2628.0, 1421.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26628_BALBc-1_X01_Y02_1307_628\", \"ini\": 1751, \"clust\": 79, \"rank\": 398, \"rankvar\": 1603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1075, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1171, \"cat-2\": \"Density: 26\", \"cat_2_index\": 788, \"group\": [80.0, 59.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26791_BALBc-1_X01_Y02_1309_847\", \"ini\": 1750, \"clust\": 912, \"rank\": 114, \"rankvar\": 21, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1076, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1172, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1967, \"group\": [913.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26808_BALBc-1_X01_Y02_131_13\", \"ini\": 1749, \"clust\": 1290, \"rank\": 1825, \"rankvar\": 878, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1077, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1173, \"cat-2\": \"Density: 25\", \"cat_2_index\": 652, \"group\": [1293.0, 664.0, 190.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26858_BALBc-1_X01_Y02_131_710\", \"ini\": 1748, \"clust\": 2563, \"rank\": 2062, \"rankvar\": 2443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1078, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1174, \"cat-2\": \"Density: 25\", \"cat_2_index\": 653, \"group\": [2564.0, 1385.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26907_BALBc-1_X01_Y02_1310_424\", \"ini\": 1747, \"clust\": 633, \"rank\": 594, \"rankvar\": 913, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1079, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 831, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1657, \"group\": [634.0, 427.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27339_BALBc-1_X01_Y02_1316_272\", \"ini\": 1746, \"clust\": 2602, \"rank\": 1887, \"rankvar\": 2102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1080, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2540, \"cat-2\": \"Density: 16\", \"cat_2_index\": 59, \"group\": [2603.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27376_BALBc-1_X01_Y02_1316_760\", \"ini\": 1745, \"clust\": 1859, \"rank\": 1437, \"rankvar\": 1256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1081, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1175, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1862, \"group\": [1861.0, 1052.0, 317.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27712_BALBc-1_X01_Y02_1320_379\", \"ini\": 1744, \"clust\": 1132, \"rank\": 1179, \"rankvar\": 214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1082, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1649, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1395, \"group\": [1131.0, 533.0, 145.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27787_BALBc-1_X01_Y02_1321_46\", \"ini\": 1743, \"clust\": 2681, \"rank\": 2499, \"rankvar\": 1065, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1083, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2451, \"cat-2\": \"Density: 25\", \"cat_2_index\": 654, \"group\": [2684.0, 1447.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28104_BALBc-1_X01_Y02_1325_686\", \"ini\": 1742, \"clust\": 1705, \"rank\": 2497, \"rankvar\": 2481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1084, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1176, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1515, \"group\": [1711.0, 963.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28119_BALBc-1_X01_Y02_1325_869\", \"ini\": 1741, \"clust\": 789, \"rank\": 99, \"rankvar\": 1028, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1085, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1177, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1516, \"group\": [790.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28171_BALBc-1_X01_Y02_1326_556\", \"ini\": 1740, \"clust\": 191, \"rank\": 673, \"rankvar\": 883, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1086, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1178, \"cat-2\": \"Density: 21\", \"cat_2_index\": 205, \"group\": [192.0, 128.0, 43.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28403_BALBc-1_X01_Y02_1329_340\", \"ini\": 1739, \"clust\": 2609, \"rank\": 2032, \"rankvar\": 2294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1087, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2541, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1091, \"group\": [2607.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28439_BALBc-1_X01_Y02_1329_667\", \"ini\": 1738, \"clust\": 375, \"rank\": 1063, \"rankvar\": 2340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1088, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1179, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1517, \"group\": [390.0, 272.0, 92.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28793_BALBc-1_X01_Y02_1333_435\", \"ini\": 1737, \"clust\": 1876, \"rank\": 1294, \"rankvar\": 239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1089, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 832, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1863, \"group\": [1876.0, 1066.0, 323.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28907_BALBc-1_X01_Y02_1334_958\", \"ini\": 1736, \"clust\": 581, \"rank\": 567, \"rankvar\": 1231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1090, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1180, \"cat-2\": \"Density: 24\", \"cat_2_index\": 507, \"group\": [587.0, 400.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29029_BALBc-1_X01_Y02_1337_148\", \"ini\": 1735, \"clust\": 2540, \"rank\": 1683, \"rankvar\": 663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1091, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2542, \"cat-2\": \"Density: 17\", \"cat_2_index\": 77, \"group\": [2540.0, 1365.0, 405.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29253_BALBc-1_X01_Y02_1340_880\", \"ini\": 1734, \"clust\": 1789, \"rank\": 1448, \"rankvar\": 2217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1092, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1181, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1864, \"group\": [1788.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29328_BALBc-1_X01_Y02_135_526\", \"ini\": 1733, \"clust\": 192, \"rank\": 1057, \"rankvar\": 606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1093, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 101, \"cat-2\": \"Density: 26\", \"cat_2_index\": 789, \"group\": [193.0, 129.0, 44.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29539_BALBc-1_X01_Y02_138_561\", \"ini\": 1732, \"clust\": 156, \"rank\": 1267, \"rankvar\": 1375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1094, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 102, \"cat-2\": \"Density: 27\", \"cat_2_index\": 938, \"group\": [157.0, 99.0, 32.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29570_BALBc-1_X01_Y02_138_885\", \"ini\": 1731, \"clust\": 2416, \"rank\": 917, \"rankvar\": 817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1095, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2299, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1240, \"group\": [2418.0, 1286.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29751_BALBc-1_X01_Y02_140_575\", \"ini\": 1730, \"clust\": 2656, \"rank\": 2657, \"rankvar\": 2316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1096, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1182, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1092, \"group\": [2659.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29777_BALBc-1_X01_Y02_140_975\", \"ini\": 1729, \"clust\": 1867, \"rank\": 1596, \"rankvar\": 1135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1097, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2300, \"cat-2\": \"Density: 18\", \"cat_2_index\": 95, \"group\": [1870.0, 1060.0, 320.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29799_BALBc-1_X01_Y02_141_323\", \"ini\": 1728, \"clust\": 282, \"rank\": 1441, \"rankvar\": 224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1098, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 697, \"cat-2\": \"Density: 27\", \"cat_2_index\": 939, \"group\": [285.0, 207.0, 75.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29956_BALBc-1_X01_Y02_143_444\", \"ini\": 1727, \"clust\": 2155, \"rank\": 1064, \"rankvar\": 543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1099, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2452, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1518, \"group\": [2170.0, 1176.0, 346.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30085_BALBc-1_X01_Y02_145_273\", \"ini\": 1726, \"clust\": 1326, \"rank\": 1075, \"rankvar\": 1222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1100, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2239, \"cat-2\": \"Density: 25\", \"cat_2_index\": 655, \"group\": [1326.0, 693.0, 207.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30088_BALBc-1_X01_Y02_145_290\", \"ini\": 1725, \"clust\": 668, \"rank\": 213, \"rankvar\": 521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1101, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2453, \"cat-2\": \"Density: 24\", \"cat_2_index\": 508, \"group\": [669.0, 442.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30181_BALBc-1_X01_Y02_146_484\", \"ini\": 1724, \"clust\": 2771, \"rank\": 1881, \"rankvar\": 1529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1102, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1963, \"cat-2\": \"Density: 26\", \"cat_2_index\": 790, \"group\": [2775.0, 1502.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30212_BALBc-1_X01_Y02_146_853\", \"ini\": 1723, \"clust\": 746, \"rank\": 478, \"rankvar\": 1448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1103, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 103, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1658, \"group\": [745.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30226_BALBc-1_X01_Y02_147_121\", \"ini\": 1722, \"clust\": 510, \"rank\": 713, \"rankvar\": 391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1104, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1183, \"cat-2\": \"Density: 22\", \"cat_2_index\": 287, \"group\": [511.0, 350.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30323_BALBc-1_X01_Y02_148_511\", \"ini\": 1721, \"clust\": 2739, \"rank\": 2114, \"rankvar\": 2021, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1105, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 104, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1241, \"group\": [2740.0, 1475.0, 435.0, 114.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30392_BALBc-1_X01_Y02_149_423\", \"ini\": 1720, \"clust\": 18, \"rank\": 1123, \"rankvar\": 1583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1106, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1650, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1396, \"group\": [19.0, 18.0, 11.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30672_BALBc-1_X01_Y02_152_19\", \"ini\": 1719, \"clust\": 1607, \"rank\": 1166, \"rankvar\": 1868, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1107, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1184, \"cat-2\": \"Density: 27\", \"cat_2_index\": 940, \"group\": [1606.0, 887.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31029_BALBc-1_X01_Y02_156_815\", \"ini\": 1718, \"clust\": 1711, \"rank\": 2613, \"rankvar\": 2527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1108, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2301, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1519, \"group\": [1712.0, 964.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31048_BALBc-1_X01_Y02_156_993\", \"ini\": 1717, \"clust\": 1113, \"rank\": 703, \"rankvar\": 1243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1109, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2543, \"cat-2\": \"Density: 13\", \"cat_2_index\": 17, \"group\": [1114.0, 525.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31155_BALBc-1_X01_Y02_158_405\", \"ini\": 1716, \"clust\": 1708, \"rank\": 2808, \"rankvar\": 2822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1110, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 698, \"cat-2\": \"Density: 27\", \"cat_2_index\": 941, \"group\": [1707.0, 961.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31283_BALBc-1_X01_Y02_16_366\", \"ini\": 1715, \"clust\": 1892, \"rank\": 2415, \"rankvar\": 2405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1111, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1185, \"cat-2\": \"Density: 13\", \"cat_2_index\": 18, \"group\": [1892.0, 1082.0, 330.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31361_BALBc-1_X01_Y02_160_197\", \"ini\": 1714, \"clust\": 957, \"rank\": 499, \"rankvar\": 945, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1112, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1186, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1093, \"group\": [959.0, 490.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31477_BALBc-1_X01_Y02_161_787\", \"ini\": 1713, \"clust\": 980, \"rank\": 804, \"rankvar\": 861, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1113, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1187, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1242, \"group\": [980.0, 503.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31533_BALBc-1_X01_Y02_162_623\", \"ini\": 1712, \"clust\": 2486, \"rank\": 2136, \"rankvar\": 1910, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1114, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1188, \"cat-2\": \"Density: 24\", \"cat_2_index\": 509, \"group\": [2487.0, 1334.0, 398.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31548_BALBc-1_X01_Y02_162_836\", \"ini\": 1711, \"clust\": 1210, \"rank\": 1216, \"rankvar\": 1110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1115, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 105, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1520, \"group\": [1212.0, 605.0, 171.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31566_BALBc-1_X01_Y02_163_150\", \"ini\": 1710, \"clust\": 564, \"rank\": 762, \"rankvar\": 932, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1116, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1189, \"cat-2\": \"Density: 27\", \"cat_2_index\": 942, \"group\": [565.0, 388.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31622_BALBc-1_X01_Y02_163_893\", \"ini\": 1709, \"clust\": 1791, \"rank\": 2057, \"rankvar\": 1752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1117, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2302, \"cat-2\": \"Density: 27\", \"cat_2_index\": 943, \"group\": [1794.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31687_BALBc-1_X01_Y02_164_924\", \"ini\": 1708, \"clust\": 349, \"rank\": 1152, \"rankvar\": 1085, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1118, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2303, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1243, \"group\": [350.0, 245.0, 85.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31771_BALBc-1_X01_Y02_166_248\", \"ini\": 1707, \"clust\": 1083, \"rank\": 216, \"rankvar\": 824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1119, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1190, \"cat-2\": \"Density: 26\", \"cat_2_index\": 791, \"group\": [1083.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31778_BALBc-1_X01_Y02_166_382\", \"ini\": 1706, \"clust\": 815, \"rank\": 46, \"rankvar\": 358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1120, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 699, \"cat-2\": \"Density: 24\", \"cat_2_index\": 510, \"group\": [813.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31826_BALBc-1_X01_Y02_166_996\", \"ini\": 1705, \"clust\": 2273, \"rank\": 1921, \"rankvar\": 325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1121, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 106, \"cat-2\": \"Density: 14\", \"cat_2_index\": 30, \"group\": [2275.0, 1240.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31882_BALBc-1_X01_Y02_167_871\", \"ini\": 1704, \"clust\": 1071, \"rank\": 421, \"rankvar\": 757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1122, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 107, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1521, \"group\": [1070.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32028_BALBc-1_X01_Y02_169_976\", \"ini\": 1703, \"clust\": 388, \"rank\": 1116, \"rankvar\": 428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1123, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2304, \"cat-2\": \"Density: 21\", \"cat_2_index\": 206, \"group\": [388.0, 270.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32605_BALBc-1_X01_Y02_177_12\", \"ini\": 1702, \"clust\": 1521, \"rank\": 2768, \"rankvar\": 2779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1124, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1191, \"cat-2\": \"Density: 26\", \"cat_2_index\": 792, \"group\": [1519.0, 819.0, 239.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32781_BALBc-1_X01_Y02_179_504\", \"ini\": 1701, \"clust\": 2773, \"rank\": 2468, \"rankvar\": 2743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1125, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1964, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1397, \"group\": [2772.0, 1502.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32994_BALBc-1_X01_Y02_181_536\", \"ini\": 1700, \"clust\": 2654, \"rank\": 2411, \"rankvar\": 1966, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1126, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 108, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1659, \"group\": [2655.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33083_BALBc-1_X01_Y02_182_591\", \"ini\": 1699, \"clust\": 2623, \"rank\": 2141, \"rankvar\": 2628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1127, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2240, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1244, \"group\": [2623.0, 1417.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33098_BALBc-1_X01_Y02_182_806\", \"ini\": 1698, \"clust\": 1212, \"rank\": 514, \"rankvar\": 1576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1128, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1192, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1865, \"group\": [1211.0, 604.0, 171.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33178_BALBc-1_X01_Y02_183_939\", \"ini\": 1697, \"clust\": 1792, \"rank\": 2289, \"rankvar\": 2744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1129, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 109, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1094, \"group\": [1793.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33258_BALBc-1_X01_Y02_184_896\", \"ini\": 1696, \"clust\": 2392, \"rank\": 2098, \"rankvar\": 1108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1130, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 110, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1866, \"group\": [2391.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33265_BALBc-1_X01_Y02_184_97\", \"ini\": 1695, \"clust\": 1689, \"rank\": 1846, \"rankvar\": 1059, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1131, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1651, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1245, \"group\": [1689.0, 946.0, 282.0, 81.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33280_BALBc-1_X01_Y02_185_324\", \"ini\": 1694, \"clust\": 1253, \"rank\": 1198, \"rankvar\": 2046, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1132, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1193, \"cat-2\": \"Density: 26\", \"cat_2_index\": 793, \"group\": [1252.0, 633.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33754_BALBc-1_X01_Y02_190_870\", \"ini\": 1693, \"clust\": 1972, \"rank\": 2428, \"rankvar\": 1486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1133, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 111, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2070, \"group\": [1976.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33990_BALBc-1_X01_Y02_193_959\", \"ini\": 1692, \"clust\": 2422, \"rank\": 983, \"rankvar\": 292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1134, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 112, \"cat-2\": \"Density: 27\", \"cat_2_index\": 944, \"group\": [2423.0, 1290.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34020_BALBc-1_X01_Y02_194_351\", \"ini\": 1691, \"clust\": 1393, \"rank\": 1449, \"rankvar\": 1053, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1135, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 700, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1095, \"group\": [1395.0, 746.0, 218.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34038_BALBc-1_X01_Y02_194_572\", \"ini\": 1690, \"clust\": 2723, \"rank\": 2011, \"rankvar\": 1623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1136, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2544, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1522, \"group\": [2723.0, 1462.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34165_BALBc-1_X01_Y02_196_520\", \"ini\": 1689, \"clust\": 2500, \"rank\": 2308, \"rankvar\": 1885, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1137, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 895, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1867, \"group\": [2499.0, 1344.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34589_BALBc-1_X01_Y02_201_481\", \"ini\": 1688, \"clust\": 1340, \"rank\": 1046, \"rankvar\": 1478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1138, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1965, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1246, \"group\": [1341.0, 705.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34649_BALBc-1_X01_Y02_202_257\", \"ini\": 1687, \"clust\": 1274, \"rank\": 1181, \"rankvar\": 2453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1139, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1966, \"cat-2\": \"Density: 27\", \"cat_2_index\": 945, \"group\": [1274.0, 652.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34718_BALBc-1_X01_Y02_203_164\", \"ini\": 1686, \"clust\": 318, \"rank\": 2379, \"rankvar\": 2518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1140, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1194, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1096, \"group\": [321.0, 224.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34915_BALBc-1_X01_Y02_205_7\", \"ini\": 1685, \"clust\": 1234, \"rank\": 1188, \"rankvar\": 2281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1141, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1195, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1097, \"group\": [1233.0, 621.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35085_BALBc-1_X01_Y02_207_892\", \"ini\": 1684, \"clust\": 888, \"rank\": 91, \"rankvar\": 232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1142, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 113, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1765, \"group\": [892.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35133_BALBc-1_X01_Y02_208_606\", \"ini\": 1683, \"clust\": 1120, \"rank\": 544, \"rankvar\": 673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1143, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2241, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1098, \"group\": [1121.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35140_BALBc-1_X01_Y02_208_76\", \"ini\": 1682, \"clust\": 539, \"rank\": 278, \"rankvar\": 775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1144, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1652, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1247, \"group\": [540.0, 368.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35161_BALBc-1_X01_Y02_208_997\", \"ini\": 1681, \"clust\": 1912, \"rank\": 2034, \"rankvar\": 790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1145, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 114, \"cat-2\": \"Density: 20\", \"cat_2_index\": 155, \"group\": [1915.0, 1099.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35307_BALBc-1_X01_Y02_21_950\", \"ini\": 1680, \"clust\": 784, \"rank\": 223, \"rankvar\": 1596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1146, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1196, \"cat-2\": \"Density: 11\", \"cat_2_index\": 6, \"group\": [787.0, 476.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35371_BALBc-1_X01_Y02_210_919\", \"ini\": 1679, \"clust\": 1783, \"rank\": 1990, \"rankvar\": 1622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1147, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 115, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1968, \"group\": [1783.0, 1012.0, 307.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35707_BALBc-1_X01_Y02_215_359\", \"ini\": 1678, \"clust\": 360, \"rank\": 569, \"rankvar\": 1969, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1148, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 701, \"cat-2\": \"Density: 25\", \"cat_2_index\": 656, \"group\": [361.0, 251.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35849_BALBc-1_X01_Y02_217_422\", \"ini\": 1677, \"clust\": 772, \"rank\": 110, \"rankvar\": 514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1149, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 702, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1099, \"group\": [776.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35964_BALBc-1_X01_Y02_218_953\", \"ini\": 1676, \"clust\": 920, \"rank\": 224, \"rankvar\": 264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1150, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 116, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1868, \"group\": [926.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36019_BALBc-1_X01_Y02_219_856\", \"ini\": 1675, \"clust\": 552, \"rank\": 263, \"rankvar\": 909, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1151, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2305, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2437, \"group\": [550.0, 376.0, 124.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36350_BALBc-1_X01_Y02_223_52\", \"ini\": 1674, \"clust\": 530, \"rank\": 1069, \"rankvar\": 1124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1152, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1197, \"cat-2\": \"Density: 26\", \"cat_2_index\": 794, \"group\": [531.0, 363.0, 122.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36560_BALBc-1_X01_Y02_226_384\", \"ini\": 1673, \"clust\": 246, \"rank\": 1440, \"rankvar\": 2636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1153, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 703, \"cat-2\": \"Density: 26\", \"cat_2_index\": 795, \"group\": [247.0, 171.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36605_BALBc-1_X01_Y02_226_872\", \"ini\": 1672, \"clust\": 2385, \"rank\": 2477, \"rankvar\": 1174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1154, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2306, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2234, \"group\": [2387.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37140_BALBc-1_X01_Y02_233_273\", \"ini\": 1671, \"clust\": 1601, \"rank\": 974, \"rankvar\": 2311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1155, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1198, \"cat-2\": \"Density: 26\", \"cat_2_index\": 796, \"group\": [1601.0, 883.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37170_BALBc-1_X01_Y02_233_605\", \"ini\": 1670, \"clust\": 1900, \"rank\": 2608, \"rankvar\": 2549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1156, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1199, \"cat-2\": \"Density: 27\", \"cat_2_index\": 946, \"group\": [1899.0, 1087.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37201_BALBc-1_X01_Y02_234_185\", \"ini\": 1669, \"clust\": 94, \"rank\": 694, \"rankvar\": 2419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1157, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1200, \"cat-2\": \"Density: 24\", \"cat_2_index\": 511, \"group\": [95.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37456_BALBc-1_X01_Y02_237_70\", \"ini\": 1668, \"clust\": 1684, \"rank\": 2029, \"rankvar\": 2622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1158, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 117, \"cat-2\": \"Density: 25\", \"cat_2_index\": 657, \"group\": [1685.0, 942.0, 279.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37475_BALBc-1_X01_Y02_237_937\", \"ini\": 1667, \"clust\": 2440, \"rank\": 1174, \"rankvar\": 439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1159, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 118, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2153, \"group\": [2441.0, 1298.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37621_BALBc-1_X01_Y02_239_971\", \"ini\": 1666, \"clust\": 1143, \"rank\": 1252, \"rankvar\": 1121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1160, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 119, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1523, \"group\": [1144.0, 544.0, 150.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37749_BALBc-1_X01_Y02_240_84\", \"ini\": 1665, \"clust\": 1377, \"rank\": 1643, \"rankvar\": 2092, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1161, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1653, \"cat-2\": \"Density: 23\", \"cat_2_index\": 399, \"group\": [1378.0, 732.0, 215.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37862_BALBc-1_X01_Y02_242_444\", \"ini\": 1664, \"clust\": 2554, \"rank\": 2429, \"rankvar\": 2258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1162, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1654, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1660, \"group\": [2554.0, 1377.0, 410.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37892_BALBc-1_X01_Y02_242_898\", \"ini\": 1663, \"clust\": 2157, \"rank\": 1855, \"rankvar\": 1009, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1163, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 120, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1969, \"group\": [2155.0, 1170.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37950_BALBc-1_X01_Y02_243_786\", \"ini\": 1662, \"clust\": 1915, \"rank\": 2175, \"rankvar\": 1773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1164, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 833, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2071, \"group\": [1916.0, 1100.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38019_BALBc-1_X01_Y02_244_504\", \"ini\": 1661, \"clust\": 1737, \"rank\": 2548, \"rankvar\": 2323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1165, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 896, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1398, \"group\": [1737.0, 980.0, 293.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38163_BALBc-1_X01_Y02_246_349\", \"ini\": 1660, \"clust\": 242, \"rank\": 1382, \"rankvar\": 2212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1166, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1201, \"cat-2\": \"Density: 23\", \"cat_2_index\": 400, \"group\": [245.0, 170.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38833_BALBc-1_X01_Y02_254_406\", \"ini\": 1659, \"clust\": 2649, \"rank\": 2426, \"rankvar\": 1785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1167, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 121, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1766, \"group\": [2654.0, 1441.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38864_BALBc-1_X01_Y02_254_818\", \"ini\": 1658, \"clust\": 2398, \"rank\": 2612, \"rankvar\": 1460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1168, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1202, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1970, \"group\": [2401.0, 1271.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38921_BALBc-1_X01_Y02_255_579\", \"ini\": 1657, \"clust\": 750, \"rank\": 128, \"rankvar\": 497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1169, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2545, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1399, \"group\": [751.0, 472.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39097_BALBc-1_X01_Y02_257_981\", \"ini\": 1656, \"clust\": 2158, \"rank\": 1746, \"rankvar\": 789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1170, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 122, \"cat-2\": \"Density: 27\", \"cat_2_index\": 947, \"group\": [2156.0, 1170.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39159_BALBc-1_X01_Y02_258_932\", \"ini\": 1655, \"clust\": 2035, \"rank\": 2598, \"rankvar\": 1418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1171, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 123, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2309, \"group\": [2037.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39206_BALBc-1_X01_Y02_259_497\", \"ini\": 1654, \"clust\": 1870, \"rank\": 1660, \"rankvar\": 2300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1172, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 897, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1971, \"group\": [1871.0, 1061.0, 321.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39295_BALBc-1_X01_Y02_26_739\", \"ini\": 1653, \"clust\": 1627, \"rank\": 2735, \"rankvar\": 2786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1173, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1747, \"cat-2\": \"Density: 17\", \"cat_2_index\": 78, \"group\": [1627.0, 894.0, 259.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39359_BALBc-1_X01_Y02_260_604\", \"ini\": 1652, \"clust\": 1989, \"rank\": 2120, \"rankvar\": 1848, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1174, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1203, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1400, \"group\": [1990.0, 1125.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39370_BALBc-1_X01_Y02_260_753\", \"ini\": 1651, \"clust\": 1701, \"rank\": 2569, \"rankvar\": 2595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1175, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 834, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1972, \"group\": [1703.0, 958.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39467_BALBc-1_X01_Y02_261_915\", \"ini\": 1650, \"clust\": 731, \"rank\": 282, \"rankvar\": 108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1176, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 124, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2310, \"group\": [730.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39512_BALBc-1_X01_Y02_262_462\", \"ini\": 1649, \"clust\": 2782, \"rank\": 2061, \"rankvar\": 1837, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1177, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1967, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1869, \"group\": [2782.0, 1506.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39541_BALBc-1_X01_Y02_262_944\", \"ini\": 1648, \"clust\": 2417, \"rank\": 1148, \"rankvar\": 914, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1178, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 125, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2154, \"group\": [2416.0, 1285.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39556_BALBc-1_X01_Y02_263_219\", \"ini\": 1647, \"clust\": 1805, \"rank\": 1563, \"rankvar\": 2723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1179, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1204, \"cat-2\": \"Density: 24\", \"cat_2_index\": 512, \"group\": [1808.0, 1022.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39656_BALBc-1_X01_Y02_264_54\", \"ini\": 1646, \"clust\": 1635, \"rank\": 2611, \"rankvar\": 2710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1180, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2307, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1248, \"group\": [1634.0, 900.0, 261.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39742_BALBc-1_X01_Y02_265_717\", \"ini\": 1645, \"clust\": 2021, \"rank\": 2539, \"rankvar\": 2118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1181, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 835, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1524, \"group\": [2026.0, 1141.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39744_BALBc-1_X01_Y02_265_773\", \"ini\": 1644, \"clust\": 493, \"rank\": 789, \"rankvar\": 616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1182, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 836, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2072, \"group\": [493.0, 337.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39786_BALBc-1_X01_Y02_266_282\", \"ini\": 1643, \"clust\": 1181, \"rank\": 1195, \"rankvar\": 755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1205, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1100, \"group\": [1182.0, 575.0, 160.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39838_BALBc-1_X01_Y02_266_848\", \"ini\": 1642, \"clust\": 137, \"rank\": 657, \"rankvar\": 747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1184, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2308, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2311, \"group\": [136.0, 84.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39873_BALBc-1_X01_Y02_267_383\", \"ini\": 1641, \"clust\": 937, \"rank\": 245, \"rankvar\": 246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1185, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 898, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1101, \"group\": [940.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39968_BALBc-1_X01_Y02_268_561\", \"ini\": 1640, \"clust\": 2703, \"rank\": 2535, \"rankvar\": 2464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1186, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2546, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1870, \"group\": [2704.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40006_BALBc-1_X01_Y02_268_984\", \"ini\": 1639, \"clust\": 2318, \"rank\": 1982, \"rankvar\": 1641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1187, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 126, \"cat-2\": \"Density: 27\", \"cat_2_index\": 948, \"group\": [2314.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40052_BALBc-1_X01_Y02_269_644\", \"ini\": 1638, \"clust\": 2638, \"rank\": 2518, \"rankvar\": 2031, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1188, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1206, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1525, \"group\": [2640.0, 1432.0, 422.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40139_BALBc-1_X01_Y02_27_826\", \"ini\": 1637, \"clust\": 598, \"rank\": 401, \"rankvar\": 1305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1189, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1748, \"cat-2\": \"Density: 20\", \"cat_2_index\": 156, \"group\": [599.0, 410.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40204_BALBc-1_X01_Y02_270_792\", \"ini\": 1636, \"clust\": 2049, \"rank\": 2746, \"rankvar\": 1938, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1190, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 899, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2073, \"group\": [2053.0, 1149.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40333_BALBc-1_X01_Y02_272_580\", \"ini\": 1635, \"clust\": 2276, \"rank\": 1793, \"rankvar\": 1427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1191, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 127, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1249, \"group\": [2276.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40421_BALBc-1_X01_Y02_273_871\", \"ini\": 1634, \"clust\": 424, \"rank\": 824, \"rankvar\": 611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1192, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 128, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2438, \"group\": [425.0, 301.0, 104.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40533_BALBc-1_X01_Y02_275_478\", \"ini\": 1633, \"clust\": 2619, \"rank\": 2146, \"rankvar\": 1939, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1193, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 129, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1661, \"group\": [2622.0, 1416.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40559_BALBc-1_X01_Y02_275_815\", \"ini\": 1632, \"clust\": 1051, \"rank\": 239, \"rankvar\": 1169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1194, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 130, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2074, \"group\": [1049.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40761_BALBc-1_X01_Y02_278_453\", \"ini\": 1631, \"clust\": 2718, \"rank\": 2365, \"rankvar\": 2505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1195, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 131, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1526, \"group\": [2720.0, 1460.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41007_BALBc-1_X01_Y02_280_883\", \"ini\": 1630, \"clust\": 2033, \"rank\": 2544, \"rankvar\": 1593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1196, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 132, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2439, \"group\": [2031.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41013_BALBc-1_X01_Y02_280_967\", \"ini\": 1629, \"clust\": 886, \"rank\": 11, \"rankvar\": 208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1197, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 133, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1527, \"group\": [886.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41049_BALBc-1_X01_Y02_281_533\", \"ini\": 1628, \"clust\": 2587, \"rank\": 1280, \"rankvar\": 1765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1198, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 900, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1973, \"group\": [2588.0, 1400.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41198_BALBc-1_X01_Y02_283_337\", \"ini\": 1627, \"clust\": 112, \"rank\": 929, \"rankvar\": 406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1199, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1207, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1102, \"group\": [114.0, 70.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41290_BALBc-1_X01_Y02_284_545\", \"ini\": 1626, \"clust\": 2391, \"rank\": 2200, \"rankvar\": 960, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1200, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 134, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1974, \"group\": [2393.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41467_BALBc-1_X01_Y02_286_916\", \"ini\": 1625, \"clust\": 2310, \"rank\": 2125, \"rankvar\": 1489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1201, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 135, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2372, \"group\": [2309.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41763_BALBc-1_X01_Y02_29_936\", \"ini\": 1624, \"clust\": 1435, \"rank\": 2721, \"rankvar\": 2387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1202, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1749, \"cat-2\": \"Density: 12\", \"cat_2_index\": 7, \"group\": [1435.0, 781.0, 234.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41809_BALBc-1_X01_Y02_290_713\", \"ini\": 1623, \"clust\": 2442, \"rank\": 1295, \"rankvar\": 1346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1203, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 837, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1975, \"group\": [2442.0, 1299.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41901_BALBc-1_X01_Y02_291_852\", \"ini\": 1622, \"clust\": 2342, \"rank\": 2133, \"rankvar\": 1044, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1204, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 136, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2155, \"group\": [2339.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41931_BALBc-1_X01_Y02_292_367\", \"ini\": 1621, \"clust\": 1679, \"rank\": 1831, \"rankvar\": 1113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1205, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 901, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1401, \"group\": [1679.0, 936.0, 276.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41979_BALBc-1_X01_Y02_292_991\", \"ini\": 1620, \"clust\": 2302, \"rank\": 1785, \"rankvar\": 1109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1206, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 137, \"cat-2\": \"Density: 25\", \"cat_2_index\": 658, \"group\": [2299.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42051_BALBc-1_X01_Y02_293_825\", \"ini\": 1619, \"clust\": 2319, \"rank\": 2129, \"rankvar\": 1642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1207, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 138, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2312, \"group\": [2315.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42197_BALBc-1_X01_Y02_296_1001\", \"ini\": 1618, \"clust\": 437, \"rank\": 465, \"rankvar\": 615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1208, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 139, \"cat-2\": \"Density: 24\", \"cat_2_index\": 513, \"group\": [438.0, 309.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42211_BALBc-1_X01_Y02_296_251\", \"ini\": 1617, \"clust\": 1311, \"rank\": 798, \"rankvar\": 2728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1209, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1208, \"cat-2\": \"Density: 26\", \"cat_2_index\": 797, \"group\": [1309.0, 679.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42305_BALBc-1_X01_Y02_297_639\", \"ini\": 1616, \"clust\": 1733, \"rank\": 1799, \"rankvar\": 2293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1210, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1209, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2075, \"group\": [1734.0, 977.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42319_BALBc-1_X01_Y02_297_804\", \"ini\": 1615, \"clust\": 174, \"rank\": 424, \"rankvar\": 1409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1211, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 902, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2373, \"group\": [174.0, 112.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42398_BALBc-1_X01_Y02_298_87\", \"ini\": 1614, \"clust\": 2542, \"rank\": 1601, \"rankvar\": 1730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1212, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1210, \"cat-2\": \"Density: 24\", \"cat_2_index\": 514, \"group\": [2543.0, 1368.0, 407.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42612_BALBc-1_X01_Y02_300_601\", \"ini\": 1613, \"clust\": 2259, \"rank\": 1581, \"rankvar\": 707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1213, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 140, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2076, \"group\": [2258.0, 1234.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42732_BALBc-1_X01_Y02_301_949\", \"ini\": 1612, \"clust\": 2329, \"rank\": 2004, \"rankvar\": 1037, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1214, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 141, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1976, \"group\": [2326.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43120_BALBc-1_X01_Y02_307_419\", \"ini\": 1611, \"clust\": 2581, \"rank\": 1426, \"rankvar\": 2040, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1215, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 903, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1662, \"group\": [2583.0, 1396.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43132_BALBc-1_X01_Y02_307_574\", \"ini\": 1610, \"clust\": 2796, \"rank\": 1324, \"rankvar\": 1284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1216, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 142, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1767, \"group\": [2796.0, 1517.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43153_BALBc-1_X01_Y02_307_973\", \"ini\": 1609, \"clust\": 447, \"rank\": 352, \"rankvar\": 1080, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1217, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1211, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1528, \"group\": [449.0, 313.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43190_BALBc-1_X01_Y02_308_551\", \"ini\": 1608, \"clust\": 126, \"rank\": 1085, \"rankvar\": 2167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1218, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 143, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1977, \"group\": [126.0, 80.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43335_BALBc-1_X01_Y02_31_697\", \"ini\": 1607, \"clust\": 1172, \"rank\": 1232, \"rankvar\": 2534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1219, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2547, \"cat-2\": \"Density: 14\", \"cat_2_index\": 31, \"group\": [1176.0, 569.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43610_BALBc-1_X01_Y02_313_207\", \"ini\": 1606, \"clust\": 1385, \"rank\": 1893, \"rankvar\": 1926, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1220, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1212, \"cat-2\": \"Density: 26\", \"cat_2_index\": 798, \"group\": [1388.0, 739.0, 217.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43667_BALBc-1_X01_Y02_313_928\", \"ini\": 1605, \"clust\": 1864, \"rank\": 1958, \"rankvar\": 2609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1221, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 144, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2440, \"group\": [1867.0, 1058.0, 319.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43786_BALBc-1_X01_Y02_315_720\", \"ini\": 1604, \"clust\": 862, \"rank\": 148, \"rankvar\": 472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1222, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1213, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2374, \"group\": [863.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43787_BALBc-1_X01_Y02_315_732\", \"ini\": 1603, \"clust\": 2315, \"rank\": 2367, \"rankvar\": 1790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1223, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1994, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2441, \"group\": [2318.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43806_BALBc-1_X01_Y02_315_911\", \"ini\": 1602, \"clust\": 1954, \"rank\": 2346, \"rankvar\": 692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1224, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 145, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2657, \"group\": [1953.0, 1115.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43842_BALBc-1_X01_Y02_316_523\", \"ini\": 1601, \"clust\": 2698, \"rank\": 2704, \"rankvar\": 2253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1225, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 146, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2156, \"group\": [2702.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43849_BALBc-1_X01_Y02_316_620\", \"ini\": 1600, \"clust\": 2707, \"rank\": 2456, \"rankvar\": 2204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1226, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 147, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2157, \"group\": [2707.0, 1454.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43973_BALBc-1_X01_Y02_317_998\", \"ini\": 1599, \"clust\": 2373, \"rank\": 2545, \"rankvar\": 1657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1227, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 148, \"cat-2\": \"Density: 24\", \"cat_2_index\": 515, \"group\": [2371.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44048_BALBc-1_X01_Y02_318_852\", \"ini\": 1598, \"clust\": 147, \"rank\": 1228, \"rankvar\": 999, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1228, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 149, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2550, \"group\": [148.0, 92.0, 30.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44158_BALBc-1_X01_Y02_32_575\", \"ini\": 1597, \"clust\": 1361, \"rank\": 2455, \"rankvar\": 2200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1229, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 838, \"cat-2\": \"Density: 17\", \"cat_2_index\": 79, \"group\": [1361.0, 722.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44319_BALBc-1_X01_Y02_321_675\", \"ini\": 1596, \"clust\": 2171, \"rank\": 1647, \"rankvar\": 1268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1230, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1214, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1978, \"group\": [2173.0, 1179.0, 347.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44330_BALBc-1_X01_Y02_321_819\", \"ini\": 1595, \"clust\": 1920, \"rank\": 2467, \"rankvar\": 1946, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1231, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 904, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2442, \"group\": [1920.0, 1104.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44535_BALBc-1_X01_Y02_324_399\", \"ini\": 1594, \"clust\": 1150, \"rank\": 684, \"rankvar\": 563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1232, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 905, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1402, \"group\": [1149.0, 549.0, 151.0, 38.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44544_BALBc-1_X01_Y02_324_471\", \"ini\": 1593, \"clust\": 2700, \"rank\": 2715, \"rankvar\": 2642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1233, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 150, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2158, \"group\": [2700.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44837_BALBc-1_X01_Y02_328_284\", \"ini\": 1592, \"clust\": 1263, \"rank\": 1285, \"rankvar\": 1182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1234, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 906, \"cat-2\": \"Density: 26\", \"cat_2_index\": 799, \"group\": [1263.0, 642.0, 185.0, 52.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44938_BALBc-1_X01_Y02_329_485\", \"ini\": 1591, \"clust\": 982, \"rank\": 397, \"rankvar\": 643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1235, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 151, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2235, \"group\": [981.0, 504.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44940_BALBc-1_X01_Y02_329_520\", \"ini\": 1590, \"clust\": 2514, \"rank\": 1291, \"rankvar\": 1866, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1236, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 152, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2236, \"group\": [2517.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45002_BALBc-1_X01_Y02_33_176\", \"ini\": 1589, \"clust\": 956, \"rank\": 653, \"rankvar\": 1435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1237, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1968, \"cat-2\": \"Density: 19\", \"cat_2_index\": 120, \"group\": [960.0, 491.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45143_BALBc-1_X01_Y02_331_141\", \"ini\": 1588, \"clust\": 1643, \"rank\": 2035, \"rankvar\": 2734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1238, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2454, \"cat-2\": \"Density: 24\", \"cat_2_index\": 516, \"group\": [1646.0, 906.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45181_BALBc-1_X01_Y02_331_563\", \"ini\": 1587, \"clust\": 1946, \"rank\": 2066, \"rankvar\": 1472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1239, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 153, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2077, \"group\": [1947.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45205_BALBc-1_X01_Y02_331_950\", \"ini\": 1586, \"clust\": 432, \"rank\": 1091, \"rankvar\": 1690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1240, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1215, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2237, \"group\": [433.0, 307.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45467_BALBc-1_X01_Y02_335_449\", \"ini\": 1585, \"clust\": 2521, \"rank\": 1180, \"rankvar\": 1574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1241, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 154, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1768, \"group\": [2521.0, 1353.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45505_BALBc-1_X01_Y02_335_812\", \"ini\": 1584, \"clust\": 2153, \"rank\": 1112, \"rankvar\": 412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1242, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 907, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2604, \"group\": [2151.0, 1167.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45513_BALBc-1_X01_Y02_335_880\", \"ini\": 1583, \"clust\": 720, \"rank\": 517, \"rankvar\": 49, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1243, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 155, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2703, \"group\": [720.0, 461.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45549_BALBc-1_X01_Y02_336_399\", \"ini\": 1582, \"clust\": 193, \"rank\": 792, \"rankvar\": 104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1244, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 156, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1403, \"group\": [194.0, 130.0, 44.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45699_BALBc-1_X01_Y02_338_596\", \"ini\": 1581, \"clust\": 145, \"rank\": 1457, \"rankvar\": 1577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1245, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 157, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2375, \"group\": [146.0, 91.0, 30.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45736_BALBc-1_X01_Y02_338_994\", \"ini\": 1580, \"clust\": 2210, \"rank\": 1542, \"rankvar\": 551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1246, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1216, \"cat-2\": \"Density: 26\", \"cat_2_index\": 800, \"group\": [2210.0, 1191.0, 350.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45772_BALBc-1_X01_Y02_339_514\", \"ini\": 1579, \"clust\": 5, \"rank\": 1499, \"rankvar\": 1315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1247, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 158, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2313, \"group\": [8.0, 7.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45887_BALBc-1_X01_Y02_340_11\", \"ini\": 1578, \"clust\": 693, \"rank\": 363, \"rankvar\": 525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1248, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2309, \"cat-2\": \"Density: 27\", \"cat_2_index\": 949, \"group\": [695.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46022_BALBc-1_X01_Y02_341_760\", \"ini\": 1577, \"clust\": 1683, \"rank\": 1933, \"rankvar\": 1295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1249, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 908, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2740, \"group\": [1686.0, 943.0, 279.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46029_BALBc-1_X01_Y02_341_855\", \"ini\": 1576, \"clust\": 2058, \"rank\": 2667, \"rankvar\": 1742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1250, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 159, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2512, \"group\": [2058.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46196_BALBc-1_X01_Y02_344_268\", \"ini\": 1575, \"clust\": 1309, \"rank\": 1004, \"rankvar\": 1915, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1251, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1217, \"cat-2\": \"Density: 25\", \"cat_2_index\": 659, \"group\": [1312.0, 680.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46287_BALBc-1_X01_Y02_345_339\", \"ini\": 1574, \"clust\": 98, \"rank\": 723, \"rankvar\": 1171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1252, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 909, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1250, \"group\": [103.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46316_BALBc-1_X01_Y02_345_683\", \"ini\": 1573, \"clust\": 2004, \"rank\": 2015, \"rankvar\": 1350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1253, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1218, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2238, \"group\": [2003.0, 1135.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46325_BALBc-1_X01_Y02_345_783\", \"ini\": 1572, \"clust\": 2529, \"rank\": 1477, \"rankvar\": 674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1254, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 910, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2551, \"group\": [2534.0, 1360.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46464_BALBc-1_X01_Y02_347_433\", \"ini\": 1571, \"clust\": 1846, \"rank\": 1797, \"rankvar\": 1371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1255, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 160, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2078, \"group\": [1847.0, 1040.0, 313.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46599_BALBc-1_X01_Y02_349_408\", \"ini\": 1570, \"clust\": 538, \"rank\": 587, \"rankvar\": 1036, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1256, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2548, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1529, \"group\": [541.0, 369.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46604_BALBc-1_X01_Y02_349_467\", \"ini\": 1569, \"clust\": 2065, \"rank\": 2790, \"rankvar\": 2274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1257, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 161, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2159, \"group\": [2066.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46653_BALBc-1_X01_Y02_349_905\", \"ini\": 1568, \"clust\": 1997, \"rank\": 2322, \"rankvar\": 1960, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1258, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1563, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2741, \"group\": [2000.0, 1132.0, 339.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46659_BALBc-1_X01_Y02_349_959\", \"ini\": 1567, \"clust\": 2243, \"rank\": 1701, \"rankvar\": 1086, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1259, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1219, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1979, \"group\": [2247.0, 1224.0, 368.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46698_BALBc-1_X01_Y02_35_602\", \"ini\": 1566, \"clust\": 2511, \"rank\": 1420, \"rankvar\": 1716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1260, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 162, \"cat-2\": \"Density: 18\", \"cat_2_index\": 96, \"group\": [2511.0, 1350.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46751_BALBc-1_X01_Y02_350_379\", \"ini\": 1565, \"clust\": 2679, \"rank\": 2486, \"rankvar\": 1958, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1261, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 911, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1251, \"group\": [2678.0, 1445.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46910_BALBc-1_X01_Y02_352_503\", \"ini\": 1564, \"clust\": 541, \"rank\": 89, \"rankvar\": 921, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1262, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 163, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2443, \"group\": [539.0, 368.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46947_BALBc-1_X01_Y02_352_937\", \"ini\": 1563, \"clust\": 417, \"rank\": 1258, \"rankvar\": 426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1263, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 164, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2376, \"group\": [417.0, 294.0, 102.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47001_BALBc-1_X01_Y02_353_565\", \"ini\": 1562, \"clust\": 2034, \"rank\": 2266, \"rankvar\": 1291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1264, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 165, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2444, \"group\": [2032.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47004_BALBc-1_X01_Y02_353_639\", \"ini\": 1561, \"clust\": 2054, \"rank\": 2752, \"rankvar\": 2426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1265, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 166, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2377, \"group\": [2060.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47226_BALBc-1_X01_Y02_356_521\", \"ini\": 1560, \"clust\": 2133, \"rank\": 2702, \"rankvar\": 2699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1266, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 167, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2239, \"group\": [2133.0, 1153.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47251_BALBc-1_X01_Y02_356_828\", \"ini\": 1559, \"clust\": 521, \"rank\": 817, \"rankvar\": 1261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1267, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 168, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2445, \"group\": [520.0, 357.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47374_BALBc-1_X01_Y02_358_677\", \"ini\": 1558, \"clust\": 803, \"rank\": 93, \"rankvar\": 653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1268, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 169, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2314, \"group\": [804.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47389_BALBc-1_X01_Y02_358_844\", \"ini\": 1557, \"clust\": 469, \"rank\": 926, \"rankvar\": 271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1269, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 170, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2605, \"group\": [467.0, 327.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47513_BALBc-1_X01_Y02_36_798\", \"ini\": 1556, \"clust\": 1628, \"rank\": 2646, \"rankvar\": 2588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1270, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1750, \"cat-2\": \"Density: 19\", \"cat_2_index\": 121, \"group\": [1628.0, 895.0, 259.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47658_BALBc-1_X01_Y02_361_808\", \"ini\": 1555, \"clust\": 486, \"rank\": 795, \"rankvar\": 930, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1271, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1995, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2552, \"group\": [486.0, 333.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47694_BALBc-1_X01_Y02_362_294\", \"ini\": 1554, \"clust\": 663, \"rank\": 195, \"rankvar\": 740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1272, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2549, \"cat-2\": \"Density: 23\", \"cat_2_index\": 401, \"group\": [665.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47867_BALBc-1_X01_Y02_364_621\", \"ini\": 1553, \"clust\": 476, \"rank\": 434, \"rankvar\": 1022, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1273, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 171, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2315, \"group\": [475.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47897_BALBc-1_X01_Y02_364_854\", \"ini\": 1552, \"clust\": 853, \"rank\": 18, \"rankvar\": 940, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1274, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 172, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2800, \"group\": [856.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47915_BALBc-1_X01_Y02_365_14\", \"ini\": 1551, \"clust\": 755, \"rank\": 309, \"rankvar\": 1531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1275, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2550, \"cat-2\": \"Density: 24\", \"cat_2_index\": 517, \"group\": [759.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48021_BALBc-1_X01_Y02_366_342\", \"ini\": 1550, \"clust\": 2694, \"rank\": 2609, \"rankvar\": 2442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1276, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2551, \"cat-2\": \"Density: 27\", \"cat_2_index\": 950, \"group\": [2695.0, 1451.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48025_BALBc-1_X01_Y02_366_428\", \"ini\": 1549, \"clust\": 209, \"rank\": 579, \"rankvar\": 818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1277, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2552, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1871, \"group\": [208.0, 140.0, 47.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48215_BALBc-1_X01_Y02_368_757\", \"ini\": 1548, \"clust\": 2007, \"rank\": 1818, \"rankvar\": 2163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1278, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1996, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2606, \"group\": [2007.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48507_BALBc-1_X01_Y02_371_768\", \"ini\": 1547, \"clust\": 2377, \"rank\": 2508, \"rankvar\": 981, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1279, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1997, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2742, \"group\": [2379.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48580_BALBc-1_X01_Y02_372_677\", \"ini\": 1546, \"clust\": 2087, \"rank\": 2513, \"rankvar\": 2372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1280, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 173, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2378, \"group\": [2086.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48668_BALBc-1_X01_Y02_373_878\", \"ini\": 1545, \"clust\": 2323, \"rank\": 2439, \"rankvar\": 2121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1281, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1564, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2553, \"group\": [2329.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48752_BALBc-1_X01_Y02_374_953\", \"ini\": 1544, \"clust\": 1026, \"rank\": 310, \"rankvar\": 5, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1282, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 174, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1980, \"group\": [1025.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48829_BALBc-1_X01_Y02_375_937\", \"ini\": 1543, \"clust\": 1854, \"rank\": 2064, \"rankvar\": 2299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1283, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1565, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2316, \"group\": [1855.0, 1047.0, 316.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48836_BALBc-1_X01_Y02_375_988\", \"ini\": 1542, \"clust\": 2303, \"rank\": 1854, \"rankvar\": 1276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1284, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1220, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1103, \"group\": [2300.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48875_BALBc-1_X01_Y02_376_577\", \"ini\": 1541, \"clust\": 2185, \"rank\": 1196, \"rankvar\": 1385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1285, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 175, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1872, \"group\": [2183.0, 1185.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49022_BALBc-1_X01_Y02_378_546\", \"ini\": 1540, \"clust\": 1871, \"rank\": 1573, \"rankvar\": 490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1286, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2553, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2446, \"group\": [1872.0, 1062.0, 321.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49038_BALBc-1_X01_Y02_378_703\", \"ini\": 1539, \"clust\": 1029, \"rank\": 314, \"rankvar\": 313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1287, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1998, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2447, \"group\": [1027.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49110_BALBc-1_X01_Y02_379_604\", \"ini\": 1538, \"clust\": 1968, \"rank\": 2188, \"rankvar\": 1280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1288, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 176, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2513, \"group\": [1967.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49158_BALBc-1_X01_Y02_38_459\", \"ini\": 1537, \"clust\": 1358, \"rank\": 2578, \"rankvar\": 2704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1289, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2310, \"cat-2\": \"Density: 21\", \"cat_2_index\": 207, \"group\": [1359.0, 720.0, 214.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49214_BALBc-1_X01_Y02_380_267\", \"ini\": 1536, \"clust\": 109, \"rank\": 1084, \"rankvar\": 456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1290, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1221, \"cat-2\": \"Density: 24\", \"cat_2_index\": 518, \"group\": [109.0, 67.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49503_BALBc-1_X01_Y02_383_640\", \"ini\": 1535, \"clust\": 2122, \"rank\": 2472, \"rankvar\": 2606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1291, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 177, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2448, \"group\": [2131.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49514_BALBc-1_X01_Y02_383_738\", \"ini\": 1534, \"clust\": 2154, \"rank\": 900, \"rankvar\": 493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1292, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1999, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2607, \"group\": [2152.0, 1167.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49654_BALBc-1_X01_Y02_385_588\", \"ini\": 1533, \"clust\": 2042, \"rank\": 1954, \"rankvar\": 1456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1293, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 178, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2240, \"group\": [2042.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49736_BALBc-1_X01_Y02_386_473\", \"ini\": 1532, \"clust\": 2119, \"rank\": 2506, \"rankvar\": 2525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1294, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 179, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2241, \"group\": [2120.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49747_BALBc-1_X01_Y02_386_572\", \"ini\": 1531, \"clust\": 1048, \"rank\": 360, \"rankvar\": 1088, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1295, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2554, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2379, \"group\": [1053.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49822_BALBc-1_X01_Y02_387_448\", \"ini\": 1530, \"clust\": 1103, \"rank\": 671, \"rankvar\": 141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1296, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 839, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1981, \"group\": [1109.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50058_BALBc-1_X01_Y02_39_628\", \"ini\": 1529, \"clust\": 64, \"rank\": 1422, \"rankvar\": 1998, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1297, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1222, \"cat-2\": \"Density: 16\", \"cat_2_index\": 60, \"group\": [69.0, 51.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50084_BALBc-1_X01_Y02_39_93\", \"ini\": 1528, \"clust\": 403, \"rank\": 683, \"rankvar\": 1763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1298, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1969, \"cat-2\": \"Density: 17\", \"cat_2_index\": 80, \"group\": [402.0, 280.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50363_BALBc-1_X01_Y02_393_824\", \"ini\": 1527, \"clust\": 858, \"rank\": 80, \"rankvar\": 988, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1299, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2000, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2514, \"group\": [858.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50468_BALBc-1_X01_Y02_395_251\", \"ini\": 1526, \"clust\": 833, \"rank\": 154, \"rankvar\": 27, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1300, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1223, \"cat-2\": \"Density: 27\", \"cat_2_index\": 951, \"group\": [837.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50654_BALBc-1_X01_Y02_397_653\", \"ini\": 1525, \"clust\": 2260, \"rank\": 1676, \"rankvar\": 864, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1301, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 180, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2449, \"group\": [2259.0, 1234.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50678_BALBc-1_X01_Y02_397_965\", \"ini\": 1524, \"clust\": 1901, \"rank\": 2068, \"rankvar\": 496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1302, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 181, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1873, \"group\": [1910.0, 1096.0, 335.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50749_BALBc-1_X01_Y02_398_842\", \"ini\": 1523, \"clust\": 2060, \"rank\": 2692, \"rankvar\": 1775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1303, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 182, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2450, \"group\": [2057.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50801_BALBc-1_X01_Y02_399_479\", \"ini\": 1522, \"clust\": 2227, \"rank\": 1482, \"rankvar\": 996, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1304, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 183, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2160, \"group\": [2226.0, 1205.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50842_BALBc-1_X01_Y02_399_873\", \"ini\": 1521, \"clust\": 1090, \"rank\": 169, \"rankvar\": 361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1305, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 184, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2554, \"group\": [1090.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50850_BALBc-1_X01_Y02_399_955\", \"ini\": 1520, \"clust\": 416, \"rank\": 676, \"rankvar\": 1450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1306, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 185, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2161, \"group\": [419.0, 295.0, 102.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51102_BALBc-1_X01_Y02_401_718\", \"ini\": 1519, \"clust\": 2295, \"rank\": 1745, \"rankvar\": 1107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1307, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2001, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2555, \"group\": [2293.0, 1250.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51108_BALBc-1_X01_Y02_401_770\", \"ini\": 1518, \"clust\": 894, \"rank\": 196, \"rankvar\": 252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1308, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2002, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2743, \"group\": [911.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51160_BALBc-1_X01_Y02_402_614\", \"ini\": 1517, \"clust\": 1998, \"rank\": 2383, \"rankvar\": 2435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1309, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 186, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2317, \"group\": [1998.0, 1131.0, 339.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51170_BALBc-1_X01_Y02_402_685\", \"ini\": 1516, \"clust\": 526, \"rank\": 250, \"rankvar\": 849, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1310, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 187, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2451, \"group\": [525.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51249_BALBc-1_X01_Y02_403_900\", \"ini\": 1515, \"clust\": 441, \"rank\": 521, \"rankvar\": 318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1311, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1566, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2556, \"group\": [444.0, 311.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51335_BALBc-1_X01_Y02_404_940\", \"ini\": 1514, \"clust\": 2383, \"rank\": 2360, \"rankvar\": 1447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1312, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1567, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2242, \"group\": [2382.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51490_BALBc-1_X01_Y02_406_791\", \"ini\": 1513, \"clust\": 2043, \"rank\": 1981, \"rankvar\": 1666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1313, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2003, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2608, \"group\": [2043.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51601_BALBc-1_X01_Y02_408_107\", \"ini\": 1512, \"clust\": 188, \"rank\": 842, \"rankvar\": 2131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1314, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2311, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1104, \"group\": [188.0, 124.0, 41.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51695_BALBc-1_X01_Y02_409_238\", \"ini\": 1511, \"clust\": 1674, \"rank\": 1991, \"rankvar\": 1662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1315, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1224, \"cat-2\": \"Density: 26\", \"cat_2_index\": 801, \"group\": [1677.0, 934.0, 275.0, 79.0, 16.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51890_BALBc-1_X01_Y02_410_582\", \"ini\": 1510, \"clust\": 2221, \"rank\": 1544, \"rankvar\": 111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1316, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 188, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1982, \"group\": [2229.0, 1208.0, 358.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51921_BALBc-1_X01_Y02_411_121\", \"ini\": 1509, \"clust\": 613, \"rank\": 372, \"rankvar\": 1262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1317, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 840, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1404, \"group\": [615.0, 416.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51976_BALBc-1_X01_Y02_411_847\", \"ini\": 1508, \"clust\": 2005, \"rank\": 2112, \"rankvar\": 1612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1318, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 189, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2609, \"group\": [2004.0, 1135.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52269_BALBc-1_X01_Y02_415_277\", \"ini\": 1507, \"clust\": 1167, \"rank\": 959, \"rankvar\": 1294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1319, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 621, \"cat-2\": \"Density: 27\", \"cat_2_index\": 952, \"group\": [1168.0, 564.0, 156.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52299_BALBc-1_X01_Y02_415_694\", \"ini\": 1506, \"clust\": 2272, \"rank\": 1390, \"rankvar\": 1329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1320, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 190, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2658, \"group\": [2270.0, 1239.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52362_BALBc-1_X01_Y02_416_643\", \"ini\": 1505, \"clust\": 1963, \"rank\": 2505, \"rankvar\": 2114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1321, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 191, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2452, \"group\": [1969.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52446_BALBc-1_X01_Y02_417_9\", \"ini\": 1504, \"clust\": 554, \"rank\": 702, \"rankvar\": 1219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1322, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2242, \"cat-2\": \"Density: 27\", \"cat_2_index\": 953, \"group\": [558.0, 382.0, 127.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52574_BALBc-1_X01_Y02_419_463\", \"ini\": 1503, \"clust\": 1087, \"rank\": 150, \"rankvar\": 620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1323, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 841, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2243, \"group\": [1088.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52615_BALBc-1_X01_Y02_419_921\", \"ini\": 1502, \"clust\": 2233, \"rank\": 1338, \"rankvar\": 666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1324, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1568, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2453, \"group\": [2234.0, 1213.0, 362.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52720_BALBc-1_X01_Y02_420_41\", \"ini\": 1501, \"clust\": 959, \"rank\": 391, \"rankvar\": 1537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1325, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2312, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1405, \"group\": [958.0, 490.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52738_BALBc-1_X01_Y02_420_619\", \"ini\": 1500, \"clust\": 430, \"rank\": 886, \"rankvar\": 1158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1326, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 192, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2380, \"group\": [431.0, 306.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52831_BALBc-1_X01_Y02_421_884\", \"ini\": 1499, \"clust\": 1121, \"rank\": 784, \"rankvar\": 205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1327, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 193, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2557, \"group\": [1122.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52841_BALBc-1_X01_Y02_421_966\", \"ini\": 1498, \"clust\": 136, \"rank\": 600, \"rankvar\": 465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1328, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 194, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1769, \"group\": [138.0, 84.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52887_BALBc-1_X01_Y02_422_566\", \"ini\": 1497, \"clust\": 488, \"rank\": 868, \"rankvar\": 648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1329, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2555, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2162, \"group\": [488.0, 333.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52914_BALBc-1_X01_Y02_422_826\", \"ini\": 1496, \"clust\": 2091, \"rank\": 2448, \"rankvar\": 2042, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1330, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 195, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2454, \"group\": [2090.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52954_BALBc-1_X01_Y02_423_373\", \"ini\": 1495, \"clust\": 2675, \"rank\": 2659, \"rankvar\": 2101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1331, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2556, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1530, \"group\": [2677.0, 1444.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52986_BALBc-1_X01_Y02_423_804\", \"ini\": 1494, \"clust\": 200, \"rank\": 871, \"rankvar\": 987, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1332, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 912, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2659, \"group\": [201.0, 135.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53029_BALBc-1_X01_Y02_424_444\", \"ini\": 1493, \"clust\": 2320, \"rank\": 1852, \"rankvar\": 1544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1333, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 842, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2079, \"group\": [2321.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53035_BALBc-1_X01_Y02_424_524\", \"ini\": 1492, \"clust\": 2448, \"rank\": 1487, \"rankvar\": 1167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1334, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2557, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2381, \"group\": [2451.0, 1303.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53103_BALBc-1_X01_Y02_425_394\", \"ini\": 1491, \"clust\": 57, \"rank\": 701, \"rankvar\": 938, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1335, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2558, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1663, \"group\": [58.0, 47.0, 21.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53160_BALBc-1_X01_Y02_426_216\", \"ini\": 1490, \"clust\": 828, \"rank\": 87, \"rankvar\": 447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1336, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1225, \"cat-2\": \"Density: 27\", \"cat_2_index\": 954, \"group\": [827.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53185_BALBc-1_X01_Y02_426_493\", \"ini\": 1489, \"clust\": 2085, \"rank\": 2410, \"rankvar\": 2288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1337, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2004, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2382, \"group\": [2083.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53235_BALBc-1_X01_Y02_426_993\", \"ini\": 1488, \"clust\": 1832, \"rank\": 2816, \"rankvar\": 2781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1338, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1226, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1105, \"group\": [1832.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53488_BALBc-1_X01_Y02_43_189\", \"ini\": 1487, \"clust\": 1447, \"rank\": 2408, \"rankvar\": 2308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1339, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2490, \"cat-2\": \"Density: 20\", \"cat_2_index\": 157, \"group\": [1451.0, 789.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53513_BALBc-1_X01_Y02_43_535\", \"ini\": 1486, \"clust\": 2761, \"rank\": 2276, \"rankvar\": 1436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1340, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 843, \"cat-2\": \"Density: 24\", \"cat_2_index\": 519, \"group\": [2761.0, 1494.0, 445.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53632_BALBc-1_X01_Y02_430_943\", \"ini\": 1485, \"clust\": 1114, \"rank\": 700, \"rankvar\": 1539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1341, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 196, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2244, \"group\": [1115.0, 525.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53680_BALBc-1_X01_Y02_431_592\", \"ini\": 1484, \"clust\": 2097, \"rank\": 2672, \"rankvar\": 2709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1342, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2005, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2245, \"group\": [2097.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53775_BALBc-1_X01_Y02_432_719\", \"ini\": 1483, \"clust\": 1940, \"rank\": 2115, \"rankvar\": 1038, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1343, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2006, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2660, \"group\": [1943.0, 1112.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54002_BALBc-1_X01_Y02_435_644\", \"ini\": 1482, \"clust\": 490, \"rank\": 1141, \"rankvar\": 86, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1344, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 197, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2610, \"group\": [491.0, 335.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54089_BALBc-1_X01_Y02_436_868\", \"ini\": 1481, \"clust\": 1918, \"rank\": 2088, \"rankvar\": 1345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1345, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 198, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2661, \"group\": [1919.0, 1103.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54172_BALBc-1_X01_Y02_437_824\", \"ini\": 1480, \"clust\": 1157, \"rank\": 1779, \"rankvar\": 2113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1346, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2007, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2455, \"group\": [1157.0, 555.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54244_BALBc-1_X01_Y02_438_683\", \"ini\": 1479, \"clust\": 2009, \"rank\": 2046, \"rankvar\": 1964, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1347, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2008, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2558, \"group\": [2010.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54404_BALBc-1_X01_Y02_44_835\", \"ini\": 1478, \"clust\": 1887, \"rank\": 1932, \"rankvar\": 2348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1348, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1227, \"cat-2\": \"Density: 21\", \"cat_2_index\": 208, \"group\": [1901.0, 1089.0, 332.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54437_BALBc-1_X01_Y02_440_316\", \"ini\": 1477, \"clust\": 1095, \"rank\": 209, \"rankvar\": 458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1349, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2559, \"cat-2\": \"Density: 25\", \"cat_2_index\": 660, \"group\": [1102.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54530_BALBc-1_X01_Y02_441_532\", \"ini\": 1476, \"clust\": 2719, \"rank\": 1995, \"rankvar\": 2264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1350, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2009, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2383, \"group\": [2718.0, 1460.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54679_BALBc-1_X01_Y02_443_444\", \"ini\": 1475, \"clust\": 497, \"rank\": 751, \"rankvar\": 1032, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1351, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 199, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1874, \"group\": [503.0, 343.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54837_BALBc-1_X01_Y02_445_603\", \"ini\": 1474, \"clust\": 2039, \"rank\": 2260, \"rankvar\": 2326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1352, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 200, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2456, \"group\": [2040.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54860_BALBc-1_X01_Y02_445_91\", \"ini\": 1473, \"clust\": 571, \"rank\": 686, \"rankvar\": 1314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1353, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2313, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1252, \"group\": [575.0, 392.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54974_BALBc-1_X01_Y02_447_354\", \"ini\": 1472, \"clust\": 589, \"rank\": 120, \"rankvar\": 1811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1354, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2560, \"cat-2\": \"Density: 26\", \"cat_2_index\": 802, \"group\": [588.0, 401.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55065_BALBc-1_X01_Y02_448_466\", \"ini\": 1471, \"clust\": 846, \"rank\": 101, \"rankvar\": 46, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1355, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2010, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2163, \"group\": [846.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55103_BALBc-1_X01_Y02_448_891\", \"ini\": 1470, \"clust\": 520, \"rank\": 636, \"rankvar\": 1147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1356, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2011, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2559, \"group\": [522.0, 358.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55107_BALBc-1_X01_Y02_448_964\", \"ini\": 1469, \"clust\": 2266, \"rank\": 1365, \"rankvar\": 471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1357, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 201, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1983, \"group\": [2264.0, 1236.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55165_BALBc-1_X01_Y02_449_995\", \"ini\": 1468, \"clust\": 1819, \"rank\": 2632, \"rankvar\": 2819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1358, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1228, \"cat-2\": \"Density: 25\", \"cat_2_index\": 661, \"group\": [1820.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55457_BALBc-1_X01_Y02_452_827\", \"ini\": 1467, \"clust\": 2124, \"rank\": 2709, \"rankvar\": 2672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1359, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2012, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2662, \"group\": [2122.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55626_BALBc-1_X01_Y02_454_938\", \"ini\": 1466, \"clust\": 2306, \"rank\": 1940, \"rankvar\": 922, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1360, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 202, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2318, \"group\": [2308.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55632_BALBc-1_X01_Y02_455_133\", \"ini\": 1465, \"clust\": 1349, \"rank\": 1705, \"rankvar\": 2025, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1361, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1229, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1253, \"group\": [1350.0, 711.0, 211.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55682_BALBc-1_X01_Y02_455_662\", \"ini\": 1464, \"clust\": 487, \"rank\": 675, \"rankvar\": 766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1362, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2013, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2457, \"group\": [487.0, 333.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55975_BALBc-1_X01_Y02_459_725\", \"ini\": 1463, \"clust\": 2051, \"rank\": 2656, \"rankvar\": 2354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1363, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 913, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2611, \"group\": [2051.0, 1148.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55987_BALBc-1_X01_Y02_459_856\", \"ini\": 1462, \"clust\": 2156, \"rank\": 1556, \"rankvar\": 844, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1364, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2014, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2384, \"group\": [2157.0, 1171.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56102_BALBc-1_X01_Y02_460_412\", \"ini\": 1461, \"clust\": 1723, \"rank\": 2751, \"rankvar\": 2807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1365, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2811, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1875, \"group\": [1722.0, 970.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56118_BALBc-1_X01_Y02_460_632\", \"ini\": 1460, \"clust\": 2531, \"rank\": 1468, \"rankvar\": 581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1366, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 203, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2515, \"group\": [2529.0, 1356.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56299_BALBc-1_X01_Y02_462_698\", \"ini\": 1459, \"clust\": 489, \"rank\": 836, \"rankvar\": 730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1367, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2015, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2516, \"group\": [489.0, 333.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56546_BALBc-1_X01_Y02_466_18\", \"ini\": 1458, \"clust\": 1201, \"rank\": 633, \"rankvar\": 1095, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1368, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1551, \"cat-2\": \"Density: 27\", \"cat_2_index\": 955, \"group\": [1201.0, 594.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56758_BALBc-1_X01_Y02_468_767\", \"ini\": 1457, \"clust\": 2052, \"rank\": 2801, \"rankvar\": 2703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1369, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 914, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2744, \"group\": [2049.0, 1148.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56777_BALBc-1_X01_Y02_469_107\", \"ini\": 1456, \"clust\": 287, \"rank\": 1896, \"rankvar\": 2780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1370, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 844, \"cat-2\": \"Density: 26\", \"cat_2_index\": 803, \"group\": [287.0, 208.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56993_BALBc-1_X01_Y02_470_811\", \"ini\": 1455, \"clust\": 485, \"rank\": 981, \"rankvar\": 586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1371, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2016, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2663, \"group\": [490.0, 334.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57236_BALBc-1_X01_Y02_474_156\", \"ini\": 1454, \"clust\": 2734, \"rank\": 1432, \"rankvar\": 2049, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1372, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 845, \"cat-2\": \"Density: 23\", \"cat_2_index\": 402, \"group\": [2735.0, 1470.0, 432.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57266_BALBc-1_X01_Y02_474_476\", \"ini\": 1453, \"clust\": 2070, \"rank\": 2590, \"rankvar\": 2152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1373, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2017, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2246, \"group\": [2072.0, 1151.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57317_BALBc-1_X01_Y02_475_174\", \"ini\": 1452, \"clust\": 1637, \"rank\": 1491, \"rankvar\": 1415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1374, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1230, \"cat-2\": \"Density: 26\", \"cat_2_index\": 804, \"group\": [1639.0, 903.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57390_BALBc-1_X01_Y02_475_992\", \"ini\": 1451, \"clust\": 2350, \"rank\": 2587, \"rankvar\": 1477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1375, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1231, \"cat-2\": \"Density: 26\", \"cat_2_index\": 805, \"group\": [2344.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57421_BALBc-1_X01_Y02_476_442\", \"ini\": 1450, \"clust\": 2461, \"rank\": 1109, \"rankvar\": 1338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1376, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 204, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2247, \"group\": [2462.0, 1310.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57434_BALBc-1_X01_Y02_476_544\", \"ini\": 1449, \"clust\": 2128, \"rank\": 2450, \"rankvar\": 2697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1377, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2018, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2319, \"group\": [2126.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57441_BALBc-1_X01_Y02_476_598\", \"ini\": 1448, \"clust\": 682, \"rank\": 526, \"rankvar\": 780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1378, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 205, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2385, \"group\": [682.0, 450.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57487_BALBc-1_X01_Y02_477_186\", \"ini\": 1447, \"clust\": 2744, \"rank\": 913, \"rankvar\": 2093, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1379, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1232, \"cat-2\": \"Density: 24\", \"cat_2_index\": 520, \"group\": [2744.0, 1479.0, 437.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57490_BALBc-1_X01_Y02_477_220\", \"ini\": 1446, \"clust\": 96, \"rank\": 574, \"rankvar\": 1923, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1380, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1233, \"cat-2\": \"Density: 23\", \"cat_2_index\": 403, \"group\": [96.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57549_BALBc-1_X01_Y02_477_962\", \"ini\": 1445, \"clust\": 738, \"rank\": 632, \"rankvar\": 695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1381, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 206, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1984, \"group\": [740.0, 467.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57571_BALBc-1_X01_Y02_478_269\", \"ini\": 1444, \"clust\": 404, \"rank\": 442, \"rankvar\": 724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1382, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1234, \"cat-2\": \"Density: 24\", \"cat_2_index\": 521, \"group\": [404.0, 282.0, 96.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57683_BALBc-1_X01_Y02_479_571\", \"ini\": 1443, \"clust\": 2071, \"rank\": 2563, \"rankvar\": 2319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1383, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2019, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2560, \"group\": [2070.0, 1151.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57835_BALBc-1_X01_Y02_480_722\", \"ini\": 1442, \"clust\": 969, \"rank\": 813, \"rankvar\": 102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1384, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 207, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2517, \"group\": [972.0, 498.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57878_BALBc-1_X01_Y02_481_244\", \"ini\": 1441, \"clust\": 1165, \"rank\": 780, \"rankvar\": 1980, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1385, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1235, \"cat-2\": \"Density: 22\", \"cat_2_index\": 288, \"group\": [1166.0, 562.0, 156.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58001_BALBc-1_X01_Y02_482_917\", \"ini\": 1440, \"clust\": 2023, \"rank\": 2101, \"rankvar\": 1227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1386, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2020, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2801, \"group\": [2021.0, 1139.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58043_BALBc-1_X01_Y02_483_520\", \"ini\": 1439, \"clust\": 264, \"rank\": 1044, \"rankvar\": 962, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1387, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2021, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2080, \"group\": [264.0, 186.0, 65.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58156_BALBc-1_X01_Y02_484_753\", \"ini\": 1438, \"clust\": 2437, \"rank\": 891, \"rankvar\": 986, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1388, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2022, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2704, \"group\": [2438.0, 1298.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58206_BALBc-1_X01_Y02_485_407\", \"ini\": 1437, \"clust\": 1092, \"rank\": 143, \"rankvar\": 119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1389, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2023, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1531, \"group\": [1093.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58226_BALBc-1_X01_Y02_485_621\", \"ini\": 1436, \"clust\": 1125, \"rank\": 1177, \"rankvar\": 1540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1390, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 208, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2081, \"group\": [1125.0, 527.0, 141.0, 35.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58228_BALBc-1_X01_Y02_485_649\", \"ini\": 1435, \"clust\": 2088, \"rank\": 2540, \"rankvar\": 2337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1391, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1236, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2248, \"group\": [2087.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58327_BALBc-1_X01_Y02_486_99\", \"ini\": 1434, \"clust\": 1319, \"rank\": 822, \"rankvar\": 777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1392, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1655, \"cat-2\": \"Density: 27\", \"cat_2_index\": 956, \"group\": [1319.0, 687.0, 204.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58359_BALBc-1_X01_Y02_487_496\", \"ini\": 1433, \"clust\": 2129, \"rank\": 2177, \"rankvar\": 2184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1393, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2024, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2082, \"group\": [2127.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58404_BALBc-1_X01_Y02_487_980\", \"ini\": 1432, \"clust\": 867, \"rank\": 31, \"rankvar\": 963, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1394, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 209, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1664, \"group\": [866.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58545_BALBc-1_X01_Y02_489_773\", \"ini\": 1431, \"clust\": 1941, \"rank\": 2071, \"rankvar\": 667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1395, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2025, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2518, \"group\": [1941.0, 1112.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58554_BALBc-1_X01_Y02_489_847\", \"ini\": 1430, \"clust\": 2073, \"rank\": 2454, \"rankvar\": 1694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1396, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2026, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2705, \"group\": [2073.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58565_BALBc-1_X01_Y02_489_942\", \"ini\": 1429, \"clust\": 1729, \"rank\": 2244, \"rankvar\": 1004, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1397, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 210, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2519, \"group\": [1729.0, 974.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58586_BALBc-1_X01_Y02_49_255\", \"ini\": 1428, \"clust\": 1646, \"rank\": 1305, \"rankvar\": 2644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1398, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1237, \"cat-2\": \"Density: 18\", \"cat_2_index\": 97, \"group\": [1642.0, 905.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58666_BALBc-1_X01_Y02_490_220\", \"ini\": 1427, \"clust\": 1419, \"rank\": 1814, \"rankvar\": 952, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1399, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 211, \"cat-2\": \"Density: 23\", \"cat_2_index\": 404, \"group\": [1420.0, 767.0, 227.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58836_BALBc-1_X01_Y02_492_696\", \"ini\": 1426, \"clust\": 2022, \"rank\": 2045, \"rankvar\": 797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1400, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2027, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2612, \"group\": [2023.0, 1139.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58842_BALBc-1_X01_Y02_492_801\", \"ini\": 1425, \"clust\": 470, \"rank\": 997, \"rankvar\": 1318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1401, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2028, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2458, \"group\": [468.0, 327.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59277_BALBc-1_X01_Y02_497_952\", \"ini\": 1424, \"clust\": 2515, \"rank\": 1743, \"rankvar\": 815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1402, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2029, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1985, \"group\": [2515.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59332_BALBc-1_X01_Y02_498_722\", \"ini\": 1423, \"clust\": 474, \"rank\": 540, \"rankvar\": 584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1403, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2030, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2520, \"group\": [478.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59402_BALBc-1_X01_Y02_499_631\", \"ini\": 1422, \"clust\": 2462, \"rank\": 1500, \"rankvar\": 1077, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1404, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2031, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2249, \"group\": [2460.0, 1309.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59433_BALBc-1_X01_Y02_499_987\", \"ini\": 1421, \"clust\": 2082, \"rank\": 2606, \"rankvar\": 2360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1405, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2032, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1254, \"group\": [2081.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59455_BALBc-1_X01_Y02_5_514\", \"ini\": 1420, \"clust\": 2497, \"rank\": 2248, \"rankvar\": 2183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1406, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 846, \"cat-2\": \"Density: 13\", \"cat_2_index\": 19, \"group\": [2507.0, 1347.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59697_BALBc-1_X01_Y02_502_382\", \"ini\": 1419, \"clust\": 1005, \"rank\": 384, \"rankvar\": 545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1407, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2561, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1255, \"group\": [1003.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59815_BALBc-1_X01_Y02_504_15\", \"ini\": 1418, \"clust\": 73, \"rank\": 605, \"rankvar\": 379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1408, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1970, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1106, \"group\": [74.0, 55.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60055_BALBc-1_X01_Y02_507_1005\", \"ini\": 1417, \"clust\": 2110, \"rank\": 2682, \"rankvar\": 2514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1409, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 212, \"cat-2\": \"Density: 26\", \"cat_2_index\": 806, \"group\": [2109.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60088_BALBc-1_X01_Y02_507_454\", \"ini\": 1416, \"clust\": 2190, \"rank\": 2003, \"rankvar\": 2479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1410, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 213, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1876, \"group\": [2186.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60268_BALBc-1_X01_Y02_509_70\", \"ini\": 1415, \"clust\": 687, \"rank\": 354, \"rankvar\": 529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1411, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1656, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1107, \"group\": [690.0, 454.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60435_BALBc-1_X01_Y02_510_900\", \"ini\": 1414, \"clust\": 2056, \"rank\": 2655, \"rankvar\": 2439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1412, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2033, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2664, \"group\": [2054.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60513_BALBc-1_X01_Y02_511_842\", \"ini\": 1413, \"clust\": 2428, \"rank\": 1051, \"rankvar\": 858, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1413, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 214, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2613, \"group\": [2429.0, 1294.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60591_BALBc-1_X01_Y02_512_878\", \"ini\": 1412, \"clust\": 1049, \"rank\": 339, \"rankvar\": 1289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1414, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2034, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2561, \"group\": [1052.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60694_BALBc-1_X01_Y02_514_485\", \"ini\": 1411, \"clust\": 1182, \"rank\": 1507, \"rankvar\": 1074, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1415, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2035, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2459, \"group\": [1183.0, 576.0, 160.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60776_BALBc-1_X01_Y02_515_521\", \"ini\": 1410, \"clust\": 2194, \"rank\": 1832, \"rankvar\": 2552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1416, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 215, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2083, \"group\": [2191.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60841_BALBc-1_X01_Y02_516_211\", \"ini\": 1409, \"clust\": 610, \"rank\": 480, \"rankvar\": 544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1417, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2562, \"cat-2\": \"Density: 23\", \"cat_2_index\": 405, \"group\": [608.0, 413.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60860_BALBc-1_X01_Y02_516_505\", \"ini\": 1408, \"clust\": 2344, \"rank\": 2445, \"rankvar\": 1748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1418, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 216, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2084, \"group\": [2355.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60875_BALBc-1_X01_Y02_516_818\", \"ini\": 1407, \"clust\": 2186, \"rank\": 1388, \"rankvar\": 1165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1419, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2036, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2745, \"group\": [2184.0, 1186.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60902_BALBc-1_X01_Y02_517_236\", \"ini\": 1406, \"clust\": 1276, \"rank\": 1607, \"rankvar\": 2371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1420, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 217, \"cat-2\": \"Density: 21\", \"cat_2_index\": 209, \"group\": [1278.0, 653.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61018_BALBc-1_X01_Y02_518_607\", \"ini\": 1405, \"clust\": 2072, \"rank\": 2542, \"rankvar\": 2495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1421, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2037, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2164, \"group\": [2071.0, 1151.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61271_BALBc-1_X01_Y02_520_570\", \"ini\": 1404, \"clust\": 435, \"rank\": 355, \"rankvar\": 1754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1422, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2038, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2460, \"group\": [435.0, 308.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61339_BALBc-1_X01_Y02_521_434\", \"ini\": 1403, \"clust\": 2252, \"rank\": 1106, \"rankvar\": 613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1423, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2039, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1986, \"group\": [2253.0, 1230.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61380_BALBc-1_X01_Y02_521_947\", \"ini\": 1402, \"clust\": 2055, \"rank\": 2633, \"rankvar\": 1535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1424, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1238, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2320, \"group\": [2059.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61674_BALBc-1_X01_Y02_525_652\", \"ini\": 1401, \"clust\": 2093, \"rank\": 2438, \"rankvar\": 2385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1425, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1239, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2321, \"group\": [2092.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61704_BALBc-1_X01_Y02_525_994\", \"ini\": 1400, \"clust\": 2378, \"rank\": 2552, \"rankvar\": 1756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1426, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2040, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1256, \"group\": [2377.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61719_BALBc-1_X01_Y02_526_269\", \"ini\": 1399, \"clust\": 2803, \"rank\": 2102, \"rankvar\": 2513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1427, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2563, \"cat-2\": \"Density: 20\", \"cat_2_index\": 158, \"group\": [2804.0, 1522.0, 453.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61758_BALBc-1_X01_Y02_526_905\", \"ini\": 1398, \"clust\": 804, \"rank\": 576, \"rankvar\": 96, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1428, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 218, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2461, \"group\": [805.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61791_BALBc-1_X01_Y02_527_347\", \"ini\": 1397, \"clust\": 1176, \"rank\": 1317, \"rankvar\": 58, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1429, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2564, \"cat-2\": \"Density: 25\", \"cat_2_index\": 662, \"group\": [1177.0, 570.0, 158.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61831_BALBc-1_X01_Y02_527_730\", \"ini\": 1396, \"clust\": 1046, \"rank\": 132, \"rankvar\": 1195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1430, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2041, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2562, \"group\": [1045.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61836_BALBc-1_X01_Y02_527_777\", \"ini\": 1395, \"clust\": 2223, \"rank\": 1710, \"rankvar\": 1902, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1431, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2042, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2386, \"group\": [2222.0, 1203.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61953_BALBc-1_X01_Y02_529_35\", \"ini\": 1394, \"clust\": 397, \"rank\": 994, \"rankvar\": 1475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1432, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1657, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1108, \"group\": [394.0, 275.0, 94.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61991_BALBc-1_X01_Y02_529_837\", \"ini\": 1393, \"clust\": 998, \"rank\": 674, \"rankvar\": 556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1433, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 219, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2563, \"group\": [997.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62023_BALBc-1_X01_Y02_53_321\", \"ini\": 1392, \"clust\": 684, \"rank\": 538, \"rankvar\": 1723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1434, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1240, \"cat-2\": \"Density: 21\", \"cat_2_index\": 210, \"group\": [687.0, 452.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62344_BALBc-1_X01_Y02_533_462\", \"ini\": 1391, \"clust\": 478, \"rank\": 428, \"rankvar\": 901, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1435, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2043, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2322, \"group\": [483.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62399_BALBc-1_X01_Y02_534_418\", \"ini\": 1390, \"clust\": 1059, \"rank\": 637, \"rankvar\": 364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1436, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2044, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1987, \"group\": [1059.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62425_BALBc-1_X01_Y02_534_752\", \"ini\": 1389, \"clust\": 1852, \"rank\": 2267, \"rankvar\": 1506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1437, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2045, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2462, \"group\": [1849.0, 1042.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62434_BALBc-1_X01_Y02_534_821\", \"ini\": 1388, \"clust\": 2189, \"rank\": 1863, \"rankvar\": 1743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1438, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2046, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2706, \"group\": [2188.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62442_BALBc-1_X01_Y02_534_888\", \"ini\": 1387, \"clust\": 2420, \"rank\": 901, \"rankvar\": 193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1439, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 220, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2463, \"group\": [2420.0, 1288.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62492_BALBc-1_X01_Y02_535_508\", \"ini\": 1386, \"clust\": 2225, \"rank\": 1363, \"rankvar\": 1078, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1440, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2047, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2165, \"group\": [2224.0, 1204.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62565_BALBc-1_X01_Y02_536_544\", \"ini\": 1385, \"clust\": 1999, \"rank\": 2366, \"rankvar\": 2116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1441, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2048, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2387, \"group\": [1999.0, 1131.0, 339.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62586_BALBc-1_X01_Y02_536_855\", \"ini\": 1384, \"clust\": 1977, \"rank\": 2759, \"rankvar\": 2469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1442, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 221, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2614, \"group\": [1972.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62671_BALBc-1_X01_Y02_537_981\", \"ini\": 1383, \"clust\": 2202, \"rank\": 1304, \"rankvar\": 2106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1443, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1241, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1770, \"group\": [2205.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62763_BALBc-1_X01_Y02_539_389\", \"ini\": 1382, \"clust\": 2418, \"rank\": 1176, \"rankvar\": 380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1444, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2049, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1257, \"group\": [2417.0, 1285.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62777_BALBc-1_X01_Y02_539_557\", \"ini\": 1381, \"clust\": 2030, \"rank\": 2675, \"rankvar\": 2226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1445, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2050, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2250, \"group\": [2029.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62788_BALBc-1_X01_Y02_539_712\", \"ini\": 1380, \"clust\": 2109, \"rank\": 2802, \"rankvar\": 2769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1446, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1242, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2388, \"group\": [2113.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62960_BALBc-1_X01_Y02_541_26\", \"ini\": 1379, \"clust\": 198, \"rank\": 395, \"rankvar\": 846, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1447, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1971, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1109, \"group\": [198.0, 132.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62991_BALBc-1_X01_Y02_541_75\", \"ini\": 1378, \"clust\": 207, \"rank\": 1024, \"rankvar\": 735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1448, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 847, \"cat-2\": \"Density: 26\", \"cat_2_index\": 807, \"group\": [206.0, 139.0, 47.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63595_BALBc-1_X01_Y02_548_853\", \"ini\": 1377, \"clust\": 2166, \"rank\": 1538, \"rankvar\": 1438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1449, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2051, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2615, \"group\": [2167.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63686_BALBc-1_X01_Y02_549_947\", \"ini\": 1376, \"clust\": 2374, \"rank\": 2519, \"rankvar\": 1675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1450, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1243, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2323, \"group\": [2372.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63912_BALBc-1_X01_Y02_551_904\", \"ini\": 1375, \"clust\": 2152, \"rank\": 1207, \"rankvar\": 1122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1451, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 222, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2521, \"group\": [2153.0, 1168.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63952_BALBc-1_X01_Y02_552_377\", \"ini\": 1374, \"clust\": 2419, \"rank\": 1067, \"rankvar\": 221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1452, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 223, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1110, \"group\": [2422.0, 1289.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64119_BALBc-1_X01_Y02_554_637\", \"ini\": 1373, \"clust\": 2533, \"rank\": 1454, \"rankvar\": 1708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1453, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2052, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2564, \"group\": [2532.0, 1358.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64205_BALBc-1_X01_Y02_555_738\", \"ini\": 1372, \"clust\": 434, \"rank\": 788, \"rankvar\": 1846, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1454, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 224, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2389, \"group\": [437.0, 308.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64551_BALBc-1_X01_Y02_56_237\", \"ini\": 1371, \"clust\": 1409, \"rank\": 1591, \"rankvar\": 1920, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1455, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1244, \"cat-2\": \"Density: 20\", \"cat_2_index\": 159, \"group\": [1409.0, 758.0, 224.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64699_BALBc-1_X01_Y02_560_94\", \"ini\": 1370, \"clust\": 1638, \"rank\": 2516, \"rankvar\": 2700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1456, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2455, \"cat-2\": \"Density: 27\", \"cat_2_index\": 957, \"group\": [1637.0, 902.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64829_BALBc-1_X01_Y02_562_691\", \"ini\": 1369, \"clust\": 438, \"rank\": 272, \"rankvar\": 1546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1457, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1245, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2616, \"group\": [439.0, 309.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64850_BALBc-1_X01_Y02_562_963\", \"ini\": 1368, \"clust\": 2204, \"rank\": 1162, \"rankvar\": 1847, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1458, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1246, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2251, \"group\": [2200.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64896_BALBc-1_X01_Y02_563_569\", \"ini\": 1367, \"clust\": 1053, \"rank\": 547, \"rankvar\": 583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1459, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2053, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2464, \"group\": [1054.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64897_BALBc-1_X01_Y02_563_602\", \"ini\": 1366, \"clust\": 2387, \"rank\": 2763, \"rankvar\": 1891, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1460, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2054, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2465, \"group\": [2384.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64941_BALBc-1_X01_Y02_564_31\", \"ini\": 1365, \"clust\": 1129, \"rank\": 1269, \"rankvar\": 118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1461, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1972, \"cat-2\": \"Density: 24\", \"cat_2_index\": 522, \"group\": [1133.0, 535.0, 145.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64994_BALBc-1_X01_Y02_564_874\", \"ini\": 1364, \"clust\": 44, \"rank\": 775, \"rankvar\": 805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1462, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2055, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2466, \"group\": [47.0, 39.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65052_BALBc-1_X01_Y02_565_665\", \"ini\": 1363, \"clust\": 2120, \"rank\": 2423, \"rankvar\": 2309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1463, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 225, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2565, \"group\": [2118.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65064_BALBc-1_X01_Y02_565_759\", \"ini\": 1362, \"clust\": 2089, \"rank\": 2669, \"rankvar\": 2465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1464, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2565, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2522, \"group\": [2088.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65075_BALBc-1_X01_Y02_565_925\", \"ini\": 1361, \"clust\": 683, \"rank\": 399, \"rankvar\": 774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1465, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 622, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2707, \"group\": [683.0, 450.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65095_BALBc-1_X01_Y02_566_271\", \"ini\": 1360, \"clust\": 1926, \"rank\": 2771, \"rankvar\": 2805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1466, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2566, \"cat-2\": \"Density: 21\", \"cat_2_index\": 211, \"group\": [1926.0, 1107.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65299_BALBc-1_X01_Y02_568_889\", \"ini\": 1359, \"clust\": 2363, \"rank\": 1838, \"rankvar\": 1205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1467, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 226, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2566, \"group\": [2363.0, 1262.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65326_BALBc-1_X01_Y02_569_433\", \"ini\": 1358, \"clust\": 2161, \"rank\": 1098, \"rankvar\": 682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1468, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2056, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2085, \"group\": [2158.0, 1172.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65481_BALBc-1_X01_Y02_570_500\", \"ini\": 1357, \"clust\": 2195, \"rank\": 1736, \"rankvar\": 2188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1469, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2057, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2324, \"group\": [2189.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65533_BALBc-1_X01_Y02_571_197\", \"ini\": 1356, \"clust\": 1395, \"rank\": 1714, \"rankvar\": 1117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1470, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2491, \"cat-2\": \"Density: 23\", \"cat_2_index\": 406, \"group\": [1394.0, 745.0, 218.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65552_BALBc-1_X01_Y02_571_380\", \"ini\": 1355, \"clust\": 2003, \"rank\": 1884, \"rankvar\": 969, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1471, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2058, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1877, \"group\": [2005.0, 1135.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65700_BALBc-1_X01_Y02_573_349\", \"ini\": 1354, \"clust\": 1066, \"rank\": 335, \"rankvar\": 593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1472, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2567, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1406, \"group\": [1068.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65716_BALBc-1_X01_Y02_573_564\", \"ini\": 1353, \"clust\": 1956, \"rank\": 2652, \"rankvar\": 2287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1473, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2059, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2390, \"group\": [1957.0, 1116.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65744_BALBc-1_X01_Y02_573_899\", \"ini\": 1352, \"clust\": 2146, \"rank\": 1447, \"rankvar\": 30, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1474, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 623, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2746, \"group\": [2154.0, 1169.0, 344.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65912_BALBc-1_X01_Y02_575_992\", \"ini\": 1351, \"clust\": 2020, \"rank\": 2044, \"rankvar\": 822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1475, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 227, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1111, \"group\": [2039.0, 1144.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65965_BALBc-1_X01_Y02_576_941\", \"ini\": 1350, \"clust\": 2351, \"rank\": 2549, \"rankvar\": 1863, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1476, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 624, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2617, \"group\": [2345.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66161_BALBc-1_X01_Y02_579_641\", \"ini\": 1349, \"clust\": 2364, \"rank\": 1903, \"rankvar\": 1355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1477, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 228, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2467, \"group\": [2364.0, 1262.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66381_BALBc-1_X01_Y02_581_736\", \"ini\": 1348, \"clust\": 2040, \"rank\": 2213, \"rankvar\": 1934, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1478, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 229, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2391, \"group\": [2041.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66539_BALBc-1_X01_Y02_583_714\", \"ini\": 1347, \"clust\": 2104, \"rank\": 2775, \"rankvar\": 2669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1479, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 230, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2567, \"group\": [2102.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66625_BALBc-1_X01_Y02_584_872\", \"ini\": 1346, \"clust\": 1073, \"rank\": 273, \"rankvar\": 1123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1480, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2060, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2523, \"group\": [1074.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66780_BALBc-1_X01_Y02_586_608\", \"ini\": 1345, \"clust\": 916, \"rank\": 188, \"rankvar\": 2, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 231, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2568, \"group\": [915.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66849_BALBc-1_X01_Y02_587_46\", \"ini\": 1344, \"clust\": 361, \"rank\": 348, \"rankvar\": 2269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1482, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 232, \"cat-2\": \"Density: 24\", \"cat_2_index\": 523, \"group\": [359.0, 251.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67001_BALBc-1_X01_Y02_589_528\", \"ini\": 1343, \"clust\": 1000, \"rank\": 481, \"rankvar\": 538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1483, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2061, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2166, \"group\": [1000.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67087_BALBc-1_X01_Y02_59_592\", \"ini\": 1342, \"clust\": 1295, \"rank\": 1593, \"rankvar\": 394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1484, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1247, \"cat-2\": \"Density: 20\", \"cat_2_index\": 160, \"group\": [1295.0, 666.0, 192.0, 54.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67176_BALBc-1_X01_Y02_590_64\", \"ini\": 1341, \"clust\": 646, \"rank\": 623, \"rankvar\": 281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1485, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1973, \"cat-2\": \"Density: 23\", \"cat_2_index\": 407, \"group\": [666.0, 441.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67186_BALBc-1_X01_Y02_590_689\", \"ini\": 1340, \"clust\": 1889, \"rank\": 2825, \"rankvar\": 2783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1486, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 233, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2468, \"group\": [1889.0, 1079.0, 329.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67202_BALBc-1_X01_Y02_590_825\", \"ini\": 1339, \"clust\": 735, \"rank\": 319, \"rankvar\": 396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1487, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2062, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2618, \"group\": [735.0, 466.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67369_BALBc-1_X01_Y02_593_1000\", \"ini\": 1338, \"clust\": 866, \"rank\": 138, \"rankvar\": 255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1488, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1248, \"cat-2\": \"Density: 24\", \"cat_2_index\": 524, \"group\": [879.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67476_BALBc-1_X01_Y02_594_578\", \"ini\": 1337, \"clust\": 1011, \"rank\": 571, \"rankvar\": 489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1489, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 234, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2569, \"group\": [1009.0, 514.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67538_BALBc-1_X01_Y02_595_430\", \"ini\": 1336, \"clust\": 2090, \"rank\": 2679, \"rankvar\": 2584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1490, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2063, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2167, \"group\": [2089.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67823_BALBc-1_X01_Y02_598_978\", \"ini\": 1335, \"clust\": 899, \"rank\": 37, \"rankvar\": 610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1491, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1249, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1532, \"group\": [898.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68029_BALBc-1_X01_Y02_600_513\", \"ini\": 1334, \"clust\": 2057, \"rank\": 2767, \"rankvar\": 2381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2568, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2392, \"group\": [2055.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68242_BALBc-1_X01_Y02_603_235\", \"ini\": 1333, \"clust\": 1987, \"rank\": 2263, \"rankvar\": 1965, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1493, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 235, \"cat-2\": \"Density: 20\", \"cat_2_index\": 161, \"group\": [1992.0, 1126.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68295_BALBc-1_X01_Y02_603_794\", \"ini\": 1332, \"clust\": 49, \"rank\": 864, \"rankvar\": 779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1494, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2064, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2665, \"group\": [49.0, 40.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68341_BALBc-1_X01_Y02_604_634\", \"ini\": 1331, \"clust\": 466, \"rank\": 1093, \"rankvar\": 594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1495, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2065, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2325, \"group\": [471.0, 329.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68346_BALBc-1_X01_Y02_604_71\", \"ini\": 1330, \"clust\": 1981, \"rank\": 2501, \"rankvar\": 1928, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1496, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1250, \"cat-2\": \"Density: 25\", \"cat_2_index\": 663, \"group\": [1982.0, 1123.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68427_BALBc-1_X01_Y02_605_663\", \"ini\": 1329, \"clust\": 153, \"rank\": 1817, \"rankvar\": 2193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1497, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2066, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2393, \"group\": [153.0, 96.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68484_BALBc-1_X01_Y02_606_336\", \"ini\": 1328, \"clust\": 2101, \"rank\": 2579, \"rankvar\": 2251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1498, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2569, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1258, \"group\": [2100.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68508_BALBc-1_X01_Y02_606_611\", \"ini\": 1327, \"clust\": 2270, \"rank\": 1512, \"rankvar\": 1429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1499, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2067, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2747, \"group\": [2271.0, 1239.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68608_BALBc-1_X01_Y02_607_745\", \"ini\": 1326, \"clust\": 2046, \"rank\": 2446, \"rankvar\": 1561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1500, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 236, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2524, \"group\": [2045.0, 1146.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68626_BALBc-1_X01_Y02_607_953\", \"ini\": 1325, \"clust\": 1985, \"rank\": 2309, \"rankvar\": 1582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1501, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 625, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2326, \"group\": [1984.0, 1124.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68666_BALBc-1_X01_Y02_608_396\", \"ini\": 1324, \"clust\": 2345, \"rank\": 2274, \"rankvar\": 1381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1502, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2570, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2086, \"group\": [2342.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68709_BALBc-1_X01_Y02_608_893\", \"ini\": 1323, \"clust\": 2330, \"rank\": 2059, \"rankvar\": 1153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1503, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2571, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2708, \"group\": [2327.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68790_BALBc-1_X01_Y02_609_760\", \"ini\": 1322, \"clust\": 1003, \"rank\": 198, \"rankvar\": 1311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1504, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 237, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2394, \"group\": [1004.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68847_BALBc-1_X01_Y02_61_732\", \"ini\": 1321, \"clust\": 15, \"rank\": 1560, \"rankvar\": 2265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1505, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2572, \"cat-2\": \"Density: 20\", \"cat_2_index\": 162, \"group\": [18.0, 17.0, 10.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68852_BALBc-1_X01_Y02_61_768\", \"ini\": 1320, \"clust\": 409, \"rank\": 455, \"rankvar\": 1777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1506, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2243, \"cat-2\": \"Density: 22\", \"cat_2_index\": 289, \"group\": [409.0, 287.0, 98.0, 29.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68930_BALBc-1_X01_Y02_610_841\", \"ini\": 1319, \"clust\": 2365, \"rank\": 2299, \"rankvar\": 1588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1507, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2573, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2525, \"group\": [2365.0, 1262.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69043_BALBc-1_X01_Y02_612_22\", \"ini\": 1318, \"clust\": 1543, \"rank\": 2449, \"rankvar\": 1942, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1508, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1974, \"cat-2\": \"Density: 24\", \"cat_2_index\": 525, \"group\": [1543.0, 835.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69048_BALBc-1_X01_Y02_612_265\", \"ini\": 1317, \"clust\": 205, \"rank\": 847, \"rankvar\": 997, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1509, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2574, \"cat-2\": \"Density: 22\", \"cat_2_index\": 290, \"group\": [205.0, 138.0, 46.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69070_BALBc-1_X01_Y02_612_557\", \"ini\": 1316, \"clust\": 2084, \"rank\": 2434, \"rankvar\": 2211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1510, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2068, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2469, \"group\": [2085.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69187_BALBc-1_X01_Y02_614_192\", \"ini\": 1315, \"clust\": 1137, \"rank\": 895, \"rankvar\": 1091, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1511, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2314, \"cat-2\": \"Density: 19\", \"cat_2_index\": 122, \"group\": [1138.0, 540.0, 148.0, 37.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69384_BALBc-1_X01_Y02_616_696\", \"ini\": 1314, \"clust\": 2111, \"rank\": 2760, \"rankvar\": 2575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1512, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2069, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2470, \"group\": [2107.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69441_BALBc-1_X01_Y02_617_581\", \"ini\": 1313, \"clust\": 2527, \"rank\": 1438, \"rankvar\": 1520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1513, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2070, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2666, \"group\": [2527.0, 1355.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69814_BALBc-1_X01_Y02_621_448\", \"ini\": 1312, \"clust\": 2121, \"rank\": 2164, \"rankvar\": 2342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1514, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2071, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2252, \"group\": [2119.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69943_BALBc-1_X01_Y02_622_815\", \"ini\": 1311, \"clust\": 664, \"rank\": 201, \"rankvar\": 1017, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1515, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2072, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2570, \"group\": [663.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70167_BALBc-1_X01_Y02_625_622\", \"ini\": 1310, \"clust\": 2037, \"rank\": 2441, \"rankvar\": 1677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1516, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2073, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2667, \"group\": [2034.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70245_BALBc-1_X01_Y02_626_657\", \"ini\": 1309, \"clust\": 419, \"rank\": 1103, \"rankvar\": 762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1517, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2074, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2571, \"group\": [424.0, 300.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70250_BALBc-1_X01_Y02_626_738\", \"ini\": 1308, \"clust\": 2114, \"rank\": 2731, \"rankvar\": 2693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1518, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2075, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2619, \"group\": [2110.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70390_BALBc-1_X01_Y02_628_794\", \"ini\": 1307, \"clust\": 115, \"rank\": 620, \"rankvar\": 944, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1519, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 915, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2620, \"group\": [118.0, 74.0, 24.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70677_BALBc-1_X01_Y02_631_569\", \"ini\": 1306, \"clust\": 887, \"rank\": 22, \"rankvar\": 236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1520, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 238, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2621, \"group\": [887.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70732_BALBc-1_X01_Y02_632_214\", \"ini\": 1305, \"clust\": 1350, \"rank\": 1361, \"rankvar\": 2658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1521, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2575, \"cat-2\": \"Density: 22\", \"cat_2_index\": 291, \"group\": [1351.0, 712.0, 211.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70788_BALBc-1_X01_Y02_632_885\", \"ini\": 1304, \"clust\": 635, \"rank\": 383, \"rankvar\": 587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1522, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2576, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2526, \"group\": [637.0, 428.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70792_BALBc-1_X01_Y02_632_917\", \"ini\": 1303, \"clust\": 2316, \"rank\": 2043, \"rankvar\": 1299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1523, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 626, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2622, \"group\": [2317.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71010_BALBc-1_X01_Y02_635_775\", \"ini\": 1302, \"clust\": 2053, \"rank\": 2796, \"rankvar\": 2639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1524, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2076, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2471, \"group\": [2050.0, 1148.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71015_BALBc-1_X01_Y02_635_841\", \"ini\": 1301, \"clust\": 2767, \"rank\": 1939, \"rankvar\": 1304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1525, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 916, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2327, \"group\": [2768.0, 1499.0, 447.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71192_BALBc-1_X01_Y02_638_152\", \"ini\": 1300, \"clust\": 125, \"rank\": 964, \"rankvar\": 820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1526, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1251, \"cat-2\": \"Density: 23\", \"cat_2_index\": 408, \"group\": [128.0, 80.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71313_BALBc-1_X01_Y02_639_527\", \"ini\": 1299, \"clust\": 1847, \"rank\": 2137, \"rankvar\": 1783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1527, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2077, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2395, \"group\": [1848.0, 1041.0, 313.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71373_BALBc-1_X01_Y02_64_410\", \"ini\": 1298, \"clust\": 1406, \"rank\": 1859, \"rankvar\": 1050, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1528, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1252, \"cat-2\": \"Density: 21\", \"cat_2_index\": 212, \"group\": [1406.0, 756.0, 223.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71596_BALBc-1_X01_Y02_642_538\", \"ini\": 1297, \"clust\": 2435, \"rank\": 1226, \"rankvar\": 1432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1529, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2078, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2328, \"group\": [2436.0, 1297.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71667_BALBc-1_X01_Y02_643_341\", \"ini\": 1296, \"clust\": 2203, \"rank\": 1194, \"rankvar\": 1310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1530, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2079, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1771, \"group\": [2204.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71767_BALBc-1_X01_Y02_644_390\", \"ini\": 1295, \"clust\": 2036, \"rank\": 2265, \"rankvar\": 954, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1531, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2080, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1988, \"group\": [2036.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71919_BALBc-1_X01_Y02_646_330\", \"ini\": 1294, \"clust\": 2274, \"rank\": 1879, \"rankvar\": 1258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1532, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2081, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1407, \"group\": [2273.0, 1240.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72032_BALBc-1_X01_Y02_647_871\", \"ini\": 1293, \"clust\": 2399, \"rank\": 2706, \"rankvar\": 1553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1533, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2577, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2623, \"group\": [2400.0, 1270.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72139_BALBc-1_X01_Y02_649_280\", \"ini\": 1292, \"clust\": 2704, \"rank\": 2673, \"rankvar\": 2519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1534, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2578, \"cat-2\": \"Density: 26\", \"cat_2_index\": 808, \"group\": [2705.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72165_BALBc-1_X01_Y02_649_642\", \"ini\": 1291, \"clust\": 2100, \"rank\": 2747, \"rankvar\": 2753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1535, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2082, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2777, \"group\": [2115.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72176_BALBc-1_X01_Y02_649_80\", \"ini\": 1290, \"clust\": 810, \"rank\": 68, \"rankvar\": 684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1536, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1253, \"cat-2\": \"Density: 22\", \"cat_2_index\": 292, \"group\": [809.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72245_BALBc-1_X01_Y02_65_662\", \"ini\": 1289, \"clust\": 1163, \"rank\": 1276, \"rankvar\": 2408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1537, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1254, \"cat-2\": \"Density: 21\", \"cat_2_index\": 213, \"group\": [1162.0, 559.0, 155.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72484_BALBc-1_X01_Y02_652_944\", \"ini\": 1288, \"clust\": 2175, \"rank\": 1980, \"rankvar\": 1919, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1538, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 239, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2253, \"group\": [2174.0, 1180.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72716_BALBc-1_X01_Y02_656_182\", \"ini\": 1287, \"clust\": 2695, \"rank\": 2772, \"rankvar\": 2540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1539, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2579, \"cat-2\": \"Density: 24\", \"cat_2_index\": 526, \"group\": [2696.0, 1452.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72777_BALBc-1_X01_Y02_656_712\", \"ini\": 1286, \"clust\": 2079, \"rank\": 2716, \"rankvar\": 2270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1540, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2083, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2624, \"group\": [2077.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72835_BALBc-1_X01_Y02_657_361\", \"ini\": 1285, \"clust\": 802, \"rank\": 302, \"rankvar\": 22, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1541, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2580, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2254, \"group\": [803.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72877_BALBc-1_X01_Y02_657_890\", \"ini\": 1284, \"clust\": 1047, \"rank\": 153, \"rankvar\": 717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 917, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2625, \"group\": [1046.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72970_BALBc-1_X01_Y02_659_402\", \"ini\": 1283, \"clust\": 855, \"rank\": 6, \"rankvar\": 970, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1543, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2084, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2168, \"group\": [853.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72984_BALBc-1_X01_Y02_659_578\", \"ini\": 1282, \"clust\": 2103, \"rank\": 2581, \"rankvar\": 2321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1544, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2085, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2668, \"group\": [2114.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73026_BALBc-1_X01_Y02_659_964\", \"ini\": 1281, \"clust\": 2375, \"rank\": 2561, \"rankvar\": 2491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1545, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2581, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1772, \"group\": [2374.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73130_BALBc-1_X01_Y02_660_371\", \"ini\": 1280, \"clust\": 970, \"rank\": 814, \"rankvar\": 388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1546, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 240, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2169, \"group\": [970.0, 497.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73323_BALBc-1_X01_Y02_662_515\", \"ini\": 1279, \"clust\": 991, \"rank\": 645, \"rankvar\": 1181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1547, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2086, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2087, \"group\": [992.0, 509.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73330_BALBc-1_X01_Y02_662_600\", \"ini\": 1278, \"clust\": 483, \"rank\": 948, \"rankvar\": 213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1548, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2087, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2709, \"group\": [484.0, 332.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73406_BALBc-1_X01_Y02_663_676\", \"ini\": 1277, \"clust\": 2014, \"rank\": 2195, \"rankvar\": 2127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1549, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2088, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2669, \"group\": [2017.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73682_BALBc-1_X01_Y02_667_559\", \"ini\": 1276, \"clust\": 1050, \"rank\": 337, \"rankvar\": 1590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1550, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2089, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2626, \"group\": [1051.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73864_BALBc-1_X01_Y02_669_904\", \"ini\": 1275, \"clust\": 2025, \"rank\": 2527, \"rankvar\": 1764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 241, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2396, \"group\": [2024.0, 1140.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74137_BALBc-1_X01_Y02_672_747\", \"ini\": 1274, \"clust\": 868, \"rank\": 67, \"rankvar\": 269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1552, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2090, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2572, \"group\": [867.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74157_BALBc-1_X01_Y02_672_938\", \"ini\": 1273, \"clust\": 898, \"rank\": 45, \"rankvar\": 535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1553, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1255, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2170, \"group\": [897.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74183_BALBc-1_X01_Y02_673_288\", \"ini\": 1272, \"clust\": 523, \"rank\": 423, \"rankvar\": 1607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1554, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2091, \"cat-2\": \"Density: 27\", \"cat_2_index\": 958, \"group\": [523.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74202_BALBc-1_X01_Y02_673_537\", \"ini\": 1271, \"clust\": 1134, \"rank\": 987, \"rankvar\": 879, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1555, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2092, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2255, \"group\": [1134.0, 536.0, 146.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74319_BALBc-1_X01_Y02_674_785\", \"ini\": 1270, \"clust\": 1354, \"rank\": 946, \"rankvar\": 927, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1556, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 918, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2527, \"group\": [1355.0, 716.0, 212.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74367_BALBc-1_X01_Y02_675_381\", \"ini\": 1269, \"clust\": 2356, \"rank\": 2639, \"rankvar\": 2100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1557, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 242, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2256, \"group\": [2351.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74379_BALBc-1_X01_Y02_675_428\", \"ini\": 1268, \"clust\": 2106, \"rank\": 2629, \"rankvar\": 2254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1558, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2093, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2171, \"group\": [2106.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74438_BALBc-1_X01_Y02_676_159\", \"ini\": 1267, \"clust\": 1260, \"rank\": 2503, \"rankvar\": 2562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1559, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2456, \"cat-2\": \"Density: 21\", \"cat_2_index\": 214, \"group\": [1260.0, 639.0, 183.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74507_BALBc-1_X01_Y02_676_988\", \"ini\": 1266, \"clust\": 2267, \"rank\": 1808, \"rankvar\": 1344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1560, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1256, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1112, \"group\": [2267.0, 1238.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74529_BALBc-1_X01_Y02_677_328\", \"ini\": 1265, \"clust\": 2236, \"rank\": 1577, \"rankvar\": 378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1561, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2094, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1773, \"group\": [2237.0, 1216.0, 363.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74573_BALBc-1_X01_Y02_677_811\", \"ini\": 1264, \"clust\": 1848, \"rank\": 2152, \"rankvar\": 2413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1562, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1257, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2670, \"group\": [1854.0, 1046.0, 315.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74598_BALBc-1_X01_Y02_678_172\", \"ini\": 1263, \"clust\": 2731, \"rank\": 2350, \"rankvar\": 2557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1563, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2582, \"cat-2\": \"Density: 24\", \"cat_2_index\": 527, \"group\": [2733.0, 1468.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74641_BALBc-1_X01_Y02_678_615\", \"ini\": 1262, \"clust\": 2130, \"rank\": 2615, \"rankvar\": 2646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1564, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2095, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2778, \"group\": [2128.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74779_BALBc-1_X01_Y02_68_443\", \"ini\": 1261, \"clust\": 1074, \"rank\": 575, \"rankvar\": 1096, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1565, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 704, \"cat-2\": \"Density: 26\", \"cat_2_index\": 809, \"group\": [1075.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74924_BALBc-1_X01_Y02_681_731\", \"ini\": 1260, \"clust\": 2352, \"rank\": 2483, \"rankvar\": 1422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1566, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2096, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2397, \"group\": [2347.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75385_BALBc-1_X01_Y02_687_918\", \"ini\": 1259, \"clust\": 717, \"rank\": 512, \"rankvar\": 459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1567, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1258, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2472, \"group\": [719.0, 460.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75452_BALBc-1_X01_Y02_688_793\", \"ini\": 1258, \"clust\": 1079, \"rank\": 189, \"rankvar\": 957, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1568, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1259, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2573, \"group\": [1082.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75503_BALBc-1_X01_Y02_689_468\", \"ini\": 1257, \"clust\": 2107, \"rank\": 2739, \"rankvar\": 2462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1569, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2097, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2329, \"group\": [2104.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75575_BALBc-1_X01_Y02_69_548\", \"ini\": 1256, \"clust\": 2774, \"rank\": 2320, \"rankvar\": 2094, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1570, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 243, \"cat-2\": \"Density: 26\", \"cat_2_index\": 810, \"group\": [2773.0, 1502.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75777_BALBc-1_X01_Y02_692_441\", \"ini\": 1255, \"clust\": 878, \"rank\": 2, \"rankvar\": 478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1571, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 244, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1989, \"group\": [875.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75798_BALBc-1_X01_Y02_692_654\", \"ini\": 1254, \"clust\": 2041, \"rank\": 1757, \"rankvar\": 1168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1572, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2098, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2748, \"group\": [2044.0, 1145.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75805_BALBc-1_X01_Y02_692_719\", \"ini\": 1253, \"clust\": 812, \"rank\": 230, \"rankvar\": 84, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1573, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2099, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2749, \"group\": [815.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76045_BALBc-1_X01_Y02_695_763\", \"ini\": 1252, \"clust\": 2361, \"rank\": 2315, \"rankvar\": 1511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1574, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1260, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2671, \"group\": [2361.0, 1261.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76047_BALBc-1_X01_Y02_695_820\", \"ini\": 1251, \"clust\": 1843, \"rank\": 1747, \"rankvar\": 1925, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1261, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2627, \"group\": [1841.0, 1034.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76155_BALBc-1_X01_Y02_697_37\", \"ini\": 1250, \"clust\": 562, \"rank\": 1274, \"rankvar\": 854, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1576, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2492, \"cat-2\": \"Density: 20\", \"cat_2_index\": 163, \"group\": [562.0, 386.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76157_BALBc-1_X01_Y02_697_390\", \"ini\": 1249, \"clust\": 875, \"rank\": 4, \"rankvar\": 526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1577, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 245, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2257, \"group\": [872.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76261_BALBc-1_X01_Y02_698_588\", \"ini\": 1248, \"clust\": 1808, \"rank\": 2788, \"rankvar\": 2817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1578, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2100, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2750, \"group\": [1809.0, 1023.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76284_BALBc-1_X01_Y02_698_894\", \"ini\": 1247, \"clust\": 996, \"rank\": 414, \"rankvar\": 888, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1579, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 919, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2710, \"group\": [1006.0, 512.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76311_BALBc-1_X01_Y02_699_282\", \"ini\": 1246, \"clust\": 1680, \"rank\": 2074, \"rankvar\": 1610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1580, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2583, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1259, \"group\": [1681.0, 938.0, 278.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76337_BALBc-1_X01_Y02_699_564\", \"ini\": 1245, \"clust\": 1853, \"rank\": 2714, \"rankvar\": 2180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1581, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2101, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2628, \"group\": [1850.0, 1042.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76344_BALBc-1_X01_Y02_699_679\", \"ini\": 1244, \"clust\": 1126, \"rank\": 1164, \"rankvar\": 1056, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1582, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2102, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2629, \"group\": [1126.0, 528.0, 142.0, 35.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76479_BALBc-1_X01_Y02_70_471\", \"ini\": 1243, \"clust\": 1800, \"rank\": 2319, \"rankvar\": 2629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1583, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2457, \"cat-2\": \"Density: 26\", \"cat_2_index\": 811, \"group\": [1804.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76545_BALBc-1_X01_Y02_700_356\", \"ini\": 1242, \"clust\": 1030, \"rank\": 323, \"rankvar\": 462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1584, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 246, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2088, \"group\": [1028.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76565_BALBc-1_X01_Y02_700_603\", \"ini\": 1241, \"clust\": 2077, \"rank\": 2776, \"rankvar\": 2767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1585, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 247, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2751, \"group\": [2080.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76633_BALBc-1_X01_Y02_701_469\", \"ini\": 1240, \"clust\": 651, \"rank\": 264, \"rankvar\": 448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1586, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 248, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2258, \"group\": [651.0, 437.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77012_BALBc-1_X01_Y02_706_499\", \"ini\": 1239, \"clust\": 2251, \"rank\": 1764, \"rankvar\": 524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1587, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2103, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2330, \"group\": [2251.0, 1228.0, 370.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77022_BALBc-1_X01_Y02_706_622\", \"ini\": 1238, \"clust\": 2409, \"rank\": 1145, \"rankvar\": 1353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1588, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2104, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2711, \"group\": [2413.0, 1283.0, 385.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77055_BALBc-1_X01_Y02_706_998\", \"ini\": 1237, \"clust\": 2415, \"rank\": 1271, \"rankvar\": 670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1589, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1262, \"cat-2\": \"Density: 22\", \"cat_2_index\": 293, \"group\": [2419.0, 1287.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77190_BALBc-1_X01_Y02_708_738\", \"ini\": 1236, \"clust\": 468, \"rank\": 752, \"rankvar\": 500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1590, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1263, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2574, \"group\": [469.0, 327.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77401_BALBc-1_X01_Y02_710_828\", \"ini\": 1235, \"clust\": 1012, \"rank\": 444, \"rankvar\": 43, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1264, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2630, \"group\": [1010.0, 514.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77491_BALBc-1_X01_Y02_711_906\", \"ini\": 1234, \"clust\": 2376, \"rank\": 2332, \"rankvar\": 1898, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1592, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 249, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2672, \"group\": [2375.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77533_BALBc-1_X01_Y02_712_413\", \"ini\": 1233, \"clust\": 2366, \"rank\": 2065, \"rankvar\": 880, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1593, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2105, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2331, \"group\": [2366.0, 1262.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77644_BALBc-1_X01_Y02_713_803\", \"ini\": 1232, \"clust\": 1830, \"rank\": 2668, \"rankvar\": 2177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1594, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1265, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2631, \"group\": [1829.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77833_BALBc-1_X01_Y02_716_257\", \"ini\": 1231, \"clust\": 258, \"rank\": 849, \"rankvar\": 759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1595, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2584, \"cat-2\": \"Density: 24\", \"cat_2_index\": 528, \"group\": [257.0, 180.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77991_BALBc-1_X01_Y02_718_159\", \"ini\": 1230, \"clust\": 1256, \"rank\": 2063, \"rankvar\": 1984, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1596, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2585, \"cat-2\": \"Density: 22\", \"cat_2_index\": 294, \"group\": [1261.0, 640.0, 184.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78053_BALBc-1_X01_Y02_718_850\", \"ini\": 1229, \"clust\": 1151, \"rank\": 2016, \"rankvar\": 2090, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1597, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1266, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2473, \"group\": [1152.0, 552.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78060_BALBc-1_X01_Y02_718_925\", \"ini\": 1228, \"clust\": 1093, \"rank\": 227, \"rankvar\": 338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1598, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1267, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2575, \"group\": [1094.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78089_BALBc-1_X01_Y02_719_369\", \"ini\": 1227, \"clust\": 1923, \"rank\": 2324, \"rankvar\": 2002, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1599, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 250, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2172, \"group\": [1923.0, 1105.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78113_BALBc-1_X01_Y02_719_632\", \"ini\": 1226, \"clust\": 2080, \"rank\": 2774, \"rankvar\": 2615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1600, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 251, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2752, \"group\": [2078.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78309_BALBc-1_X01_Y02_721_333\", \"ini\": 1225, \"clust\": 718, \"rank\": 147, \"rankvar\": 85, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1601, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 252, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1990, \"group\": [717.0, 460.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78374_BALBc-1_X01_Y02_721_954\", \"ini\": 1224, \"clust\": 1204, \"rank\": 962, \"rankvar\": 1824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1602, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1268, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2089, \"group\": [1203.0, 596.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78457_BALBc-1_X01_Y02_722_887\", \"ini\": 1223, \"clust\": 2242, \"rank\": 2094, \"rankvar\": 482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1603, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 253, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2816, \"group\": [2241.0, 1219.0, 366.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78466_BALBc-1_X01_Y02_723_123\", \"ini\": 1222, \"clust\": 2814, \"rank\": 1509, \"rankvar\": 1368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1604, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 920, \"cat-2\": \"Density: 21\", \"cat_2_index\": 215, \"group\": [2813.0, 1528.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78589_BALBc-1_X01_Y02_724_723\", \"ini\": 1221, \"clust\": 2545, \"rank\": 1840, \"rankvar\": 1661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1605, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2106, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2474, \"group\": [2546.0, 1371.0, 408.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78729_BALBc-1_X01_Y02_726_667\", \"ini\": 1220, \"clust\": 1060, \"rank\": 251, \"rankvar\": 1163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1606, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 254, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2753, \"group\": [1060.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78765_BALBc-1_X01_Y02_727_233\", \"ini\": 1219, \"clust\": 2688, \"rank\": 2812, \"rankvar\": 2451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1607, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2586, \"cat-2\": \"Density: 25\", \"cat_2_index\": 664, \"group\": [2692.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78858_BALBc-1_X01_Y02_728_317\", \"ini\": 1218, \"clust\": 1938, \"rank\": 1938, \"rankvar\": 1234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1608, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 255, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2090, \"group\": [1939.0, 1111.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78883_BALBc-1_X01_Y02_728_677\", \"ini\": 1217, \"clust\": 500, \"rank\": 975, \"rankvar\": 143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1609, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2107, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2632, \"group\": [499.0, 340.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78937_BALBc-1_X01_Y02_729_454\", \"ini\": 1216, \"clust\": 2346, \"rank\": 2196, \"rankvar\": 1187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1610, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2108, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2259, \"group\": [2343.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78946_BALBc-1_X01_Y02_729_586\", \"ini\": 1215, \"clust\": 2112, \"rank\": 2783, \"rankvar\": 2563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1611, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2109, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2673, \"group\": [2108.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79000_BALBc-1_X01_Y02_73_364\", \"ini\": 1214, \"clust\": 1270, \"rank\": 1206, \"rankvar\": 1626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1612, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1269, \"cat-2\": \"Density: 21\", \"cat_2_index\": 216, \"group\": [1271.0, 650.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79124_BALBc-1_X01_Y02_730_931\", \"ini\": 1213, \"clust\": 1828, \"rank\": 2481, \"rankvar\": 1609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1613, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1270, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2332, \"group\": [1828.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79128_BALBc-1_X01_Y02_730_977\", \"ini\": 1212, \"clust\": 1855, \"rank\": 2664, \"rankvar\": 2679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1614, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1271, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1533, \"group\": [1856.0, 1048.0, 316.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79171_BALBc-1_X01_Y02_731_534\", \"ini\": 1211, \"clust\": 2277, \"rank\": 1888, \"rankvar\": 1455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1615, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2110, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2633, \"group\": [2277.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79269_BALBc-1_X01_Y02_732_742\", \"ini\": 1210, \"clust\": 2484, \"rank\": 1478, \"rankvar\": 542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1616, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1272, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2634, \"group\": [2483.0, 1330.0, 396.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79364_BALBc-1_X01_Y02_733_888\", \"ini\": 1209, \"clust\": 918, \"rank\": 95, \"rankvar\": 28, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1617, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1273, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2635, \"group\": [918.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79543_BALBc-1_X01_Y02_735_827\", \"ini\": 1208, \"clust\": 895, \"rank\": 42, \"rankvar\": 344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1618, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 256, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2528, \"group\": [894.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79586_BALBc-1_X01_Y02_736_403\", \"ini\": 1207, \"clust\": 1054, \"rank\": 668, \"rankvar\": 433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1619, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2111, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2398, \"group\": [1055.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79601_BALBc-1_X01_Y02_736_604\", \"ini\": 1206, \"clust\": 1094, \"rank\": 124, \"rankvar\": 623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1620, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 257, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2636, \"group\": [1103.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79632_BALBc-1_X01_Y02_737_250\", \"ini\": 1205, \"clust\": 1099, \"rank\": 52, \"rankvar\": 166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1621, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 258, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1113, \"group\": [1096.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79634_BALBc-1_X01_Y02_737_3\", \"ini\": 1204, \"clust\": 1460, \"rank\": 2313, \"rankvar\": 1599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1622, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2812, \"cat-2\": \"Density: 25\", \"cat_2_index\": 665, \"group\": [1460.0, 796.0, 237.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79643_BALBc-1_X01_Y02_737_366\", \"ini\": 1203, \"clust\": 2094, \"rank\": 2562, \"rankvar\": 2686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1623, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 259, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2260, \"group\": [2093.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79664_BALBc-1_X01_Y02_737_57\", \"ini\": 1202, \"clust\": 127, \"rank\": 934, \"rankvar\": 481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1624, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2493, \"cat-2\": \"Density: 22\", \"cat_2_index\": 295, \"group\": [127.0, 80.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79820_BALBc-1_X01_Y02_739_546\", \"ini\": 1201, \"clust\": 2086, \"rank\": 2386, \"rankvar\": 2359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1625, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2112, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2754, \"group\": [2084.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79964_BALBc-1_X01_Y02_740_484\", \"ini\": 1200, \"clust\": 2105, \"rank\": 2804, \"rankvar\": 2698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1626, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 260, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1991, \"group\": [2103.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80233_BALBc-1_X01_Y02_744_315\", \"ini\": 1199, \"clust\": 2208, \"rank\": 1566, \"rankvar\": 1363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1627, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1274, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1992, \"group\": [2208.0, 1190.0, 349.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80367_BALBc-1_X01_Y02_746_112\", \"ini\": 1198, \"clust\": 66, \"rank\": 1100, \"rankvar\": 2059, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1628, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2315, \"cat-2\": \"Density: 20\", \"cat_2_index\": 164, \"group\": [64.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80487_BALBc-1_X01_Y02_747_644\", \"ini\": 1197, \"clust\": 479, \"rank\": 374, \"rankvar\": 753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1629, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2113, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2779, \"group\": [479.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80586_BALBc-1_X01_Y02_748_800\", \"ini\": 1196, \"clust\": 1815, \"rank\": 2566, \"rankvar\": 1194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1630, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1275, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2637, \"group\": [1816.0, 1027.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80591_BALBc-1_X01_Y02_748_849\", \"ini\": 1195, \"clust\": 2394, \"rank\": 2412, \"rankvar\": 873, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1631, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 261, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2712, \"group\": [2397.0, 1269.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80621_BALBc-1_X01_Y02_749_281\", \"ini\": 1194, \"clust\": 2596, \"rank\": 1606, \"rankvar\": 430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1632, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 262, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1534, \"group\": [2595.0, 1403.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80660_BALBc-1_X01_Y02_749_710\", \"ini\": 1193, \"clust\": 2173, \"rank\": 1392, \"rankvar\": 1082, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1633, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 263, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2713, \"group\": [2172.0, 1178.0, 347.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80840_BALBc-1_X01_Y02_750_977\", \"ini\": 1192, \"clust\": 429, \"rank\": 554, \"rankvar\": 1006, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1634, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1276, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1665, \"group\": [428.0, 303.0, 105.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80920_BALBc-1_X01_Y02_752_157\", \"ini\": 1191, \"clust\": 556, \"rank\": 794, \"rankvar\": 286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1635, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 264, \"cat-2\": \"Density: 21\", \"cat_2_index\": 217, \"group\": [555.0, 380.0, 127.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80933_BALBc-1_X01_Y02_752_347\", \"ini\": 1190, \"clust\": 389, \"rank\": 1144, \"rankvar\": 2096, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1636, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1277, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2173, \"group\": [389.0, 271.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80959_BALBc-1_X01_Y02_752_681\", \"ini\": 1189, \"clust\": 2321, \"rank\": 1979, \"rankvar\": 1349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1637, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 265, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2576, \"group\": [2319.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81055_BALBc-1_X01_Y02_753_730\", \"ini\": 1188, \"clust\": 2031, \"rank\": 2593, \"rankvar\": 2243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1638, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 266, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2674, \"group\": [2030.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81183_BALBc-1_X01_Y02_755_360\", \"ini\": 1187, \"clust\": 2209, \"rank\": 1469, \"rankvar\": 650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1639, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1278, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2174, \"group\": [2209.0, 1190.0, 349.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81243_BALBc-1_X01_Y02_756_213\", \"ini\": 1186, \"clust\": 2613, \"rank\": 1598, \"rankvar\": 946, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1640, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2587, \"cat-2\": \"Density: 24\", \"cat_2_index\": 529, \"group\": [2614.0, 1411.0, 417.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81269_BALBc-1_X01_Y02_756_466\", \"ini\": 1185, \"clust\": 2092, \"rank\": 2528, \"rankvar\": 2536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1641, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 267, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2091, \"group\": [2091.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81277_BALBc-1_X01_Y02_756_573\", \"ini\": 1184, \"clust\": 837, \"rank\": 208, \"rankvar\": 94, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1642, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 268, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2802, \"group\": [840.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81309_BALBc-1_X01_Y02_756_874\", \"ini\": 1183, \"clust\": 3, \"rank\": 1554, \"rankvar\": 850, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1643, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1279, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2638, \"group\": [4.0, 4.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81353_BALBc-1_X01_Y02_757_444\", \"ini\": 1182, \"clust\": 2131, \"rank\": 2347, \"rankvar\": 1842, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1644, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2114, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2175, \"group\": [2129.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81355_BALBc-1_X01_Y02_757_476\", \"ini\": 1181, \"clust\": 725, \"rank\": 711, \"rankvar\": 50, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1645, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2115, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2092, \"group\": [742.0, 469.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81446_BALBc-1_X01_Y02_758_596\", \"ini\": 1180, \"clust\": 2116, \"rank\": 2140, \"rankvar\": 1908, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1646, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 269, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2780, \"group\": [2116.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81458_BALBc-1_X01_Y02_758_756\", \"ini\": 1179, \"clust\": 790, \"rank\": 84, \"rankvar\": 982, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1647, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1280, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2714, \"group\": [791.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81459_BALBc-1_X01_Y02_758_783\", \"ini\": 1178, \"clust\": 2424, \"rank\": 1370, \"rankvar\": 823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1648, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1281, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2675, \"group\": [2425.0, 1292.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81463_BALBc-1_X01_Y02_758_825\", \"ini\": 1177, \"clust\": 1886, \"rank\": 2165, \"rankvar\": 1845, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1649, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 270, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2676, \"group\": [1886.0, 1076.0, 328.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81725_BALBc-1_X01_Y02_761_43\", \"ini\": 1176, \"clust\": 2824, \"rank\": 1891, \"rankvar\": 1468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1650, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2316, \"cat-2\": \"Density: 20\", \"cat_2_index\": 165, \"group\": [2822.0, 1534.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81746_BALBc-1_X01_Y02_761_621\", \"ini\": 1175, \"clust\": 2380, \"rank\": 2658, \"rankvar\": 1949, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1651, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2116, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2715, \"group\": [2380.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81892_BALBc-1_X01_Y02_763_542\", \"ini\": 1174, \"clust\": 2118, \"rank\": 2209, \"rankvar\": 2482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1652, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 271, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2716, \"group\": [2121.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82092_BALBc-1_X01_Y02_766_413\", \"ini\": 1173, \"clust\": 2191, \"rank\": 1704, \"rankvar\": 1972, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1653, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2117, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2176, \"group\": [2187.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82120_BALBc-1_X01_Y02_766_839\", \"ini\": 1172, \"clust\": 549, \"rank\": 732, \"rankvar\": 1528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1654, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 272, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2781, \"group\": [554.0, 379.0, 126.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82269_BALBc-1_X01_Y02_768_578\", \"ini\": 1171, \"clust\": 2317, \"rank\": 2078, \"rankvar\": 1737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1655, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 273, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2677, \"group\": [2316.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82462_BALBc-1_X01_Y02_770_223\", \"ini\": 1170, \"clust\": 2579, \"rank\": 1640, \"rankvar\": 1973, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1656, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 274, \"cat-2\": \"Density: 25\", \"cat_2_index\": 666, \"group\": [2579.0, 1393.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82468_BALBc-1_X01_Y02_770_255\", \"ini\": 1169, \"clust\": 259, \"rank\": 969, \"rankvar\": 263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1657, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 275, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1408, \"group\": [258.0, 181.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82542_BALBc-1_X01_Y02_771_302\", \"ini\": 1168, \"clust\": 449, \"rank\": 396, \"rankvar\": 324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1658, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1282, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1774, \"group\": [448.0, 313.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82661_BALBc-1_X01_Y02_772_660\", \"ini\": 1167, \"clust\": 2150, \"rank\": 957, \"rankvar\": 270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1659, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2118, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2782, \"group\": [2148.0, 1165.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82801_BALBc-1_X01_Y02_774_517\", \"ini\": 1166, \"clust\": 2224, \"rank\": 1463, \"rankvar\": 1476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1660, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2119, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2333, \"group\": [2223.0, 1203.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82803_BALBc-1_X01_Y02_774_554\", \"ini\": 1165, \"clust\": 512, \"rank\": 719, \"rankvar\": 307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1661, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 276, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2678, \"group\": [513.0, 352.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82911_BALBc-1_X01_Y02_776_103\", \"ini\": 1164, \"clust\": 2770, \"rank\": 1976, \"rankvar\": 1216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1662, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1283, \"cat-2\": \"Density: 20\", \"cat_2_index\": 166, \"group\": [2770.0, 1500.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83429_BALBc-1_X01_Y02_781_749\", \"ini\": 1163, \"clust\": 2308, \"rank\": 1915, \"rankvar\": 1712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1663, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 277, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2679, \"group\": [2305.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83606_BALBc-1_X01_Y02_784_170\", \"ini\": 1162, \"clust\": 691, \"rank\": 170, \"rankvar\": 1780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1664, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 278, \"cat-2\": \"Density: 24\", \"cat_2_index\": 530, \"group\": [692.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83627_BALBc-1_X01_Y02_784_444\", \"ini\": 1161, \"clust\": 1052, \"rank\": 508, \"rankvar\": 978, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1665, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 279, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2177, \"group\": [1050.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83644_BALBc-1_X01_Y02_784_688\", \"ini\": 1160, \"clust\": 2163, \"rank\": 1592, \"rankvar\": 1220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1666, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 280, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2755, \"group\": [2168.0, 1174.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83649_BALBc-1_X01_Y02_784_705\", \"ini\": 1159, \"clust\": 1928, \"rank\": 2648, \"rankvar\": 2653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1667, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 281, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2577, \"group\": [1930.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83656_BALBc-1_X01_Y02_784_772\", \"ini\": 1158, \"clust\": 276, \"rank\": 1301, \"rankvar\": 240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1668, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 282, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2756, \"group\": [279.0, 201.0, 73.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83744_BALBc-1_X01_Y02_785_846\", \"ini\": 1157, \"clust\": 1188, \"rank\": 1412, \"rankvar\": 1592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1669, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1284, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2803, \"group\": [1193.0, 586.0, 164.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83780_BALBc-1_X01_Y02_786_374\", \"ini\": 1156, \"clust\": 1790, \"rank\": 2377, \"rankvar\": 2657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1670, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1285, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2178, \"group\": [1795.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84081_BALBc-1_X01_Y02_789_906\", \"ini\": 1155, \"clust\": 2369, \"rank\": 2356, \"rankvar\": 1732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1671, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1286, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2717, \"group\": [2376.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84286_BALBc-1_X01_Y02_791_823\", \"ini\": 1154, \"clust\": 1193, \"rank\": 896, \"rankvar\": 188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1672, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 283, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2783, \"group\": [1194.0, 587.0, 165.0, 44.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84428_BALBc-1_X01_Y02_793_482\", \"ini\": 1153, \"clust\": 2349, \"rank\": 2573, \"rankvar\": 1413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1673, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2120, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2578, \"group\": [2346.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84437_BALBc-1_X01_Y02_793_558\", \"ini\": 1152, \"clust\": 2038, \"rank\": 2537, \"rankvar\": 1986, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1674, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 284, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2639, \"group\": [2035.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84444_BALBc-1_X01_Y02_793_629\", \"ini\": 1151, \"clust\": 2075, \"rank\": 2591, \"rankvar\": 2678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1675, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2121, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2718, \"group\": [2075.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84524_BALBc-1_X01_Y02_794_639\", \"ini\": 1150, \"clust\": 480, \"rank\": 304, \"rankvar\": 1125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1676, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2122, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2719, \"group\": [480.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84668_BALBc-1_X01_Y02_796_252\", \"ini\": 1149, \"clust\": 2678, \"rank\": 2041, \"rankvar\": 761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1677, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 285, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1114, \"group\": [2680.0, 1445.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84693_BALBc-1_X01_Y02_796_606\", \"ini\": 1148, \"clust\": 2211, \"rank\": 1590, \"rankvar\": 154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1678, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2123, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2822, \"group\": [2211.0, 1192.0, 350.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84771_BALBc-1_X01_Y02_797_576\", \"ini\": 1147, \"clust\": 481, \"rank\": 279, \"rankvar\": 857, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1679, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 286, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2804, \"group\": [481.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84890_BALBc-1_X01_Y02_799_133\", \"ini\": 1146, \"clust\": 97, \"rank\": 745, \"rankvar\": 1670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1680, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1287, \"cat-2\": \"Density: 22\", \"cat_2_index\": 296, \"group\": [97.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85210_BALBc-1_X01_Y02_801_416\", \"ini\": 1145, \"clust\": 491, \"rank\": 944, \"rankvar\": 195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1681, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2124, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2334, \"group\": [492.0, 336.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85318_BALBc-1_X01_Y02_802_791\", \"ini\": 1144, \"clust\": 2147, \"rank\": 1247, \"rankvar\": 547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1682, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 287, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2720, \"group\": [2146.0, 1163.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85392_BALBc-1_X01_Y02_803_774\", \"ini\": 1143, \"clust\": 2393, \"rank\": 2343, \"rankvar\": 1207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1683, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 288, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2757, \"group\": [2392.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85429_BALBc-1_X01_Y02_804_316\", \"ini\": 1142, \"clust\": 2485, \"rank\": 1812, \"rankvar\": 1298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1684, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1288, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1535, \"group\": [2484.0, 1331.0, 396.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85448_BALBc-1_X01_Y02_804_541\", \"ini\": 1141, \"clust\": 2480, \"rank\": 1959, \"rankvar\": 392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1685, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 289, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2640, \"group\": [2481.0, 1328.0, 395.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85463_BALBc-1_X01_Y02_804_714\", \"ini\": 1140, \"clust\": 472, \"rank\": 509, \"rankvar\": 268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1686, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 290, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2721, \"group\": [472.0, 330.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85557_BALBc-1_X01_Y02_805_753\", \"ini\": 1139, \"clust\": 2167, \"rank\": 1547, \"rankvar\": 1027, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1687, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 291, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2758, \"group\": [2166.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85602_BALBc-1_X01_Y02_806_33\", \"ini\": 1138, \"clust\": 1061, \"rank\": 669, \"rankvar\": 75, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1688, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2458, \"cat-2\": \"Density: 25\", \"cat_2_index\": 667, \"group\": [1065.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85669_BALBc-1_X01_Y02_807_182\", \"ini\": 1137, \"clust\": 2701, \"rank\": 2694, \"rankvar\": 2494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1689, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2588, \"cat-2\": \"Density: 27\", \"cat_2_index\": 959, \"group\": [2698.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85834_BALBc-1_X01_Y02_809_436\", \"ini\": 1136, \"clust\": 1908, \"rank\": 2185, \"rankvar\": 2147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1690, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2125, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2261, \"group\": [1907.0, 1094.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85868_BALBc-1_X01_Y02_809_912\", \"ini\": 1135, \"clust\": 1751, \"rank\": 359, \"rankvar\": 2203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1691, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1289, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2805, \"group\": [1750.0, 991.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85898_BALBc-1_X01_Y02_81_389\", \"ini\": 1134, \"clust\": 1327, \"rank\": 976, \"rankvar\": 1971, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1692, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1290, \"cat-2\": \"Density: 21\", \"cat_2_index\": 218, \"group\": [1327.0, 694.0, 207.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85923_BALBc-1_X01_Y02_81_743\", \"ini\": 1133, \"clust\": 1738, \"rank\": 2729, \"rankvar\": 2759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1693, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2589, \"cat-2\": \"Density: 25\", \"cat_2_index\": 668, \"group\": [1738.0, 981.0, 293.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85974_BALBc-1_X01_Y02_810_459\", \"ini\": 1132, \"clust\": 2196, \"rank\": 1627, \"rankvar\": 2332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1694, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 292, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2262, \"group\": [2190.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85979_BALBc-1_X01_Y02_810_520\", \"ini\": 1131, \"clust\": 2032, \"rank\": 2214, \"rankvar\": 1604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1695, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2126, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2475, \"group\": [2033.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86074_BALBc-1_X01_Y02_811_664\", \"ini\": 1130, \"clust\": 2370, \"rank\": 2351, \"rankvar\": 1230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1696, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 293, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2759, \"group\": [2369.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86098_BALBc-1_X01_Y02_811_975\", \"ini\": 1129, \"clust\": 2430, \"rank\": 837, \"rankvar\": 608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1697, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1291, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1666, \"group\": [2435.0, 1296.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86157_BALBc-1_X01_Y02_812_892\", \"ini\": 1128, \"clust\": 14, \"rank\": 1117, \"rankvar\": 306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1698, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1292, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2806, \"group\": [15.0, 14.0, 8.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86213_BALBc-1_X01_Y02_813_595\", \"ini\": 1127, \"clust\": 2076, \"rank\": 2618, \"rankvar\": 2559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1699, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 294, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2680, \"group\": [2076.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86243_BALBc-1_X01_Y02_813_835\", \"ini\": 1126, \"clust\": 2444, \"rank\": 1645, \"rankvar\": 828, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1700, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 295, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2722, \"group\": [2445.0, 1301.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86335_BALBc-1_X01_Y02_814_809\", \"ini\": 1125, \"clust\": 637, \"rank\": 254, \"rankvar\": 342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1701, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 296, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2723, \"group\": [636.0, 428.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86391_BALBc-1_X01_Y02_815_690\", \"ini\": 1124, \"clust\": 847, \"rank\": 333, \"rankvar\": 66, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1702, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 297, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2784, \"group\": [847.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86425_BALBc-1_X01_Y02_816_222\", \"ini\": 1123, \"clust\": 2481, \"rank\": 1968, \"rankvar\": 1479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1703, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 298, \"cat-2\": \"Density: 27\", \"cat_2_index\": 960, \"group\": [2482.0, 1329.0, 395.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86647_BALBc-1_X01_Y02_819_250\", \"ini\": 1122, \"clust\": 2651, \"rank\": 2055, \"rankvar\": 341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1704, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 299, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1115, \"group\": [2652.0, 1439.0, 426.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86676_BALBc-1_X01_Y02_819_581\", \"ini\": 1121, \"clust\": 2115, \"rank\": 2758, \"rankvar\": 2638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1705, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 300, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2681, \"group\": [2111.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86754_BALBc-1_X01_Y02_82_796\", \"ini\": 1120, \"clust\": 2684, \"rank\": 2586, \"rankvar\": 2235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1706, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1293, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1116, \"group\": [2687.0, 1448.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86790_BALBc-1_X01_Y02_820_302\", \"ini\": 1119, \"clust\": 161, \"rank\": 1394, \"rankvar\": 840, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1707, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 301, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1775, \"group\": [162.0, 103.0, 34.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86794_BALBc-1_X01_Y02_820_348\", \"ini\": 1118, \"clust\": 1764, \"rank\": 2080, \"rankvar\": 2742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1708, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1294, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2093, \"group\": [1765.0, 1000.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86829_BALBc-1_X01_Y02_820_75\", \"ini\": 1117, \"clust\": 674, \"rank\": 494, \"rankvar\": 1333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1709, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1295, \"cat-2\": \"Density: 22\", \"cat_2_index\": 297, \"group\": [675.0, 447.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86839_BALBc-1_X01_Y02_820_855\", \"ini\": 1116, \"clust\": 2431, \"rank\": 852, \"rankvar\": 402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1710, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1296, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2785, \"group\": [2434.0, 1295.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86899_BALBc-1_X01_Y02_821_630\", \"ini\": 1115, \"clust\": 495, \"rank\": 1585, \"rankvar\": 1079, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1711, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 302, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2724, \"group\": [496.0, 338.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87034_BALBc-1_X01_Y02_823_34\", \"ini\": 1114, \"clust\": 2528, \"rank\": 1691, \"rankvar\": 977, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1712, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2459, \"cat-2\": \"Density: 25\", \"cat_2_index\": 669, \"group\": [2535.0, 1361.0, 403.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87221_BALBc-1_X01_Y02_825_543\", \"ini\": 1113, \"clust\": 2512, \"rank\": 1403, \"rankvar\": 1681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1713, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 303, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2579, \"group\": [2513.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87372_BALBc-1_X01_Y02_827_730\", \"ini\": 1112, \"clust\": 2359, \"rank\": 1792, \"rankvar\": 227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1714, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 304, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2682, \"group\": [2358.0, 1259.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87470_BALBc-1_X01_Y02_828_775\", \"ini\": 1111, \"clust\": 2002, \"rank\": 2019, \"rankvar\": 1373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1715, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2127, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2760, \"group\": [2006.0, 1135.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87639_BALBc-1_X01_Y02_830_197\", \"ini\": 1110, \"clust\": 2593, \"rank\": 1192, \"rankvar\": 1991, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1716, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1297, \"cat-2\": \"Density: 24\", \"cat_2_index\": 531, \"group\": [2591.0, 1401.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87741_BALBc-1_X01_Y02_831_562\", \"ini\": 1109, \"clust\": 2388, \"rank\": 2654, \"rankvar\": 1758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1717, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 305, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2641, \"group\": [2385.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87745_BALBc-1_X01_Y02_831_662\", \"ini\": 1108, \"clust\": 2205, \"rank\": 1444, \"rankvar\": 2071, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1718, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1298, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2725, \"group\": [2201.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87997_BALBc-1_X01_Y02_835_259\", \"ini\": 1107, \"clust\": 2148, \"rank\": 1303, \"rankvar\": 727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1719, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 306, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1409, \"group\": [2147.0, 1164.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88002_BALBc-1_X01_Y02_835_327\", \"ini\": 1106, \"clust\": 679, \"rank\": 305, \"rankvar\": 230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1720, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2590, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1993, \"group\": [679.0, 449.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88095_BALBc-1_X01_Y02_836_515\", \"ini\": 1105, \"clust\": 2095, \"rank\": 2507, \"rankvar\": 2350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1721, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2128, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2580, \"group\": [2099.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88266_BALBc-1_X01_Y02_838_738\", \"ini\": 1104, \"clust\": 999, \"rank\": 772, \"rankvar\": 731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1722, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 307, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2761, \"group\": [998.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88354_BALBc-1_X01_Y02_839_825\", \"ini\": 1103, \"clust\": 1724, \"rank\": 2738, \"rankvar\": 2809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1723, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 308, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2823, \"group\": [1723.0, 970.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88357_BALBc-1_X01_Y02_839_852\", \"ini\": 1102, \"clust\": 2291, \"rank\": 1830, \"rankvar\": 784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1724, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1299, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2817, \"group\": [2357.0, 1258.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88496_BALBc-1_X01_Y02_840_696\", \"ini\": 1101, \"clust\": 2432, \"rank\": 892, \"rankvar\": 314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1725, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1300, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2762, \"group\": [2433.0, 1295.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88510_BALBc-1_X01_Y02_840_903\", \"ini\": 1100, \"clust\": 1755, \"rank\": 2048, \"rankvar\": 2045, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1726, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1301, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2807, \"group\": [1753.0, 994.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88541_BALBc-1_X01_Y02_841_302\", \"ini\": 1099, \"clust\": 2183, \"rank\": 1727, \"rankvar\": 1062, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1727, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2591, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1994, \"group\": [2206.0, 1188.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88548_BALBc-1_X01_Y02_841_352\", \"ini\": 1098, \"clust\": 2019, \"rank\": 1868, \"rankvar\": 1698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1728, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2129, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2335, \"group\": [2020.0, 1138.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88675_BALBc-1_X01_Y02_843_224\", \"ini\": 1097, \"clust\": 22, \"rank\": 748, \"rankvar\": 107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1729, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1302, \"cat-2\": \"Density: 26\", \"cat_2_index\": 812, \"group\": [22.0, 21.0, 12.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88693_BALBc-1_X01_Y02_843_446\", \"ini\": 1096, \"clust\": 2078, \"rank\": 2689, \"rankvar\": 2490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1730, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2130, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2399, \"group\": [2079.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88704_BALBc-1_X01_Y02_843_602\", \"ini\": 1095, \"clust\": 2125, \"rank\": 2700, \"rankvar\": 2651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1731, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2131, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2763, \"group\": [2123.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88810_BALBc-1_X01_Y02_844_808\", \"ini\": 1094, \"clust\": 676, \"rank\": 625, \"rankvar\": 862, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1732, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 309, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2764, \"group\": [677.0, 448.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88868_BALBc-1_X01_Y02_845_558\", \"ini\": 1093, \"clust\": 890, \"rank\": 7, \"rankvar\": 591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1733, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 310, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2683, \"group\": [890.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88930_BALBc-1_X01_Y02_846_528\", \"ini\": 1092, \"clust\": 277, \"rank\": 1646, \"rankvar\": 889, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1734, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 311, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2400, \"group\": [277.0, 199.0, 72.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89014_BALBc-1_X01_Y02_847_497\", \"ini\": 1091, \"clust\": 1913, \"rank\": 1886, \"rankvar\": 662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1735, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2132, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2476, \"group\": [1913.0, 1099.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89025_BALBc-1_X01_Y02_847_613\", \"ini\": 1090, \"clust\": 496, \"rank\": 1170, \"rankvar\": 876, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1736, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2133, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2808, \"group\": [497.0, 339.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89310_BALBc-1_X01_Y02_850_368\", \"ini\": 1089, \"clust\": 494, \"rank\": 1007, \"rankvar\": 771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1737, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2134, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2336, \"group\": [494.0, 337.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89480_BALBc-1_X01_Y02_852_712\", \"ini\": 1088, \"clust\": 924, \"rank\": 166, \"rankvar\": 45, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1738, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1303, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2684, \"group\": [923.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89535_BALBc-1_X01_Y02_853_431\", \"ini\": 1087, \"clust\": 2176, \"rank\": 1693, \"rankvar\": 1223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1739, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2135, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2401, \"group\": [2175.0, 1180.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89554_BALBc-1_X01_Y02_853_632\", \"ini\": 1086, \"clust\": 482, \"rank\": 197, \"rankvar\": 253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1740, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 312, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2685, \"group\": [482.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89574_BALBc-1_X01_Y02_853_890\", \"ini\": 1085, \"clust\": 954, \"rank\": 644, \"rankvar\": 383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1741, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1304, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2786, \"group\": [955.0, 488.0, 139.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89619_BALBc-1_X01_Y02_854_42\", \"ini\": 1084, \"clust\": 675, \"rank\": 413, \"rankvar\": 1767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1742, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1975, \"cat-2\": \"Density: 25\", \"cat_2_index\": 670, \"group\": [676.0, 447.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89667_BALBc-1_X01_Y02_854_933\", \"ini\": 1083, \"clust\": 2425, \"rank\": 1354, \"rankvar\": 767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1743, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1305, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2642, \"group\": [2426.0, 1292.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89670_BALBc-1_X01_Y02_854_970\", \"ini\": 1082, \"clust\": 921, \"rank\": 25, \"rankvar\": 460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1744, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1306, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1776, \"group\": [921.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89808_BALBc-1_X01_Y02_856_577\", \"ini\": 1081, \"clust\": 477, \"rank\": 570, \"rankvar\": 799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1745, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2136, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2787, \"group\": [476.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89834_BALBc-1_X01_Y02_856_743\", \"ini\": 1080, \"clust\": 2327, \"rank\": 1917, \"rankvar\": 1388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1746, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2137, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2686, \"group\": [2325.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89916_BALBc-1_X01_Y02_857_916\", \"ini\": 1079, \"clust\": 935, \"rank\": 168, \"rankvar\": 454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1747, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1307, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2765, \"group\": [936.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90046_BALBc-1_X01_Y02_859_832\", \"ini\": 1078, \"clust\": 1085, \"rank\": 382, \"rankvar\": 565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1748, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 313, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2788, \"group\": [1086.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90073_BALBc-1_X01_Y02_86_249\", \"ini\": 1077, \"clust\": 1636, \"rank\": 2009, \"rankvar\": 1917, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1749, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1308, \"cat-2\": \"Density: 24\", \"cat_2_index\": 532, \"group\": [1648.0, 908.0, 263.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90207_BALBc-1_X01_Y02_860_848\", \"ini\": 1076, \"clust\": 1795, \"rank\": 1860, \"rankvar\": 2351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1750, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1309, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2726, \"group\": [1799.0, 1017.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90347_BALBc-1_X01_Y02_862_790\", \"ini\": 1075, \"clust\": 2386, \"rank\": 2567, \"rankvar\": 1613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1751, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2138, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2687, \"group\": [2386.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90484_BALBc-1_X01_Y02_864_649\", \"ini\": 1074, \"clust\": 2083, \"rank\": 2725, \"rankvar\": 2650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1752, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 314, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2824, \"group\": [2082.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90517_BALBc-1_X01_Y02_865_117\", \"ini\": 1073, \"clust\": 120, \"rank\": 1107, \"rankvar\": 198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1753, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1310, \"cat-2\": \"Density: 25\", \"cat_2_index\": 671, \"group\": [121.0, 77.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90526_BALBc-1_X01_Y02_865_275\", \"ini\": 1072, \"clust\": 516, \"rank\": 446, \"rankvar\": 11, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1754, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2592, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1536, \"group\": [515.0, 353.0, 119.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90627_BALBc-1_X01_Y02_866_672\", \"ini\": 1071, \"clust\": 1809, \"rank\": 2617, \"rankvar\": 2605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1755, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1311, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2766, \"group\": [1810.0, 1023.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90717_BALBc-1_X01_Y02_867_77\", \"ini\": 1070, \"clust\": 140, \"rank\": 1522, \"rankvar\": 199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1756, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1312, \"cat-2\": \"Density: 23\", \"cat_2_index\": 409, \"group\": [140.0, 86.0, 27.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90877_BALBc-1_X01_Y02_869_470\", \"ini\": 1069, \"clust\": 747, \"rank\": 626, \"rankvar\": 424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1757, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 315, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2477, \"group\": [746.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91022_BALBc-1_X01_Y02_870_430\", \"ini\": 1068, \"clust\": 1122, \"rank\": 821, \"rankvar\": 184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1758, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 316, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2263, \"group\": [1123.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91052_BALBc-1_X01_Y02_870_812\", \"ini\": 1067, \"clust\": 1033, \"rank\": 498, \"rankvar\": 144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1759, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 317, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2809, \"group\": [1034.0, 520.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91129_BALBc-1_X01_Y02_871_893\", \"ini\": 1066, \"clust\": 1824, \"rank\": 2560, \"rankvar\": 2343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1760, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1313, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2789, \"group\": [1824.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91141_BALBc-1_X01_Y02_872_170\", \"ini\": 1065, \"clust\": 254, \"rank\": 1289, \"rankvar\": 626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1761, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1314, \"cat-2\": \"Density: 24\", \"cat_2_index\": 533, \"group\": [256.0, 179.0, 62.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91166_BALBc-1_X01_Y02_872_397\", \"ini\": 1064, \"clust\": 527, \"rank\": 145, \"rankvar\": 1674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1762, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2139, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2337, \"group\": [526.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91495_BALBc-1_X01_Y02_876_48\", \"ini\": 1063, \"clust\": 1123, \"rank\": 695, \"rankvar\": 389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1763, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2593, \"cat-2\": \"Density: 24\", \"cat_2_index\": 534, \"group\": [1124.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91511_BALBc-1_X01_Y02_876_712\", \"ini\": 1062, \"clust\": 471, \"rank\": 899, \"rankvar\": 1, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1764, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1315, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2581, \"group\": [474.0, 330.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91600_BALBc-1_X01_Y02_877_848\", \"ini\": 1061, \"clust\": 442, \"rank\": 364, \"rankvar\": 706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1765, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1316, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2688, \"group\": [442.0, 310.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91734_BALBc-1_X01_Y02_879_562\", \"ini\": 1060, \"clust\": 2509, \"rank\": 1671, \"rankvar\": 652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1766, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2140, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2478, \"group\": [2512.0, 1350.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91760_BALBc-1_X01_Y02_879_747\", \"ini\": 1059, \"clust\": 1817, \"rank\": 2625, \"rankvar\": 2610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1767, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2141, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2767, \"group\": [1818.0, 1028.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91896_BALBc-1_X01_Y02_880_618\", \"ini\": 1058, \"clust\": 2288, \"rank\": 2392, \"rankvar\": 1543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1768, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2142, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2768, \"group\": [2287.0, 1245.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91987_BALBc-1_X01_Y02_881_761\", \"ini\": 1057, \"clust\": 2449, \"rank\": 1364, \"rankvar\": 911, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1769, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2143, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2727, \"group\": [2449.0, 1303.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92091_BALBc-1_X01_Y02_883_354\", \"ini\": 1056, \"clust\": 2162, \"rank\": 1184, \"rankvar\": 1236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1770, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 318, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2264, \"group\": [2159.0, 1172.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92101_BALBc-1_X01_Y02_883_525\", \"ini\": 1055, \"clust\": 644, \"rank\": 545, \"rankvar\": 554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1771, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 319, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2479, \"group\": [644.0, 432.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92192_BALBc-1_X01_Y02_884_787\", \"ini\": 1054, \"clust\": 1130, \"rank\": 889, \"rankvar\": 768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1772, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2144, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2790, \"group\": [1132.0, 534.0, 145.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92232_BALBc-1_X01_Y02_885_452\", \"ini\": 1053, \"clust\": 524, \"rank\": 457, \"rankvar\": 637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1773, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 320, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2402, \"group\": [524.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92319_BALBc-1_X01_Y02_886_720\", \"ini\": 1052, \"clust\": 726, \"rank\": 507, \"rankvar\": 115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1774, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 321, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2728, \"group\": [726.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92390_BALBc-1_X01_Y02_887_673\", \"ini\": 1051, \"clust\": 492, \"rank\": 781, \"rankvar\": 600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1775, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1317, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2729, \"group\": [495.0, 337.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92396_BALBc-1_X01_Y02_887_730\", \"ini\": 1050, \"clust\": 2347, \"rank\": 2534, \"rankvar\": 1651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1776, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 322, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2582, \"group\": [2354.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92444_BALBc-1_X01_Y02_888_377\", \"ini\": 1049, \"clust\": 364, \"rank\": 801, \"rankvar\": 1652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1777, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 323, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2403, \"group\": [364.0, 252.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92446_BALBc-1_X01_Y02_888_392\", \"ini\": 1048, \"clust\": 2307, \"rank\": 2039, \"rankvar\": 1645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1778, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 324, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2265, \"group\": [2307.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92557_BALBc-1_X01_Y02_889_842\", \"ini\": 1047, \"clust\": 1835, \"rank\": 2500, \"rankvar\": 2029, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1779, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1318, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2810, \"group\": [1834.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92644_BALBc-1_X01_Y02_890_129\", \"ini\": 1046, \"clust\": 2616, \"rank\": 1539, \"rankvar\": 1744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1780, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2594, \"cat-2\": \"Density: 27\", \"cat_2_index\": 961, \"group\": [2617.0, 1414.0, 417.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92729_BALBc-1_X01_Y02_891_16\", \"ini\": 1045, \"clust\": 1293, \"rank\": 1699, \"rankvar\": 934, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1781, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2595, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1117, \"group\": [1291.0, 662.0, 190.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92737_BALBc-1_X01_Y02_891_219\", \"ini\": 1044, \"clust\": 135, \"rank\": 779, \"rankvar\": 245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1782, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1319, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1260, \"group\": [139.0, 85.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92747_BALBc-1_X01_Y02_891_339\", \"ini\": 1043, \"clust\": 1907, \"rank\": 1972, \"rankvar\": 1090, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1783, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2596, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2266, \"group\": [1909.0, 1095.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92963_BALBc-1_X01_Y02_894_270\", \"ini\": 1042, \"clust\": 1902, \"rank\": 2462, \"rankvar\": 2613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1784, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2597, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1410, \"group\": [1904.0, 1091.0, 333.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92994_BALBc-1_X01_Y02_894_579\", \"ini\": 1041, \"clust\": 1818, \"rank\": 2110, \"rankvar\": 2259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1785, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2145, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2643, \"group\": [1819.0, 1028.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93017_BALBc-1_X01_Y02_894_895\", \"ini\": 1040, \"clust\": 1756, \"rank\": 1716, \"rankvar\": 2054, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1786, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1320, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2644, \"group\": [1754.0, 994.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93023_BALBc-1_X01_Y02_894_972\", \"ini\": 1039, \"clust\": 1760, \"rank\": 918, \"rankvar\": 1713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1787, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1321, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1261, \"group\": [1759.0, 995.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93058_BALBc-1_X01_Y02_895_417\", \"ini\": 1038, \"clust\": 1154, \"rank\": 1350, \"rankvar\": 1360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1788, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 325, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2179, \"group\": [1154.0, 554.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93151_BALBc-1_X01_Y02_896_819\", \"ini\": 1037, \"clust\": 385, \"rank\": 747, \"rankvar\": 1580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1789, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1322, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2791, \"group\": [384.0, 266.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93204_BALBc-1_X01_Y02_897_498\", \"ini\": 1036, \"clust\": 2362, \"rank\": 2018, \"rankvar\": 890, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1790, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 326, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2480, \"group\": [2362.0, 1261.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93411_BALBc-1_X01_Y02_9_314\", \"ini\": 1035, \"clust\": 708, \"rank\": 231, \"rankvar\": 1710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1791, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1323, \"cat-2\": \"Density: 12\", \"cat_2_index\": 8, \"group\": [707.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93436_BALBc-1_X01_Y02_9_681\", \"ini\": 1034, \"clust\": 2229, \"rank\": 2116, \"rankvar\": 1822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1792, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 327, \"cat-2\": \"Density: 12\", \"cat_2_index\": 9, \"group\": [2230.0, 1209.0, 359.0, 98.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93586_BALBc-1_X01_Y02_900_660\", \"ini\": 1033, \"clust\": 2134, \"rank\": 2394, \"rankvar\": 1930, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1793, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 328, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2645, \"group\": [2134.0, 1153.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93735_BALBc-1_X01_Y02_902_696\", \"ini\": 1032, \"clust\": 278, \"rank\": 1480, \"rankvar\": 1404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1794, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 329, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2646, \"group\": [278.0, 200.0, 72.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93759_BALBc-1_X01_Y02_903_167\", \"ini\": 1031, \"clust\": 1027, \"rank\": 167, \"rankvar\": 48, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1795, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2813, \"cat-2\": \"Density: 25\", \"cat_2_index\": 672, \"group\": [1026.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93900_BALBc-1_X01_Y02_905_185\", \"ini\": 1030, \"clust\": 2482, \"rank\": 1604, \"rankvar\": 1251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1796, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2598, \"cat-2\": \"Density: 27\", \"cat_2_index\": 962, \"group\": [2486.0, 1333.0, 397.0, 107.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93911_BALBc-1_X01_Y02_905_312\", \"ini\": 1029, \"clust\": 586, \"rank\": 590, \"rankvar\": 1046, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1797, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2599, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1878, \"group\": [583.0, 399.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94069_BALBc-1_X01_Y02_907_471\", \"ini\": 1028, \"clust\": 2074, \"rank\": 2406, \"rankvar\": 1547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1798, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 330, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2481, \"group\": [2074.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94075_BALBc-1_X01_Y02_907_532\", \"ini\": 1027, \"clust\": 1080, \"rank\": 172, \"rankvar\": 216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1799, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 331, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2180, \"group\": [1080.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94153_BALBc-1_X01_Y02_908_623\", \"ini\": 1026, \"clust\": 421, \"rank\": 1316, \"rankvar\": 983, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1800, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1976, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2583, \"group\": [421.0, 297.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94234_BALBc-1_X01_Y02_909_73\", \"ini\": 1025, \"clust\": 1541, \"rank\": 2388, \"rankvar\": 2107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1801, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2600, \"cat-2\": \"Density: 25\", \"cat_2_index\": 673, \"group\": [1541.0, 834.0, 242.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94463_BALBc-1_X01_Y02_911_790\", \"ini\": 1024, \"clust\": 2332, \"rank\": 2176, \"rankvar\": 1600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1802, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1324, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2730, \"group\": [2335.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94538_BALBc-1_X01_Y02_912_752\", \"ini\": 1023, \"clust\": 1986, \"rank\": 2256, \"rankvar\": 1566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1803, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2317, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2769, \"group\": [1985.0, 1124.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94605_BALBc-1_X01_Y02_913_728\", \"ini\": 1022, \"clust\": 988, \"rank\": 603, \"rankvar\": 845, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1804, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2318, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2584, \"group\": [989.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94692_BALBc-1_X01_Y02_914_972\", \"ini\": 1021, \"clust\": 1671, \"rank\": 1472, \"rankvar\": 633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1805, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1325, \"cat-2\": \"Density: 27\", \"cat_2_index\": 963, \"group\": [1673.0, 930.0, 272.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94737_BALBc-1_X01_Y02_915_653\", \"ini\": 1020, \"clust\": 2367, \"rank\": 2187, \"rankvar\": 1653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1806, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 332, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2647, \"group\": [2367.0, 1263.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94800_BALBc-1_X01_Y02_916_392\", \"ini\": 1019, \"clust\": 652, \"rank\": 712, \"rankvar\": 139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1807, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 333, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2404, \"group\": [652.0, 437.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94865_BALBc-1_X01_Y02_917_414\", \"ini\": 1018, \"clust\": 1158, \"rank\": 829, \"rankvar\": 851, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1808, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 334, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2267, \"group\": [1161.0, 558.0, 154.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94917_BALBc-1_X01_Y02_918_144\", \"ini\": 1017, \"clust\": 2216, \"rank\": 1488, \"rankvar\": 52, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1809, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2601, \"cat-2\": \"Density: 23\", \"cat_2_index\": 410, \"group\": [2217.0, 1198.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94976_BALBc-1_X01_Y02_918_685\", \"ini\": 1016, \"clust\": 2379, \"rank\": 2512, \"rankvar\": 1084, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1810, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 335, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2585, \"group\": [2378.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95031_BALBc-1_X01_Y02_919_496\", \"ini\": 1015, \"clust\": 1155, \"rank\": 1251, \"rankvar\": 1281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1811, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 336, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2181, \"group\": [1155.0, 554.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95151_BALBc-1_X01_Y02_920_106\", \"ini\": 1014, \"clust\": 760, \"rank\": 267, \"rankvar\": 278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1812, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2602, \"cat-2\": \"Density: 25\", \"cat_2_index\": 674, \"group\": [760.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95247_BALBc-1_X01_Y02_921_339\", \"ini\": 1013, \"clust\": 1058, \"rank\": 730, \"rankvar\": 359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1813, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 337, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2268, \"group\": [1061.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95323_BALBc-1_X01_Y02_922_248\", \"ini\": 1012, \"clust\": 2599, \"rank\": 1756, \"rankvar\": 1334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1814, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2603, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1411, \"group\": [2612.0, 1409.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95511_BALBc-1_X01_Y02_924_552\", \"ini\": 1011, \"clust\": 1823, \"rank\": 2737, \"rankvar\": 2729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1815, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 338, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2405, \"group\": [1823.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95603_BALBc-1_X01_Y02_925_713\", \"ini\": 1010, \"clust\": 1916, \"rank\": 2181, \"rankvar\": 923, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1816, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2319, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2770, \"group\": [1917.0, 1101.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95670_BALBc-1_X01_Y02_926_592\", \"ini\": 1009, \"clust\": 1784, \"rank\": 1428, \"rankvar\": 2502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1817, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1977, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2586, \"group\": [1785.0, 1014.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95679_BALBc-1_X01_Y02_926_670\", \"ini\": 1008, \"clust\": 475, \"rank\": 687, \"rankvar\": 830, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1818, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 339, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2689, \"group\": [477.0, 331.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95702_BALBc-1_X01_Y02_926_934\", \"ini\": 1007, \"clust\": 1706, \"rank\": 2818, \"rankvar\": 2818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1819, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1326, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2529, \"group\": [1708.0, 961.0, 288.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95782_BALBc-1_X01_Y02_927_871\", \"ini\": 1006, \"clust\": 843, \"rank\": 81, \"rankvar\": 178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1820, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1327, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2818, \"group\": [843.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95802_BALBc-1_X01_Y02_928_19\", \"ini\": 1005, \"clust\": 572, \"rank\": 366, \"rankvar\": 207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1821, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2604, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1262, \"group\": [571.0, 391.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95821_BALBc-1_X01_Y02_928_362\", \"ini\": 1004, \"clust\": 528, \"rank\": 1045, \"rankvar\": 206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1822, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 340, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2482, \"group\": [528.0, 360.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95912_BALBc-1_X01_Y02_929_417\", \"ini\": 1003, \"clust\": 740, \"rank\": 242, \"rankvar\": 317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1823, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 341, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2483, \"group\": [737.0, 467.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95959_BALBc-1_X01_Y02_93_212\", \"ini\": 1002, \"clust\": 536, \"rank\": 192, \"rankvar\": 1217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1824, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2244, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1263, \"group\": [537.0, 367.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96011_BALBc-1_X01_Y02_93_891\", \"ini\": 1001, \"clust\": 1924, \"rank\": 2637, \"rankvar\": 2486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1825, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2320, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1264, \"group\": [1924.0, 1106.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96026_BALBc-1_X01_Y02_930_183\", \"ini\": 1000, \"clust\": 1766, \"rank\": 2784, \"rankvar\": 2823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1826, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2605, \"cat-2\": \"Density: 25\", \"cat_2_index\": 675, \"group\": [1768.0, 1001.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96035_BALBc-1_X01_Y02_930_310\", \"ini\": 999, \"clust\": 2537, \"rank\": 1516, \"rankvar\": 649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1827, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2321, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2094, \"group\": [2538.0, 1363.0, 404.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96049_BALBc-1_X01_Y02_930_522\", \"ini\": 998, \"clust\": 2180, \"rank\": 1674, \"rankvar\": 894, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1828, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 342, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2182, \"group\": [2180.0, 1184.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96059_BALBc-1_X01_Y02_930_618\", \"ini\": 997, \"clust\": 2341, \"rank\": 2128, \"rankvar\": 737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1829, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 343, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2587, \"group\": [2341.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96129_BALBc-1_X01_Y02_931_639\", \"ini\": 996, \"clust\": 643, \"rank\": 558, \"rankvar\": 345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1830, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 344, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2588, \"group\": [642.0, 431.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96358_BALBc-1_X01_Y02_934_786\", \"ini\": 995, \"clust\": 408, \"rank\": 793, \"rankvar\": 1672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1831, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1328, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2690, \"group\": [411.0, 288.0, 99.0, 29.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96494_BALBc-1_X01_Y02_936_390\", \"ini\": 994, \"clust\": 2447, \"rank\": 1750, \"rankvar\": 964, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1832, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 345, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2484, \"group\": [2448.0, 1302.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96556_BALBc-1_X01_Y02_937_334\", \"ini\": 993, \"clust\": 1042, \"rank\": 435, \"rankvar\": 155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1833, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 346, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2485, \"group\": [1043.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96785_BALBc-1_X01_Y02_94_443\", \"ini\": 992, \"clust\": 186, \"rank\": 1290, \"rankvar\": 1673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1834, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2460, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1118, \"group\": [187.0, 123.0, 40.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96861_BALBc-1_X01_Y02_940_441\", \"ini\": 991, \"clust\": 2469, \"rank\": 1657, \"rankvar\": 261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1835, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 347, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2406, \"group\": [2470.0, 1318.0, 390.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97094_BALBc-1_X01_Y02_943_554\", \"ini\": 990, \"clust\": 2181, \"rank\": 1282, \"rankvar\": 836, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1836, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 348, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2183, \"group\": [2181.0, 1184.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97328_BALBc-1_X01_Y02_946_392\", \"ini\": 989, \"clust\": 2151, \"rank\": 806, \"rankvar\": 572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1837, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 349, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2530, \"group\": [2149.0, 1165.0, 343.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97429_BALBc-1_X01_Y02_947_898\", \"ini\": 988, \"clust\": 1010, \"rank\": 283, \"rankvar\": 1098, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1838, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1329, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2691, \"group\": [1011.0, 514.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97487_BALBc-1_X01_Y02_948_863\", \"ini\": 987, \"clust\": 1778, \"rank\": 1897, \"rankvar\": 427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1839, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1658, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2771, \"group\": [1781.0, 1011.0, 306.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97559_BALBc-1_X01_Y02_949_682\", \"ini\": 986, \"clust\": 446, \"rank\": 726, \"rankvar\": 788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1840, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 350, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2692, \"group\": [450.0, 314.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97703_BALBc-1_X01_Y02_950_608\", \"ini\": 985, \"clust\": 842, \"rank\": 160, \"rankvar\": 72, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1841, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2146, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2648, \"group\": [845.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97845_BALBc-1_X01_Y02_952_483\", \"ini\": 984, \"clust\": 1152, \"rank\": 2087, \"rankvar\": 1148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1842, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 351, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2531, \"group\": [1153.0, 553.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97851_BALBc-1_X01_Y02_952_581\", \"ini\": 983, \"clust\": 1825, \"rank\": 2742, \"rankvar\": 2718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1843, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 352, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2532, \"group\": [1825.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97911_BALBc-1_X01_Y02_953_421\", \"ini\": 982, \"clust\": 951, \"rank\": 672, \"rankvar\": 716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1844, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 353, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2649, \"group\": [950.0, 483.0, 138.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98041_BALBc-1_X01_Y02_955_11\", \"ini\": 981, \"clust\": 1762, \"rank\": 2021, \"rankvar\": 2119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1845, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1330, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1265, \"group\": [1763.0, 998.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98050_BALBc-1_X01_Y02_955_156\", \"ini\": 980, \"clust\": 63, \"rank\": 1413, \"rankvar\": 336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1846, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2606, \"cat-2\": \"Density: 27\", \"cat_2_index\": 964, \"group\": [70.0, 52.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98324_BALBc-1_X01_Y02_958_818\", \"ini\": 979, \"clust\": 1081, \"rank\": 255, \"rankvar\": 330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1847, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1331, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2589, \"group\": [1081.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98534_BALBc-1_X01_Y02_960_63\", \"ini\": 978, \"clust\": 775, \"rank\": 141, \"rankvar\": 510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1848, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2607, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1412, \"group\": [774.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98596_BALBc-1_X01_Y02_961_438\", \"ini\": 977, \"clust\": 2360, \"rank\": 1690, \"rankvar\": 319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1849, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2608, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2693, \"group\": [2359.0, 1259.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98752_BALBc-1_X01_Y02_963_631\", \"ini\": 976, \"clust\": 2123, \"rank\": 2278, \"rankvar\": 2379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1850, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2147, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2486, \"group\": [2130.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98837_BALBc-1_X01_Y02_964_510\", \"ini\": 975, \"clust\": 2400, \"rank\": 2744, \"rankvar\": 2083, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1851, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 354, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2407, \"group\": [2398.0, 1270.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98921_BALBc-1_X01_Y02_965_673\", \"ini\": 974, \"clust\": 2283, \"rank\": 1965, \"rankvar\": 1668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1852, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 355, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2694, \"group\": [2285.0, 1244.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98956_BALBc-1_X01_Y02_966_344\", \"ini\": 973, \"clust\": 2438, \"rank\": 1126, \"rankvar\": 578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1853, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 356, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2487, \"group\": [2439.0, 1298.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99211_BALBc-1_X01_Y02_969_41\", \"ini\": 972, \"clust\": 1164, \"rank\": 1000, \"rankvar\": 1440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1854, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1332, \"cat-2\": \"Density: 26\", \"cat_2_index\": 813, \"group\": [1163.0, 559.0, 155.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99244_BALBc-1_X01_Y02_969_891\", \"ini\": 971, \"clust\": 1781, \"rank\": 2515, \"rankvar\": 2103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1855, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1333, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2488, \"group\": [1784.0, 1013.0, 307.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99284_BALBc-1_X01_Y02_97_366\", \"ini\": 970, \"clust\": 1024, \"rank\": 388, \"rankvar\": 23, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1856, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1334, \"cat-2\": \"Density: 24\", \"cat_2_index\": 535, \"group\": [1024.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99306_BALBc-1_X01_Y02_97_619\", \"ini\": 969, \"clust\": 2470, \"rank\": 1594, \"rankvar\": 1950, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1857, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1335, \"cat-2\": \"Density: 24\", \"cat_2_index\": 536, \"group\": [2471.0, 1319.0, 391.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99355_BALBc-1_X01_Y02_970_403\", \"ini\": 968, \"clust\": 1124, \"rank\": 1256, \"rankvar\": 169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1858, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 357, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2695, \"group\": [1127.0, 529.0, 143.0, 35.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99386_BALBc-1_X01_Y02_970_788\", \"ini\": 967, \"clust\": 1831, \"rank\": 2311, \"rankvar\": 2185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1859, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1336, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2533, \"group\": [1830.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99599_BALBc-1_X01_Y02_973_494\", \"ini\": 966, \"clust\": 869, \"rank\": 43, \"rankvar\": 247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1860, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 358, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2489, \"group\": [870.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99666_BALBc-1_X01_Y02_974_301\", \"ini\": 965, \"clust\": 2661, \"rank\": 2183, \"rankvar\": 1173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1861, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2148, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1995, \"group\": [2666.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99919_BALBc-1_X01_Y02_977_839\", \"ini\": 964, \"clust\": 1836, \"rank\": 2781, \"rankvar\": 2624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1862, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2814, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2338, \"group\": [1835.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99966_BALBc-1_X01_Y02_978_469\", \"ini\": 963, \"clust\": 1072, \"rank\": 405, \"rankvar\": 834, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1863, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2609, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2792, \"group\": [1071.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99984_BALBc-1_X01_Y02_978_659\", \"ini\": 962, \"clust\": 1909, \"rank\": 2189, \"rankvar\": 1054, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1864, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2149, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2490, \"group\": [1908.0, 1094.0, 334.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99988_BALBc-1_X01_Y02_978_700\", \"ini\": 961, \"clust\": 439, \"rank\": 234, \"rankvar\": 2370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1865, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 359, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2731, \"group\": [440.0, 309.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100113_BALBc-1_X01_Y02_98_33\", \"ini\": 960, \"clust\": 1625, \"rank\": 2053, \"rankvar\": 2512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1866, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1337, \"cat-2\": \"Density: 20\", \"cat_2_index\": 167, \"group\": [1626.0, 893.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100128_BALBc-1_X01_Y02_98_529\", \"ini\": 959, \"clust\": 2426, \"rank\": 985, \"rankvar\": 95, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1867, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2322, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1667, \"group\": [2427.0, 1293.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100158_BALBc-1_X01_Y02_98_936\", \"ini\": 958, \"clust\": 1894, \"rank\": 2475, \"rankvar\": 2620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1868, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1751, \"cat-2\": \"Density: 26\", \"cat_2_index\": 814, \"group\": [1894.0, 1084.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100196_BALBc-1_X01_Y02_980_535\", \"ini\": 957, \"clust\": 640, \"rank\": 628, \"rankvar\": 1820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1869, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 360, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2491, \"group\": [646.0, 434.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100343_BALBc-1_X01_Y02_982_719\", \"ini\": 956, \"clust\": 2253, \"rank\": 1527, \"rankvar\": 1248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1870, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1338, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2534, \"group\": [2254.0, 1231.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100409_BALBc-1_X01_Y02_983_525\", \"ini\": 955, \"clust\": 2443, \"rank\": 714, \"rankvar\": 1679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1871, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 361, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2535, \"group\": [2443.0, 1299.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100453_BALBc-1_X01_Y02_984_217\", \"ini\": 954, \"clust\": 2595, \"rank\": 1759, \"rankvar\": 1639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1872, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2610, \"cat-2\": \"Density: 25\", \"cat_2_index\": 676, \"group\": [2597.0, 1404.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100476_BALBc-1_X01_Y02_984_546\", \"ini\": 953, \"clust\": 2401, \"rank\": 2789, \"rankvar\": 2227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1873, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 362, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2536, \"group\": [2399.0, 1270.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100533_BALBc-1_X01_Y02_985_319\", \"ini\": 952, \"clust\": 1717, \"rank\": 2049, \"rankvar\": 1829, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1874, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 363, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1777, \"group\": [1718.0, 968.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100537_BALBc-1_X01_Y02_985_370\", \"ini\": 951, \"clust\": 529, \"rank\": 790, \"rankvar\": 1014, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1875, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 364, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2537, \"group\": [529.0, 361.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100546_BALBc-1_X01_Y02_985_427\", \"ini\": 950, \"clust\": 1727, \"rank\": 2182, \"rankvar\": 346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1876, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2611, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2732, \"group\": [1726.0, 972.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100828_BALBc-1_X01_Y02_989_180\", \"ini\": 949, \"clust\": 1067, \"rank\": 407, \"rankvar\": 589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1877, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2612, \"cat-2\": \"Density: 26\", \"cat_2_index\": 815, \"group\": [1066.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101159_BALBc-1_X01_Y02_992_512\", \"ini\": 948, \"clust\": 641, \"rank\": 583, \"rankvar\": 288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1878, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 365, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2650, \"group\": [643.0, 431.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101202_BALBc-1_X01_Y02_992_939\", \"ini\": 947, \"clust\": 1198, \"rank\": 589, \"rankvar\": 1237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1879, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1339, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1668, \"group\": [1198.0, 591.0, 167.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101248_BALBc-1_X01_Y02_993_593\", \"ini\": 946, \"clust\": 730, \"rank\": 307, \"rankvar\": 283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1880, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2150, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2590, \"group\": [732.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101494_BALBc-1_X01_Y02_996_395\", \"ini\": 945, \"clust\": 33, \"rank\": 923, \"rankvar\": 415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1881, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2613, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2772, \"group\": [33.0, 31.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101598_BALBc-1_X01_Y02_997_656\", \"ini\": 944, \"clust\": 1810, \"rank\": 2331, \"rankvar\": 1927, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1882, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2151, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2591, \"group\": [1813.0, 1025.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101724_BALBc-1_X01_Y02_999_337\", \"ini\": 943, \"clust\": 1089, \"rank\": 445, \"rankvar\": 8, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1883, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 366, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2269, \"group\": [1092.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-742_BALBc-1_X02_Y02_100_496\", \"ini\": 942, \"clust\": 1878, \"rank\": 961, \"rankvar\": 1878, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1884, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1340, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1879, \"group\": [1877.0, 1067.0, 324.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-763_BALBc-1_X02_Y02_100_736\", \"ini\": 941, \"clust\": 2539, \"rank\": 1670, \"rankvar\": 1914, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1885, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1341, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1880, \"group\": [2542.0, 1367.0, 406.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-824_BALBc-1_X02_Y02_1000_584\", \"ini\": 940, \"clust\": 506, \"rank\": 679, \"rankvar\": 865, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1886, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1581, \"cat-2\": \"Density: 26\", \"cat_2_index\": 816, \"group\": [507.0, 347.0, 117.0, 33.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1111_BALBc-1_X02_Y02_1004_421\", \"ini\": 939, \"clust\": 51, \"rank\": 1016, \"rankvar\": 303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1887, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 921, \"cat-2\": \"Density: 23\", \"cat_2_index\": 411, \"group\": [54.0, 43.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1386_BALBc-1_X02_Y02_1007_914\", \"ini\": 938, \"clust\": 992, \"rank\": 939, \"rankvar\": 1407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1888, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2152, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1266, \"group\": [993.0, 509.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1461_BALBc-1_X02_Y02_1008_949\", \"ini\": 937, \"clust\": 2237, \"rank\": 1360, \"rankvar\": 31, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1889, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2153, \"cat-2\": \"Density: 22\", \"cat_2_index\": 298, \"group\": [2238.0, 1217.0, 364.0, 100.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1779_BALBc-1_X02_Y02_1011_766\", \"ini\": 936, \"clust\": 2244, \"rank\": 1738, \"rankvar\": 1306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1890, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2614, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1669, \"group\": [2246.0, 1223.0, 367.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1887_BALBc-1_X02_Y02_1013_366\", \"ini\": 935, \"clust\": 600, \"rank\": 529, \"rankvar\": 142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1891, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 367, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1267, \"group\": [600.0, 411.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2061_BALBc-1_X02_Y02_1015_519\", \"ini\": 934, \"clust\": 2793, \"rank\": 1634, \"rankvar\": 2139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1892, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2615, \"cat-2\": \"Density: 23\", \"cat_2_index\": 412, \"group\": [2792.0, 1514.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2081_BALBc-1_X02_Y02_1015_789\", \"ini\": 933, \"clust\": 579, \"rank\": 854, \"rankvar\": 1249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1893, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1119, \"group\": [579.0, 396.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2117_BALBc-1_X02_Y02_1016_330\", \"ini\": 932, \"clust\": 85, \"rank\": 1119, \"rankvar\": 274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1894, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1978, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1120, \"group\": [86.0, 63.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2209_BALBc-1_X02_Y02_1017_624\", \"ini\": 931, \"clust\": 2720, \"rank\": 1899, \"rankvar\": 1364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1895, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2617, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1413, \"group\": [2719.0, 1460.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2250_BALBc-1_X02_Y02_1017_995\", \"ini\": 930, \"clust\": 2066, \"rank\": 2809, \"rankvar\": 2295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1896, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2154, \"cat-2\": \"Density: 16\", \"cat_2_index\": 61, \"group\": [2064.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2321_BALBc-1_X02_Y02_1018_895\", \"ini\": 929, \"clust\": 2605, \"rank\": 1476, \"rankvar\": 2011, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1897, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2155, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1121, \"group\": [2604.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2469_BALBc-1_X02_Y02_1020_120\", \"ini\": 928, \"clust\": 268, \"rank\": 1293, \"rankvar\": 343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1898, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1342, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1537, \"group\": [271.0, 193.0, 69.0, 21.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2761_BALBc-1_X02_Y02_1023_729\", \"ini\": 927, \"clust\": 827, \"rank\": 218, \"rankvar\": 395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1899, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1343, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1996, \"group\": [829.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2871_BALBc-1_X02_Y02_1025_203\", \"ini\": 926, \"clust\": 381, \"rank\": 1221, \"rankvar\": 1715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1900, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 848, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1268, \"group\": [381.0, 265.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2901_BALBc-1_X02_Y02_1025_465\", \"ini\": 925, \"clust\": 2696, \"rank\": 2280, \"rankvar\": 575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1901, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2618, \"cat-2\": \"Density: 24\", \"cat_2_index\": 537, \"group\": [2697.0, 1452.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3027_BALBc-1_X02_Y02_1027_146\", \"ini\": 924, \"clust\": 1407, \"rank\": 1484, \"rankvar\": 1051, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1902, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1344, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1670, \"group\": [1410.0, 759.0, 224.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3163_BALBc-1_X02_Y02_1028_557\", \"ini\": 923, \"clust\": 2611, \"rank\": 2371, \"rankvar\": 2278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1903, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1582, \"cat-2\": \"Density: 25\", \"cat_2_index\": 677, \"group\": [2608.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3345_BALBc-1_X02_Y02_103_855\", \"ini\": 922, \"clust\": 1874, \"rank\": 1543, \"rankvar\": 1061, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1904, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1345, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1269, \"group\": [1880.0, 1070.0, 325.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3406_BALBc-1_X02_Y02_1030_786\", \"ini\": 921, \"clust\": 1768, \"rank\": 2614, \"rankvar\": 2820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1905, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2619, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1414, \"group\": [1767.0, 1001.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3462_BALBc-1_X02_Y02_1031_450\", \"ini\": 920, \"clust\": 764, \"rank\": 33, \"rankvar\": 603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1906, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 368, \"cat-2\": \"Density: 24\", \"cat_2_index\": 538, \"group\": [765.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3716_BALBc-1_X02_Y02_1034_825\", \"ini\": 919, \"clust\": 2255, \"rank\": 1223, \"rankvar\": 1255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1907, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2620, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1415, \"group\": [2255.0, 1232.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3723_BALBc-1_X02_Y02_1034_946\", \"ini\": 918, \"clust\": 919, \"rank\": 63, \"rankvar\": 237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1908, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 369, \"cat-2\": \"Density: 21\", \"cat_2_index\": 219, \"group\": [919.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3800_BALBc-1_X02_Y02_1035_754\", \"ini\": 917, \"clust\": 2214, \"rank\": 1524, \"rankvar\": 398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1909, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2621, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1538, \"group\": [2215.0, 1196.0, 354.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3958_BALBc-1_X02_Y02_1037_680\", \"ini\": 916, \"clust\": 908, \"rank\": 94, \"rankvar\": 101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1910, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1346, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1881, \"group\": [907.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3996_BALBc-1_X02_Y02_1038_233\", \"ini\": 915, \"clust\": 123, \"rank\": 566, \"rankvar\": 993, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1911, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1347, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1416, \"group\": [123.0, 78.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4123_BALBc-1_X02_Y02_1039_704\", \"ini\": 914, \"clust\": 2646, \"rank\": 2375, \"rankvar\": 1648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1912, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1348, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1997, \"group\": [2648.0, 1437.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4307_BALBc-1_X02_Y02_1041_402\", \"ini\": 913, \"clust\": 170, \"rank\": 406, \"rankvar\": 129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1913, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 922, \"cat-2\": \"Density: 25\", \"cat_2_index\": 678, \"group\": [169.0, 110.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4349_BALBc-1_X02_Y02_1041_855\", \"ini\": 912, \"clust\": 2600, \"rank\": 2036, \"rankvar\": 1855, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1914, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2787, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1270, \"group\": [2599.0, 1406.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4398_BALBc-1_X02_Y02_1042_440\", \"ini\": 911, \"clust\": 2724, \"rank\": 1836, \"rankvar\": 1490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1915, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 923, \"cat-2\": \"Density: 27\", \"cat_2_index\": 965, \"group\": [2727.0, 1466.0, 430.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4443_BALBc-1_X02_Y02_1042_919\", \"ini\": 910, \"clust\": 1959, \"rank\": 2699, \"rankvar\": 2044, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1916, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 370, \"cat-2\": \"Density: 23\", \"cat_2_index\": 413, \"group\": [1978.0, 1119.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4730_BALBc-1_X02_Y02_1046_644\", \"ini\": 909, \"clust\": 741, \"rank\": 443, \"rankvar\": 803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1917, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2622, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1671, \"group\": [738.0, 467.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5035_BALBc-1_X02_Y02_105_291\", \"ini\": 908, \"clust\": 141, \"rank\": 1935, \"rankvar\": 1711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1918, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2623, \"cat-2\": \"Density: 21\", \"cat_2_index\": 220, \"group\": [141.0, 87.0, 27.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5098_BALBc-1_X02_Y02_1050_351\", \"ini\": 907, \"clust\": 863, \"rank\": 16, \"rankvar\": 843, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1919, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 371, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1271, \"group\": [880.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5288_BALBc-1_X02_Y02_1052_892\", \"ini\": 906, \"clust\": 1169, \"rank\": 860, \"rankvar\": 1043, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1920, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 372, \"cat-2\": \"Density: 25\", \"cat_2_index\": 679, \"group\": [1172.0, 567.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5378_BALBc-1_X02_Y02_1054_302\", \"ini\": 905, \"clust\": 321, \"rank\": 1910, \"rankvar\": 2169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1921, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1979, \"cat-2\": \"Density: 26\", \"cat_2_index\": 817, \"group\": [319.0, 222.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5521_BALBc-1_X02_Y02_1055_965\", \"ini\": 904, \"clust\": 2026, \"rank\": 2150, \"rankvar\": 505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1922, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2624, \"cat-2\": \"Density: 20\", \"cat_2_index\": 168, \"group\": [2025.0, 1140.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5598_BALBc-1_X02_Y02_1056_814\", \"ini\": 903, \"clust\": 582, \"rank\": 334, \"rankvar\": 1979, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1923, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 373, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1417, \"group\": [581.0, 398.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5789_BALBc-1_X02_Y02_1059_368\", \"ini\": 902, \"clust\": 1712, \"rank\": 2421, \"rankvar\": 2252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1924, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1659, \"cat-2\": \"Density: 27\", \"cat_2_index\": 966, \"group\": [1713.0, 965.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5813_BALBc-1_X02_Y02_1059_633\", \"ini\": 901, \"clust\": 1943, \"rank\": 1835, \"rankvar\": 905, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1925, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 374, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1998, \"group\": [1946.0, 1113.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5959_BALBc-1_X02_Y02_1060_547\", \"ini\": 900, \"clust\": 1736, \"rank\": 1784, \"rankvar\": 1526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1926, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2625, \"cat-2\": \"Density: 24\", \"cat_2_index\": 539, \"group\": [1739.0, 982.0, 294.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5972_BALBc-1_X02_Y02_1060_686\", \"ini\": 899, \"clust\": 892, \"rank\": 20, \"rankvar\": 211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1927, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 375, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1882, \"group\": [889.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6003_BALBc-1_X02_Y02_1061_164\", \"ini\": 898, \"clust\": 365, \"rank\": 1066, \"rankvar\": 2232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1928, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1349, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1672, \"group\": [365.0, 253.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6056_BALBc-1_X02_Y02_1061_611\", \"ini\": 897, \"clust\": 418, \"rank\": 904, \"rankvar\": 436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1929, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1583, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1673, \"group\": [418.0, 294.0, 102.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6125_BALBc-1_X02_Y02_1062_291\", \"ini\": 896, \"clust\": 104, \"rank\": 777, \"rankvar\": 680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1930, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2788, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1272, \"group\": [104.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6156_BALBc-1_X02_Y02_1062_576\", \"ini\": 895, \"clust\": 1771, \"rank\": 1885, \"rankvar\": 1502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1931, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1584, \"cat-2\": \"Density: 27\", \"cat_2_index\": 967, \"group\": [1775.0, 1007.0, 303.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6277_BALBc-1_X02_Y02_1064_324\", \"ini\": 894, \"clust\": 848, \"rank\": 54, \"rankvar\": 408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1932, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 376, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1122, \"group\": [849.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6307_BALBc-1_X02_Y02_1064_651\", \"ini\": 893, \"clust\": 2348, \"rank\": 2239, \"rankvar\": 1083, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1933, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 377, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1883, \"group\": [2353.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6501_BALBc-1_X02_Y02_1067_391\", \"ini\": 892, \"clust\": 722, \"rank\": 515, \"rankvar\": 423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1934, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1660, \"cat-2\": \"Density: 27\", \"cat_2_index\": 968, \"group\": [725.0, 464.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6716_BALBc-1_X02_Y02_1069_716\", \"ini\": 891, \"clust\": 2247, \"rank\": 1761, \"rankvar\": 291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1935, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2626, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2095, \"group\": [2248.0, 1225.0, 369.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6732_BALBc-1_X02_Y02_1069_881\", \"ini\": 890, \"clust\": 2136, \"rank\": 2414, \"rankvar\": 1564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1936, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2789, \"cat-2\": \"Density: 25\", \"cat_2_index\": 680, \"group\": [2137.0, 1155.0, 341.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6777_BALBc-1_X02_Y02_107_560\", \"ini\": 889, \"clust\": 1740, \"rank\": 2254, \"rankvar\": 2515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1937, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1569, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2096, \"group\": [1741.0, 984.0, 295.0, 84.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6883_BALBc-1_X02_Y02_1070_927\", \"ini\": 888, \"clust\": 1153, \"rank\": 1800, \"rankvar\": 2024, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1938, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2627, \"cat-2\": \"Density: 22\", \"cat_2_index\": 299, \"group\": [1158.0, 556.0, 153.0, 39.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6955_BALBc-1_X02_Y02_1071_815\", \"ini\": 887, \"clust\": 2145, \"rank\": 1611, \"rankvar\": 1369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1939, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2790, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1539, \"group\": [2212.0, 1193.0, 351.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7044_BALBc-1_X02_Y02_1072_750\", \"ini\": 886, \"clust\": 2231, \"rank\": 1622, \"rankvar\": 366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1940, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2628, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1884, \"group\": [2232.0, 1211.0, 360.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7048_BALBc-1_X02_Y02_1072_786\", \"ini\": 885, \"clust\": 590, \"rank\": 505, \"rankvar\": 902, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1941, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2629, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1674, \"group\": [589.0, 401.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7330_BALBc-1_X02_Y02_1076_192\", \"ini\": 884, \"clust\": 37, \"rank\": 831, \"rankvar\": 226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1942, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1350, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1418, \"group\": [40.0, 34.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7866_BALBc-1_X02_Y02_1082_334\", \"ini\": 883, \"clust\": 32, \"rank\": 1011, \"rankvar\": 520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1943, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1661, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1273, \"group\": [37.0, 32.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8112_BALBc-1_X02_Y02_1085_691\", \"ini\": 882, \"clust\": 2217, \"rank\": 1385, \"rankvar\": 157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1944, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 378, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1885, \"group\": [2218.0, 1199.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8233_BALBc-1_X02_Y02_1087_411\", \"ini\": 881, \"clust\": 162, \"rank\": 1171, \"rankvar\": 181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1945, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1662, \"cat-2\": \"Density: 27\", \"cat_2_index\": 969, \"group\": [163.0, 104.0, 34.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8249_BALBc-1_X02_Y02_1087_626\", \"ini\": 880, \"clust\": 1091, \"rank\": 210, \"rankvar\": 258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1946, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 379, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1886, \"group\": [1091.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8448_BALBc-1_X02_Y02_109_151\", \"ini\": 879, \"clust\": 99, \"rank\": 580, \"rankvar\": 1052, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1947, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2630, \"cat-2\": \"Density: 23\", \"cat_2_index\": 414, \"group\": [102.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8463_BALBc-1_X02_Y02_109_451\", \"ini\": 878, \"clust\": 2541, \"rank\": 1222, \"rankvar\": 1214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1948, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2631, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1675, \"group\": [2541.0, 1366.0, 405.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8476_BALBc-1_X02_Y02_109_610\", \"ini\": 877, \"clust\": 201, \"rank\": 1359, \"rankvar\": 1883, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1949, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1351, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2097, \"group\": [211.0, 143.0, 49.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8551_BALBc-1_X02_Y02_1090_469\", \"ini\": 876, \"clust\": 373, \"rank\": 1023, \"rankvar\": 592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1950, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2632, \"cat-2\": \"Density: 24\", \"cat_2_index\": 540, \"group\": [374.0, 260.0, 89.0, 25.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8576_BALBc-1_X02_Y02_1090_711\", \"ini\": 875, \"clust\": 914, \"rank\": 248, \"rankvar\": 10, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1951, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2156, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2098, \"group\": [920.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8913_BALBc-1_X02_Y02_1095_144\", \"ini\": 874, \"clust\": 1250, \"rank\": 2357, \"rankvar\": 2601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1952, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1663, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1274, \"group\": [1254.0, 635.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8990_BALBc-1_X02_Y02_1096_180\", \"ini\": 873, \"clust\": 854, \"rank\": 5, \"rankvar\": 710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1953, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 380, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1540, \"group\": [855.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9078_BALBc-1_X02_Y02_1097_291\", \"ini\": 872, \"clust\": 30, \"rank\": 1340, \"rankvar\": 1401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1954, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2791, \"cat-2\": \"Density: 27\", \"cat_2_index\": 970, \"group\": [31.0, 29.0, 17.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9244_BALBc-1_X02_Y02_1099_550\", \"ini\": 871, \"clust\": 2522, \"rank\": 1278, \"rankvar\": 1386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1955, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 627, \"cat-2\": \"Density: 27\", \"cat_2_index\": 971, \"group\": [2522.0, 1353.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9402_BALBc-1_X02_Y02_110_392\", \"ini\": 870, \"clust\": 2607, \"rank\": 2440, \"rankvar\": 2611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1956, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2633, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1676, \"group\": [2611.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9494_BALBc-1_X02_Y02_1100_508\", \"ini\": 869, \"clust\": 2728, \"rank\": 2391, \"rankvar\": 2777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1957, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2634, \"cat-2\": \"Density: 26\", \"cat_2_index\": 818, \"group\": [2728.0, 1467.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9511_BALBc-1_X02_Y02_1100_671\", \"ini\": 868, \"clust\": 587, \"rank\": 797, \"rankvar\": 501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1958, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 381, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2099, \"group\": [584.0, 399.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9687_BALBc-1_X02_Y02_1103_195\", \"ini\": 867, \"clust\": 2292, \"rank\": 1848, \"rankvar\": 449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1959, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 382, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1677, \"group\": [2291.0, 1248.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9726_BALBc-1_X02_Y02_1103_600\", \"ini\": 866, \"clust\": 2141, \"rank\": 2460, \"rankvar\": 474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1960, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 383, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1678, \"group\": [2140.0, 1157.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9731_BALBc-1_X02_Y02_1103_641\", \"ini\": 865, \"clust\": 274, \"rank\": 1659, \"rankvar\": 1150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1961, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 384, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1999, \"group\": [275.0, 197.0, 71.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10109_BALBc-1_X02_Y02_1108_209\", \"ini\": 864, \"clust\": 917, \"rank\": 56, \"rankvar\": 77, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1962, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1352, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1419, \"group\": [916.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10196_BALBc-1_X02_Y02_1109_33\", \"ini\": 863, \"clust\": 1611, \"rank\": 1424, \"rankvar\": 1643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1963, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1980, \"cat-2\": \"Density: 22\", \"cat_2_index\": 300, \"group\": [1610.0, 888.0, 258.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10201_BALBc-1_X02_Y02_1109_425\", \"ini\": 862, \"clust\": 89, \"rank\": 697, \"rankvar\": 1505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1964, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 924, \"cat-2\": \"Density: 26\", \"cat_2_index\": 819, \"group\": [90.0, 64.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10450_BALBc-1_X02_Y02_1111_750\", \"ini\": 861, \"clust\": 2187, \"rank\": 1456, \"rankvar\": 1390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1965, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2157, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1679, \"group\": [2185.0, 1186.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10495_BALBc-1_X02_Y02_1112_333\", \"ini\": 860, \"clust\": 831, \"rank\": 237, \"rankvar\": 65, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1966, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1664, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1420, \"group\": [831.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10548_BALBc-1_X02_Y02_1112_995\", \"ini\": 859, \"clust\": 253, \"rank\": 1283, \"rankvar\": 833, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1967, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2635, \"cat-2\": \"Density: 17\", \"cat_2_index\": 81, \"group\": [268.0, 190.0, 67.0, 20.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10672_BALBc-1_X02_Y02_1114_725\", \"ini\": 858, \"clust\": 984, \"rank\": 800, \"rankvar\": 233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1968, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2158, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1887, \"group\": [987.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10918_BALBc-1_X02_Y02_1117_812\", \"ini\": 857, \"clust\": 522, \"rank\": 660, \"rankvar\": 1704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1969, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2792, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1680, \"group\": [521.0, 357.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10970_BALBc-1_X02_Y02_1118_562\", \"ini\": 856, \"clust\": 2625, \"rank\": 2233, \"rankvar\": 2079, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1970, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2636, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1541, \"group\": [2625.0, 1418.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11111_BALBc-1_X02_Y02_112_780\", \"ini\": 855, \"clust\": 1195, \"rank\": 1013, \"rankvar\": 1087, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1971, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1353, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1421, \"group\": [1196.0, 589.0, 166.0, 44.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11132_BALBc-1_X02_Y02_1120_160\", \"ini\": 854, \"clust\": 1078, \"rank\": 503, \"rankvar\": 82, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1972, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2323, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1275, \"group\": [1079.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11248_BALBc-1_X02_Y02_1121_389\", \"ini\": 853, \"clust\": 367, \"rank\": 1053, \"rankvar\": 765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1973, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1665, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1123, \"group\": [373.0, 259.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11332_BALBc-1_X02_Y02_1122_490\", \"ini\": 852, \"clust\": 1939, \"rank\": 1984, \"rankvar\": 1433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1974, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2793, \"cat-2\": \"Density: 24\", \"cat_2_index\": 541, \"group\": [1940.0, 1111.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11531_BALBc-1_X02_Y02_1125_113\", \"ini\": 851, \"clust\": 81, \"rank\": 870, \"rankvar\": 536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1975, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1981, \"cat-2\": \"Density: 26\", \"cat_2_index\": 820, \"group\": [81.0, 60.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11546_BALBc-1_X02_Y02_1125_315\", \"ini\": 850, \"clust\": 2745, \"rank\": 2005, \"rankvar\": 1512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1976, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2637, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1124, \"group\": [2746.0, 1481.0, 438.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11566_BALBc-1_X02_Y02_1125_577\", \"ini\": 849, \"clust\": 719, \"rank\": 262, \"rankvar\": 147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1977, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 385, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1888, \"group\": [718.0, 460.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11573_BALBc-1_X02_Y02_1125_626\", \"ini\": 848, \"clust\": 35, \"rank\": 659, \"rankvar\": 558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1978, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 386, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1778, \"group\": [35.0, 31.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11614_BALBc-1_X02_Y02_1126_250\", \"ini\": 847, \"clust\": 615, \"rank\": 825, \"rankvar\": 242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1979, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1354, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1542, \"group\": [614.0, 415.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11867_BALBc-1_X02_Y02_1129_599\", \"ini\": 846, \"clust\": 498, \"rank\": 1212, \"rankvar\": 183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1980, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 387, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1889, \"group\": [502.0, 342.0, 115.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11912_BALBc-1_X02_Y02_113_34\", \"ini\": 845, \"clust\": 1346, \"rank\": 1142, \"rankvar\": 2585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1981, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1355, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1543, \"group\": [1347.0, 709.0, 210.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12036_BALBc-1_X02_Y02_1130_842\", \"ini\": 844, \"clust\": 2421, \"rank\": 966, \"rankvar\": 160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1982, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2794, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1544, \"group\": [2421.0, 1288.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12076_BALBc-1_X02_Y02_1131_409\", \"ini\": 843, \"clust\": 356, \"rank\": 856, \"rankvar\": 1024, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1983, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 388, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1125, \"group\": [356.0, 249.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12101_BALBc-1_X02_Y02_1131_782\", \"ini\": 842, \"clust\": 2333, \"rank\": 2249, \"rankvar\": 2050, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1984, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2245, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1545, \"group\": [2330.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12136_BALBc-1_X02_Y02_1132_190\", \"ini\": 841, \"clust\": 517, \"rank\": 1090, \"rankvar\": 79, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1985, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1356, \"cat-2\": \"Density: 27\", \"cat_2_index\": 972, \"group\": [518.0, 355.0, 120.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12165_BALBc-1_X02_Y02_1132_447\", \"ini\": 840, \"clust\": 712, \"rank\": 235, \"rankvar\": 1030, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1986, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2795, \"cat-2\": \"Density: 22\", \"cat_2_index\": 301, \"group\": [710.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12320_BALBc-1_X02_Y02_1134_679\", \"ini\": 839, \"clust\": 2293, \"rank\": 1639, \"rankvar\": 686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1987, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2159, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2339, \"group\": [2292.0, 1249.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12365_BALBc-1_X02_Y02_1135_365\", \"ini\": 838, \"clust\": 169, \"rank\": 818, \"rankvar\": 81, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1988, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1666, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1126, \"group\": [171.0, 110.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12416_BALBc-1_X02_Y02_1135_962\", \"ini\": 837, \"clust\": 2013, \"rank\": 2089, \"rankvar\": 2087, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1989, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2638, \"cat-2\": \"Density: 21\", \"cat_2_index\": 221, \"group\": [2013.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12735_BALBc-1_X02_Y02_1139_866\", \"ini\": 836, \"clust\": 2248, \"rank\": 2056, \"rankvar\": 574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1990, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2796, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1890, \"group\": [2249.0, 1226.0, 369.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12751_BALBc-1_X02_Y02_114_194\", \"ini\": 835, \"clust\": 130, \"rank\": 551, \"rankvar\": 1100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1991, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2639, \"cat-2\": \"Density: 22\", \"cat_2_index\": 302, \"group\": [129.0, 81.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12784_BALBc-1_X02_Y02_114_729\", \"ini\": 834, \"clust\": 2565, \"rank\": 1996, \"rankvar\": 2457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1992, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1357, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2000, \"group\": [2566.0, 1386.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12833_BALBc-1_X02_Y02_1140_332\", \"ini\": 833, \"clust\": 138, \"rank\": 432, \"rankvar\": 185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1993, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2797, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1276, \"group\": [137.0, 84.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12954_BALBc-1_X02_Y02_1141_896\", \"ini\": 832, \"clust\": 2601, \"rank\": 2156, \"rankvar\": 2171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1994, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2640, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1681, \"group\": [2600.0, 1406.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12956_BALBc-1_X02_Y02_1141_931\", \"ini\": 831, \"clust\": 825, \"rank\": 92, \"rankvar\": 109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1995, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2641, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1422, \"group\": [826.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13018_BALBc-1_X02_Y02_1142_616\", \"ini\": 830, \"clust\": 593, \"rank\": 885, \"rankvar\": 1212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1996, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 389, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1779, \"group\": [591.0, 403.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13318_BALBc-1_X02_Y02_1146_668\", \"ini\": 829, \"clust\": 2159, \"rank\": 1082, \"rankvar\": 1687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1997, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2160, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2184, \"group\": [2169.0, 1175.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13570_BALBc-1_X02_Y02_1149_984\", \"ini\": 828, \"clust\": 2263, \"rank\": 1387, \"rankvar\": 331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1998, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 390, \"cat-2\": \"Density: 22\", \"cat_2_index\": 303, \"group\": [2261.0, 1235.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13572_BALBc-1_X02_Y02_115_109\", \"ini\": 827, \"clust\": 704, \"rank\": 107, \"rankvar\": 869, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1999, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 705, \"cat-2\": \"Density: 27\", \"cat_2_index\": 973, \"group\": [705.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13710_BALBc-1_X02_Y02_1150_801\", \"ini\": 826, \"clust\": 677, \"rank\": 233, \"rankvar\": 1471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2000, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2642, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1780, \"group\": [678.0, 448.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13772_BALBc-1_X02_Y02_1151_585\", \"ini\": 825, \"clust\": 2590, \"rank\": 1713, \"rankvar\": 1238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2001, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2643, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2001, \"group\": [2593.0, 1401.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13938_BALBc-1_X02_Y02_1153_645\", \"ini\": 824, \"clust\": 352, \"rank\": 1115, \"rankvar\": 1140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2002, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 391, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1891, \"group\": [353.0, 247.0, 87.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14156_BALBc-1_X02_Y02_1156_744\", \"ini\": 823, \"clust\": 1833, \"rank\": 2805, \"rankvar\": 2422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2003, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2644, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2340, \"group\": [1833.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14485_BALBc-1_X02_Y02_1160_173\", \"ini\": 822, \"clust\": 940, \"rank\": 111, \"rankvar\": 275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2004, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2324, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1127, \"group\": [944.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14492_BALBc-1_X02_Y02_1160_253\", \"ini\": 821, \"clust\": 1314, \"rank\": 1624, \"rankvar\": 656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2005, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1358, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1128, \"group\": [1316.0, 684.0, 202.0, 57.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14502_BALBc-1_X02_Y02_1160_402\", \"ini\": 820, \"clust\": 2740, \"rank\": 995, \"rankvar\": 632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2006, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2798, \"cat-2\": \"Density: 27\", \"cat_2_index\": 974, \"group\": [2741.0, 1476.0, 436.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14546_BALBc-1_X02_Y02_1160_824\", \"ini\": 819, \"clust\": 739, \"rank\": 616, \"rankvar\": 350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2007, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 392, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1781, \"group\": [739.0, 467.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14684_BALBc-1_X02_Y02_1162_447\", \"ini\": 818, \"clust\": 2516, \"rank\": 1732, \"rankvar\": 1646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2008, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2799, \"cat-2\": \"Density: 23\", \"cat_2_index\": 415, \"group\": [2516.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14743_BALBc-1_X02_Y02_1163_128\", \"ini\": 817, \"clust\": 699, \"rank\": 82, \"rankvar\": 1105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2009, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1982, \"cat-2\": \"Density: 26\", \"cat_2_index\": 821, \"group\": [697.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14867_BALBc-1_X02_Y02_1164_624\", \"ini\": 816, \"clust\": 1995, \"rank\": 2344, \"rankvar\": 2356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2010, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2645, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1782, \"group\": [1993.0, 1127.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14896_BALBc-1_X02_Y02_1164_922\", \"ini\": 815, \"clust\": 2164, \"rank\": 1641, \"rankvar\": 1191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2011, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 393, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1783, \"group\": [2161.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14971_BALBc-1_X02_Y02_1165_840\", \"ini\": 814, \"clust\": 1100, \"rank\": 182, \"rankvar\": 16, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2012, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 394, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1892, \"group\": [1101.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15063_BALBc-1_X02_Y02_1166_969\", \"ini\": 813, \"clust\": 2027, \"rank\": 2178, \"rankvar\": 1275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2013, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 395, \"cat-2\": \"Density: 24\", \"cat_2_index\": 542, \"group\": [2027.0, 1142.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15135_BALBc-1_X02_Y02_1167_999\", \"ini\": 812, \"clust\": 2113, \"rank\": 2787, \"rankvar\": 2533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2014, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2161, \"cat-2\": \"Density: 20\", \"cat_2_index\": 169, \"group\": [2112.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15303_BALBc-1_X02_Y02_117_410\", \"ini\": 811, \"clust\": 901, \"rank\": 41, \"rankvar\": 382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2015, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2646, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1682, \"group\": [902.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15305_BALBc-1_X02_Y02_117_463\", \"ini\": 810, \"clust\": 2143, \"rank\": 2782, \"rankvar\": 2688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2016, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 849, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1893, \"group\": [2143.0, 1160.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15393_BALBc-1_X02_Y02_1170_650\", \"ini\": 809, \"clust\": 2016, \"rank\": 2173, \"rankvar\": 2143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2017, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 396, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2002, \"group\": [2014.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15414_BALBc-1_X02_Y02_1170_876\", \"ini\": 808, \"clust\": 2335, \"rank\": 2168, \"rankvar\": 1178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2018, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 397, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1784, \"group\": [2334.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15423_BALBc-1_X02_Y02_1170_954\", \"ini\": 807, \"clust\": 798, \"rank\": 129, \"rankvar\": 729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2019, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 398, \"cat-2\": \"Density: 26\", \"cat_2_index\": 822, \"group\": [800.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15568_BALBc-1_X02_Y02_1172_980\", \"ini\": 806, \"clust\": 734, \"rank\": 226, \"rankvar\": 630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2020, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 399, \"cat-2\": \"Density: 22\", \"cat_2_index\": 304, \"group\": [734.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15595_BALBc-1_X02_Y02_1173_333\", \"ini\": 805, \"clust\": 139, \"rank\": 1621, \"rankvar\": 296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2021, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2800, \"cat-2\": \"Density: 26\", \"cat_2_index\": 823, \"group\": [142.0, 88.0, 28.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15880_BALBc-1_X02_Y02_1176_923\", \"ini\": 804, \"clust\": 2010, \"rank\": 1876, \"rankvar\": 1378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2022, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 400, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2003, \"group\": [2011.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15939_BALBc-1_X02_Y02_1177_805\", \"ini\": 803, \"clust\": 1942, \"rank\": 2058, \"rankvar\": 508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2023, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 401, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1894, \"group\": [1942.0, 1112.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15968_BALBc-1_X02_Y02_1178_208\", \"ini\": 802, \"clust\": 933, \"rank\": 257, \"rankvar\": 781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2024, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1359, \"cat-2\": \"Density: 26\", \"cat_2_index\": 824, \"group\": [933.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15986_BALBc-1_X02_Y02_1178_415\", \"ini\": 801, \"clust\": 90, \"rank\": 681, \"rankvar\": 335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2025, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2647, \"cat-2\": \"Density: 24\", \"cat_2_index\": 543, \"group\": [91.0, 64.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16048_BALBc-1_X02_Y02_1178_942\", \"ini\": 800, \"clust\": 1965, \"rank\": 2382, \"rankvar\": 1779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2026, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 402, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1683, \"group\": [1963.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16314_BALBc-1_X02_Y02_1181_752\", \"ini\": 799, \"clust\": 1971, \"rank\": 2498, \"rankvar\": 1823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2027, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2648, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2100, \"group\": [1965.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16545_BALBc-1_X02_Y02_1184_787\", \"ini\": 798, \"clust\": 859, \"rank\": 112, \"rankvar\": 172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2028, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2649, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1785, \"group\": [860.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16556_BALBc-1_X02_Y02_1184_889\", \"ini\": 797, \"clust\": 851, \"rank\": 75, \"rankvar\": 1025, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2029, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 403, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2101, \"group\": [852.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16843_BALBc-1_X02_Y02_1188_851\", \"ini\": 796, \"clust\": 2169, \"rank\": 1731, \"rankvar\": 1277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2030, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 404, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2102, \"group\": [2163.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16917_BALBc-1_X02_Y02_1189_710\", \"ini\": 795, \"clust\": 2017, \"rank\": 2105, \"rankvar\": 1416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2031, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2162, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1684, \"group\": [2015.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17166_BALBc-1_X02_Y02_1192_172\", \"ini\": 794, \"clust\": 709, \"rank\": 484, \"rankvar\": 1192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2032, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 850, \"cat-2\": \"Density: 27\", \"cat_2_index\": 975, \"group\": [712.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17200_BALBc-1_X02_Y02_1192_66\", \"ini\": 793, \"clust\": 1554, \"rank\": 1806, \"rankvar\": 453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2033, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 851, \"cat-2\": \"Density: 22\", \"cat_2_index\": 305, \"group\": [1558.0, 848.0, 247.0, 70.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17277_BALBc-1_X02_Y02_1193_669\", \"ini\": 792, \"clust\": 974, \"rank\": 932, \"rankvar\": 15, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2034, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2163, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2004, \"group\": [974.0, 499.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17324_BALBc-1_X02_Y02_1194_343\", \"ini\": 791, \"clust\": 938, \"rank\": 29, \"rankvar\": 1111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2035, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2801, \"cat-2\": \"Density: 24\", \"cat_2_index\": 544, \"group\": [938.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17418_BALBc-1_X02_Y02_1195_565\", \"ini\": 790, \"clust\": 2218, \"rank\": 1068, \"rankvar\": 866, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2036, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2650, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1277, \"group\": [2221.0, 1202.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17557_BALBc-1_X02_Y02_1197_533\", \"ini\": 789, \"clust\": 443, \"rank\": 109, \"rankvar\": 1625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2037, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2651, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1423, \"group\": [443.0, 310.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17661_BALBc-1_X02_Y02_1198_827\", \"ini\": 788, \"clust\": 1698, \"rank\": 1953, \"rankvar\": 2685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2038, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 405, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2103, \"group\": [1699.0, 956.0, 286.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17686_BALBc-1_X02_Y02_1199_215\", \"ini\": 787, \"clust\": 2822, \"rank\": 1911, \"rankvar\": 1922, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2039, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2248, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1278, \"group\": [2825.0, 1536.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17736_BALBc-1_X02_Y02_1199_815\", \"ini\": 786, \"clust\": 2098, \"rank\": 2650, \"rankvar\": 2522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2040, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 406, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2104, \"group\": [2095.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17809_BALBc-1_X02_Y02_12_793\", \"ini\": 785, \"clust\": 2715, \"rank\": 2218, \"rankvar\": 1810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2041, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1360, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1786, \"group\": [2716.0, 1458.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18091_BALBc-1_X02_Y02_1202_280\", \"ini\": 784, \"clust\": 1271, \"rank\": 1127, \"rankvar\": 1760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2042, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2249, \"cat-2\": \"Density: 24\", \"cat_2_index\": 545, \"group\": [1272.0, 651.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18146_BALBc-1_X02_Y02_1202_911\", \"ini\": 783, \"clust\": 2357, \"rank\": 2627, \"rankvar\": 1921, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2043, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 407, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2492, \"group\": [2352.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18155_BALBc-1_X02_Y02_1202_975\", \"ini\": 782, \"clust\": 473, \"rank\": 362, \"rankvar\": 604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2044, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 408, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1129, \"group\": [473.0, 330.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18172_BALBc-1_X02_Y02_1203_305\", \"ini\": 781, \"clust\": 171, \"rank\": 588, \"rankvar\": 463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2045, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2652, \"cat-2\": \"Density: 25\", \"cat_2_index\": 681, \"group\": [170.0, 110.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18233_BALBc-1_X02_Y02_1204_137\", \"ini\": 780, \"clust\": 1591, \"rank\": 1505, \"rankvar\": 1492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2046, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 706, \"cat-2\": \"Density: 23\", \"cat_2_index\": 416, \"group\": [1595.0, 878.0, 256.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18261_BALBc-1_X02_Y02_1204_367\", \"ini\": 779, \"clust\": 1117, \"rank\": 678, \"rankvar\": 495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2047, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2802, \"cat-2\": \"Density: 26\", \"cat_2_index\": 825, \"group\": [1120.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18290_BALBc-1_X02_Y02_1204_637\", \"ini\": 778, \"clust\": 2200, \"rank\": 1397, \"rankvar\": 1197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2048, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2164, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1895, \"group\": [2198.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18505_BALBc-1_X02_Y02_1207_236\", \"ini\": 777, \"clust\": 807, \"rank\": 69, \"rankvar\": 770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2049, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2250, \"cat-2\": \"Density: 25\", \"cat_2_index\": 682, \"group\": [811.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18616_BALBc-1_X02_Y02_1208_730\", \"ini\": 776, \"clust\": 2201, \"rank\": 1335, \"rankvar\": 499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2050, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 409, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2341, \"group\": [2199.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18834_BALBc-1_X02_Y02_1210_68\", \"ini\": 775, \"clust\": 1333, \"rank\": 1138, \"rankvar\": 681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2051, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 852, \"cat-2\": \"Density: 22\", \"cat_2_index\": 306, \"group\": [1334.0, 700.0, 209.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18835_BALBc-1_X02_Y02_1210_690\", \"ini\": 774, \"clust\": 1041, \"rank\": 469, \"rankvar\": 533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2052, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 410, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1685, \"group\": [1044.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18895_BALBc-1_X02_Y02_1211_550\", \"ini\": 773, \"clust\": 2493, \"rank\": 1610, \"rankvar\": 2162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2053, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1361, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1279, \"group\": [2494.0, 1341.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18963_BALBc-1_X02_Y02_1212_417\", \"ini\": 772, \"clust\": 113, \"rank\": 491, \"rankvar\": 679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2054, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2653, \"cat-2\": \"Density: 23\", \"cat_2_index\": 417, \"group\": [112.0, 69.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19058_BALBc-1_X02_Y02_1213_786\", \"ini\": 771, \"clust\": 844, \"rank\": 49, \"rankvar\": 337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2055, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 411, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2185, \"group\": [844.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19143_BALBc-1_X02_Y02_1214_853\", \"ini\": 770, \"clust\": 2168, \"rank\": 1513, \"rankvar\": 1120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2056, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 412, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2186, \"group\": [2165.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19158_BALBc-1_X02_Y02_1214_998\", \"ini\": 769, \"clust\": 2339, \"rank\": 2235, \"rankvar\": 1180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2057, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 413, \"cat-2\": \"Density: 22\", \"cat_2_index\": 307, \"group\": [2336.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19934_BALBc-1_X02_Y02_1224_37\", \"ini\": 768, \"clust\": 426, \"rank\": 933, \"rankvar\": 120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2058, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 853, \"cat-2\": \"Density: 23\", \"cat_2_index\": 418, \"group\": [430.0, 305.0, 105.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19942_BALBc-1_X02_Y02_1224_457\", \"ini\": 767, \"clust\": 698, \"rank\": 48, \"rankvar\": 929, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2059, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2654, \"cat-2\": \"Density: 24\", \"cat_2_index\": 546, \"group\": [699.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19965_BALBc-1_X02_Y02_1224_717\", \"ini\": 766, \"clust\": 2099, \"rank\": 2711, \"rankvar\": 2539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2060, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 414, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2105, \"group\": [2096.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20040_BALBc-1_X02_Y02_1225_677\", \"ini\": 765, \"clust\": 2117, \"rank\": 2243, \"rankvar\": 2037, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2061, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 415, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2187, \"group\": [2117.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20113_BALBc-1_X02_Y02_1226_605\", \"ini\": 764, \"clust\": 2427, \"rank\": 1255, \"rankvar\": 210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2062, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2165, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2005, \"group\": [2428.0, 1293.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20117_BALBc-1_X02_Y02_1226_636\", \"ini\": 763, \"clust\": 576, \"rank\": 791, \"rankvar\": 607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2063, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 416, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2342, \"group\": [577.0, 394.0, 131.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20128_BALBc-1_X02_Y02_1226_776\", \"ini\": 762, \"clust\": 2000, \"rank\": 1794, \"rankvar\": 1260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2064, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2166, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2270, \"group\": [2001.0, 1133.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20281_BALBc-1_X02_Y02_1228_895\", \"ini\": 761, \"clust\": 2513, \"rank\": 1376, \"rankvar\": 1541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2065, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 417, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2271, \"group\": [2514.0, 1351.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20297_BALBc-1_X02_Y02_1229_260\", \"ini\": 760, \"clust\": 796, \"rank\": 420, \"rankvar\": 384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2066, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 418, \"cat-2\": \"Density: 24\", \"cat_2_index\": 547, \"group\": [797.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20538_BALBc-1_X02_Y02_1231_364\", \"ini\": 759, \"clust\": 2741, \"rank\": 1391, \"rankvar\": 1899, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2067, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 925, \"cat-2\": \"Density: 23\", \"cat_2_index\": 419, \"group\": [2742.0, 1477.0, 436.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20631_BALBc-1_X02_Y02_1232_383\", \"ini\": 758, \"clust\": 1034, \"rank\": 496, \"rankvar\": 74, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2068, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 419, \"cat-2\": \"Density: 22\", \"cat_2_index\": 308, \"group\": [1035.0, 520.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20752_BALBc-1_X02_Y02_1233_882\", \"ini\": 757, \"clust\": 2232, \"rank\": 1550, \"rankvar\": 282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2069, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 420, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2343, \"group\": [2233.0, 1212.0, 361.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20757_BALBc-1_X02_Y02_1233_942\", \"ini\": 756, \"clust\": 133, \"rank\": 823, \"rankvar\": 414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2070, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 421, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2006, \"group\": [133.0, 83.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20801_BALBc-1_X02_Y02_1234_579\", \"ini\": 755, \"clust\": 934, \"rank\": 276, \"rankvar\": 400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2071, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1362, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1686, \"group\": [934.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20824_BALBc-1_X02_Y02_1234_805\", \"ini\": 754, \"clust\": 2296, \"rank\": 1823, \"rankvar\": 688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2072, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2167, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2408, \"group\": [2294.0, 1250.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20990_BALBc-1_X02_Y02_1236_981\", \"ini\": 753, \"clust\": 876, \"rank\": 9, \"rankvar\": 457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2073, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2655, \"cat-2\": \"Density: 27\", \"cat_2_index\": 976, \"group\": [873.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21052_BALBc-1_X02_Y02_1238_118\", \"ini\": 752, \"clust\": 700, \"rank\": 121, \"rankvar\": 285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2074, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 707, \"cat-2\": \"Density: 24\", \"cat_2_index\": 548, \"group\": [698.0, 456.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21101_BALBc-1_X02_Y02_1238_698\", \"ini\": 751, \"clust\": 990, \"rank\": 815, \"rankvar\": 725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2075, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 422, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2106, \"group\": [991.0, 508.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21177_BALBc-1_X02_Y02_1239_735\", \"ini\": 750, \"clust\": 744, \"rank\": 130, \"rankvar\": 1259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2076, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 423, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2188, \"group\": [743.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21417_BALBc-1_X02_Y02_1241_859\", \"ini\": 749, \"clust\": 905, \"rank\": 100, \"rankvar\": 13, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2077, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2168, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2189, \"group\": [903.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21484_BALBc-1_X02_Y02_1242_93\", \"ini\": 748, \"clust\": 2810, \"rank\": 1553, \"rankvar\": 1941, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2078, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 854, \"cat-2\": \"Density: 23\", \"cat_2_index\": 420, \"group\": [2809.0, 1526.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21581_BALBc-1_X02_Y02_1244_226\", \"ini\": 747, \"clust\": 163, \"rank\": 1514, \"rankvar\": 487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2079, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 855, \"cat-2\": \"Density: 27\", \"cat_2_index\": 977, \"group\": [164.0, 105.0, 34.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21628_BALBc-1_X02_Y02_1244_966\", \"ini\": 746, \"clust\": 2354, \"rank\": 2558, \"rankvar\": 1813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2080, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2656, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1424, \"group\": [2349.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21630_BALBc-1_X02_Y02_1244_997\", \"ini\": 745, \"clust\": 2312, \"rank\": 2026, \"rankvar\": 821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2081, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2657, \"cat-2\": \"Density: 22\", \"cat_2_index\": 309, \"group\": [2313.0, 1253.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21647_BALBc-1_X02_Y02_1245_199\", \"ini\": 744, \"clust\": 680, \"rank\": 599, \"rankvar\": 229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2082, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 708, \"cat-2\": \"Density: 27\", \"cat_2_index\": 978, \"group\": [680.0, 449.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21656_BALBc-1_X02_Y02_1245_280\", \"ini\": 743, \"clust\": 178, \"rank\": 662, \"rankvar\": 1057, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2083, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 926, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1280, \"group\": [181.0, 118.0, 38.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21832_BALBc-1_X02_Y02_1247_883\", \"ini\": 742, \"clust\": 134, \"rank\": 685, \"rankvar\": 1094, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2084, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 424, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2190, \"group\": [134.0, 83.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22423_BALBc-1_X02_Y02_1254_748\", \"ini\": 741, \"clust\": 1966, \"rank\": 2417, \"rankvar\": 1358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2085, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 425, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2344, \"group\": [1961.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22543_BALBc-1_X02_Y02_1256_600\", \"ini\": 740, \"clust\": 2494, \"rank\": 1751, \"rankvar\": 1424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2086, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 426, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2107, \"group\": [2495.0, 1341.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22609_BALBc-1_X02_Y02_1257_427\", \"ini\": 739, \"clust\": 350, \"rank\": 1325, \"rankvar\": 868, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2087, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1363, \"cat-2\": \"Density: 21\", \"cat_2_index\": 222, \"group\": [351.0, 246.0, 86.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22632_BALBc-1_X02_Y02_1257_646\", \"ini\": 738, \"clust\": 154, \"rank\": 1655, \"rankvar\": 1391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2088, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 427, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2108, \"group\": [154.0, 96.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22899_BALBc-1_X02_Y02_1260_506\", \"ini\": 737, \"clust\": 952, \"rank\": 739, \"rankvar\": 357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2089, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1364, \"cat-2\": \"Density: 25\", \"cat_2_index\": 683, \"group\": [953.0, 486.0, 139.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22914_BALBc-1_X02_Y02_1260_721\", \"ini\": 736, \"clust\": 1953, \"rank\": 2052, \"rankvar\": 2033, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2090, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 428, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2007, \"group\": [1955.0, 1115.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22990_BALBc-1_X02_Y02_1261_872\", \"ini\": 735, \"clust\": 1944, \"rank\": 1892, \"rankvar\": 609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2091, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 429, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1896, \"group\": [1944.0, 1113.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23225_BALBc-1_X02_Y02_1264_989\", \"ini\": 734, \"clust\": 2338, \"rank\": 2491, \"rankvar\": 1215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2092, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2169, \"cat-2\": \"Density: 20\", \"cat_2_index\": 170, \"group\": [2338.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23259_BALBc-1_X02_Y02_1265_403\", \"ini\": 733, \"clust\": 849, \"rank\": 207, \"rankvar\": 112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2093, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 430, \"cat-2\": \"Density: 19\", \"cat_2_index\": 123, \"group\": [850.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23400_BALBc-1_X02_Y02_1267_557\", \"ini\": 732, \"clust\": 6, \"rank\": 1308, \"rankvar\": 2407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2094, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1365, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1130, \"group\": [6.0, 6.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23411_BALBc-1_X02_Y02_1267_797\", \"ini\": 731, \"clust\": 431, \"rank\": 914, \"rankvar\": 1832, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2095, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2170, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1897, \"group\": [432.0, 306.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23420_BALBc-1_X02_Y02_1267_912\", \"ini\": 730, \"clust\": 2384, \"rank\": 2502, \"rankvar\": 1569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2096, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 431, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1425, \"group\": [2383.0, 1266.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23445_BALBc-1_X02_Y02_1268_264\", \"ini\": 729, \"clust\": 215, \"rank\": 1250, \"rankvar\": 409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2097, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 709, \"cat-2\": \"Density: 23\", \"cat_2_index\": 421, \"group\": [218.0, 150.0, 52.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23486_BALBc-1_X02_Y02_1268_775\", \"ini\": 728, \"clust\": 2532, \"rank\": 1353, \"rankvar\": 329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2098, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2171, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2191, \"group\": [2530.0, 1356.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23578_BALBc-1_X02_Y02_127_136\", \"ini\": 727, \"clust\": 2730, \"rank\": 2674, \"rankvar\": 2755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2099, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 432, \"cat-2\": \"Density: 22\", \"cat_2_index\": 310, \"group\": [2734.0, 1469.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23693_BALBc-1_X02_Y02_1270_691\", \"ini\": 726, \"clust\": 2068, \"rank\": 2710, \"rankvar\": 2144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2100, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 433, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1787, \"group\": [2068.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23786_BALBc-1_X02_Y02_1272_150\", \"ini\": 725, \"clust\": 903, \"rank\": 47, \"rankvar\": 98, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2101, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 710, \"cat-2\": \"Density: 20\", \"cat_2_index\": 171, \"group\": [901.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23903_BALBc-1_X02_Y02_1273_584\", \"ini\": 724, \"clust\": 425, \"rank\": 1234, \"rankvar\": 971, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2102, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 434, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1546, \"group\": [426.0, 302.0, 104.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23932_BALBc-1_X02_Y02_1273_933\", \"ini\": 723, \"clust\": 975, \"rank\": 938, \"rankvar\": 469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2103, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 435, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1281, \"group\": [978.0, 502.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24090_BALBc-1_X02_Y02_1275_977\", \"ini\": 722, \"clust\": 2001, \"rank\": 1698, \"rankvar\": 704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2104, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2172, \"cat-2\": \"Density: 20\", \"cat_2_index\": 172, \"group\": [2002.0, 1134.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24259_BALBc-1_X02_Y02_1278_364\", \"ini\": 721, \"clust\": 1315, \"rank\": 1928, \"rankvar\": 1250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2105, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1667, \"cat-2\": \"Density: 18\", \"cat_2_index\": 98, \"group\": [1314.0, 682.0, 201.0, 57.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24308_BALBc-1_X02_Y02_1278_906\", \"ini\": 720, \"clust\": 2178, \"rank\": 2139, \"rankvar\": 2526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2106, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 436, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1282, \"group\": [2177.0, 1182.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24363_BALBc-1_X02_Y02_1279_658\", \"ini\": 719, \"clust\": 2197, \"rank\": 1416, \"rankvar\": 1510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2107, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 437, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2109, \"group\": [2197.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24400_BALBc-1_X02_Y02_128_401\", \"ini\": 718, \"clust\": 7, \"rank\": 1311, \"rankvar\": 2388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2108, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2658, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1547, \"group\": [7.0, 6.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24702_BALBc-1_X02_Y02_1283_757\", \"ini\": 717, \"clust\": 889, \"rank\": 35, \"rankvar\": 640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2109, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 438, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1687, \"group\": [891.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24791_BALBc-1_X02_Y02_1284_937\", \"ini\": 716, \"clust\": 1967, \"rank\": 2271, \"rankvar\": 881, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2110, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2173, \"cat-2\": \"Density: 25\", \"cat_2_index\": 684, \"group\": [1962.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24871_BALBc-1_X02_Y02_1286_196\", \"ini\": 715, \"clust\": 545, \"rank\": 808, \"rankvar\": 772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2111, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 711, \"cat-2\": \"Density: 23\", \"cat_2_index\": 422, \"group\": [548.0, 374.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24910_BALBc-1_X02_Y02_1286_61\", \"ini\": 714, \"clust\": 179, \"rank\": 640, \"rankvar\": 212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2112, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 856, \"cat-2\": \"Density: 22\", \"cat_2_index\": 311, \"group\": [179.0, 116.0, 38.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24930_BALBc-1_X02_Y02_1286_94\", \"ini\": 713, \"clust\": 411, \"rank\": 1495, \"rankvar\": 1041, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2113, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 857, \"cat-2\": \"Density: 21\", \"cat_2_index\": 223, \"group\": [414.0, 291.0, 100.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24997_BALBc-1_X02_Y02_1287_830\", \"ini\": 712, \"clust\": 2289, \"rank\": 2211, \"rankvar\": 1509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2114, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2174, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1548, \"group\": [2289.0, 1246.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25247_BALBc-1_X02_Y02_1290_427\", \"ini\": 711, \"clust\": 544, \"rank\": 783, \"rankvar\": 1731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2115, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1366, \"cat-2\": \"Density: 18\", \"cat_2_index\": 99, \"group\": [549.0, 375.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25317_BALBc-1_X02_Y02_1291_314\", \"ini\": 710, \"clust\": 114, \"rank\": 649, \"rankvar\": 1170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2116, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 712, \"cat-2\": \"Density: 20\", \"cat_2_index\": 173, \"group\": [113.0, 69.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25428_BALBc-1_X02_Y02_1292_703\", \"ini\": 709, \"clust\": 1194, \"rank\": 663, \"rankvar\": 289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2117, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 439, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1688, \"group\": [1195.0, 588.0, 165.0, 44.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25511_BALBc-1_X02_Y02_1293_680\", \"ini\": 708, \"clust\": 1043, \"rank\": 222, \"rankvar\": 461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2118, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 440, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1689, \"group\": [1041.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25661_BALBc-1_X02_Y02_1295_739\", \"ini\": 707, \"clust\": 671, \"rank\": 560, \"rankvar\": 785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2119, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 441, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1898, \"group\": [674.0, 446.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25688_BALBc-1_X02_Y02_1296_24\", \"ini\": 706, \"clust\": 210, \"rank\": 763, \"rankvar\": 1326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2120, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1367, \"cat-2\": \"Density: 22\", \"cat_2_index\": 312, \"group\": [209.0, 141.0, 47.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25752_BALBc-1_X02_Y02_1297_227\", \"ini\": 705, \"clust\": 1267, \"rank\": 1368, \"rankvar\": 1161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2121, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2494, \"cat-2\": \"Density: 23\", \"cat_2_index\": 423, \"group\": [1270.0, 649.0, 187.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26022_BALBc-1_X02_Y02_13_668\", \"ini\": 704, \"clust\": 119, \"rank\": 1005, \"rankvar\": 539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2122, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1368, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1283, \"group\": [120.0, 76.0, 25.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26077_BALBc-1_X02_Y02_130_473\", \"ini\": 703, \"clust\": 1203, \"rank\": 992, \"rankvar\": 2277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2123, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 858, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1549, \"group\": [1205.0, 598.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26124_BALBc-1_X02_Y02_1300_173\", \"ini\": 702, \"clust\": 627, \"rank\": 468, \"rankvar\": 197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2124, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 442, \"cat-2\": \"Density: 19\", \"cat_2_index\": 124, \"group\": [626.0, 423.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26182_BALBc-1_X02_Y02_1300_787\", \"ini\": 701, \"clust\": 2458, \"rank\": 1061, \"rankvar\": 215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2125, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2175, \"cat-2\": \"Density: 27\", \"cat_2_index\": 979, \"group\": [2457.0, 1307.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26230_BALBc-1_X02_Y02_1301_568\", \"ini\": 700, \"clust\": 2663, \"rank\": 2755, \"rankvar\": 2499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2126, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2659, \"cat-2\": \"Density: 26\", \"cat_2_index\": 826, \"group\": [2664.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26312_BALBc-1_X02_Y02_1302_626\", \"ini\": 699, \"clust\": 1669, \"rank\": 1582, \"rankvar\": 1063, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2127, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 443, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1131, \"group\": [1670.0, 927.0, 271.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26315_BALBc-1_X02_Y02_1302_700\", \"ini\": 698, \"clust\": 150, \"rank\": 2047, \"rankvar\": 1802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2128, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 444, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1550, \"group\": [150.0, 94.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26391_BALBc-1_X02_Y02_1303_927\", \"ini\": 697, \"clust\": 871, \"rank\": 17, \"rankvar\": 203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2129, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2176, \"cat-2\": \"Density: 23\", \"cat_2_index\": 424, \"group\": [869.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26449_BALBc-1_X02_Y02_1304_811\", \"ini\": 696, \"clust\": 856, \"rank\": 12, \"rankvar\": 751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2130, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2177, \"cat-2\": \"Density: 26\", \"cat_2_index\": 827, \"group\": [854.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26566_BALBc-1_X02_Y02_1306_658\", \"ini\": 695, \"clust\": 1017, \"rank\": 667, \"rankvar\": 151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2131, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 445, \"cat-2\": \"Density: 26\", \"cat_2_index\": 828, \"group\": [1015.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26693_BALBc-1_X02_Y02_1308_47\", \"ini\": 694, \"clust\": 61, \"rank\": 1329, \"rankvar\": 1983, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2132, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 859, \"cat-2\": \"Density: 20\", \"cat_2_index\": 174, \"group\": [60.0, 49.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26715_BALBc-1_X02_Y02_1308_750\", \"ini\": 693, \"clust\": 1958, \"rank\": 2541, \"rankvar\": 2304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2133, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 446, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1426, \"group\": [1979.0, 1120.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26846_BALBc-1_X02_Y02_131_495\", \"ini\": 692, \"clust\": 1021, \"rank\": 268, \"rankvar\": 57, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2134, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 447, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1427, \"group\": [1020.0, 517.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27069_BALBc-1_X02_Y02_1312_571\", \"ini\": 691, \"clust\": 793, \"rank\": 136, \"rankvar\": 1431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2135, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2660, \"cat-2\": \"Density: 23\", \"cat_2_index\": 425, \"group\": [792.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27073_BALBc-1_X02_Y02_1312_596\", \"ini\": 690, \"clust\": 1031, \"rank\": 377, \"rankvar\": 60, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2136, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 448, \"cat-2\": \"Density: 24\", \"cat_2_index\": 549, \"group\": [1030.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27093_BALBc-1_X02_Y02_1312_855\", \"ini\": 689, \"clust\": 2182, \"rank\": 1371, \"rankvar\": 973, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2137, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 449, \"cat-2\": \"Density: 27\", \"cat_2_index\": 980, \"group\": [2207.0, 1189.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27175_BALBc-1_X02_Y02_1313_889\", \"ini\": 688, \"clust\": 1700, \"rank\": 2221, \"rankvar\": 568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2138, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 450, \"cat-2\": \"Density: 21\", \"cat_2_index\": 224, \"group\": [1704.0, 959.0, 287.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27201_BALBc-1_X02_Y02_1314_469\", \"ini\": 687, \"clust\": 121, \"rank\": 1167, \"rankvar\": 300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2139, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2661, \"cat-2\": \"Density: 16\", \"cat_2_index\": 62, \"group\": [122.0, 77.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27203_BALBc-1_X02_Y02_1314_500\", \"ini\": 686, \"clust\": 34, \"rank\": 773, \"rankvar\": 1007, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2140, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2662, \"cat-2\": \"Density: 19\", \"cat_2_index\": 125, \"group\": [34.0, 31.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27300_BALBc-1_X02_Y02_1315_692\", \"ini\": 685, \"clust\": 936, \"rank\": 179, \"rankvar\": 618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2141, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 451, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1132, \"group\": [937.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27591_BALBc-1_X02_Y02_1319_767\", \"ini\": 684, \"clust\": 584, \"rank\": 607, \"rankvar\": 1403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2142, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 452, \"cat-2\": \"Density: 26\", \"cat_2_index\": 829, \"group\": [586.0, 399.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27698_BALBc-1_X02_Y02_1320_253\", \"ini\": 683, \"clust\": 1020, \"rank\": 320, \"rankvar\": 35, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2143, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2495, \"cat-2\": \"Density: 19\", \"cat_2_index\": 126, \"group\": [1022.0, 517.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27744_BALBc-1_X02_Y02_1320_827\", \"ini\": 682, \"clust\": 2309, \"rank\": 1842, \"rankvar\": 1515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2144, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 453, \"cat-2\": \"Density: 21\", \"cat_2_index\": 225, \"group\": [2306.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27802_BALBc-1_X02_Y02_1321_633\", \"ini\": 681, \"clust\": 2256, \"rank\": 1633, \"rankvar\": 1530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2145, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 454, \"cat-2\": \"Density: 24\", \"cat_2_index\": 550, \"group\": [2256.0, 1232.0, 372.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27977_BALBc-1_X02_Y02_1324_135\", \"ini\": 680, \"clust\": 2630, \"rank\": 2301, \"rankvar\": 835, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2146, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1369, \"cat-2\": \"Density: 15\", \"cat_2_index\": 45, \"group\": [2637.0, 1429.0, 421.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28001_BALBc-1_X02_Y02_1324_408\", \"ini\": 679, \"clust\": 110, \"rank\": 903, \"rankvar\": 1076, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2147, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1668, \"cat-2\": \"Density: 13\", \"cat_2_index\": 20, \"group\": [110.0, 67.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28058_BALBc-1_X02_Y02_1325_209\", \"ini\": 678, \"clust\": 189, \"rank\": 1270, \"rankvar\": 980, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2148, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1983, \"cat-2\": \"Density: 18\", \"cat_2_index\": 100, \"group\": [189.0, 125.0, 41.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28143_BALBc-1_X02_Y02_1326_180\", \"ini\": 677, \"clust\": 303, \"rank\": 291, \"rankvar\": 2098, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2149, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 455, \"cat-2\": \"Density: 15\", \"cat_2_index\": 46, \"group\": [300.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28240_BALBc-1_X02_Y02_1327_430\", \"ini\": 676, \"clust\": 2721, \"rank\": 1992, \"rankvar\": 1021, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2150, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1984, \"cat-2\": \"Density: 12\", \"cat_2_index\": 10, \"group\": [2724.0, 1463.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28326_BALBc-1_X02_Y02_1328_311\", \"ini\": 675, \"clust\": 60, \"rank\": 1504, \"rankvar\": 1351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2151, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1370, \"cat-2\": \"Density: 13\", \"cat_2_index\": 21, \"group\": [62.0, 49.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28355_BALBc-1_X02_Y02_1328_671\", \"ini\": 674, \"clust\": 2282, \"rank\": 2370, \"rankvar\": 1722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2152, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2178, \"cat-2\": \"Density: 21\", \"cat_2_index\": 226, \"group\": [2404.0, 1274.0, 378.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28450_BALBc-1_X02_Y02_1329_795\", \"ini\": 673, \"clust\": 2281, \"rank\": 1970, \"rankvar\": 877, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2153, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 456, \"cat-2\": \"Density: 21\", \"cat_2_index\": 227, \"group\": [2281.0, 1241.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28468_BALBc-1_X02_Y02_1329_935\", \"ini\": 672, \"clust\": 2108, \"rank\": 2779, \"rankvar\": 2503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2154, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2179, \"cat-2\": \"Density: 17\", \"cat_2_index\": 82, \"group\": [2105.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28590_BALBc-1_X02_Y02_1330_719\", \"ini\": 671, \"clust\": 2081, \"rank\": 2451, \"rankvar\": 1700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2155, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2180, \"cat-2\": \"Density: 25\", \"cat_2_index\": 685, \"group\": [2094.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28625_BALBc-1_X02_Y02_1331_165\", \"ini\": 670, \"clust\": 180, \"rank\": 978, \"rankvar\": 18, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2156, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 628, \"cat-2\": \"Density: 14\", \"cat_2_index\": 32, \"group\": [180.0, 117.0, 38.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28658_BALBc-1_X02_Y02_1331_656\", \"ini\": 669, \"clust\": 732, \"rank\": 411, \"rankvar\": 541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2157, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2181, \"cat-2\": \"Density: 23\", \"cat_2_index\": 426, \"group\": [731.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28726_BALBc-1_X02_Y02_1332_561\", \"ini\": 668, \"clust\": 2709, \"rank\": 2661, \"rankvar\": 2324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2158, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2663, \"cat-2\": \"Density: 19\", \"cat_2_index\": 127, \"group\": [2711.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28748_BALBc-1_X02_Y02_1332_775\", \"ini\": 667, \"clust\": 2517, \"rank\": 1345, \"rankvar\": 736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2159, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 457, \"cat-2\": \"Density: 20\", \"cat_2_index\": 175, \"group\": [2520.0, 1352.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28827_BALBc-1_X02_Y02_1333_879\", \"ini\": 666, \"clust\": 2198, \"rank\": 1217, \"rankvar\": 1357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2160, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2182, \"cat-2\": \"Density: 18\", \"cat_2_index\": 101, \"group\": [2195.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28880_BALBc-1_X02_Y02_1334_638\", \"ini\": 665, \"clust\": 116, \"rank\": 736, \"rankvar\": 138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2161, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 458, \"cat-2\": \"Density: 20\", \"cat_2_index\": 176, \"group\": [116.0, 72.0, 24.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29002_BALBc-1_X02_Y02_1336_613\", \"ini\": 664, \"clust\": 142, \"rank\": 1652, \"rankvar\": 884, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2162, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 459, \"cat-2\": \"Density: 19\", \"cat_2_index\": 128, \"group\": [145.0, 90.0, 29.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29036_BALBc-1_X02_Y02_1337_280\", \"ini\": 663, \"clust\": 382, \"rank\": 1617, \"rankvar\": 2395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2163, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1371, \"cat-2\": \"Density: 13\", \"cat_2_index\": 22, \"group\": [382.0, 265.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29306_BALBc-1_X02_Y02_135_188\", \"ini\": 662, \"clust\": 1410, \"rank\": 1684, \"rankvar\": 1735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2164, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1372, \"cat-2\": \"Density: 23\", \"cat_2_index\": 427, \"group\": [1411.0, 760.0, 225.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29325_BALBc-1_X02_Y02_135_44\", \"ini\": 661, \"clust\": 1065, \"rank\": 466, \"rankvar\": 966, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2165, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1373, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1690, \"group\": [1069.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29381_BALBc-1_X02_Y02_136_322\", \"ini\": 660, \"clust\": 1934, \"rank\": 2811, \"rankvar\": 2682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2166, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2664, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1428, \"group\": [1934.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29406_BALBc-1_X02_Y02_136_579\", \"ini\": 659, \"clust\": 1774, \"rank\": 2145, \"rankvar\": 2192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2167, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 460, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2110, \"group\": [1773.0, 1005.0, 303.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29538_BALBc-1_X02_Y02_138_553\", \"ini\": 658, \"clust\": 423, \"rank\": 1015, \"rankvar\": 63, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2168, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 461, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2272, \"group\": [423.0, 299.0, 103.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29589_BALBc-1_X02_Y02_139_229\", \"ini\": 657, \"clust\": 2729, \"rank\": 2574, \"rankvar\": 2810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2169, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1374, \"cat-2\": \"Density: 22\", \"cat_2_index\": 313, \"group\": [2729.0, 1467.0, 431.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29755_BALBc-1_X02_Y02_140_609\", \"ini\": 656, \"clust\": 948, \"rank\": 1213, \"rankvar\": 711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2170, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1375, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2008, \"group\": [952.0, 485.0, 138.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29945_BALBc-1_X02_Y02_143_270\", \"ini\": 655, \"clust\": 2808, \"rank\": 1618, \"rankvar\": 2550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2171, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1552, \"cat-2\": \"Density: 23\", \"cat_2_index\": 428, \"group\": [2817.0, 1531.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29975_BALBc-1_X02_Y02_143_638\", \"ini\": 654, \"clust\": 2466, \"rank\": 1240, \"rankvar\": 1312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2172, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1376, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2192, \"group\": [2469.0, 1317.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29979_BALBc-1_X02_Y02_143_672\", \"ini\": 653, \"clust\": 1205, \"rank\": 1344, \"rankvar\": 2233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2173, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1377, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2009, \"group\": [1204.0, 597.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30142_BALBc-1_X02_Y02_145_833\", \"ini\": 652, \"clust\": 1798, \"rank\": 2413, \"rankvar\": 2581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2174, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1378, \"cat-2\": \"Density: 26\", \"cat_2_index\": 830, \"group\": [1797.0, 1016.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30179_BALBc-1_X02_Y02_146_479\", \"ini\": 651, \"clust\": 2708, \"rank\": 2295, \"rankvar\": 1680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2175, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 860, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1429, \"group\": [2712.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30188_BALBc-1_X02_Y02_146_532\", \"ini\": 650, \"clust\": 585, \"rank\": 454, \"rankvar\": 675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2176, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1379, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1788, \"group\": [585.0, 399.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30434_BALBc-1_X02_Y02_149_94\", \"ini\": 649, \"clust\": 2503, \"rank\": 2522, \"rankvar\": 2713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2177, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 713, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1284, \"group\": [2502.0, 1345.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30646_BALBc-1_X02_Y02_151_872\", \"ini\": 648, \"clust\": 1032, \"rank\": 178, \"rankvar\": 293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2178, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1380, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1285, \"group\": [1031.0, 518.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30861_BALBc-1_X02_Y02_154_562\", \"ini\": 647, \"clust\": 2228, \"rank\": 1266, \"rankvar\": 646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2179, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1381, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2010, \"group\": [2227.0, 1206.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30899_BALBc-1_X02_Y02_155_136\", \"ini\": 646, \"clust\": 2635, \"rank\": 2556, \"rankvar\": 1128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2180, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 462, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1133, \"group\": [2633.0, 1426.0, 420.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30927_BALBc-1_X02_Y02_155_518\", \"ini\": 645, \"clust\": 2222, \"rank\": 1602, \"rankvar\": 418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2181, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1382, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1551, \"group\": [2228.0, 1207.0, 357.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31105_BALBc-1_X02_Y02_157_714\", \"ini\": 644, \"clust\": 1856, \"rank\": 2234, \"rankvar\": 1649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2182, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1383, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1899, \"group\": [1857.0, 1049.0, 316.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31639_BALBc-1_X02_Y02_164_25\", \"ini\": 643, \"clust\": 2811, \"rank\": 1501, \"rankvar\": 1875, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1384, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1286, \"group\": [2812.0, 1527.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31675_BALBc-1_X02_Y02_164_786\", \"ini\": 642, \"clust\": 2713, \"rank\": 1775, \"rankvar\": 1235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2184, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1385, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1287, \"group\": [2714.0, 1457.0, 428.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31758_BALBc-1_X02_Y02_165_987\", \"ini\": 641, \"clust\": 1777, \"rank\": 1963, \"rankvar\": 2460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2185, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1386, \"cat-2\": \"Density: 18\", \"cat_2_index\": 102, \"group\": [1777.0, 1008.0, 304.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31767_BALBc-1_X02_Y02_166_176\", \"ini\": 640, \"clust\": 624, \"rank\": 693, \"rankvar\": 356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2186, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1387, \"cat-2\": \"Density: 22\", \"cat_2_index\": 314, \"group\": [625.0, 422.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31803_BALBc-1_X02_Y02_166_611\", \"ini\": 639, \"clust\": 1673, \"rank\": 1445, \"rankvar\": 856, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2187, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 463, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1789, \"group\": [1672.0, 929.0, 272.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31929_BALBc-1_X02_Y02_168_588\", \"ini\": 638, \"clust\": 2441, \"rank\": 1430, \"rankvar\": 734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2188, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1388, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1691, \"group\": [2444.0, 1300.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31935_BALBc-1_X02_Y02_168_629\", \"ini\": 637, \"clust\": 1796, \"rank\": 2436, \"rankvar\": 2401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2189, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1389, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1790, \"group\": [1798.0, 1016.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32146_BALBc-1_X02_Y02_170_52\", \"ini\": 636, \"clust\": 313, \"rank\": 1529, \"rankvar\": 2445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2190, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 714, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1430, \"group\": [310.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32156_BALBc-1_X02_Y02_170_685\", \"ini\": 635, \"clust\": 727, \"rank\": 321, \"rankvar\": 56, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2191, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1390, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1791, \"group\": [727.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32358_BALBc-1_X02_Y02_173_739\", \"ini\": 634, \"clust\": 1787, \"rank\": 1944, \"rankvar\": 2735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2192, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1391, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1552, \"group\": [1789.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32397_BALBc-1_X02_Y02_174_285\", \"ini\": 633, \"clust\": 2785, \"rank\": 1829, \"rankvar\": 2691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2193, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 715, \"cat-2\": \"Density: 21\", \"cat_2_index\": 228, \"group\": [2786.0, 1508.0, 449.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32509_BALBc-1_X02_Y02_175_663\", \"ini\": 632, \"clust\": 387, \"rank\": 716, \"rankvar\": 2572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2194, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1392, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1792, \"group\": [387.0, 269.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32671_BALBc-1_X02_Y02_177_97\", \"ini\": 631, \"clust\": 1779, \"rank\": 2683, \"rankvar\": 2571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2195, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 716, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1431, \"group\": [1779.0, 1010.0, 306.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32767_BALBc-1_X02_Y02_179_372\", \"ini\": 630, \"clust\": 583, \"rank\": 915, \"rankvar\": 1366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2196, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2665, \"cat-2\": \"Density: 23\", \"cat_2_index\": 429, \"group\": [582.0, 398.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32865_BALBc-1_X02_Y02_18_566\", \"ini\": 629, \"clust\": 1863, \"rank\": 1425, \"rankvar\": 1244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2197, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1393, \"cat-2\": \"Density: 24\", \"cat_2_index\": 551, \"group\": [1864.0, 1055.0, 318.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32892_BALBc-1_X02_Y02_18_931\", \"ini\": 628, \"clust\": 255, \"rank\": 908, \"rankvar\": 773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2198, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1394, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1288, \"group\": [254.0, 177.0, 62.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33131_BALBc-1_X02_Y02_183_257\", \"ini\": 627, \"clust\": 234, \"rank\": 991, \"rankvar\": 1466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2199, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1395, \"cat-2\": \"Density: 20\", \"cat_2_index\": 177, \"group\": [238.0, 166.0, 58.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33364_BALBc-1_X02_Y02_186_477\", \"ini\": 626, \"clust\": 415, \"rank\": 972, \"rankvar\": 7, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2200, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 861, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1432, \"group\": [416.0, 293.0, 101.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33643_BALBc-1_X02_Y02_19_416\", \"ini\": 625, \"clust\": 1731, \"rank\": 1971, \"rankvar\": 2415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2201, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 862, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2111, \"group\": [1736.0, 979.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33747_BALBc-1_X02_Y02_190_764\", \"ini\": 624, \"clust\": 2714, \"rank\": 2014, \"rankvar\": 1093, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2202, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1396, \"cat-2\": \"Density: 27\", \"cat_2_index\": 981, \"group\": [2715.0, 1457.0, 428.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33886_BALBc-1_X02_Y02_192_590\", \"ini\": 623, \"clust\": 260, \"rank\": 592, \"rankvar\": 1483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2203, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2666, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2112, \"group\": [259.0, 182.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34093_BALBc-1_X02_Y02_195_549\", \"ini\": 622, \"clust\": 2765, \"rank\": 2380, \"rankvar\": 2215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2204, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1397, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1289, \"group\": [2766.0, 1497.0, 446.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34272_BALBc-1_X02_Y02_197_884\", \"ini\": 621, \"clust\": 2644, \"rank\": 2734, \"rankvar\": 2594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2205, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 629, \"cat-2\": \"Density: 27\", \"cat_2_index\": 982, \"group\": [2644.0, 1435.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34519_BALBc-1_X02_Y02_200_308\", \"ini\": 620, \"clust\": 124, \"rank\": 897, \"rankvar\": 590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2206, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2667, \"cat-2\": \"Density: 25\", \"cat_2_index\": 686, \"group\": [124.0, 78.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34660_BALBc-1_X02_Y02_202_393\", \"ini\": 619, \"clust\": 2622, \"rank\": 1483, \"rankvar\": 863, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2207, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2668, \"cat-2\": \"Density: 25\", \"cat_2_index\": 687, \"group\": [2627.0, 1420.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34801_BALBc-1_X02_Y02_203_987\", \"ini\": 618, \"clust\": 2552, \"rank\": 2369, \"rankvar\": 1974, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2208, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1398, \"cat-2\": \"Density: 17\", \"cat_2_index\": 83, \"group\": [2558.0, 1380.0, 411.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34909_BALBc-1_X02_Y02_205_632\", \"ini\": 617, \"clust\": 2617, \"rank\": 2536, \"rankvar\": 2821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2209, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1399, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2011, \"group\": [2618.0, 1415.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34936_BALBc-1_X02_Y02_205_931\", \"ini\": 616, \"clust\": 1813, \"rank\": 2730, \"rankvar\": 2768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2210, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1400, \"cat-2\": \"Density: 26\", \"cat_2_index\": 831, \"group\": [1814.0, 1026.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35064_BALBc-1_X02_Y02_207_701\", \"ini\": 615, \"clust\": 2454, \"rank\": 1572, \"rankvar\": 1015, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2211, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1401, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1692, \"group\": [2454.0, 1305.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35117_BALBc-1_X02_Y02_208_445\", \"ini\": 614, \"clust\": 1045, \"rank\": 646, \"rankvar\": 182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2212, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2669, \"cat-2\": \"Density: 26\", \"cat_2_index\": 832, \"group\": [1047.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35215_BALBc-1_X02_Y02_209_729\", \"ini\": 613, \"clust\": 17, \"rank\": 1218, \"rankvar\": 776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2213, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1752, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1134, \"group\": [17.0, 16.0, 9.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35344_BALBc-1_X02_Y02_210_512\", \"ini\": 612, \"clust\": 261, \"rank\": 941, \"rankvar\": 2019, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2214, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2670, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1135, \"group\": [260.0, 182.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35379_BALBc-1_X02_Y02_211_205\", \"ini\": 611, \"clust\": 74, \"rank\": 859, \"rankvar\": 249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2215, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1402, \"cat-2\": \"Density: 22\", \"cat_2_index\": 315, \"group\": [75.0, 56.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35409_BALBc-1_X02_Y02_211_663\", \"ini\": 610, \"clust\": 294, \"rank\": 1302, \"rankvar\": 1792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2216, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1403, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1553, \"group\": [295.0, 211.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35439_BALBc-1_X02_Y02_212_134\", \"ini\": 609, \"clust\": 208, \"rank\": 680, \"rankvar\": 1616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2217, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1404, \"cat-2\": \"Density: 27\", \"cat_2_index\": 983, \"group\": [207.0, 139.0, 47.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35525_BALBc-1_X02_Y02_213_248\", \"ini\": 608, \"clust\": 58, \"rank\": 1205, \"rankvar\": 885, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2218, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1405, \"cat-2\": \"Density: 22\", \"cat_2_index\": 316, \"group\": [59.0, 48.0, 21.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35690_BALBc-1_X02_Y02_215_161\", \"ini\": 607, \"clust\": 2726, \"rank\": 1312, \"rankvar\": 2150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2219, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1406, \"cat-2\": \"Density: 19\", \"cat_2_index\": 129, \"group\": [2726.0, 1465.0, 430.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36203_BALBc-1_X02_Y02_221_61\", \"ini\": 606, \"clust\": 548, \"rank\": 436, \"rankvar\": 1778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2220, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 717, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1433, \"group\": [546.0, 372.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36421_BALBc-1_X02_Y02_224_50\", \"ini\": 605, \"clust\": 374, \"rank\": 1417, \"rankvar\": 2130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2221, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2325, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1434, \"group\": [375.0, 261.0, 90.0, 25.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36428_BALBc-1_X02_Y02_224_564\", \"ini\": 604, \"clust\": 2464, \"rank\": 1021, \"rankvar\": 744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2222, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2671, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1435, \"group\": [2465.0, 1313.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36602_BALBc-1_X02_Y02_226_849\", \"ini\": 603, \"clust\": 2682, \"rank\": 2482, \"rankvar\": 2508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2223, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1407, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1136, \"group\": [2682.0, 1447.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36662_BALBc-1_X02_Y02_227_672\", \"ini\": 602, \"clust\": 2564, \"rank\": 1870, \"rankvar\": 1449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2224, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1753, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1436, \"group\": [2565.0, 1385.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37114_BALBc-1_X02_Y02_232_789\", \"ini\": 601, \"clust\": 1948, \"rank\": 2027, \"rankvar\": 1870, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2225, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1408, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1137, \"group\": [1952.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37225_BALBc-1_X02_Y02_234_543\", \"ini\": 600, \"clust\": 2573, \"rank\": 2240, \"rankvar\": 2322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2226, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 464, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1138, \"group\": [2572.0, 1391.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37303_BALBc-1_X02_Y02_235_622\", \"ini\": 599, \"clust\": 1184, \"rank\": 1058, \"rankvar\": 485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2227, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2672, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1437, \"group\": [1185.0, 578.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37334_BALBc-1_X02_Y02_236_115\", \"ini\": 598, \"clust\": 1750, \"rank\": 986, \"rankvar\": 1728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2228, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1409, \"cat-2\": \"Density: 27\", \"cat_2_index\": 984, \"group\": [1752.0, 993.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37540_BALBc-1_X02_Y02_238_897\", \"ini\": 597, \"clust\": 2645, \"rank\": 2748, \"rankvar\": 2661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2229, \"cat-1\": \"Neighbor: CD3(+) other markers (-)\", \"cat_1_index\": 948, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1793, \"group\": [2645.0, 1435.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37573_BALBc-1_X02_Y02_239_298\", \"ini\": 596, \"clust\": 1115, \"rank\": 597, \"rankvar\": 1058, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2230, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 718, \"cat-2\": \"Density: 24\", \"cat_2_index\": 552, \"group\": [1116.0, 525.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37791_BALBc-1_X02_Y02_241_389\", \"ini\": 595, \"clust\": 2543, \"rank\": 1079, \"rankvar\": 749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2231, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2673, \"cat-2\": \"Density: 22\", \"cat_2_index\": 317, \"group\": [2544.0, 1369.0, 407.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37827_BALBc-1_X02_Y02_242_102\", \"ini\": 594, \"clust\": 546, \"rank\": 127, \"rankvar\": 1247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2232, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1410, \"cat-2\": \"Density: 27\", \"cat_2_index\": 985, \"group\": [547.0, 373.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37931_BALBc-1_X02_Y02_243_508\", \"ini\": 593, \"clust\": 1022, \"rank\": 441, \"rankvar\": 4, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2233, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1411, \"cat-2\": \"Density: 26\", \"cat_2_index\": 833, \"group\": [1021.0, 517.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38145_BALBc-1_X02_Y02_246_163\", \"ini\": 592, \"clust\": 1676, \"rank\": 2134, \"rankvar\": 671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2234, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1412, \"cat-2\": \"Density: 20\", \"cat_2_index\": 178, \"group\": [1676.0, 933.0, 274.0, 78.0, 16.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38443_BALBc-1_X02_Y02_25_159\", \"ini\": 591, \"clust\": 187, \"rank\": 1551, \"rankvar\": 339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2235, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2674, \"cat-2\": \"Density: 20\", \"cat_2_index\": 179, \"group\": [190.0, 126.0, 42.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38529_BALBc-1_X02_Y02_250_569\", \"ini\": 590, \"clust\": 1206, \"rank\": 952, \"rankvar\": 697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2236, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2675, \"cat-2\": \"Density: 26\", \"cat_2_index\": 834, \"group\": [1209.0, 602.0, 170.0, 46.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38579_BALBc-1_X02_Y02_251_215\", \"ini\": 589, \"clust\": 2821, \"rank\": 2616, \"rankvar\": 2558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2237, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1585, \"cat-2\": \"Density: 23\", \"cat_2_index\": 430, \"group\": [2819.0, 1532.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38688_BALBc-1_X02_Y02_252_435\", \"ini\": 588, \"clust\": 2574, \"rank\": 2326, \"rankvar\": 2766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2238, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2676, \"cat-2\": \"Density: 22\", \"cat_2_index\": 318, \"group\": [2575.0, 1392.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38696_BALBc-1_X02_Y02_252_541\", \"ini\": 587, \"clust\": 2763, \"rank\": 1722, \"rankvar\": 1023, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2239, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 927, \"cat-2\": \"Density: 26\", \"cat_2_index\": 835, \"group\": [2764.0, 1496.0, 446.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38727_BALBc-1_X02_Y02_252_932\", \"ini\": 586, \"clust\": 1186, \"rank\": 1038, \"rankvar\": 764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2240, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1413, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1554, \"group\": [1186.0, 579.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38830_BALBc-1_X02_Y02_254_340\", \"ini\": 585, \"clust\": 445, \"rank\": 486, \"rankvar\": 614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2241, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2677, \"cat-2\": \"Density: 26\", \"cat_2_index\": 836, \"group\": [446.0, 312.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38872_BALBc-1_X02_Y02_254_893\", \"ini\": 584, \"clust\": 2683, \"rank\": 2466, \"rankvar\": 2135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2242, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1414, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1555, \"group\": [2683.0, 1447.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38912_BALBc-1_X02_Y02_255_475\", \"ini\": 583, \"clust\": 2586, \"rank\": 1436, \"rankvar\": 994, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2243, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1415, \"cat-2\": \"Density: 25\", \"cat_2_index\": 688, \"group\": [2586.0, 1398.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39046_BALBc-1_X02_Y02_257_270\", \"ini\": 582, \"clust\": 86, \"rank\": 820, \"rankvar\": 1042, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2244, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 719, \"cat-2\": \"Density: 21\", \"cat_2_index\": 229, \"group\": [87.0, 63.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39285_BALBc-1_X02_Y02_26_589\", \"ini\": 581, \"clust\": 743, \"rank\": 648, \"rankvar\": 703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2245, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1416, \"cat-2\": \"Density: 27\", \"cat_2_index\": 986, \"group\": [747.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39521_BALBc-1_X02_Y02_262_59\", \"ini\": 580, \"clust\": 2632, \"rank\": 2085, \"rankvar\": 2030, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2246, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1417, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1556, \"group\": [2632.0, 1425.0, 419.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39680_BALBc-1_X02_Y02_264_831\", \"ini\": 579, \"clust\": 2772, \"rank\": 2327, \"rankvar\": 1896, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2247, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1418, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1139, \"group\": [2774.0, 1502.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39683_BALBc-1_X02_Y02_264_853\", \"ini\": 578, \"clust\": 159, \"rank\": 1088, \"rankvar\": 1559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2248, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1419, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1557, \"group\": [158.0, 100.0, 33.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39823_BALBc-1_X02_Y02_266_650\", \"ini\": 577, \"clust\": 2647, \"rank\": 2575, \"rankvar\": 2133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2249, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2678, \"cat-2\": \"Density: 27\", \"cat_2_index\": 987, \"group\": [2646.0, 1436.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40170_BALBc-1_X02_Y02_270_307\", \"ini\": 576, \"clust\": 2495, \"rank\": 1755, \"rankvar\": 951, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2250, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 465, \"cat-2\": \"Density: 22\", \"cat_2_index\": 319, \"group\": [2496.0, 1342.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40172_BALBc-1_X02_Y02_270_325\", \"ini\": 575, \"clust\": 2735, \"rank\": 1531, \"rankvar\": 1647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2251, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2679, \"cat-2\": \"Density: 22\", \"cat_2_index\": 320, \"group\": [2736.0, 1471.0, 432.0, 112.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40222_BALBc-1_X02_Y02_270_961\", \"ini\": 574, \"clust\": 1670, \"rank\": 1702, \"rankvar\": 1608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2252, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2326, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1140, \"group\": [1674.0, 931.0, 273.0, 77.0, 15.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40524_BALBc-1_X02_Y02_275_413\", \"ini\": 573, \"clust\": 617, \"rank\": 631, \"rankvar\": 842, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2253, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2680, \"cat-2\": \"Density: 19\", \"cat_2_index\": 130, \"group\": [618.0, 418.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40563_BALBc-1_X02_Y02_275_847\", \"ini\": 572, \"clust\": 301, \"rank\": 331, \"rankvar\": 2306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2254, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 466, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1290, \"group\": [301.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40879_BALBc-1_X02_Y02_28_120\", \"ini\": 571, \"clust\": 70, \"rank\": 638, \"rankvar\": 2047, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2255, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2681, \"cat-2\": \"Density: 21\", \"cat_2_index\": 230, \"group\": [66.0, 50.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41079_BALBc-1_X02_Y02_281_863\", \"ini\": 570, \"clust\": 2463, \"rank\": 1408, \"rankvar\": 1650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2256, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1420, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1438, \"group\": [2461.0, 1309.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41088_BALBc-1_X02_Y02_281_933\", \"ini\": 569, \"clust\": 1869, \"rank\": 1154, \"rankvar\": 1188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2257, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2327, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2012, \"group\": [1869.0, 1059.0, 320.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41109_BALBc-1_X02_Y02_282_19\", \"ini\": 568, \"clust\": 83, \"rank\": 931, \"rankvar\": 1331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2258, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1421, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1291, \"group\": [84.0, 63.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41853_BALBc-1_X02_Y02_291_291\", \"ini\": 567, \"clust\": 2491, \"rank\": 1807, \"rankvar\": 748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2259, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1669, \"cat-2\": \"Density: 21\", \"cat_2_index\": 231, \"group\": [2491.0, 1338.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41921_BALBc-1_X02_Y02_292_234\", \"ini\": 566, \"clust\": 1159, \"rank\": 753, \"rankvar\": 222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2260, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2682, \"cat-2\": \"Density: 26\", \"cat_2_index\": 837, \"group\": [1159.0, 557.0, 154.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41969_BALBc-1_X02_Y02_292_826\", \"ini\": 565, \"clust\": 2215, \"rank\": 1648, \"rankvar\": 1457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2261, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1422, \"cat-2\": \"Density: 27\", \"cat_2_index\": 988, \"group\": [2216.0, 1197.0, 354.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42255_BALBc-1_X02_Y02_296_91\", \"ini\": 564, \"clust\": 91, \"rank\": 393, \"rankvar\": 2081, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2262, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1423, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1439, \"group\": [92.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42361_BALBc-1_X02_Y02_298_51\", \"ini\": 563, \"clust\": 2530, \"rank\": 1429, \"rankvar\": 647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2263, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1553, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1440, \"group\": [2531.0, 1357.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42376_BALBc-1_X02_Y02_298_688\", \"ini\": 562, \"clust\": 2139, \"rank\": 2247, \"rankvar\": 1833, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2264, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1754, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1292, \"group\": [2141.0, 1158.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42549_BALBc-1_X02_Y02_30_717\", \"ini\": 561, \"clust\": 1804, \"rank\": 2520, \"rankvar\": 2803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2265, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1424, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1558, \"group\": [1801.0, 1018.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42623_BALBc-1_X02_Y02_300_742\", \"ini\": 560, \"clust\": 2626, \"rank\": 2361, \"rankvar\": 2145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2266, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1755, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1293, \"group\": [2626.0, 1419.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42724_BALBc-1_X02_Y02_301_912\", \"ini\": 559, \"clust\": 400, \"rank\": 328, \"rankvar\": 1726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2267, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1425, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2013, \"group\": [399.0, 279.0, 95.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43016_BALBc-1_X02_Y02_305_789\", \"ini\": 558, \"clust\": 1793, \"rank\": 2564, \"rankvar\": 2721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2268, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2683, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1141, \"group\": [1791.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43073_BALBc-1_X02_Y02_306_759\", \"ini\": 557, \"clust\": 131, \"rank\": 596, \"rankvar\": 1405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2269, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2684, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1142, \"group\": [130.0, 81.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43104_BALBc-1_X02_Y02_307_25\", \"ini\": 556, \"clust\": 650, \"rank\": 690, \"rankvar\": 17, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2270, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2461, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1559, \"group\": [650.0, 436.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43260_BALBc-1_X02_Y02_309_581\", \"ini\": 555, \"clust\": 2685, \"rank\": 2555, \"rankvar\": 2380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2271, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2685, \"cat-2\": \"Density: 23\", \"cat_2_index\": 431, \"group\": [2685.0, 1448.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43563_BALBc-1_X02_Y02_312_481\", \"ini\": 554, \"clust\": 2791, \"rank\": 1200, \"rankvar\": 1549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2272, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2686, \"cat-2\": \"Density: 23\", \"cat_2_index\": 432, \"group\": [2803.0, 1521.0, 452.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43574_BALBc-1_X02_Y02_312_648\", \"ini\": 553, \"clust\": 2648, \"rank\": 2701, \"rankvar\": 2551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2273, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2687, \"cat-2\": \"Density: 25\", \"cat_2_index\": 689, \"group\": [2647.0, 1436.0, 425.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43750_BALBc-1_X02_Y02_315_261\", \"ini\": 552, \"clust\": 2746, \"rank\": 1642, \"rankvar\": 363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2274, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1670, \"cat-2\": \"Density: 25\", \"cat_2_index\": 690, \"group\": [2747.0, 1482.0, 439.0, 115.0, 24.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43996_BALBc-1_X02_Y02_318_328\", \"ini\": 551, \"clust\": 2487, \"rank\": 1937, \"rankvar\": 807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2275, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2688, \"cat-2\": \"Density: 25\", \"cat_2_index\": 691, \"group\": [2488.0, 1335.0, 398.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44586_BALBc-1_X02_Y02_324_940\", \"ini\": 550, \"clust\": 553, \"rank\": 238, \"rankvar\": 1176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2276, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2328, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1794, \"group\": [551.0, 376.0, 124.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44663_BALBc-1_X02_Y02_326_112\", \"ini\": 549, \"clust\": 62, \"rank\": 1326, \"rankvar\": 1977, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2277, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1426, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1294, \"group\": [61.0, 49.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44734_BALBc-1_X02_Y02_326_893\", \"ini\": 548, \"clust\": 911, \"rank\": 55, \"rankvar\": 351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2278, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1427, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2193, \"group\": [909.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44795_BALBc-1_X02_Y02_327_686\", \"ini\": 547, \"clust\": 1753, \"rank\": 1749, \"rankvar\": 1727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2279, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2689, \"cat-2\": \"Density: 26\", \"cat_2_index\": 838, \"group\": [1760.0, 996.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44797_BALBc-1_X02_Y02_327_702\", \"ini\": 546, \"clust\": 1209, \"rank\": 1318, \"rankvar\": 241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2280, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2690, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1295, \"group\": [1213.0, 606.0, 171.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44833_BALBc-1_X02_Y02_328_182\", \"ini\": 545, \"clust\": 1714, \"rank\": 2785, \"rankvar\": 2793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2281, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1586, \"cat-2\": \"Density: 25\", \"cat_2_index\": 692, \"group\": [1715.0, 966.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44890_BALBc-1_X02_Y02_328_742\", \"ini\": 544, \"clust\": 1180, \"rank\": 1827, \"rankvar\": 1443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2282, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1428, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1693, \"group\": [1180.0, 573.0, 159.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45097_BALBc-1_X02_Y02_330_51\", \"ini\": 543, \"clust\": 1632, \"rank\": 1768, \"rankvar\": 1644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2283, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2462, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1143, \"group\": [1636.0, 901.0, 261.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45134_BALBc-1_X02_Y02_330_922\", \"ini\": 542, \"clust\": 77, \"rank\": 956, \"rankvar\": 841, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2284, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1429, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2273, \"group\": [77.0, 57.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45153_BALBc-1_X02_Y02_331_217\", \"ini\": 541, \"clust\": 533, \"rank\": 463, \"rankvar\": 416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2285, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1587, \"cat-2\": \"Density: 22\", \"cat_2_index\": 321, \"group\": [533.0, 365.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45435_BALBc-1_X02_Y02_334_951\", \"ini\": 540, \"clust\": 1662, \"rank\": 1728, \"rankvar\": 2764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2286, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2329, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1795, \"group\": [1662.0, 920.0, 268.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45581_BALBc-1_X02_Y02_336_819\", \"ini\": 539, \"clust\": 2395, \"rank\": 2492, \"rankvar\": 1943, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2287, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 467, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1560, \"group\": [2396.0, 1268.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45601_BALBc-1_X02_Y02_337_15\", \"ini\": 538, \"clust\": 1872, \"rank\": 1401, \"rankvar\": 950, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2288, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1554, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1796, \"group\": [1873.0, 1063.0, 322.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45622_BALBc-1_X02_Y02_337_558\", \"ini\": 537, \"clust\": 262, \"rank\": 312, \"rankvar\": 1035, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2289, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2691, \"cat-2\": \"Density: 22\", \"cat_2_index\": 322, \"group\": [261.0, 183.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45630_BALBc-1_X02_Y02_337_608\", \"ini\": 536, \"clust\": 2492, \"rank\": 1798, \"rankvar\": 1753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2290, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1430, \"cat-2\": \"Density: 25\", \"cat_2_index\": 693, \"group\": [2492.0, 1339.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45716_BALBc-1_X02_Y02_338_787\", \"ini\": 535, \"clust\": 1785, \"rank\": 2219, \"rankvar\": 2684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2291, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1431, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1694, \"group\": [1786.0, 1014.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45734_BALBc-1_X02_Y02_338_973\", \"ini\": 534, \"clust\": 1424, \"rank\": 774, \"rankvar\": 2140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2292, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2330, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1296, \"group\": [1429.0, 775.0, 231.0, 65.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46044_BALBc-1_X02_Y02_342_196\", \"ini\": 533, \"clust\": 1286, \"rank\": 894, \"rankvar\": 2347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2293, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1756, \"cat-2\": \"Density: 23\", \"cat_2_index\": 433, \"group\": [1285.0, 656.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46376_BALBc-1_X02_Y02_346_38\", \"ini\": 532, \"clust\": 865, \"rank\": 15, \"rankvar\": 642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2294, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1671, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1695, \"group\": [865.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46496_BALBc-1_X02_Y02_347_862\", \"ini\": 531, \"clust\": 1814, \"rank\": 2824, \"rankvar\": 2800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2295, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1432, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2113, \"group\": [1815.0, 1026.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46558_BALBc-1_X02_Y02_348_812\", \"ini\": 530, \"clust\": 592, \"rank\": 949, \"rankvar\": 146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2296, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 468, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1797, \"group\": [593.0, 404.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46798_BALBc-1_X02_Y02_350_899\", \"ini\": 529, \"clust\": 1063, \"rank\": 350, \"rankvar\": 800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2297, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1433, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2194, \"group\": [1062.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46832_BALBc-1_X02_Y02_351_395\", \"ini\": 528, \"clust\": 1038, \"rank\": 376, \"rankvar\": 1179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2298, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2692, \"cat-2\": \"Density: 18\", \"cat_2_index\": 103, \"group\": [1048.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47131_BALBc-1_X02_Y02_355_343\", \"ini\": 527, \"clust\": 1313, \"rank\": 1883, \"rankvar\": 298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2299, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1672, \"cat-2\": \"Density: 18\", \"cat_2_index\": 104, \"group\": [1317.0, 685.0, 203.0, 58.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47280_BALBc-1_X02_Y02_357_240\", \"ini\": 526, \"clust\": 2614, \"rank\": 1568, \"rankvar\": 265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2300, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 469, \"cat-2\": \"Density: 23\", \"cat_2_index\": 434, \"group\": [2615.0, 1412.0, 417.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47378_BALBc-1_X02_Y02_358_713\", \"ini\": 525, \"clust\": 672, \"rank\": 627, \"rankvar\": 316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2301, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1434, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2014, \"group\": [672.0, 445.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47461_BALBc-1_X02_Y02_359_961\", \"ini\": 524, \"clust\": 2489, \"rank\": 1595, \"rankvar\": 1807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2302, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1985, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1798, \"group\": [2489.0, 1336.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47870_BALBc-1_X02_Y02_364_646\", \"ini\": 523, \"clust\": 2577, \"rank\": 1496, \"rankvar\": 2576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2303, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 470, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1441, \"group\": [2578.0, 1392.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47876_BALBc-1_X02_Y02_364_679\", \"ini\": 522, \"clust\": 4, \"rank\": 1339, \"rankvar\": 403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2304, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2693, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1900, \"group\": [5.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47961_BALBc-1_X02_Y02_365_605\", \"ini\": 521, \"clust\": 2629, \"rank\": 2025, \"rankvar\": 1734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2305, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2694, \"cat-2\": \"Density: 26\", \"cat_2_index\": 839, \"group\": [2629.0, 1422.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48010_BALBc-1_X02_Y02_366_148\", \"ini\": 520, \"clust\": 1765, \"rank\": 2712, \"rankvar\": 2813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2306, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1435, \"cat-2\": \"Density: 25\", \"cat_2_index\": 694, \"group\": [1769.0, 1002.0, 301.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48086_BALBc-1_X02_Y02_367_266\", \"ini\": 519, \"clust\": 1308, \"rank\": 2158, \"rankvar\": 2271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2307, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1673, \"cat-2\": \"Density: 21\", \"cat_2_index\": 232, \"group\": [1308.0, 678.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48310_BALBc-1_X02_Y02_369_971\", \"ini\": 518, \"clust\": 1663, \"rank\": 1734, \"rankvar\": 2178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2308, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2331, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1297, \"group\": [1663.0, 920.0, 268.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48337_BALBc-1_X02_Y02_37_334\", \"ini\": 517, \"clust\": 1865, \"rank\": 2117, \"rankvar\": 1631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2309, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2695, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1298, \"group\": [1865.0, 1056.0, 319.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48352_BALBc-1_X02_Y02_37_533\", \"ini\": 516, \"clust\": 2737, \"rank\": 1662, \"rankvar\": 925, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2310, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1436, \"cat-2\": \"Density: 27\", \"cat_2_index\": 989, \"group\": [2738.0, 1473.0, 434.0, 113.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48474_BALBc-1_X02_Y02_371_45\", \"ini\": 515, \"clust\": 1178, \"rank\": 1869, \"rankvar\": 1283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2311, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1674, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1799, \"group\": [1181.0, 574.0, 159.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48542_BALBc-1_X02_Y02_372_378\", \"ini\": 514, \"clust\": 1199, \"rank\": 984, \"rankvar\": 2001, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2312, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2696, \"cat-2\": \"Density: 16\", \"cat_2_index\": 63, \"group\": [1199.0, 592.0, 167.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48653_BALBc-1_X02_Y02_373_710\", \"ini\": 513, \"clust\": 2238, \"rank\": 1537, \"rankvar\": 570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2313, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1437, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2114, \"group\": [2239.0, 1218.0, 365.0, 100.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48742_BALBc-1_X02_Y02_374_766\", \"ini\": 512, \"clust\": 2258, \"rank\": 1481, \"rankvar\": 722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2314, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1438, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2274, \"group\": [2266.0, 1237.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48757_BALBc-1_X02_Y02_375_1002\", \"ini\": 511, \"clust\": 410, \"rank\": 614, \"rankvar\": 1550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2315, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1439, \"cat-2\": \"Density: 23\", \"cat_2_index\": 435, \"group\": [410.0, 287.0, 98.0, 29.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48766_BALBc-1_X02_Y02_375_206\", \"ini\": 510, \"clust\": 1257, \"rank\": 2070, \"rankvar\": 2394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2316, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1757, \"cat-2\": \"Density: 25\", \"cat_2_index\": 695, \"group\": [1257.0, 638.0, 183.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49046_BALBc-1_X02_Y02_378_827\", \"ini\": 509, \"clust\": 2566, \"rank\": 1656, \"rankvar\": 1818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2317, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1440, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2115, \"group\": [2567.0, 1387.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49131_BALBc-1_X02_Y02_379_932\", \"ini\": 508, \"clust\": 1857, \"rank\": 1914, \"rankvar\": 1112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2318, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1441, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2015, \"group\": [1858.0, 1050.0, 316.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49273_BALBc-1_X02_Y02_380_907\", \"ini\": 507, \"clust\": 1133, \"rank\": 1306, \"rankvar\": 1619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2319, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1442, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2275, \"group\": [1136.0, 538.0, 146.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49542_BALBc-1_X02_Y02_384_270\", \"ini\": 506, \"clust\": 2496, \"rank\": 2269, \"rankvar\": 2358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2320, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 720, \"cat-2\": \"Density: 21\", \"cat_2_index\": 233, \"group\": [2497.0, 1343.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49696_BALBc-1_X02_Y02_386_104\", \"ini\": 505, \"clust\": 1893, \"rank\": 2418, \"rankvar\": 2108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2321, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 721, \"cat-2\": \"Density: 26\", \"cat_2_index\": 840, \"group\": [1893.0, 1083.0, 330.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49859_BALBc-1_X02_Y02_387_719\", \"ini\": 504, \"clust\": 2336, \"rank\": 2179, \"rankvar\": 1233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2322, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1443, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2276, \"group\": [2332.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49926_BALBc-1_X02_Y02_388_683\", \"ini\": 503, \"clust\": 2588, \"rank\": 1367, \"rankvar\": 1579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2323, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 471, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2116, \"group\": [2589.0, 1400.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49970_BALBc-1_X02_Y02_389_234\", \"ini\": 502, \"clust\": 1008, \"rank\": 782, \"rankvar\": 332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2324, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 722, \"cat-2\": \"Density: 24\", \"cat_2_index\": 553, \"group\": [1019.0, 516.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50081_BALBc-1_X02_Y02_39_906\", \"ini\": 501, \"clust\": 893, \"rank\": 119, \"rankvar\": 598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2325, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1444, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1561, \"group\": [912.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50288_BALBc-1_X02_Y02_392_752\", \"ini\": 500, \"clust\": 721, \"rank\": 715, \"rankvar\": 69, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2326, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1445, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2409, \"group\": [721.0, 461.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50373_BALBc-1_X02_Y02_393_952\", \"ini\": 499, \"clust\": 811, \"rank\": 332, \"rankvar\": 39, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2327, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 472, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1901, \"group\": [818.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50545_BALBc-1_X02_Y02_396_299\", \"ini\": 498, \"clust\": 1160, \"rank\": 717, \"rankvar\": 855, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2328, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1675, \"cat-2\": \"Density: 21\", \"cat_2_index\": 234, \"group\": [1160.0, 557.0, 154.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50577_BALBc-1_X02_Y02_396_66\", \"ini\": 497, \"clust\": 362, \"rank\": 440, \"rankvar\": 2399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2329, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2463, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1562, \"group\": [360.0, 251.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50639_BALBc-1_X02_Y02_397_506\", \"ini\": 496, \"clust\": 2710, \"rank\": 2671, \"rankvar\": 2384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2330, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2697, \"cat-2\": \"Density: 20\", \"cat_2_index\": 180, \"group\": [2710.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50667_BALBc-1_X02_Y02_397_837\", \"ini\": 495, \"clust\": 2455, \"rank\": 1805, \"rankvar\": 1330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2331, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1446, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2117, \"group\": [2455.0, 1305.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50671_BALBc-1_X02_Y02_397_871\", \"ini\": 494, \"clust\": 117, \"rank\": 740, \"rankvar\": 796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2332, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1447, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2016, \"group\": [117.0, 73.0, 24.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50773_BALBc-1_X02_Y02_399_185\", \"ini\": 493, \"clust\": 695, \"rank\": 409, \"rankvar\": 1801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2333, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1758, \"cat-2\": \"Density: 26\", \"cat_2_index\": 841, \"group\": [694.0, 455.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50866_BALBc-1_X02_Y02_4_371\", \"ini\": 492, \"clust\": 1719, \"rank\": 2741, \"rankvar\": 2421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2334, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1676, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1563, \"group\": [1720.0, 969.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51013_BALBc-1_X02_Y02_400_654\", \"ini\": 491, \"clust\": 2676, \"rank\": 2764, \"rankvar\": 2668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2335, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 473, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2118, \"group\": [2675.0, 1444.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51178_BALBc-1_X02_Y02_402_800\", \"ini\": 490, \"clust\": 2702, \"rank\": 2670, \"rankvar\": 2290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2336, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 474, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2538, \"group\": [2699.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51223_BALBc-1_X02_Y02_403_448\", \"ini\": 489, \"clust\": 2507, \"rank\": 1681, \"rankvar\": 1372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2337, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 630, \"cat-2\": \"Density: 18\", \"cat_2_index\": 105, \"group\": [2508.0, 1348.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51252_BALBc-1_X02_Y02_403_925\", \"ini\": 488, \"clust\": 1035, \"rank\": 533, \"rankvar\": 312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2338, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 475, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2345, \"group\": [1038.0, 521.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51314_BALBc-1_X02_Y02_404_700\", \"ini\": 487, \"clust\": 2249, \"rank\": 1729, \"rankvar\": 1156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2339, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1570, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2017, \"group\": [2252.0, 1229.0, 371.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51733_BALBc-1_X02_Y02_409_627\", \"ini\": 486, \"clust\": 2582, \"rank\": 1443, \"rankvar\": 1264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2340, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 476, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1800, \"group\": [2581.0, 1395.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51815_BALBc-1_X02_Y02_41_743\", \"ini\": 485, \"clust\": 1135, \"rank\": 375, \"rankvar\": 1175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2341, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1448, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1801, \"group\": [1135.0, 537.0, 146.0, 36.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51858_BALBc-1_X02_Y02_410_359\", \"ini\": 484, \"clust\": 2508, \"rank\": 1272, \"rankvar\": 995, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2342, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 631, \"cat-2\": \"Density: 16\", \"cat_2_index\": 64, \"group\": [2509.0, 1349.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51875_BALBc-1_X02_Y02_410_48\", \"ini\": 483, \"clust\": 1255, \"rank\": 2013, \"rankvar\": 1141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2343, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1677, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1564, \"group\": [1256.0, 637.0, 182.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51967_BALBc-1_X02_Y02_411_743\", \"ini\": 482, \"clust\": 273, \"rank\": 1411, \"rankvar\": 918, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2344, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1571, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2346, \"group\": [273.0, 195.0, 70.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52455_BALBc-1_X02_Y02_417_999\", \"ini\": 481, \"clust\": 2434, \"rank\": 833, \"rankvar\": 926, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2345, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1449, \"cat-2\": \"Density: 22\", \"cat_2_index\": 323, \"group\": [2432.0, 1295.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52537_BALBc-1_X02_Y02_418_969\", \"ini\": 480, \"clust\": 1873, \"rank\": 1669, \"rankvar\": 912, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2346, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1450, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1565, \"group\": [1874.0, 1064.0, 322.0, 89.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52561_BALBc-1_X02_Y02_419_278\", \"ini\": 479, \"clust\": 2792, \"rank\": 2069, \"rankvar\": 2112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2347, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 723, \"cat-2\": \"Density: 21\", \"cat_2_index\": 235, \"group\": [2794.0, 1515.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52608_BALBc-1_X02_Y02_419_84\", \"ini\": 478, \"clust\": 519, \"rank\": 805, \"rankvar\": 792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2348, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1451, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1802, \"group\": [530.0, 362.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52692_BALBc-1_X02_Y02_420_10\", \"ini\": 477, \"clust\": 164, \"rank\": 1415, \"rankvar\": 217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2349, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1452, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1696, \"group\": [165.0, 106.0, 34.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52698_BALBc-1_X02_Y02_420_121\", \"ini\": 476, \"clust\": 1300, \"rank\": 1575, \"rankvar\": 2149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2350, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 724, \"cat-2\": \"Density: 27\", \"cat_2_index\": 990, \"group\": [1304.0, 675.0, 198.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52763_BALBc-1_X02_Y02_420_947\", \"ini\": 475, \"clust\": 673, \"rank\": 400, \"rankvar\": 451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2351, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 477, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1902, \"group\": [673.0, 445.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52982_BALBc-1_X02_Y02_423_748\", \"ini\": 474, \"clust\": 1914, \"rank\": 1964, \"rankvar\": 1159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2352, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 478, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2347, \"group\": [1914.0, 1099.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53042_BALBc-1_X02_Y02_424_598\", \"ini\": 473, \"clust\": 2567, \"rank\": 1760, \"rankvar\": 2195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2353, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2698, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1299, \"group\": [2570.0, 1390.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53143_BALBc-1_X02_Y02_425_911\", \"ini\": 472, \"clust\": 2268, \"rank\": 1559, \"rankvar\": 1245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2354, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1453, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2493, \"group\": [2268.0, 1238.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53612_BALBc-1_X02_Y02_430_780\", \"ini\": 471, \"clust\": 2672, \"rank\": 2718, \"rankvar\": 2153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2355, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 479, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2277, \"group\": [2671.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53651_BALBc-1_X02_Y02_431_210\", \"ini\": 470, \"clust\": 2505, \"rank\": 1810, \"rankvar\": 1323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2356, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 725, \"cat-2\": \"Density: 27\", \"cat_2_index\": 991, \"group\": [2504.0, 1346.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53748_BALBc-1_X02_Y02_432_458\", \"ini\": 469, \"clust\": 2778, \"rank\": 2321, \"rankvar\": 2487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2357, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2699, \"cat-2\": \"Density: 18\", \"cat_2_index\": 106, \"group\": [2778.0, 1504.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53769_BALBc-1_X02_Y02_432_657\", \"ini\": 468, \"clust\": 1718, \"rank\": 2458, \"rankvar\": 2327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2358, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 480, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2018, \"group\": [1719.0, 968.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53818_BALBc-1_X02_Y02_433_32\", \"ini\": 467, \"clust\": 716, \"rank\": 734, \"rankvar\": 503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2359, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 863, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1903, \"group\": [722.0, 462.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53861_BALBc-1_X02_Y02_433_832\", \"ini\": 466, \"clust\": 2637, \"rank\": 1608, \"rankvar\": 140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2360, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2700, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2494, \"group\": [2641.0, 1433.0, 423.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53918_BALBc-1_X02_Y02_434_639\", \"ini\": 465, \"clust\": 2465, \"rank\": 1215, \"rankvar\": 1055, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2361, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 481, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1803, \"group\": [2466.0, 1314.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53990_BALBc-1_X02_Y02_435_547\", \"ini\": 464, \"clust\": 2686, \"rank\": 2601, \"rankvar\": 2649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2362, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2701, \"cat-2\": \"Density: 24\", \"cat_2_index\": 554, \"group\": [2686.0, 1448.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54076_BALBc-1_X02_Y02_436_716\", \"ini\": 463, \"clust\": 2337, \"rank\": 2121, \"rankvar\": 1103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2363, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1572, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2348, \"group\": [2333.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54081_BALBc-1_X02_Y02_436_770\", \"ini\": 462, \"clust\": 266, \"rank\": 1246, \"rankvar\": 1288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2364, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 482, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2410, \"group\": [266.0, 188.0, 66.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54253_BALBc-1_X02_Y02_438_736\", \"ini\": 461, \"clust\": 467, \"rank\": 1149, \"rankvar\": 315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2365, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 483, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2349, \"group\": [470.0, 328.0, 113.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54323_BALBc-1_X02_Y02_439_680\", \"ini\": 460, \"clust\": 2488, \"rank\": 1576, \"rankvar\": 201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2366, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 484, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2278, \"group\": [2493.0, 1340.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54356_BALBc-1_X02_Y02_44_193\", \"ini\": 459, \"clust\": 2538, \"rank\": 1742, \"rankvar\": 1157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2367, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2702, \"cat-2\": \"Density: 21\", \"cat_2_index\": 236, \"group\": [2539.0, 1364.0, 404.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54458_BALBc-1_X02_Y02_440_577\", \"ini\": 458, \"clust\": 2798, \"rank\": 1873, \"rankvar\": 1932, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2368, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2703, \"cat-2\": \"Density: 24\", \"cat_2_index\": 555, \"group\": [2797.0, 1518.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54556_BALBc-1_X02_Y02_441_892\", \"ini\": 457, \"clust\": 2069, \"rank\": 2810, \"rankvar\": 2057, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2369, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1454, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2350, \"group\": [2069.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54798_BALBc-1_X02_Y02_444_961\", \"ini\": 456, \"clust\": 256, \"rank\": 1236, \"rankvar\": 370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2370, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1455, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1442, \"group\": [255.0, 178.0, 62.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54819_BALBc-1_X02_Y02_445_21\", \"ini\": 455, \"clust\": 2246, \"rank\": 1985, \"rankvar\": 1695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2371, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 485, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1904, \"group\": [2245.0, 1222.0, 367.0, 101.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54862_BALBc-1_X02_Y02_445_938\", \"ini\": 454, \"clust\": 2468, \"rank\": 1264, \"rankvar\": 175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2372, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 632, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2019, \"group\": [2468.0, 1316.0, 389.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55022_BALBc-1_X02_Y02_448_177\", \"ini\": 453, \"clust\": 766, \"rank\": 96, \"rankvar\": 540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2373, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1456, \"cat-2\": \"Density: 27\", \"cat_2_index\": 992, \"group\": [767.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55154_BALBc-1_X02_Y02_449_850\", \"ini\": 452, \"clust\": 2102, \"rank\": 2488, \"rankvar\": 1903, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2374, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2704, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2279, \"group\": [2101.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55263_BALBc-1_X02_Y02_450_401\", \"ini\": 451, \"clust\": 1185, \"rank\": 1257, \"rankvar\": 576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2375, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1457, \"cat-2\": \"Density: 18\", \"cat_2_index\": 107, \"group\": [1188.0, 581.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55369_BALBc-1_X02_Y02_451_799\", \"ini\": 450, \"clust\": 639, \"rank\": 577, \"rankvar\": 354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2376, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 486, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2280, \"group\": [640.0, 430.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55395_BALBc-1_X02_Y02_452_153\", \"ini\": 449, \"clust\": 31, \"rank\": 1355, \"rankvar\": 349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2377, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 726, \"cat-2\": \"Density: 25\", \"cat_2_index\": 696, \"group\": [32.0, 30.0, 18.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55452_BALBc-1_X02_Y02_452_751\", \"ini\": 448, \"clust\": 900, \"rank\": 23, \"rankvar\": 302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2378, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 487, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2281, \"group\": [899.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55453_BALBc-1_X02_Y02_452_762\", \"ini\": 447, \"clust\": 2284, \"rank\": 2010, \"rankvar\": 480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2379, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 488, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2411, \"group\": [2283.0, 1243.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55520_BALBc-1_X02_Y02_453_611\", \"ini\": 446, \"clust\": 392, \"rank\": 1076, \"rankvar\": 1954, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2380, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 489, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1300, \"group\": [392.0, 274.0, 93.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55535_BALBc-1_X02_Y02_453_779\", \"ini\": 445, \"clust\": 2520, \"rank\": 1450, \"rankvar\": 1302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2381, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 490, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2351, \"group\": [2523.0, 1353.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55769_BALBc-1_X02_Y02_456_717\", \"ini\": 444, \"clust\": 580, \"rank\": 858, \"rankvar\": 295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2382, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 491, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2539, \"group\": [580.0, 397.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55815_BALBc-1_X02_Y02_457_41\", \"ini\": 443, \"clust\": 1168, \"rank\": 912, \"rankvar\": 2196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2383, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1986, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1697, \"group\": [1169.0, 565.0, 156.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55836_BALBc-1_X02_Y02_457_651\", \"ini\": 442, \"clust\": 594, \"rank\": 729, \"rankvar\": 1606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2384, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 492, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1905, \"group\": [592.0, 403.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55853_BALBc-1_X02_Y02_457_820\", \"ini\": 441, \"clust\": 1001, \"rank\": 621, \"rankvar\": 259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2385, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 493, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2540, \"group\": [1001.0, 511.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55927_BALBc-1_X02_Y02_458_893\", \"ini\": 440, \"clust\": 433, \"rank\": 725, \"rankvar\": 2376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2386, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 633, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2412, \"group\": [434.0, 307.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56318_BALBc-1_X02_Y02_462_867\", \"ini\": 439, \"clust\": 1730, \"rank\": 2580, \"rankvar\": 1496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2387, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 634, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2495, \"group\": [1730.0, 975.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56467_BALBc-1_X02_Y02_465_167\", \"ini\": 438, \"clust\": 630, \"rank\": 471, \"rankvar\": 509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2388, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 494, \"cat-2\": \"Density: 26\", \"cat_2_index\": 842, \"group\": [629.0, 424.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56525_BALBc-1_X02_Y02_465_852\", \"ini\": 437, \"clust\": 1973, \"rank\": 2647, \"rankvar\": 2249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2389, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 495, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2413, \"group\": [1975.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56552_BALBc-1_X02_Y02_466_269\", \"ini\": 436, \"clust\": 2144, \"rank\": 2740, \"rankvar\": 2567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2390, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1458, \"cat-2\": \"Density: 23\", \"cat_2_index\": 436, \"group\": [2144.0, 1161.0, 342.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56674_BALBc-1_X02_Y02_467_624\", \"ini\": 435, \"clust\": 2549, \"rank\": 2457, \"rankvar\": 2520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2391, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 496, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1804, \"group\": [2552.0, 1375.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56705_BALBc-1_X02_Y02_467_999\", \"ini\": 434, \"clust\": 1911, \"rank\": 2398, \"rankvar\": 1838, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2392, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1459, \"cat-2\": \"Density: 21\", \"cat_2_index\": 237, \"group\": [1912.0, 1098.0, 336.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56787_BALBc-1_X02_Y02_469_24\", \"ini\": 433, \"clust\": 380, \"rank\": 785, \"rankvar\": 903, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2393, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1460, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2119, \"group\": [379.0, 263.0, 91.0, 26.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56914_BALBc-1_X02_Y02_47_868\", \"ini\": 432, \"clust\": 1775, \"rank\": 1802, \"rankvar\": 2063, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2394, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1461, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1805, \"group\": [1778.0, 1009.0, 305.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57003_BALBc-1_X02_Y02_470_953\", \"ini\": 431, \"clust\": 143, \"rank\": 1589, \"rankvar\": 464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2395, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 635, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1443, \"group\": [143.0, 89.0, 29.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57113_BALBc-1_X02_Y02_472_681\", \"ini\": 430, \"clust\": 2285, \"rank\": 2277, \"rankvar\": 1145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2396, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 497, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2352, \"group\": [2284.0, 1243.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57374_BALBc-1_X02_Y02_475_756\", \"ini\": 429, \"clust\": 922, \"rank\": 64, \"rankvar\": 397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2397, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 498, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2414, \"group\": [922.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57405_BALBc-1_X02_Y02_476_220\", \"ini\": 428, \"clust\": 148, \"rank\": 1268, \"rankvar\": 466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2398, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2705, \"cat-2\": \"Density: 26\", \"cat_2_index\": 843, \"group\": [149.0, 93.0, 30.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57527_BALBc-1_X02_Y02_477_735\", \"ini\": 427, \"clust\": 2371, \"rank\": 2317, \"rankvar\": 440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2399, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 499, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2496, \"group\": [2370.0, 1264.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57580_BALBc-1_X02_Y02_478_330\", \"ini\": 426, \"clust\": 2583, \"rank\": 1533, \"rankvar\": 1669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2400, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1462, \"cat-2\": \"Density: 18\", \"cat_2_index\": 108, \"group\": [2582.0, 1395.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57688_BALBc-1_X02_Y02_479_626\", \"ini\": 425, \"clust\": 2226, \"rank\": 1689, \"rankvar\": 1656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2401, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 500, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1566, \"group\": [2225.0, 1204.0, 356.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57711_BALBc-1_X02_Y02_48_105\", \"ini\": 424, \"clust\": 1639, \"rank\": 2092, \"rankvar\": 2573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2402, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2464, \"cat-2\": \"Density: 22\", \"cat_2_index\": 324, \"group\": [1638.0, 902.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57920_BALBc-1_X02_Y02_481_785\", \"ini\": 423, \"clust\": 144, \"rank\": 1783, \"rankvar\": 1558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2403, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 501, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2282, \"group\": [144.0, 89.0, 29.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58105_BALBc-1_X02_Y02_484_252\", \"ini\": 422, \"clust\": 72, \"rank\": 511, \"rankvar\": 530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2404, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1463, \"cat-2\": \"Density: 23\", \"cat_2_index\": 437, \"group\": [73.0, 54.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58124_BALBc-1_X02_Y02_484_432\", \"ini\": 421, \"clust\": 2624, \"rank\": 1599, \"rankvar\": 2475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2405, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1464, \"cat-2\": \"Density: 20\", \"cat_2_index\": 181, \"group\": [2624.0, 1417.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58170_BALBc-1_X02_Y02_484_987\", \"ini\": 420, \"clust\": 2343, \"rank\": 2153, \"rankvar\": 898, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2406, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 502, \"cat-2\": \"Density: 24\", \"cat_2_index\": 556, \"group\": [2340.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58222_BALBc-1_X02_Y02_485_578\", \"ini\": 419, \"clust\": 2664, \"rank\": 2713, \"rankvar\": 2261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2407, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2706, \"cat-2\": \"Density: 27\", \"cat_2_index\": 993, \"group\": [2662.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58242_BALBc-1_X02_Y02_485_832\", \"ini\": 418, \"clust\": 2028, \"rank\": 2303, \"rankvar\": 1008, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2408, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 503, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2415, \"group\": [2028.0, 1142.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58476_BALBc-1_X02_Y02_488_845\", \"ini\": 417, \"clust\": 1112, \"rank\": 386, \"rankvar\": 145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2409, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 504, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2353, \"group\": [1111.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58566_BALBc-1_X02_Y02_489_956\", \"ini\": 416, \"clust\": 2390, \"rank\": 2258, \"rankvar\": 1532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2410, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 636, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1567, \"group\": [2390.0, 1267.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58719_BALBc-1_X02_Y02_491_17\", \"ini\": 415, \"clust\": 10, \"rank\": 1319, \"rankvar\": 677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2411, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1465, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2283, \"group\": [10.0, 9.0, 6.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58720_BALBc-1_X02_Y02_491_183\", \"ini\": 414, \"clust\": 333, \"rank\": 887, \"rankvar\": 1521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2412, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 505, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1444, \"group\": [336.0, 236.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58765_BALBc-1_X02_Y02_491_801\", \"ini\": 413, \"clust\": 2334, \"rank\": 1946, \"rankvar\": 1473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2413, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 506, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2497, \"group\": [2331.0, 1255.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58869_BALBc-1_X02_Y02_493_117\", \"ini\": 412, \"clust\": 405, \"rank\": 728, \"rankvar\": 47, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2414, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1466, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1568, \"group\": [405.0, 283.0, 96.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58906_BALBc-1_X02_Y02_493_620\", \"ini\": 411, \"clust\": 1929, \"rank\": 2732, \"rankvar\": 2788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2415, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 507, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1698, \"group\": [1928.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58994_BALBc-1_X02_Y02_494_645\", \"ini\": 410, \"clust\": 1974, \"rank\": 2651, \"rankvar\": 2607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2416, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 508, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1806, \"group\": [1970.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59111_BALBc-1_X02_Y02_496_195\", \"ini\": 409, \"clust\": 794, \"rank\": 71, \"rankvar\": 1733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2417, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 727, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1144, \"group\": [793.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59190_BALBc-1_X02_Y02_496_937\", \"ini\": 408, \"clust\": 36, \"rank\": 756, \"rankvar\": 798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2418, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 637, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2020, \"group\": [36.0, 31.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59361_BALBc-1_X02_Y02_499_164\", \"ini\": 407, \"clust\": 168, \"rank\": 850, \"rankvar\": 228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2419, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 728, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1569, \"group\": [172.0, 111.0, 37.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59627_BALBc-1_X02_Y02_501_380\", \"ini\": 406, \"clust\": 151, \"rank\": 1872, \"rankvar\": 1880, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2420, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1467, \"cat-2\": \"Density: 20\", \"cat_2_index\": 182, \"group\": [151.0, 94.0, 31.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59630_BALBc-1_X02_Y02_501_406\", \"ini\": 405, \"clust\": 1068, \"rank\": 295, \"rankvar\": 624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2421, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 509, \"cat-2\": \"Density: 21\", \"cat_2_index\": 238, \"group\": [1067.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59720_BALBc-1_X02_Y02_502_671\", \"ini\": 404, \"clust\": 146, \"rank\": 1033, \"rankvar\": 1137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2422, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 510, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1807, \"group\": [147.0, 91.0, 30.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59726_BALBc-1_X02_Y02_502_707\", \"ini\": 403, \"clust\": 2429, \"rank\": 1047, \"rankvar\": 192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2423, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 511, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2592, \"group\": [2430.0, 1294.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59879_BALBc-1_X02_Y02_504_867\", \"ini\": 402, \"clust\": 1957, \"rank\": 2597, \"rankvar\": 1570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2424, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 638, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2120, \"group\": [1958.0, 1117.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59993_BALBc-1_X02_Y02_506_250\", \"ini\": 401, \"clust\": 2560, \"rank\": 2246, \"rankvar\": 1831, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2425, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1468, \"cat-2\": \"Density: 25\", \"cat_2_index\": 697, \"group\": [2561.0, 1382.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60209_BALBc-1_X02_Y02_508_95\", \"ini\": 400, \"clust\": 300, \"rank\": 459, \"rankvar\": 1348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2426, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 928, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1808, \"group\": [302.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60246_BALBc-1_X02_Y02_509_500\", \"ini\": 399, \"clust\": 2786, \"rank\": 1908, \"rankvar\": 2074, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2427, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2707, \"cat-2\": \"Density: 22\", \"cat_2_index\": 325, \"group\": [2787.0, 1509.0, 449.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60484_BALBc-1_X02_Y02_511_481\", \"ini\": 398, \"clust\": 2212, \"rank\": 1612, \"rankvar\": 943, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2428, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1469, \"cat-2\": \"Density: 19\", \"cat_2_index\": 131, \"group\": [2213.0, 1194.0, 352.0, 96.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60509_BALBc-1_X02_Y02_511_799\", \"ini\": 397, \"clust\": 2264, \"rank\": 1395, \"rankvar\": 117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2429, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 512, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2498, \"group\": [2265.0, 1236.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60571_BALBc-1_X02_Y02_512_687\", \"ini\": 396, \"clust\": 2294, \"rank\": 1894, \"rankvar\": 1266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2430, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 513, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2121, \"group\": [2295.0, 1250.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60617_BALBc-1_X02_Y02_513_306\", \"ini\": 395, \"clust\": 2783, \"rank\": 2033, \"rankvar\": 1454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2431, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1470, \"cat-2\": \"Density: 22\", \"cat_2_index\": 326, \"group\": [2784.0, 1507.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60829_BALBc-1_X02_Y02_515_980\", \"ini\": 394, \"clust\": 1064, \"rank\": 330, \"rankvar\": 739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2432, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 639, \"cat-2\": \"Density: 24\", \"cat_2_index\": 557, \"group\": [1063.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60871_BALBc-1_X02_Y02_516_759\", \"ini\": 393, \"clust\": 2666, \"rank\": 2589, \"rankvar\": 1696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2433, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 514, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2541, \"group\": [2667.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61279_BALBc-1_X02_Y02_520_66\", \"ini\": 392, \"clust\": 167, \"rank\": 1342, \"rankvar\": 882, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2434, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1987, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1906, \"group\": [167.0, 108.0, 35.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61334_BALBc-1_X02_Y02_521_353\", \"ini\": 391, \"clust\": 932, \"rank\": 586, \"rankvar\": 519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2435, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2803, \"cat-2\": \"Density: 21\", \"cat_2_index\": 239, \"group\": [935.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61348_BALBc-1_X02_Y02_521_546\", \"ini\": 390, \"clust\": 1935, \"rank\": 2726, \"rankvar\": 2279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2436, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2708, \"cat-2\": \"Density: 24\", \"cat_2_index\": 558, \"group\": [1935.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61372_BALBc-1_X02_Y02_521_896\", \"ini\": 389, \"clust\": 2358, \"rank\": 1993, \"rankvar\": 441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2437, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 640, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2416, \"group\": [2360.0, 1260.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61534_BALBc-1_X02_Y02_523_860\", \"ini\": 388, \"clust\": 1930, \"rank\": 2769, \"rankvar\": 2746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2438, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 515, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2354, \"group\": [1929.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61617_BALBc-1_X02_Y02_525_120\", \"ini\": 387, \"clust\": 626, \"rank\": 387, \"rankvar\": 322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2439, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 929, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1907, \"group\": [628.0, 423.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61773_BALBc-1_X02_Y02_527_152\", \"ini\": 386, \"clust\": 1173, \"rank\": 1049, \"rankvar\": 1621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2440, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 729, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1570, \"group\": [1175.0, 568.0, 157.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61824_BALBc-1_X02_Y02_527_636\", \"ini\": 385, \"clust\": 2322, \"rank\": 2051, \"rankvar\": 1177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2441, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2709, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1445, \"group\": [2320.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61842_BALBc-1_X02_Y02_527_845\", \"ini\": 384, \"clust\": 2705, \"rank\": 2531, \"rankvar\": 2067, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2442, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 516, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2499, \"group\": [2713.0, 1456.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61916_BALBc-1_X02_Y02_528_823\", \"ini\": 383, \"clust\": 971, \"rank\": 1034, \"rankvar\": 260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2443, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 517, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2355, \"group\": [971.0, 497.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61962_BALBc-1_X02_Y02_529_428\", \"ini\": 382, \"clust\": 1196, \"rank\": 1029, \"rankvar\": 333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2444, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 518, \"cat-2\": \"Density: 23\", \"cat_2_index\": 438, \"group\": [1197.0, 590.0, 166.0, 44.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61994_BALBc-1_X02_Y02_529_877\", \"ini\": 381, \"clust\": 2460, \"rank\": 1393, \"rankvar\": 638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2445, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 519, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2284, \"group\": [2463.0, 1311.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62001_BALBc-1_X02_Y02_529_999\", \"ini\": 380, \"clust\": 1978, \"rank\": 2777, \"rankvar\": 2504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2446, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 520, \"cat-2\": \"Density: 19\", \"cat_2_index\": 132, \"group\": [1973.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62024_BALBc-1_X02_Y02_53_346\", \"ini\": 379, \"clust\": 298, \"rank\": 1042, \"rankvar\": 2737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2447, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1588, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1301, \"group\": [297.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62088_BALBc-1_X02_Y02_530_268\", \"ini\": 378, \"clust\": 87, \"rank\": 812, \"rankvar\": 438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2448, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1471, \"cat-2\": \"Density: 23\", \"cat_2_index\": 439, \"group\": [88.0, 64.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62119_BALBc-1_X02_Y02_530_680\", \"ini\": 377, \"clust\": 2353, \"rank\": 2480, \"rankvar\": 1682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2449, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 521, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1908, \"group\": [2348.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62139_BALBc-1_X02_Y02_530_910\", \"ini\": 376, \"clust\": 1936, \"rank\": 1721, \"rankvar\": 1485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2450, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 522, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2356, \"group\": [1937.0, 1110.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62142_BALBc-1_X02_Y02_530_925\", \"ini\": 375, \"clust\": 2257, \"rank\": 1510, \"rankvar\": 1393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2451, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 641, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2357, \"group\": [2282.0, 1242.0, 374.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62170_BALBc-1_X02_Y02_531_40\", \"ini\": 374, \"clust\": 884, \"rank\": 10, \"rankvar\": 377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2452, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2246, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1809, \"group\": [884.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62352_BALBc-1_X02_Y02_533_593\", \"ini\": 373, \"clust\": 2777, \"rank\": 1948, \"rankvar\": 2089, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2453, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2710, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1145, \"group\": [2780.0, 1505.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62487_BALBc-1_X02_Y02_535_456\", \"ini\": 372, \"clust\": 1879, \"rank\": 1095, \"rankvar\": 644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2454, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2711, \"cat-2\": \"Density: 22\", \"cat_2_index\": 327, \"group\": [1878.0, 1068.0, 324.0, 90.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62584_BALBc-1_X02_Y02_536_793\", \"ini\": 371, \"clust\": 1062, \"rank\": 731, \"rankvar\": 225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2455, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 523, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2285, \"group\": [1064.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62698_BALBc-1_X02_Y02_538_395\", \"ini\": 370, \"clust\": 2575, \"rank\": 2338, \"rankvar\": 2635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2456, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2804, \"cat-2\": \"Density: 23\", \"cat_2_index\": 440, \"group\": [2576.0, 1392.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62842_BALBc-1_X02_Y02_54_556\", \"ini\": 369, \"clust\": 1866, \"rank\": 2022, \"rankvar\": 2052, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2457, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1573, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1146, \"group\": [1866.0, 1057.0, 319.0, 88.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62982_BALBc-1_X02_Y02_541_688\", \"ini\": 368, \"clust\": 2794, \"rank\": 1520, \"rankvar\": 1002, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2458, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 524, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2021, \"group\": [2793.0, 1514.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63073_BALBc-1_X02_Y02_542_677\", \"ini\": 367, \"clust\": 353, \"rank\": 1314, \"rankvar\": 714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2459, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 525, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1810, \"group\": [354.0, 248.0, 87.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63152_BALBc-1_X02_Y02_543_663\", \"ini\": 366, \"clust\": 860, \"rank\": 286, \"rankvar\": 61, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2460, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2712, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1302, \"group\": [861.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63263_BALBc-1_X02_Y02_544_724\", \"ini\": 365, \"clust\": 2490, \"rank\": 1687, \"rankvar\": 1571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2461, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1472, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2195, \"group\": [2490.0, 1337.0, 399.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63356_BALBc-1_X02_Y02_545_764\", \"ini\": 364, \"clust\": 2459, \"rank\": 1150, \"rankvar\": 476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2462, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 526, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2417, \"group\": [2458.0, 1307.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63594_BALBc-1_X02_Y02_548_836\", \"ini\": 363, \"clust\": 2668, \"rank\": 2757, \"rankvar\": 2411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2463, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 527, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2500, \"group\": [2669.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63611_BALBc-1_X02_Y02_548_990\", \"ini\": 362, \"clust\": 745, \"rank\": 193, \"rankvar\": 968, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2464, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 642, \"cat-2\": \"Density: 21\", \"cat_2_index\": 240, \"group\": [744.0, 470.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63621_BALBc-1_X02_Y02_549_222\", \"ini\": 361, \"clust\": 1249, \"rank\": 1913, \"rankvar\": 2097, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2465, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2713, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1571, \"group\": [1249.0, 630.0, 180.0, 50.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63732_BALBc-1_X02_Y02_55_601\", \"ini\": 360, \"clust\": 2328, \"rank\": 1820, \"rankvar\": 1210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2466, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 946, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1303, \"group\": [2328.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63834_BALBc-1_X02_Y02_550_878\", \"ini\": 359, \"clust\": 2639, \"rank\": 2316, \"rankvar\": 685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2467, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 528, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2286, \"group\": [2638.0, 1430.0, 422.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64028_BALBc-1_X02_Y02_553_519\", \"ini\": 358, \"clust\": 1925, \"rank\": 2354, \"rankvar\": 2129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2468, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 864, \"cat-2\": \"Density: 22\", \"cat_2_index\": 328, \"group\": [1925.0, 1106.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64073_BALBc-1_X02_Y02_553_924\", \"ini\": 357, \"clust\": 1086, \"rank\": 258, \"rankvar\": 567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2469, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 643, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2196, \"group\": [1087.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64372_BALBc-1_X02_Y02_558_116\", \"ini\": 356, \"clust\": 1685, \"rank\": 1950, \"rankvar\": 1821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2470, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 930, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1811, \"group\": [1683.0, 940.0, 279.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64456_BALBc-1_X02_Y02_558_995\", \"ini\": 355, \"clust\": 2690, \"rank\": 2786, \"rankvar\": 1905, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2471, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 529, \"cat-2\": \"Density: 22\", \"cat_2_index\": 329, \"group\": [2690.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64463_BALBc-1_X02_Y02_559_16\", \"ini\": 354, \"clust\": 667, \"rank\": 451, \"rankvar\": 1834, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2472, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2247, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1699, \"group\": [670.0, 443.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64505_BALBc-1_X02_Y02_559_58\", \"ini\": 353, \"clust\": 560, \"rank\": 902, \"rankvar\": 297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2473, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 931, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1909, \"group\": [560.0, 384.0, 128.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64571_BALBc-1_X02_Y02_56_412\", \"ini\": 352, \"clust\": 1794, \"rank\": 2294, \"rankvar\": 2701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2474, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2714, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2122, \"group\": [1792.0, 1015.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64626_BALBc-1_X02_Y02_560_186\", \"ini\": 351, \"clust\": 601, \"rank\": 292, \"rankvar\": 244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2475, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 730, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1700, \"group\": [601.0, 411.0, 134.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64676_BALBc-1_X02_Y02_560_746\", \"ini\": 350, \"clust\": 2044, \"rank\": 2180, \"rankvar\": 935, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2476, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1473, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2123, \"group\": [2048.0, 1147.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64706_BALBc-1_X02_Y02_561_129\", \"ini\": 349, \"clust\": 108, \"rank\": 907, \"rankvar\": 1190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2477, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1474, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1910, \"group\": [111.0, 68.0, 23.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64758_BALBc-1_X02_Y02_561_689\", \"ini\": 348, \"clust\": 2801, \"rank\": 1292, \"rankvar\": 1133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2478, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 530, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1812, \"group\": [2800.0, 1519.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64883_BALBc-1_X02_Y02_563_442\", \"ini\": 347, \"clust\": 2797, \"rank\": 1744, \"rankvar\": 1335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2479, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1574, \"cat-2\": \"Density: 26\", \"cat_2_index\": 844, \"group\": [2799.0, 1518.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64889_BALBc-1_X02_Y02_563_483\", \"ini\": 346, \"clust\": 2571, \"rank\": 2328, \"rankvar\": 2535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2480, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2715, \"cat-2\": \"Density: 23\", \"cat_2_index\": 441, \"group\": [2573.0, 1391.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64905_BALBc-1_X02_Y02_563_774\", \"ini\": 345, \"clust\": 271, \"rank\": 1128, \"rankvar\": 1149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 531, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2358, \"group\": [274.0, 196.0, 70.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65149_BALBc-1_X02_Y02_566_81\", \"ini\": 344, \"clust\": 1919, \"rank\": 2155, \"rankvar\": 1106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2482, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 865, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1911, \"group\": [1936.0, 1109.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65186_BALBc-1_X02_Y02_567_271\", \"ini\": 343, \"clust\": 412, \"rank\": 1078, \"rankvar\": 559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2483, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1988, \"cat-2\": \"Density: 25\", \"cat_2_index\": 698, \"group\": [412.0, 289.0, 100.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65292_BALBc-1_X02_Y02_568_797\", \"ini\": 342, \"clust\": 2311, \"rank\": 2096, \"rankvar\": 910, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2484, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 532, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2359, \"group\": [2310.0, 1252.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65906_BALBc-1_X02_Y02_575_921\", \"ini\": 341, \"clust\": 1921, \"rank\": 2286, \"rankvar\": 2000, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2485, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2716, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2197, \"group\": [1921.0, 1104.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66097_BALBc-1_X02_Y02_578_646\", \"ini\": 340, \"clust\": 2680, \"rank\": 2363, \"rankvar\": 1542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2486, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2717, \"cat-2\": \"Density: 27\", \"cat_2_index\": 994, \"group\": [2679.0, 1445.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66183_BALBc-1_X02_Y02_579_966\", \"ini\": 339, \"clust\": 2667, \"rank\": 2653, \"rankvar\": 1142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2487, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 644, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1147, \"group\": [2668.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66339_BALBc-1_X02_Y02_581_317\", \"ini\": 338, \"clust\": 82, \"rank\": 809, \"rankvar\": 839, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2488, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1989, \"cat-2\": \"Density: 23\", \"cat_2_index\": 442, \"group\": [82.0, 61.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66357_BALBc-1_X02_Y02_581_49\", \"ini\": 337, \"clust\": 84, \"rank\": 875, \"rankvar\": 1702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2489, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1678, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2022, \"group\": [85.0, 63.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66415_BALBc-1_X02_Y02_582_178\", \"ini\": 336, \"clust\": 1647, \"rank\": 1431, \"rankvar\": 2756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2490, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2496, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1572, \"group\": [1643.0, 905.0, 262.0, 74.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66616_BALBc-1_X02_Y02_584_773\", \"ini\": 335, \"clust\": 2177, \"rank\": 1528, \"rankvar\": 1618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2491, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 533, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2198, \"group\": [2179.0, 1183.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66755_BALBc-1_X02_Y02_586_349\", \"ini\": 334, \"clust\": 1696, \"rank\": 2340, \"rankvar\": 2806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2718, \"cat-2\": \"Density: 23\", \"cat_2_index\": 443, \"group\": [1696.0, 953.0, 285.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66774_BALBc-1_X02_Y02_586_530\", \"ini\": 333, \"clust\": 2620, \"rank\": 2523, \"rankvar\": 2757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2493, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2719, \"cat-2\": \"Density: 22\", \"cat_2_index\": 330, \"group\": [2620.0, 1416.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66875_BALBc-1_X02_Y02_587_790\", \"ini\": 332, \"clust\": 2589, \"rank\": 1323, \"rankvar\": 1781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2494, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 534, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2199, \"group\": [2594.0, 1402.0, 415.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66943_BALBc-1_X02_Y02_588_705\", \"ini\": 331, \"clust\": 2286, \"rank\": 2595, \"rankvar\": 2137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2495, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1475, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1912, \"group\": [2288.0, 1245.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67033_BALBc-1_X02_Y02_589_854\", \"ini\": 330, \"clust\": 788, \"rank\": 296, \"rankvar\": 320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2496, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 535, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2418, \"group\": [789.0, 478.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67050_BALBc-1_X02_Y02_59_136\", \"ini\": 329, \"clust\": 241, \"rank\": 710, \"rankvar\": 917, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2497, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2720, \"cat-2\": \"Density: 22\", \"cat_2_index\": 331, \"group\": [240.0, 167.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67117_BALBc-1_X02_Y02_59_886\", \"ini\": 328, \"clust\": 1754, \"rank\": 1931, \"rankvar\": 2389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2498, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1476, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1304, \"group\": [1755.0, 994.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67206_BALBc-1_X02_Y02_590_941\", \"ini\": 327, \"clust\": 1018, \"rank\": 427, \"rankvar\": 267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2499, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2721, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1913, \"group\": [1016.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67342_BALBc-1_X02_Y02_592_741\", \"ini\": 326, \"clust\": 1826, \"rank\": 2432, \"rankvar\": 2230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2500, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1477, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2287, \"group\": [1837.0, 1031.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67356_BALBc-1_X02_Y02_592_870\", \"ini\": 325, \"clust\": 1976, \"rank\": 2681, \"rankvar\": 2330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2501, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2722, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2200, \"group\": [1974.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67680_BALBc-1_X02_Y02_596_996\", \"ini\": 324, \"clust\": 737, \"rank\": 796, \"rankvar\": 156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2502, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 536, \"cat-2\": \"Density: 21\", \"cat_2_index\": 241, \"group\": [741.0, 468.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67689_BALBc-1_X02_Y02_597_244\", \"ini\": 323, \"clust\": 686, \"rank\": 563, \"rankvar\": 1011, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2503, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1759, \"cat-2\": \"Density: 24\", \"cat_2_index\": 559, \"group\": [686.0, 451.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67735_BALBc-1_X02_Y02_597_815\", \"ini\": 322, \"clust\": 2597, \"rank\": 1541, \"rankvar\": 2201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2504, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 537, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2288, \"group\": [2596.0, 1403.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67822_BALBc-1_X02_Y02_598_971\", \"ini\": 321, \"clust\": 1882, \"rank\": 1834, \"rankvar\": 1867, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2505, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 538, \"cat-2\": \"Density: 25\", \"cat_2_index\": 699, \"group\": [1883.0, 1073.0, 327.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67827_BALBc-1_X02_Y02_599_124\", \"ini\": 320, \"clust\": 2825, \"rank\": 2229, \"rankvar\": 2008, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2506, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1478, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1573, \"group\": [2823.0, 1534.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67881_BALBc-1_X02_Y02_599_836\", \"ini\": 319, \"clust\": 1187, \"rank\": 1489, \"rankvar\": 838, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2507, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 539, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2501, \"group\": [1187.0, 580.0, 161.0, 42.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68161_BALBc-1_X02_Y02_602_173\", \"ini\": 318, \"clust\": 1411, \"rank\": 1493, \"rankvar\": 2088, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2508, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1479, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1305, \"group\": [1412.0, 761.0, 225.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68329_BALBc-1_X02_Y02_604_479\", \"ini\": 317, \"clust\": 2655, \"rank\": 2463, \"rankvar\": 2027, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2509, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2465, \"cat-2\": \"Density: 26\", \"cat_2_index\": 845, \"group\": [2656.0, 1442.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68364_BALBc-1_X02_Y02_604_898\", \"ini\": 316, \"clust\": 484, \"rank\": 698, \"rankvar\": 248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2510, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2723, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2201, \"group\": [485.0, 332.0, 114.0, 32.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68650_BALBc-1_X02_Y02_608_247\", \"ini\": 315, \"clust\": 19, \"rank\": 942, \"rankvar\": 369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2511, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1679, \"cat-2\": \"Density: 24\", \"cat_2_index\": 560, \"group\": [20.0, 19.0, 11.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68746_BALBc-1_X02_Y02_609_287\", \"ini\": 314, \"clust\": 1845, \"rank\": 2416, \"rankvar\": 1762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2512, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 540, \"cat-2\": \"Density: 24\", \"cat_2_index\": 561, \"group\": [1846.0, 1039.0, 312.0, 86.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68769_BALBc-1_X02_Y02_609_505\", \"ini\": 313, \"clust\": 972, \"rank\": 770, \"rankvar\": 601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2513, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2724, \"cat-2\": \"Density: 21\", \"cat_2_index\": 242, \"group\": [975.0, 500.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68812_BALBc-1_X02_Y02_61_160\", \"ini\": 312, \"clust\": 2501, \"rank\": 2144, \"rankvar\": 2208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2514, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 541, \"cat-2\": \"Density: 19\", \"cat_2_index\": 133, \"group\": [2503.0, 1345.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68919_BALBc-1_X02_Y02_610_685\", \"ini\": 311, \"clust\": 2606, \"rank\": 1753, \"rankvar\": 2064, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2515, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1480, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1813, \"group\": [2605.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68936_BALBc-1_X02_Y02_610_908\", \"ini\": 310, \"clust\": 1932, \"rank\": 2592, \"rankvar\": 2128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2516, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2725, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2202, \"group\": [1931.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69083_BALBc-1_X02_Y02_612_642\", \"ini\": 309, \"clust\": 2213, \"rank\": 1711, \"rankvar\": 1201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2517, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1481, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1148, \"group\": [2214.0, 1195.0, 353.0, 96.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69172_BALBc-1_X02_Y02_613_941\", \"ini\": 308, \"clust\": 1969, \"rank\": 2242, \"rankvar\": 1799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2518, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2726, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1574, \"group\": [1966.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69269_BALBc-1_X02_Y02_615_12\", \"ini\": 307, \"clust\": 235, \"rank\": 936, \"rankvar\": 549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2519, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1482, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1575, \"group\": [237.0, 165.0, 58.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69314_BALBc-1_X02_Y02_615_721\", \"ini\": 306, \"clust\": 42, \"rank\": 746, \"rankvar\": 1999, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2520, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1483, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2023, \"group\": [41.0, 35.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69385_BALBc-1_X02_Y02_616_708\", \"ini\": 305, \"clust\": 1850, \"rank\": 2339, \"rankvar\": 1709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2521, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 542, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1814, \"group\": [1852.0, 1044.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69392_BALBc-1_X02_Y02_616_80\", \"ini\": 304, \"clust\": 1191, \"rank\": 1374, \"rankvar\": 1089, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2522, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 866, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1815, \"group\": [1189.0, 582.0, 162.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69516_BALBc-1_X02_Y02_618_346\", \"ini\": 303, \"clust\": 763, \"rank\": 300, \"rankvar\": 972, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2523, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2727, \"cat-2\": \"Density: 26\", \"cat_2_index\": 846, \"group\": [764.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69550_BALBc-1_X02_Y02_618_772\", \"ini\": 302, \"clust\": 1960, \"rank\": 2420, \"rankvar\": 2015, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2524, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1680, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2124, \"group\": [1977.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69694_BALBc-1_X02_Y02_62_685\", \"ini\": 301, \"clust\": 1812, \"rank\": 2403, \"rankvar\": 2643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2525, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1484, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1576, \"group\": [1812.0, 1024.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69845_BALBc-1_X02_Y02_621_738\", \"ini\": 300, \"clust\": 1849, \"rank\": 1902, \"rankvar\": 1741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2526, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 543, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2125, \"group\": [1853.0, 1045.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69869_BALBc-1_X02_Y02_621_980\", \"ini\": 299, \"clust\": 1950, \"rank\": 1994, \"rankvar\": 1374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2527, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 544, \"cat-2\": \"Density: 22\", \"cat_2_index\": 332, \"group\": [1949.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69947_BALBc-1_X02_Y02_622_856\", \"ini\": 298, \"clust\": 1964, \"rank\": 2199, \"rankvar\": 1464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2528, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2728, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2419, \"group\": [1968.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70036_BALBc-1_X02_Y02_623_791\", \"ini\": 297, \"clust\": 1897, \"rank\": 2100, \"rankvar\": 1193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2529, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1681, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2203, \"group\": [1897.0, 1086.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70145_BALBc-1_X02_Y02_625_402\", \"ini\": 296, \"clust\": 1166, \"rank\": 299, \"rankvar\": 2580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2530, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2332, \"cat-2\": \"Density: 23\", \"cat_2_index\": 444, \"group\": [1167.0, 563.0, 156.0, 40.0, 8.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70178_BALBc-1_X02_Y02_625_825\", \"ini\": 295, \"clust\": 2445, \"rank\": 1839, \"rankvar\": 1437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2531, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1485, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2360, \"group\": [2446.0, 1301.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70445_BALBc-1_X02_Y02_629_611\", \"ini\": 294, \"clust\": 2568, \"rank\": 2437, \"rankvar\": 2516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2532, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2729, \"cat-2\": \"Density: 24\", \"cat_2_index\": 562, \"group\": [2568.0, 1388.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70500_BALBc-1_X02_Y02_63_385\", \"ini\": 293, \"clust\": 299, \"rank\": 373, \"rankvar\": 2420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2533, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2730, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2024, \"group\": [298.0, 212.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70692_BALBc-1_X02_Y02_631_72\", \"ini\": 292, \"clust\": 1397, \"rank\": 1880, \"rankvar\": 1894, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2534, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 545, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1701, \"group\": [1398.0, 748.0, 219.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70695_BALBc-1_X02_Y02_631_748\", \"ini\": 291, \"clust\": 1952, \"rank\": 2040, \"rankvar\": 1594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2535, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1682, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2204, \"group\": [1956.0, 1115.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70916_BALBc-1_X02_Y02_634_5\", \"ini\": 290, \"clust\": 1275, \"rank\": 543, \"rankvar\": 1738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2536, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1683, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1577, \"group\": [1279.0, 653.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70961_BALBc-1_X02_Y02_635_253\", \"ini\": 289, \"clust\": 1006, \"rank\": 865, \"rankvar\": 733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2537, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1684, \"cat-2\": \"Density: 24\", \"cat_2_index\": 563, \"group\": [1007.0, 513.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71202_BALBc-1_X02_Y02_638_308\", \"ini\": 288, \"clust\": 2815, \"rank\": 1555, \"rankvar\": 2236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2538, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1486, \"cat-2\": \"Density: 24\", \"cat_2_index\": 564, \"group\": [2814.0, 1528.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71220_BALBc-1_X02_Y02_638_474\", \"ini\": 287, \"clust\": 2784, \"rank\": 2471, \"rankvar\": 2220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2539, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2731, \"cat-2\": \"Density: 26\", \"cat_2_index\": 847, \"group\": [2785.0, 1507.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71595_BALBc-1_X02_Y02_642_520\", \"ini\": 286, \"clust\": 1177, \"rank\": 1310, \"rankvar\": 429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2540, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2732, \"cat-2\": \"Density: 22\", \"cat_2_index\": 333, \"group\": [1178.0, 571.0, 158.0, 41.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71629_BALBc-1_X02_Y02_642_830\", \"ini\": 285, \"clust\": 1758, \"rank\": 1530, \"rankvar\": 2307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2541, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1487, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2289, \"group\": [1757.0, 995.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71736_BALBc-1_X02_Y02_644_115\", \"ini\": 284, \"clust\": 2413, \"rank\": 1349, \"rankvar\": 741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 867, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1702, \"group\": [2414.0, 1284.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71739_BALBc-1_X02_Y02_644_155\", \"ini\": 283, \"clust\": 1304, \"rank\": 2017, \"rankvar\": 1995, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2543, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1760, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1816, \"group\": [1305.0, 676.0, 199.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71744_BALBc-1_X02_Y02_644_213\", \"ini\": 282, \"clust\": 1984, \"rank\": 2576, \"rankvar\": 1839, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2544, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1761, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1578, \"group\": [1986.0, 1124.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71785_BALBc-1_X02_Y02_644_568\", \"ini\": 281, \"clust\": 2621, \"rank\": 2621, \"rankvar\": 2804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2545, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2733, \"cat-2\": \"Density: 23\", \"cat_2_index\": 445, \"group\": [2621.0, 1416.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71963_BALBc-1_X02_Y02_646_955\", \"ini\": 280, \"clust\": 2061, \"rank\": 2551, \"rankvar\": 1134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2546, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2183, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1149, \"group\": [2063.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72006_BALBc-1_X02_Y02_647_56\", \"ini\": 279, \"clust\": 665, \"rank\": 177, \"rankvar\": 1048, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2547, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 546, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1703, \"group\": [664.0, 440.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72118_BALBc-1_X02_Y02_648_980\", \"ini\": 278, \"clust\": 906, \"rank\": 62, \"rankvar\": 41, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2548, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 547, \"cat-2\": \"Density: 25\", \"cat_2_index\": 700, \"group\": [904.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72144_BALBc-1_X02_Y02_649_345\", \"ini\": 277, \"clust\": 2779, \"rank\": 2226, \"rankvar\": 2159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2549, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2333, \"cat-2\": \"Density: 24\", \"cat_2_index\": 565, \"group\": [2779.0, 1504.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72328_BALBc-1_X02_Y02_650_881\", \"ini\": 276, \"clust\": 2313, \"rank\": 2154, \"rankvar\": 1116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2550, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2734, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2126, \"group\": [2311.0, 1253.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72406_BALBc-1_X02_Y02_651_83\", \"ini\": 275, \"clust\": 829, \"rank\": 181, \"rankvar\": 446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 548, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2025, \"group\": [828.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72482_BALBc-1_X02_Y02_652_908\", \"ini\": 274, \"clust\": 2047, \"rank\": 2298, \"rankvar\": 1598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2552, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2184, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2205, \"group\": [2046.0, 1146.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72586_BALBc-1_X02_Y02_654_266\", \"ini\": 273, \"clust\": 106, \"rank\": 874, \"rankvar\": 1706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2553, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1488, \"cat-2\": \"Density: 24\", \"cat_2_index\": 566, \"group\": [106.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72771_BALBc-1_X02_Y02_656_677\", \"ini\": 272, \"clust\": 550, \"rank\": 906, \"rankvar\": 555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2554, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1489, \"cat-2\": \"Density: 27\", \"cat_2_index\": 995, \"group\": [553.0, 378.0, 125.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72775_BALBc-1_X02_Y02_656_705\", \"ini\": 271, \"clust\": 2569, \"rank\": 1895, \"rankvar\": 1911, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2555, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 549, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1817, \"group\": [2569.0, 1389.0, 413.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72872_BALBc-1_X02_Y02_657_832\", \"ini\": 270, \"clust\": 1829, \"rank\": 2719, \"rankvar\": 2542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2556, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1490, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2290, \"group\": [1831.0, 1030.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73062_BALBc-1_X02_Y02_66_601\", \"ini\": 269, \"clust\": 1076, \"rank\": 495, \"rankvar\": 631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2557, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 550, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1306, \"group\": [1077.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73332_BALBc-1_X02_Y02_662_61\", \"ini\": 268, \"clust\": 310, \"rank\": 2122, \"rankvar\": 2675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2558, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 551, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1579, \"group\": [314.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73887_BALBc-1_X02_Y02_67_263\", \"ini\": 267, \"clust\": 196, \"rank\": 416, \"rankvar\": 651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2559, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2735, \"cat-2\": \"Density: 19\", \"cat_2_index\": 134, \"group\": [196.0, 131.0, 45.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73953_BALBc-1_X02_Y02_670_242\", \"ini\": 266, \"clust\": 2817, \"rank\": 1603, \"rankvar\": 1500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2560, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1491, \"cat-2\": \"Density: 23\", \"cat_2_index\": 446, \"group\": [2816.0, 1530.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73968_BALBc-1_X02_Y02_670_412\", \"ini\": 265, \"clust\": 659, \"rank\": 303, \"rankvar\": 658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2561, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2736, \"cat-2\": \"Density: 23\", \"cat_2_index\": 447, \"group\": [658.0, 439.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73976_BALBc-1_X02_Y02_670_483\", \"ini\": 264, \"clust\": 43, \"rank\": 389, \"rankvar\": 1819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2562, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1492, \"cat-2\": \"Density: 24\", \"cat_2_index\": 567, \"group\": [42.0, 35.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74149_BALBc-1_X02_Y02_672_855\", \"ini\": 263, \"clust\": 728, \"rank\": 274, \"rankvar\": 176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2563, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 552, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2502, \"group\": [728.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74167_BALBc-1_X02_Y02_673_108\", \"ini\": 262, \"clust\": 628, \"rank\": 609, \"rankvar\": 511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2564, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 932, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1150, \"group\": [627.0, 423.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74236_BALBc-1_X02_Y02_673_890\", \"ini\": 261, \"clust\": 1056, \"rank\": 548, \"rankvar\": 527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2565, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 553, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2206, \"group\": [1056.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74383_BALBc-1_X02_Y02_675_456\", \"ini\": 260, \"clust\": 406, \"rank\": 755, \"rankvar\": 1365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2566, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1493, \"cat-2\": \"Density: 24\", \"cat_2_index\": 568, \"group\": [406.0, 284.0, 96.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74388_BALBc-1_X02_Y02_675_540\", \"ini\": 259, \"clust\": 1118, \"rank\": 615, \"rankvar\": 486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2567, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 554, \"cat-2\": \"Density: 24\", \"cat_2_index\": 569, \"group\": [1118.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74441_BALBc-1_X02_Y02_676_169\", \"ini\": 258, \"clust\": 1296, \"rank\": 1182, \"rankvar\": 984, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2568, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 933, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1307, \"group\": [1296.0, 667.0, 193.0, 54.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74508_BALBc-1_X02_Y02_676_991\", \"ini\": 257, \"clust\": 2340, \"rank\": 2237, \"rankvar\": 958, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2569, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 555, \"cat-2\": \"Density: 18\", \"cat_2_index\": 109, \"group\": [2337.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74535_BALBc-1_X02_Y02_677_385\", \"ini\": 256, \"clust\": 2804, \"rank\": 2419, \"rankvar\": 2246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2570, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2334, \"cat-2\": \"Density: 26\", \"cat_2_index\": 848, \"group\": [2805.0, 1523.0, 453.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74729_BALBc-1_X02_Y02_679_790\", \"ini\": 255, \"clust\": 2011, \"rank\": 1997, \"rankvar\": 2335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2571, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1494, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2291, \"group\": [2018.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74731_BALBc-1_X02_Y02_679_812\", \"ini\": 254, \"clust\": 1839, \"rank\": 1328, \"rankvar\": 1229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2572, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1495, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2361, \"group\": [1844.0, 1037.0, 310.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74790_BALBc-1_X02_Y02_68_580\", \"ini\": 253, \"clust\": 2220, \"rank\": 1089, \"rankvar\": 158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2573, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1575, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1151, \"group\": [2220.0, 1201.0, 355.0, 97.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74845_BALBc-1_X02_Y02_680_497\", \"ini\": 252, \"clust\": 1991, \"rank\": 2075, \"rankvar\": 1699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2574, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1496, \"cat-2\": \"Density: 23\", \"cat_2_index\": 448, \"group\": [1989.0, 1125.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74920_BALBc-1_X02_Y02_681_628\", \"ini\": 251, \"clust\": 983, \"rank\": 528, \"rankvar\": 251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1497, \"cat-2\": \"Density: 23\", \"cat_2_index\": 449, \"group\": [982.0, 504.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75012_BALBc-1_X02_Y02_682_927\", \"ini\": 250, \"clust\": 1951, \"rank\": 2012, \"rankvar\": 1769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2576, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2185, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2026, \"group\": [1950.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75078_BALBc-1_X02_Y02_683_754\", \"ini\": 249, \"clust\": 2665, \"rank\": 2720, \"rankvar\": 2416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2577, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1685, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2127, \"group\": [2663.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75093_BALBc-1_X02_Y02_683_961\", \"ini\": 248, \"clust\": 1190, \"rank\": 1451, \"rankvar\": 1575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2578, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2186, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1152, \"group\": [1191.0, 584.0, 162.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75122_BALBc-1_X02_Y02_684_41\", \"ini\": 247, \"clust\": 832, \"rank\": 190, \"rankvar\": 134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2579, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1686, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1580, \"group\": [832.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75210_BALBc-1_X02_Y02_685_709\", \"ini\": 246, \"clust\": 2802, \"rank\": 1526, \"rankvar\": 1240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2580, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 556, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1914, \"group\": [2801.0, 1519.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75222_BALBc-1_X02_Y02_685_85\", \"ini\": 245, \"clust\": 573, \"rank\": 553, \"rankvar\": 597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2581, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 557, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1153, \"group\": [572.0, 391.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75253_BALBc-1_X02_Y02_686_343\", \"ini\": 244, \"clust\": 1258, \"rank\": 1925, \"rankvar\": 1634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2582, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 868, \"cat-2\": \"Density: 22\", \"cat_2_index\": 334, \"group\": [1258.0, 638.0, 183.0, 51.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75823_BALBc-1_X02_Y02_692_891\", \"ini\": 243, \"clust\": 2206, \"rank\": 1203, \"rankvar\": 1627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2583, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 558, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2292, \"group\": [2202.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75887_BALBc-1_X02_Y02_693_684\", \"ini\": 242, \"clust\": 2610, \"rank\": 2227, \"rankvar\": 2317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2584, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 869, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1446, \"group\": [2610.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76096_BALBc-1_X02_Y02_696_645\", \"ini\": 241, \"clust\": 2612, \"rank\": 2359, \"rankvar\": 2242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2585, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 870, \"cat-2\": \"Density: 27\", \"cat_2_index\": 996, \"group\": [2609.0, 1408.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76103_BALBc-1_X02_Y02_696_735\", \"ini\": 240, \"clust\": 977, \"rank\": 582, \"rankvar\": 1221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2586, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 559, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2027, \"group\": [977.0, 501.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76294_BALBc-1_X02_Y02_699_112\", \"ini\": 239, \"clust\": 882, \"rank\": 253, \"rankvar\": 90, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2587, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 934, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1154, \"group\": [885.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76538_BALBc-1_X02_Y02_700_290\", \"ini\": 238, \"clust\": 107, \"rank\": 483, \"rankvar\": 1725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2588, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1498, \"cat-2\": \"Density: 24\", \"cat_2_index\": 570, \"group\": [107.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76553_BALBc-1_X02_Y02_700_423\", \"ini\": 237, \"clust\": 629, \"rank\": 497, \"rankvar\": 1203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2589, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1499, \"cat-2\": \"Density: 23\", \"cat_2_index\": 450, \"group\": [631.0, 424.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76803_BALBc-1_X02_Y02_703_773\", \"ini\": 236, \"clust\": 295, \"rank\": 953, \"rankvar\": 2437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2590, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 560, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2362, \"group\": [296.0, 211.0, 76.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76901_BALBc-1_X02_Y02_704_869\", \"ini\": 235, \"clust\": 1734, \"rank\": 2401, \"rankvar\": 2592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1500, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2207, \"group\": [1732.0, 977.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77001_BALBc-1_X02_Y02_706_34\", \"ini\": 234, \"clust\": 2230, \"rank\": 1919, \"rankvar\": 1183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2592, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1687, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1581, \"group\": [2231.0, 1210.0, 359.0, 98.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77014_BALBc-1_X02_Y02_706_510\", \"ini\": 233, \"clust\": 2806, \"rank\": 1623, \"rankvar\": 1342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2593, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1501, \"cat-2\": \"Density: 24\", \"cat_2_index\": 571, \"group\": [2806.0, 1524.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77039_BALBc-1_X02_Y02_706_830\", \"ini\": 232, \"clust\": 2165, \"rank\": 1423, \"rankvar\": 1069, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2594, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1502, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2420, \"group\": [2162.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77074_BALBc-1_X02_Y02_707_326\", \"ini\": 231, \"clust\": 1838, \"rank\": 1769, \"rankvar\": 691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2595, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1503, \"cat-2\": \"Density: 22\", \"cat_2_index\": 335, \"group\": [1839.0, 1033.0, 309.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77093_BALBc-1_X02_Y02_707_617\", \"ini\": 230, \"clust\": 2550, \"rank\": 2584, \"rankvar\": 2560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2596, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2737, \"cat-2\": \"Density: 27\", \"cat_2_index\": 997, \"group\": [2550.0, 1374.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77135_BALBc-1_X02_Y02_707_975\", \"ini\": 229, \"clust\": 1014, \"rank\": 535, \"rankvar\": 161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2597, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 561, \"cat-2\": \"Density: 23\", \"cat_2_index\": 451, \"group\": [1013.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77220_BALBc-1_X02_Y02_709_226\", \"ini\": 228, \"clust\": 2805, \"rank\": 1882, \"rankvar\": 1909, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2598, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1762, \"cat-2\": \"Density: 21\", \"cat_2_index\": 243, \"group\": [2826.0, 1537.0, 456.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77373_BALBc-1_X02_Y02_710_537\", \"ini\": 227, \"clust\": 2799, \"rank\": 1427, \"rankvar\": 1886, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2599, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1504, \"cat-2\": \"Density: 26\", \"cat_2_index\": 849, \"group\": [2798.0, 1518.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77376_BALBc-1_X02_Y02_710_565\", \"ini\": 226, \"clust\": 2756, \"rank\": 2020, \"rankvar\": 1849, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2600, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2738, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1155, \"group\": [2758.0, 1491.0, 443.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77395_BALBc-1_X02_Y02_710_791\", \"ini\": 225, \"clust\": 1933, \"rank\": 2620, \"rankvar\": 2449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2601, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 562, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2028, \"group\": [1932.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77586_BALBc-1_X02_Y02_712_99\", \"ini\": 224, \"clust\": 1396, \"rank\": 1486, \"rankvar\": 989, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2602, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 563, \"cat-2\": \"Density: 27\", \"cat_2_index\": 998, \"group\": [1399.0, 749.0, 219.0, 62.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77673_BALBc-1_X02_Y02_714_203\", \"ini\": 223, \"clust\": 1450, \"rank\": 2362, \"rankvar\": 2510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2603, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2739, \"cat-2\": \"Density: 24\", \"cat_2_index\": 572, \"group\": [1449.0, 787.0, 235.0, 67.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77790_BALBc-1_X02_Y02_715_74\", \"ini\": 222, \"clust\": 767, \"rank\": 90, \"rankvar\": 1068, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2604, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1990, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1156, \"group\": [768.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77983_BALBc-1_X02_Y02_717_921\", \"ini\": 221, \"clust\": 2325, \"rank\": 2232, \"rankvar\": 1678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2605, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 564, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1915, \"group\": [2323.0, 1254.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78066_BALBc-1_X02_Y02_719_1006\", \"ini\": 220, \"clust\": 2314, \"rank\": 2282, \"rankvar\": 887, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2606, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 565, \"cat-2\": \"Density: 16\", \"cat_2_index\": 65, \"group\": [2312.0, 1253.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78175_BALBc-1_X02_Y02_72_479\", \"ini\": 219, \"clust\": 2397, \"rank\": 2815, \"rankvar\": 2707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2607, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 871, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2029, \"group\": [2395.0, 1268.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78545_BALBc-1_X02_Y02_724_169\", \"ini\": 218, \"clust\": 182, \"rank\": 1025, \"rankvar\": 2616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2608, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 935, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1582, \"group\": [183.0, 120.0, 39.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78626_BALBc-1_X02_Y02_725_382\", \"ini\": 217, \"clust\": 1281, \"rank\": 1209, \"rankvar\": 1325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2609, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 872, \"cat-2\": \"Density: 22\", \"cat_2_index\": 336, \"group\": [1282.0, 654.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78655_BALBc-1_X02_Y02_725_758\", \"ini\": 216, \"clust\": 2546, \"rank\": 2250, \"rankvar\": 2105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2610, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 566, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1818, \"group\": [2549.0, 1373.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78673_BALBc-1_X02_Y02_725_953\", \"ini\": 215, \"clust\": 1975, \"rank\": 2685, \"rankvar\": 2318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2611, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2187, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1157, \"group\": [1971.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78684_BALBc-1_X02_Y02_726_124\", \"ini\": 214, \"clust\": 25, \"rank\": 1225, \"rankvar\": 715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2612, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 873, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1158, \"group\": [26.0, 25.0, 15.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78789_BALBc-1_X02_Y02_727_511\", \"ini\": 213, \"clust\": 1264, \"rank\": 1754, \"rankvar\": 2080, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2613, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1505, \"cat-2\": \"Density: 23\", \"cat_2_index\": 452, \"group\": [1267.0, 646.0, 186.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78889_BALBc-1_X02_Y02_728_781\", \"ini\": 212, \"clust\": 275, \"rank\": 1466, \"rankvar\": 1688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2614, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 567, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2128, \"group\": [276.0, 198.0, 71.0, 22.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78953_BALBc-1_X02_Y02_729_688\", \"ini\": 211, \"clust\": 1895, \"rank\": 2430, \"rankvar\": 2043, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2615, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2740, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1583, \"group\": [1895.0, 1084.0, 331.0, 93.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78974_BALBc-1_X02_Y02_729_890\", \"ini\": 210, \"clust\": 896, \"rank\": 79, \"rankvar\": 266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2616, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 568, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2208, \"group\": [895.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78999_BALBc-1_X02_Y02_73_354\", \"ini\": 209, \"clust\": 2551, \"rank\": 2546, \"rankvar\": 2660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2617, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2741, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1159, \"group\": [2551.0, 1374.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79016_BALBc-1_X02_Y02_73_624\", \"ini\": 208, \"clust\": 1720, \"rank\": 2728, \"rankvar\": 2673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2618, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1506, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1584, \"group\": [1721.0, 969.0, 289.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79095_BALBc-1_X02_Y02_730_647\", \"ini\": 207, \"clust\": 1937, \"rank\": 1975, \"rankvar\": 1976, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2619, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2742, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1447, \"group\": [1938.0, 1110.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79236_BALBc-1_X02_Y02_732_35\", \"ini\": 206, \"clust\": 1217, \"rank\": 951, \"rankvar\": 1720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2620, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 941, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1308, \"group\": [1217.0, 609.0, 173.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79458_BALBc-1_X02_Y02_734_917\", \"ini\": 205, \"clust\": 1735, \"rank\": 2724, \"rankvar\": 2752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2621, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2188, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2030, \"group\": [1733.0, 977.0, 292.0, 83.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79623_BALBc-1_X02_Y02_737_105\", \"ini\": 204, \"clust\": 575, \"rank\": 733, \"rankvar\": 629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2622, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 874, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1160, \"group\": [574.0, 391.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79762_BALBc-1_X02_Y02_738_804\", \"ini\": 203, \"clust\": 1189, \"rank\": 1571, \"rankvar\": 577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2623, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1507, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2209, \"group\": [1192.0, 585.0, 163.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79767_BALBc-1_X02_Y02_738_865\", \"ini\": 202, \"clust\": 2450, \"rank\": 1473, \"rankvar\": 1047, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2624, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1508, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2421, \"group\": [2450.0, 1303.0, 387.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79785_BALBc-1_X02_Y02_739_196\", \"ini\": 201, \"clust\": 941, \"rank\": 144, \"rankvar\": 136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2625, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2743, \"cat-2\": \"Density: 24\", \"cat_2_index\": 573, \"group\": [943.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79862_BALBc-1_X02_Y02_739_981\", \"ini\": 200, \"clust\": 830, \"rank\": 187, \"rankvar\": 190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2626, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2189, \"cat-2\": \"Density: 22\", \"cat_2_index\": 337, \"group\": [833.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79984_BALBc-1_X02_Y02_740_709\", \"ini\": 199, \"clust\": 2618, \"rank\": 1735, \"rankvar\": 2621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2627, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2744, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1916, \"group\": [2619.0, 1415.0, 418.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80165_BALBc-1_X02_Y02_743_497\", \"ini\": 198, \"clust\": 316, \"rank\": 1249, \"rankvar\": 2402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2628, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1509, \"cat-2\": \"Density: 25\", \"cat_2_index\": 701, \"group\": [316.0, 220.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80587_BALBc-1_X02_Y02_748_815\", \"ini\": 197, \"clust\": 2199, \"rank\": 1224, \"rankvar\": 1663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2629, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2190, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2210, \"group\": [2196.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80635_BALBc-1_X02_Y02_749_454\", \"ini\": 196, \"clust\": 1982, \"rank\": 2217, \"rankvar\": 1884, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2630, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1510, \"cat-2\": \"Density: 27\", \"cat_2_index\": 999, \"group\": [1983.0, 1123.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80695_BALBc-1_X02_Y02_75_13\", \"ini\": 195, \"clust\": 2423, \"rank\": 1008, \"rankvar\": 812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2631, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1511, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1309, \"group\": [2424.0, 1291.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80817_BALBc-1_X02_Y02_750_584\", \"ini\": 194, \"clust\": 2697, \"rank\": 2798, \"rankvar\": 2790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2632, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1512, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1161, \"group\": [2703.0, 1453.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81059_BALBc-1_X02_Y02_753_779\", \"ini\": 193, \"clust\": 440, \"rank\": 618, \"rankvar\": 2496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2633, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 569, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2129, \"group\": [441.0, 309.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81060_BALBc-1_X02_Y02_753_793\", \"ini\": 192, \"clust\": 2436, \"rank\": 1327, \"rankvar\": 867, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2634, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 570, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2130, \"group\": [2437.0, 1297.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81068_BALBc-1_X02_Y02_753_897\", \"ini\": 191, \"clust\": 2137, \"rank\": 2050, \"rankvar\": 1556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2635, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2191, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2131, \"group\": [2138.0, 1156.0, 341.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81108_BALBc-1_X02_Y02_754_416\", \"ini\": 190, \"clust\": 557, \"rank\": 764, \"rankvar\": 128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2636, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 571, \"cat-2\": \"Density: 25\", \"cat_2_index\": 702, \"group\": [556.0, 380.0, 127.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81179_BALBc-1_X02_Y02_755_323\", \"ini\": 189, \"clust\": 244, \"rank\": 1035, \"rankvar\": 1718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2637, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 875, \"cat-2\": \"Density: 22\", \"cat_2_index\": 338, \"group\": [244.0, 170.0, 59.0, 17.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81222_BALBc-1_X02_Y02_755_881\", \"ini\": 188, \"clust\": 2008, \"rank\": 1960, \"rankvar\": 1929, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2638, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2192, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1917, \"group\": [2008.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81284_BALBc-1_X02_Y02_756_634\", \"ini\": 187, \"clust\": 2598, \"rank\": 2225, \"rankvar\": 1497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2639, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2745, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1819, \"group\": [2613.0, 1410.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81466_BALBc-1_X02_Y02_758_853\", \"ini\": 186, \"clust\": 2126, \"rank\": 2470, \"rankvar\": 2427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2640, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2193, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2422, \"group\": [2124.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81536_BALBc-1_X02_Y02_759_820\", \"ini\": 185, \"clust\": 2160, \"rank\": 830, \"rankvar\": 627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2641, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2194, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2031, \"group\": [2160.0, 1172.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81627_BALBc-1_X02_Y02_760_153\", \"ini\": 184, \"clust\": 52, \"rank\": 843, \"rankvar\": 806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2642, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 876, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1162, \"group\": [53.0, 42.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81992_BALBc-1_X02_Y02_764_995\", \"ini\": 183, \"clust\": 2355, \"rank\": 2447, \"rankvar\": 1578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2643, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2195, \"cat-2\": \"Density: 21\", \"cat_2_index\": 244, \"group\": [2350.0, 1256.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82113_BALBc-1_X02_Y02_766_756\", \"ini\": 182, \"clust\": 265, \"rank\": 1113, \"rankvar\": 219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2644, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2746, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2293, \"group\": [265.0, 187.0, 65.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82616_BALBc-1_X02_Y02_772_197\", \"ini\": 181, \"clust\": 780, \"rank\": 270, \"rankvar\": 91, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2645, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2747, \"cat-2\": \"Density: 26\", \"cat_2_index\": 850, \"group\": [778.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82799_BALBc-1_X02_Y02_774_509\", \"ini\": 180, \"clust\": 1202, \"rank\": 1050, \"rankvar\": 1441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2646, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1513, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1000, \"group\": [1202.0, 595.0, 168.0, 45.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82871_BALBc-1_X02_Y02_775_626\", \"ini\": 179, \"clust\": 2045, \"rank\": 2474, \"rankvar\": 2160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2647, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2815, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2032, \"group\": [2047.0, 1146.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82932_BALBc-1_X02_Y02_776_234\", \"ini\": 178, \"clust\": 270, \"rank\": 1279, \"rankvar\": 2530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2648, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2748, \"cat-2\": \"Density: 25\", \"cat_2_index\": 703, \"group\": [270.0, 192.0, 68.0, 21.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83113_BALBc-1_X02_Y02_778_564\", \"ini\": 177, \"clust\": 1820, \"rank\": 2813, \"rankvar\": 2824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2649, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1555, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1310, \"group\": [1821.0, 1029.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83255_BALBc-1_X02_Y02_78_243\", \"ini\": 176, \"clust\": 791, \"rank\": 343, \"rankvar\": 1396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2650, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2749, \"cat-2\": \"Density: 19\", \"cat_2_index\": 135, \"group\": [795.0, 479.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83347_BALBc-1_X02_Y02_780_648\", \"ini\": 175, \"clust\": 2716, \"rank\": 1878, \"rankvar\": 2041, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2651, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2750, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1918, \"group\": [2717.0, 1459.0, 429.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83401_BALBc-1_X02_Y02_781_370\", \"ini\": 174, \"clust\": 2548, \"rank\": 2645, \"rankvar\": 2523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2652, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 877, \"cat-2\": \"Density: 23\", \"cat_2_index\": 453, \"group\": [2548.0, 1372.0, 409.0, 109.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83432_BALBc-1_X02_Y02_781_781\", \"ini\": 173, \"clust\": 2670, \"rank\": 2624, \"rankvar\": 1434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2653, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 572, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2211, \"group\": [2674.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83518_BALBc-1_X02_Y02_782_947\", \"ini\": 172, \"clust\": 2298, \"rank\": 1508, \"rankvar\": 1453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2654, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2196, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1585, \"group\": [2298.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83545_BALBc-1_X02_Y02_783_408\", \"ini\": 171, \"clust\": 1007, \"rank\": 855, \"rankvar\": 131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2655, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 573, \"cat-2\": \"Density: 20\", \"cat_2_index\": 183, \"group\": [1008.0, 513.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83579_BALBc-1_X02_Y02_783_829\", \"ini\": 170, \"clust\": 2170, \"rank\": 1726, \"rankvar\": 1640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2656, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2197, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2212, \"group\": [2164.0, 1173.0, 345.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83813_BALBc-1_X02_Y02_786_688\", \"ini\": 169, \"clust\": 2671, \"rank\": 2756, \"rankvar\": 2298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2657, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2751, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1919, \"group\": [2673.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83857_BALBc-1_X02_Y02_787_296\", \"ini\": 168, \"clust\": 2813, \"rank\": 1661, \"rankvar\": 1873, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2658, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1763, \"cat-2\": \"Density: 23\", \"cat_2_index\": 454, \"group\": [2811.0, 1527.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84179_BALBc-1_X02_Y02_790_487\", \"ini\": 167, \"clust\": 1681, \"rank\": 2571, \"rankvar\": 2456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2659, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2752, \"cat-2\": \"Density: 22\", \"cat_2_index\": 339, \"group\": [1682.0, 939.0, 278.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84223_BALBc-1_X02_Y02_791_169\", \"ini\": 166, \"clust\": 1351, \"rank\": 1334, \"rankvar\": 1624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2660, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 731, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1163, \"group\": [1352.0, 713.0, 212.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84480_BALBc-1_X02_Y02_793_920\", \"ini\": 165, \"clust\": 2064, \"rank\": 2806, \"rankvar\": 2677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2661, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2198, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1920, \"group\": [2067.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84554_BALBc-1_X02_Y02_794_978\", \"ini\": 164, \"clust\": 1107, \"rank\": 474, \"rankvar\": 130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2662, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2199, \"cat-2\": \"Density: 24\", \"cat_2_index\": 574, \"group\": [1106.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84577_BALBc-1_X02_Y02_795_333\", \"ini\": 163, \"clust\": 2776, \"rank\": 2273, \"rankvar\": 1654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2663, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 574, \"cat-2\": \"Density: 23\", \"cat_2_index\": 455, \"group\": [2777.0, 1503.0, 448.0, 117.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84864_BALBc-1_X02_Y02_798_754\", \"ini\": 162, \"clust\": 1192, \"rank\": 1284, \"rankvar\": 2069, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2664, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1514, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2213, \"group\": [1190.0, 583.0, 162.0, 43.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85074_BALBc-1_X02_Y02_80_689\", \"ini\": 161, \"clust\": 953, \"rank\": 838, \"rankvar\": 167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2665, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1515, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2132, \"group\": [954.0, 487.0, 139.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85146_BALBc-1_X02_Y02_800_596\", \"ini\": 160, \"clust\": 2412, \"rank\": 1386, \"rankvar\": 1073, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2666, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2816, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1586, \"group\": [2411.0, 1281.0, 383.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85365_BALBc-1_X02_Y02_803_450\", \"ini\": 159, \"clust\": 645, \"rank\": 460, \"rankvar\": 477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2667, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 575, \"cat-2\": \"Density: 22\", \"cat_2_index\": 340, \"group\": [645.0, 433.0, 136.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85452_BALBc-1_X02_Y02_804_6\", \"ini\": 158, \"clust\": 1657, \"rank\": 2302, \"rankvar\": 2477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2668, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 942, \"cat-2\": \"Density: 26\", \"cat_2_index\": 851, \"group\": [1658.0, 916.0, 266.0, 75.0, 14.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85759_BALBc-1_X02_Y02_808_377\", \"ini\": 157, \"clust\": 324, \"rank\": 1774, \"rankvar\": 2473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2669, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 576, \"cat-2\": \"Density: 23\", \"cat_2_index\": 456, \"group\": [326.0, 227.0, 78.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85916_BALBc-1_X02_Y02_81_656\", \"ini\": 156, \"clust\": 1412, \"rank\": 2095, \"rankvar\": 1852, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2670, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1516, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2214, \"group\": [1416.0, 764.0, 226.0, 64.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85926_BALBc-1_X02_Y02_81_785\", \"ini\": 155, \"clust\": 2381, \"rank\": 2568, \"rankvar\": 1749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2671, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1517, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1001, \"group\": [2381.0, 1265.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85942_BALBc-1_X02_Y02_81_991\", \"ini\": 154, \"clust\": 577, \"rank\": 840, \"rankvar\": 1787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2672, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1518, \"cat-2\": \"Density: 16\", \"cat_2_index\": 66, \"group\": [578.0, 395.0, 131.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86002_BALBc-1_X02_Y02_810_796\", \"ini\": 153, \"clust\": 986, \"rank\": 390, \"rankvar\": 689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2673, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 577, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2294, \"group\": [986.0, 506.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86177_BALBc-1_X02_Y02_813_187\", \"ini\": 152, \"clust\": 457, \"rank\": 523, \"rankvar\": 2468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2674, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1556, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1164, \"group\": [457.0, 318.0, 108.0, 31.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86247_BALBc-1_X02_Y02_813_882\", \"ini\": 151, \"clust\": 2006, \"rank\": 1719, \"rankvar\": 1601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2675, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2200, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2033, \"group\": [2009.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86277_BALBc-1_X02_Y02_814_239\", \"ini\": 150, \"clust\": 765, \"rank\": 113, \"rankvar\": 837, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2676, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2497, \"cat-2\": \"Density: 24\", \"cat_2_index\": 575, \"group\": [766.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86338_BALBc-1_X02_Y02_814_833\", \"ini\": 149, \"clust\": 2127, \"rank\": 2123, \"rankvar\": 1887, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2677, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2201, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2295, \"group\": [2125.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86350_BALBc-1_X02_Y02_815_1001\", \"ini\": 148, \"clust\": 1851, \"rank\": 2272, \"rankvar\": 1691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2678, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 578, \"cat-2\": \"Density: 17\", \"cat_2_index\": 84, \"group\": [1851.0, 1043.0, 314.0, 87.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86446_BALBc-1_X02_Y02_816_410\", \"ini\": 147, \"clust\": 678, \"rank\": 664, \"rankvar\": 287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2679, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 579, \"cat-2\": \"Density: 25\", \"cat_2_index\": 704, \"group\": [681.0, 449.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86456_BALBc-1_X02_Y02_816_577\", \"ini\": 146, \"clust\": 1116, \"rank\": 608, \"rankvar\": 1399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2680, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1557, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1448, \"group\": [1117.0, 525.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86485_BALBc-1_X02_Y02_816_906\", \"ini\": 145, \"clust\": 2207, \"rank\": 1362, \"rankvar\": 1394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2681, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2202, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1820, \"group\": [2203.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86584_BALBc-1_X02_Y02_818_376\", \"ini\": 144, \"clust\": 336, \"rank\": 288, \"rankvar\": 1912, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2682, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 580, \"cat-2\": \"Density: 24\", \"cat_2_index\": 576, \"group\": [337.0, 237.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86654_BALBc-1_X02_Y02_819_312\", \"ini\": 143, \"clust\": 1312, \"rank\": 927, \"rankvar\": 1996, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2683, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 581, \"cat-2\": \"Density: 23\", \"cat_2_index\": 457, \"group\": [1310.0, 679.0, 200.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86760_BALBc-1_X02_Y02_82_873\", \"ini\": 142, \"clust\": 1119, \"rank\": 157, \"rankvar\": 1414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2684, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1519, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1311, \"group\": [1119.0, 526.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86819_BALBc-1_X02_Y02_820_592\", \"ini\": 141, \"clust\": 955, \"rank\": 584, \"rankvar\": 750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2685, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 582, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1587, \"group\": [956.0, 489.0, 139.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86859_BALBc-1_X02_Y02_821_272\", \"ini\": 140, \"clust\": 95, \"rank\": 893, \"rankvar\": 1707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2686, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 583, \"cat-2\": \"Density: 24\", \"cat_2_index\": 577, \"group\": [98.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86882_BALBc-1_X02_Y02_821_469\", \"ini\": 139, \"clust\": 783, \"rank\": 349, \"rankvar\": 484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2687, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2753, \"cat-2\": \"Density: 22\", \"cat_2_index\": 341, \"group\": [783.0, 475.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86995_BALBc-1_X02_Y02_822_773\", \"ini\": 138, \"clust\": 1992, \"rank\": 1866, \"rankvar\": 133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2688, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 584, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2034, \"group\": [1997.0, 1130.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87010_BALBc-1_X02_Y02_822_970\", \"ini\": 137, \"clust\": 2193, \"rank\": 2157, \"rankvar\": 2329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2689, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2203, \"cat-2\": \"Density: 25\", \"cat_2_index\": 705, \"group\": [2192.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87223_BALBc-1_X02_Y02_825_637\", \"ini\": 136, \"clust\": 845, \"rank\": 277, \"rankvar\": 76, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2690, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2754, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2035, \"group\": [848.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87231_BALBc-1_X02_Y02_825_685\", \"ini\": 135, \"clust\": 1816, \"rank\": 2823, \"rankvar\": 2720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2691, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1520, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2215, \"group\": [1817.0, 1027.0, 308.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87361_BALBc-1_X02_Y02_827_663\", \"ini\": 134, \"clust\": 1927, \"rank\": 2663, \"rankvar\": 2446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2692, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2755, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2423, \"group\": [1927.0, 1107.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87401_BALBc-1_X02_Y02_828_136\", \"ini\": 133, \"clust\": 531, \"rank\": 888, \"rankvar\": 401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2693, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 878, \"cat-2\": \"Density: 25\", \"cat_2_index\": 706, \"group\": [532.0, 364.0, 122.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87753_BALBc-1_X02_Y02_831_750\", \"ini\": 132, \"clust\": 2414, \"rank\": 1191, \"rankvar\": 123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2694, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1521, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2036, \"group\": [2415.0, 1284.0, 386.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87772_BALBc-1_X02_Y02_832_176\", \"ini\": 131, \"clust\": 1352, \"rank\": 1199, \"rankvar\": 1545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2695, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1558, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1165, \"group\": [1353.0, 714.0, 212.0, 60.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87940_BALBc-1_X02_Y02_834_449\", \"ini\": 130, \"clust\": 160, \"rank\": 1201, \"rankvar\": 899, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2696, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 585, \"cat-2\": \"Density: 22\", \"cat_2_index\": 342, \"group\": [159.0, 100.0, 33.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88160_BALBc-1_X02_Y02_837_355\", \"ini\": 129, \"clust\": 337, \"rank\": 199, \"rankvar\": 1383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2697, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 586, \"cat-2\": \"Density: 23\", \"cat_2_index\": 458, \"group\": [338.0, 237.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88190_BALBc-1_X02_Y02_837_668\", \"ini\": 128, \"clust\": 525, \"rank\": 149, \"rankvar\": 1272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2698, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 587, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2296, \"group\": [527.0, 359.0, 121.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88264_BALBc-1_X02_Y02_838_719\", \"ini\": 127, \"clust\": 2519, \"rank\": 1435, \"rankvar\": 1573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2699, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1522, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2133, \"group\": [2519.0, 1352.0, 401.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88363_BALBc-1_X02_Y02_839_932\", \"ini\": 126, \"clust\": 2234, \"rank\": 1299, \"rankvar\": 174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2700, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2204, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1704, \"group\": [2235.0, 1214.0, 362.0, 99.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88394_BALBc-1_X02_Y02_84_515\", \"ini\": 125, \"clust\": 436, \"rank\": 598, \"rankvar\": 2425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2701, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1523, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1921, \"group\": [436.0, 308.0, 106.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88440_BALBc-1_X02_Y02_84_969\", \"ini\": 124, \"clust\": 1070, \"rank\": 345, \"rankvar\": 1293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2702, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1524, \"cat-2\": \"Density: 20\", \"cat_2_index\": 184, \"group\": [1072.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88503_BALBc-1_X02_Y02_840_832\", \"ini\": 123, \"clust\": 2275, \"rank\": 1668, \"rankvar\": 809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2703, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 588, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2134, \"group\": [2274.0, 1240.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88555_BALBc-1_X02_Y02_841_439\", \"ini\": 122, \"clust\": 570, \"rank\": 1245, \"rankvar\": 708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2704, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 589, \"cat-2\": \"Density: 23\", \"cat_2_index\": 459, \"group\": [576.0, 393.0, 130.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88760_BALBc-1_X02_Y02_844_277\", \"ini\": 121, \"clust\": 407, \"rank\": 802, \"rankvar\": 153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2705, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 590, \"cat-2\": \"Density: 22\", \"cat_2_index\": 343, \"group\": [407.0, 285.0, 96.0, 27.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88917_BALBc-1_X02_Y02_846_331\", \"ini\": 120, \"clust\": 1109, \"rank\": 464, \"rankvar\": 14, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2706, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 591, \"cat-2\": \"Density: 24\", \"cat_2_index\": 578, \"group\": [1113.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88934_BALBc-1_X02_Y02_846_601\", \"ini\": 119, \"clust\": 1321, \"rank\": 1357, \"rankvar\": 718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2707, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2756, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1705, \"group\": [1322.0, 690.0, 205.0, 59.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88985_BALBc-1_X02_Y02_847_249\", \"ini\": 118, \"clust\": 335, \"rank\": 1056, \"rankvar\": 793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2708, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2498, \"cat-2\": \"Density: 25\", \"cat_2_index\": 707, \"group\": [335.0, 235.0, 83.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89032_BALBc-1_X02_Y02_847_706\", \"ini\": 117, \"clust\": 2174, \"rank\": 2023, \"rankvar\": 1729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2709, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 592, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2216, \"group\": [2176.0, 1181.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89042_BALBc-1_X02_Y02_847_797\", \"ini\": 116, \"clust\": 1016, \"rank\": 585, \"rankvar\": 512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2710, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2817, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2037, \"group\": [1017.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89169_BALBc-1_X02_Y02_849_386\", \"ini\": 115, \"clust\": 1316, \"rank\": 1588, \"rankvar\": 655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2711, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 593, \"cat-2\": \"Density: 23\", \"cat_2_index\": 460, \"group\": [1315.0, 683.0, 201.0, 57.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89338_BALBc-1_X02_Y02_850_734\", \"ini\": 114, \"clust\": 588, \"rank\": 924, \"rankvar\": 1118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2712, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 594, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2038, \"group\": [590.0, 402.0, 132.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89357_BALBc-1_X02_Y02_851_140\", \"ini\": 113, \"clust\": 2473, \"rank\": 1130, \"rankvar\": 163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2713, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 879, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1002, \"group\": [2480.0, 1327.0, 394.0, 106.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89396_BALBc-1_X02_Y02_851_573\", \"ini\": 112, \"clust\": 2712, \"rank\": 2547, \"rankvar\": 2213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2714, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1559, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1312, \"group\": [2709.0, 1455.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89419_BALBc-1_X02_Y02_851_872\", \"ini\": 111, \"clust\": 1057, \"rank\": 519, \"rankvar\": 660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2715, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2205, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1821, \"group\": [1057.0, 523.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89427_BALBc-1_X02_Y02_852_1004\", \"ini\": 110, \"clust\": 2297, \"rank\": 1977, \"rankvar\": 1452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2716, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 595, \"cat-2\": \"Density: 16\", \"cat_2_index\": 67, \"group\": [2302.0, 1251.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89491_BALBc-1_X02_Y02_852_856\", \"ini\": 109, \"clust\": 504, \"rank\": 881, \"rankvar\": 516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2717, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 596, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1922, \"group\": [505.0, 345.0, 116.0, 33.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89556_BALBc-1_X02_Y02_853_642\", \"ini\": 108, \"clust\": 2331, \"rank\": 2284, \"rankvar\": 892, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2718, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2757, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2135, \"group\": [2356.0, 1257.0, 376.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89743_BALBc-1_X02_Y02_855_754\", \"ini\": 107, \"clust\": 2368, \"rank\": 1966, \"rankvar\": 159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2719, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2818, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1822, \"group\": [2368.0, 1263.0, 377.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89977_BALBc-1_X02_Y02_858_899\", \"ini\": 106, \"clust\": 2269, \"rank\": 1204, \"rankvar\": 920, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2720, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2206, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1706, \"group\": [2272.0, 1239.0, 373.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90055_BALBc-1_X02_Y02_859_983\", \"ini\": 105, \"clust\": 2179, \"rank\": 2255, \"rankvar\": 2141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2721, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 597, \"cat-2\": \"Density: 24\", \"cat_2_index\": 579, \"group\": [2178.0, 1182.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90109_BALBc-1_X02_Y02_86_60\", \"ini\": 104, \"clust\": 1522, \"rank\": 1534, \"rankvar\": 1380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2722, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 732, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1313, \"group\": [1525.0, 824.0, 240.0, 68.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90319_BALBc-1_X02_Y02_862_37\", \"ini\": 103, \"clust\": 1084, \"rank\": 290, \"rankvar\": 639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2723, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1991, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1003, \"group\": [1084.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90441_BALBc-1_X02_Y02_864_212\", \"ini\": 102, \"clust\": 314, \"rank\": 1383, \"rankvar\": 2630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2724, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2499, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1166, \"group\": [311.0, 218.0, 77.0, 23.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90472_BALBc-1_X02_Y02_864_516\", \"ini\": 101, \"clust\": 551, \"rank\": 453, \"rankvar\": 1307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2725, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1525, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1004, \"group\": [552.0, 377.0, 124.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90584_BALBc-1_X02_Y02_865_954\", \"ini\": 100, \"clust\": 46, \"rank\": 757, \"rankvar\": 1461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2726, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2207, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1314, \"group\": [46.0, 38.0, 19.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90756_BALBc-1_X02_Y02_868_247\", \"ini\": 99, \"clust\": 1752, \"rank\": 1455, \"rankvar\": 2194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2727, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1764, \"cat-2\": \"Density: 24\", \"cat_2_index\": 580, \"group\": [1751.0, 992.0, 299.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90964_BALBc-1_X02_Y02_87_810\", \"ini\": 98, \"clust\": 413, \"rank\": 1153, \"rankvar\": 853, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2728, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1688, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1167, \"group\": [413.0, 290.0, 100.0, 30.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90993_BALBc-1_X02_Y02_870_113\", \"ini\": 97, \"clust\": 358, \"rank\": 341, \"rankvar\": 2070, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2729, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 645, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1005, \"group\": [358.0, 250.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91037_BALBc-1_X02_Y02_870_608\", \"ini\": 96, \"clust\": 2669, \"rank\": 2761, \"rankvar\": 2058, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2730, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2758, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1588, \"group\": [2670.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91170_BALBc-1_X02_Y02_872_455\", \"ini\": 95, \"clust\": 101, \"rank\": 340, \"rankvar\": 1045, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2731, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1526, \"cat-2\": \"Density: 19\", \"cat_2_index\": 136, \"group\": [99.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91208_BALBc-1_X02_Y02_872_797\", \"ini\": 94, \"clust\": 2067, \"rank\": 2727, \"rankvar\": 1895, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2732, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2819, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1923, \"group\": [2065.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91245_BALBc-1_X02_Y02_873_333\", \"ini\": 93, \"clust\": 1282, \"rank\": 1862, \"rankvar\": 2331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2733, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 598, \"cat-2\": \"Density: 25\", \"cat_2_index\": 708, \"group\": [1280.0, 654.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91506_BALBc-1_X02_Y02_876_651\", \"ini\": 92, \"clust\": 913, \"rank\": 86, \"rankvar\": 179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2734, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2759, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2217, \"group\": [914.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91693_BALBc-1_X02_Y02_879_140\", \"ini\": 91, \"clust\": 543, \"rank\": 905, \"rankvar\": 1166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2735, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 646, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1589, \"group\": [544.0, 371.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91994_BALBc-1_X02_Y02_881_868\", \"ini\": 90, \"clust\": 1945, \"rank\": 2002, \"rankvar\": 928, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2736, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2208, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1707, \"group\": [1945.0, 1113.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92030_BALBc-1_X02_Y02_882_354\", \"ini\": 89, \"clust\": 100, \"rank\": 256, \"rankvar\": 1747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2737, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 599, \"cat-2\": \"Density: 23\", \"cat_2_index\": 461, \"group\": [101.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92117_BALBc-1_X02_Y02_883_671\", \"ini\": 88, \"clust\": 2673, \"rank\": 2602, \"rankvar\": 1491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2738, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2760, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2039, \"group\": [2672.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92273_BALBc-1_X02_Y02_886_181\", \"ini\": 87, \"clust\": 1594, \"rank\": 937, \"rankvar\": 860, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2739, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2466, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1315, \"group\": [1593.0, 876.0, 256.0, 73.0, 13.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92311_BALBc-1_X02_Y02_886_596\", \"ini\": 86, \"clust\": 2677, \"rank\": 2600, \"rankvar\": 1876, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2740, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2820, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1316, \"group\": [2676.0, 1444.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92434_BALBc-1_X02_Y02_888_295\", \"ini\": 85, \"clust\": 122, \"rank\": 1072, \"rankvar\": 421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2741, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 880, \"cat-2\": \"Density: 25\", \"cat_2_index\": 709, \"group\": [125.0, 79.0, 26.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92552_BALBc-1_X02_Y02_889_735\", \"ini\": 84, \"clust\": 826, \"rank\": 265, \"rankvar\": 417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2742, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 600, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1924, \"group\": [830.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92558_BALBc-1_X02_Y02_889_853\", \"ini\": 83, \"clust\": 2135, \"rank\": 2224, \"rankvar\": 1630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2743, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 601, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1708, \"group\": [2135.0, 1153.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92570_BALBc-1_X02_Y02_889_96\", \"ini\": 82, \"clust\": 631, \"rank\": 530, \"rankvar\": 132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2744, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 881, \"cat-2\": \"Density: 26\", \"cat_2_index\": 852, \"group\": [630.0, 424.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92700_BALBc-1_X02_Y02_890_746\", \"ini\": 81, \"clust\": 2063, \"rank\": 2677, \"rankvar\": 2013, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2745, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2821, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1709, \"group\": [2062.0, 1150.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92756_BALBc-1_X02_Y02_891_44\", \"ini\": 80, \"clust\": 534, \"rank\": 735, \"rankvar\": 280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2746, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 882, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1168, \"group\": [534.0, 365.0, 123.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92817_BALBc-1_X02_Y02_892_413\", \"ini\": 79, \"clust\": 567, \"rank\": 493, \"rankvar\": 1862, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2747, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 602, \"cat-2\": \"Density: 26\", \"cat_2_index\": 853, \"group\": [567.0, 389.0, 129.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92906_BALBc-1_X02_Y02_893_546\", \"ini\": 78, \"clust\": 2636, \"rank\": 2662, \"rankvar\": 1602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2748, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1527, \"cat-2\": \"Density: 24\", \"cat_2_index\": 581, \"group\": [2634.0, 1426.0, 420.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92912_BALBc-1_X02_Y02_893_644\", \"ini\": 77, \"clust\": 1962, \"rank\": 2395, \"rankvar\": 1697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2749, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2761, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1925, \"group\": [1960.0, 1118.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92924_BALBc-1_X02_Y02_893_808\", \"ini\": 76, \"clust\": 925, \"rank\": 34, \"rankvar\": 507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2750, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2822, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1710, \"group\": [924.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93103_BALBc-1_X02_Y02_895_993\", \"ini\": 75, \"clust\": 1955, \"rank\": 2119, \"rankvar\": 1198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2751, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 603, \"cat-2\": \"Density: 17\", \"cat_2_index\": 85, \"group\": [1954.0, 1115.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93223_BALBc-1_X02_Y02_897_705\", \"ini\": 74, \"clust\": 2024, \"rank\": 2204, \"rankvar\": 1772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2752, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2762, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2040, \"group\": [2022.0, 1139.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93348_BALBc-1_X02_Y02_899_389\", \"ini\": 73, \"clust\": 267, \"rank\": 1022, \"rankvar\": 664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2753, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 604, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1006, \"group\": [267.0, 189.0, 66.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93415_BALBc-1_X02_Y02_9_38\", \"ini\": 72, \"clust\": 2558, \"rank\": 1708, \"rankvar\": 621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2754, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2467, \"cat-2\": \"Density: 24\", \"cat_2_index\": 582, \"group\": [2563.0, 1384.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93437_BALBc-1_X02_Y02_9_690\", \"ini\": 71, \"clust\": 2, \"rank\": 1060, \"rankvar\": 1377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2755, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1528, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1711, \"group\": [2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93474_BALBc-1_X02_Y02_90_174\", \"ini\": 70, \"clust\": 251, \"rank\": 1197, \"rankvar\": 262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2756, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2763, \"cat-2\": \"Density: 20\", \"cat_2_index\": 185, \"group\": [252.0, 175.0, 60.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93570_BALBc-1_X02_Y02_900_320\", \"ini\": 69, \"clust\": 1305, \"rank\": 1254, \"rankvar\": 1552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2757, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 605, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1007, \"group\": [1306.0, 677.0, 199.0, 56.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93778_BALBc-1_X02_Y02_903_445\", \"ini\": 68, \"clust\": 1283, \"rank\": 1277, \"rankvar\": 2077, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2758, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1529, \"cat-2\": \"Density: 23\", \"cat_2_index\": 462, \"group\": [1281.0, 654.0, 188.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93852_BALBc-1_X02_Y02_904_543\", \"ini\": 67, \"clust\": 263, \"rank\": 531, \"rankvar\": 1498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2759, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1530, \"cat-2\": \"Density: 24\", \"cat_2_index\": 583, \"group\": [262.0, 184.0, 63.0, 19.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93948_BALBc-1_X02_Y02_905_80\", \"ini\": 66, \"clust\": 26, \"rank\": 1026, \"rankvar\": 1290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2760, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 883, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1317, \"group\": [27.0, 26.0, 15.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94108_BALBc-1_X02_Y02_907_946\", \"ini\": 65, \"clust\": 2029, \"rank\": 2148, \"rankvar\": 1072, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2761, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2209, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1449, \"group\": [2038.0, 1143.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94454_BALBc-1_X02_Y02_911_705\", \"ini\": 64, \"clust\": 877, \"rank\": 0, \"rankvar\": 636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2762, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2764, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1926, \"group\": [874.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94481_BALBc-1_X02_Y02_912_148\", \"ini\": 63, \"clust\": 88, \"rank\": 767, \"rankvar\": 998, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2763, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 647, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1318, \"group\": [89.0, 64.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94484_BALBc-1_X02_Y02_912_174\", \"ini\": 62, \"clust\": 1108, \"rank\": 410, \"rankvar\": 196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2764, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 606, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1319, \"group\": [1107.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94610_BALBc-1_X02_Y02_913_822\", \"ini\": 61, \"clust\": 2096, \"rank\": 2583, \"rankvar\": 2373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2765, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2765, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1450, \"group\": [2098.0, 1152.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94815_BALBc-1_X02_Y02_916_641\", \"ini\": 60, \"clust\": 729, \"rank\": 456, \"rankvar\": 6, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2766, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2766, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1590, \"group\": [729.0, 465.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94838_BALBc-1_X02_Y02_916_85\", \"ini\": 59, \"clust\": 823, \"rank\": 308, \"rankvar\": 3, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2767, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 884, \"cat-2\": \"Density: 25\", \"cat_2_index\": 710, \"group\": [824.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94839_BALBc-1_X02_Y02_916_856\", \"ini\": 58, \"clust\": 1996, \"rank\": 2543, \"rankvar\": 2028, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2768, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2767, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1451, \"group\": [1994.0, 1127.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94853_BALBc-1_X02_Y02_917_213\", \"ini\": 57, \"clust\": 836, \"rank\": 123, \"rankvar\": 73, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2769, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 885, \"cat-2\": \"Density: 26\", \"cat_2_index\": 854, \"group\": [835.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94891_BALBc-1_X02_Y02_917_742\", \"ini\": 56, \"clust\": 1044, \"rank\": 368, \"rankvar\": 40, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2770, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 607, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1591, \"group\": [1042.0, 522.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95053_BALBc-1_X02_Y02_919_786\", \"ini\": 55, \"clust\": 1015, \"rank\": 477, \"rankvar\": 122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2771, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2823, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1823, \"group\": [1014.0, 515.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95070_BALBc-1_X02_Y02_919_984\", \"ini\": 54, \"clust\": 1088, \"rank\": 175, \"rankvar\": 955, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2772, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2210, \"cat-2\": \"Density: 20\", \"cat_2_index\": 186, \"group\": [1089.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95344_BALBc-1_X02_Y02_922_457\", \"ini\": 53, \"clust\": 1106, \"rank\": 450, \"rankvar\": 515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2773, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1531, \"cat-2\": \"Density: 22\", \"cat_2_index\": 344, \"group\": [1105.0, 524.0, 140.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95351_BALBc-1_X02_Y02_922_549\", \"ini\": 52, \"clust\": 2687, \"rank\": 2819, \"rankvar\": 2702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2774, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2768, \"cat-2\": \"Density: 22\", \"cat_2_index\": 345, \"group\": [2693.0, 1450.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95458_BALBc-1_X02_Y02_923_893\", \"ini\": 51, \"clust\": 634, \"rank\": 561, \"rankvar\": 53, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2775, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2211, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1452, \"group\": [638.0, 428.0, 135.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95495_BALBc-1_X02_Y02_924_349\", \"ini\": 50, \"clust\": 252, \"rank\": 1587, \"rankvar\": 661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2776, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 608, \"cat-2\": \"Density: 24\", \"cat_2_index\": 584, \"group\": [253.0, 176.0, 61.0, 18.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95866_BALBc-1_X02_Y02_928_872\", \"ini\": 49, \"clust\": 2188, \"rank\": 2341, \"rankvar\": 2216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2777, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2769, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1592, \"group\": [2194.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95874_BALBc-1_X02_Y02_929_132\", \"ini\": 48, \"clust\": 366, \"rank\": 564, \"rankvar\": 2257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2778, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2468, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1320, \"group\": [366.0, 253.0, 88.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96102_BALBc-1_X02_Y02_931_305\", \"ini\": 47, \"clust\": 92, \"rank\": 741, \"rankvar\": 896, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2779, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 886, \"cat-2\": \"Density: 24\", \"cat_2_index\": 585, \"group\": [93.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96234_BALBc-1_X02_Y02_932_924\", \"ini\": 46, \"clust\": 2015, \"rank\": 2159, \"rankvar\": 1768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2780, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2212, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1593, \"group\": [2016.0, 1136.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96350_BALBc-1_X02_Y02_934_713\", \"ini\": 45, \"clust\": 1994, \"rank\": 2113, \"rankvar\": 1664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2781, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2770, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1594, \"group\": [1995.0, 1128.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96428_BALBc-1_X02_Y02_935_613\", \"ini\": 44, \"clust\": 2559, \"rank\": 1703, \"rankvar\": 1814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2782, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 609, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1321, \"group\": [2562.0, 1383.0, 412.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96640_BALBc-1_X02_Y02_938_684\", \"ini\": 43, \"clust\": 2634, \"rank\": 2086, \"rankvar\": 422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2783, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2771, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1453, \"group\": [2635.0, 1427.0, 420.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97000_BALBc-1_X02_Y02_942_474\", \"ini\": 42, \"clust\": 2800, \"rank\": 1956, \"rankvar\": 1796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2784, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2772, \"cat-2\": \"Density: 23\", \"cat_2_index\": 463, \"group\": [2802.0, 1520.0, 451.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97011_BALBc-1_X02_Y02_942_662\", \"ini\": 41, \"clust\": 2456, \"rank\": 1187, \"rankvar\": 900, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2785, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2773, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1454, \"group\": [2464.0, 1312.0, 388.0, 105.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97056_BALBc-1_X02_Y02_943_193\", \"ini\": 40, \"clust\": 761, \"rank\": 315, \"rankvar\": 116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2786, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2774, \"cat-2\": \"Density: 25\", \"cat_2_index\": 711, \"group\": [761.0, 474.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97137_BALBc-1_X02_Y02_944_154\", \"ini\": 39, \"clust\": 1356, \"rank\": 1947, \"rankvar\": 310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2787, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2775, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1824, \"group\": [1357.0, 718.0, 213.0, 61.0, 12.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97167_BALBc-1_X02_Y02_944_435\", \"ini\": 38, \"clust\": 943, \"rank\": 146, \"rankvar\": 352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2788, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 936, \"cat-2\": \"Density: 21\", \"cat_2_index\": 245, \"group\": [942.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97214_BALBc-1_X02_Y02_944_966\", \"ini\": 37, \"clust\": 879, \"rank\": 8, \"rankvar\": 698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2789, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2213, \"cat-2\": \"Density: 24\", \"cat_2_index\": 586, \"group\": [876.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97451_BALBc-1_X02_Y02_948_331\", \"ini\": 36, \"clust\": 102, \"rank\": 449, \"rankvar\": 1101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2790, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 610, \"cat-2\": \"Density: 21\", \"cat_2_index\": 246, \"group\": [100.0, 65.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97491_BALBc-1_X02_Y02_948_932\", \"ini\": 35, \"clust\": 2534, \"rank\": 1597, \"rankvar\": 1327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2791, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2214, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1595, \"group\": [2533.0, 1359.0, 402.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97517_BALBc-1_X02_Y02_949_240\", \"ini\": 34, \"clust\": 2504, \"rank\": 1616, \"rankvar\": 738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2792, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 887, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1008, \"group\": [2506.0, 1346.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97549_BALBc-1_X02_Y02_949_586\", \"ini\": 33, \"clust\": 2692, \"rank\": 2753, \"rankvar\": 2099, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2793, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1589, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1009, \"group\": [2689.0, 1449.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98069_BALBc-1_X02_Y02_955_308\", \"ini\": 32, \"clust\": 351, \"rank\": 1298, \"rankvar\": 1070, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2794, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 611, \"cat-2\": \"Density: 22\", \"cat_2_index\": 346, \"group\": [352.0, 246.0, 86.0, 24.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98157_BALBc-1_X02_Y02_956_396\", \"ini\": 31, \"clust\": 1686, \"rank\": 1922, \"rankvar\": 1629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2795, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 612, \"cat-2\": \"Density: 25\", \"cat_2_index\": 712, \"group\": [1684.0, 941.0, 279.0, 80.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98194_BALBc-1_X02_Y02_956_883\", \"ini\": 30, \"clust\": 2050, \"rank\": 2487, \"rankvar\": 2578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2796, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2215, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1712, \"group\": [2052.0, 1148.0, 340.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98263_BALBc-1_X02_Y02_957_843\", \"ini\": 29, \"clust\": 881, \"rank\": 97, \"rankvar\": 220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2797, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2776, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1322, \"group\": [882.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98313_BALBc-1_X02_Y02_958_647\", \"ini\": 28, \"clust\": 2633, \"rank\": 2257, \"rankvar\": 1869, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2798, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 613, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1323, \"group\": [2636.0, 1428.0, 420.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98322_BALBc-1_X02_Y02_958_769\", \"ini\": 27, \"clust\": 2192, \"rank\": 1816, \"rankvar\": 1892, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2799, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2777, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1455, \"group\": [2193.0, 1187.0, 348.0, 95.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98806_BALBc-1_X02_Y02_964_191\", \"ini\": 26, \"clust\": 2506, \"rank\": 1942, \"rankvar\": 1840, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2800, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 888, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1169, \"group\": [2505.0, 1346.0, 400.0, 108.0, 22.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98856_BALBc-1_X02_Y02_964_78\", \"ini\": 25, \"clust\": 1235, \"rank\": 1028, \"rankvar\": 2765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2801, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 889, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1596, \"group\": [1234.0, 621.0, 178.0, 49.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98994_BALBc-1_X02_Y02_966_741\", \"ini\": 24, \"clust\": 1993, \"rank\": 2028, \"rankvar\": 2111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2802, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2778, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1713, \"group\": [1996.0, 1129.0, 338.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99000_BALBc-1_X02_Y02_966_800\", \"ini\": 23, \"clust\": 2662, \"rank\": 2525, \"rankvar\": 1853, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2803, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2779, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1456, \"group\": [2665.0, 1443.0, 427.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99040_BALBc-1_X02_Y02_967_294\", \"ini\": 22, \"clust\": 2807, \"rank\": 1332, \"rankvar\": 1152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2804, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 890, \"cat-2\": \"Density: 21\", \"cat_2_index\": 247, \"group\": [2807.0, 1525.0, 454.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99129_BALBc-1_X02_Y02_968_372\", \"ini\": 21, \"clust\": 105, \"rank\": 448, \"rankvar\": 1354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2805, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 614, \"cat-2\": \"Density: 24\", \"cat_2_index\": 587, \"group\": [105.0, 66.0, 22.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99400_BALBc-1_X02_Y02_970_970\", \"ini\": 20, \"clust\": 1728, \"rank\": 2300, \"rankvar\": 1242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2806, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2216, \"cat-2\": \"Density: 22\", \"cat_2_index\": 347, \"group\": [1727.0, 972.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99453_BALBc-1_X02_Y02_971_668\", \"ini\": 19, \"clust\": 1883, \"rank\": 1961, \"rankvar\": 1484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2807, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2780, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1597, \"group\": [1884.0, 1074.0, 327.0, 92.0, 19.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99472_BALBc-1_X02_Y02_971_945\", \"ini\": 18, \"clust\": 736, \"rank\": 482, \"rankvar\": 305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2808, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2217, \"cat-2\": \"Density: 25\", \"cat_2_index\": 713, \"group\": [736.0, 466.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99576_BALBc-1_X02_Y02_973_307\", \"ini\": 17, \"clust\": 939, \"rank\": 102, \"rankvar\": 1005, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2809, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 615, \"cat-2\": \"Density: 22\", \"cat_2_index\": 348, \"group\": [939.0, 482.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99819_BALBc-1_X02_Y02_976_413\", \"ini\": 16, \"clust\": 2823, \"rank\": 1664, \"rankvar\": 1033, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2810, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 937, \"cat-2\": \"Density: 25\", \"cat_2_index\": 714, \"group\": [2824.0, 1535.0, 455.0, 118.0, 25.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99924_BALBc-1_X02_Y02_977_857\", \"ini\": 15, \"clust\": 1931, \"rank\": 2469, \"rankvar\": 1956, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2811, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2218, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1714, \"group\": [1933.0, 1108.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100214_BALBc-1_X02_Y02_980_820\", \"ini\": 14, \"clust\": 158, \"rank\": 1122, \"rankvar\": 173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2812, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2781, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1324, \"group\": [160.0, 101.0, 33.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100337_BALBc-1_X02_Y02_982_632\", \"ini\": 13, \"clust\": 2580, \"rank\": 1637, \"rankvar\": 1676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2813, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2782, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1325, \"group\": [2580.0, 1394.0, 414.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100367_BALBc-1_X02_Y02_982_992\", \"ini\": 12, \"clust\": 2640, \"rank\": 1973, \"rankvar\": 976, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2814, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2219, \"cat-2\": \"Density: 17\", \"cat_2_index\": 86, \"group\": [2639.0, 1431.0, 422.0, 111.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100561_BALBc-1_X02_Y02_985_561\", \"ini\": 11, \"clust\": 2604, \"rank\": 2042, \"rankvar\": 2248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2815, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2783, \"cat-2\": \"Density: 22\", \"cat_2_index\": 349, \"group\": [2602.0, 1407.0, 416.0, 110.0, 23.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100649_BALBc-1_X02_Y02_986_672\", \"ini\": 10, \"clust\": 1947, \"rank\": 1962, \"rankvar\": 1285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2816, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2784, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1825, \"group\": [1948.0, 1114.0, 337.0, 94.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100670_BALBc-1_X02_Y02_987_14\", \"ini\": 9, \"clust\": 1266, \"rank\": 2166, \"rankvar\": 2448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2817, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1532, \"cat-2\": \"Density: 23\", \"cat_2_index\": 464, \"group\": [1266.0, 645.0, 186.0, 53.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100764_BALBc-1_X02_Y02_988_366\", \"ini\": 8, \"clust\": 518, \"rank\": 1261, \"rankvar\": 89, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2818, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1170, \"group\": [519.0, 356.0, 120.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100956_BALBc-1_X02_Y02_99_748\", \"ini\": 7, \"clust\": 1726, \"rank\": 2521, \"rankvar\": 2084, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2819, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1533, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1715, \"group\": [1728.0, 973.0, 290.0, 82.0, 17.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100988_BALBc-1_X02_Y02_990_472\", \"ini\": 6, \"clust\": 54, \"rank\": 869, \"rankvar\": 1001, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2820, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 938, \"cat-2\": \"Density: 20\", \"cat_2_index\": 187, \"group\": [52.0, 42.0, 20.0, 9.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101005_BALBc-1_X02_Y02_990_71\", \"ini\": 5, \"clust\": 800, \"rank\": 77, \"rankvar\": 1319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2821, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2469, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1010, \"group\": [799.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101037_BALBc-1_X02_Y02_991_103\", \"ini\": 4, \"clust\": 1780, \"rank\": 2557, \"rankvar\": 2517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2822, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2470, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1326, \"group\": [1780.0, 1010.0, 306.0, 85.0, 18.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101297_BALBc-1_X02_Y02_994_186\", \"ini\": 3, \"clust\": 1215, \"rank\": 1083, \"rankvar\": 445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2823, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2785, \"cat-2\": \"Density: 26\", \"cat_2_index\": 855, \"group\": [1218.0, 610.0, 173.0, 47.0, 9.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101397_BALBc-1_X02_Y02_995_288\", \"ini\": 2, \"clust\": 852, \"rank\": 38, \"rankvar\": 742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2824, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2471, \"cat-2\": \"Density: 23\", \"cat_2_index\": 465, \"group\": [859.0, 480.0, 137.0, 34.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101608_BALBc-1_X02_Y02_997_729\", \"ini\": 1, \"clust\": 2290, \"rank\": 2167, \"rankvar\": 1445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2825, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2786, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2041, \"group\": [2290.0, 1247.0, 375.0, 102.0, 20.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}]}}, {\"N_row_var\": 20, \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"name\": \"CD169\", \"ini\": 20, \"clust\": 15, \"rank\": 15, \"rankvar\": 19, \"group\": [14.0, 13.0, 13.0, 10.0, 6.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD11c\", \"ini\": 19, \"clust\": 9, \"rank\": 10, \"rankvar\": 15, \"group\": [9.0, 9.0, 9.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD1632\", \"ini\": 18, \"clust\": 10, \"rank\": 18, \"rankvar\": 17, \"group\": [7.0, 7.0, 7.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD19\", \"ini\": 17, \"clust\": 7, \"rank\": 19, \"rankvar\": 18, \"group\": [5.0, 5.0, 5.0, 4.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD31\", \"ini\": 16, \"clust\": 11, \"rank\": 11, \"rankvar\": 14, \"group\": [8.0, 8.0, 8.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD90\", \"ini\": 15, \"clust\": 5, \"rank\": 12, \"rankvar\": 12, \"group\": [3.0, 3.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD35\", \"ini\": 14, \"clust\": 13, \"rank\": 16, \"rankvar\": 9, \"group\": [11.0, 11.0, 11.0, 8.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD79b\", \"ini\": 13, \"clust\": 12, \"rank\": 14, \"rankvar\": 13, \"group\": [13.0, 12.0, 12.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD44\", \"ini\": 12, \"clust\": 16, \"rank\": 13, \"rankvar\": 16, \"group\": [15.0, 14.0, 14.0, 11.0, 7.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"IgD\", \"ini\": 11, \"clust\": 2, \"rank\": 9, \"rankvar\": 8, \"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD45\", \"ini\": 10, \"clust\": 8, \"rank\": 17, \"rankvar\": 11, \"group\": [6.0, 6.0, 6.0, 4.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"B220\", \"ini\": 9, \"clust\": 3, \"rank\": 8, \"rankvar\": 10, \"group\": [2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD106\", \"ini\": 8, \"clust\": 18, \"rank\": 7, \"rankvar\": 7, \"group\": [16.0, 15.0, 15.0, 12.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD27\", \"ini\": 7, \"clust\": 6, \"rank\": 6, \"rankvar\": 6, \"group\": [4.0, 4.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD8a\", \"ini\": 6, \"clust\": 4, \"rank\": 5, \"rankvar\": 5, \"group\": [10.0, 10.0, 10.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD2135\", \"ini\": 5, \"clust\": 14, \"rank\": 4, \"rankvar\": 4, \"group\": [12.0, 11.0, 11.0, 8.0, 4.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD4\", \"ini\": 4, \"clust\": 1, \"rank\": 2, \"rankvar\": 3, \"group\": [19.0, 18.0, 18.0, 15.0, 10.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"ERTR7\", \"ini\": 3, \"clust\": 17, \"rank\": 1, \"rankvar\": 2, \"group\": [18.0, 17.0, 17.0, 14.0, 9.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"F480\", \"ini\": 2, \"clust\": 19, \"rank\": 3, \"rankvar\": 1, \"group\": [17.0, 16.0, 16.0, 13.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"Ter119\", \"ini\": 1, \"clust\": 0, \"rank\": 0, \"rankvar\": 0, \"group\": [20.0, 19.0, 19.0, 16.0, 11.0, 9.0, 5.0, 3.0, 2.0, 1.0, 1.0]}], \"col_nodes\": [{\"name\": \"C-643_BALBc-1_X01_Y01_10_277\", \"ini\": 2826, \"clust\": 1423, \"rank\": 2262, \"rankvar\": 2339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 0, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2805, \"cat-2\": \"Density: 14\", \"cat_2_index\": 23, \"group\": [1422.0, 563.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1264_BALBc-1_X01_Y01_1006_490\", \"ini\": 2825, \"clust\": 2, \"rank\": 1064, \"rankvar\": 1769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1765, \"cat-2\": \"Density: 23\", \"cat_2_index\": 350, \"group\": [3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1589_BALBc-1_X01_Y01_101_504\", \"ini\": 2824, \"clust\": 1419, \"rank\": 2278, \"rankvar\": 2240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2335, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1011, \"group\": [1420.0, 561.0, 140.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1611_BALBc-1_X01_Y01_101_759\", \"ini\": 2823, \"clust\": 1381, \"rank\": 2041, \"rankvar\": 2244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 3, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2336, \"cat-2\": \"Density: 25\", \"cat_2_index\": 588, \"group\": [1381.0, 540.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1873_BALBc-1_X01_Y01_1013_254\", \"ini\": 2822, \"clust\": 1561, \"rank\": 1179, \"rankvar\": 1028, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 4, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 949, \"cat-2\": \"Density: 25\", \"cat_2_index\": 589, \"group\": [1562.0, 614.0, 149.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1877_BALBc-1_X01_Y01_1013_293\", \"ini\": 2821, \"clust\": 752, \"rank\": 450, \"rankvar\": 7, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 5, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2337, \"cat-2\": \"Density: 27\", \"cat_2_index\": 856, \"group\": [749.0, 279.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1935_BALBc-1_X01_Y01_1013_914\", \"ini\": 2820, \"clust\": 1668, \"rank\": 1109, \"rankvar\": 2581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 6, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2338, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1327, \"group\": [1668.0, 698.0, 178.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2478_BALBc-1_X01_Y01_1020_25\", \"ini\": 2819, \"clust\": 456, \"rank\": 495, \"rankvar\": 841, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 7, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1766, \"cat-2\": \"Density: 14\", \"cat_2_index\": 24, \"group\": [457.0, 260.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2866_BALBc-1_X01_Y01_1025_128\", \"ini\": 2818, \"clust\": 1402, \"rank\": 2467, \"rankvar\": 2343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 8, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2251, \"cat-2\": \"Density: 21\", \"cat_2_index\": 188, \"group\": [1401.0, 553.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2988_BALBc-1_X01_Y01_1026_609\", \"ini\": 2817, \"clust\": 1574, \"rank\": 716, \"rankvar\": 1237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 9, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 950, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1012, \"group\": [1577.0, 626.0, 152.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3121_BALBc-1_X01_Y01_1028_10\", \"ini\": 2816, \"clust\": 432, \"rank\": 369, \"rankvar\": 440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 10, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1767, \"cat-2\": \"Density: 11\", \"cat_2_index\": 4, \"group\": [433.0, 252.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3220_BALBc-1_X01_Y01_1029_199\", \"ini\": 2815, \"clust\": 1564, \"rank\": 1116, \"rankvar\": 486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 11, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 951, \"cat-2\": \"Density: 21\", \"cat_2_index\": 189, \"group\": [1568.0, 620.0, 150.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3350_BALBc-1_X01_Y01_103_877\", \"ini\": 2814, \"clust\": 1507, \"rank\": 2520, \"rankvar\": 2719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 12, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1768, \"cat-2\": \"Density: 22\", \"cat_2_index\": 248, \"group\": [1508.0, 584.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3562_BALBc-1_X01_Y01_1032_941\", \"ini\": 2813, \"clust\": 433, \"rank\": 399, \"rankvar\": 698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 13, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 648, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1598, \"group\": [434.0, 252.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3566_BALBc-1_X01_Y01_1032_996\", \"ini\": 2812, \"clust\": 2003, \"rank\": 1969, \"rankvar\": 1663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 14, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 649, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1599, \"group\": [2004.0, 883.0, 229.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3997_BALBc-1_X01_Y01_1038_240\", \"ini\": 2811, \"clust\": 1489, \"rank\": 2241, \"rankvar\": 1956, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 15, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 952, \"cat-2\": \"Density: 23\", \"cat_2_index\": 351, \"group\": [1490.0, 581.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4331_BALBc-1_X01_Y01_1041_691\", \"ini\": 2810, \"clust\": 1494, \"rank\": 2089, \"rankvar\": 2251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 16, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 953, \"cat-2\": \"Density: 27\", \"cat_2_index\": 857, \"group\": [1494.0, 581.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4357_BALBc-1_X01_Y01_1041_883\", \"ini\": 2809, \"clust\": 2661, \"rank\": 2428, \"rankvar\": 905, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 17, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 733, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1013, \"group\": [2659.0, 1119.0, 286.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4446_BALBc-1_X01_Y01_1042_941\", \"ini\": 2808, \"clust\": 842, \"rank\": 996, \"rankvar\": 1056, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 18, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2500, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1328, \"group\": [846.0, 303.0, 71.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4781_BALBc-1_X01_Y01_1047_289\", \"ini\": 2807, \"clust\": 1984, \"rank\": 1928, \"rankvar\": 2542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 19, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2339, \"cat-2\": \"Density: 25\", \"cat_2_index\": 590, \"group\": [1987.0, 869.0, 224.0, 60.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6348_BALBc-1_X01_Y01_1065_305\", \"ini\": 2806, \"clust\": 1546, \"rank\": 1394, \"rankvar\": 2573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 20, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2472, \"cat-2\": \"Density: 25\", \"cat_2_index\": 591, \"group\": [1546.0, 602.0, 146.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6416_BALBc-1_X01_Y01_1066_194\", \"ini\": 2805, \"clust\": 1560, \"rank\": 1211, \"rankvar\": 302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 21, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2340, \"cat-2\": \"Density: 22\", \"cat_2_index\": 249, \"group\": [1563.0, 615.0, 149.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6555_BALBc-1_X01_Y01_1068_135\", \"ini\": 2804, \"clust\": 630, \"rank\": 2, \"rankvar\": 527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 22, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2252, \"cat-2\": \"Density: 19\", \"cat_2_index\": 110, \"group\": [626.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6697_BALBc-1_X01_Y01_1069_600\", \"ini\": 2803, \"clust\": 292, \"rank\": 908, \"rankvar\": 1006, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 23, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1769, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1329, \"group\": [296.0, 188.0, 55.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6969_BALBc-1_X01_Y01_1072_106\", \"ini\": 2802, \"clust\": 1748, \"rank\": 2825, \"rankvar\": 2824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 24, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2253, \"cat-2\": \"Density: 22\", \"cat_2_index\": 250, \"group\": [1747.0, 761.0, 202.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7033_BALBc-1_X01_Y01_1072_670\", \"ini\": 2801, \"clust\": 797, \"rank\": 262, \"rankvar\": 1704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 25, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1770, \"cat-2\": \"Density: 24\", \"cat_2_index\": 466, \"group\": [802.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7127_BALBc-1_X01_Y01_1073_75\", \"ini\": 2800, \"clust\": 531, \"rank\": 9, \"rankvar\": 652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 26, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2254, \"cat-2\": \"Density: 23\", \"cat_2_index\": 352, \"group\": [530.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7426_BALBc-1_X01_Y01_1077_266\", \"ini\": 2799, \"clust\": 1547, \"rank\": 948, \"rankvar\": 1798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 27, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2341, \"cat-2\": \"Density: 27\", \"cat_2_index\": 858, \"group\": [1547.0, 602.0, 146.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7713_BALBc-1_X01_Y01_1080_242\", \"ini\": 2798, \"clust\": 473, \"rank\": 364, \"rankvar\": 32, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 28, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2342, \"cat-2\": \"Density: 24\", \"cat_2_index\": 467, \"group\": [472.0, 263.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8117_BALBc-1_X01_Y01_1085_774\", \"ini\": 2797, \"clust\": 1219, \"rank\": 1967, \"rankvar\": 2761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 29, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 954, \"cat-2\": \"Density: 24\", \"cat_2_index\": 468, \"group\": [1218.0, 441.0, 102.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8161_BALBc-1_X01_Y01_1086_450\", \"ini\": 2796, \"clust\": 19, \"rank\": 1238, \"rankvar\": 1109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 30, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2220, \"cat-2\": \"Density: 27\", \"cat_2_index\": 859, \"group\": [18.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8563_BALBc-1_X01_Y01_1090_6\", \"ini\": 2795, \"clust\": 1582, \"rank\": 1156, \"rankvar\": 1546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 31, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 650, \"cat-2\": \"Density: 14\", \"cat_2_index\": 25, \"group\": [1581.0, 629.0, 153.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8628_BALBc-1_X01_Y01_1091_43\", \"ini\": 2794, \"clust\": 1406, \"rank\": 2132, \"rankvar\": 2220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 32, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1591, \"cat-2\": \"Density: 19\", \"cat_2_index\": 111, \"group\": [1405.0, 555.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9642_BALBc-1_X01_Y01_1102_507\", \"ini\": 2793, \"clust\": 1271, \"rank\": 1718, \"rankvar\": 855, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 33, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2255, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1330, \"group\": [1271.0, 480.0, 119.0, 31.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9652_BALBc-1_X01_Y01_1102_662\", \"ini\": 2792, \"clust\": 1509, \"rank\": 1977, \"rankvar\": 2158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 34, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1771, \"cat-2\": \"Density: 23\", \"cat_2_index\": 353, \"group\": [1512.0, 584.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9706_BALBc-1_X01_Y01_1103_434\", \"ini\": 2791, \"clust\": 1132, \"rank\": 690, \"rankvar\": 774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 35, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 955, \"cat-2\": \"Density: 27\", \"cat_2_index\": 860, \"group\": [1133.0, 379.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10170_BALBc-1_X01_Y01_1108_899\", \"ini\": 2790, \"clust\": 112, \"rank\": 2386, \"rankvar\": 2305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 36, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 956, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1171, \"group\": [111.0, 63.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10432_BALBc-1_X01_Y01_1111_474\", \"ini\": 2789, \"clust\": 1135, \"rank\": 542, \"rankvar\": 1456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 37, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2343, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1331, \"group\": [1135.0, 380.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10617_BALBc-1_X01_Y01_1113_927\", \"ini\": 2788, \"clust\": 233, \"rank\": 653, \"rankvar\": 1235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 38, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1592, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1014, \"group\": [233.0, 146.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10619_BALBc-1_X01_Y01_1113_965\", \"ini\": 2787, \"clust\": 496, \"rank\": 152, \"rankvar\": 1438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 39, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1593, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1457, \"group\": [496.0, 268.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10837_BALBc-1_X01_Y01_1116_858\", \"ini\": 2786, \"clust\": 1365, \"rank\": 2445, \"rankvar\": 2683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 40, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 734, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1015, \"group\": [1364.0, 534.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11085_BALBc-1_X01_Y01_112_387\", \"ini\": 2785, \"clust\": 715, \"rank\": 309, \"rankvar\": 376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 41, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 651, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1600, \"group\": [716.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11633_BALBc-1_X01_Y01_1126_451\", \"ini\": 2784, \"clust\": 968, \"rank\": 349, \"rankvar\": 142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 42, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2344, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1172, \"group\": [971.0, 352.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11797_BALBc-1_X01_Y01_1128_484\", \"ini\": 2783, \"clust\": 2116, \"rank\": 1589, \"rankvar\": 1784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 43, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2345, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1458, \"group\": [2117.0, 958.0, 255.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12372_BALBc-1_X01_Y01_1135_41\", \"ini\": 2782, \"clust\": 1498, \"rank\": 1603, \"rankvar\": 1937, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 44, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1594, \"cat-2\": \"Density: 16\", \"cat_2_index\": 47, \"group\": [1499.0, 583.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12571_BALBc-1_X01_Y01_1137_963\", \"ini\": 2781, \"clust\": 1997, \"rank\": 1889, \"rankvar\": 1560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 45, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 0, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1173, \"group\": [1997.0, 878.0, 228.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12609_BALBc-1_X01_Y01_1138_500\", \"ini\": 2780, \"clust\": 786, \"rank\": 279, \"rankvar\": 2137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 46, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2346, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1459, \"group\": [786.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13081_BALBc-1_X01_Y01_1143_436\", \"ini\": 2779, \"clust\": 348, \"rank\": 841, \"rankvar\": 1625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 47, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 957, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1016, \"group\": [350.0, 219.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13731_BALBc-1_X01_Y01_1150_998\", \"ini\": 2778, \"clust\": 91, \"rank\": 2535, \"rankvar\": 2198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 48, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2347, \"cat-2\": \"Density: 26\", \"cat_2_index\": 715, \"group\": [93.0, 49.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13749_BALBc-1_X01_Y01_1151_281\", \"ini\": 2777, \"clust\": 742, \"rank\": 127, \"rankvar\": 382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 49, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2348, \"cat-2\": \"Density: 21\", \"cat_2_index\": 190, \"group\": [742.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13948_BALBc-1_X01_Y01_1153_833\", \"ini\": 2776, \"clust\": 1364, \"rank\": 2378, \"rankvar\": 2807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 50, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1689, \"cat-2\": \"Density: 26\", \"cat_2_index\": 716, \"group\": [1366.0, 534.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14037_BALBc-1_X01_Y01_1154_869\", \"ini\": 2775, \"clust\": 1366, \"rank\": 2181, \"rankvar\": 2636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 51, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1595, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1332, \"group\": [1365.0, 534.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14325_BALBc-1_X01_Y01_1158_916\", \"ini\": 2774, \"clust\": 1335, \"rank\": 1987, \"rankvar\": 1141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 52, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 1, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1017, \"group\": [1337.0, 521.0, 131.0, 33.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14446_BALBc-1_X01_Y01_116_658\", \"ini\": 2773, \"clust\": 822, \"rank\": 797, \"rankvar\": 1886, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 53, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1772, \"cat-2\": \"Density: 27\", \"cat_2_index\": 861, \"group\": [822.0, 293.0, 69.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14698_BALBc-1_X01_Y01_1162_538\", \"ini\": 2772, \"clust\": 1343, \"rank\": 1738, \"rankvar\": 1471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 54, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1773, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1826, \"group\": [1343.0, 527.0, 133.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14855_BALBc-1_X01_Y01_1164_480\", \"ini\": 2771, \"clust\": 1536, \"rank\": 1695, \"rankvar\": 422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 55, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2349, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1716, \"group\": [1535.0, 595.0, 145.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15062_BALBc-1_X01_Y01_1166_964\", \"ini\": 2770, \"clust\": 1340, \"rank\": 1542, \"rankvar\": 1432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 56, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2350, \"cat-2\": \"Density: 27\", \"cat_2_index\": 862, \"group\": [1341.0, 525.0, 132.0, 33.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15797_BALBc-1_X01_Y01_1175_906\", \"ini\": 2769, \"clust\": 1237, \"rank\": 1417, \"rankvar\": 1442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 57, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 652, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1018, \"group\": [1238.0, 452.0, 106.0, 25.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16293_BALBc-1_X01_Y01_1181_53\", \"ini\": 2768, \"clust\": 1556, \"rank\": 1719, \"rankvar\": 639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 58, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1774, \"cat-2\": \"Density: 16\", \"cat_2_index\": 48, \"group\": [1558.0, 611.0, 148.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16370_BALBc-1_X01_Y01_1182_491\", \"ini\": 2767, \"clust\": 1551, \"rank\": 1216, \"rankvar\": 961, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 59, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1596, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1174, \"group\": [1551.0, 605.0, 147.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16563_BALBc-1_X01_Y01_1184_941\", \"ini\": 2766, \"clust\": 0, \"rank\": 670, \"rankvar\": 861, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 60, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2351, \"cat-2\": \"Density: 27\", \"cat_2_index\": 863, \"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16691_BALBc-1_X01_Y01_1186_803\", \"ini\": 2765, \"clust\": 525, \"rank\": 174, \"rankvar\": 107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 61, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 735, \"cat-2\": \"Density: 25\", \"cat_2_index\": 592, \"group\": [525.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17060_BALBc-1_X01_Y01_1190_820\", \"ini\": 2764, \"clust\": 2733, \"rank\": 2616, \"rankvar\": 2791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 62, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 958, \"cat-2\": \"Density: 26\", \"cat_2_index\": 717, \"group\": [2734.0, 1162.0, 301.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17493_BALBc-1_X01_Y01_1196_594\", \"ini\": 2763, \"clust\": 31, \"rank\": 1236, \"rankvar\": 2613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 63, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1775, \"cat-2\": \"Density: 26\", \"cat_2_index\": 718, \"group\": [33.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17526_BALBc-1_X01_Y01_1196_998\", \"ini\": 2762, \"clust\": 1993, \"rank\": 1785, \"rankvar\": 1643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 64, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2352, \"cat-2\": \"Density: 26\", \"cat_2_index\": 719, \"group\": [1995.0, 876.0, 227.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17577_BALBc-1_X01_Y01_1197_786\", \"ini\": 2761, \"clust\": 819, \"rank\": 278, \"rankvar\": 2368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 65, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 736, \"cat-2\": \"Density: 24\", \"cat_2_index\": 469, \"group\": [819.0, 292.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17628_BALBc-1_X01_Y01_1198_413\", \"ini\": 2760, \"clust\": 1496, \"rank\": 2176, \"rankvar\": 2739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 66, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 959, \"cat-2\": \"Density: 26\", \"cat_2_index\": 720, \"group\": [1497.0, 582.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18640_BALBc-1_X01_Y01_1209_127\", \"ini\": 2759, \"clust\": 1327, \"rank\": 1118, \"rankvar\": 1500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 67, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 960, \"cat-2\": \"Density: 20\", \"cat_2_index\": 137, \"group\": [1328.0, 516.0, 128.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19476_BALBc-1_X01_Y01_1219_513\", \"ini\": 2758, \"clust\": 1140, \"rank\": 1106, \"rankvar\": 624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 68, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1776, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1019, \"group\": [1145.0, 383.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19678_BALBc-1_X01_Y01_1221_169\", \"ini\": 2757, \"clust\": 1284, \"rank\": 2668, \"rankvar\": 2651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 69, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1690, \"cat-2\": \"Density: 22\", \"cat_2_index\": 251, \"group\": [1283.0, 490.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19861_BALBc-1_X01_Y01_1223_430\", \"ini\": 2756, \"clust\": 1370, \"rank\": 2242, \"rankvar\": 2635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 70, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1597, \"cat-2\": \"Density: 27\", \"cat_2_index\": 864, \"group\": [1370.0, 535.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19879_BALBc-1_X01_Y01_1223_598\", \"ini\": 2755, \"clust\": 1502, \"rank\": 1835, \"rankvar\": 2380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 71, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2353, \"cat-2\": \"Density: 27\", \"cat_2_index\": 865, \"group\": [1507.0, 583.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20505_BALBc-1_X01_Y01_1230_928\", \"ini\": 2754, \"clust\": 1147, \"rank\": 899, \"rankvar\": 420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 72, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 653, \"cat-2\": \"Density: 25\", \"cat_2_index\": 593, \"group\": [1146.0, 384.0, 81.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20820_BALBc-1_X01_Y01_1234_752\", \"ini\": 2753, \"clust\": 47, \"rank\": 1010, \"rankvar\": 2484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 73, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 961, \"cat-2\": \"Density: 24\", \"cat_2_index\": 470, \"group\": [45.0, 25.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20832_BALBc-1_X01_Y01_1234_952\", \"ini\": 2752, \"clust\": 48, \"rank\": 1165, \"rankvar\": 2679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 74, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2354, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1020, \"group\": [46.0, 25.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21409_BALBc-1_X01_Y01_1241_777\", \"ini\": 2751, \"clust\": 1461, \"rank\": 2552, \"rankvar\": 2530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 75, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1777, \"cat-2\": \"Density: 24\", \"cat_2_index\": 471, \"group\": [1458.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21558_BALBc-1_X01_Y01_1243_856\", \"ini\": 2750, \"clust\": 1685, \"rank\": 717, \"rankvar\": 1576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 76, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 654, \"cat-2\": \"Density: 25\", \"cat_2_index\": 594, \"group\": [1686.0, 710.0, 181.0, 47.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21876_BALBc-1_X01_Y01_1248_400\", \"ini\": 2749, \"clust\": 1559, \"rank\": 1303, \"rankvar\": 345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 77, \"cat-1\": \"Neighbor: CD3(+) other markers (-)\", \"cat_1_index\": 947, \"cat-2\": \"Density: 23\", \"cat_2_index\": 354, \"group\": [1564.0, 616.0, 149.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22222_BALBc-1_X01_Y01_1251_971\", \"ini\": 2748, \"clust\": 2071, \"rank\": 924, \"rankvar\": 1031, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 78, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 737, \"cat-2\": \"Density: 27\", \"cat_2_index\": 866, \"group\": [2072.0, 936.0, 252.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22283_BALBc-1_X01_Y01_1252_608\", \"ini\": 2747, \"clust\": 1533, \"rank\": 1613, \"rankvar\": 2056, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 79, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2355, \"cat-2\": \"Density: 23\", \"cat_2_index\": 355, \"group\": [1532.0, 594.0, 145.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22370_BALBc-1_X01_Y01_1253_930\", \"ini\": 2746, \"clust\": 296, \"rank\": 1093, \"rankvar\": 1091, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 80, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 738, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1021, \"group\": [297.0, 189.0, 56.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22471_BALBc-1_X01_Y01_1255_479\", \"ini\": 2745, \"clust\": 1444, \"rank\": 2660, \"rankvar\": 2689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 81, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 739, \"cat-2\": \"Density: 27\", \"cat_2_index\": 867, \"group\": [1443.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22920_BALBc-1_X01_Y01_1260_756\", \"ini\": 2744, \"clust\": 334, \"rank\": 875, \"rankvar\": 280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 82, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 962, \"cat-2\": \"Density: 23\", \"cat_2_index\": 356, \"group\": [335.0, 210.0, 61.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23720_BALBc-1_X01_Y01_1271_214\", \"ini\": 2743, \"clust\": 624, \"rank\": 34, \"rankvar\": 371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 83, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1778, \"cat-2\": \"Density: 22\", \"cat_2_index\": 252, \"group\": [622.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23748_BALBc-1_X01_Y01_1271_543\", \"ini\": 2742, \"clust\": 1490, \"rank\": 2553, \"rankvar\": 2603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 84, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2356, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1175, \"group\": [1491.0, 581.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23973_BALBc-1_X01_Y01_1274_422\", \"ini\": 2741, \"clust\": 1248, \"rank\": 1757, \"rankvar\": 2694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 85, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1779, \"cat-2\": \"Density: 22\", \"cat_2_index\": 253, \"group\": [1252.0, 465.0, 111.0, 27.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24535_BALBc-1_X01_Y01_1281_350\", \"ini\": 2740, \"clust\": 984, \"rank\": 530, \"rankvar\": 287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 86, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 963, \"cat-2\": \"Density: 20\", \"cat_2_index\": 138, \"group\": [986.0, 356.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24998_BALBc-1_X01_Y01_1287_867\", \"ini\": 2739, \"clust\": 1683, \"rank\": 2210, \"rankvar\": 2436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 87, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 655, \"cat-2\": \"Density: 23\", \"cat_2_index\": 357, \"group\": [1683.0, 707.0, 180.0, 46.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25430_BALBc-1_X01_Y01_1292_741\", \"ini\": 2738, \"clust\": 1241, \"rank\": 941, \"rankvar\": 1259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 88, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1780, \"cat-2\": \"Density: 23\", \"cat_2_index\": 358, \"group\": [1242.0, 456.0, 108.0, 26.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25531_BALBc-1_X01_Y01_1293_912\", \"ini\": 2737, \"clust\": 1374, \"rank\": 2430, \"rankvar\": 2551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 89, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1781, \"cat-2\": \"Density: 26\", \"cat_2_index\": 721, \"group\": [1375.0, 536.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25534_BALBc-1_X01_Y01_1293_926\", \"ini\": 2736, \"clust\": 1161, \"rank\": 1256, \"rankvar\": 1384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 90, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1782, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1333, \"group\": [1162.0, 396.0, 84.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25729_BALBc-1_X01_Y01_1296_850\", \"ini\": 2735, \"clust\": 743, \"rank\": 35, \"rankvar\": 607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 91, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1598, \"cat-2\": \"Density: 25\", \"cat_2_index\": 595, \"group\": [743.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25779_BALBc-1_X01_Y01_1297_522\", \"ini\": 2734, \"clust\": 1569, \"rank\": 1066, \"rankvar\": 2586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 92, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1783, \"cat-2\": \"Density: 27\", \"cat_2_index\": 868, \"group\": [1569.0, 621.0, 151.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26533_BALBc-1_X01_Y01_1306_107\", \"ini\": 2733, \"clust\": 1605, \"rank\": 992, \"rankvar\": 1613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 93, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 740, \"cat-2\": \"Density: 21\", \"cat_2_index\": 191, \"group\": [1606.0, 644.0, 157.0, 37.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27126_BALBc-1_X01_Y01_1313_325\", \"ini\": 2732, \"clust\": 1578, \"rank\": 1112, \"rankvar\": 1166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 94, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1784, \"cat-2\": \"Density: 23\", \"cat_2_index\": 359, \"group\": [1578.0, 627.0, 152.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27291_BALBc-1_X01_Y01_1315_624\", \"ini\": 2731, \"clust\": 1463, \"rank\": 2754, \"rankvar\": 2604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 95, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1785, \"cat-2\": \"Density: 24\", \"cat_2_index\": 472, \"group\": [1464.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27496_BALBc-1_X01_Y01_1318_358\", \"ini\": 2730, \"clust\": 1445, \"rank\": 2740, \"rankvar\": 2532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 96, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2473, \"cat-2\": \"Density: 23\", \"cat_2_index\": 360, \"group\": [1444.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27658_BALBc-1_X01_Y01_132_746\", \"ini\": 2729, \"clust\": 1390, \"rank\": 1762, \"rankvar\": 1125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 97, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2357, \"cat-2\": \"Density: 26\", \"cat_2_index\": 722, \"group\": [1390.0, 545.0, 137.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27856_BALBc-1_X01_Y01_1322_539\", \"ini\": 2728, \"clust\": 1623, \"rank\": 1540, \"rankvar\": 1825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 98, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2256, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1022, \"group\": [1626.0, 660.0, 163.0, 39.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27868_BALBc-1_X01_Y01_1322_716\", \"ini\": 2727, \"clust\": 1371, \"rank\": 2244, \"rankvar\": 2569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 99, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 741, \"cat-2\": \"Density: 25\", \"cat_2_index\": 596, \"group\": [1371.0, 535.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28466_BALBc-1_X01_Y01_1329_929\", \"ini\": 2726, \"clust\": 104, \"rank\": 2408, \"rankvar\": 2489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 100, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1786, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1601, \"group\": [104.0, 57.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28618_BALBc-1_X01_Y01_1331_1005\", \"ini\": 2725, \"clust\": 266, \"rank\": 1443, \"rankvar\": 1785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 101, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1787, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1334, \"group\": [269.0, 169.0, 50.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29005_BALBc-1_X01_Y01_1336_646\", \"ini\": 2724, \"clust\": 1521, \"rank\": 1297, \"rankvar\": 1066, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 102, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1788, \"cat-2\": \"Density: 20\", \"cat_2_index\": 139, \"group\": [1519.0, 588.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29014_BALBc-1_X01_Y01_1336_791\", \"ini\": 2723, \"clust\": 1378, \"rank\": 2438, \"rankvar\": 2629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 103, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2257, \"cat-2\": \"Density: 27\", \"cat_2_index\": 869, \"group\": [1377.0, 537.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29210_BALBc-1_X01_Y01_134_634\", \"ini\": 2722, \"clust\": 1408, \"rank\": 2140, \"rankvar\": 2631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 104, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1599, \"cat-2\": \"Density: 26\", \"cat_2_index\": 723, \"group\": [1409.0, 557.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29734_BALBc-1_X01_Y01_140_392\", \"ini\": 2721, \"clust\": 306, \"rank\": 795, \"rankvar\": 1212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 105, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 742, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1602, \"group\": [310.0, 196.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30018_BALBc-1_X01_Y01_144_355\", \"ini\": 2720, \"clust\": 716, \"rank\": 55, \"rankvar\": 441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 106, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 743, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1927, \"group\": [714.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30053_BALBc-1_X01_Y01_144_841\", \"ini\": 2719, \"clust\": 1426, \"rank\": 2619, \"rankvar\": 2563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 107, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1789, \"cat-2\": \"Density: 22\", \"cat_2_index\": 254, \"group\": [1426.0, 566.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30398_BALBc-1_X01_Y01_149_544\", \"ini\": 2718, \"clust\": 1062, \"rank\": 183, \"rankvar\": 187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 108, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1790, \"cat-2\": \"Density: 23\", \"cat_2_index\": 361, \"group\": [1064.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30507_BALBc-1_X01_Y01_15_762\", \"ini\": 2717, \"clust\": 1508, \"rank\": 2282, \"rankvar\": 2149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 109, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 744, \"cat-2\": \"Density: 15\", \"cat_2_index\": 33, \"group\": [1509.0, 584.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30743_BALBc-1_X01_Y01_152_927\", \"ini\": 2716, \"clust\": 1384, \"rank\": 1772, \"rankvar\": 1386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 110, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1791, \"cat-2\": \"Density: 22\", \"cat_2_index\": 255, \"group\": [1384.0, 542.0, 136.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30803_BALBc-1_X01_Y01_153_644\", \"ini\": 2715, \"clust\": 1420, \"rank\": 2547, \"rankvar\": 2473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 111, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1792, \"cat-2\": \"Density: 26\", \"cat_2_index\": 724, \"group\": [1421.0, 562.0, 140.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31107_BALBc-1_X01_Y01_157_727\", \"ini\": 2714, \"clust\": 436, \"rank\": 703, \"rankvar\": 209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 112, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2358, \"cat-2\": \"Density: 27\", \"cat_2_index\": 870, \"group\": [439.0, 253.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32393_BALBc-1_X01_Y01_174_205\", \"ini\": 2713, \"clust\": 1633, \"rank\": 676, \"rankvar\": 650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 113, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2359, \"cat-2\": \"Density: 26\", \"cat_2_index\": 725, \"group\": [1633.0, 667.0, 167.0, 40.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32406_BALBc-1_X01_Y01_174_446\", \"ini\": 2712, \"clust\": 1512, \"rank\": 1755, \"rankvar\": 2292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 114, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1793, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1335, \"group\": [1513.0, 585.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32440_BALBc-1_X01_Y01_174_937\", \"ini\": 2711, \"clust\": 1452, \"rank\": 2755, \"rankvar\": 2792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 115, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2221, \"cat-2\": \"Density: 23\", \"cat_2_index\": 362, \"group\": [1450.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33321_BALBc-1_X01_Y01_185_828\", \"ini\": 2710, \"clust\": 1453, \"rank\": 2747, \"rankvar\": 2811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 116, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1691, \"cat-2\": \"Density: 23\", \"cat_2_index\": 363, \"group\": [1451.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34399_BALBc-1_X01_Y01_199_788\", \"ini\": 2709, \"clust\": 458, \"rank\": 618, \"rankvar\": 1626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 117, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2360, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1023, \"group\": [459.0, 260.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34469_BALBc-1_X01_Y01_20_606\", \"ini\": 2708, \"clust\": 174, \"rank\": 945, \"rankvar\": 1306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 118, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1794, \"cat-2\": \"Density: 15\", \"cat_2_index\": 34, \"group\": [177.0, 117.0, 37.0, 13.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34670_BALBc-1_X01_Y01_202_526\", \"ini\": 2707, \"clust\": 56, \"rank\": 1452, \"rankvar\": 2260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 119, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 656, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1176, \"group\": [55.0, 26.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34677_BALBc-1_X01_Y01_202_578\", \"ini\": 2706, \"clust\": 2638, \"rank\": 1872, \"rankvar\": 830, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 120, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1795, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1177, \"group\": [2639.0, 1103.0, 284.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34817_BALBc-1_X01_Y01_204_297\", \"ini\": 2705, \"clust\": 1272, \"rank\": 1553, \"rankvar\": 1145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 121, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1692, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1336, \"group\": [1272.0, 481.0, 119.0, 31.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34866_BALBc-1_X01_Y01_204_930\", \"ini\": 2704, \"clust\": 928, \"rank\": 1063, \"rankvar\": 822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 122, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2361, \"cat-2\": \"Density: 23\", \"cat_2_index\": 364, \"group\": [930.0, 337.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35315_BALBc-1_X01_Y01_210_142\", \"ini\": 2703, \"clust\": 340, \"rank\": 657, \"rankvar\": 1807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 123, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1796, \"cat-2\": \"Density: 23\", \"cat_2_index\": 365, \"group\": [341.0, 215.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35570_BALBc-1_X01_Y01_213_684\", \"ini\": 2702, \"clust\": 1352, \"rank\": 2703, \"rankvar\": 2619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 124, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1797, \"cat-2\": \"Density: 26\", \"cat_2_index\": 726, \"group\": [1355.0, 530.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35785_BALBc-1_X01_Y01_216_442\", \"ini\": 2701, \"clust\": 795, \"rank\": 108, \"rankvar\": 1221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 125, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1798, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1603, \"group\": [794.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36633_BALBc-1_X01_Y01_227_305\", \"ini\": 2700, \"clust\": 1541, \"rank\": 1379, \"rankvar\": 2066, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 126, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1534, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1337, \"group\": [1539.0, 599.0, 146.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36710_BALBc-1_X01_Y01_228_469\", \"ini\": 2699, \"clust\": 494, \"rank\": 393, \"rankvar\": 82, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 127, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1799, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1178, \"group\": [494.0, 268.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36780_BALBc-1_X01_Y01_229_278\", \"ini\": 2698, \"clust\": 1624, \"rank\": 1249, \"rankvar\": 1084, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 128, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1535, \"cat-2\": \"Density: 23\", \"cat_2_index\": 366, \"group\": [1624.0, 658.0, 163.0, 39.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37147_BALBc-1_X01_Y01_233_345\", \"ini\": 2697, \"clust\": 1538, \"rank\": 1146, \"rankvar\": 1952, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 129, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 964, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1338, \"group\": [1543.0, 600.0, 146.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37192_BALBc-1_X01_Y01_233_984\", \"ini\": 2696, \"clust\": 1220, \"rank\": 2213, \"rankvar\": 2417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 130, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2222, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1024, \"group\": [1219.0, 441.0, 102.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37390_BALBc-1_X01_Y01_236_829\", \"ini\": 2695, \"clust\": 1592, \"rank\": 900, \"rankvar\": 2338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 131, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1693, \"cat-2\": \"Density: 27\", \"cat_2_index\": 871, \"group\": [1592.0, 636.0, 155.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37665_BALBc-1_X01_Y01_24_582\", \"ini\": 2694, \"clust\": 2006, \"rank\": 1642, \"rankvar\": 1679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 132, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1800, \"cat-2\": \"Density: 14\", \"cat_2_index\": 26, \"group\": [2008.0, 886.0, 230.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38087_BALBc-1_X01_Y01_245_436\", \"ini\": 2693, \"clust\": 1008, \"rank\": 492, \"rankvar\": 412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 133, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2362, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1604, \"group\": [1008.0, 365.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38121_BALBc-1_X01_Y01_245_812\", \"ini\": 2692, \"clust\": 823, \"rank\": 675, \"rankvar\": 1058, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 134, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2363, \"cat-2\": \"Density: 27\", \"cat_2_index\": 872, \"group\": [823.0, 293.0, 69.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38523_BALBc-1_X01_Y01_250_505\", \"ini\": 2691, \"clust\": 616, \"rank\": 76, \"rankvar\": 51, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 135, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1801, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1025, \"group\": [614.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38805_BALBc-1_X01_Y01_253_960\", \"ini\": 2690, \"clust\": 243, \"rank\": 867, \"rankvar\": 1179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 136, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2474, \"cat-2\": \"Density: 26\", \"cat_2_index\": 727, \"group\": [246.0, 153.0, 46.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38981_BALBc-1_X01_Y01_256_369\", \"ini\": 2689, \"clust\": 603, \"rank\": 83, \"rankvar\": 473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 137, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2364, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1460, \"group\": [602.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39031_BALBc-1_X01_Y01_256_980\", \"ini\": 2688, \"clust\": 1432, \"rank\": 2657, \"rankvar\": 2429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 138, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1802, \"cat-2\": \"Density: 26\", \"cat_2_index\": 728, \"group\": [1430.0, 568.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39262_BALBc-1_X01_Y01_26_273\", \"ini\": 2687, \"clust\": 1424, \"rank\": 2566, \"rankvar\": 2678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 139, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1803, \"cat-2\": \"Density: 17\", \"cat_2_index\": 68, \"group\": [1423.0, 563.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39659_BALBc-1_X01_Y01_264_554\", \"ini\": 2686, \"clust\": 1266, \"rank\": 2146, \"rankvar\": 1725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 140, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1694, \"cat-2\": \"Density: 27\", \"cat_2_index\": 873, \"group\": [1267.0, 478.0, 118.0, 31.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39807_BALBc-1_X01_Y01_266_477\", \"ini\": 2685, \"clust\": 1442, \"rank\": 2516, \"rankvar\": 2391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 141, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1695, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1605, \"group\": [1441.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39811_BALBc-1_X01_Y01_266_516\", \"ini\": 2684, \"clust\": 1195, \"rank\": 993, \"rankvar\": 1904, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 142, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1696, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1179, \"group\": [1195.0, 425.0, 97.0, 23.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40558_BALBc-1_X01_Y01_275_814\", \"ini\": 2683, \"clust\": 1261, \"rank\": 1643, \"rankvar\": 208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 143, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2365, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1180, \"group\": [1264.0, 476.0, 117.0, 30.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41204_BALBc-1_X01_Y01_283_369\", \"ini\": 2682, \"clust\": 1359, \"rank\": 2815, \"rankvar\": 2787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 144, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 965, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1181, \"group\": [1358.0, 531.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41354_BALBc-1_X01_Y01_285_575\", \"ini\": 2681, \"clust\": 1523, \"rank\": 1435, \"rankvar\": 2355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 145, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1804, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1606, \"group\": [1521.0, 588.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41940_BALBc-1_X01_Y01_292_456\", \"ini\": 2680, \"clust\": 1473, \"rank\": 2305, \"rankvar\": 2025, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 146, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1697, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1928, \"group\": [1473.0, 574.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41976_BALBc-1_X01_Y01_292_937\", \"ini\": 2679, \"clust\": 23, \"rank\": 1293, \"rankvar\": 1467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 147, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1805, \"cat-2\": \"Density: 27\", \"cat_2_index\": 874, \"group\": [27.0, 19.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42301_BALBc-1_X01_Y01_297_556\", \"ini\": 2678, \"clust\": 2590, \"rank\": 2225, \"rankvar\": 1275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 148, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1698, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1461, \"group\": [2593.0, 1089.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42630_BALBc-1_X01_Y01_300_775\", \"ini\": 2677, \"clust\": 1611, \"rank\": 1306, \"rankvar\": 1337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 149, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2366, \"cat-2\": \"Density: 25\", \"cat_2_index\": 597, \"group\": [1612.0, 648.0, 158.0, 37.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42740_BALBc-1_X01_Y01_302_128\", \"ini\": 2676, \"clust\": 1397, \"rank\": 1931, \"rankvar\": 2026, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 150, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1600, \"cat-2\": \"Density: 22\", \"cat_2_index\": 256, \"group\": [1399.0, 551.0, 138.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43040_BALBc-1_X01_Y01_306_364\", \"ini\": 2675, \"clust\": 1290, \"rank\": 2495, \"rankvar\": 2554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 151, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 966, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1717, \"group\": [1292.0, 490.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43178_BALBc-1_X01_Y01_308_412\", \"ini\": 2674, \"clust\": 1440, \"rank\": 2677, \"rankvar\": 2686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 152, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2367, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2136, \"group\": [1439.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43217_BALBc-1_X01_Y01_308_969\", \"ini\": 2673, \"clust\": 1647, \"rank\": 990, \"rankvar\": 1005, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 153, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2475, \"cat-2\": \"Density: 27\", \"cat_2_index\": 875, \"group\": [1648.0, 681.0, 173.0, 43.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43287_BALBc-1_X01_Y01_309_987\", \"ini\": 2672, \"clust\": 1468, \"rank\": 2311, \"rankvar\": 1511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 154, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2476, \"cat-2\": \"Density: 27\", \"cat_2_index\": 876, \"group\": [1472.0, 573.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43697_BALBc-1_X01_Y01_314_444\", \"ini\": 2671, \"clust\": 1433, \"rank\": 2460, \"rankvar\": 1586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 155, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 2, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2218, \"group\": [1431.0, 568.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43943_BALBc-1_X01_Y01_317_804\", \"ini\": 2670, \"clust\": 783, \"rank\": 508, \"rankvar\": 1116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 156, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2368, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1339, \"group\": [784.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44052_BALBc-1_X01_Y01_318_913\", \"ini\": 2669, \"clust\": 434, \"rank\": 401, \"rankvar\": 1294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 157, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2258, \"cat-2\": \"Density: 26\", \"cat_2_index\": 729, \"group\": [435.0, 252.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44139_BALBc-1_X01_Y01_32_289\", \"ini\": 2668, \"clust\": 1764, \"rank\": 2575, \"rankvar\": 2814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 158, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1806, \"cat-2\": \"Density: 18\", \"cat_2_index\": 87, \"group\": [1765.0, 770.0, 203.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44170_BALBc-1_X01_Y01_32_755\", \"ini\": 2667, \"clust\": 1336, \"rank\": 1691, \"rankvar\": 1198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 159, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 745, \"cat-2\": \"Density: 16\", \"cat_2_index\": 49, \"group\": [1335.0, 521.0, 131.0, 33.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44230_BALBc-1_X01_Y01_320_524\", \"ini\": 2666, \"clust\": 1730, \"rank\": 2149, \"rankvar\": 1842, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 160, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1699, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1462, \"group\": [1730.0, 749.0, 197.0, 53.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44536_BALBc-1_X01_Y01_324_441\", \"ini\": 2665, \"clust\": 312, \"rank\": 534, \"rankvar\": 2230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 161, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2369, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2363, \"group\": [311.0, 197.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44775_BALBc-1_X01_Y01_327_457\", \"ini\": 2664, \"clust\": 488, \"rank\": 430, \"rankvar\": 633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 162, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2370, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2364, \"group\": [490.0, 266.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45547_BALBc-1_X01_Y01_336_358\", \"ini\": 2663, \"clust\": 1138, \"rank\": 704, \"rankvar\": 1981, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 163, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 657, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1607, \"group\": [1138.0, 381.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45620_BALBc-1_X01_Y01_337_515\", \"ini\": 2662, \"clust\": 29, \"rank\": 786, \"rankvar\": 1197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 164, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 967, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2042, \"group\": [39.0, 22.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45792_BALBc-1_X01_Y01_339_781\", \"ini\": 2661, \"clust\": 1621, \"rank\": 1198, \"rankvar\": 983, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 165, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2259, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1463, \"group\": [1620.0, 654.0, 161.0, 39.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46150_BALBc-1_X01_Y01_343_551\", \"ini\": 2660, \"clust\": 1505, \"rank\": 2168, \"rankvar\": 2781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 166, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 968, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1182, \"group\": [1503.0, 583.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46164_BALBc-1_X01_Y01_343_747\", \"ini\": 2659, \"clust\": 324, \"rank\": 460, \"rankvar\": 1671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 167, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1807, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1026, \"group\": [325.0, 204.0, 59.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46255_BALBc-1_X01_Y01_344_899\", \"ini\": 2658, \"clust\": 1369, \"rank\": 2380, \"rankvar\": 2517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 168, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1808, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1183, \"group\": [1372.0, 535.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46297_BALBc-1_X01_Y01_345_451\", \"ini\": 2657, \"clust\": 1557, \"rank\": 1387, \"rankvar\": 1733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 169, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2371, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2137, \"group\": [1556.0, 610.0, 148.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46315_BALBc-1_X01_Y01_345_681\", \"ini\": 2656, \"clust\": 753, \"rank\": 206, \"rankvar\": 23, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 170, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2260, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1027, \"group\": [750.0, 279.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46829_BALBc-1_X01_Y01_351_348\", \"ini\": 2655, \"clust\": 1472, \"rank\": 2434, \"rankvar\": 2556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 171, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 969, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1608, \"group\": [1475.0, 574.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46843_BALBc-1_X01_Y01_351_600\", \"ini\": 2654, \"clust\": 1438, \"rank\": 2719, \"rankvar\": 2641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 172, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1809, \"cat-2\": \"Density: 25\", \"cat_2_index\": 598, \"group\": [1437.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46930_BALBc-1_X01_Y01_352_655\", \"ini\": 2653, \"clust\": 491, \"rank\": 586, \"rankvar\": 455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 173, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1810, \"cat-2\": \"Density: 23\", \"cat_2_index\": 367, \"group\": [492.0, 267.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47025_BALBc-1_X01_Y01_353_977\", \"ini\": 2652, \"clust\": 1221, \"rank\": 1608, \"rankvar\": 2684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 174, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2223, \"cat-2\": \"Density: 26\", \"cat_2_index\": 730, \"group\": [1220.0, 442.0, 102.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47116_BALBc-1_X01_Y01_355_165\", \"ini\": 2651, \"clust\": 1537, \"rank\": 2204, \"rankvar\": 2555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 175, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1700, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1028, \"group\": [1536.0, 596.0, 145.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47124_BALBc-1_X01_Y01_355_25\", \"ini\": 2650, \"clust\": 1566, \"rank\": 468, \"rankvar\": 689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 176, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1811, \"cat-2\": \"Density: 13\", \"cat_2_index\": 11, \"group\": [1565.0, 617.0, 150.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47290_BALBc-1_X01_Y01_357_393\", \"ini\": 2649, \"clust\": 1548, \"rank\": 1268, \"rankvar\": 2277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 177, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 658, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1929, \"group\": [1549.0, 604.0, 147.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48026_BALBc-1_X01_Y01_366_429\", \"ini\": 2648, \"clust\": 1583, \"rank\": 1365, \"rankvar\": 2257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 178, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2372, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1930, \"group\": [1582.0, 629.0, 153.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48028_BALBc-1_X01_Y01_366_461\", \"ini\": 2647, \"clust\": 604, \"rank\": 299, \"rankvar\": 92, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 179, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1601, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1931, \"group\": [603.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48335_BALBc-1_X01_Y01_37_313\", \"ini\": 2646, \"clust\": 1446, \"rank\": 2787, \"rankvar\": 2823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 180, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 746, \"cat-2\": \"Density: 23\", \"cat_2_index\": 368, \"group\": [1445.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48557_BALBc-1_X01_Y01_372_492\", \"ini\": 2645, \"clust\": 1021, \"rank\": 283, \"rankvar\": 556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 181, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 970, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2138, \"group\": [1023.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48582_BALBc-1_X01_Y01_372_692\", \"ini\": 2644, \"clust\": 1360, \"rank\": 2822, \"rankvar\": 2803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 182, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2373, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1340, \"group\": [1359.0, 531.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48853_BALBc-1_X01_Y01_376_314\", \"ini\": 2643, \"clust\": 1457, \"rank\": 2774, \"rankvar\": 2759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 971, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1184, \"group\": [1456.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49055_BALBc-1_X01_Y01_378_862\", \"ini\": 2642, \"clust\": 2734, \"rank\": 2066, \"rankvar\": 853, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 184, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2261, \"cat-2\": \"Density: 27\", \"cat_2_index\": 877, \"group\": [2735.0, 1163.0, 301.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49397_BALBc-1_X01_Y01_382_422\", \"ini\": 2641, \"clust\": 18, \"rank\": 1322, \"rankvar\": 1301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 185, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 659, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2043, \"group\": [20.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49496_BALBc-1_X01_Y01_383_563\", \"ini\": 2640, \"clust\": 1383, \"rank\": 1400, \"rankvar\": 1619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 186, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 972, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1464, \"group\": [1386.0, 542.0, 136.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50108_BALBc-1_X01_Y01_390_456\", \"ini\": 2639, \"clust\": 470, \"rank\": 459, \"rankvar\": 106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 187, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1602, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2044, \"group\": [470.0, 263.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50236_BALBc-1_X01_Y01_392_183\", \"ini\": 2638, \"clust\": 1411, \"rank\": 1953, \"rankvar\": 2241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 188, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1812, \"cat-2\": \"Density: 27\", \"cat_2_index\": 878, \"group\": [1411.0, 557.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50329_BALBc-1_X01_Y01_393_436\", \"ini\": 2637, \"clust\": 1387, \"rank\": 1985, \"rankvar\": 2701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 189, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 3, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2139, \"group\": [1387.0, 543.0, 137.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50622_BALBc-1_X01_Y01_397_212\", \"ini\": 2636, \"clust\": 1606, \"rank\": 1343, \"rankvar\": 2160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 190, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1701, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1029, \"group\": [1604.0, 643.0, 157.0, 37.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50633_BALBc-1_X01_Y01_397_371\", \"ini\": 2635, \"clust\": 1491, \"rank\": 2316, \"rankvar\": 2394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 191, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 660, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2219, \"group\": [1492.0, 581.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50940_BALBc-1_X01_Y01_40_516\", \"ini\": 2634, \"clust\": 1401, \"rank\": 2057, \"rankvar\": 2328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 192, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2374, \"cat-2\": \"Density: 22\", \"cat_2_index\": 257, \"group\": [1403.0, 553.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50944_BALBc-1_X01_Y01_40_562\", \"ini\": 2633, \"clust\": 567, \"rank\": 64, \"rankvar\": 817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 193, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1813, \"cat-2\": \"Density: 19\", \"cat_2_index\": 112, \"group\": [564.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51105_BALBc-1_X01_Y01_401_748\", \"ini\": 2632, \"clust\": 14, \"rank\": 923, \"rankvar\": 1475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 194, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2375, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1030, \"group\": [14.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51247_BALBc-1_X01_Y01_403_851\", \"ini\": 2631, \"clust\": 304, \"rank\": 681, \"rankvar\": 2273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 195, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2262, \"cat-2\": \"Density: 27\", \"cat_2_index\": 879, \"group\": [304.0, 193.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51412_BALBc-1_X01_Y01_405_776\", \"ini\": 2630, \"clust\": 64, \"rank\": 1680, \"rankvar\": 2472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 196, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2263, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1718, \"group\": [66.0, 28.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51444_BALBc-1_X01_Y01_406_240\", \"ini\": 2629, \"clust\": 313, \"rank\": 968, \"rankvar\": 1093, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 197, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2376, \"cat-2\": \"Density: 25\", \"cat_2_index\": 599, \"group\": [312.0, 197.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51463_BALBc-1_X01_Y01_406_433\", \"ini\": 2628, \"clust\": 1458, \"rank\": 2821, \"rankvar\": 2821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 198, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 661, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1719, \"group\": [1457.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51525_BALBc-1_X01_Y01_407_279\", \"ini\": 2627, \"clust\": 1451, \"rank\": 2753, \"rankvar\": 2758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 199, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 662, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1341, \"group\": [1452.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51947_BALBc-1_X01_Y01_411_566\", \"ini\": 2626, \"clust\": 294, \"rank\": 672, \"rankvar\": 1355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 200, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2377, \"cat-2\": \"Density: 27\", \"cat_2_index\": 880, \"group\": [293.0, 186.0, 55.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51995_BALBc-1_X01_Y01_412_107\", \"ini\": 2625, \"clust\": 322, \"rank\": 913, \"rankvar\": 2041, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 201, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1814, \"cat-2\": \"Density: 23\", \"cat_2_index\": 369, \"group\": [321.0, 201.0, 58.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52220_BALBc-1_X01_Y01_414_632\", \"ini\": 2624, \"clust\": 1542, \"rank\": 1484, \"rankvar\": 2013, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 202, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2378, \"cat-2\": \"Density: 27\", \"cat_2_index\": 881, \"group\": [1540.0, 599.0, 146.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52340_BALBc-1_X01_Y01_416_366\", \"ini\": 2623, \"clust\": 798, \"rank\": 82, \"rankvar\": 2253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 203, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2501, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1932, \"group\": [798.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52585_BALBc-1_X01_Y01_419_56\", \"ini\": 2622, \"clust\": 1493, \"rank\": 2212, \"rankvar\": 2595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 204, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1815, \"cat-2\": \"Density: 19\", \"cat_2_index\": 113, \"group\": [1496.0, 581.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53186_BALBc-1_X01_Y01_426_497\", \"ini\": 2621, \"clust\": 1391, \"rank\": 2091, \"rankvar\": 2207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 205, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1816, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1827, \"group\": [1391.0, 545.0, 137.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53439_BALBc-1_X01_Y01_429_519\", \"ini\": 2620, \"clust\": 769, \"rank\": 629, \"rankvar\": 1279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 206, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1817, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1465, \"group\": [770.0, 284.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53460_BALBc-1_X01_Y01_429_728\", \"ini\": 2619, \"clust\": 1677, \"rank\": 517, \"rankvar\": 1754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 207, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2379, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1720, \"group\": [1676.0, 702.0, 178.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54293_BALBc-1_X01_Y01_439_281\", \"ini\": 2618, \"clust\": 1549, \"rank\": 1450, \"rankvar\": 2276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 208, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1603, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1609, \"group\": [1550.0, 604.0, 147.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54995_BALBc-1_X01_Y01_447_636\", \"ini\": 2617, \"clust\": 812, \"rank\": 611, \"rankvar\": 2166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 209, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2380, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1031, \"group\": [812.0, 292.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55049_BALBc-1_X01_Y01_448_341\", \"ini\": 2616, \"clust\": 1417, \"rank\": 2548, \"rankvar\": 2637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 210, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 663, \"cat-2\": \"Density: 27\", \"cat_2_index\": 882, \"group\": [1418.0, 560.0, 140.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55837_BALBc-1_X01_Y01_457_685\", \"ini\": 2615, \"clust\": 737, \"rank\": 96, \"rankvar\": 39, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 211, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2381, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1933, \"group\": [737.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55843_BALBc-1_X01_Y01_457_714\", \"ini\": 2614, \"clust\": 1673, \"rank\": 844, \"rankvar\": 1208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 212, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2382, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1828, \"group\": [1679.0, 704.0, 178.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56224_BALBc-1_X01_Y01_461_819\", \"ini\": 2613, \"clust\": 1204, \"rank\": 1131, \"rankvar\": 1158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 213, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1818, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1342, \"group\": [1203.0, 432.0, 100.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56566_BALBc-1_X01_Y01_466_376\", \"ini\": 2612, \"clust\": 298, \"rank\": 744, \"rankvar\": 1933, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 214, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 664, \"cat-2\": \"Density: 27\", \"cat_2_index\": 883, \"group\": [303.0, 192.0, 56.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56664_BALBc-1_X01_Y01_467_502\", \"ini\": 2611, \"clust\": 749, \"rank\": 563, \"rankvar\": 159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 215, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2383, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1466, \"group\": [753.0, 279.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56683_BALBc-1_X01_Y01_467_748\", \"ini\": 2610, \"clust\": 1054, \"rank\": 324, \"rankvar\": 731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 216, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 973, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1829, \"group\": [1052.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56772_BALBc-1_X01_Y01_468_926\", \"ini\": 2609, \"clust\": 36, \"rank\": 1019, \"rankvar\": 2383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 217, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 891, \"cat-2\": \"Density: 25\", \"cat_2_index\": 600, \"group\": [37.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56830_BALBc-1_X01_Y01_469_709\", \"ini\": 2608, \"clust\": 2799, \"rank\": 2381, \"rankvar\": 2622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 218, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 974, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1830, \"group\": [2799.0, 1181.0, 303.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57728_BALBc-1_X01_Y01_48_342\", \"ini\": 2607, \"clust\": 2042, \"rank\": 1829, \"rankvar\": 2064, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 219, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2384, \"cat-2\": \"Density: 25\", \"cat_2_index\": 601, \"group\": [2042.0, 911.0, 237.0, 63.0, 15.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57798_BALBc-1_X01_Y01_480_352\", \"ini\": 2606, \"clust\": 1687, \"rank\": 885, \"rankvar\": 1437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 220, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2385, \"cat-2\": \"Density: 27\", \"cat_2_index\": 884, \"group\": [1688.0, 711.0, 181.0, 47.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57888_BALBc-1_X01_Y01_481_332\", \"ini\": 2605, \"clust\": 1550, \"rank\": 1065, \"rankvar\": 2397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 221, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 975, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1032, \"group\": [1553.0, 607.0, 147.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58066_BALBc-1_X01_Y01_483_751\", \"ini\": 2604, \"clust\": 952, \"rank\": 1033, \"rankvar\": 485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 222, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 976, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1610, \"group\": [956.0, 347.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58300_BALBc-1_X01_Y01_486_59\", \"ini\": 2603, \"clust\": 1688, \"rank\": 927, \"rankvar\": 1582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 223, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2224, \"cat-2\": \"Density: 17\", \"cat_2_index\": 69, \"group\": [1689.0, 712.0, 181.0, 47.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58405_BALBc-1_X01_Y01_487_989\", \"ini\": 2602, \"clust\": 1447, \"rank\": 2806, \"rankvar\": 2797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 224, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1819, \"cat-2\": \"Density: 22\", \"cat_2_index\": 258, \"group\": [1446.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58769_BALBc-1_X01_Y01_491_835\", \"ini\": 2601, \"clust\": 1388, \"rank\": 1793, \"rankvar\": 2455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 225, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2386, \"cat-2\": \"Density: 25\", \"cat_2_index\": 602, \"group\": [1388.0, 543.0, 137.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59185_BALBc-1_X01_Y01_496_860\", \"ini\": 2600, \"clust\": 781, \"rank\": 358, \"rankvar\": 2112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 226, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2387, \"cat-2\": \"Density: 22\", \"cat_2_index\": 259, \"group\": [780.0, 289.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59663_BALBc-1_X01_Y01_501_885\", \"ini\": 2599, \"clust\": 1353, \"rank\": 2602, \"rankvar\": 2381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 227, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2388, \"cat-2\": \"Density: 23\", \"cat_2_index\": 370, \"group\": [1353.0, 530.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59817_BALBc-1_X01_Y01_504_173\", \"ini\": 2598, \"clust\": 1516, \"rank\": 1289, \"rankvar\": 1232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 228, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1820, \"cat-2\": \"Density: 26\", \"cat_2_index\": 731, \"group\": [1517.0, 587.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60154_BALBc-1_X01_Y01_508_261\", \"ini\": 2597, \"clust\": 1698, \"rank\": 2283, \"rankvar\": 2780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 229, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1821, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1185, \"group\": [1698.0, 721.0, 184.0, 49.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60544_BALBc-1_X01_Y01_512_387\", \"ini\": 2596, \"clust\": 777, \"rank\": 179, \"rankvar\": 1047, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 230, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2806, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1033, \"group\": [775.0, 287.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61293_BALBc-1_X01_Y01_520_799\", \"ini\": 2595, \"clust\": 39, \"rank\": 1099, \"rankvar\": 2688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 231, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 977, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1034, \"group\": [40.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61360_BALBc-1_X01_Y01_521_696\", \"ini\": 2594, \"clust\": 1250, \"rank\": 2090, \"rankvar\": 2123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 232, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 978, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1721, \"group\": [1249.0, 463.0, 111.0, 27.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61696_BALBc-1_X01_Y01_525_94\", \"ini\": 2593, \"clust\": 1005, \"rank\": 566, \"rankvar\": 1223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 233, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2225, \"cat-2\": \"Density: 18\", \"cat_2_index\": 88, \"group\": [1005.0, 365.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62336_BALBc-1_X01_Y01_533_397\", \"ini\": 2592, \"clust\": 2052, \"rank\": 1339, \"rankvar\": 2171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 234, \"cat-1\": \"Neighbor: plasma cells\", \"cat_1_index\": 2824, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1186, \"group\": [2053.0, 921.0, 243.0, 67.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62423_BALBc-1_X01_Y01_534_722\", \"ini\": 2591, \"clust\": 435, \"rank\": 394, \"rankvar\": 787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 235, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 979, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1831, \"group\": [436.0, 252.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62444_BALBc-1_X01_Y01_534_959\", \"ini\": 2590, \"clust\": 1375, \"rank\": 1892, \"rankvar\": 2634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 236, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 892, \"cat-2\": \"Density: 25\", \"cat_2_index\": 603, \"group\": [1376.0, 536.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63078_BALBc-1_X01_Y01_542_700\", \"ini\": 2589, \"clust\": 1251, \"rank\": 2448, \"rankvar\": 2785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 237, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2389, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1832, \"group\": [1250.0, 463.0, 111.0, 27.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63087_BALBc-1_X01_Y01_542_797\", \"ini\": 2588, \"clust\": 1436, \"rank\": 2518, \"rankvar\": 2480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 238, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 980, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1035, \"group\": [1433.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63522_BALBc-1_X01_Y01_547_973\", \"ini\": 2587, \"clust\": 241, \"rank\": 691, \"rankvar\": 793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 239, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1822, \"cat-2\": \"Density: 26\", \"cat_2_index\": 732, \"group\": [241.0, 152.0, 46.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63778_BALBc-1_X01_Y01_550_157\", \"ini\": 2586, \"clust\": 316, \"rank\": 658, \"rankvar\": 2119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 240, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1823, \"cat-2\": \"Density: 24\", \"cat_2_index\": 473, \"group\": [314.0, 198.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63964_BALBc-1_X01_Y01_552_62\", \"ini\": 2585, \"clust\": 46, \"rank\": 1244, \"rankvar\": 2442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 241, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1824, \"cat-2\": \"Density: 15\", \"cat_2_index\": 35, \"group\": [47.0, 25.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64005_BALBc-1_X01_Y01_553_25\", \"ini\": 2584, \"clust\": 474, \"rank\": 362, \"rankvar\": 63, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 242, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2226, \"cat-2\": \"Density: 10\", \"cat_2_index\": 2, \"group\": [473.0, 263.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64010_BALBc-1_X01_Y01_553_292\", \"ini\": 2583, \"clust\": 1011, \"rank\": 245, \"rankvar\": 49, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 243, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1825, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1036, \"group\": [1011.0, 366.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65182_BALBc-1_X01_Y01_567_223\", \"ini\": 2582, \"clust\": 1286, \"rank\": 2170, \"rankvar\": 2437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 244, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2264, \"cat-2\": \"Density: 25\", \"cat_2_index\": 604, \"group\": [1285.0, 490.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65656_BALBc-1_X01_Y01_572_784\", \"ini\": 2581, \"clust\": 1487, \"rank\": 2107, \"rankvar\": 2115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 245, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 981, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1187, \"group\": [1488.0, 581.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66746_BALBc-1_X01_Y01_586_262\", \"ini\": 2580, \"clust\": 976, \"rank\": 257, \"rankvar\": 94, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 246, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2265, \"cat-2\": \"Density: 25\", \"cat_2_index\": 605, \"group\": [978.0, 355.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66807_BALBc-1_X01_Y01_586_921\", \"ini\": 2579, \"clust\": 1372, \"rank\": 2125, \"rankvar\": 2674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 247, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 747, \"cat-2\": \"Density: 24\", \"cat_2_index\": 474, \"group\": [1373.0, 536.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67268_BALBc-1_X01_Y01_591_693\", \"ini\": 2578, \"clust\": 1337, \"rank\": 2030, \"rankvar\": 1328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 248, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2390, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1833, \"group\": [1336.0, 521.0, 131.0, 33.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67677_BALBc-1_X01_Y01_596_954\", \"ini\": 2577, \"clust\": 2801, \"rank\": 1898, \"rankvar\": 2036, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 249, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 982, \"cat-2\": \"Density: 22\", \"cat_2_index\": 260, \"group\": [2805.0, 1186.0, 305.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68075_BALBc-1_X01_Y01_600_937\", \"ini\": 2576, \"clust\": 1475, \"rank\": 1981, \"rankvar\": 1832, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 250, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 983, \"cat-2\": \"Density: 23\", \"cat_2_index\": 371, \"group\": [1479.0, 576.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68258_BALBc-1_X01_Y01_603_416\", \"ini\": 2575, \"clust\": 1291, \"rank\": 2698, \"rankvar\": 2765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 251, \"cat-1\": \"Neighbor: plasma cells\", \"cat_1_index\": 2825, \"cat-2\": \"Density: 26\", \"cat_2_index\": 733, \"group\": [1290.0, 490.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68390_BALBc-1_X01_Y01_605_263\", \"ini\": 2574, \"clust\": 780, \"rank\": 613, \"rankvar\": 2072, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 252, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 748, \"cat-2\": \"Density: 26\", \"cat_2_index\": 734, \"group\": [782.0, 289.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68460_BALBc-1_X01_Y01_605_972\", \"ini\": 2573, \"clust\": 83, \"rank\": 1478, \"rankvar\": 2068, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 253, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 984, \"cat-2\": \"Density: 23\", \"cat_2_index\": 372, \"group\": [83.0, 41.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68786_BALBc-1_X01_Y01_609_707\", \"ini\": 2572, \"clust\": 1004, \"rank\": 777, \"rankvar\": 984, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 254, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2391, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1722, \"group\": [1007.0, 365.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69393_BALBc-1_X01_Y01_616_802\", \"ini\": 2571, \"clust\": 105, \"rank\": 2139, \"rankvar\": 2390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 255, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 985, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1037, \"group\": [105.0, 58.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69452_BALBc-1_X01_Y01_617_654\", \"ini\": 2570, \"clust\": 1270, \"rank\": 1618, \"rankvar\": 1667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 256, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2392, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1467, \"group\": [1276.0, 485.0, 121.0, 31.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69556_BALBc-1_X01_Y01_618_844\", \"ini\": 2569, \"clust\": 1414, \"rank\": 2269, \"rankvar\": 2296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 257, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 986, \"cat-2\": \"Density: 23\", \"cat_2_index\": 373, \"group\": [1416.0, 558.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69767_BALBc-1_X01_Y01_620_771\", \"ini\": 2568, \"clust\": 2703, \"rank\": 1321, \"rankvar\": 1976, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 258, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2393, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1468, \"group\": [2704.0, 1145.0, 296.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70401_BALBc-1_X01_Y01_628_954\", \"ini\": 2567, \"clust\": 1584, \"rank\": 1233, \"rankvar\": 2168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 259, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 4, \"cat-2\": \"Density: 21\", \"cat_2_index\": 192, \"group\": [1583.0, 630.0, 153.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70856_BALBc-1_X01_Y01_633_693\", \"ini\": 2566, \"clust\": 757, \"rank\": 196, \"rankvar\": 138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 260, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 665, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1723, \"group\": [757.0, 280.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71169_BALBc-1_X01_Y01_637_858\", \"ini\": 2565, \"clust\": 1342, \"rank\": 2054, \"rankvar\": 2030, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 261, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 987, \"cat-2\": \"Density: 26\", \"cat_2_index\": 735, \"group\": [1345.0, 529.0, 134.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72334_BALBc-1_X01_Y01_650_922\", \"ini\": 2564, \"clust\": 15, \"rank\": 962, \"rankvar\": 1593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 262, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1702, \"cat-2\": \"Density: 25\", \"cat_2_index\": 606, \"group\": [12.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72558_BALBc-1_X01_Y01_653_790\", \"ini\": 2563, \"clust\": 489, \"rank\": 273, \"rankvar\": 2186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 263, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 988, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1724, \"group\": [488.0, 266.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72805_BALBc-1_X01_Y01_656_972\", \"ini\": 2562, \"clust\": 2150, \"rank\": 1312, \"rankvar\": 1428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 264, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1703, \"cat-2\": \"Density: 23\", \"cat_2_index\": 374, \"group\": [2150.0, 978.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73338_BALBc-1_X01_Y01_662_687\", \"ini\": 2561, \"clust\": 75, \"rank\": 1084, \"rankvar\": 800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 265, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 989, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1611, \"group\": [78.0, 36.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74854_BALBc-1_X01_Y01_680_662\", \"ini\": 2560, \"clust\": 1243, \"rank\": 725, \"rankvar\": 458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 266, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2394, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1834, \"group\": [1244.0, 458.0, 108.0, 26.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75831_BALBc-1_X01_Y01_692_998\", \"ini\": 2559, \"clust\": 2650, \"rank\": 2193, \"rankvar\": 1945, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 267, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1704, \"cat-2\": \"Density: 23\", \"cat_2_index\": 375, \"group\": [2655.0, 1116.0, 286.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76190_BALBc-1_X01_Y01_697_768\", \"ini\": 2558, \"clust\": 1244, \"rank\": 692, \"rankvar\": 703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 268, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 749, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1469, \"group\": [1245.0, 459.0, 108.0, 26.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76418_BALBc-1_X01_Y01_7_625\", \"ini\": 2557, \"clust\": 1262, \"rank\": 1766, \"rankvar\": 1706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 269, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2227, \"cat-2\": \"Density: 10\", \"cat_2_index\": 3, \"group\": [1262.0, 474.0, 117.0, 30.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77472_BALBc-1_X01_Y01_711_676\", \"ini\": 2556, \"clust\": 1669, \"rank\": 1410, \"rankvar\": 2335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 270, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 990, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2045, \"group\": [1669.0, 698.0, 178.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77475_BALBc-1_X01_Y01_711_742\", \"ini\": 2555, \"clust\": 1678, \"rank\": 419, \"rankvar\": 1169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 271, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 991, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1725, \"group\": [1677.0, 702.0, 178.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77792_BALBc-1_X01_Y01_715_768\", \"ini\": 2554, \"clust\": 1212, \"rank\": 1466, \"rankvar\": 1674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 272, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1705, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1612, \"group\": [1215.0, 439.0, 101.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78451_BALBc-1_X01_Y01_722_839\", \"ini\": 2553, \"clust\": 1330, \"rank\": 1630, \"rankvar\": 1895, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 273, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2395, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1613, \"group\": [1330.0, 517.0, 128.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78461_BALBc-1_X01_Y01_722_950\", \"ini\": 2552, \"clust\": 1213, \"rank\": 1206, \"rankvar\": 2771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 274, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1706, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1188, \"group\": [1213.0, 438.0, 101.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78468_BALBc-1_X01_Y01_723_131\", \"ini\": 2551, \"clust\": 1562, \"rank\": 793, \"rankvar\": 1300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 275, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1826, \"cat-2\": \"Density: 21\", \"cat_2_index\": 193, \"group\": [1560.0, 613.0, 149.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78787_BALBc-1_X01_Y01_727_496\", \"ini\": 2550, \"clust\": 1292, \"rank\": 2717, \"rankvar\": 2768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 276, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1707, \"cat-2\": \"Density: 27\", \"cat_2_index\": 885, \"group\": [1291.0, 490.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78978_BALBc-1_X01_Y01_729_920\", \"ini\": 2549, \"clust\": 1648, \"rank\": 950, \"rankvar\": 1903, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 277, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1604, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1614, \"group\": [1649.0, 681.0, 173.0, 43.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79106_BALBc-1_X01_Y01_730_753\", \"ini\": 2548, \"clust\": 2098, \"rank\": 1178, \"rankvar\": 986, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 278, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1605, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1615, \"group\": [2109.0, 953.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79197_BALBc-1_X01_Y01_731_852\", \"ini\": 2547, \"clust\": 30, \"rank\": 1201, \"rankvar\": 2264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 279, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 750, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1934, \"group\": [34.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79228_BALBc-1_X01_Y01_732_264\", \"ini\": 2546, \"clust\": 1520, \"rank\": 1226, \"rankvar\": 1757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 280, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1827, \"cat-2\": \"Density: 16\", \"cat_2_index\": 50, \"group\": [1525.0, 589.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79377_BALBc-1_X01_Y01_733_981\", \"ini\": 2545, \"clust\": 1207, \"rank\": 1326, \"rankvar\": 2379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 281, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 992, \"cat-2\": \"Density: 27\", \"cat_2_index\": 886, \"group\": [1207.0, 435.0, 101.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79939_BALBc-1_X01_Y01_740_1001\", \"ini\": 2544, \"clust\": 1513, \"rank\": 2000, \"rankvar\": 1551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 282, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 993, \"cat-2\": \"Density: 25\", \"cat_2_index\": 607, \"group\": [1514.0, 585.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80506_BALBc-1_X01_Y01_747_927\", \"ini\": 2543, \"clust\": 1346, \"rank\": 2639, \"rankvar\": 2461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 283, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1828, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1038, \"group\": [1346.0, 530.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80525_BALBc-1_X01_Y01_748_234\", \"ini\": 2542, \"clust\": 1377, \"rank\": 2224, \"rankvar\": 2317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 284, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1829, \"cat-2\": \"Density: 19\", \"cat_2_index\": 114, \"group\": [1379.0, 538.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80830_BALBc-1_X01_Y01_750_807\", \"ini\": 2541, \"clust\": 1380, \"rank\": 2161, \"rankvar\": 2769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 285, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1708, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1189, \"group\": [1383.0, 541.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80965_BALBc-1_X01_Y01_752_728\", \"ini\": 2540, \"clust\": 1264, \"rank\": 1783, \"rankvar\": 1830, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 286, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 994, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1616, \"group\": [1265.0, 477.0, 118.0, 31.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81569_BALBc-1_X01_Y01_76_36\", \"ini\": 2539, \"clust\": 779, \"rank\": 218, \"rankvar\": 958, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 287, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1830, \"cat-2\": \"Density: 8\", \"cat_2_index\": 0, \"group\": [783.0, 289.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82103_BALBc-1_X01_Y01_766_541\", \"ini\": 2538, \"clust\": 1267, \"rank\": 2349, \"rankvar\": 2475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 288, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1831, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1190, \"group\": [1268.0, 478.0, 118.0, 31.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82283_BALBc-1_X01_Y01_768_747\", \"ini\": 2537, \"clust\": 251, \"rank\": 305, \"rankvar\": 207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 289, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1606, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1343, \"group\": [251.0, 158.0, 47.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82292_BALBc-1_X01_Y01_768_860\", \"ini\": 2536, \"clust\": 55, \"rank\": 2056, \"rankvar\": 2523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 290, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 751, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1726, \"group\": [67.0, 29.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82501_BALBc-1_X01_Y01_770_672\", \"ini\": 2535, \"clust\": 761, \"rank\": 124, \"rankvar\": 508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 291, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1832, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1617, \"group\": [761.0, 280.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82814_BALBc-1_X01_Y01_774_701\", \"ini\": 2534, \"clust\": 1361, \"rank\": 2388, \"rankvar\": 2627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 292, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1833, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1039, \"group\": [1362.0, 533.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83141_BALBc-1_X01_Y01_778_865\", \"ini\": 2533, \"clust\": 1552, \"rank\": 1250, \"rankvar\": 2182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 293, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 752, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1935, \"group\": [1552.0, 606.0, 147.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83368_BALBc-1_X01_Y01_780_829\", \"ini\": 2532, \"clust\": 1999, \"rank\": 1847, \"rankvar\": 1226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 294, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2228, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1727, \"group\": [1999.0, 879.0, 228.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83575_BALBc-1_X01_Y01_783_772\", \"ini\": 2531, \"clust\": 1585, \"rank\": 1447, \"rankvar\": 1648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 295, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1834, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1344, \"group\": [1584.0, 630.0, 153.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83783_BALBc-1_X01_Y01_786_42\", \"ini\": 2530, \"clust\": 1563, \"rank\": 1068, \"rankvar\": 140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 296, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1835, \"cat-2\": \"Density: 11\", \"cat_2_index\": 5, \"group\": [1561.0, 613.0, 149.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84106_BALBc-1_X01_Y01_79_467\", \"ini\": 2529, \"clust\": 660, \"rank\": 93, \"rankvar\": 456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 297, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2396, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1040, \"group\": [655.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84546_BALBc-1_X01_Y01_794_913\", \"ini\": 2528, \"clust\": 1235, \"rank\": 1526, \"rankvar\": 2100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 298, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1836, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1470, \"group\": [1235.0, 450.0, 105.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84882_BALBc-1_X01_Y01_798_898\", \"ini\": 2527, \"clust\": 2012, \"rank\": 2155, \"rankvar\": 2258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 299, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 753, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2046, \"group\": [2014.0, 892.0, 232.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84899_BALBc-1_X01_Y01_799_204\", \"ini\": 2526, \"clust\": 600, \"rank\": 211, \"rankvar\": 494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 300, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1837, \"cat-2\": \"Density: 21\", \"cat_2_index\": 194, \"group\": [599.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85632_BALBc-1_X01_Y01_806_632\", \"ini\": 2525, \"clust\": 310, \"rank\": 347, \"rankvar\": 428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 301, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1709, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1191, \"group\": [318.0, 199.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85720_BALBc-1_X01_Y01_807_805\", \"ini\": 2524, \"clust\": 536, \"rank\": 32, \"rankvar\": 294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 302, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2229, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1728, \"group\": [535.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85870_BALBc-1_X01_Y01_809_965\", \"ini\": 2523, \"clust\": 1127, \"rank\": 638, \"rankvar\": 1087, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 303, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2397, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1729, \"group\": [1127.0, 376.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86589_BALBc-1_X01_Y01_818_406\", \"ini\": 2522, \"clust\": 2683, \"rank\": 1228, \"rankvar\": 2054, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 304, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1710, \"cat-2\": \"Density: 25\", \"cat_2_index\": 608, \"group\": [2684.0, 1141.0, 294.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86924_BALBc-1_X01_Y01_821_936\", \"ini\": 2521, \"clust\": 1222, \"rank\": 1223, \"rankvar\": 2445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 305, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 754, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1835, \"group\": [1221.0, 442.0, 102.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87345_BALBc-1_X01_Y01_827_373\", \"ini\": 2520, \"clust\": 1392, \"rank\": 1692, \"rankvar\": 1397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 306, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1711, \"cat-2\": \"Density: 25\", \"cat_2_index\": 609, \"group\": [1400.0, 552.0, 138.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87649_BALBc-1_X01_Y01_830_295\", \"ini\": 2519, \"clust\": 475, \"rank\": 317, \"rankvar\": 1927, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 307, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1838, \"cat-2\": \"Density: 22\", \"cat_2_index\": 261, \"group\": [478.0, 265.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87664_BALBc-1_X01_Y01_830_425\", \"ini\": 2518, \"clust\": 1075, \"rank\": 265, \"rankvar\": 894, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 308, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2398, \"cat-2\": \"Density: 27\", \"cat_2_index\": 887, \"group\": [1076.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88044_BALBc-1_X01_Y01_835_742\", \"ini\": 2517, \"clust\": 1398, \"rank\": 1968, \"rankvar\": 1521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 309, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1839, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1041, \"group\": [1397.0, 550.0, 138.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88079_BALBc-1_X01_Y01_836_344\", \"ini\": 2516, \"clust\": 1535, \"rank\": 1341, \"rankvar\": 1591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 310, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1536, \"cat-2\": \"Density: 25\", \"cat_2_index\": 610, \"group\": [1537.0, 597.0, 145.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88188_BALBc-1_X01_Y01_837_652\", \"ini\": 2515, \"clust\": 521, \"rank\": 338, \"rankvar\": 548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 311, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 995, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1192, \"group\": [520.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88270_BALBc-1_X01_Y01_838_807\", \"ini\": 2514, \"clust\": 1168, \"rank\": 1281, \"rankvar\": 393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 312, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1712, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1730, \"group\": [1168.0, 402.0, 87.0, 19.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88505_BALBc-1_X01_Y01_840_865\", \"ini\": 2513, \"clust\": 1407, \"rank\": 2604, \"rankvar\": 2617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 313, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 755, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1936, \"group\": [1406.0, 555.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88518_BALBc-1_X01_Y01_840_980\", \"ini\": 2512, \"clust\": 482, \"rank\": 131, \"rankvar\": 766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 314, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 996, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1471, \"group\": [483.0, 265.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88712_BALBc-1_X01_Y01_843_668\", \"ini\": 2511, \"clust\": 1514, \"rank\": 1338, \"rankvar\": 1249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 315, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1840, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1042, \"group\": [1515.0, 586.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89100_BALBc-1_X01_Y01_848_541\", \"ini\": 2510, \"clust\": 1427, \"rank\": 2499, \"rankvar\": 2448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 316, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1841, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1193, \"group\": [1427.0, 566.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90045_BALBc-1_X01_Y01_859_822\", \"ini\": 2509, \"clust\": 2005, \"rank\": 1884, \"rankvar\": 810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 317, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1713, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1618, \"group\": [2009.0, 887.0, 230.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90185_BALBc-1_X01_Y01_860_626\", \"ini\": 2508, \"clust\": 1553, \"rank\": 1438, \"rankvar\": 1659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 318, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1842, \"cat-2\": \"Density: 27\", \"cat_2_index\": 888, \"group\": [1559.0, 612.0, 148.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90284_BALBc-1_X01_Y01_861_874\", \"ini\": 2507, \"clust\": 4, \"rank\": 1568, \"rankvar\": 1468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 319, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 997, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2047, \"group\": [7.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90366_BALBc-1_X01_Y01_863_139\", \"ini\": 2506, \"clust\": 611, \"rank\": 63, \"rankvar\": 6, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 320, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2399, \"cat-2\": \"Density: 22\", \"cat_2_index\": 262, \"group\": [609.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91015_BALBc-1_X01_Y01_870_358\", \"ini\": 2505, \"clust\": 459, \"rank\": 559, \"rankvar\": 2150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 321, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1537, \"cat-2\": \"Density: 24\", \"cat_2_index\": 475, \"group\": [460.0, 260.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91213_BALBc-1_X01_Y01_872_895\", \"ini\": 2504, \"clust\": 1589, \"rank\": 976, \"rankvar\": 619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 322, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 998, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1937, \"group\": [1590.0, 635.0, 155.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91215_BALBc-1_X01_Y01_872_930\", \"ini\": 2503, \"clust\": 2117, \"rank\": 1705, \"rankvar\": 1344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 323, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 999, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1472, \"group\": [2118.0, 959.0, 255.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91352_BALBc-1_X01_Y01_874_726\", \"ini\": 2502, \"clust\": 1462, \"rank\": 2609, \"rankvar\": 2522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 324, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1000, \"cat-2\": \"Density: 26\", \"cat_2_index\": 736, \"group\": [1459.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91645_BALBc-1_X01_Y01_878_559\", \"ini\": 2501, \"clust\": 1642, \"rank\": 1549, \"rankvar\": 1382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 325, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1843, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1194, \"group\": [1643.0, 676.0, 170.0, 42.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91823_BALBc-1_X01_Y01_88_805\", \"ini\": 2500, \"clust\": 1428, \"rank\": 2219, \"rankvar\": 1533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 326, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2400, \"cat-2\": \"Density: 23\", \"cat_2_index\": 376, \"group\": [1428.0, 567.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92363_BALBc-1_X01_Y01_887_395\", \"ini\": 2499, \"clust\": 169, \"rank\": 833, \"rankvar\": 526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 327, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1844, \"cat-2\": \"Density: 25\", \"cat_2_index\": 611, \"group\": [170.0, 112.0, 34.0, 12.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92765_BALBc-1_X01_Y01_891_617\", \"ini\": 2498, \"clust\": 1630, \"rank\": 1259, \"rankvar\": 1696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 328, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2401, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1473, \"group\": [1631.0, 665.0, 166.0, 40.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93018_BALBc-1_X01_Y01_894_905\", \"ini\": 2497, \"clust\": 809, \"rank\": 407, \"rankvar\": 1367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 329, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1001, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1474, \"group\": [810.0, 292.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93161_BALBc-1_X01_Y01_896_937\", \"ini\": 2496, \"clust\": 2037, \"rank\": 2610, \"rankvar\": 2309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 330, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1002, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1731, \"group\": [2036.0, 907.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94070_BALBc-1_X01_Y01_907_486\", \"ini\": 2495, \"clust\": 1758, \"rank\": 2295, \"rankvar\": 2378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 331, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 756, \"cat-2\": \"Density: 27\", \"cat_2_index\": 889, \"group\": [1758.0, 766.0, 203.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94547_BALBc-1_X01_Y01_912_926\", \"ini\": 2494, \"clust\": 156, \"rank\": 1803, \"rankvar\": 2336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 332, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1845, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1619, \"group\": [156.0, 100.0, 28.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94695_BALBc-1_X01_Y01_914_981\", \"ini\": 2493, \"clust\": 60, \"rank\": 1895, \"rankvar\": 2082, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 333, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1846, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1732, \"group\": [59.0, 27.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94725_BALBc-1_X01_Y01_915_472\", \"ini\": 2492, \"clust\": 335, \"rank\": 610, \"rankvar\": 718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 334, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1847, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1043, \"group\": [336.0, 211.0, 61.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94799_BALBc-1_X01_Y01_916_387\", \"ini\": 2491, \"clust\": 1454, \"rank\": 2558, \"rankvar\": 2393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 335, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 666, \"cat-2\": \"Density: 25\", \"cat_2_index\": 612, \"group\": [1455.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94985_BALBc-1_X01_Y01_918_863\", \"ini\": 2490, \"clust\": 2001, \"rank\": 1773, \"rankvar\": 1545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 336, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 667, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1345, \"group\": [2002.0, 882.0, 229.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95149_BALBc-1_X01_Y01_92_950\", \"ini\": 2489, \"clust\": 1347, \"rank\": 2626, \"rankvar\": 2500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 337, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1848, \"cat-2\": \"Density: 18\", \"cat_2_index\": 89, \"group\": [1347.0, 530.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95350_BALBc-1_X01_Y01_922_525\", \"ini\": 2488, \"clust\": 1477, \"rank\": 2259, \"rankvar\": 2102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 338, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2502, \"cat-2\": \"Density: 27\", \"cat_2_index\": 890, \"group\": [1476.0, 575.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95627_BALBc-1_X01_Y01_925_921\", \"ini\": 2487, \"clust\": 1320, \"rank\": 1798, \"rankvar\": 2495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 339, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 668, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1044, \"group\": [1319.0, 510.0, 125.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96058_BALBc-1_X01_Y01_930_613\", \"ini\": 2486, \"clust\": 1532, \"rank\": 1467, \"rankvar\": 1644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 340, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2402, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1045, \"group\": [1534.0, 594.0, 145.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96292_BALBc-1_X01_Y01_933_666\", \"ini\": 2485, \"clust\": 1534, \"rank\": 1777, \"rankvar\": 2407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 341, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2403, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1346, \"group\": [1533.0, 594.0, 145.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96547_BALBc-1_X01_Y01_937_170\", \"ini\": 2484, \"clust\": 560, \"rank\": 378, \"rankvar\": 167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 342, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1849, \"cat-2\": \"Density: 19\", \"cat_2_index\": 115, \"group\": [570.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96665_BALBc-1_X01_Y01_938_963\", \"ini\": 2483, \"clust\": 1612, \"rank\": 920, \"rankvar\": 1692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 343, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1850, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1836, \"group\": [1613.0, 648.0, 158.0, 37.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96745_BALBc-1_X01_Y01_939_916\", \"ini\": 2482, \"clust\": 1998, \"rank\": 1583, \"rankvar\": 952, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 344, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 669, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1475, \"group\": [1998.0, 878.0, 228.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96964_BALBc-1_X01_Y01_941_78\", \"ini\": 2481, \"clust\": 1345, \"rank\": 2605, \"rankvar\": 2649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 345, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1851, \"cat-2\": \"Density: 17\", \"cat_2_index\": 70, \"group\": [1348.0, 530.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98233_BALBc-1_X01_Y01_957_431\", \"ini\": 2480, \"clust\": 1348, \"rank\": 2453, \"rankvar\": 2256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 346, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1852, \"cat-2\": \"Density: 23\", \"cat_2_index\": 377, \"group\": [1349.0, 530.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98244_BALBc-1_X01_Y01_957_547\", \"ini\": 2479, \"clust\": 799, \"rank\": 77, \"rankvar\": 1898, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 347, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1003, \"cat-2\": \"Density: 25\", \"cat_2_index\": 613, \"group\": [799.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98423_BALBc-1_X01_Y01_96_276\", \"ini\": 2478, \"clust\": 1545, \"rank\": 1006, \"rankvar\": 2561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 348, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 757, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1347, \"group\": [1548.0, 603.0, 146.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98533_BALBc-1_X01_Y01_960_606\", \"ini\": 2477, \"clust\": 973, \"rank\": 520, \"rankvar\": 342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 349, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1853, \"cat-2\": \"Density: 27\", \"cat_2_index\": 891, \"group\": [974.0, 354.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98687_BALBc-1_X01_Y01_962_516\", \"ini\": 2476, \"clust\": 1503, \"rank\": 1870, \"rankvar\": 2504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 350, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1004, \"cat-2\": \"Density: 25\", \"cat_2_index\": 614, \"group\": [1506.0, 583.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98848_BALBc-1_X01_Y01_964_670\", \"ini\": 2475, \"clust\": 1405, \"rank\": 1891, \"rankvar\": 1131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 351, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1005, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1046, \"group\": [1407.0, 555.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98850_BALBc-1_X01_Y01_964_694\", \"ini\": 2474, \"clust\": 476, \"rank\": 293, \"rankvar\": 1570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 352, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1854, \"cat-2\": \"Density: 26\", \"cat_2_index\": 737, \"group\": [476.0, 265.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99057_BALBc-1_X01_Y01_967_479\", \"ini\": 2473, \"clust\": 1349, \"rank\": 2522, \"rankvar\": 2422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 353, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1855, \"cat-2\": \"Density: 23\", \"cat_2_index\": 378, \"group\": [1350.0, 530.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99105_BALBc-1_X01_Y01_967_965\", \"ini\": 2472, \"clust\": 1379, \"rank\": 2443, \"rankvar\": 2108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 354, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 670, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1476, \"group\": [1378.0, 537.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99401_BALBc-1_X01_Y01_970_988\", \"ini\": 2471, \"clust\": 1265, \"rank\": 2179, \"rankvar\": 2550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 355, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 671, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1477, \"group\": [1266.0, 477.0, 118.0, 31.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99809_BALBc-1_X01_Y01_976_311\", \"ini\": 2470, \"clust\": 25, \"rank\": 1448, \"rankvar\": 2535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 356, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2404, \"cat-2\": \"Density: 24\", \"cat_2_index\": 476, \"group\": [24.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100228_BALBc-1_X01_Y01_980_928\", \"ini\": 2469, \"clust\": 216, \"rank\": 709, \"rankvar\": 1480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 357, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 893, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1047, \"group\": [218.0, 140.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100256_BALBc-1_X01_Y01_981_360\", \"ini\": 2468, \"clust\": 784, \"rank\": 411, \"rankvar\": 895, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 358, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 672, \"cat-2\": \"Density: 25\", \"cat_2_index\": 615, \"group\": [785.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100547_BALBc-1_X01_Y01_985_432\", \"ini\": 2467, \"clust\": 1515, \"rank\": 1582, \"rankvar\": 1073, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 359, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1856, \"cat-2\": \"Density: 22\", \"cat_2_index\": 263, \"group\": [1516.0, 586.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100572_BALBc-1_X01_Y01_985_76\", \"ini\": 2466, \"clust\": 1476, \"rank\": 2229, \"rankvar\": 1020, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 360, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2266, \"cat-2\": \"Density: 18\", \"cat_2_index\": 90, \"group\": [1478.0, 575.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101105_BALBc-1_X01_Y01_991_734\", \"ini\": 2465, \"clust\": 1285, \"rank\": 2447, \"rankvar\": 2043, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 361, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1857, \"cat-2\": \"Density: 25\", \"cat_2_index\": 616, \"group\": [1284.0, 490.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101341_BALBc-1_X01_Y01_994_653\", \"ini\": 2464, \"clust\": 528, \"rank\": 164, \"rankvar\": 33, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 362, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1006, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1048, \"group\": [527.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101367_BALBc-1_X01_Y01_994_943\", \"ini\": 2463, \"clust\": 1367, \"rank\": 2385, \"rankvar\": 2048, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 363, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 673, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1049, \"group\": [1368.0, 535.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-727_BALBc-1_X02_Y01_100_250\", \"ini\": 2462, \"clust\": 800, \"rank\": 292, \"rankvar\": 1157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 364, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1858, \"cat-2\": \"Density: 26\", \"cat_2_index\": 738, \"group\": [800.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-920_BALBc-1_X02_Y01_1001_805\", \"ini\": 2461, \"clust\": 477, \"rank\": 627, \"rankvar\": 1035, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 365, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1714, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1478, \"group\": [477.0, 265.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1117_BALBc-1_X02_Y01_1004_49\", \"ini\": 2460, \"clust\": 1607, \"rank\": 1161, \"rankvar\": 2227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 366, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1007, \"cat-2\": \"Density: 21\", \"cat_2_index\": 195, \"group\": [1605.0, 643.0, 157.0, 37.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1309_BALBc-1_X02_Y01_1006_988\", \"ini\": 2459, \"clust\": 178, \"rank\": 1242, \"rankvar\": 1188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 367, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1008, \"cat-2\": \"Density: 25\", \"cat_2_index\": 617, \"group\": [178.0, 118.0, 38.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1701_BALBc-1_X02_Y01_1010_833\", \"ini\": 2458, \"clust\": 1422, \"rank\": 1877, \"rankvar\": 882, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 368, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1859, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1348, \"group\": [1424.0, 564.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1932_BALBc-1_X02_Y01_1013_860\", \"ini\": 2457, \"clust\": 1216, \"rank\": 1329, \"rankvar\": 2262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 369, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 758, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1479, \"group\": [1216.0, 440.0, 102.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1955_BALBc-1_X02_Y01_1014_248\", \"ini\": 2456, \"clust\": 1306, \"rank\": 2671, \"rankvar\": 2353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 370, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1860, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1620, \"group\": [1306.0, 500.0, 123.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2025_BALBc-1_X02_Y01_1015_159\", \"ini\": 2455, \"clust\": 2081, \"rank\": 1392, \"rankvar\": 1523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 371, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1861, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1480, \"group\": [2081.0, 943.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2212_BALBc-1_X02_Y01_1017_633\", \"ini\": 2454, \"clust\": 1, \"rank\": 864, \"rankvar\": 1517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 372, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2405, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1050, \"group\": [2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2698_BALBc-1_X02_Y01_1022_99\", \"ini\": 2453, \"clust\": 384, \"rank\": 239, \"rankvar\": 1319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 373, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1862, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1051, \"group\": [386.0, 232.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2934_BALBc-1_X02_Y01_1025_811\", \"ini\": 2452, \"clust\": 1283, \"rank\": 2230, \"rankvar\": 2057, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 374, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1715, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1938, \"group\": [1287.0, 490.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2976_BALBc-1_X02_Y01_1026_488\", \"ini\": 2451, \"clust\": 2507, \"rank\": 1828, \"rankvar\": 975, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 375, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1863, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1481, \"group\": [2513.0, 1078.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3352_BALBc-1_X02_Y01_103_900\", \"ini\": 2450, \"clust\": 5, \"rank\": 1154, \"rankvar\": 1921, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 376, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2477, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1621, \"group\": [5.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3627_BALBc-1_X02_Y01_1033_729\", \"ini\": 2449, \"clust\": 1018, \"rank\": 387, \"rankvar\": 851, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 377, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2807, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1349, \"group\": [1037.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3919_BALBc-1_X02_Y01_1037_288\", \"ini\": 2448, \"clust\": 1338, \"rank\": 2060, \"rankvar\": 1835, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 378, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 674, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2048, \"group\": [1339.0, 523.0, 131.0, 33.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4041_BALBc-1_X02_Y01_1038_754\", \"ini\": 2447, \"clust\": 1645, \"rank\": 1167, \"rankvar\": 1702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 379, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1009, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1350, \"group\": [1645.0, 678.0, 171.0, 42.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4239_BALBc-1_X02_Y01_1040_415\", \"ini\": 2446, \"clust\": 794, \"rank\": 123, \"rankvar\": 1317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 380, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1864, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1052, \"group\": [796.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4540_BALBc-1_X02_Y01_1044_183\", \"ini\": 2445, \"clust\": 530, \"rank\": 33, \"rankvar\": 1874, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 381, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1010, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1733, \"group\": [534.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4583_BALBc-1_X02_Y01_1044_66\", \"ini\": 2444, \"clust\": 1485, \"rank\": 2490, \"rankvar\": 2766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 382, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1538, \"cat-2\": \"Density: 24\", \"cat_2_index\": 477, \"group\": [1486.0, 581.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4708_BALBc-1_X02_Y01_1046_353\", \"ini\": 2443, \"clust\": 979, \"rank\": 247, \"rankvar\": 169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 383, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 675, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1351, \"group\": [980.0, 355.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4717_BALBc-1_X02_Y01_1046_503\", \"ini\": 2442, \"clust\": 1319, \"rank\": 2058, \"rankvar\": 2319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 384, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2808, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1482, \"group\": [1321.0, 511.0, 125.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4778_BALBc-1_X02_Y01_1047_250\", \"ini\": 2441, \"clust\": 1311, \"rank\": 1888, \"rankvar\": 2217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 385, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1865, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1837, \"group\": [1312.0, 505.0, 124.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4973_BALBc-1_X02_Y01_1049_643\", \"ini\": 2440, \"clust\": 648, \"rank\": 80, \"rankvar\": 450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 386, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 759, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1483, \"group\": [650.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5021_BALBc-1_X02_Y01_105_184\", \"ini\": 2439, \"clust\": 816, \"rank\": 426, \"rankvar\": 1227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 387, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2406, \"cat-2\": \"Density: 21\", \"cat_2_index\": 196, \"group\": [817.0, 292.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5131_BALBc-1_X02_Y01_1050_723\", \"ini\": 2438, \"clust\": 1704, \"rank\": 1572, \"rankvar\": 1850, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 388, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1866, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1734, \"group\": [1707.0, 730.0, 188.0, 50.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5233_BALBc-1_X02_Y01_1052_226\", \"ini\": 2437, \"clust\": 532, \"rank\": 15, \"rankvar\": 901, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 389, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1011, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2049, \"group\": [531.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5349_BALBc-1_X02_Y01_1053_839\", \"ini\": 2436, \"clust\": 1274, \"rank\": 1933, \"rankvar\": 1839, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 390, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1867, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2050, \"group\": [1273.0, 482.0, 120.0, 31.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5616_BALBc-1_X02_Y01_1056_980\", \"ini\": 2435, \"clust\": 193, \"rank\": 710, \"rankvar\": 223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 391, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1012, \"cat-2\": \"Density: 27\", \"cat_2_index\": 892, \"group\": [200.0, 130.0, 42.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5712_BALBc-1_X02_Y01_1058_349\", \"ini\": 2434, \"clust\": 1328, \"rank\": 1826, \"rankvar\": 1841, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 392, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 676, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1352, \"group\": [1329.0, 516.0, 128.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5723_BALBc-1_X02_Y01_1058_507\", \"ini\": 2433, \"clust\": 157, \"rank\": 1539, \"rankvar\": 2747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 393, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2809, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1622, \"group\": [157.0, 101.0, 28.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6217_BALBc-1_X02_Y01_1063_382\", \"ini\": 2432, \"clust\": 1580, \"rank\": 1712, \"rankvar\": 1919, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 394, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1013, \"cat-2\": \"Density: 27\", \"cat_2_index\": 893, \"group\": [1586.0, 632.0, 153.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6529_BALBc-1_X02_Y01_1067_754\", \"ini\": 2431, \"clust\": 430, \"rank\": 420, \"rankvar\": 1095, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 395, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1868, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1623, \"group\": [431.0, 251.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6591_BALBc-1_X02_Y01_1068_473\", \"ini\": 2430, \"clust\": 27, \"rank\": 1404, \"rankvar\": 2743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 396, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1869, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1195, \"group\": [28.0, 20.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6633_BALBc-1_X02_Y01_1068_843\", \"ini\": 2429, \"clust\": 1073, \"rank\": 171, \"rankvar\": 833, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 397, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1870, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1939, \"group\": [1074.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7022_BALBc-1_X02_Y01_1072_571\", \"ini\": 2428, \"clust\": 1358, \"rank\": 2584, \"rankvar\": 2093, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 398, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 760, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1838, \"group\": [1360.0, 531.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7059_BALBc-1_X02_Y01_1072_960\", \"ini\": 2427, \"clust\": 1510, \"rank\": 2335, \"rankvar\": 2435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 399, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1871, \"cat-2\": \"Density: 25\", \"cat_2_index\": 618, \"group\": [1510.0, 584.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7262_BALBc-1_X02_Y01_1075_334\", \"ini\": 2426, \"clust\": 1613, \"rank\": 1163, \"rankvar\": 1729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 400, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2267, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1735, \"group\": [1614.0, 649.0, 159.0, 38.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7803_BALBc-1_X02_Y01_1081_510\", \"ini\": 2425, \"clust\": 1339, \"rank\": 1641, \"rankvar\": 1579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 401, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1576, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1053, \"group\": [1340.0, 524.0, 131.0, 33.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8504_BALBc-1_X02_Y01_109_960\", \"ini\": 2424, \"clust\": 2654, \"rank\": 2130, \"rankvar\": 1852, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 402, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1014, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2051, \"group\": [2652.0, 1114.0, 286.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8575_BALBc-1_X02_Y01_1090_708\", \"ini\": 2423, \"clust\": 487, \"rank\": 470, \"rankvar\": 677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 403, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1872, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1736, \"group\": [491.0, 266.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8689_BALBc-1_X02_Y01_1092_353\", \"ini\": 2422, \"clust\": 1301, \"rank\": 2252, \"rankvar\": 1782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 404, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1873, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1484, \"group\": [1305.0, 499.0, 123.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9108_BALBc-1_X02_Y01_1097_627\", \"ini\": 2421, \"clust\": 9, \"rank\": 881, \"rankvar\": 2193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 405, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1015, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1940, \"group\": [8.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9139_BALBc-1_X02_Y01_1098_191\", \"ini\": 2420, \"clust\": 1618, \"rank\": 1039, \"rankvar\": 1364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 406, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1874, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1941, \"group\": [1618.0, 652.0, 161.0, 39.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9234_BALBc-1_X02_Y01_1099_456\", \"ini\": 2419, \"clust\": 844, \"rank\": 377, \"rankvar\": 823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 407, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1016, \"cat-2\": \"Density: 27\", \"cat_2_index\": 894, \"group\": [843.0, 301.0, 71.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9814_BALBc-1_X02_Y01_1104_657\", \"ini\": 2418, \"clust\": 2063, \"rank\": 1819, \"rankvar\": 2496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 408, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1607, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1839, \"group\": [2063.0, 931.0, 250.0, 69.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9841_BALBc-1_X02_Y01_1104_956\", \"ini\": 2417, \"clust\": 538, \"rank\": 252, \"rankvar\": 99, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 409, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1875, \"cat-2\": \"Density: 25\", \"cat_2_index\": 619, \"group\": [538.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9888_BALBc-1_X02_Y01_1105_530\", \"ini\": 2416, \"clust\": 1726, \"rank\": 1939, \"rankvar\": 2645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 410, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1577, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1353, \"group\": [1729.0, 748.0, 196.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9992_BALBc-1_X02_Y01_1106_822\", \"ini\": 2415, \"clust\": 1134, \"rank\": 975, \"rankvar\": 1728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 411, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1876, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1840, \"group\": [1137.0, 380.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10019_BALBc-1_X02_Y01_1107_235\", \"ini\": 2414, \"clust\": 1413, \"rank\": 1735, \"rankvar\": 2197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 412, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2478, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1942, \"group\": [1417.0, 559.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10132_BALBc-1_X02_Y01_1108_495\", \"ini\": 2413, \"clust\": 1281, \"rank\": 2455, \"rankvar\": 2213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 413, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2407, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1354, \"group\": [1281.0, 489.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10374_BALBc-1_X02_Y01_1110_694\", \"ini\": 2412, \"clust\": 2064, \"rank\": 1645, \"rankvar\": 1656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 414, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1539, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2140, \"group\": [2064.0, 931.0, 250.0, 69.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10576_BALBc-1_X02_Y01_1113_426\", \"ini\": 2411, \"clust\": 1431, \"rank\": 2764, \"rankvar\": 2091, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 415, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1017, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1355, \"group\": [1432.0, 568.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10601_BALBc-1_X02_Y01_1113_726\", \"ini\": 2410, \"clust\": 523, \"rank\": 497, \"rankvar\": 46, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 416, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 761, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1737, \"group\": [523.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10688_BALBc-1_X02_Y01_1114_902\", \"ini\": 2409, \"clust\": 1749, \"rank\": 2817, \"rankvar\": 2784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 417, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1877, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1624, \"group\": [1748.0, 761.0, 202.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10939_BALBc-1_X02_Y01_1118_266\", \"ini\": 2408, \"clust\": 661, \"rank\": 119, \"rankvar\": 176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 418, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1878, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1943, \"group\": [656.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10988_BALBc-1_X02_Y01_1118_830\", \"ini\": 2407, \"clust\": 575, \"rank\": 191, \"rankvar\": 202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 419, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 762, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1738, \"group\": [575.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11337_BALBc-1_X02_Y01_1122_571\", \"ini\": 2406, \"clust\": 226, \"rank\": 931, \"rankvar\": 158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 420, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1018, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1841, \"group\": [227.0, 142.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11413_BALBc-1_X02_Y01_1123_613\", \"ini\": 2405, \"clust\": 1309, \"rank\": 1917, \"rankvar\": 1510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 421, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1019, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2141, \"group\": [1309.0, 502.0, 124.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11498_BALBc-1_X02_Y01_1124_538\", \"ini\": 2404, \"clust\": 2060, \"rank\": 1543, \"rankvar\": 832, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 422, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2268, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1739, \"group\": [2061.0, 929.0, 249.0, 69.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11656_BALBc-1_X02_Y01_1126_662\", \"ini\": 2403, \"clust\": 776, \"rank\": 195, \"rankvar\": 1585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 423, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1540, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2297, \"group\": [777.0, 287.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11767_BALBc-1_X02_Y01_1128_191\", \"ini\": 2402, \"clust\": 196, \"rank\": 565, \"rankvar\": 1575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 424, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 763, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1740, \"group\": [199.0, 129.0, 42.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11839_BALBc-1_X02_Y01_1129_238\", \"ini\": 2401, \"clust\": 993, \"rank\": 254, \"rankvar\": 1298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 425, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2479, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1944, \"group\": [994.0, 361.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12133_BALBc-1_X02_Y01_1132_128\", \"ini\": 2400, \"clust\": 738, \"rank\": 154, \"rankvar\": 97, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 426, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 764, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1625, \"group\": [738.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12185_BALBc-1_X02_Y01_1132_650\", \"ini\": 2399, \"clust\": 2655, \"rank\": 2376, \"rankvar\": 1405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 427, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 765, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1842, \"group\": [2653.0, 1114.0, 286.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12327_BALBc-1_X02_Y01_1134_751\", \"ini\": 2398, \"clust\": 1357, \"rank\": 2377, \"rankvar\": 1646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 428, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 766, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1945, \"group\": [1361.0, 532.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12702_BALBc-1_X02_Y01_1139_494\", \"ini\": 2397, \"clust\": 1288, \"rank\": 2791, \"rankvar\": 2531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 429, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2269, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1485, \"group\": [1288.0, 490.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12872_BALBc-1_X02_Y01_1140_895\", \"ini\": 2396, \"clust\": 1236, \"rank\": 1471, \"rankvar\": 1664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 430, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1879, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1196, \"group\": [1236.0, 450.0, 105.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13105_BALBc-1_X02_Y01_1143_686\", \"ini\": 2395, \"clust\": 1321, \"rank\": 1430, \"rankvar\": 1778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 431, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 767, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1626, \"group\": [1320.0, 510.0, 125.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13323_BALBc-1_X02_Y01_1146_697\", \"ini\": 2394, \"clust\": 2609, \"rank\": 1911, \"rankvar\": 1867, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 432, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 768, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2052, \"group\": [2610.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13387_BALBc-1_X02_Y01_1147_623\", \"ini\": 2393, \"clust\": 843, \"rank\": 466, \"rankvar\": 1568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 433, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1020, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2053, \"group\": [845.0, 302.0, 71.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13636_BALBc-1_X02_Y01_115_870\", \"ini\": 2392, \"clust\": 1143, \"rank\": 699, \"rankvar\": 934, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 434, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 677, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1486, \"group\": [1141.0, 382.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13712_BALBc-1_X02_Y01_1150_829\", \"ini\": 2391, \"clust\": 1208, \"rank\": 1436, \"rankvar\": 1269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 435, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 769, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1356, \"group\": [1208.0, 435.0, 101.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13747_BALBc-1_X02_Y01_1151_270\", \"ini\": 2390, \"clust\": 672, \"rank\": 10, \"rankvar\": 278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 436, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2408, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2054, \"group\": [669.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13791_BALBc-1_X02_Y01_1151_786\", \"ini\": 2389, \"clust\": 2085, \"rank\": 1389, \"rankvar\": 1370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 437, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1021, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1197, \"group\": [2086.0, 945.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13891_BALBc-1_X02_Y01_1153_161\", \"ini\": 2388, \"clust\": 201, \"rank\": 922, \"rankvar\": 953, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 438, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 770, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1198, \"group\": [201.0, 131.0, 42.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13893_BALBc-1_X02_Y01_1153_212\", \"ini\": 2387, \"clust\": 1228, \"rank\": 1186, \"rankvar\": 2654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 439, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1716, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1741, \"group\": [1229.0, 447.0, 105.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14380_BALBc-1_X02_Y01_1159_66\", \"ini\": 2386, \"clust\": 317, \"rank\": 785, \"rankvar\": 712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 440, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1880, \"cat-2\": \"Density: 22\", \"cat_2_index\": 264, \"group\": [315.0, 198.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14826_BALBc-1_X02_Y01_1164_105\", \"ini\": 2385, \"clust\": 1626, \"rank\": 1550, \"rankvar\": 2232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 441, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 771, \"cat-2\": \"Density: 27\", \"cat_2_index\": 895, \"group\": [1627.0, 661.0, 164.0, 39.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15075_BALBc-1_X02_Y01_1167_300\", \"ini\": 2384, \"clust\": 1425, \"rank\": 2748, \"rankvar\": 1651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 442, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 772, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2298, \"group\": [1466.0, 571.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15083_BALBc-1_X02_Y01_1167_377\", \"ini\": 2383, \"clust\": 1234, \"rank\": 1711, \"rankvar\": 2272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 443, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1022, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1054, \"group\": [1237.0, 451.0, 105.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15194_BALBc-1_X02_Y01_1168_743\", \"ini\": 2382, \"clust\": 1929, \"rank\": 2709, \"rankvar\": 2506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 444, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 5, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1742, \"group\": [1927.0, 824.0, 213.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15334_BALBc-1_X02_Y01_117_883\", \"ini\": 2381, \"clust\": 1581, \"rank\": 1423, \"rankvar\": 1413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 445, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1881, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1487, \"group\": [1585.0, 631.0, 153.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15471_BALBc-1_X02_Y01_1171_582\", \"ini\": 2380, \"clust\": 830, \"rank\": 282, \"rankvar\": 648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 446, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1023, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1843, \"group\": [827.0, 295.0, 69.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15630_BALBc-1_X02_Y01_1173_619\", \"ini\": 2379, \"clust\": 70, \"rank\": 1351, \"rankvar\": 213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 447, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1024, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1844, \"group\": [73.0, 34.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15634_BALBc-1_X02_Y01_1173_634\", \"ini\": 2378, \"clust\": 2611, \"rank\": 1853, \"rankvar\": 1949, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 448, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 773, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2055, \"group\": [2618.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15644_BALBc-1_X02_Y01_1173_755\", \"ini\": 2377, \"clust\": 2769, \"rank\": 2298, \"rankvar\": 2419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 449, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1025, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1488, \"group\": [2770.0, 1174.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15706_BALBc-1_X02_Y01_1174_723\", \"ini\": 2376, \"clust\": 1223, \"rank\": 1453, \"rankvar\": 391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 450, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 774, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1627, \"group\": [1224.0, 445.0, 104.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15832_BALBc-1_X02_Y01_1176_472\", \"ini\": 2375, \"clust\": 1674, \"rank\": 846, \"rankvar\": 2297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 451, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1026, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1357, \"group\": [1678.0, 703.0, 178.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16250_BALBc-1_X02_Y01_1180_834\", \"ini\": 2374, \"clust\": 2204, \"rank\": 2418, \"rankvar\": 2194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 452, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 775, \"cat-2\": \"Density: 27\", \"cat_2_index\": 896, \"group\": [2204.0, 1013.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16261_BALBc-1_X02_Y01_1180_946\", \"ini\": 2373, \"clust\": 1755, \"rank\": 2550, \"rankvar\": 2602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 453, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1882, \"cat-2\": \"Density: 27\", \"cat_2_index\": 897, \"group\": [1756.0, 764.0, 203.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16286_BALBc-1_X02_Y01_1181_398\", \"ini\": 2372, \"clust\": 1268, \"rank\": 2192, \"rankvar\": 2222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 454, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1027, \"cat-2\": \"Density: 27\", \"cat_2_index\": 898, \"group\": [1269.0, 479.0, 118.0, 31.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16453_BALBc-1_X02_Y01_1183_622\", \"ini\": 2371, \"clust\": 2616, \"rank\": 1875, \"rankvar\": 1745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 455, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 6, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1743, \"group\": [2615.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16460_BALBc-1_X02_Y01_1183_734\", \"ini\": 2370, \"clust\": 397, \"rank\": 547, \"rankvar\": 451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 456, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 7, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1628, \"group\": [397.0, 238.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16490_BALBc-1_X02_Y01_1184_20\", \"ini\": 2369, \"clust\": 772, \"rank\": 779, \"rankvar\": 2081, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 457, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 894, \"cat-2\": \"Density: 15\", \"cat_2_index\": 36, \"group\": [772.0, 285.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16779_BALBc-1_X02_Y01_1188_180\", \"ini\": 2368, \"clust\": 1415, \"rank\": 1908, \"rankvar\": 2367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 458, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 776, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2056, \"group\": [1414.0, 558.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16869_BALBc-1_X02_Y01_1189_208\", \"ini\": 2367, \"clust\": 722, \"rank\": 162, \"rankvar\": 296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 459, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1717, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2220, \"group\": [722.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16889_BALBc-1_X02_Y01_1189_451\", \"ini\": 2366, \"clust\": 502, \"rank\": 159, \"rankvar\": 726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 460, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1028, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1489, \"group\": [502.0, 271.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16901_BALBc-1_X02_Y01_1189_539\", \"ini\": 2365, \"clust\": 1078, \"rank\": 891, \"rankvar\": 790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 461, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1608, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2221, \"group\": [1080.0, 370.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17048_BALBc-1_X02_Y01_1190_641\", \"ini\": 2364, \"clust\": 1027, \"rank\": 371, \"rankvar\": 168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 462, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 8, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1946, \"group\": [1027.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17117_BALBc-1_X02_Y01_1191_556\", \"ini\": 2363, \"clust\": 2744, \"rank\": 2366, \"rankvar\": 2176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 463, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1609, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1629, \"group\": [2742.0, 1166.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17132_BALBc-1_X02_Y01_1191_663\", \"ini\": 2362, \"clust\": 2061, \"rank\": 984, \"rankvar\": 854, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 464, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 777, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1947, \"group\": [2062.0, 930.0, 249.0, 69.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17336_BALBc-1_X02_Y01_1194_509\", \"ini\": 2361, \"clust\": 1133, \"rank\": 480, \"rankvar\": 267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 465, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1610, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1630, \"group\": [1134.0, 379.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17653_BALBc-1_X02_Y01_1198_693\", \"ini\": 2360, \"clust\": 1636, \"rank\": 1263, \"rankvar\": 1042, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 466, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 778, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2057, \"group\": [1636.0, 669.0, 168.0, 41.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17657_BALBc-1_X02_Y01_1198_792\", \"ini\": 2359, \"clust\": 2007, \"rank\": 1958, \"rankvar\": 1601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 467, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1029, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1055, \"group\": [2006.0, 884.0, 230.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17668_BALBc-1_X02_Y01_1198_965\", \"ini\": 2358, \"clust\": 421, \"rank\": 366, \"rankvar\": 437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 468, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2409, \"cat-2\": \"Density: 26\", \"cat_2_index\": 739, \"group\": [422.0, 245.0, 67.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17790_BALBc-1_X02_Y01_12_625\", \"ini\": 2357, \"clust\": 1543, \"rank\": 1463, \"rankvar\": 1308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 469, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1883, \"cat-2\": \"Density: 25\", \"cat_2_index\": 620, \"group\": [1544.0, 601.0, 146.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17829_BALBc-1_X02_Y01_12_949\", \"ini\": 2356, \"clust\": 2821, \"rank\": 1551, \"rankvar\": 186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 470, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1718, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1358, \"group\": [2826.0, 1204.0, 313.0, 83.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17833_BALBc-1_X02_Y01_120_10\", \"ini\": 2355, \"clust\": 2765, \"rank\": 2042, \"rankvar\": 2565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 471, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1611, \"cat-2\": \"Density: 15\", \"cat_2_index\": 37, \"group\": [2764.0, 1172.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17960_BALBc-1_X02_Y01_1200_621\", \"ini\": 2354, \"clust\": 549, \"rank\": 236, \"rankvar\": 906, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 472, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 9, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1845, \"group\": [549.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18016_BALBc-1_X02_Y01_1201_255\", \"ini\": 2353, \"clust\": 1203, \"rank\": 1505, \"rankvar\": 1290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 473, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1030, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1744, \"group\": [1205.0, 433.0, 100.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18096_BALBc-1_X02_Y01_1202_300\", \"ini\": 2352, \"clust\": 1990, \"rank\": 1470, \"rankvar\": 1527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 474, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1719, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1631, \"group\": [1990.0, 872.0, 226.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18196_BALBc-1_X02_Y01_1203_578\", \"ini\": 2351, \"clust\": 2164, \"rank\": 1700, \"rankvar\": 2106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 475, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1612, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1632, \"group\": [2164.0, 983.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18210_BALBc-1_X02_Y01_1203_725\", \"ini\": 2350, \"clust\": 1325, \"rank\": 2008, \"rankvar\": 1074, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 476, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1031, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1633, \"group\": [1326.0, 514.0, 127.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18259_BALBc-1_X02_Y01_1204_360\", \"ini\": 2349, \"clust\": 1622, \"rank\": 1195, \"rankvar\": 1971, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 477, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1720, \"cat-2\": \"Density: 26\", \"cat_2_index\": 740, \"group\": [1621.0, 655.0, 161.0, 39.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18482_BALBc-1_X02_Y01_1206_858\", \"ini\": 2348, \"clust\": 267, \"rank\": 1948, \"rankvar\": 1699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 478, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 779, \"cat-2\": \"Density: 24\", \"cat_2_index\": 478, \"group\": [267.0, 168.0, 50.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18612_BALBc-1_X02_Y01_1208_674\", \"ini\": 2347, \"clust\": 2025, \"rank\": 2394, \"rankvar\": 1915, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 479, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1032, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2058, \"group\": [2027.0, 901.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18710_BALBc-1_X02_Y01_1209_899\", \"ini\": 2346, \"clust\": 1762, \"rank\": 2474, \"rankvar\": 1427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 480, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 780, \"cat-2\": \"Density: 24\", \"cat_2_index\": 479, \"group\": [1763.0, 769.0, 203.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18905_BALBc-1_X02_Y01_1211_658\", \"ini\": 2345, \"clust\": 1955, \"rank\": 1520, \"rankvar\": 1326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 10, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2059, \"group\": [1961.0, 846.0, 216.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19104_BALBc-1_X02_Y01_1214_445\", \"ini\": 2344, \"clust\": 1637, \"rank\": 1408, \"rankvar\": 1549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 482, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2410, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1056, \"group\": [1637.0, 670.0, 168.0, 41.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19264_BALBc-1_X02_Y01_1216_455\", \"ini\": 2343, \"clust\": 829, \"rank\": 373, \"rankvar\": 725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 483, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1613, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1359, \"group\": [829.0, 295.0, 69.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19265_BALBc-1_X02_Y01_1216_472\", \"ini\": 2342, \"clust\": 1855, \"rank\": 2723, \"rankvar\": 2074, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 484, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1614, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1634, \"group\": [1856.0, 800.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19271_BALBc-1_X02_Y01_1216_594\", \"ini\": 2341, \"clust\": 1924, \"rank\": 2286, \"rankvar\": 2333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 485, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 781, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1635, \"group\": [1923.0, 822.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19288_BALBc-1_X02_Y01_1216_855\", \"ini\": 2340, \"clust\": 1980, \"rank\": 1809, \"rankvar\": 1731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 486, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 782, \"cat-2\": \"Density: 24\", \"cat_2_index\": 480, \"group\": [1981.0, 865.0, 223.0, 60.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19310_BALBc-1_X02_Y01_1217_258\", \"ini\": 2339, \"clust\": 2230, \"rank\": 2255, \"rankvar\": 2035, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 487, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1033, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1745, \"group\": [2231.0, 1022.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19351_BALBc-1_X02_Y01_1217_759\", \"ini\": 2338, \"clust\": 2643, \"rank\": 2068, \"rankvar\": 477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 488, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2503, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1360, \"group\": [2644.0, 1107.0, 285.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19674_BALBc-1_X02_Y01_1221_135\", \"ini\": 2337, \"clust\": 730, \"rank\": 382, \"rankvar\": 105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 489, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2411, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1057, \"group\": [730.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19754_BALBc-1_X02_Y01_1222_168\", \"ini\": 2336, \"clust\": 1632, \"rank\": 1090, \"rankvar\": 1196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 490, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1721, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1746, \"group\": [1635.0, 668.0, 167.0, 40.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19785_BALBc-1_X02_Y01_1222_508\", \"ini\": 2335, \"clust\": 2033, \"rank\": 2297, \"rankvar\": 1985, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 491, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1615, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1490, \"group\": [2033.0, 905.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20247_BALBc-1_X02_Y01_1228_427\", \"ini\": 2334, \"clust\": 1828, \"rank\": 2492, \"rankvar\": 2184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2504, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1361, \"group\": [1829.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20444_BALBc-1_X02_Y01_1230_254\", \"ini\": 2333, \"clust\": 2065, \"rank\": 1926, \"rankvar\": 2146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 493, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1034, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1636, \"group\": [2066.0, 932.0, 250.0, 69.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20674_BALBc-1_X02_Y01_1232_895\", \"ini\": 2332, \"clust\": 217, \"rank\": 708, \"rankvar\": 2209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 494, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 783, \"cat-2\": \"Density: 27\", \"cat_2_index\": 899, \"group\": [216.0, 140.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20684_BALBc-1_X02_Y01_1232_950\", \"ini\": 2331, \"clust\": 1418, \"rank\": 2644, \"rankvar\": 2467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 495, \"cat-1\": \"Neighbor: CD4(-)CD8(-) cDC\", \"cat_1_index\": 1590, \"cat-2\": \"Density: 24\", \"cat_2_index\": 481, \"group\": [1419.0, 560.0, 140.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20877_BALBc-1_X02_Y01_1235_619\", \"ini\": 2330, \"clust\": 1843, \"rank\": 2667, \"rankvar\": 2219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 496, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 784, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1948, \"group\": [1843.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21358_BALBc-1_X02_Y01_1241_235\", \"ini\": 2329, \"clust\": 2790, \"rank\": 2384, \"rankvar\": 1995, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 497, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1035, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1362, \"group\": [2798.0, 1180.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21512_BALBc-1_X02_Y01_1243_309\", \"ini\": 2328, \"clust\": 1684, \"rank\": 2063, \"rankvar\": 2090, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 498, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1722, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1058, \"group\": [1684.0, 708.0, 180.0, 46.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21583_BALBc-1_X02_Y01_1244_275\", \"ini\": 2327, \"clust\": 1314, \"rank\": 2240, \"rankvar\": 2476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 499, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 11, \"cat-2\": \"Density: 27\", \"cat_2_index\": 900, \"group\": [1314.0, 507.0, 124.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21689_BALBc-1_X02_Y01_1245_805\", \"ini\": 2326, \"clust\": 2020, \"rank\": 2395, \"rankvar\": 2650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 500, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2505, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1199, \"group\": [2021.0, 898.0, 235.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22019_BALBc-1_X02_Y01_125_269\", \"ini\": 2325, \"clust\": 1699, \"rank\": 1560, \"rankvar\": 2141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 501, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1884, \"cat-2\": \"Density: 25\", \"cat_2_index\": 621, \"group\": [1699.0, 722.0, 184.0, 49.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22239_BALBc-1_X02_Y01_1252_216\", \"ini\": 2324, \"clust\": 1229, \"rank\": 1514, \"rankvar\": 2662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 502, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2270, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1363, \"group\": [1230.0, 447.0, 105.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22243_BALBc-1_X02_Y01_1252_255\", \"ini\": 2323, \"clust\": 215, \"rank\": 850, \"rankvar\": 1657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 503, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 12, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1200, \"group\": [226.0, 141.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22255_BALBc-1_X02_Y01_1252_348\", \"ini\": 2322, \"clust\": 2008, \"rank\": 1780, \"rankvar\": 2192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 504, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1723, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1059, \"group\": [2007.0, 885.0, 230.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22266_BALBc-1_X02_Y01_1252_472\", \"ini\": 2321, \"clust\": 1919, \"rank\": 2351, \"rankvar\": 2703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 505, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2506, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1364, \"group\": [1920.0, 821.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22548_BALBc-1_X02_Y01_1256_623\", \"ini\": 2320, \"clust\": 1890, \"rank\": 2024, \"rankvar\": 1424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 506, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 785, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2060, \"group\": [1890.0, 809.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22671_BALBc-1_X02_Y01_1258_136\", \"ini\": 2319, \"clust\": 411, \"rank\": 341, \"rankvar\": 241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 507, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1036, \"cat-2\": \"Density: 27\", \"cat_2_index\": 901, \"group\": [412.0, 242.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22748_BALBc-1_X02_Y01_1259_383\", \"ini\": 2318, \"clust\": 205, \"rank\": 1113, \"rankvar\": 1609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 508, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 678, \"cat-2\": \"Density: 27\", \"cat_2_index\": 902, \"group\": [206.0, 135.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22787_BALBc-1_X02_Y01_1259_893\", \"ini\": 2317, \"clust\": 1785, \"rank\": 2088, \"rankvar\": 1246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 509, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 786, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1060, \"group\": [1784.0, 783.0, 207.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22931_BALBc-1_X02_Y01_1260_924\", \"ini\": 2316, \"clust\": 207, \"rank\": 1054, \"rankvar\": 1665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 510, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 787, \"cat-2\": \"Density: 27\", \"cat_2_index\": 903, \"group\": [208.0, 137.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23108_BALBc-1_X02_Y01_1263_256\", \"ini\": 2315, \"clust\": 1705, \"rank\": 2481, \"rankvar\": 2813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 511, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 679, \"cat-2\": \"Density: 26\", \"cat_2_index\": 741, \"group\": [1705.0, 728.0, 187.0, 50.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23139_BALBc-1_X02_Y01_1263_670\", \"ini\": 2314, \"clust\": 2016, \"rank\": 2591, \"rankvar\": 2605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 512, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1037, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1637, \"group\": [2016.0, 894.0, 234.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23280_BALBc-1_X02_Y01_1265_648\", \"ini\": 2313, \"clust\": 1917, \"rank\": 1458, \"rankvar\": 2124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 513, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 13, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1846, \"group\": [1922.0, 821.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23335_BALBc-1_X02_Y01_1266_525\", \"ini\": 2312, \"clust\": 2174, \"rank\": 2011, \"rankvar\": 1449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 514, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2507, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1491, \"group\": [2173.0, 990.0, 262.0, 72.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23348_BALBc-1_X02_Y01_1266_814\", \"ini\": 2311, \"clust\": 1918, \"rank\": 2049, \"rankvar\": 2323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 515, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2508, \"cat-2\": \"Density: 22\", \"cat_2_index\": 265, \"group\": [1921.0, 821.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23436_BALBc-1_X02_Y01_1268_124\", \"ini\": 2310, \"clust\": 1278, \"rank\": 2218, \"rankvar\": 2733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 516, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2271, \"cat-2\": \"Density: 26\", \"cat_2_index\": 742, \"group\": [1277.0, 486.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23465_BALBc-1_X02_Y01_1268_478\", \"ini\": 2309, \"clust\": 1844, \"rank\": 2702, \"rankvar\": 2152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 517, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 14, \"cat-2\": \"Density: 27\", \"cat_2_index\": 904, \"group\": [1844.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23570_BALBc-1_X02_Y01_1269_960\", \"ini\": 2308, \"clust\": 520, \"rank\": 268, \"rankvar\": 1260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 518, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1061, \"group\": [522.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23719_BALBc-1_X02_Y01_1271_19\", \"ini\": 2307, \"clust\": 803, \"rank\": 136, \"rankvar\": 1266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 519, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1885, \"cat-2\": \"Density: 9\", \"cat_2_index\": 1, \"group\": [803.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23817_BALBc-1_X02_Y01_1272_501\", \"ini\": 2306, \"clust\": 1655, \"rank\": 1172, \"rankvar\": 942, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 520, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2509, \"cat-2\": \"Density: 27\", \"cat_2_index\": 905, \"group\": [1654.0, 685.0, 175.0, 43.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23834_BALBc-1_X02_Y01_1272_684\", \"ini\": 2305, \"clust\": 2128, \"rank\": 1444, \"rankvar\": 1864, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 521, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1038, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1365, \"group\": [2129.0, 964.0, 257.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23870_BALBc-1_X02_Y01_1273_191\", \"ini\": 2304, \"clust\": 526, \"rank\": 118, \"rankvar\": 234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 522, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1724, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1062, \"group\": [526.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23961_BALBc-1_X02_Y01_1274_276\", \"ini\": 2303, \"clust\": 1303, \"rank\": 2482, \"rankvar\": 2572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 523, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2412, \"cat-2\": \"Density: 24\", \"cat_2_index\": 482, \"group\": [1302.0, 499.0, 123.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24129_BALBc-1_X02_Y01_1276_627\", \"ini\": 2302, \"clust\": 331, \"rank\": 1014, \"rankvar\": 365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 524, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 15, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1492, \"group\": [334.0, 209.0, 60.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24213_BALBc-1_X02_Y01_1277_743\", \"ini\": 2301, \"clust\": 1870, \"rank\": 1709, \"rankvar\": 1360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 525, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2510, \"cat-2\": \"Density: 26\", \"cat_2_index\": 743, \"group\": [1871.0, 802.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24260_BALBc-1_X02_Y01_1278_371\", \"ini\": 2300, \"clust\": 1786, \"rank\": 1993, \"rankvar\": 866, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 526, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 16, \"cat-2\": \"Density: 20\", \"cat_2_index\": 140, \"group\": [1785.0, 783.0, 207.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24435_BALBc-1_X02_Y01_128_859\", \"ini\": 2299, \"clust\": 820, \"rank\": 368, \"rankvar\": 2165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 527, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 680, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1493, \"group\": [820.0, 292.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24454_BALBc-1_X02_Y01_1280_168\", \"ini\": 2298, \"clust\": 1488, \"rank\": 2540, \"rankvar\": 2667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 528, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1725, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1063, \"group\": [1489.0, 581.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24523_BALBc-1_X02_Y01_1281_204\", \"ini\": 2297, \"clust\": 1282, \"rank\": 2488, \"rankvar\": 2494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 529, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2511, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1064, \"group\": [1282.0, 489.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24639_BALBc-1_X02_Y01_1282_936\", \"ini\": 2296, \"clust\": 1806, \"rank\": 2080, \"rankvar\": 1607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 530, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 788, \"cat-2\": \"Density: 25\", \"cat_2_index\": 622, \"group\": [1807.0, 791.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24854_BALBc-1_X02_Y01_1285_865\", \"ini\": 2295, \"clust\": 1824, \"rank\": 2615, \"rankvar\": 2451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 531, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 789, \"cat-2\": \"Density: 20\", \"cat_2_index\": 141, \"group\": [1824.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25171_BALBc-1_X02_Y01_129_327\", \"ini\": 2294, \"clust\": 1049, \"rank\": 486, \"rankvar\": 899, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 532, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1886, \"cat-2\": \"Density: 26\", \"cat_2_index\": 744, \"group\": [1050.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25272_BALBc-1_X02_Y01_1290_692\", \"ini\": 2293, \"clust\": 2215, \"rank\": 2515, \"rankvar\": 2418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 533, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 17, \"cat-2\": \"Density: 27\", \"cat_2_index\": 906, \"group\": [2214.0, 1019.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25330_BALBc-1_X02_Y01_1291_444\", \"ini\": 2292, \"clust\": 1930, \"rank\": 2572, \"rankvar\": 2444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 534, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2512, \"cat-2\": \"Density: 21\", \"cat_2_index\": 197, \"group\": [1928.0, 824.0, 213.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25437_BALBc-1_X02_Y01_1292_824\", \"ini\": 2291, \"clust\": 2177, \"rank\": 1666, \"rankvar\": 2133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 535, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 18, \"cat-2\": \"Density: 21\", \"cat_2_index\": 198, \"group\": [2177.0, 993.0, 264.0, 73.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25507_BALBc-1_X02_Y01_1293_608\", \"ini\": 2290, \"clust\": 2224, \"rank\": 2137, \"rankvar\": 1802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 536, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 19, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1065, \"group\": [2222.0, 1020.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25576_BALBc-1_X02_Y01_1294_588\", \"ini\": 2289, \"clust\": 554, \"rank\": 326, \"rankvar\": 434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 537, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 790, \"cat-2\": \"Density: 26\", \"cat_2_index\": 745, \"group\": [556.0, 275.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25582_BALBc-1_X02_Y01_1294_704\", \"ini\": 2288, \"clust\": 285, \"rank\": 1170, \"rankvar\": 1366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 538, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1039, \"cat-2\": \"Density: 25\", \"cat_2_index\": 623, \"group\": [292.0, 185.0, 54.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25697_BALBc-1_X02_Y01_1296_329\", \"ini\": 2287, \"clust\": 1985, \"rank\": 1909, \"rankvar\": 2144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 539, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2413, \"cat-2\": \"Density: 19\", \"cat_2_index\": 116, \"group\": [1985.0, 867.0, 224.0, 60.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25710_BALBc-1_X02_Y01_1296_563\", \"ini\": 2286, \"clust\": 1834, \"rank\": 2340, \"rankvar\": 1917, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 540, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2513, \"cat-2\": \"Density: 25\", \"cat_2_index\": 624, \"group\": [1835.0, 797.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25815_BALBc-1_X02_Y01_1297_976\", \"ini\": 2285, \"clust\": 540, \"rank\": 68, \"rankvar\": 776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 541, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1040, \"cat-2\": \"Density: 23\", \"cat_2_index\": 379, \"group\": [540.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25841_BALBc-1_X02_Y01_1298_381\", \"ini\": 2284, \"clust\": 2038, \"rank\": 2539, \"rankvar\": 2775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 791, \"cat-2\": \"Density: 17\", \"cat_2_index\": 71, \"group\": [2037.0, 907.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25946_BALBc-1_X02_Y01_1299_659\", \"ini\": 2283, \"clust\": 135, \"rank\": 983, \"rankvar\": 436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 543, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 20, \"cat-2\": \"Density: 24\", \"cat_2_index\": 483, \"group\": [132.0, 82.0, 21.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26179_BALBc-1_X02_Y01_1300_765\", \"ini\": 2282, \"clust\": 2241, \"rank\": 2686, \"rankvar\": 2808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 544, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2514, \"cat-2\": \"Density: 18\", \"cat_2_index\": 91, \"group\": [2242.0, 1025.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26338_BALBc-1_X02_Y01_1302_966\", \"ini\": 2281, \"clust\": 1799, \"rank\": 2788, \"rankvar\": 2681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 545, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1041, \"cat-2\": \"Density: 22\", \"cat_2_index\": 266, \"group\": [1798.0, 789.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26563_BALBc-1_X02_Y01_1306_615\", \"ini\": 2280, \"clust\": 754, \"rank\": 553, \"rankvar\": 57, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 546, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 21, \"cat-2\": \"Density: 24\", \"cat_2_index\": 484, \"group\": [756.0, 280.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26947_BALBc-1_X02_Y01_1310_844\", \"ini\": 2279, \"clust\": 1836, \"rank\": 2731, \"rankvar\": 2426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 547, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 22, \"cat-2\": \"Density: 17\", \"cat_2_index\": 72, \"group\": [1837.0, 798.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26986_BALBc-1_X02_Y01_1311_476\", \"ini\": 2278, \"clust\": 2626, \"rank\": 2186, \"rankvar\": 1354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 548, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 23, \"cat-2\": \"Density: 20\", \"cat_2_index\": 142, \"group\": [2627.0, 1095.0, 281.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27217_BALBc-1_X02_Y01_1314_632\", \"ini\": 2277, \"clust\": 1976, \"rank\": 1255, \"rankvar\": 604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 549, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 24, \"cat-2\": \"Density: 23\", \"cat_2_index\": 380, \"group\": [1977.0, 862.0, 223.0, 60.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27299_BALBc-1_X02_Y01_1315_692\", \"ini\": 2276, \"clust\": 943, \"rank\": 834, \"rankvar\": 360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 550, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 25, \"cat-2\": \"Density: 22\", \"cat_2_index\": 267, \"group\": [941.0, 342.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27307_BALBc-1_X02_Y01_1315_735\", \"ini\": 2275, \"clust\": 2221, \"rank\": 1945, \"rankvar\": 1464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 26, \"cat-2\": \"Density: 19\", \"cat_2_index\": 117, \"group\": [2226.0, 1020.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27466_BALBc-1_X02_Y01_1317_879\", \"ini\": 2274, \"clust\": 1945, \"rank\": 1261, \"rankvar\": 1330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 552, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 792, \"cat-2\": \"Density: 16\", \"cat_2_index\": 51, \"group\": [1946.0, 837.0, 214.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27504_BALBc-1_X02_Y01_1318_405\", \"ini\": 2273, \"clust\": 1295, \"rank\": 2279, \"rankvar\": 1768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 553, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 793, \"cat-2\": \"Density: 16\", \"cat_2_index\": 52, \"group\": [1294.0, 492.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27595_BALBc-1_X02_Y01_1319_808\", \"ini\": 2272, \"clust\": 2452, \"rank\": 1585, \"rankvar\": 2697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 554, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 27, \"cat-2\": \"Density: 15\", \"cat_2_index\": 38, \"group\": [2453.0, 1057.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27599_BALBc-1_X02_Y01_1319_890\", \"ini\": 2271, \"clust\": 2681, \"rank\": 1009, \"rankvar\": 1751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 555, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 794, \"cat-2\": \"Density: 17\", \"cat_2_index\": 73, \"group\": [2681.0, 1139.0, 293.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27627_BALBc-1_X02_Y01_132_376\", \"ini\": 2270, \"clust\": 44, \"rank\": 1397, \"rankvar\": 2315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 556, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1042, \"cat-2\": \"Density: 26\", \"cat_2_index\": 746, \"group\": [49.0, 25.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27677_BALBc-1_X02_Y01_132_918\", \"ini\": 2269, \"clust\": 3, \"rank\": 955, \"rankvar\": 879, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 557, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2515, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1949, \"group\": [4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27726_BALBc-1_X02_Y01_1320_540\", \"ini\": 2268, \"clust\": 2120, \"rank\": 1483, \"rankvar\": 1199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 558, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2516, \"cat-2\": \"Density: 18\", \"cat_2_index\": 92, \"group\": [2121.0, 960.0, 255.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27814_BALBc-1_X02_Y01_1321_772\", \"ini\": 2267, \"clust\": 2107, \"rank\": 1528, \"rankvar\": 1639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 559, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 28, \"cat-2\": \"Density: 17\", \"cat_2_index\": 74, \"group\": [2103.0, 950.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27851_BALBc-1_X02_Y01_1322_496\", \"ini\": 2266, \"clust\": 2290, \"rank\": 2441, \"rankvar\": 1312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 560, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2517, \"cat-2\": \"Density: 16\", \"cat_2_index\": 53, \"group\": [2293.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27996_BALBc-1_X02_Y01_1324_340\", \"ini\": 2265, \"clust\": 1230, \"rank\": 979, \"rankvar\": 1943, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 561, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 795, \"cat-2\": \"Density: 13\", \"cat_2_index\": 12, \"group\": [1231.0, 448.0, 105.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28090_BALBc-1_X02_Y01_1325_569\", \"ini\": 2264, \"clust\": 2267, \"rank\": 2355, \"rankvar\": 1183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 562, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 29, \"cat-2\": \"Density: 20\", \"cat_2_index\": 143, \"group\": [2266.0, 1033.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28093_BALBc-1_X02_Y01_1325_603\", \"ini\": 2263, \"clust\": 2405, \"rank\": 1565, \"rankvar\": 1463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 563, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 30, \"cat-2\": \"Density: 22\", \"cat_2_index\": 268, \"group\": [2407.0, 1043.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28114_BALBc-1_X02_Y01_1325_828\", \"ini\": 2262, \"clust\": 2517, \"rank\": 2258, \"rankvar\": 2040, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 564, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 31, \"cat-2\": \"Density: 15\", \"cat_2_index\": 39, \"group\": [2517.0, 1081.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28137_BALBc-1_X02_Y01_1325_999\", \"ini\": 2261, \"clust\": 1800, \"rank\": 2812, \"rankvar\": 2696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 565, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 796, \"cat-2\": \"Density: 17\", \"cat_2_index\": 75, \"group\": [1799.0, 789.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28664_BALBc-1_X02_Y01_1331_725\", \"ini\": 2260, \"clust\": 1849, \"rank\": 2551, \"rankvar\": 1081, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 566, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 32, \"cat-2\": \"Density: 16\", \"cat_2_index\": 54, \"group\": [1855.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28713_BALBc-1_X02_Y01_1332_436\", \"ini\": 2259, \"clust\": 1845, \"rank\": 2757, \"rankvar\": 1993, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 567, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2518, \"cat-2\": \"Density: 14\", \"cat_2_index\": 27, \"group\": [1846.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28759_BALBc-1_X02_Y01_1332_937\", \"ini\": 2258, \"clust\": 1821, \"rank\": 2768, \"rankvar\": 2385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 568, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 797, \"cat-2\": \"Density: 15\", \"cat_2_index\": 40, \"group\": [1821.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28951_BALBc-1_X02_Y01_1335_663\", \"ini\": 2257, \"clust\": 2619, \"rank\": 1799, \"rankvar\": 1461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 569, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 33, \"cat-2\": \"Density: 20\", \"cat_2_index\": 144, \"group\": [2619.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29000_BALBc-1_X02_Y01_1336_597\", \"ini\": 2256, \"clust\": 2295, \"rank\": 2407, \"rankvar\": 2038, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 570, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 34, \"cat-2\": \"Density: 16\", \"cat_2_index\": 55, \"group\": [2294.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29507_BALBc-1_X02_Y01_137_977\", \"ini\": 2255, \"clust\": 213, \"rank\": 903, \"rankvar\": 2083, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 571, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1043, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1950, \"group\": [213.0, 138.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29674_BALBc-1_X02_Y01_14_498\", \"ini\": 2254, \"clust\": 2050, \"rank\": 1011, \"rankvar\": 1957, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 572, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2414, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1201, \"group\": [2055.0, 923.0, 245.0, 67.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29998_BALBc-1_X02_Y01_143_952\", \"ini\": 2253, \"clust\": 2384, \"rank\": 2597, \"rankvar\": 2325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 573, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1044, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1951, \"group\": [2384.0, 1037.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30482_BALBc-1_X02_Y01_15_575\", \"ini\": 2252, \"clust\": 1162, \"rank\": 830, \"rankvar\": 1070, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 574, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1887, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1202, \"group\": [1163.0, 397.0, 84.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30586_BALBc-1_X02_Y01_150_909\", \"ini\": 2251, \"clust\": 361, \"rank\": 1188, \"rankvar\": 1672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1045, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1494, \"group\": [361.0, 224.0, 63.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31216_BALBc-1_X02_Y01_159_250\", \"ini\": 2250, \"clust\": 98, \"rank\": 1437, \"rankvar\": 1514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 576, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1617, \"cat-2\": \"Density: 26\", \"cat_2_index\": 747, \"group\": [99.0, 54.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31389_BALBc-1_X02_Y01_160_546\", \"ini\": 2249, \"clust\": 1529, \"rank\": 997, \"rankvar\": 706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 577, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1888, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1203, \"group\": [1528.0, 591.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31462_BALBc-1_X02_Y01_161_584\", \"ini\": 2248, \"clust\": 645, \"rank\": 187, \"rankvar\": 58, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 578, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1889, \"cat-2\": \"Density: 27\", \"cat_2_index\": 907, \"group\": [642.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31774_BALBc-1_X02_Y01_166_30\", \"ini\": 2247, \"clust\": 1525, \"rank\": 1476, \"rankvar\": 1287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 579, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1046, \"cat-2\": \"Density: 16\", \"cat_2_index\": 56, \"group\": [1523.0, 588.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31790_BALBc-1_X02_Y01_166_464\", \"ini\": 2246, \"clust\": 1197, \"rank\": 1218, \"rankvar\": 806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 580, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2810, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1495, \"group\": [1198.0, 428.0, 98.0, 23.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32250_BALBc-1_X02_Y01_171_888\", \"ini\": 2245, \"clust\": 1263, \"rank\": 1499, \"rankvar\": 1203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 581, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 798, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1366, \"group\": [1263.0, 475.0, 117.0, 30.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32282_BALBc-1_X02_Y01_172_482\", \"ini\": 2244, \"clust\": 1226, \"rank\": 1647, \"rankvar\": 2620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 582, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1890, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1496, \"group\": [1226.0, 446.0, 105.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32442_BALBc-1_X02_Y01_174_956\", \"ini\": 2243, \"clust\": 84, \"rank\": 1333, \"rankvar\": 1645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 583, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1047, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1847, \"group\": [84.0, 41.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32519_BALBc-1_X02_Y01_175_843\", \"ini\": 2242, \"clust\": 2002, \"rank\": 2222, \"rankvar\": 2284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 584, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1891, \"cat-2\": \"Density: 26\", \"cat_2_index\": 748, \"group\": [2003.0, 882.0, 229.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32762_BALBc-1_X02_Y01_179_322\", \"ini\": 2241, \"clust\": 587, \"rank\": 142, \"rankvar\": 431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 585, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1048, \"cat-2\": \"Density: 25\", \"cat_2_index\": 625, \"group\": [584.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32908_BALBc-1_X02_Y01_180_240\", \"ini\": 2240, \"clust\": 1522, \"rank\": 933, \"rankvar\": 2677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 586, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1618, \"cat-2\": \"Density: 23\", \"cat_2_index\": 381, \"group\": [1520.0, 588.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33134_BALBc-1_X02_Y01_183_289\", \"ini\": 2239, \"clust\": 1540, \"rank\": 1375, \"rankvar\": 1161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 587, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1049, \"cat-2\": \"Density: 24\", \"cat_2_index\": 485, \"group\": [1541.0, 599.0, 146.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33188_BALBc-1_X02_Y01_183_994\", \"ini\": 2238, \"clust\": 2210, \"rank\": 2162, \"rankvar\": 2199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 588, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1619, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1497, \"group\": [2213.0, 1018.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33296_BALBc-1_X02_Y01_185_49\", \"ini\": 2237, \"clust\": 1146, \"rank\": 1139, \"rankvar\": 470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 589, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2480, \"cat-2\": \"Density: 20\", \"cat_2_index\": 145, \"group\": [1148.0, 385.0, 81.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33298_BALBc-1_X02_Y01_185_504\", \"ini\": 2236, \"clust\": 578, \"rank\": 105, \"rankvar\": 314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 590, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2415, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1638, \"group\": [577.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33505_BALBc-1_X02_Y01_188_605\", \"ini\": 2235, \"clust\": 805, \"rank\": 789, \"rankvar\": 909, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1050, \"cat-2\": \"Density: 27\", \"cat_2_index\": 908, \"group\": [809.0, 291.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34197_BALBc-1_X02_Y01_196_898\", \"ini\": 2234, \"clust\": 1354, \"rank\": 2666, \"rankvar\": 2483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 592, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 799, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1204, \"group\": [1354.0, 530.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34308_BALBc-1_X02_Y01_198_421\", \"ini\": 2233, \"clust\": 1403, \"rank\": 2339, \"rankvar\": 2181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 593, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1892, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1747, \"group\": [1402.0, 553.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34743_BALBc-1_X02_Y01_203_465\", \"ini\": 2232, \"clust\": 1434, \"rank\": 2450, \"rankvar\": 2252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 594, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1893, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1748, \"group\": [1436.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35154_BALBc-1_X02_Y01_208_938\", \"ini\": 2231, \"clust\": 16, \"rank\": 783, \"rankvar\": 2174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 595, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1051, \"cat-2\": \"Density: 26\", \"cat_2_index\": 749, \"group\": [13.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35303_BALBc-1_X02_Y01_21_920\", \"ini\": 2230, \"clust\": 1170, \"rank\": 1088, \"rankvar\": 497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 596, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2416, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1749, \"group\": [1171.0, 405.0, 89.0, 20.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35604_BALBc-1_X02_Y01_214_17\", \"ini\": 2229, \"clust\": 293, \"rank\": 970, \"rankvar\": 910, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 597, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1620, \"cat-2\": \"Density: 15\", \"cat_2_index\": 41, \"group\": [295.0, 187.0, 55.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35670_BALBc-1_X02_Y01_214_814\", \"ini\": 2228, \"clust\": 1329, \"rank\": 1257, \"rankvar\": 506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 598, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1894, \"cat-2\": \"Density: 25\", \"cat_2_index\": 626, \"group\": [1332.0, 518.0, 128.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35942_BALBc-1_X02_Y01_218_649\", \"ini\": 2227, \"clust\": 1663, \"rank\": 453, \"rankvar\": 2042, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 599, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1052, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1639, \"group\": [1664.0, 694.0, 177.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36172_BALBc-1_X02_Y01_221_262\", \"ini\": 2226, \"clust\": 1565, \"rank\": 974, \"rankvar\": 153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 600, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1621, \"cat-2\": \"Density: 26\", \"cat_2_index\": 750, \"group\": [1567.0, 619.0, 150.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36246_BALBc-1_X02_Y01_222_326\", \"ini\": 2225, \"clust\": 1013, \"rank\": 402, \"rankvar\": 367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 601, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1622, \"cat-2\": \"Density: 24\", \"cat_2_index\": 486, \"group\": [1015.0, 366.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36545_BALBc-1_X02_Y01_226_202\", \"ini\": 2224, \"clust\": 62, \"rank\": 1477, \"rankvar\": 2414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 602, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1623, \"cat-2\": \"Density: 24\", \"cat_2_index\": 487, \"group\": [61.0, 28.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37650_BALBc-1_X02_Y01_24_403\", \"ini\": 2223, \"clust\": 351, \"rank\": 951, \"rankvar\": 1628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 603, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2481, \"cat-2\": \"Density: 22\", \"cat_2_index\": 269, \"group\": [351.0, 220.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37845_BALBc-1_X02_Y01_242_283\", \"ini\": 2222, \"clust\": 326, \"rank\": 554, \"rankvar\": 729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 604, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2272, \"cat-2\": \"Density: 22\", \"cat_2_index\": 270, \"group\": [327.0, 205.0, 59.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37881_BALBc-1_X02_Y01_242_724\", \"ini\": 2221, \"clust\": 49, \"rank\": 820, \"rankvar\": 2543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 605, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 617, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1205, \"group\": [52.0, 25.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38216_BALBc-1_X02_Y01_246_892\", \"ini\": 2220, \"clust\": 1527, \"rank\": 1020, \"rankvar\": 815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 606, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1895, \"cat-2\": \"Density: 26\", \"cat_2_index\": 751, \"group\": [1526.0, 590.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38269_BALBc-1_X02_Y01_247_736\", \"ini\": 2219, \"clust\": 1183, \"rank\": 819, \"rankvar\": 67, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 607, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1896, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1367, \"group\": [1184.0, 415.0, 94.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38745_BALBc-1_X02_Y01_253_169\", \"ini\": 2218, \"clust\": 811, \"rank\": 198, \"rankvar\": 2087, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 608, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2417, \"cat-2\": \"Density: 20\", \"cat_2_index\": 146, \"group\": [816.0, 292.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38753_BALBc-1_X02_Y01_253_315\", \"ini\": 2217, \"clust\": 1575, \"rank\": 753, \"rankvar\": 1602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 609, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1624, \"cat-2\": \"Density: 24\", \"cat_2_index\": 488, \"group\": [1575.0, 626.0, 152.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39430_BALBc-1_X02_Y01_261_492\", \"ini\": 2216, \"clust\": 24, \"rank\": 897, \"rankvar\": 2283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 610, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2418, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1750, \"group\": [26.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39865_BALBc-1_X02_Y01_267_24\", \"ini\": 2215, \"clust\": 977, \"rank\": 348, \"rankvar\": 4, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 611, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1053, \"cat-2\": \"Density: 15\", \"cat_2_index\": 42, \"group\": [976.0, 355.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40114_BALBc-1_X02_Y01_27_431\", \"ini\": 2214, \"clust\": 50, \"rank\": 524, \"rankvar\": 2687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 612, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2482, \"cat-2\": \"Density: 26\", \"cat_2_index\": 752, \"group\": [50.0, 25.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40196_BALBc-1_X02_Y01_270_639\", \"ini\": 2213, \"clust\": 732, \"rank\": 70, \"rankvar\": 131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 613, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 618, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1206, \"group\": [732.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40274_BALBc-1_X02_Y01_271_849\", \"ini\": 2212, \"clust\": 1460, \"rank\": 2353, \"rankvar\": 2295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 614, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1897, \"cat-2\": \"Density: 25\", \"cat_2_index\": 627, \"group\": [1460.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40304_BALBc-1_X02_Y01_272_264\", \"ini\": 2211, \"clust\": 99, \"rank\": 1947, \"rankvar\": 1829, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 615, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1054, \"cat-2\": \"Density: 21\", \"cat_2_index\": 199, \"group\": [100.0, 54.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40412_BALBc-1_X02_Y01_273_730\", \"ini\": 2210, \"clust\": 1570, \"rank\": 1141, \"rankvar\": 2491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 616, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 800, \"cat-2\": \"Density: 27\", \"cat_2_index\": 909, \"group\": [1570.0, 621.0, 151.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40506_BALBc-1_X02_Y01_275_150\", \"ini\": 2209, \"clust\": 537, \"rank\": 57, \"rankvar\": 151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 617, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1055, \"cat-2\": \"Density: 20\", \"cat_2_index\": 147, \"group\": [536.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40534_BALBc-1_X02_Y01_275_491\", \"ini\": 2208, \"clust\": 1409, \"rank\": 2048, \"rankvar\": 1954, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 618, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2419, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1368, \"group\": [1410.0, 557.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40859_BALBc-1_X02_Y01_279_657\", \"ini\": 2207, \"clust\": 1497, \"rank\": 1558, \"rankvar\": 2044, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 619, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1056, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1066, \"group\": [1498.0, 582.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41366_BALBc-1_X02_Y01_285_702\", \"ini\": 2206, \"clust\": 1404, \"rank\": 1791, \"rankvar\": 1492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 620, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1057, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1207, \"group\": [1408.0, 556.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41645_BALBc-1_X02_Y01_289_419\", \"ini\": 2205, \"clust\": 431, \"rank\": 617, \"rankvar\": 750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 621, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1058, \"cat-2\": \"Density: 25\", \"cat_2_index\": 628, \"group\": [432.0, 251.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41692_BALBc-1_X02_Y01_289_977\", \"ini\": 2204, \"clust\": 2134, \"rank\": 1276, \"rankvar\": 2022, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 622, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2483, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1498, \"group\": [2136.0, 967.0, 258.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41720_BALBc-1_X02_Y01_29_371\", \"ini\": 2203, \"clust\": 1175, \"rank\": 1134, \"rankvar\": 75, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 623, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1898, \"cat-2\": \"Density: 21\", \"cat_2_index\": 200, \"group\": [1175.0, 409.0, 92.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42093_BALBc-1_X02_Y01_294_471\", \"ini\": 2202, \"clust\": 1499, \"rank\": 1672, \"rankvar\": 2128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 624, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1899, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1067, \"group\": [1500.0, 583.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42388_BALBc-1_X02_Y01_298_746\", \"ini\": 2201, \"clust\": 1142, \"rank\": 1176, \"rankvar\": 730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 625, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1059, \"cat-2\": \"Density: 25\", \"cat_2_index\": 629, \"group\": [1143.0, 382.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42422_BALBc-1_X02_Y01_299_309\", \"ini\": 2200, \"clust\": 576, \"rank\": 46, \"rankvar\": 166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 626, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1625, \"cat-2\": \"Density: 22\", \"cat_2_index\": 271, \"group\": [576.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42773_BALBc-1_X02_Y01_302_572\", \"ini\": 2199, \"clust\": 621, \"rank\": 52, \"rankvar\": 127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 627, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2420, \"cat-2\": \"Density: 27\", \"cat_2_index\": 910, \"group\": [621.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42875_BALBc-1_X02_Y01_303_626\", \"ini\": 2198, \"clust\": 533, \"rank\": 172, \"rankvar\": 346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 628, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 939, \"cat-2\": \"Density: 26\", \"cat_2_index\": 753, \"group\": [532.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42918_BALBc-1_X02_Y01_304_24\", \"ini\": 2197, \"clust\": 740, \"rank\": 255, \"rankvar\": 246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 629, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2484, \"cat-2\": \"Density: 14\", \"cat_2_index\": 28, \"group\": [739.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43254_BALBc-1_X02_Y01_309_522\", \"ini\": 2196, \"clust\": 1064, \"rank\": 58, \"rankvar\": 332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 630, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1900, \"cat-2\": \"Density: 23\", \"cat_2_index\": 382, \"group\": [1061.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43735_BALBc-1_X02_Y01_314_988\", \"ini\": 2195, \"clust\": 92, \"rank\": 2276, \"rankvar\": 2349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 631, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1060, \"cat-2\": \"Density: 26\", \"cat_2_index\": 754, \"group\": [91.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44336_BALBc-1_X02_Y01_321_884\", \"ini\": 2194, \"clust\": 26, \"rank\": 1147, \"rankvar\": 2352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 632, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1061, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1068, \"group\": [25.0, 18.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44373_BALBc-1_X02_Y01_322_353\", \"ini\": 2193, \"clust\": 297, \"rank\": 494, \"rankvar\": 1163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 633, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2230, \"cat-2\": \"Density: 24\", \"cat_2_index\": 489, \"group\": [298.0, 190.0, 56.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44527_BALBc-1_X02_Y01_324_319\", \"ini\": 2192, \"clust\": 318, \"rank\": 1110, \"rankvar\": 789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 634, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1626, \"cat-2\": \"Density: 24\", \"cat_2_index\": 490, \"group\": [324.0, 203.0, 58.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44555_BALBc-1_X02_Y01_324_635\", \"ini\": 2191, \"clust\": 1603, \"rank\": 1144, \"rankvar\": 13, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 635, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 940, \"cat-2\": \"Density: 27\", \"cat_2_index\": 911, \"group\": [1608.0, 646.0, 157.0, 37.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45166_BALBc-1_X02_Y01_331_409\", \"ini\": 2190, \"clust\": 2764, \"rank\": 2613, \"rankvar\": 2760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 636, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2231, \"cat-2\": \"Density: 25\", \"cat_2_index\": 630, \"group\": [2766.0, 1172.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45200_BALBc-1_X02_Y01_331_901\", \"ini\": 2189, \"clust\": 385, \"rank\": 242, \"rankvar\": 1314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 637, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1901, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1208, \"group\": [384.0, 232.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45510_BALBc-1_X02_Y01_335_873\", \"ini\": 2188, \"clust\": 73, \"rank\": 1151, \"rankvar\": 622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 638, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1062, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1069, \"group\": [74.0, 35.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45659_BALBc-1_X02_Y01_338_160\", \"ini\": 2187, \"clust\": 741, \"rank\": 101, \"rankvar\": 946, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 639, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 801, \"cat-2\": \"Density: 26\", \"cat_2_index\": 755, \"group\": [740.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45693_BALBc-1_X02_Y01_338_551\", \"ini\": 2186, \"clust\": 1202, \"rank\": 1302, \"rankvar\": 1453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 640, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2421, \"cat-2\": \"Density: 26\", \"cat_2_index\": 756, \"group\": [1206.0, 434.0, 100.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46414_BALBc-1_X02_Y01_346_740\", \"ini\": 2185, \"clust\": 1466, \"rank\": 2074, \"rankvar\": 2020, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 641, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1063, \"cat-2\": \"Density: 22\", \"cat_2_index\": 272, \"group\": [1467.0, 572.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46504_BALBc-1_X02_Y01_348_114\", \"ini\": 2184, \"clust\": 649, \"rank\": 271, \"rankvar\": 19, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 642, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1902, \"cat-2\": \"Density: 20\", \"cat_2_index\": 148, \"group\": [649.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46508_BALBc-1_X02_Y01_348_141\", \"ini\": 2183, \"clust\": 354, \"rank\": 778, \"rankvar\": 948, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 643, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1903, \"cat-2\": \"Density: 23\", \"cat_2_index\": 383, \"group\": [353.0, 221.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46935_BALBc-1_X02_Y01_352_73\", \"ini\": 2182, \"clust\": 1596, \"rank\": 721, \"rankvar\": 954, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 644, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1064, \"cat-2\": \"Density: 19\", \"cat_2_index\": 118, \"group\": [1597.0, 640.0, 156.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46949_BALBc-1_X02_Y01_352_958\", \"ini\": 2181, \"clust\": 80, \"rank\": 942, \"rankvar\": 1900, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 645, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1065, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2061, \"group\": [81.0, 39.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47181_BALBc-1_X02_Y01_355_871\", \"ini\": 2180, \"clust\": 437, \"rank\": 356, \"rankvar\": 1092, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 646, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2273, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1209, \"group\": [437.0, 253.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47567_BALBc-1_X02_Y01_360_631\", \"ini\": 2179, \"clust\": 770, \"rank\": 876, \"rankvar\": 644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 647, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1904, \"cat-2\": \"Density: 27\", \"cat_2_index\": 912, \"group\": [771.0, 284.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47808_BALBc-1_X02_Y01_363_91\", \"ini\": 2178, \"clust\": 1205, \"rank\": 1324, \"rankvar\": 1708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 648, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 681, \"cat-2\": \"Density: 20\", \"cat_2_index\": 149, \"group\": [1204.0, 432.0, 100.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47901_BALBc-1_X02_Y01_364_890\", \"ini\": 2177, \"clust\": 1601, \"rank\": 832, \"rankvar\": 936, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 649, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1627, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1499, \"group\": [1601.0, 642.0, 156.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48689_BALBc-1_X02_Y01_374_207\", \"ini\": 2176, \"clust\": 17, \"rank\": 1652, \"rankvar\": 2430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 650, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 802, \"cat-2\": \"Density: 22\", \"cat_2_index\": 273, \"group\": [21.0, 15.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48761_BALBc-1_X02_Y01_375_164\", \"ini\": 2175, \"clust\": 969, \"rank\": 522, \"rankvar\": 14, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 651, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 35, \"cat-2\": \"Density: 22\", \"cat_2_index\": 274, \"group\": [969.0, 352.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48973_BALBc-1_X02_Y01_377_883\", \"ini\": 2174, \"clust\": 1042, \"rank\": 628, \"rankvar\": 200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 652, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2422, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1640, \"group\": [1044.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49252_BALBc-1_X02_Y01_380_635\", \"ini\": 2173, \"clust\": 1416, \"rank\": 1880, \"rankvar\": 2299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 653, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 803, \"cat-2\": \"Density: 27\", \"cat_2_index\": 913, \"group\": [1415.0, 558.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49290_BALBc-1_X02_Y01_381_186\", \"ini\": 2172, \"clust\": 833, \"rank\": 477, \"rankvar\": 1007, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 654, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 804, \"cat-2\": \"Density: 20\", \"cat_2_index\": 150, \"group\": [833.0, 298.0, 70.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49698_BALBc-1_X02_Y01_386_108\", \"ini\": 2171, \"clust\": 349, \"rank\": 752, \"rankvar\": 754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 655, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 682, \"cat-2\": \"Density: 23\", \"cat_2_index\": 384, \"group\": [348.0, 218.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50061_BALBc-1_X02_Y01_39_635\", \"ini\": 2170, \"clust\": 1500, \"rank\": 1751, \"rankvar\": 2294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 656, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1905, \"cat-2\": \"Density: 22\", \"cat_2_index\": 275, \"group\": [1501.0, 583.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50421_BALBc-1_X02_Y01_394_629\", \"ini\": 2169, \"clust\": 1474, \"rank\": 2195, \"rankvar\": 2221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 657, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2232, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1070, \"group\": [1474.0, 574.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50593_BALBc-1_X02_Y01_396_836\", \"ini\": 2168, \"clust\": 1074, \"rank\": 215, \"rankvar\": 1034, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 658, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1906, \"cat-2\": \"Density: 27\", \"cat_2_index\": 914, \"group\": [1075.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50814_BALBc-1_X02_Y01_399_570\", \"ini\": 2167, \"clust\": 978, \"rank\": 295, \"rankvar\": 60, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 659, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1907, \"cat-2\": \"Density: 27\", \"cat_2_index\": 915, \"group\": [977.0, 355.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50857_BALBc-1_X02_Y01_4_1000\", \"ini\": 2166, \"clust\": 865, \"rank\": 901, \"rankvar\": 536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 660, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1066, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1210, \"group\": [872.0, 315.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50898_BALBc-1_X02_Y01_40_107\", \"ini\": 2165, \"clust\": 1526, \"rank\": 1797, \"rankvar\": 2673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 661, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 805, \"cat-2\": \"Density: 18\", \"cat_2_index\": 93, \"group\": [1524.0, 588.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51368_BALBc-1_X02_Y01_405_327\", \"ini\": 2164, \"clust\": 817, \"rank\": 656, \"rankvar\": 1793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 662, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1908, \"cat-2\": \"Density: 25\", \"cat_2_index\": 631, \"group\": [818.0, 292.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51852_BALBc-1_X02_Y01_410_23\", \"ini\": 2163, \"clust\": 206, \"rank\": 663, \"rankvar\": 1606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 663, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1067, \"cat-2\": \"Density: 13\", \"cat_2_index\": 13, \"group\": [207.0, 136.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51999_BALBc-1_X02_Y01_412_155\", \"ini\": 2162, \"clust\": 926, \"rank\": 1062, \"rankvar\": 690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 664, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1541, \"cat-2\": \"Density: 26\", \"cat_2_index\": 757, \"group\": [925.0, 336.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52079_BALBc-1_X02_Y01_413_103\", \"ini\": 2161, \"clust\": 2013, \"rank\": 2079, \"rankvar\": 1988, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 665, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1542, \"cat-2\": \"Density: 26\", \"cat_2_index\": 758, \"group\": [2012.0, 890.0, 232.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52251_BALBc-1_X02_Y01_415_13\", \"ini\": 2160, \"clust\": 1913, \"rank\": 2621, \"rankvar\": 2818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 666, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1068, \"cat-2\": \"Density: 13\", \"cat_2_index\": 14, \"group\": [1917.0, 820.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52621_BALBc-1_X02_Y01_419_991\", \"ini\": 2159, \"clust\": 1130, \"rank\": 911, \"rankvar\": 784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 667, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1069, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1848, \"group\": [1130.0, 378.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52973_BALBc-1_X02_Y01_423_647\", \"ini\": 2158, \"clust\": 1400, \"rank\": 1864, \"rankvar\": 1882, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 668, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2233, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1211, \"group\": [1404.0, 554.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53049_BALBc-1_X02_Y01_424_66\", \"ini\": 2157, \"clust\": 518, \"rank\": 355, \"rankvar\": 597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 669, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 683, \"cat-2\": \"Density: 21\", \"cat_2_index\": 201, \"group\": [518.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53155_BALBc-1_X02_Y01_426_178\", \"ini\": 2156, \"clust\": 1646, \"rank\": 1300, \"rankvar\": 1748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 670, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1909, \"cat-2\": \"Density: 26\", \"cat_2_index\": 759, \"group\": [1646.0, 679.0, 171.0, 42.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53404_BALBc-1_X02_Y01_429_1005\", \"ini\": 2155, \"clust\": 1727, \"rank\": 2348, \"rankvar\": 1989, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 671, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 36, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2142, \"group\": [1727.0, 746.0, 195.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53535_BALBc-1_X02_Y01_43_792\", \"ini\": 2154, \"clust\": 1362, \"rank\": 2039, \"rankvar\": 1831, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 672, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1070, \"cat-2\": \"Density: 26\", \"cat_2_index\": 760, \"group\": [1363.0, 533.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53582_BALBc-1_X02_Y01_430_391\", \"ini\": 2153, \"clust\": 1467, \"rank\": 1940, \"rankvar\": 1286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 673, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2423, \"cat-2\": \"Density: 23\", \"cat_2_index\": 385, \"group\": [1468.0, 572.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53678_BALBc-1_X02_Y01_431_589\", \"ini\": 2152, \"clust\": 1148, \"rank\": 739, \"rankvar\": 692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 674, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2424, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1071, \"group\": [1147.0, 384.0, 81.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53767_BALBc-1_X02_Y01_432_601\", \"ini\": 2151, \"clust\": 662, \"rank\": 230, \"rankvar\": 122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 675, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2425, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1500, \"group\": [676.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53917_BALBc-1_X02_Y01_434_617\", \"ini\": 2150, \"clust\": 1753, \"rank\": 2312, \"rankvar\": 1029, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 676, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2234, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1212, \"group\": [1752.0, 762.0, 202.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54343_BALBc-1_X02_Y01_439_956\", \"ini\": 2149, \"clust\": 1531, \"rank\": 1729, \"rankvar\": 1780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 677, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 806, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2143, \"group\": [1538.0, 598.0, 145.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54799_BALBc-1_X02_Y01_444_988\", \"ini\": 2148, \"clust\": 2062, \"rank\": 1808, \"rankvar\": 1833, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 678, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1071, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2062, \"group\": [2065.0, 931.0, 250.0, 69.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54922_BALBc-1_X02_Y01_446_748\", \"ini\": 2147, \"clust\": 1492, \"rank\": 2320, \"rankvar\": 2511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 679, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1910, \"cat-2\": \"Density: 22\", \"cat_2_index\": 276, \"group\": [1493.0, 581.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55138_BALBc-1_X02_Y01_449_612\", \"ini\": 2146, \"clust\": 642, \"rank\": 5, \"rankvar\": 432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 680, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2426, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1369, \"group\": [637.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55205_BALBc-1_X02_Y01_45_516\", \"ini\": 2145, \"clust\": 1159, \"rank\": 456, \"rankvar\": 989, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 681, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2427, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1213, \"group\": [1160.0, 395.0, 84.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55330_BALBc-1_X02_Y01_451_348\", \"ini\": 2144, \"clust\": 1331, \"rank\": 1164, \"rankvar\": 2474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 682, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1072, \"cat-2\": \"Density: 25\", \"cat_2_index\": 632, \"group\": [1331.0, 517.0, 128.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55345_BALBc-1_X02_Y01_451_533\", \"ini\": 2143, \"clust\": 1469, \"rank\": 2416, \"rankvar\": 2513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 683, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1726, \"cat-2\": \"Density: 27\", \"cat_2_index\": 916, \"group\": [1471.0, 573.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55441_BALBc-1_X02_Y01_452_672\", \"ini\": 2142, \"clust\": 492, \"rank\": 310, \"rankvar\": 1254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 684, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2428, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1370, \"group\": [493.0, 267.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56039_BALBc-1_X02_Y01_46_538\", \"ini\": 2141, \"clust\": 41, \"rank\": 1230, \"rankvar\": 2705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 685, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2274, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1371, \"group\": [44.0, 24.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56270_BALBc-1_X02_Y01_462_394\", \"ini\": 2140, \"clust\": 1620, \"rank\": 1697, \"rankvar\": 2498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 686, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2429, \"cat-2\": \"Density: 25\", \"cat_2_index\": 633, \"group\": [1622.0, 656.0, 161.0, 39.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56966_BALBc-1_X02_Y01_470_546\", \"ini\": 2139, \"clust\": 495, \"rank\": 352, \"rankvar\": 739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 687, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2275, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1501, \"group\": [495.0, 268.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57291_BALBc-1_X02_Y01_474_753\", \"ini\": 2138, \"clust\": 1043, \"rank\": 514, \"rankvar\": 310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 688, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1073, \"cat-2\": \"Density: 22\", \"cat_2_index\": 277, \"group\": [1042.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57690_BALBc-1_X02_Y01_479_652\", \"ini\": 2137, \"clust\": 1399, \"rank\": 1896, \"rankvar\": 1710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 689, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1911, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1372, \"group\": [1398.0, 550.0, 138.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57946_BALBc-1_X02_Y01_482_291\", \"ini\": 2136, \"clust\": 1227, \"rank\": 1725, \"rankvar\": 2063, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 690, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1912, \"cat-2\": \"Density: 23\", \"cat_2_index\": 386, \"group\": [1227.0, 446.0, 105.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58045_BALBc-1_X02_Y01_483_527\", \"ini\": 2135, \"clust\": 1697, \"rank\": 1309, \"rankvar\": 998, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 691, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1727, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1373, \"group\": [1700.0, 723.0, 185.0, 49.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58865_BALBc-1_X02_Y01_493_104\", \"ini\": 2134, \"clust\": 2072, \"rank\": 1248, \"rankvar\": 1207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 692, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 684, \"cat-2\": \"Density: 24\", \"cat_2_index\": 491, \"group\": [2073.0, 937.0, 252.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59155_BALBc-1_X02_Y01_496_623\", \"ini\": 2133, \"clust\": 1754, \"rank\": 2803, \"rankvar\": 2753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 693, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2276, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1502, \"group\": [1753.0, 762.0, 202.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59197_BALBc-1_X02_Y01_497_131\", \"ini\": 2132, \"clust\": 580, \"rank\": 165, \"rankvar\": 44, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 694, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2277, \"cat-2\": \"Density: 25\", \"cat_2_index\": 634, \"group\": [580.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59416_BALBc-1_X02_Y01_499_768\", \"ini\": 2131, \"clust\": 1297, \"rank\": 1916, \"rankvar\": 1491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 695, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1074, \"cat-2\": \"Density: 26\", \"cat_2_index\": 761, \"group\": [1298.0, 496.0, 123.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59420_BALBc-1_X02_Y01_499_799\", \"ini\": 2130, \"clust\": 321, \"rank\": 481, \"rankvar\": 2409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 696, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1075, \"cat-2\": \"Density: 25\", \"cat_2_index\": 635, \"group\": [323.0, 202.0, 58.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59463_BALBc-1_X02_Y01_5_879\", \"ini\": 2129, \"clust\": 103, \"rank\": 1688, \"rankvar\": 812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 697, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2430, \"cat-2\": \"Density: 27\", \"cat_2_index\": 917, \"group\": [106.0, 59.0, 13.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59517_BALBc-1_X02_Y01_50_888\", \"ini\": 2128, \"clust\": 503, \"rank\": 414, \"rankvar\": 112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 698, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2431, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1214, \"group\": [503.0, 271.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59710_BALBc-1_X02_Y01_502_573\", \"ini\": 2127, \"clust\": 303, \"rank\": 478, \"rankvar\": 383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 699, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2278, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1641, \"group\": [306.0, 194.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59712_BALBc-1_X02_Y01_502_604\", \"ini\": 2126, \"clust\": 301, \"rank\": 805, \"rankvar\": 1542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 700, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2279, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1952, \"group\": [299.0, 191.0, 56.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59744_BALBc-1_X02_Y01_502_986\", \"ini\": 2125, \"clust\": 68, \"rank\": 1130, \"rankvar\": 133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 701, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1076, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2144, \"group\": [69.0, 31.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60337_BALBc-1_X02_Y01_51_580\", \"ini\": 2124, \"clust\": 355, \"rank\": 718, \"rankvar\": 843, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 702, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2280, \"cat-2\": \"Density: 27\", \"cat_2_index\": 918, \"group\": [354.0, 221.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60489_BALBc-1_X02_Y01_511_561\", \"ini\": 2123, \"clust\": 1341, \"rank\": 1434, \"rankvar\": 1473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 703, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1728, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1751, \"group\": [1342.0, 526.0, 132.0, 33.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61166_BALBc-1_X02_Y01_52_424\", \"ini\": 2122, \"clust\": 311, \"rank\": 849, \"rankvar\": 180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 704, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1077, \"cat-2\": \"Density: 24\", \"cat_2_index\": 492, \"group\": [313.0, 197.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61199_BALBc-1_X02_Y01_52_776\", \"ini\": 2121, \"clust\": 1651, \"rank\": 1197, \"rankvar\": 2167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 705, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2432, \"cat-2\": \"Density: 24\", \"cat_2_index\": 493, \"group\": [1652.0, 684.0, 174.0, 43.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61388_BALBc-1_X02_Y01_521_982\", \"ini\": 2120, \"clust\": 1172, \"rank\": 1305, \"rankvar\": 959, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 706, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2235, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1953, \"group\": [1173.0, 407.0, 91.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62377_BALBc-1_X02_Y01_533_933\", \"ini\": 2119, \"clust\": 1280, \"rank\": 1934, \"rankvar\": 1476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 707, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1913, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1752, \"group\": [1293.0, 491.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62863_BALBc-1_X02_Y01_54_847\", \"ini\": 2118, \"clust\": 957, \"rank\": 599, \"rankvar\": 870, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 708, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2485, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1072, \"group\": [957.0, 348.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62911_BALBc-1_X02_Y01_540_549\", \"ini\": 2117, \"clust\": 1470, \"rank\": 2696, \"rankvar\": 2729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 709, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2433, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1073, \"group\": [1469.0, 573.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62931_BALBc-1_X02_Y01_540_834\", \"ini\": 2116, \"clust\": 626, \"rank\": 22, \"rankvar\": 651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 710, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1914, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1503, \"group\": [624.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63142_BALBc-1_X02_Y01_543_585\", \"ini\": 2115, \"clust\": 1471, \"rank\": 2743, \"rankvar\": 2801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 711, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2281, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1215, \"group\": [1470.0, 573.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63191_BALBc-1_X02_Y01_543_972\", \"ini\": 2114, \"clust\": 96, \"rank\": 2314, \"rankvar\": 1912, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 712, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 807, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1753, \"group\": [95.0, 51.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63252_BALBc-1_X02_Y01_544_650\", \"ini\": 2113, \"clust\": 773, \"rank\": 763, \"rankvar\": 2212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 713, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2282, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1216, \"group\": [773.0, 285.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63692_BALBc-1_X02_Y01_55_1003\", \"ini\": 2112, \"clust\": 2649, \"rank\": 2461, \"rankvar\": 2507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 714, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1078, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1374, \"group\": [2663.0, 1122.0, 287.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63713_BALBc-1_X02_Y01_55_344\", \"ini\": 2111, \"clust\": 308, \"rank\": 564, \"rankvar\": 1285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 715, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1915, \"cat-2\": \"Density: 26\", \"cat_2_index\": 762, \"group\": [307.0, 195.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63995_BALBc-1_X02_Y01_552_987\", \"ini\": 2110, \"clust\": 261, \"rank\": 1428, \"rankvar\": 1622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 716, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1079, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1642, \"group\": [261.0, 162.0, 48.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64052_BALBc-1_X02_Y01_553_695\", \"ini\": 2109, \"clust\": 1056, \"rank\": 390, \"rankvar\": 257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 717, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2434, \"cat-2\": \"Density: 26\", \"cat_2_index\": 763, \"group\": [1057.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64156_BALBc-1_X02_Y01_555_138\", \"ini\": 2108, \"clust\": 927, \"rank\": 1115, \"rankvar\": 1787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 718, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 685, \"cat-2\": \"Density: 26\", \"cat_2_index\": 764, \"group\": [926.0, 336.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64283_BALBc-1_X02_Y01_556_902\", \"ini\": 2107, \"clust\": 1459, \"rank\": 2506, \"rankvar\": 2520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 719, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1916, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2145, \"group\": [1461.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64567_BALBc-1_X02_Y01_56_378\", \"ini\": 2106, \"clust\": 778, \"rank\": 666, \"rankvar\": 101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 720, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2435, \"cat-2\": \"Density: 26\", \"cat_2_index\": 765, \"group\": [776.0, 287.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64703_BALBc-1_X02_Y01_561_10\", \"ini\": 2105, \"clust\": 263, \"rank\": 1683, \"rankvar\": 1855, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 721, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1729, \"cat-2\": \"Density: 15\", \"cat_2_index\": 43, \"group\": [266.0, 167.0, 49.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64934_BALBc-1_X02_Y01_564_219\", \"ini\": 2104, \"clust\": 1615, \"rank\": 1160, \"rankvar\": 1414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 722, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2436, \"cat-2\": \"Density: 24\", \"cat_2_index\": 494, \"group\": [1623.0, 657.0, 162.0, 39.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65293_BALBc-1_X02_Y01_568_803\", \"ini\": 2103, \"clust\": 464, \"rank\": 437, \"rankvar\": 929, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 723, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1628, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1849, \"group\": [467.0, 261.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65644_BALBc-1_X02_Y01_572_683\", \"ini\": 2102, \"clust\": 767, \"rank\": 570, \"rankvar\": 1332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 724, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 686, \"cat-2\": \"Density: 25\", \"cat_2_index\": 636, \"group\": [768.0, 284.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66649_BALBc-1_X02_Y01_585_154\", \"ini\": 2101, \"clust\": 747, \"rank\": 457, \"rankvar\": 170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 725, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 687, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1217, \"group\": [747.0, 278.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67382_BALBc-1_X02_Y01_593_27\", \"ini\": 2100, \"clust\": 1393, \"rank\": 2045, \"rankvar\": 1045, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 726, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2519, \"cat-2\": \"Density: 15\", \"cat_2_index\": 44, \"group\": [1393.0, 547.0, 138.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67833_BALBc-1_X02_Y01_599_219\", \"ini\": 2099, \"clust\": 572, \"rank\": 138, \"rankvar\": 218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 727, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2437, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1074, \"group\": [573.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68344_BALBc-1_X02_Y01_604_682\", \"ini\": 2098, \"clust\": 921, \"rank\": 788, \"rankvar\": 747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 728, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1917, \"cat-2\": \"Density: 26\", \"cat_2_index\": 766, \"group\": [924.0, 335.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68440_BALBc-1_X02_Y01_605_807\", \"ini\": 2097, \"clust\": 1716, \"rank\": 1823, \"rankvar\": 2630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 729, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 808, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1643, \"group\": [1721.0, 741.0, 193.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68443_BALBc-1_X02_Y01_605_835\", \"ini\": 2096, \"clust\": 1649, \"rank\": 874, \"rankvar\": 1420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 730, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1918, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1504, \"group\": [1650.0, 682.0, 173.0, 43.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68542_BALBc-1_X02_Y01_607_143\", \"ini\": 2095, \"clust\": 1911, \"rank\": 1744, \"rankvar\": 2521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 731, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 688, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1218, \"group\": [1912.0, 819.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68978_BALBc-1_X02_Y01_611_516\", \"ini\": 2094, \"clust\": 1449, \"rank\": 2818, \"rankvar\": 2796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 732, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1919, \"cat-2\": \"Density: 25\", \"cat_2_index\": 637, \"group\": [1447.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69185_BALBc-1_X02_Y01_614_181\", \"ini\": 2093, \"clust\": 1692, \"rank\": 2019, \"rankvar\": 2601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 733, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 689, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1075, \"group\": [1692.0, 715.0, 182.0, 47.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70273_BALBc-1_X02_Y01_627_209\", \"ini\": 2092, \"clust\": 1708, \"rank\": 1299, \"rankvar\": 2223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 734, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1730, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1219, \"group\": [1708.0, 731.0, 189.0, 51.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70491_BALBc-1_X02_Y01_63_250\", \"ini\": 2091, \"clust\": 625, \"rank\": 27, \"rankvar\": 546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 735, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1920, \"cat-2\": \"Density: 24\", \"cat_2_index\": 495, \"group\": [623.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71443_BALBc-1_X02_Y01_640_235\", \"ini\": 2090, \"clust\": 1759, \"rank\": 2727, \"rankvar\": 2816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 736, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2438, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1644, \"group\": [1759.0, 766.0, 203.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71479_BALBc-1_X02_Y01_640_560\", \"ini\": 2089, \"clust\": 1435, \"rank\": 2497, \"rankvar\": 2515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 737, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2439, \"cat-2\": \"Density: 25\", \"cat_2_index\": 638, \"group\": [1435.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71570_BALBc-1_X02_Y01_642_167\", \"ini\": 2088, \"clust\": 191, \"rank\": 1000, \"rankvar\": 160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 738, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1731, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1076, \"group\": [191.0, 127.0, 42.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71733_BALBc-1_X02_Y01_643_984\", \"ini\": 2087, \"clust\": 107, \"rank\": 2606, \"rankvar\": 2400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 739, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2283, \"cat-2\": \"Density: 27\", \"cat_2_index\": 919, \"group\": [107.0, 60.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71734_BALBc-1_X02_Y01_643_999\", \"ini\": 2086, \"clust\": 483, \"rank\": 177, \"rankvar\": 708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 740, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1629, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1220, \"group\": [481.0, 265.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72068_BALBc-1_X02_Y01_648_425\", \"ini\": 2085, \"clust\": 1299, \"rank\": 2226, \"rankvar\": 2348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 741, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1921, \"cat-2\": \"Density: 22\", \"cat_2_index\": 278, \"group\": [1300.0, 498.0, 123.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72274_BALBc-1_X02_Y01_650_104\", \"ini\": 2084, \"clust\": 1962, \"rank\": 953, \"rankvar\": 1677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 742, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 690, \"cat-2\": \"Density: 27\", \"cat_2_index\": 920, \"group\": [1963.0, 848.0, 217.0, 58.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72329_BALBc-1_X02_Y01_650_882\", \"ini\": 2083, \"clust\": 82, \"rank\": 1500, \"rankvar\": 641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 743, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1732, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1754, \"group\": [85.0, 42.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72440_BALBc-1_X02_Y01_652_474\", \"ini\": 2082, \"clust\": 1455, \"rank\": 2772, \"rankvar\": 2782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 744, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 809, \"cat-2\": \"Density: 26\", \"cat_2_index\": 767, \"group\": [1453.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73095_BALBc-1_X02_Y01_66_970\", \"ini\": 2081, \"clust\": 2211, \"rank\": 2081, \"rankvar\": 1965, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 745, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1080, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1755, \"group\": [2211.0, 1017.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73185_BALBc-1_X02_Y01_661_141\", \"ini\": 2080, \"clust\": 1948, \"rank\": 1353, \"rankvar\": 1573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 746, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 810, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1221, \"group\": [1948.0, 839.0, 215.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73278_BALBc-1_X02_Y01_661_947\", \"ini\": 2079, \"clust\": 1483, \"rank\": 1759, \"rankvar\": 2201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 747, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1081, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1077, \"group\": [1483.0, 580.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73431_BALBc-1_X02_Y01_664_117\", \"ini\": 2078, \"clust\": 827, \"rank\": 606, \"rankvar\": 1302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 748, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1630, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1222, \"group\": [831.0, 296.0, 69.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73653_BALBc-1_X02_Y01_667_199\", \"ini\": 2077, \"clust\": 1307, \"rank\": 2517, \"rankvar\": 2516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 749, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1733, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1375, \"group\": [1307.0, 500.0, 123.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73761_BALBc-1_X02_Y01_668_692\", \"ini\": 2076, \"clust\": 69, \"rank\": 1092, \"rankvar\": 194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 750, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2486, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1223, \"group\": [70.0, 32.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74145_BALBc-1_X02_Y01_672_798\", \"ini\": 2075, \"clust\": 1495, \"rank\": 2250, \"rankvar\": 2512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 751, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1082, \"cat-2\": \"Density: 27\", \"cat_2_index\": 921, \"group\": [1495.0, 581.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74412_BALBc-1_X02_Y01_675_754\", \"ini\": 2074, \"clust\": 1712, \"rank\": 2580, \"rankvar\": 2731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 752, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1083, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1224, \"group\": [1713.0, 736.0, 192.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74523_BALBc-1_X02_Y01_677_25\", \"ini\": 2073, \"clust\": 1718, \"rank\": 1860, \"rankvar\": 1701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 753, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 811, \"cat-2\": \"Density: 16\", \"cat_2_index\": 57, \"group\": [1719.0, 739.0, 193.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74897_BALBc-1_X02_Y01_681_262\", \"ini\": 2072, \"clust\": 1249, \"rank\": 2145, \"rankvar\": 2236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 754, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1578, \"cat-2\": \"Density: 25\", \"cat_2_index\": 639, \"group\": [1251.0, 464.0, 111.0, 27.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75174_BALBc-1_X02_Y01_685_173\", \"ini\": 2071, \"clust\": 1625, \"rank\": 1506, \"rankvar\": 1716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 755, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 812, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1078, \"group\": [1625.0, 659.0, 163.0, 39.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75539_BALBc-1_X02_Y01_689_937\", \"ini\": 2070, \"clust\": 1373, \"rank\": 2317, \"rankvar\": 2388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 756, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1084, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1225, \"group\": [1374.0, 536.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75915_BALBc-1_X02_Y01_694_130\", \"ini\": 2069, \"clust\": 345, \"rank\": 176, \"rankvar\": 1618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 757, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1631, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1226, \"group\": [343.0, 216.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75959_BALBc-1_X02_Y01_694_670\", \"ini\": 2068, \"clust\": 1987, \"rank\": 1193, \"rankvar\": 433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 758, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2440, \"cat-2\": \"Density: 25\", \"cat_2_index\": 640, \"group\": [1988.0, 870.0, 225.0, 60.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76516_BALBc-1_X02_Y01_70_895\", \"ini\": 2067, \"clust\": 980, \"rank\": 533, \"rankvar\": 269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 759, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2441, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1376, \"group\": [981.0, 355.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77517_BALBc-1_X02_Y01_712_265\", \"ini\": 2066, \"clust\": 1332, \"rank\": 2442, \"rankvar\": 2727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 760, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 813, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1227, \"group\": [1333.0, 519.0, 129.0, 33.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77678_BALBc-1_X02_Y01_714_293\", \"ini\": 2065, \"clust\": 1700, \"rank\": 1246, \"rankvar\": 2624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 761, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 814, \"cat-2\": \"Density: 27\", \"cat_2_index\": 922, \"group\": [1701.0, 724.0, 186.0, 50.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77685_BALBc-1_X02_Y01_714_40\", \"ini\": 2064, \"clust\": 2014, \"rank\": 1420, \"rankvar\": 1894, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 762, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 815, \"cat-2\": \"Density: 23\", \"cat_2_index\": 387, \"group\": [2013.0, 891.0, 232.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77734_BALBc-1_X02_Y01_714_974\", \"ini\": 2063, \"clust\": 1276, \"rank\": 1886, \"rankvar\": 2320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 763, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2284, \"cat-2\": \"Density: 27\", \"cat_2_index\": 923, \"group\": [1280.0, 488.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78145_BALBc-1_X02_Y01_72_12\", \"ini\": 2062, \"clust\": 974, \"rank\": 526, \"rankvar\": 185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 764, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1922, \"cat-2\": \"Density: 13\", \"cat_2_index\": 15, \"group\": [975.0, 354.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78540_BALBc-1_X02_Y01_724_107\", \"ini\": 2061, \"clust\": 1915, \"rank\": 2026, \"rankvar\": 2499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 765, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 816, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1377, \"group\": [1914.0, 820.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79190_BALBc-1_X02_Y01_731_769\", \"ini\": 2060, \"clust\": 2800, \"rank\": 1701, \"rankvar\": 2078, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 766, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1085, \"cat-2\": \"Density: 27\", \"cat_2_index\": 924, \"group\": [2800.0, 1182.0, 303.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79300_BALBc-1_X02_Y01_733_29\", \"ini\": 2059, \"clust\": 163, \"rank\": 1102, \"rankvar\": 339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 767, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1543, \"cat-2\": \"Density: 20\", \"cat_2_index\": 151, \"group\": [166.0, 109.0, 32.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79428_BALBc-1_X02_Y01_734_627\", \"ini\": 2058, \"clust\": 1763, \"rank\": 2614, \"rankvar\": 2612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 768, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2236, \"cat-2\": \"Density: 25\", \"cat_2_index\": 641, \"group\": [1764.0, 769.0, 203.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79624_BALBc-1_X02_Y01_737_12\", \"ini\": 2057, \"clust\": 342, \"rank\": 561, \"rankvar\": 919, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 769, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 37, \"cat-2\": \"Density: 18\", \"cat_2_index\": 94, \"group\": [347.0, 217.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80316_BALBc-1_X02_Y01_745_334\", \"ini\": 2056, \"clust\": 1760, \"rank\": 2537, \"rankvar\": 2468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 770, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1923, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1079, \"group\": [1761.0, 768.0, 203.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80359_BALBc-1_X02_Y01_745_91\", \"ini\": 2055, \"clust\": 607, \"rank\": 51, \"rankvar\": 226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 771, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 817, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1756, \"group\": [605.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80734_BALBc-1_X02_Y01_75_602\", \"ini\": 2054, \"clust\": 1544, \"rank\": 1345, \"rankvar\": 1658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 772, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2285, \"cat-2\": \"Density: 26\", \"cat_2_index\": 768, \"group\": [1545.0, 601.0, 146.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81293_BALBc-1_X02_Y01_756_706\", \"ini\": 2053, \"clust\": 2051, \"rank\": 1127, \"rankvar\": 1779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 773, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2237, \"cat-2\": \"Density: 24\", \"cat_2_index\": 496, \"group\": [2054.0, 922.0, 244.0, 67.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81486_BALBc-1_X02_Y01_759_199\", \"ini\": 2052, \"clust\": 2011, \"rank\": 1634, \"rankvar\": 1810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 774, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1086, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1505, \"group\": [2015.0, 893.0, 233.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81590_BALBc-1_X02_Y01_76_583\", \"ini\": 2051, \"clust\": 814, \"rank\": 237, \"rankvar\": 2370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 775, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2286, \"cat-2\": \"Density: 25\", \"cat_2_index\": 642, \"group\": [814.0, 292.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81902_BALBc-1_X02_Y01_763_671\", \"ini\": 2050, \"clust\": 1441, \"rank\": 2669, \"rankvar\": 2466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 776, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 818, \"cat-2\": \"Density: 26\", \"cat_2_index\": 769, \"group\": [1440.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82140_BALBc-1_X02_Y01_767_163\", \"ini\": 2049, \"clust\": 2721, \"rank\": 1983, \"rankvar\": 2656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 777, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2287, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1954, \"group\": [2722.0, 1153.0, 299.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82308_BALBc-1_X02_Y01_768_99\", \"ini\": 2048, \"clust\": 457, \"rank\": 859, \"rankvar\": 913, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 778, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1544, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1645, \"group\": [458.0, 260.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82369_BALBc-1_X02_Y01_769_770\", \"ini\": 2047, \"clust\": 1675, \"rank\": 713, \"rankvar\": 1611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 779, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1632, \"cat-2\": \"Density: 25\", \"cat_2_index\": 643, \"group\": [1674.0, 701.0, 178.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83169_BALBc-1_X02_Y01_779_23\", \"ini\": 2046, \"clust\": 124, \"rank\": 1204, \"rankvar\": 1875, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 780, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1087, \"cat-2\": \"Density: 24\", \"cat_2_index\": 497, \"group\": [126.0, 77.0, 19.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83364_BALBc-1_X02_Y01_780_79\", \"ini\": 2045, \"clust\": 529, \"rank\": 126, \"rankvar\": 53, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 781, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1545, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1757, \"group\": [528.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84196_BALBc-1_X02_Y01_790_748\", \"ini\": 2044, \"clust\": 100, \"rank\": 2003, \"rankvar\": 2752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 782, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2487, \"cat-2\": \"Density: 24\", \"cat_2_index\": 498, \"group\": [103.0, 56.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84357_BALBc-1_X02_Y01_792_686\", \"ini\": 2043, \"clust\": 1300, \"rank\": 1615, \"rankvar\": 1202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 783, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 819, \"cat-2\": \"Density: 22\", \"cat_2_index\": 279, \"group\": [1301.0, 498.0, 123.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84582_BALBc-1_X02_Y01_795_344\", \"ini\": 2042, \"clust\": 1363, \"rank\": 1801, \"rankvar\": 563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 784, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2288, \"cat-2\": \"Density: 25\", \"cat_2_index\": 644, \"group\": [1367.0, 534.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84699_BALBc-1_X02_Y01_796_71\", \"ini\": 2041, \"clust\": 2118, \"rank\": 1479, \"rankvar\": 1821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 785, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2289, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1646, \"group\": [2123.0, 960.0, 255.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85322_BALBc-1_X02_Y01_802_832\", \"ini\": 2040, \"clust\": 1014, \"rank\": 343, \"rankvar\": 933, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 786, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1924, \"cat-2\": \"Density: 27\", \"cat_2_index\": 925, \"group\": [1013.0, 366.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85337_BALBc-1_X02_Y01_803_103\", \"ini\": 2039, \"clust\": 1316, \"rank\": 1413, \"rankvar\": 239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 787, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 943, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1850, \"group\": [1322.0, 512.0, 126.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85500_BALBc-1_X02_Y01_805_277\", \"ini\": 2038, \"clust\": 1355, \"rank\": 2633, \"rankvar\": 2404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 788, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2488, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1378, \"group\": [1356.0, 530.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85553_BALBc-1_X02_Y01_805_711\", \"ini\": 2037, \"clust\": 1177, \"rank\": 1030, \"rankvar\": 623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 789, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2442, \"cat-2\": \"Density: 23\", \"cat_2_index\": 388, \"group\": [1181.0, 413.0, 93.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85954_BALBc-1_X02_Y01_810_220\", \"ini\": 2036, \"clust\": 1333, \"rank\": 2299, \"rankvar\": 1851, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 790, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2290, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1647, \"group\": [1334.0, 520.0, 130.0, 33.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86607_BALBc-1_X02_Y01_818_617\", \"ini\": 2035, \"clust\": 1480, \"rank\": 2002, \"rankvar\": 1670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 791, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 820, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1080, \"group\": [1480.0, 577.0, 142.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86719_BALBc-1_X02_Y01_82_404\", \"ini\": 2034, \"clust\": 1643, \"rank\": 1622, \"rankvar\": 408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 792, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1088, \"cat-2\": \"Density: 26\", \"cat_2_index\": 770, \"group\": [1644.0, 677.0, 170.0, 42.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87009_BALBc-1_X02_Y01_822_96\", \"ini\": 2033, \"clust\": 1421, \"rank\": 1760, \"rankvar\": 634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 793, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1734, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2222, \"group\": [1425.0, 565.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87084_BALBc-1_X02_Y01_823_81\", \"ini\": 2032, \"clust\": 1210, \"rank\": 581, \"rankvar\": 2344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 794, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1735, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1851, \"group\": [1210.0, 436.0, 101.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87109_BALBc-1_X02_Y01_824_179\", \"ini\": 2031, \"clust\": 2722, \"rank\": 2113, \"rankvar\": 2779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 795, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2291, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1852, \"group\": [2723.0, 1153.0, 299.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87294_BALBc-1_X02_Y01_826_54\", \"ini\": 2030, \"clust\": 1734, \"rank\": 1802, \"rankvar\": 1289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 796, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1736, \"cat-2\": \"Density: 26\", \"cat_2_index\": 771, \"group\": [1737.0, 756.0, 200.0, 54.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87491_BALBc-1_X02_Y01_828_989\", \"ini\": 2029, \"clust\": 1395, \"rank\": 1936, \"rankvar\": 713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 797, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1925, \"cat-2\": \"Density: 26\", \"cat_2_index\": 772, \"group\": [1395.0, 548.0, 138.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87558_BALBc-1_X02_Y01_829_961\", \"ini\": 2028, \"clust\": 1317, \"rank\": 1372, \"rankvar\": 1774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 798, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 821, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1081, \"group\": [1317.0, 509.0, 125.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87735_BALBc-1_X02_Y01_831_448\", \"ini\": 2027, \"clust\": 1486, \"rank\": 1873, \"rankvar\": 2360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 799, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2443, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1379, \"group\": [1487.0, 581.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87925_BALBc-1_X02_Y01_834_297\", \"ini\": 2026, \"clust\": 1439, \"rank\": 2464, \"rankvar\": 1685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 800, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1926, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1380, \"group\": [1438.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88101_BALBc-1_X02_Y01_836_594\", \"ini\": 2025, \"clust\": 1609, \"rank\": 1221, \"rankvar\": 1316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 801, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1927, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1082, \"group\": [1609.0, 647.0, 158.0, 37.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88212_BALBc-1_X02_Y01_837_889\", \"ini\": 2024, \"clust\": 1218, \"rank\": 1598, \"rankvar\": 1375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 802, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1928, \"cat-2\": \"Density: 27\", \"cat_2_index\": 926, \"group\": [1222.0, 443.0, 102.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88228_BALBc-1_X02_Y01_838_199\", \"ini\": 2023, \"clust\": 898, \"rank\": 621, \"rankvar\": 987, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 803, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 822, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1955, \"group\": [901.0, 331.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88242_BALBc-1_X02_Y01_838_433\", \"ini\": 2022, \"clust\": 1608, \"rank\": 1653, \"rankvar\": 2037, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 804, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1737, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1228, \"group\": [1611.0, 647.0, 158.0, 37.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88501_BALBc-1_X02_Y01_840_810\", \"ini\": 2021, \"clust\": 200, \"rank\": 887, \"rankvar\": 1352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 805, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1929, \"cat-2\": \"Density: 23\", \"cat_2_index\": 389, \"group\": [203.0, 132.0, 42.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88562_BALBc-1_X02_Y01_841_513\", \"ini\": 2020, \"clust\": 566, \"rank\": 116, \"rankvar\": 1795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 806, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1930, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1956, \"group\": [566.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88609_BALBc-1_X02_Y01_842_154\", \"ini\": 2019, \"clust\": 2731, \"rank\": 1734, \"rankvar\": 2060, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 807, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1738, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2146, \"group\": [2732.0, 1160.0, 300.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88759_BALBc-1_X02_Y01_844_26\", \"ini\": 2018, \"clust\": 1604, \"rank\": 998, \"rankvar\": 1892, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 808, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2444, \"cat-2\": \"Density: 20\", \"cat_2_index\": 152, \"group\": [1607.0, 645.0, 157.0, 37.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88814_BALBc-1_X02_Y01_844_864\", \"ini\": 2017, \"clust\": 1482, \"rank\": 1633, \"rankvar\": 1373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 809, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1931, \"cat-2\": \"Density: 27\", \"cat_2_index\": 927, \"group\": [1485.0, 580.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88845_BALBc-1_X02_Y01_845_321\", \"ini\": 2016, \"clust\": 383, \"rank\": 189, \"rankvar\": 1963, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 810, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1739, \"cat-2\": \"Density: 27\", \"cat_2_index\": 928, \"group\": [387.0, 232.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89110_BALBc-1_X02_Y01_848_694\", \"ini\": 2015, \"clust\": 1616, \"rank\": 1034, \"rankvar\": 1983, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 811, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2238, \"cat-2\": \"Density: 22\", \"cat_2_index\": 280, \"group\": [1616.0, 651.0, 161.0, 39.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90038_BALBc-1_X02_Y01_859_742\", \"ini\": 2014, \"clust\": 1617, \"rank\": 1152, \"rankvar\": 1605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 812, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1932, \"cat-2\": \"Density: 26\", \"cat_2_index\": 773, \"group\": [1617.0, 651.0, 161.0, 39.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90134_BALBc-1_X02_Y01_86_851\", \"ini\": 2013, \"clust\": 788, \"rank\": 286, \"rankvar\": 2033, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 813, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 691, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1648, \"group\": [789.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91113_BALBc-1_X02_Y01_871_608\", \"ini\": 2012, \"clust\": 1396, \"rank\": 2038, \"rankvar\": 2111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 814, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1633, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1381, \"group\": [1396.0, 549.0, 138.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91313_BALBc-1_X02_Y01_874_166\", \"ini\": 2011, \"clust\": 2732, \"rank\": 1581, \"rankvar\": 2086, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 815, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1740, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2223, \"group\": [2733.0, 1161.0, 300.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91333_BALBc-1_X02_Y01_874_423\", \"ini\": 2010, \"clust\": 1448, \"rank\": 2589, \"rankvar\": 2403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 816, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1933, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1382, \"group\": [1449.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91389_BALBc-1_X02_Y01_875_273\", \"ini\": 2009, \"clust\": 1376, \"rank\": 1962, \"rankvar\": 2387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 817, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1934, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1853, \"group\": [1380.0, 539.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91790_BALBc-1_X02_Y01_88_353\", \"ini\": 2008, \"clust\": 295, \"rank\": 928, \"rankvar\": 148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 818, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1935, \"cat-2\": \"Density: 27\", \"cat_2_index\": 929, \"group\": [294.0, 186.0, 55.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91944_BALBc-1_X02_Y01_881_300\", \"ini\": 2007, \"clust\": 305, \"rank\": 532, \"rankvar\": 484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 819, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 823, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1383, \"group\": [305.0, 193.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92119_BALBc-1_X02_Y01_883_690\", \"ini\": 2006, \"clust\": 123, \"rank\": 1832, \"rankvar\": 2376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 820, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2445, \"cat-2\": \"Density: 24\", \"cat_2_index\": 499, \"group\": [127.0, 78.0, 19.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92234_BALBc-1_X02_Y01_885_483\", \"ini\": 2005, \"clust\": 2126, \"rank\": 1168, \"rankvar\": 359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 821, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1936, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2063, \"group\": [2127.0, 962.0, 256.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92639_BALBc-1_X02_Y01_89_950\", \"ini\": 2004, \"clust\": 52, \"rank\": 1224, \"rankvar\": 2642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 822, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 824, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1957, \"group\": [53.0, 25.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92716_BALBc-1_X02_Y01_890_939\", \"ini\": 2003, \"clust\": 724, \"rank\": 427, \"rankvar\": 26, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 823, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1089, \"cat-2\": \"Density: 25\", \"cat_2_index\": 645, \"group\": [729.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92826_BALBc-1_X02_Y01_892_493\", \"ini\": 2002, \"clust\": 1558, \"rank\": 1336, \"rankvar\": 2157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 824, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1937, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1758, \"group\": [1557.0, 610.0, 148.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92861_BALBc-1_X02_Y01_892_982\", \"ini\": 2001, \"clust\": 1969, \"rank\": 1089, \"rankvar\": 653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 825, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 825, \"cat-2\": \"Density: 26\", \"cat_2_index\": 774, \"group\": [1973.0, 858.0, 220.0, 59.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93022_BALBc-1_X02_Y01_894_971\", \"ini\": 2000, \"clust\": 1464, \"rank\": 2780, \"rankvar\": 2478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 826, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1090, \"cat-2\": \"Density: 26\", \"cat_2_index\": 775, \"group\": [1462.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93068_BALBc-1_X02_Y01_895_559\", \"ini\": 1999, \"clust\": 1198, \"rank\": 700, \"rankvar\": 1206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 827, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1938, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1854, \"group\": [1199.0, 429.0, 98.0, 23.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93323_BALBc-1_X02_Y01_898_909\", \"ini\": 1998, \"clust\": 744, \"rank\": 166, \"rankvar\": 459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 828, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1091, \"cat-2\": \"Density: 26\", \"cat_2_index\": 776, \"group\": [746.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93904_BALBc-1_X02_Y01_905_249\", \"ini\": 1997, \"clust\": 58, \"rank\": 2109, \"rankvar\": 2553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 829, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 826, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2147, \"group\": [57.0, 26.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93971_BALBc-1_X02_Y01_906_130\", \"ini\": 1996, \"clust\": 1312, \"rank\": 2612, \"rankvar\": 2695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 830, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1741, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2148, \"group\": [1313.0, 506.0, 124.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94356_BALBc-1_X02_Y01_910_484\", \"ini\": 1995, \"clust\": 1610, \"rank\": 1148, \"rankvar\": 1512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 831, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2446, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1759, \"group\": [1610.0, 647.0, 158.0, 37.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94868_BALBc-1_X02_Y01_917_430\", \"ini\": 1994, \"clust\": 1456, \"rank\": 2683, \"rankvar\": 2646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 832, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1939, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1229, \"group\": [1454.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95225_BALBc-1_X02_Y01_920_863\", \"ini\": 1993, \"clust\": 815, \"rank\": 601, \"rankvar\": 425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 833, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1940, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1384, \"group\": [815.0, 292.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95582_BALBc-1_X02_Y01_925_541\", \"ini\": 1992, \"clust\": 1567, \"rank\": 921, \"rankvar\": 1446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 834, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1941, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1855, \"group\": [1566.0, 618.0, 150.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95746_BALBc-1_X02_Y01_927_54\", \"ini\": 1991, \"clust\": 1225, \"rank\": 2108, \"rankvar\": 2591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 835, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1742, \"cat-2\": \"Density: 21\", \"cat_2_index\": 202, \"group\": [1228.0, 446.0, 105.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96191_BALBc-1_X02_Y01_932_492\", \"ini\": 1990, \"clust\": 1465, \"rank\": 2687, \"rankvar\": 2250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 836, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1942, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1958, \"group\": [1463.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96279_BALBc-1_X02_Y01_933_566\", \"ini\": 1989, \"clust\": 78, \"rank\": 1196, \"rankvar\": 1557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 837, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1092, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1506, \"group\": [79.0, 37.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96334_BALBc-1_X02_Y01_934_380\", \"ini\": 1988, \"clust\": 1517, \"rank\": 1639, \"rankvar\": 2268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 838, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1943, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1083, \"group\": [1518.0, 587.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96344_BALBc-1_X02_Y01_934_613\", \"ini\": 1987, \"clust\": 1350, \"rank\": 2689, \"rankvar\": 2720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 839, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2489, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1507, \"group\": [1351.0, 530.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96459_BALBc-1_X02_Y01_935_966\", \"ini\": 1986, \"clust\": 6, \"rank\": 1251, \"rankvar\": 1941, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 840, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1093, \"cat-2\": \"Density: 26\", \"cat_2_index\": 777, \"group\": [6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96674_BALBc-1_X02_Y01_939_112\", \"ini\": 1985, \"clust\": 1430, \"rank\": 2429, \"rankvar\": 2462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 841, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 944, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1760, \"group\": [1465.0, 570.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97053_BALBc-1_X02_Y01_943_180\", \"ini\": 1984, \"clust\": 1410, \"rank\": 1721, \"rankvar\": 2142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 842, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1944, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1959, \"group\": [1413.0, 557.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97263_BALBc-1_X02_Y01_945_522\", \"ini\": 1983, \"clust\": 1412, \"rank\": 2364, \"rankvar\": 2788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 843, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2292, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1960, \"group\": [1412.0, 557.0, 139.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97534_BALBc-1_X02_Y01_949_394\", \"ini\": 1982, \"clust\": 1591, \"rank\": 1183, \"rankvar\": 1122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 844, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1945, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1385, \"group\": [1594.0, 637.0, 155.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98149_BALBc-1_X02_Y01_956_248\", \"ini\": 1981, \"clust\": 500, \"rank\": 475, \"rankvar\": 275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 845, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 827, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1649, \"group\": [499.0, 269.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98727_BALBc-1_X02_Y01_963_190\", \"ini\": 1980, \"clust\": 725, \"rank\": 145, \"rankvar\": 210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 846, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 828, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2064, \"group\": [728.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98778_BALBc-1_X02_Y01_963_859\", \"ini\": 1979, \"clust\": 1443, \"rank\": 2356, \"rankvar\": 2395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 847, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1094, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1230, \"group\": [1442.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98945_BALBc-1_X02_Y01_966_166\", \"ini\": 1978, \"clust\": 1634, \"rank\": 954, \"rankvar\": 178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 848, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1946, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1856, \"group\": [1634.0, 667.0, 167.0, 40.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99117_BALBc-1_X02_Y01_968_271\", \"ini\": 1977, \"clust\": 1530, \"rank\": 1001, \"rankvar\": 1800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 849, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1947, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1650, \"group\": [1529.0, 591.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99166_BALBc-1_X02_Y01_968_799\", \"ini\": 1976, \"clust\": 1450, \"rank\": 2678, \"rankvar\": 2420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 850, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1948, \"cat-2\": \"Density: 27\", \"cat_2_index\": 930, \"group\": [1448.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99323_BALBc-1_X02_Y01_97_873\", \"ini\": 1975, \"clust\": 775, \"rank\": 518, \"rankvar\": 192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 851, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2447, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1651, \"group\": [778.0, 287.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99561_BALBc-1_X02_Y01_973_197\", \"ini\": 1974, \"clust\": 908, \"rank\": 889, \"rankvar\": 955, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 852, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 829, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2065, \"group\": [909.0, 332.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99777_BALBc-1_X02_Y01_975_860\", \"ini\": 1973, \"clust\": 353, \"rank\": 811, \"rankvar\": 1513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 853, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1949, \"cat-2\": \"Density: 26\", \"cat_2_index\": 778, \"group\": [355.0, 221.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100239_BALBc-1_X02_Y01_981_12\", \"ini\": 1972, \"clust\": 315, \"rank\": 507, \"rankvar\": 525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 854, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1950, \"cat-2\": \"Density: 13\", \"cat_2_index\": 16, \"group\": [316.0, 198.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100387_BALBc-1_X02_Y01_983_285\", \"ini\": 1971, \"clust\": 472, \"rank\": 71, \"rankvar\": 765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 855, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1951, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1508, \"group\": [474.0, 263.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100684_BALBc-1_X02_Y01_987_235\", \"ini\": 1970, \"clust\": 1304, \"rank\": 2436, \"rankvar\": 2740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 856, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 830, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1761, \"group\": [1303.0, 499.0, 123.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100729_BALBc-1_X02_Y01_987_776\", \"ini\": 1969, \"clust\": 1554, \"rank\": 1283, \"rankvar\": 990, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 857, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1743, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1084, \"group\": [1554.0, 608.0, 148.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101299_BALBc-1_X02_Y01_994_207\", \"ini\": 1968, \"clust\": 1627, \"rank\": 1878, \"rankvar\": 2392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 858, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1095, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1961, \"group\": [1628.0, 662.0, 164.0, 39.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101376_BALBc-1_X02_Y01_995_115\", \"ini\": 1967, \"clust\": 1587, \"rank\": 877, \"rankvar\": 1813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 859, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1952, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1386, \"group\": [1587.0, 633.0, 154.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101379_BALBc-1_X02_Y01_995_125\", \"ini\": 1966, \"clust\": 1437, \"rank\": 2730, \"rankvar\": 2794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 860, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1953, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1387, \"group\": [1434.0, 569.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101762_BALBc-1_X02_Y01_999_749\", \"ini\": 1965, \"clust\": 1287, \"rank\": 2638, \"rankvar\": 2658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 861, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1954, \"cat-2\": \"Density: 26\", \"cat_2_index\": 779, \"group\": [1286.0, 490.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-814_BALBc-1_X01_Y02_1000_470\", \"ini\": 1964, \"clust\": 2089, \"rank\": 1800, \"rankvar\": 1106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 862, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2520, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2542, \"group\": [2090.0, 945.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1027_BALBc-1_X01_Y02_1003_258\", \"ini\": 1963, \"clust\": 1878, \"rank\": 1966, \"rankvar\": 2234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 863, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2521, \"cat-2\": \"Density: 27\", \"cat_2_index\": 931, \"group\": [1878.0, 805.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1035_BALBc-1_X01_Y02_1003_353\", \"ini\": 1962, \"clust\": 419, \"rank\": 541, \"rankvar\": 312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 864, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 38, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2365, \"group\": [420.0, 244.0, 67.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1100_BALBc-1_X01_Y02_1004_310\", \"ini\": 1961, \"clust\": 561, \"rank\": 234, \"rankvar\": 1130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 865, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 39, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1652, \"group\": [563.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1200_BALBc-1_X01_Y02_1005_707\", \"ini\": 1960, \"clust\": 831, \"rank\": 513, \"rankvar\": 173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 866, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1096, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2503, \"group\": [828.0, 295.0, 69.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1322_BALBc-1_X01_Y02_1007_204\", \"ini\": 1959, \"clust\": 1902, \"rank\": 1513, \"rankvar\": 1693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 867, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 40, \"cat-2\": \"Density: 25\", \"cat_2_index\": 646, \"group\": [1903.0, 815.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1434_BALBc-1_X01_Y02_1008_667\", \"ini\": 1958, \"clust\": 2738, \"rank\": 2281, \"rankvar\": 2079, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 868, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 41, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2543, \"group\": [2736.0, 1164.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1462_BALBc-1_X01_Y02_1008_96\", \"ini\": 1957, \"clust\": 582, \"rank\": 143, \"rankvar\": 721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 869, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2522, \"cat-2\": \"Density: 26\", \"cat_2_index\": 780, \"group\": [582.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1655_BALBc-1_X01_Y02_1010_300\", \"ini\": 1956, \"clust\": 211, \"rank\": 1078, \"rankvar\": 1447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 870, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 42, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1762, \"group\": [210.0, 138.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1685_BALBc-1_X01_Y02_1010_638\", \"ini\": 1955, \"clust\": 508, \"rank\": 216, \"rankvar\": 1072, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 871, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1992, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2544, \"group\": [507.0, 272.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1696_BALBc-1_X01_Y02_1010_759\", \"ini\": 1954, \"clust\": 966, \"rank\": 555, \"rankvar\": 321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 872, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1097, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2424, \"group\": [967.0, 351.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1730_BALBc-1_X01_Y02_1011_325\", \"ini\": 1953, \"clust\": 1119, \"rank\": 743, \"rankvar\": 864, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 873, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 43, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2066, \"group\": [1119.0, 373.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1847_BALBc-1_X01_Y02_1012_897\", \"ini\": 1952, \"clust\": 720, \"rank\": 43, \"rankvar\": 162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 874, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1098, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2299, \"group\": [720.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1915_BALBc-1_X01_Y02_1013_615\", \"ini\": 1951, \"clust\": 2534, \"rank\": 2742, \"rankvar\": 2361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 875, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1993, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2651, \"group\": [2534.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2124_BALBc-1_X01_Y02_1016_391\", \"ini\": 1950, \"clust\": 2508, \"rank\": 1779, \"rankvar\": 1292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 876, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 44, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2773, \"group\": [2507.0, 1078.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2204_BALBc-1_X01_Y02_1017_547\", \"ini\": 1949, \"clust\": 244, \"rank\": 961, \"rankvar\": 978, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 877, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 45, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2652, \"group\": [244.0, 153.0, 46.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2235_BALBc-1_X01_Y02_1017_848\", \"ini\": 1948, \"clust\": 892, \"rank\": 760, \"rankvar\": 48, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 878, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1099, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2504, \"group\": [895.0, 329.0, 77.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2283_BALBc-1_X01_Y02_1018_442\", \"ini\": 1947, \"clust\": 2284, \"rank\": 2676, \"rankvar\": 2238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 879, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2523, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2733, \"group\": [2287.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2353_BALBc-1_X01_Y02_1019_489\", \"ini\": 1946, \"clust\": 1722, \"rank\": 2473, \"rankvar\": 2772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 880, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2524, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2734, \"group\": [1722.0, 742.0, 194.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2355_BALBc-1_X01_Y02_1019_507\", \"ini\": 1945, \"clust\": 2268, \"rank\": 2234, \"rankvar\": 1627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 881, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 46, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2593, \"group\": [2267.0, 1033.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2384_BALBc-1_X01_Y02_1019_836\", \"ini\": 1944, \"clust\": 2708, \"rank\": 1648, \"rankvar\": 2375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 882, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1634, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2594, \"group\": [2710.0, 1147.0, 296.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2557_BALBc-1_X01_Y02_1021_285\", \"ini\": 1943, \"clust\": 735, \"rank\": 104, \"rankvar\": 316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 883, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 47, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1388, \"group\": [734.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2591_BALBc-1_X01_Y02_1021_733\", \"ini\": 1942, \"clust\": 370, \"rank\": 410, \"rankvar\": 445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 884, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1100, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2425, \"group\": [371.0, 226.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2671_BALBc-1_X01_Y02_1022_672\", \"ini\": 1941, \"clust\": 506, \"rank\": 175, \"rankvar\": 1443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 885, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1101, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2505, \"group\": [504.0, 272.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2730_BALBc-1_X01_Y02_1023_412\", \"ini\": 1940, \"clust\": 877, \"rank\": 640, \"rankvar\": 1816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 886, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2525, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2696, \"group\": [879.0, 317.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2766_BALBc-1_X01_Y02_1023_779\", \"ini\": 1939, \"clust\": 2816, \"rank\": 1494, \"rankvar\": 504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 887, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1102, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2426, \"group\": [2817.0, 1196.0, 309.0, 82.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2827_BALBc-1_X01_Y02_1024_575\", \"ini\": 1938, \"clust\": 2278, \"rank\": 2796, \"rankvar\": 2280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 888, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 48, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2595, \"group\": [2278.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2833_BALBc-1_X01_Y02_1024_621\", \"ini\": 1937, \"clust\": 2729, \"rank\": 1669, \"rankvar\": 1705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 889, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 49, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2596, \"group\": [2729.0, 1158.0, 300.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2893_BALBc-1_X01_Y02_1025_369\", \"ini\": 1936, \"clust\": 2423, \"rank\": 1655, \"rankvar\": 1734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 890, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1635, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2506, \"group\": [2426.0, 1051.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2964_BALBc-1_X01_Y02_1026_323\", \"ini\": 1935, \"clust\": 2474, \"rank\": 1684, \"rankvar\": 565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 891, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 50, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1857, \"group\": [2475.0, 1063.0, 276.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3081_BALBc-1_X01_Y02_1027_596\", \"ini\": 1934, \"clust\": 612, \"rank\": 31, \"rankvar\": 98, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 892, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 51, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2653, \"group\": [610.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3102_BALBc-1_X01_Y02_1027_8\", \"ini\": 1933, \"clust\": 605, \"rank\": 168, \"rankvar\": 134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 893, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1636, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1763, \"group\": [646.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3134_BALBc-1_X01_Y02_1028_174\", \"ini\": 1932, \"clust\": 1954, \"rank\": 1264, \"rankvar\": 1493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 894, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1103, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1085, \"group\": [1962.0, 847.0, 216.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3301_BALBc-1_X01_Y02_103_274\", \"ini\": 1931, \"clust\": 53, \"rank\": 884, \"rankvar\": 2566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 895, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1104, \"cat-2\": \"Density: 25\", \"cat_2_index\": 647, \"group\": [54.0, 25.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3362_BALBc-1_X01_Y02_1030_122\", \"ini\": 1930, \"clust\": 1807, \"rank\": 2375, \"rankvar\": 2143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 896, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 692, \"cat-2\": \"Density: 24\", \"cat_2_index\": 500, \"group\": [1808.0, 791.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3370_BALBc-1_X01_Y02_1030_219\", \"ini\": 1929, \"clust\": 1909, \"rank\": 1918, \"rankvar\": 2709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 897, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1105, \"cat-2\": \"Density: 27\", \"cat_2_index\": 932, \"group\": [1910.0, 819.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3687_BALBc-1_X01_Y02_1034_469\", \"ini\": 1928, \"clust\": 2222, \"rank\": 2208, \"rankvar\": 2164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 898, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2526, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2735, \"group\": [2225.0, 1020.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3758_BALBc-1_X01_Y02_1035_352\", \"ini\": 1927, \"clust\": 638, \"rank\": 11, \"rankvar\": 274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 899, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1637, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2427, \"group\": [636.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3764_BALBc-1_X01_Y02_1035_406\", \"ini\": 1926, \"clust\": 2424, \"rank\": 2287, \"rankvar\": 2073, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 900, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1638, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2597, \"group\": [2424.0, 1051.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4026_BALBc-1_X01_Y02_1038_521\", \"ini\": 1925, \"clust\": 2812, \"rank\": 1941, \"rankvar\": 474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 901, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 52, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2736, \"group\": [2813.0, 1193.0, 308.0, 82.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4053_BALBc-1_X01_Y02_1038_905\", \"ini\": 1924, \"clust\": 2761, \"rank\": 2122, \"rankvar\": 2439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 902, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1744, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2149, \"group\": [2763.0, 1172.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4056_BALBc-1_X01_Y02_1038_930\", \"ini\": 1923, \"clust\": 687, \"rank\": 229, \"rankvar\": 918, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 903, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1106, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1509, \"group\": [686.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4110_BALBc-1_X01_Y02_1039_579\", \"ini\": 1922, \"clust\": 2137, \"rank\": 1812, \"rankvar\": 744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 904, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 53, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2598, \"group\": [2137.0, 968.0, 258.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4115_BALBc-1_X01_Y02_1039_648\", \"ini\": 1921, \"clust\": 2693, \"rank\": 1352, \"rankvar\": 2145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 905, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1107, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2428, \"group\": [2694.0, 1144.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4300_BALBc-1_X01_Y02_1041_266\", \"ini\": 1920, \"clust\": 2667, \"rank\": 1741, \"rankvar\": 2191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 906, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 54, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1231, \"group\": [2667.0, 1126.0, 289.0, 79.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4313_BALBc-1_X01_Y02_1041_433\", \"ini\": 1919, \"clust\": 2741, \"rank\": 2199, \"rankvar\": 2059, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 907, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2527, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2697, \"group\": [2744.0, 1167.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4822_BALBc-1_X01_Y02_1047_721\", \"ini\": 1918, \"clust\": 1185, \"rank\": 949, \"rankvar\": 510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 908, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1108, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2507, \"group\": [1186.0, 417.0, 94.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4884_BALBc-1_X01_Y02_1048_476\", \"ini\": 1917, \"clust\": 336, \"rank\": 660, \"rankvar\": 1128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 909, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 55, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2819, \"group\": [337.0, 212.0, 61.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4887_BALBc-1_X01_Y02_1048_504\", \"ini\": 1916, \"clust\": 1047, \"rank\": 650, \"rankvar\": 518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 910, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 56, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2820, \"group\": [1048.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4912_BALBc-1_X01_Y02_1048_876\", \"ini\": 1915, \"clust\": 256, \"rank\": 445, \"rankvar\": 1164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 911, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1109, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2224, \"group\": [256.0, 160.0, 47.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5193_BALBc-1_X01_Y02_1051_618\", \"ini\": 1914, \"clust\": 2728, \"rank\": 1445, \"rankvar\": 1631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 912, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1110, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2366, \"group\": [2731.0, 1159.0, 300.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5224_BALBc-1_X01_Y02_1052_107\", \"ini\": 1913, \"clust\": 1112, \"rank\": 277, \"rankvar\": 1054, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 913, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 693, \"cat-2\": \"Density: 23\", \"cat_2_index\": 390, \"group\": [1112.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5304_BALBc-1_X01_Y02_1053_18\", \"ini\": 1912, \"clust\": 1680, \"rank\": 1538, \"rankvar\": 2226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 914, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2448, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1232, \"group\": [1680.0, 705.0, 179.0, 46.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5328_BALBc-1_X01_Y02_1053_572\", \"ini\": 1911, \"clust\": 2087, \"rank\": 1746, \"rankvar\": 590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 915, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 57, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2599, \"group\": [2092.0, 945.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5445_BALBc-1_X01_Y02_1055_145\", \"ini\": 1910, \"clust\": 1982, \"rank\": 1569, \"rankvar\": 1547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 916, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 58, \"cat-2\": \"Density: 23\", \"cat_2_index\": 391, \"group\": [1983.0, 866.0, 223.0, 60.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5547_BALBc-1_X01_Y02_1056_251\", \"ini\": 1909, \"clust\": 1958, \"rank\": 1548, \"rankvar\": 764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 917, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1560, \"cat-2\": \"Density: 27\", \"cat_2_index\": 933, \"group\": [1957.0, 845.0, 216.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5577_BALBc-1_X01_Y02_1056_535\", \"ini\": 1908, \"clust\": 676, \"rank\": 225, \"rankvar\": 104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 918, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 59, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2698, \"group\": [672.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5586_BALBc-1_X01_Y02_1056_690\", \"ini\": 1907, \"clust\": 381, \"rank\": 332, \"rankvar\": 1071, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 919, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1111, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2429, \"group\": [382.0, 231.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5602_BALBc-1_X01_Y02_1056_84\", \"ini\": 1906, \"clust\": 571, \"rank\": 558, \"rankvar\": 24, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 920, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 694, \"cat-2\": \"Density: 26\", \"cat_2_index\": 781, \"group\": [574.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5707_BALBc-1_X01_Y02_1058_294\", \"ini\": 1905, \"clust\": 862, \"rank\": 664, \"rankvar\": 306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 921, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 60, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1510, \"group\": [863.0, 312.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5739_BALBc-1_X01_Y02_1058_669\", \"ini\": 1904, \"clust\": 2669, \"rank\": 1158, \"rankvar\": 532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 922, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1112, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2654, \"group\": [2670.0, 1129.0, 290.0, 79.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5833_BALBc-1_X01_Y02_1059_848\", \"ini\": 1903, \"clust\": 1190, \"rank\": 609, \"rankvar\": 295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 923, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1113, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2300, \"group\": [1190.0, 421.0, 96.0, 23.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6281_BALBc-1_X01_Y02_1064_432\", \"ini\": 1902, \"clust\": 2779, \"rank\": 2500, \"rankvar\": 2332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 924, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 61, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2737, \"group\": [2780.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6293_BALBc-1_X01_Y02_1064_504\", \"ini\": 1901, \"clust\": 2510, \"rank\": 1782, \"rankvar\": 512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 925, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 62, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2811, \"group\": [2509.0, 1078.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6437_BALBc-1_X01_Y02_1066_473\", \"ini\": 1900, \"clust\": 2138, \"rank\": 1498, \"rankvar\": 1064, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 926, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 63, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2821, \"group\": [2138.0, 968.0, 258.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6448_BALBc-1_X01_Y02_1066_590\", \"ini\": 1899, \"clust\": 633, \"rank\": 28, \"rankvar\": 343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 927, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 64, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2655, \"group\": [640.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6527_BALBc-1_X01_Y02_1067_691\", \"ini\": 1898, \"clust\": 1974, \"rank\": 902, \"rankvar\": 544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 928, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1114, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2430, \"group\": [1974.0, 859.0, 221.0, 59.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6588_BALBc-1_X01_Y02_1068_448\", \"ini\": 1897, \"clust\": 2132, \"rank\": 1215, \"rankvar\": 749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 929, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 65, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2812, \"group\": [2131.0, 966.0, 258.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6686_BALBc-1_X01_Y02_1069_459\", \"ini\": 1896, \"clust\": 598, \"rank\": 363, \"rankvar\": 85, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 930, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 66, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2793, \"group\": [597.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6811_BALBc-1_X01_Y02_1070_150\", \"ini\": 1895, \"clust\": 959, \"rank\": 503, \"rankvar\": 1398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 931, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1115, \"cat-2\": \"Density: 23\", \"cat_2_index\": 392, \"group\": [961.0, 348.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7004_BALBc-1_X01_Y02_1072_408\", \"ini\": 1894, \"clust\": 852, \"rank\": 838, \"rankvar\": 2237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 932, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 619, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2794, \"group\": [856.0, 310.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7308_BALBc-1_X01_Y02_1075_797\", \"ini\": 1893, \"clust\": 583, \"rank\": 202, \"rankvar\": 320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 933, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1116, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2301, \"group\": [583.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7360_BALBc-1_X01_Y02_1076_505\", \"ini\": 1892, \"clust\": 1394, \"rank\": 2248, \"rankvar\": 1061, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 934, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 67, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2795, \"group\": [1394.0, 547.0, 138.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7375_BALBc-1_X01_Y02_1076_614\", \"ini\": 1891, \"clust\": 555, \"rank\": 146, \"rankvar\": 521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 935, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1117, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2656, \"group\": [554.0, 275.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7388_BALBc-1_X01_Y02_1076_772\", \"ini\": 1890, \"clust\": 2707, \"rank\": 1638, \"rankvar\": 1564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 936, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1118, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2367, \"group\": [2713.0, 1147.0, 296.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7429_BALBc-1_X01_Y02_1077_283\", \"ini\": 1889, \"clust\": 420, \"rank\": 694, \"rankvar\": 41, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 937, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 68, \"cat-2\": \"Density: 26\", \"cat_2_index\": 782, \"group\": [421.0, 244.0, 67.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7521_BALBc-1_X01_Y02_1078_434\", \"ini\": 1888, \"clust\": 691, \"rank\": 312, \"rankvar\": 482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 938, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 69, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2796, \"group\": [690.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7604_BALBc-1_X01_Y02_1079_662\", \"ini\": 1887, \"clust\": 1717, \"rank\": 2365, \"rankvar\": 2735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 939, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1119, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2431, \"group\": [1720.0, 740.0, 193.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7606_BALBc-1_X01_Y02_1079_678\", \"ini\": 1886, \"clust\": 1732, \"rank\": 1850, \"rankvar\": 1755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 940, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1639, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2432, \"group\": [1733.0, 752.0, 199.0, 54.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7804_BALBc-1_X01_Y02_1081_554\", \"ini\": 1885, \"clust\": 895, \"rank\": 1036, \"rankvar\": 196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 941, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 70, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2699, \"group\": [898.0, 330.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7953_BALBc-1_X01_Y02_1083_574\", \"ini\": 1884, \"clust\": 2620, \"rank\": 1854, \"rankvar\": 1296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 942, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 71, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2508, \"group\": [2620.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8179_BALBc-1_X01_Y02_1086_62\", \"ini\": 1883, \"clust\": 647, \"rank\": 261, \"rankvar\": 109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 943, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1640, \"cat-2\": \"Density: 27\", \"cat_2_index\": 934, \"group\": [651.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8323_BALBc-1_X01_Y02_1088_532\", \"ini\": 1882, \"clust\": 454, \"rank\": 600, \"rankvar\": 261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 944, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 72, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2774, \"group\": [453.0, 259.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8368_BALBc-1_X01_Y02_1089_10\", \"ini\": 1881, \"clust\": 736, \"rank\": 29, \"rankvar\": 211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 945, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 695, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1233, \"group\": [735.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8395_BALBc-1_X01_Y02_1089_383\", \"ini\": 1880, \"clust\": 692, \"rank\": 307, \"rankvar\": 647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 946, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 620, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2600, \"group\": [691.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8610_BALBc-1_X01_Y02_1091_207\", \"ini\": 1879, \"clust\": 277, \"rank\": 1137, \"rankvar\": 1159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 947, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1120, \"cat-2\": \"Density: 22\", \"cat_2_index\": 281, \"group\": [276.0, 176.0, 52.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8618_BALBc-1_X01_Y02_1091_325\", \"ini\": 1878, \"clust\": 938, \"rank\": 775, \"rankvar\": 1075, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 948, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1641, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1962, \"group\": [936.0, 340.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8711_BALBc-1_X01_Y02_1092_593\", \"ini\": 1877, \"clust\": 2529, \"rank\": 2323, \"rankvar\": 1451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 949, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 73, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2738, \"group\": [2527.0, 1084.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8860_BALBc-1_X01_Y02_1094_414\", \"ini\": 1876, \"clust\": 2774, \"rank\": 2101, \"rankvar\": 1598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 950, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 74, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2775, \"group\": [2773.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8911_BALBc-1_X01_Y02_1095_127\", \"ini\": 1875, \"clust\": 465, \"rank\": 280, \"rankvar\": 980, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 951, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1121, \"cat-2\": \"Density: 24\", \"cat_2_index\": 501, \"group\": [465.0, 261.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8950_BALBc-1_X01_Y02_1095_640\", \"ini\": 1874, \"clust\": 721, \"rank\": 205, \"rankvar\": 65, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 952, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1122, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2700, \"group\": [721.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9039_BALBc-1_X01_Y02_1096_780\", \"ini\": 1873, \"clust\": 1246, \"rank\": 963, \"rankvar\": 928, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 953, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 945, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2225, \"group\": [1246.0, 460.0, 109.0, 26.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9116_BALBc-1_X01_Y02_1097_820\", \"ini\": 1872, \"clust\": 2782, \"rank\": 2414, \"rankvar\": 2216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 954, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1123, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2226, \"group\": [2782.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9237_BALBc-1_X01_Y02_1099_474\", \"ini\": 1871, \"clust\": 589, \"rank\": 274, \"rankvar\": 15, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 955, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 75, \"cat-2\": \"Density: 52\", \"cat_2_index\": 2825, \"group\": [587.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9410_BALBc-1_X01_Y02_110_501\", \"ini\": 1870, \"clust\": 481, \"rank\": 109, \"rankvar\": 1539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 956, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2449, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1086, \"group\": [484.0, 265.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9518_BALBc-1_X01_Y02_1100_80\", \"ini\": 1869, \"clust\": 1572, \"rank\": 1132, \"rankvar\": 2486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 957, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1955, \"cat-2\": \"Density: 24\", \"cat_2_index\": 502, \"group\": [1572.0, 623.0, 151.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9617_BALBc-1_X01_Y02_1102_229\", \"ini\": 1868, \"clust\": 2668, \"rank\": 1874, \"rankvar\": 1318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 958, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1561, \"cat-2\": \"Density: 26\", \"cat_2_index\": 783, \"group\": [2668.0, 1127.0, 289.0, 79.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9723_BALBc-1_X01_Y02_1103_562\", \"ini\": 1867, \"clust\": 678, \"rank\": 384, \"rankvar\": 271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 959, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 76, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2545, \"group\": [677.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9784_BALBc-1_X01_Y02_1104_292\", \"ini\": 1866, \"clust\": 2680, \"rank\": 1340, \"rankvar\": 2009, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 960, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2528, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1511, \"group\": [2683.0, 1140.0, 293.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9793_BALBc-1_X01_Y02_1104_427\", \"ini\": 1865, \"clust\": 859, \"rank\": 824, \"rankvar\": 347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 961, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 77, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2797, \"group\": [857.0, 311.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9800_BALBc-1_X01_Y02_1104_504\", \"ini\": 1864, \"clust\": 2509, \"rank\": 2020, \"rankvar\": 795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 962, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 78, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2798, \"group\": [2508.0, 1078.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9883_BALBc-1_X01_Y02_1105_447\", \"ini\": 1863, \"clust\": 396, \"rank\": 1040, \"rankvar\": 143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 963, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 79, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2813, \"group\": [399.0, 238.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10036_BALBc-1_X01_Y02_1107_379\", \"ini\": 1862, \"clust\": 1723, \"rank\": 2169, \"rankvar\": 2075, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 964, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 80, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2368, \"group\": [1723.0, 742.0, 194.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10115_BALBc-1_X01_Y02_1108_313\", \"ini\": 1861, \"clust\": 573, \"rank\": 318, \"rankvar\": 231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 965, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2529, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1389, \"group\": [571.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10188_BALBc-1_X01_Y02_1109_186\", \"ini\": 1860, \"clust\": 1050, \"rank\": 463, \"rankvar\": 770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 966, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1124, \"cat-2\": \"Density: 20\", \"cat_2_index\": 153, \"group\": [1051.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10290_BALBc-1_X01_Y02_111_587\", \"ini\": 1859, \"clust\": 501, \"rank\": 263, \"rankvar\": 1186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 967, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1125, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1087, \"group\": [500.0, 269.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10354_BALBc-1_X01_Y02_1110_402\", \"ini\": 1858, \"clust\": 639, \"rank\": 1, \"rankvar\": 300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 968, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 81, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2546, \"group\": [634.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10516_BALBc-1_X01_Y02_1112_616\", \"ini\": 1857, \"clust\": 1189, \"rank\": 685, \"rankvar\": 2088, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 969, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1126, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2739, \"group\": [1194.0, 424.0, 96.0, 23.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10520_BALBc-1_X01_Y02_1112_667\", \"ini\": 1856, \"clust\": 2822, \"rank\": 2009, \"rankvar\": 2029, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 970, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 82, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2369, \"group\": [2822.0, 1201.0, 312.0, 83.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10730_BALBc-1_X01_Y02_1115_472\", \"ini\": 1855, \"clust\": 762, \"rank\": 360, \"rankvar\": 2, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 971, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 83, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2814, \"group\": [762.0, 280.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10887_BALBc-1_X01_Y02_1117_527\", \"ini\": 1854, \"clust\": 896, \"rank\": 932, \"rankvar\": 237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 972, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 84, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2601, \"group\": [896.0, 330.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10916_BALBc-1_X01_Y02_1117_796\", \"ini\": 1853, \"clust\": 2701, \"rank\": 995, \"rankvar\": 2742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 973, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1127, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1963, \"group\": [2700.0, 1144.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10974_BALBc-1_X01_Y02_1118_646\", \"ini\": 1852, \"clust\": 257, \"rank\": 544, \"rankvar\": 603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 974, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 85, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2602, \"group\": [257.0, 160.0, 47.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11010_BALBc-1_X01_Y02_1119_25\", \"ini\": 1851, \"clust\": 101, \"rank\": 2271, \"rankvar\": 2196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 975, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 696, \"cat-2\": \"Density: 27\", \"cat_2_index\": 935, \"group\": [101.0, 55.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11155_BALBc-1_X01_Y02_1120_361\", \"ini\": 1850, \"clust\": 707, \"rank\": 135, \"rankvar\": 1334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 976, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 86, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1964, \"group\": [705.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11235_BALBc-1_X01_Y02_1121_237\", \"ini\": 1849, \"clust\": 467, \"rank\": 852, \"rankvar\": 80, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 977, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1562, \"cat-2\": \"Density: 23\", \"cat_2_index\": 393, \"group\": [468.0, 262.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11425_BALBc-1_X01_Y02_1123_682\", \"ini\": 1848, \"clust\": 499, \"rank\": 498, \"rankvar\": 515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 978, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1642, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2509, \"group\": [501.0, 270.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11501_BALBc-1_X01_Y02_1124_589\", \"ini\": 1847, \"clust\": 2784, \"rank\": 2367, \"rankvar\": 1996, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 979, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1128, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2433, \"group\": [2785.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11783_BALBc-1_X01_Y02_1128_375\", \"ini\": 1846, \"clust\": 2511, \"rank\": 1811, \"rankvar\": 283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 980, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 87, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2227, \"group\": [2510.0, 1078.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11789_BALBc-1_X01_Y02_1128_446\", \"ini\": 1845, \"clust\": 2078, \"rank\": 1374, \"rankvar\": 520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 981, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 88, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2776, \"group\": [2079.0, 943.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11818_BALBc-1_X01_Y02_1128_778\", \"ini\": 1844, \"clust\": 2480, \"rank\": 1699, \"rankvar\": 778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 982, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1129, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2302, \"group\": [2481.0, 1069.0, 279.0, 76.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11861_BALBc-1_X01_Y02_1129_519\", \"ini\": 1843, \"clust\": 394, \"rank\": 815, \"rankvar\": 892, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 983, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1546, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2815, \"group\": [395.0, 237.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11949_BALBc-1_X01_Y02_113_746\", \"ini\": 1842, \"clust\": 2718, \"rank\": 1775, \"rankvar\": 2011, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 984, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1130, \"cat-2\": \"Density: 26\", \"cat_2_index\": 784, \"group\": [2721.0, 1152.0, 298.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12248_BALBc-1_X01_Y02_1133_543\", \"ini\": 1841, \"clust\": 2714, \"rank\": 1702, \"rankvar\": 1099, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 985, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1547, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2547, \"group\": [2714.0, 1148.0, 297.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12302_BALBc-1_X01_Y02_1134_424\", \"ini\": 1840, \"clust\": 2056, \"rank\": 1287, \"rankvar\": 45, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 986, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2530, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2510, \"group\": [2056.0, 924.0, 246.0, 68.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12338_BALBc-1_X01_Y02_1135_117\", \"ini\": 1839, \"clust\": 1766, \"rank\": 1159, \"rankvar\": 1272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 987, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1131, \"cat-2\": \"Density: 25\", \"cat_2_index\": 648, \"group\": [1767.0, 771.0, 204.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12370_BALBc-1_X01_Y02_1135_398\", \"ini\": 1838, \"clust\": 2662, \"rank\": 2343, \"rankvar\": 1805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 988, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2531, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2303, \"group\": [2660.0, 1119.0, 286.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12399_BALBc-1_X01_Y02_1135_711\", \"ini\": 1837, \"clust\": 382, \"rank\": 499, \"rankvar\": 838, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 989, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1132, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2511, \"group\": [383.0, 231.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12520_BALBc-1_X01_Y02_1137_482\", \"ini\": 1836, \"clust\": 682, \"rank\": 224, \"rankvar\": 264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 990, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 89, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2701, \"group\": [685.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13075_BALBc-1_X01_Y02_1143_338\", \"ini\": 1835, \"clust\": 1153, \"rank\": 1022, \"rankvar\": 681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 991, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2532, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1234, \"group\": [1153.0, 389.0, 83.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13103_BALBc-1_X01_Y02_1143_664\", \"ini\": 1834, \"clust\": 2823, \"rank\": 1810, \"rankvar\": 1236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 992, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 90, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2304, \"group\": [2823.0, 1201.0, 312.0, 83.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13162_BALBc-1_X01_Y02_1144_457\", \"ini\": 1833, \"clust\": 558, \"rank\": 325, \"rankvar\": 16, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 993, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 91, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2799, \"group\": [557.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13164_BALBc-1_X01_Y02_1144_469\", \"ini\": 1832, \"clust\": 901, \"rank\": 868, \"rankvar\": 35, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 994, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 92, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2702, \"group\": [905.0, 331.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13317_BALBc-1_X01_Y02_1146_638\", \"ini\": 1831, \"clust\": 164, \"rank\": 1129, \"rankvar\": 272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 995, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 93, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2305, \"group\": [164.0, 107.0, 32.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13467_BALBc-1_X01_Y02_1148_565\", \"ini\": 1830, \"clust\": 669, \"rank\": 106, \"rankvar\": 52, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 996, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1133, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2434, \"group\": [666.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13517_BALBc-1_X01_Y02_1149_362\", \"ini\": 1829, \"clust\": 180, \"rank\": 615, \"rankvar\": 1190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 997, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 94, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1653, \"group\": [184.0, 122.0, 39.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13825_BALBc-1_X01_Y02_1152_206\", \"ini\": 1828, \"clust\": 577, \"rank\": 351, \"rankvar\": 88, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 998, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2533, \"cat-2\": \"Density: 23\", \"cat_2_index\": 394, \"group\": [579.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14075_BALBc-1_X01_Y02_1155_606\", \"ini\": 1827, \"clust\": 1192, \"rank\": 651, \"rankvar\": 1624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 999, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1134, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2228, \"group\": [1192.0, 422.0, 96.0, 23.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14139_BALBc-1_X01_Y02_1156_505\", \"ini\": 1826, \"clust\": 2497, \"rank\": 1921, \"rankvar\": 1046, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1000, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1548, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2603, \"group\": [2496.0, 1076.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14194_BALBc-1_X01_Y02_1157_257\", \"ini\": 1825, \"clust\": 654, \"rank\": 422, \"rankvar\": 17, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1001, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1135, \"cat-2\": \"Density: 23\", \"cat_2_index\": 395, \"group\": [654.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14333_BALBc-1_X01_Y02_1158_98\", \"ini\": 1824, \"clust\": 971, \"rank\": 1051, \"rankvar\": 120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1002, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1136, \"cat-2\": \"Density: 22\", \"cat_2_index\": 282, \"group\": [972.0, 353.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14461_BALBc-1_X01_Y02_116_804\", \"ini\": 1823, \"clust\": 1795, \"rank\": 2321, \"rankvar\": 1650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1003, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1137, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1654, \"group\": [1801.0, 790.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14529_BALBc-1_X01_Y02_1160_70\", \"ini\": 1822, \"clust\": 2664, \"rank\": 1814, \"rankvar\": 995, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1004, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1956, \"cat-2\": \"Density: 23\", \"cat_2_index\": 396, \"group\": [2664.0, 1123.0, 288.0, 78.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14765_BALBc-1_X01_Y02_1163_363\", \"ini\": 1821, \"clust\": 1259, \"rank\": 1573, \"rankvar\": 1032, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1005, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2534, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1390, \"group\": [1259.0, 472.0, 116.0, 30.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14775_BALBc-1_X01_Y02_1163_470\", \"ini\": 1820, \"clust\": 1091, \"rank\": 745, \"rankvar\": 511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1006, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1957, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2548, \"group\": [1092.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14940_BALBc-1_X01_Y02_1165_431\", \"ini\": 1819, \"clust\": 585, \"rank\": 193, \"rankvar\": 685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1007, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1643, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2549, \"group\": [596.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14952_BALBc-1_X01_Y02_1165_653\", \"ini\": 1818, \"clust\": 329, \"rank\": 260, \"rankvar\": 583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1008, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1138, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2229, \"group\": [329.0, 206.0, 59.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15044_BALBc-1_X01_Y02_1166_715\", \"ini\": 1817, \"clust\": 2697, \"rank\": 1715, \"rankvar\": 2669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1009, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1139, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2230, \"group\": [2698.0, 1144.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15252_BALBc-1_X01_Y02_1169_690\", \"ini\": 1816, \"clust\": 471, \"rank\": 479, \"rankvar\": 501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1010, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1140, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2306, \"group\": [471.0, 263.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15308_BALBc-1_X01_Y02_117_556\", \"ini\": 1815, \"clust\": 1209, \"rank\": 1119, \"rankvar\": 2505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1011, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 95, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1391, \"group\": [1212.0, 437.0, 101.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15434_BALBc-1_X01_Y02_1171_25\", \"ini\": 1814, \"clust\": 109, \"rank\": 1855, \"rankvar\": 245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1012, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1958, \"cat-2\": \"Density: 27\", \"cat_2_index\": 936, \"group\": [113.0, 64.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15469_BALBc-1_X01_Y02_1171_563\", \"ini\": 1813, \"clust\": 363, \"rank\": 756, \"rankvar\": 1608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1013, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1745, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2231, \"group\": [363.0, 224.0, 63.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15536_BALBc-1_X01_Y02_1172_623\", \"ini\": 1812, \"clust\": 327, \"rank\": 449, \"rankvar\": 2127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1014, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1141, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2067, \"group\": [328.0, 205.0, 59.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15847_BALBc-1_X01_Y02_1176_597\", \"ini\": 1811, \"clust\": 1735, \"rank\": 1586, \"rankvar\": 2125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1015, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1746, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1965, \"group\": [1735.0, 754.0, 200.0, 54.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15894_BALBc-1_X01_Y02_1177_234\", \"ini\": 1810, \"clust\": 1868, \"rank\": 2095, \"rankvar\": 2457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1016, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1142, \"cat-2\": \"Density: 22\", \"cat_2_index\": 283, \"group\": [1868.0, 801.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15978_BALBc-1_X01_Y02_1178_306\", \"ini\": 1809, \"clust\": 689, \"rank\": 241, \"rankvar\": 381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1017, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1143, \"cat-2\": \"Density: 21\", \"cat_2_index\": 203, \"group\": [688.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15996_BALBc-1_X01_Y02_1178_501\", \"ini\": 1808, \"clust\": 439, \"rank\": 577, \"rankvar\": 1322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1018, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1549, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2435, \"group\": [440.0, 254.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16362_BALBc-1_X01_Y02_1182_417\", \"ini\": 1807, \"clust\": 1714, \"rank\": 1820, \"rankvar\": 1325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1019, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1644, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2307, \"group\": [1715.0, 738.0, 193.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16367_BALBc-1_X01_Y02_1182_448\", \"ini\": 1806, \"clust\": 1715, \"rank\": 1486, \"rankvar\": 1923, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1020, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1645, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2436, \"group\": [1716.0, 738.0, 193.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16640_BALBc-1_X01_Y02_1185_889\", \"ini\": 1805, \"clust\": 1187, \"rank\": 851, \"rankvar\": 2053, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1021, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1144, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1858, \"group\": [1188.0, 419.0, 95.0, 22.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16730_BALBc-1_X01_Y02_1187_385\", \"ini\": 1804, \"clust\": 2057, \"rank\": 1319, \"rankvar\": 466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1022, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2535, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1764, \"group\": [2057.0, 925.0, 246.0, 68.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17035_BALBc-1_X01_Y02_1190_493\", \"ini\": 1803, \"clust\": 2596, \"rank\": 1789, \"rankvar\": 1017, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1023, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1959, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2232, \"group\": [2599.0, 1090.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17207_BALBc-1_X01_Y02_1192_761\", \"ini\": 1802, \"clust\": 1122, \"rank\": 1013, \"rankvar\": 587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1024, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1145, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2370, \"group\": [1122.0, 374.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17322_BALBc-1_X01_Y02_1194_325\", \"ini\": 1801, \"clust\": 962, \"rank\": 769, \"rankvar\": 630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1025, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2293, \"cat-2\": \"Density: 24\", \"cat_2_index\": 503, \"group\": [966.0, 350.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17680_BALBc-1_X01_Y02_1199_122\", \"ini\": 1800, \"clust\": 981, \"rank\": 167, \"rankvar\": 1172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1026, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1146, \"cat-2\": \"Density: 20\", \"cat_2_index\": 154, \"group\": [982.0, 356.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17793_BALBc-1_X01_Y02_12_655\", \"ini\": 1799, \"clust\": 1308, \"rank\": 2243, \"rankvar\": 2003, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1027, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 96, \"cat-2\": \"Density: 14\", \"cat_2_index\": 29, \"group\": [1311.0, 504.0, 124.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17839_BALBc-1_X01_Y02_120_140\", \"ini\": 1798, \"clust\": 1506, \"rank\": 1982, \"rankvar\": 2639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1028, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1147, \"cat-2\": \"Density: 26\", \"cat_2_index\": 785, \"group\": [1504.0, 583.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17873_BALBc-1_X01_Y02_120_509\", \"ini\": 1797, \"clust\": 1986, \"rank\": 1602, \"rankvar\": 1652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1029, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 97, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1235, \"group\": [1986.0, 868.0, 224.0, 60.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17954_BALBc-1_X01_Y02_1200_546\", \"ini\": 1796, \"clust\": 2665, \"rank\": 1406, \"rankvar\": 912, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1030, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1550, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1655, \"group\": [2665.0, 1124.0, 288.0, 78.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18320_BALBc-1_X01_Y02_1204_93\", \"ini\": 1795, \"clust\": 1690, \"rank\": 1594, \"rankvar\": 2170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1031, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 98, \"cat-2\": \"Density: 22\", \"cat_2_index\": 284, \"group\": [1690.0, 713.0, 182.0, 47.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18357_BALBc-1_X01_Y02_1205_419\", \"ini\": 1794, \"clust\": 997, \"rank\": 1005, \"rankvar\": 1559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1032, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1646, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2150, \"group\": [1001.0, 363.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18530_BALBc-1_X01_Y02_1207_517\", \"ini\": 1793, \"clust\": 2695, \"rank\": 1439, \"rankvar\": 2501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1033, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1148, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1859, \"group\": [2696.0, 1144.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18940_BALBc-1_X01_Y02_1212_14\", \"ini\": 1792, \"clust\": 1994, \"rank\": 1963, \"rankvar\": 403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1034, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1960, \"cat-2\": \"Density: 26\", \"cat_2_index\": 786, \"group\": [1993.0, 874.0, 227.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19125_BALBc-1_X01_Y02_1214_642\", \"ini\": 1791, \"clust\": 2022, \"rank\": 2270, \"rankvar\": 2356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1035, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1149, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2068, \"group\": [2023.0, 899.0, 235.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19244_BALBc-1_X01_Y02_1216_259\", \"ini\": 1790, \"clust\": 994, \"rank\": 302, \"rankvar\": 1469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1036, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1150, \"cat-2\": \"Density: 19\", \"cat_2_index\": 119, \"group\": [995.0, 361.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19318_BALBc-1_X01_Y02_1217_339\", \"ini\": 1789, \"clust\": 504, \"rank\": 644, \"rankvar\": 181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1037, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2294, \"cat-2\": \"Density: 25\", \"cat_2_index\": 649, \"group\": [512.0, 273.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19577_BALBc-1_X01_Y02_122_855\", \"ini\": 1788, \"clust\": 1856, \"rank\": 2692, \"rankvar\": 2016, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1038, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2295, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1236, \"group\": [1857.0, 800.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19630_BALBc-1_X01_Y02_1220_488\", \"ini\": 1787, \"clust\": 1079, \"rank\": 580, \"rankvar\": 1530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1039, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1151, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2151, \"group\": [1078.0, 370.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19649_BALBc-1_X01_Y02_1220_756\", \"ini\": 1786, \"clust\": 1275, \"rank\": 1518, \"rankvar\": 625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1040, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1647, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2308, \"group\": [1274.0, 483.0, 120.0, 31.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19712_BALBc-1_X01_Y02_1221_558\", \"ini\": 1785, \"clust\": 593, \"rank\": 53, \"rankvar\": 489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1041, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1152, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1237, \"group\": [593.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19804_BALBc-1_X01_Y02_1222_695\", \"ini\": 1784, \"clust\": 1588, \"rank\": 926, \"rankvar\": 1817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1042, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1153, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2371, \"group\": [1588.0, 633.0, 154.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19893_BALBc-1_X01_Y02_1223_804\", \"ini\": 1783, \"clust\": 372, \"rank\": 235, \"rankvar\": 1026, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1043, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1154, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2233, \"group\": [373.0, 227.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19976_BALBc-1_X01_Y02_1224_87\", \"ini\": 1782, \"clust\": 341, \"rank\": 487, \"rankvar\": 883, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1044, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1155, \"cat-2\": \"Density: 24\", \"cat_2_index\": 504, \"group\": [342.0, 215.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20108_BALBc-1_X01_Y02_1226_52\", \"ini\": 1781, \"clust\": 1152, \"rank\": 1194, \"rankvar\": 871, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1045, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1579, \"cat-2\": \"Density: 24\", \"cat_2_index\": 505, \"group\": [1155.0, 391.0, 83.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20419_BALBc-1_X01_Y02_123_829\", \"ini\": 1780, \"clust\": 543, \"rank\": 90, \"rankvar\": 496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1046, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1156, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1512, \"group\": [542.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20540_BALBc-1_X01_Y02_1231_399\", \"ini\": 1779, \"clust\": 356, \"rank\": 806, \"rankvar\": 564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1047, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1157, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1656, \"group\": [360.0, 223.0, 63.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20591_BALBc-1_X01_Y02_1231_893\", \"ini\": 1778, \"clust\": 357, \"rank\": 747, \"rankvar\": 914, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1048, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1158, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1860, \"group\": [359.0, 223.0, 63.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21204_BALBc-1_X01_Y02_124_109\", \"ini\": 1777, \"clust\": 1571, \"rank\": 1369, \"rankvar\": 2331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1049, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1159, \"cat-2\": \"Density: 27\", \"cat_2_index\": 937, \"group\": [1574.0, 625.0, 151.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21575_BALBc-1_X01_Y02_1244_166\", \"ini\": 1776, \"clust\": 1956, \"rank\": 1650, \"rankvar\": 2441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1050, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2536, \"cat-2\": \"Density: 22\", \"cat_2_index\": 285, \"group\": [1955.0, 845.0, 216.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21957_BALBc-1_X01_Y02_1249_556\", \"ini\": 1775, \"clust\": 1269, \"rank\": 2022, \"rankvar\": 2525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1051, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1160, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1088, \"group\": [1270.0, 479.0, 118.0, 31.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21977_BALBc-1_X01_Y02_1249_787\", \"ini\": 1774, \"clust\": 346, \"rank\": 311, \"rankvar\": 1123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1052, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1161, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2152, \"group\": [344.0, 216.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22035_BALBc-1_X01_Y02_125_534\", \"ini\": 1773, \"clust\": 1277, \"rank\": 1824, \"rankvar\": 1597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1053, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 99, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1392, \"group\": [1279.0, 487.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22253_BALBc-1_X01_Y02_1252_344\", \"ini\": 1772, \"clust\": 1258, \"rank\": 1431, \"rankvar\": 144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1054, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2296, \"cat-2\": \"Density: 23\", \"cat_2_index\": 397, \"group\": [1261.0, 473.0, 116.0, 30.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22740_BALBc-1_X01_Y02_1259_25\", \"ini\": 1771, \"clust\": 1315, \"rank\": 2172, \"rankvar\": 1979, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1055, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1961, \"cat-2\": \"Density: 26\", \"cat_2_index\": 787, \"group\": [1315.0, 507.0, 124.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22891_BALBc-1_X01_Y02_1260_403\", \"ini\": 1770, \"clust\": 365, \"rank\": 527, \"rankvar\": 926, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1056, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1162, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1513, \"group\": [366.0, 225.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23039_BALBc-1_X01_Y02_1262_452\", \"ini\": 1769, \"clust\": 588, \"rank\": 129, \"rankvar\": 240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1057, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1163, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1238, \"group\": [585.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23057_BALBc-1_X01_Y02_1262_678\", \"ini\": 1768, \"clust\": 485, \"rank\": 388, \"rankvar\": 783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1058, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1164, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2069, \"group\": [486.0, 265.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23972_BALBc-1_X01_Y02_1274_408\", \"ini\": 1767, \"clust\": 618, \"rank\": 54, \"rankvar\": 337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1059, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 100, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1393, \"group\": [618.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23974_BALBc-1_X01_Y02_1274_423\", \"ini\": 1766, \"clust\": 1181, \"rank\": 918, \"rankvar\": 203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1060, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1165, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1514, \"group\": [1182.0, 414.0, 94.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24160_BALBc-1_X01_Y02_1277_153\", \"ini\": 1765, \"clust\": 328, \"rank\": 946, \"rankvar\": 1014, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1061, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2537, \"cat-2\": \"Density: 21\", \"cat_2_index\": 204, \"group\": [331.0, 207.0, 59.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24404_BALBc-1_X01_Y02_128_478\", \"ini\": 1764, \"clust\": 1052, \"rank\": 350, \"rankvar\": 875, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1062, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2450, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1089, \"group\": [1055.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24468_BALBc-1_X01_Y02_1280_260\", \"ini\": 1763, \"clust\": 1156, \"rank\": 1155, \"rankvar\": 1388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1063, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2297, \"cat-2\": \"Density: 16\", \"cat_2_index\": 58, \"group\": [1158.0, 393.0, 84.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24628_BALBc-1_X01_Y02_1282_802\", \"ini\": 1762, \"clust\": 2709, \"rank\": 1975, \"rankvar\": 2528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1064, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1166, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1861, \"group\": [2708.0, 1147.0, 296.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25243_BALBc-1_X01_Y02_1290_386\", \"ini\": 1761, \"clust\": 2676, \"rank\": 1273, \"rankvar\": 601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1065, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1167, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1239, \"group\": [2676.0, 1135.0, 292.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25273_BALBc-1_X01_Y02_1290_702\", \"ini\": 1760, \"clust\": 1750, \"rank\": 2744, \"rankvar\": 2726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1066, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2298, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1966, \"group\": [1750.0, 761.0, 202.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25852_BALBc-1_X01_Y02_1298_50\", \"ini\": 1759, \"clust\": 497, \"rank\": 489, \"rankvar\": 848, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1067, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1580, \"cat-2\": \"Density: 24\", \"cat_2_index\": 506, \"group\": [497.0, 268.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25924_BALBc-1_X01_Y02_1299_448\", \"ini\": 1758, \"clust\": 581, \"rank\": 98, \"rankvar\": 72, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1068, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1648, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1394, \"group\": [581.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26183_BALBc-1_X01_Y02_1300_80\", \"ini\": 1757, \"clust\": 152, \"rank\": 2059, \"rankvar\": 2316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1069, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2538, \"cat-2\": \"Density: 23\", \"cat_2_index\": 398, \"group\": [152.0, 96.0, 27.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26216_BALBc-1_X01_Y02_1301_40\", \"ini\": 1756, \"clust\": 422, \"rank\": 706, \"rankvar\": 582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1070, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1962, \"cat-2\": \"Density: 25\", \"cat_2_index\": 650, \"group\": [423.0, 245.0, 67.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26286_BALBc-1_X01_Y02_1302_362\", \"ini\": 1755, \"clust\": 2670, \"rank\": 1180, \"rankvar\": 1362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1071, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1168, \"cat-2\": \"Density: 25\", \"cat_2_index\": 651, \"group\": [2671.0, 1130.0, 290.0, 79.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26422_BALBc-1_X01_Y02_1304_482\", \"ini\": 1754, \"clust\": 1016, \"rank\": 571, \"rankvar\": 500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1072, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1169, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1090, \"group\": [1017.0, 368.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26472_BALBc-1_X01_Y02_1305_154\", \"ini\": 1753, \"clust\": 323, \"rank\": 296, \"rankvar\": 2712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1073, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2539, \"cat-2\": \"Density: 17\", \"cat_2_index\": 76, \"group\": [322.0, 201.0, 58.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26543_BALBc-1_X01_Y02_1306_303\", \"ini\": 1752, \"clust\": 1905, \"rank\": 2284, \"rankvar\": 2371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1074, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1170, \"cat-2\": \"Density: 22\", \"cat_2_index\": 286, \"group\": [1905.0, 816.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26628_BALBc-1_X01_Y02_1307_628\", \"ini\": 1751, \"clust\": 258, \"rank\": 300, \"rankvar\": 1304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1075, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1171, \"cat-2\": \"Density: 26\", \"cat_2_index\": 788, \"group\": [258.0, 160.0, 47.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26791_BALBc-1_X01_Y02_1309_847\", \"ini\": 1750, \"clust\": 579, \"rank\": 184, \"rankvar\": 42, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1076, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1172, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1967, \"group\": [578.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26808_BALBc-1_X01_Y02_131_13\", \"ini\": 1749, \"clust\": 20, \"rank\": 1675, \"rankvar\": 679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1077, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1173, \"cat-2\": \"Density: 25\", \"cat_2_index\": 652, \"group\": [19.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26858_BALBc-1_X01_Y02_131_710\", \"ini\": 1748, \"clust\": 1938, \"rank\": 2173, \"rankvar\": 2608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1078, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1174, \"cat-2\": \"Density: 25\", \"cat_2_index\": 653, \"group\": [1938.0, 831.0, 213.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26907_BALBc-1_X01_Y02_1310_424\", \"ini\": 1747, \"clust\": 440, \"rank\": 602, \"rankvar\": 874, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1079, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 831, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1657, \"group\": [441.0, 254.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27339_BALBc-1_X01_Y02_1316_272\", \"ini\": 1746, \"clust\": 1880, \"rank\": 1951, \"rankvar\": 2374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1080, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2540, \"cat-2\": \"Density: 16\", \"cat_2_index\": 59, \"group\": [1880.0, 805.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27376_BALBc-1_X01_Y02_1316_760\", \"ini\": 1745, \"clust\": 2711, \"rank\": 1485, \"rankvar\": 1445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1081, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1175, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1862, \"group\": [2711.0, 1147.0, 296.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27712_BALBc-1_X01_Y02_1320_379\", \"ini\": 1744, \"clust\": 1196, \"rank\": 1227, \"rankvar\": 315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1082, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1649, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1395, \"group\": [1196.0, 426.0, 97.0, 23.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27787_BALBc-1_X01_Y02_1321_46\", \"ini\": 1743, \"clust\": 1808, \"rank\": 2505, \"rankvar\": 993, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1083, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2451, \"cat-2\": \"Density: 25\", \"cat_2_index\": 654, \"group\": [1811.0, 792.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28104_BALBc-1_X01_Y02_1325_686\", \"ini\": 1742, \"clust\": 2716, \"rank\": 2158, \"rankvar\": 1684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1084, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1176, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1515, \"group\": [2717.0, 1149.0, 297.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28119_BALBc-1_X01_Y02_1325_869\", \"ini\": 1741, \"clust\": 565, \"rank\": 103, \"rankvar\": 1079, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1085, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1177, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1516, \"group\": [567.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28171_BALBc-1_X01_Y02_1326_556\", \"ini\": 1740, \"clust\": 1245, \"rank\": 647, \"rankvar\": 1053, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1086, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1178, \"cat-2\": \"Density: 21\", \"cat_2_index\": 205, \"group\": [1248.0, 462.0, 110.0, 26.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28403_BALBc-1_X01_Y02_1329_340\", \"ini\": 1739, \"clust\": 1867, \"rank\": 1988, \"rankvar\": 2490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1087, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2541, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1091, \"group\": [1870.0, 801.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28439_BALBc-1_X01_Y02_1329_667\", \"ini\": 1738, \"clust\": 116, \"rank\": 768, \"rankvar\": 1747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1088, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1179, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1517, \"group\": [115.0, 66.0, 17.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28793_BALBc-1_X01_Y02_1333_435\", \"ini\": 1737, \"clust\": 115, \"rank\": 1316, \"rankvar\": 318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1089, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 832, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1863, \"group\": [117.0, 68.0, 17.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28907_BALBc-1_X01_Y02_1334_958\", \"ini\": 1736, \"clust\": 330, \"rank\": 578, \"rankvar\": 1342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1090, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1180, \"cat-2\": \"Density: 24\", \"cat_2_index\": 507, \"group\": [330.0, 206.0, 59.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29029_BALBc-1_X01_Y02_1337_148\", \"ini\": 1735, \"clust\": 1702, \"rank\": 1474, \"rankvar\": 688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1091, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2542, \"cat-2\": \"Density: 17\", \"cat_2_index\": 77, \"group\": [1703.0, 726.0, 186.0, 50.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29253_BALBc-1_X01_Y02_1340_880\", \"ini\": 1734, \"clust\": 2694, \"rank\": 1331, \"rankvar\": 2208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1092, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1181, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1864, \"group\": [2695.0, 1144.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29328_BALBc-1_X01_Y02_135_526\", \"ini\": 1733, \"clust\": 149, \"rank\": 1126, \"rankvar\": 846, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1093, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 101, \"cat-2\": \"Density: 26\", \"cat_2_index\": 789, \"group\": [149.0, 93.0, 24.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29539_BALBc-1_X01_Y02_138_561\", \"ini\": 1732, \"clust\": 2058, \"rank\": 1292, \"rankvar\": 1483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1094, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 102, \"cat-2\": \"Density: 27\", \"cat_2_index\": 938, \"group\": [2059.0, 927.0, 248.0, 69.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29570_BALBc-1_X01_Y02_138_885\", \"ini\": 1731, \"clust\": 2095, \"rank\": 1177, \"rankvar\": 1004, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1095, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2299, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1240, \"group\": [2097.0, 947.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29751_BALBc-1_X01_Y02_140_575\", \"ini\": 1730, \"clust\": 1798, \"rank\": 2679, \"rankvar\": 2384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1096, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1182, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1092, \"group\": [1800.0, 789.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29777_BALBc-1_X01_Y02_140_975\", \"ini\": 1729, \"clust\": 2171, \"rank\": 1657, \"rankvar\": 801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1097, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2300, \"cat-2\": \"Density: 18\", \"cat_2_index\": 95, \"group\": [2171.0, 988.0, 261.0, 72.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29799_BALBc-1_X01_Y02_141_323\", \"ini\": 1728, \"clust\": 1577, \"rank\": 1332, \"rankvar\": 336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1098, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 697, \"cat-2\": \"Density: 27\", \"cat_2_index\": 939, \"group\": [1580.0, 628.0, 152.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29956_BALBc-1_X01_Y02_143_444\", \"ini\": 1727, \"clust\": 2149, \"rank\": 1288, \"rankvar\": 513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1099, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2452, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1518, \"group\": [2152.0, 979.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30085_BALBc-1_X01_Y02_145_273\", \"ini\": 1726, \"clust\": 1232, \"rank\": 1320, \"rankvar\": 1076, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1100, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2239, \"cat-2\": \"Density: 25\", \"cat_2_index\": 655, \"group\": [1233.0, 449.0, 105.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30088_BALBc-1_X01_Y02_145_290\", \"ini\": 1725, \"clust\": 975, \"rank\": 169, \"rankvar\": 429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1101, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2453, \"cat-2\": \"Density: 24\", \"cat_2_index\": 508, \"group\": [979.0, 355.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30181_BALBc-1_X01_Y02_146_484\", \"ini\": 1724, \"clust\": 2030, \"rank\": 1879, \"rankvar\": 1630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1102, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1963, \"cat-2\": \"Density: 26\", \"cat_2_index\": 790, \"group\": [2029.0, 903.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30212_BALBc-1_X01_Y02_146_853\", \"ini\": 1723, \"clust\": 759, \"rank\": 200, \"rankvar\": 430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1103, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 103, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1658, \"group\": [759.0, 280.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30226_BALBc-1_X01_Y02_147_121\", \"ini\": 1722, \"clust\": 970, \"rank\": 612, \"rankvar\": 396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1104, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1183, \"cat-2\": \"Density: 22\", \"cat_2_index\": 287, \"group\": [970.0, 352.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30323_BALBc-1_X01_Y02_148_511\", \"ini\": 1721, \"clust\": 153, \"rank\": 2032, \"rankvar\": 2024, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1105, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 104, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1241, \"group\": [153.0, 97.0, 27.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30392_BALBc-1_X01_Y02_149_423\", \"ini\": 1720, \"clust\": 1638, \"rank\": 1018, \"rankvar\": 1365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1106, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1650, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1396, \"group\": [1639.0, 672.0, 169.0, 41.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30672_BALBc-1_X01_Y02_152_19\", \"ini\": 1719, \"clust\": 1524, \"rank\": 1368, \"rankvar\": 2172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1107, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1184, \"cat-2\": \"Density: 27\", \"cat_2_index\": 940, \"group\": [1522.0, 588.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31029_BALBc-1_X01_Y02_156_815\", \"ini\": 1718, \"clust\": 2627, \"rank\": 2099, \"rankvar\": 1961, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1108, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2301, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1519, \"group\": [2628.0, 1096.0, 281.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31048_BALBc-1_X01_Y02_156_993\", \"ini\": 1717, \"clust\": 1092, \"rank\": 677, \"rankvar\": 1108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1109, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2543, \"cat-2\": \"Density: 13\", \"cat_2_index\": 17, \"group\": [1093.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31155_BALBc-1_X01_Y02_158_405\", \"ini\": 1716, \"clust\": 1743, \"rank\": 2526, \"rankvar\": 2623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1110, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 698, \"cat-2\": \"Density: 27\", \"cat_2_index\": 941, \"group\": [1755.0, 763.0, 202.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31283_BALBc-1_X01_Y02_16_366\", \"ini\": 1715, \"clust\": 1344, \"rank\": 2177, \"rankvar\": 2147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1111, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1185, \"cat-2\": \"Density: 13\", \"cat_2_index\": 18, \"group\": [1344.0, 528.0, 133.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31361_BALBc-1_X01_Y02_160_197\", \"ini\": 1714, \"clust\": 299, \"rank\": 643, \"rankvar\": 1267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1112, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1186, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1093, \"group\": [302.0, 191.0, 56.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31477_BALBc-1_X01_Y02_161_787\", \"ini\": 1713, \"clust\": 932, \"rank\": 1096, \"rankvar\": 885, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1113, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1187, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1242, \"group\": [931.0, 338.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31533_BALBc-1_X01_Y02_162_623\", \"ini\": 1712, \"clust\": 2168, \"rank\": 2183, \"rankvar\": 2034, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1114, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1188, \"cat-2\": \"Density: 24\", \"cat_2_index\": 509, \"group\": [2169.0, 986.0, 260.0, 71.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31548_BALBc-1_X01_Y02_162_836\", \"ini\": 1711, \"clust\": 1654, \"rank\": 1503, \"rankvar\": 945, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1115, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 105, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1520, \"group\": [1656.0, 687.0, 175.0, 43.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31566_BALBc-1_X01_Y02_163_150\", \"ini\": 1710, \"clust\": 1007, \"rank\": 730, \"rankvar\": 856, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1116, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1189, \"cat-2\": \"Density: 27\", \"cat_2_index\": 942, \"group\": [1010.0, 365.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31622_BALBc-1_X01_Y02_163_893\", \"ini\": 1709, \"clust\": 2756, \"rank\": 1858, \"rankvar\": 1339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1117, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2302, \"cat-2\": \"Density: 27\", \"cat_2_index\": 943, \"group\": [2757.0, 1171.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31687_BALBc-1_X01_Y02_164_924\", \"ini\": 1708, \"clust\": 255, \"rank\": 956, \"rankvar\": 395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1118, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2303, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1243, \"group\": [260.0, 161.0, 47.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31771_BALBc-1_X01_Y02_166_248\", \"ini\": 1707, \"clust\": 1057, \"rank\": 180, \"rankvar\": 925, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1119, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1190, \"cat-2\": \"Density: 26\", \"cat_2_index\": 791, \"group\": [1058.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31778_BALBc-1_X01_Y02_166_382\", \"ini\": 1706, \"clust\": 590, \"rank\": 72, \"rankvar\": 334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1120, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 699, \"cat-2\": \"Density: 24\", \"cat_2_index\": 510, \"group\": [588.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31826_BALBc-1_X01_Y02_166_996\", \"ini\": 1705, \"clust\": 2486, \"rank\": 1979, \"rankvar\": 392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1121, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 106, \"cat-2\": \"Density: 14\", \"cat_2_index\": 30, \"group\": [2488.0, 1072.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31882_BALBc-1_X01_Y02_167_871\", \"ini\": 1704, \"clust\": 1105, \"rank\": 433, \"rankvar\": 944, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1122, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 107, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1521, \"group\": [1106.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32028_BALBc-1_X01_Y02_169_976\", \"ini\": 1703, \"clust\": 179, \"rank\": 1074, \"rankvar\": 79, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1123, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2304, \"cat-2\": \"Density: 21\", \"cat_2_index\": 206, \"group\": [179.0, 118.0, 38.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32605_BALBc-1_X01_Y02_177_12\", \"ini\": 1702, \"clust\": 1351, \"rank\": 2773, \"rankvar\": 2762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1124, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1191, \"cat-2\": \"Density: 26\", \"cat_2_index\": 792, \"group\": [1352.0, 530.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32781_BALBc-1_X01_Y02_179_504\", \"ini\": 1701, \"clust\": 2031, \"rank\": 2466, \"rankvar\": 2744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1125, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1964, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1397, \"group\": [2030.0, 903.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32994_BALBc-1_X01_Y02_181_536\", \"ini\": 1700, \"clust\": 1796, \"rank\": 2532, \"rankvar\": 1998, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1126, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 108, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1659, \"group\": [1796.0, 789.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33083_BALBc-1_X01_Y02_182_591\", \"ini\": 1699, \"clust\": 1903, \"rank\": 2171, \"rankvar\": 2702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1127, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2240, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1244, \"group\": [1904.0, 815.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33098_BALBc-1_X01_Y02_182_806\", \"ini\": 1698, \"clust\": 1656, \"rank\": 796, \"rankvar\": 1883, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1128, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1192, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1865, \"group\": [1655.0, 686.0, 175.0, 43.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33178_BALBc-1_X01_Y02_183_939\", \"ini\": 1697, \"clust\": 2755, \"rank\": 2157, \"rankvar\": 2685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1129, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 109, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1094, \"group\": [2758.0, 1171.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33258_BALBc-1_X01_Y02_184_896\", \"ini\": 1696, \"clust\": 2512, \"rank\": 2055, \"rankvar\": 1329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1130, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 110, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1866, \"group\": [2511.0, 1078.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33265_BALBc-1_X01_Y02_184_97\", \"ini\": 1695, \"clust\": 74, \"rank\": 1490, \"rankvar\": 1021, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1131, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1651, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1245, \"group\": [75.0, 35.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33280_BALBc-1_X01_Y02_185_324\", \"ini\": 1694, \"clust\": 1679, \"rank\": 1541, \"rankvar\": 2314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1132, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1193, \"cat-2\": \"Density: 26\", \"cat_2_index\": 793, \"group\": [1682.0, 706.0, 179.0, 46.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33754_BALBc-1_X01_Y02_190_870\", \"ini\": 1693, \"clust\": 2531, \"rank\": 2527, \"rankvar\": 1452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1133, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 111, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2070, \"group\": [2536.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33990_BALBc-1_X01_Y02_193_959\", \"ini\": 1692, \"clust\": 933, \"rank\": 1049, \"rankvar\": 569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1134, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 112, \"cat-2\": \"Density: 27\", \"cat_2_index\": 944, \"group\": [932.0, 338.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34020_BALBc-1_X01_Y02_194_351\", \"ini\": 1691, \"clust\": 1318, \"rank\": 1358, \"rankvar\": 992, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1135, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 700, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1095, \"group\": [1318.0, 509.0, 125.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34038_BALBc-1_X01_Y02_194_572\", \"ini\": 1690, \"clust\": 1891, \"rank\": 2194, \"rankvar\": 1764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1136, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2544, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1522, \"group\": [1891.0, 809.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34165_BALBc-1_X01_Y02_196_520\", \"ini\": 1689, \"clust\": 2205, \"rank\": 2373, \"rankvar\": 1908, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1137, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 895, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1867, \"group\": [2205.0, 1013.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34589_BALBc-1_X01_Y02_201_481\", \"ini\": 1688, \"clust\": 1619, \"rank\": 1097, \"rankvar\": 1848, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1138, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1965, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1246, \"group\": [1619.0, 653.0, 161.0, 39.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34649_BALBc-1_X01_Y02_202_257\", \"ini\": 1687, \"clust\": 51, \"rank\": 936, \"rankvar\": 2638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1139, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1966, \"cat-2\": \"Density: 27\", \"cat_2_index\": 945, \"group\": [51.0, 25.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34718_BALBc-1_X01_Y02_203_164\", \"ini\": 1686, \"clust\": 1484, \"rank\": 2072, \"rankvar\": 2347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1140, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1194, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1096, \"group\": [1484.0, 580.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34915_BALBc-1_X01_Y02_205_7\", \"ini\": 1685, \"clust\": 37, \"rank\": 994, \"rankvar\": 2300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1141, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1195, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1097, \"group\": [35.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35085_BALBc-1_X01_Y02_207_892\", \"ini\": 1684, \"clust\": 622, \"rank\": 120, \"rankvar\": 244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1142, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 113, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1765, \"group\": [619.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35133_BALBc-1_X01_Y02_208_606\", \"ini\": 1683, \"clust\": 1048, \"rank\": 500, \"rankvar\": 591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1143, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2241, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1098, \"group\": [1049.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35140_BALBc-1_X01_Y02_208_76\", \"ini\": 1682, \"clust\": 438, \"rank\": 314, \"rankvar\": 891, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1144, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1652, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1247, \"group\": [438.0, 253.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35161_BALBc-1_X01_Y02_208_997\", \"ini\": 1681, \"clust\": 2633, \"rank\": 2129, \"rankvar\": 694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1145, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 114, \"cat-2\": \"Density: 20\", \"cat_2_index\": 155, \"group\": [2636.0, 1101.0, 283.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35307_BALBc-1_X01_Y02_21_950\", \"ini\": 1680, \"clust\": 505, \"rank\": 141, \"rankvar\": 1417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1146, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1196, \"cat-2\": \"Density: 11\", \"cat_2_index\": 6, \"group\": [506.0, 272.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35371_BALBc-1_X01_Y02_210_919\", \"ini\": 1679, \"clust\": 2601, \"rank\": 1957, \"rankvar\": 1615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1147, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 115, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1968, \"group\": [2602.0, 1091.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35707_BALBc-1_X01_Y02_215_359\", \"ini\": 1678, \"clust\": 447, \"rank\": 284, \"rankvar\": 1002, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1148, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 701, \"cat-2\": \"Density: 25\", \"cat_2_index\": 656, \"group\": [451.0, 258.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35849_BALBc-1_X01_Y02_217_422\", \"ini\": 1677, \"clust\": 717, \"rank\": 111, \"rankvar\": 553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1149, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 702, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1099, \"group\": [715.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35964_BALBc-1_X01_Y02_218_953\", \"ini\": 1676, \"clust\": 670, \"rank\": 203, \"rankvar\": 212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1150, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 116, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1868, \"group\": [667.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36019_BALBc-1_X01_Y02_219_856\", \"ini\": 1675, \"clust\": 424, \"rank\": 315, \"rankvar\": 1103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1151, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2305, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2437, \"group\": [424.0, 246.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36350_BALBc-1_X01_Y02_223_52\", \"ini\": 1674, \"clust\": 1579, \"rank\": 1031, \"rankvar\": 1351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1152, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1197, \"cat-2\": \"Density: 26\", \"cat_2_index\": 794, \"group\": [1579.0, 627.0, 152.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36560_BALBc-1_X01_Y02_226_384\", \"ini\": 1673, \"clust\": 7, \"rank\": 914, \"rankvar\": 2288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1153, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 703, \"cat-2\": \"Density: 26\", \"cat_2_index\": 795, \"group\": [11.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36605_BALBc-1_X01_Y02_226_872\", \"ini\": 1672, \"clust\": 2563, \"rank\": 2300, \"rankvar\": 1189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1154, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2306, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2234, \"group\": [2563.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37140_BALBc-1_X01_Y02_233_273\", \"ini\": 1671, \"clust\": 1519, \"rank\": 1207, \"rankvar\": 2548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1155, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1198, \"cat-2\": \"Density: 26\", \"cat_2_index\": 796, \"group\": [1530.0, 592.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37170_BALBc-1_X01_Y02_233_605\", \"ini\": 1670, \"clust\": 2646, \"rank\": 2595, \"rankvar\": 2204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1156, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1199, \"cat-2\": \"Density: 27\", \"cat_2_index\": 946, \"group\": [2648.0, 1110.0, 285.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37201_BALBc-1_X01_Y02_234_185\", \"ini\": 1669, \"clust\": 197, \"rank\": 375, \"rankvar\": 1472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1157, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1200, \"cat-2\": \"Density: 24\", \"cat_2_index\": 511, \"group\": [198.0, 129.0, 42.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37456_BALBc-1_X01_Y02_237_70\", \"ini\": 1668, \"clust\": 1709, \"rank\": 1214, \"rankvar\": 2303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1158, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 117, \"cat-2\": \"Density: 25\", \"cat_2_index\": 657, \"group\": [1709.0, 732.0, 189.0, 51.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37475_BALBc-1_X01_Y02_237_937\", \"ini\": 1667, \"clust\": 949, \"rank\": 1205, \"rankvar\": 655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1159, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 118, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2153, \"group\": [951.0, 343.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37621_BALBc-1_X01_Y02_239_971\", \"ini\": 1666, \"clust\": 1179, \"rank\": 1133, \"rankvar\": 782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1160, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 119, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1523, \"group\": [1178.0, 411.0, 93.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37749_BALBc-1_X01_Y02_240_84\", \"ini\": 1665, \"clust\": 1279, \"rank\": 1869, \"rankvar\": 2289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1161, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1653, \"cat-2\": \"Density: 23\", \"cat_2_index\": 399, \"group\": [1278.0, 486.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37862_BALBc-1_X01_Y02_242_444\", \"ini\": 1664, \"clust\": 1757, \"rank\": 2538, \"rankvar\": 2446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1162, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1654, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1660, \"group\": [1760.0, 767.0, 203.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37892_BALBc-1_X01_Y02_242_898\", \"ini\": 1663, \"clust\": 2398, \"rank\": 1912, \"rankvar\": 962, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1163, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 120, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1969, \"group\": [2401.0, 1041.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37950_BALBc-1_X01_Y02_243_786\", \"ini\": 1662, \"clust\": 2603, \"rank\": 2274, \"rankvar\": 1929, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1164, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 833, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2071, \"group\": [2604.0, 1092.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38019_BALBc-1_X01_Y02_244_504\", \"ini\": 1661, \"clust\": 1731, \"rank\": 2544, \"rankvar\": 2372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1165, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 896, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1398, \"group\": [1731.0, 750.0, 197.0, 53.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38163_BALBc-1_X01_Y02_246_349\", \"ini\": 1660, \"clust\": 10, \"rank\": 1284, \"rankvar\": 2243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1166, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1201, \"cat-2\": \"Density: 23\", \"cat_2_index\": 400, \"group\": [9.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38833_BALBc-1_X01_Y02_254_406\", \"ini\": 1659, \"clust\": 2385, \"rank\": 2507, \"rankvar\": 1913, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1167, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 121, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1766, \"group\": [2385.0, 1037.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38864_BALBc-1_X01_Y02_254_818\", \"ini\": 1658, \"clust\": 1752, \"rank\": 2672, \"rankvar\": 1184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1168, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1202, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1970, \"group\": [1754.0, 762.0, 202.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38921_BALBc-1_X01_Y02_255_579\", \"ini\": 1657, \"clust\": 718, \"rank\": 125, \"rankvar\": 175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1169, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2545, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1399, \"group\": [718.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39097_BALBc-1_X01_Y02_257_981\", \"ini\": 1656, \"clust\": 2399, \"rank\": 1825, \"rankvar\": 837, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1170, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 122, \"cat-2\": \"Density: 27\", \"cat_2_index\": 947, \"group\": [2399.0, 1041.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39159_BALBc-1_X01_Y02_258_932\", \"ini\": 1655, \"clust\": 2285, \"rank\": 2568, \"rankvar\": 1691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1171, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 123, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2309, \"group\": [2285.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39206_BALBc-1_X01_Y02_259_497\", \"ini\": 1654, \"clust\": 167, \"rank\": 1511, \"rankvar\": 2510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1172, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 897, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1971, \"group\": [167.0, 110.0, 33.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39295_BALBc-1_X01_Y02_26_739\", \"ini\": 1653, \"clust\": 1682, \"rank\": 2662, \"rankvar\": 2596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1173, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1747, \"cat-2\": \"Density: 17\", \"cat_2_index\": 78, \"group\": [1685.0, 709.0, 180.0, 46.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39359_BALBc-1_X01_Y02_260_604\", \"ini\": 1652, \"clust\": 2232, \"rank\": 2156, \"rankvar\": 1878, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1174, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1203, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1400, \"group\": [2233.0, 1022.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39370_BALBc-1_X01_Y02_260_753\", \"ini\": 1651, \"clust\": 2478, \"rank\": 2134, \"rankvar\": 1932, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1175, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 834, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1972, \"group\": [2479.0, 1067.0, 278.0, 75.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39467_BALBc-1_X01_Y02_261_915\", \"ini\": 1650, \"clust\": 392, \"rank\": 425, \"rankvar\": 206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1176, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 124, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2310, \"group\": [390.0, 235.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39512_BALBc-1_X01_Y02_262_462\", \"ini\": 1649, \"clust\": 2036, \"rank\": 2126, \"rankvar\": 1724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1177, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1967, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1869, \"group\": [2038.0, 907.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39541_BALBc-1_X01_Y02_262_944\", \"ini\": 1648, \"clust\": 2096, \"rank\": 1350, \"rankvar\": 1195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1178, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 125, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2154, \"group\": [2095.0, 947.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39556_BALBc-1_X01_Y02_263_219\", \"ini\": 1647, \"clust\": 1200, \"rank\": 1317, \"rankvar\": 2722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1179, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1204, \"cat-2\": \"Density: 24\", \"cat_2_index\": 512, \"group\": [1200.0, 430.0, 99.0, 23.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39656_BALBc-1_X01_Y02_264_54\", \"ini\": 1646, \"clust\": 1478, \"rank\": 2308, \"rankvar\": 2570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1180, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2307, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1248, \"group\": [1477.0, 575.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39742_BALBc-1_X01_Y02_265_717\", \"ini\": 1645, \"clust\": 2259, \"rank\": 2601, \"rankvar\": 2274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1181, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 835, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1524, \"group\": [2260.0, 1031.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39744_BALBc-1_X01_Y02_265_773\", \"ini\": 1644, \"clust\": 950, \"rank\": 835, \"rankvar\": 887, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1182, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 836, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2072, \"group\": [949.0, 343.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39786_BALBc-1_X01_Y02_266_282\", \"ini\": 1643, \"clust\": 1640, \"rank\": 1393, \"rankvar\": 964, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1205, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1100, \"group\": [1641.0, 674.0, 169.0, 41.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39838_BALBc-1_X01_Y02_266_848\", \"ini\": 1642, \"clust\": 870, \"rank\": 810, \"rankvar\": 1137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1184, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2308, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2311, \"group\": [869.0, 314.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39873_BALBc-1_X01_Y02_267_383\", \"ini\": 1641, \"clust\": 699, \"rank\": 266, \"rankvar\": 413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1185, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 898, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1101, \"group\": [699.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39968_BALBc-1_X01_Y02_268_561\", \"ini\": 1640, \"clust\": 1793, \"rank\": 2579, \"rankvar\": 2529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1186, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2546, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1870, \"group\": [1792.0, 788.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40006_BALBc-1_X01_Y02_268_984\", \"ini\": 1639, \"clust\": 2612, \"rank\": 2037, \"rankvar\": 1968, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1187, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 126, \"cat-2\": \"Density: 27\", \"cat_2_index\": 948, \"group\": [2614.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40052_BALBc-1_X01_Y02_269_644\", \"ini\": 1638, \"clust\": 2260, \"rank\": 2533, \"rankvar\": 1730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1188, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1206, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1525, \"group\": [2261.0, 1031.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40139_BALBc-1_X01_Y02_27_826\", \"ini\": 1637, \"clust\": 343, \"rank\": 556, \"rankvar\": 1537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1189, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1748, \"cat-2\": \"Density: 20\", \"cat_2_index\": 156, \"group\": [346.0, 216.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40204_BALBc-1_X01_Y02_270_792\", \"ini\": 1636, \"clust\": 2387, \"rank\": 2733, \"rankvar\": 2190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1190, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 899, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2073, \"group\": [2391.0, 1038.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40333_BALBc-1_X01_Y02_272_580\", \"ini\": 1635, \"clust\": 2498, \"rank\": 1822, \"rankvar\": 1603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1191, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 127, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1249, \"group\": [2497.0, 1076.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40421_BALBc-1_X01_Y02_273_871\", \"ini\": 1634, \"clust\": 889, \"rank\": 958, \"rankvar\": 682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1192, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 128, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2438, \"group\": [892.0, 327.0, 76.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40533_BALBc-1_X01_Y02_275_478\", \"ini\": 1633, \"clust\": 1925, \"rank\": 2200, \"rankvar\": 2110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1193, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 129, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1661, \"group\": [1924.0, 822.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40559_BALBc-1_X01_Y02_275_815\", \"ini\": 1632, \"clust\": 1096, \"rank\": 270, \"rankvar\": 1440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1194, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 130, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2074, \"group\": [1094.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40761_BALBc-1_X01_Y02_278_453\", \"ini\": 1631, \"clust\": 1887, \"rank\": 2489, \"rankvar\": 2632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1195, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 131, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1526, \"group\": [1888.0, 808.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41007_BALBc-1_X01_Y02_280_883\", \"ini\": 1630, \"clust\": 2378, \"rank\": 2486, \"rankvar\": 1838, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1196, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 132, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2439, \"group\": [2378.0, 1036.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41013_BALBc-1_X01_Y02_280_967\", \"ini\": 1629, \"clust\": 629, \"rank\": 14, \"rankvar\": 132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1197, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 133, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1527, \"group\": [628.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41049_BALBc-1_X01_Y02_281_533\", \"ini\": 1628, \"clust\": 1952, \"rank\": 1429, \"rankvar\": 2089, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1198, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 900, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1973, \"group\": [1953.0, 844.0, 216.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41198_BALBc-1_X01_Y02_283_337\", \"ini\": 1627, \"clust\": 246, \"rank\": 1044, \"rankvar\": 524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1199, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1207, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1102, \"group\": [247.0, 154.0, 46.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41290_BALBc-1_X01_Y02_284_545\", \"ini\": 1626, \"clust\": 2525, \"rank\": 2159, \"rankvar\": 769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1200, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 134, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1974, \"group\": [2525.0, 1084.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41467_BALBc-1_X01_Y02_286_916\", \"ini\": 1625, \"clust\": 2622, \"rank\": 2105, \"rankvar\": 1435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1201, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 135, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2372, \"group\": [2624.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41763_BALBc-1_X01_Y02_29_936\", \"ini\": 1624, \"clust\": 1305, \"rank\": 2567, \"rankvar\": 2282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1202, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1749, \"cat-2\": \"Density: 12\", \"cat_2_index\": 7, \"group\": [1308.0, 501.0, 123.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41809_BALBc-1_X01_Y02_290_713\", \"ini\": 1623, \"clust\": 2069, \"rank\": 1262, \"rankvar\": 1553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1203, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 837, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1975, \"group\": [2068.0, 934.0, 251.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41901_BALBc-1_X01_Y02_291_852\", \"ini\": 1622, \"clust\": 2583, \"rank\": 2050, \"rankvar\": 1205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1204, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 136, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2155, \"group\": [2584.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41931_BALBc-1_X01_Y02_292_367\", \"ini\": 1621, \"clust\": 1988, \"rank\": 1412, \"rankvar\": 552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1205, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 901, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1401, \"group\": [1989.0, 871.0, 225.0, 60.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41979_BALBc-1_X01_Y02_292_991\", \"ini\": 1620, \"clust\": 2613, \"rank\": 1818, \"rankvar\": 1324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1206, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 137, \"cat-2\": \"Density: 25\", \"cat_2_index\": 658, \"group\": [2612.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42051_BALBc-1_X01_Y02_293_825\", \"ini\": 1619, \"clust\": 2575, \"rank\": 2147, \"rankvar\": 1931, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1207, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 138, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2312, \"group\": [2574.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42197_BALBc-1_X01_Y02_296_1001\", \"ini\": 1618, \"clust\": 379, \"rank\": 550, \"rankvar\": 772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1208, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 139, \"cat-2\": \"Density: 24\", \"cat_2_index\": 513, \"group\": [378.0, 230.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42211_BALBc-1_X01_Y02_296_251\", \"ini\": 1617, \"clust\": 33, \"rank\": 447, \"rankvar\": 2751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1209, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1208, \"cat-2\": \"Density: 26\", \"cat_2_index\": 797, \"group\": [30.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42305_BALBc-1_X01_Y02_297_639\", \"ini\": 1616, \"clust\": 144, \"rank\": 1742, \"rankvar\": 1958, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1210, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1209, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2075, \"group\": [144.0, 90.0, 24.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42319_BALBc-1_X01_Y02_297_804\", \"ini\": 1615, \"clust\": 486, \"rank\": 376, \"rankvar\": 1640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1211, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 902, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2373, \"group\": [487.0, 265.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42398_BALBc-1_X01_Y02_298_87\", \"ini\": 1614, \"clust\": 1736, \"rank\": 1806, \"rankvar\": 2008, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1212, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1210, \"cat-2\": \"Density: 24\", \"cat_2_index\": 514, \"group\": [1736.0, 755.0, 200.0, 54.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42612_BALBc-1_X01_Y02_300_601\", \"ini\": 1613, \"clust\": 2080, \"rank\": 1562, \"rankvar\": 668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1213, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 140, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2076, \"group\": [2083.0, 943.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42732_BALBc-1_X01_Y02_301_949\", \"ini\": 1612, \"clust\": 2578, \"rank\": 2077, \"rankvar\": 1233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1214, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 141, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1976, \"group\": [2578.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43120_BALBc-1_X01_Y02_307_419\", \"ini\": 1611, \"clust\": 1940, \"rank\": 1570, \"rankvar\": 2304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1215, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 903, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1662, \"group\": [1941.0, 833.0, 214.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43132_BALBc-1_X01_Y02_307_574\", \"ini\": 1610, \"clust\": 1772, \"rank\": 1376, \"rankvar\": 1504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1216, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 142, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1767, \"group\": [1775.0, 777.0, 206.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43153_BALBc-1_X01_Y02_307_973\", \"ini\": 1609, \"clust\": 368, \"rank\": 443, \"rankvar\": 1393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1217, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1211, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1528, \"group\": [368.0, 225.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43190_BALBc-1_X01_Y02_308_551\", \"ini\": 1608, \"clust\": 209, \"rank\": 1203, \"rankvar\": 2302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1218, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 143, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1977, \"group\": [215.0, 139.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43335_BALBc-1_X01_Y02_31_697\", \"ini\": 1607, \"clust\": 1665, \"rank\": 1190, \"rankvar\": 2690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1219, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2547, \"cat-2\": \"Density: 14\", \"cat_2_index\": 31, \"group\": [1666.0, 696.0, 178.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43610_BALBc-1_X01_Y02_313_207\", \"ini\": 1606, \"clust\": 1302, \"rank\": 2044, \"rankvar\": 1918, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1220, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1212, \"cat-2\": \"Density: 26\", \"cat_2_index\": 798, \"group\": [1304.0, 499.0, 123.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43667_BALBc-1_X01_Y02_313_928\", \"ini\": 1605, \"clust\": 2713, \"rank\": 2029, \"rankvar\": 2767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1221, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 144, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2440, \"group\": [2716.0, 1148.0, 297.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43786_BALBc-1_X01_Y02_315_720\", \"ini\": 1604, \"clust\": 688, \"rank\": 223, \"rankvar\": 545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1222, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1213, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2374, \"group\": [687.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43787_BALBc-1_X01_Y02_315_732\", \"ini\": 1603, \"clust\": 2573, \"rank\": 2363, \"rankvar\": 1953, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1223, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1994, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2441, \"group\": [2577.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43806_BALBc-1_X01_Y02_315_911\", \"ini\": 1602, \"clust\": 2226, \"rank\": 2369, \"rankvar\": 528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1224, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 145, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2657, \"group\": [2227.0, 1021.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43842_BALBc-1_X01_Y02_316_523\", \"ini\": 1601, \"clust\": 1816, \"rank\": 2705, \"rankvar\": 2271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1225, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 146, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2156, \"group\": [1817.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43849_BALBc-1_X01_Y02_316_620\", \"ini\": 1600, \"clust\": 1826, \"rank\": 2508, \"rankvar\": 2416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1226, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 147, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2157, \"group\": [1831.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43973_BALBc-1_X01_Y02_317_998\", \"ini\": 1599, \"clust\": 2552, \"rank\": 2514, \"rankvar\": 1552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1227, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 148, \"cat-2\": \"Density: 24\", \"cat_2_index\": 515, \"group\": [2550.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44048_BALBc-1_X01_Y02_318_852\", \"ini\": 1598, \"clust\": 150, \"rank\": 1373, \"rankvar\": 1193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1228, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 149, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2550, \"group\": [147.0, 92.0, 24.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44158_BALBc-1_X01_Y02_32_575\", \"ini\": 1597, \"clust\": 1310, \"rank\": 2509, \"rankvar\": 2218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1229, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 838, \"cat-2\": \"Density: 17\", \"cat_2_index\": 79, \"group\": [1310.0, 503.0, 124.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44319_BALBc-1_X01_Y02_321_675\", \"ini\": 1596, \"clust\": 2469, \"rank\": 1619, \"rankvar\": 1136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1230, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1214, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1978, \"group\": [2471.0, 1059.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44330_BALBc-1_X01_Y02_321_819\", \"ini\": 1595, \"clust\": 2302, \"rank\": 2512, \"rankvar\": 1967, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1231, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 904, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2442, \"group\": [2301.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44535_BALBc-1_X01_Y02_324_399\", \"ini\": 1594, \"clust\": 1182, \"rank\": 637, \"rankvar\": 600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1232, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 905, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1402, \"group\": [1183.0, 414.0, 94.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44544_BALBc-1_X01_Y02_324_471\", \"ini\": 1593, \"clust\": 1817, \"rank\": 2746, \"rankvar\": 2713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1233, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 150, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2158, \"group\": [1818.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44837_BALBc-1_X01_Y02_328_284\", \"ini\": 1592, \"clust\": 79, \"rank\": 1185, \"rankvar\": 1273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1234, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 906, \"cat-2\": \"Density: 26\", \"cat_2_index\": 799, \"group\": [80.0, 38.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44938_BALBc-1_X01_Y02_329_485\", \"ini\": 1591, \"clust\": 929, \"rank\": 632, \"rankvar\": 903, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1235, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 151, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2235, \"group\": [928.0, 337.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44940_BALBc-1_X01_Y02_329_520\", \"ini\": 1590, \"clust\": 2155, \"rank\": 1475, \"rankvar\": 1732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1236, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 152, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2236, \"group\": [2155.0, 980.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45002_BALBc-1_X01_Y02_33_176\", \"ini\": 1589, \"clust\": 300, \"rank\": 567, \"rankvar\": 1540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1237, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1968, \"cat-2\": \"Density: 19\", \"cat_2_index\": 120, \"group\": [301.0, 191.0, 56.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45143_BALBc-1_X01_Y02_331_141\", \"ini\": 1588, \"clust\": 1644, \"rank\": 1610, \"rankvar\": 2179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1238, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2454, \"cat-2\": \"Density: 24\", \"cat_2_index\": 516, \"group\": [1647.0, 680.0, 172.0, 42.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45181_BALBc-1_X01_Y02_331_563\", \"ini\": 1587, \"clust\": 2217, \"rank\": 2151, \"rankvar\": 1506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1239, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 153, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2077, \"group\": [2218.0, 1020.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45205_BALBc-1_X01_Y02_331_950\", \"ini\": 1586, \"clust\": 2687, \"rank\": 1229, \"rankvar\": 2084, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1240, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1215, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2237, \"group\": [2688.0, 1142.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45467_BALBc-1_X01_Y02_335_449\", \"ini\": 1585, \"clust\": 2067, \"rank\": 1252, \"rankvar\": 1849, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1241, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 154, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1768, \"group\": [2071.0, 935.0, 251.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45505_BALBc-1_X01_Y02_335_812\", \"ini\": 1584, \"clust\": 884, \"rank\": 1254, \"rankvar\": 461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1242, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 907, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2604, \"group\": [885.0, 322.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45513_BALBc-1_X01_Y02_335_880\", \"ini\": 1583, \"clust\": 861, \"rank\": 668, \"rankvar\": 128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1243, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 155, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2703, \"group\": [864.0, 312.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45549_BALBc-1_X01_Y02_336_399\", \"ini\": 1582, \"clust\": 468, \"rank\": 814, \"rankvar\": 146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1244, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 156, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1403, \"group\": [469.0, 262.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45699_BALBc-1_X01_Y02_338_596\", \"ini\": 1581, \"clust\": 147, \"rank\": 1679, \"rankvar\": 1859, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1245, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 157, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2375, \"group\": [145.0, 91.0, 24.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45736_BALBc-1_X01_Y02_338_994\", \"ini\": 1580, \"clust\": 882, \"rank\": 1660, \"rankvar\": 797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1246, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1216, \"cat-2\": \"Density: 26\", \"cat_2_index\": 800, \"group\": [883.0, 320.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45772_BALBc-1_X01_Y02_339_514\", \"ini\": 1579, \"clust\": 2814, \"rank\": 1502, \"rankvar\": 840, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1247, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 158, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2313, \"group\": [2815.0, 1194.0, 308.0, 82.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45887_BALBc-1_X01_Y02_340_11\", \"ini\": 1578, \"clust\": 807, \"rank\": 501, \"rankvar\": 819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1248, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2309, \"cat-2\": \"Density: 27\", \"cat_2_index\": 949, \"group\": [806.0, 291.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46022_BALBc-1_X01_Y02_341_760\", \"ini\": 1577, \"clust\": 143, \"rank\": 1623, \"rankvar\": 963, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1249, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 908, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2740, \"group\": [150.0, 94.0, 25.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46029_BALBc-1_X01_Y02_341_855\", \"ini\": 1576, \"clust\": 2277, \"rank\": 2701, \"rankvar\": 1695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1250, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 159, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2512, \"group\": [2280.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46196_BALBc-1_X01_Y02_344_268\", \"ini\": 1575, \"clust\": 203, \"rank\": 1042, \"rankvar\": 1896, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1251, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1217, \"cat-2\": \"Density: 25\", \"cat_2_index\": 659, \"group\": [204.0, 133.0, 43.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46287_BALBc-1_X01_Y02_345_339\", \"ini\": 1574, \"clust\": 513, \"rank\": 654, \"rankvar\": 672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1252, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 909, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1250, \"group\": [517.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46316_BALBc-1_X01_Y02_345_683\", \"ini\": 1573, \"clust\": 2301, \"rank\": 2164, \"rankvar\": 1458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1253, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1218, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2238, \"group\": [2303.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46325_BALBc-1_X01_Y02_345_783\", \"ini\": 1572, \"clust\": 2151, \"rank\": 1515, \"rankvar\": 976, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1254, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 910, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2551, \"group\": [2151.0, 978.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46464_BALBc-1_X01_Y02_347_433\", \"ini\": 1571, \"clust\": 2183, \"rank\": 1831, \"rankvar\": 1515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1255, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 160, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2078, \"group\": [2184.0, 1000.0, 267.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46599_BALBc-1_X01_Y02_349_408\", \"ini\": 1570, \"clust\": 426, \"rank\": 665, \"rankvar\": 1280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1256, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2548, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1529, \"group\": [430.0, 250.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46604_BALBc-1_X01_Y02_349_467\", \"ini\": 1569, \"clust\": 2246, \"rank\": 2792, \"rankvar\": 2405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1257, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 161, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2159, \"group\": [2246.0, 1026.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46653_BALBc-1_X01_Y02_349_905\", \"ini\": 1568, \"clust\": 2190, \"rank\": 2433, \"rankvar\": 2175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1258, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1563, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2741, \"group\": [2192.0, 1003.0, 268.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46659_BALBc-1_X01_Y02_349_959\", \"ini\": 1567, \"clust\": 2514, \"rank\": 1769, \"rankvar\": 1149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1259, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1219, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1979, \"group\": [2519.0, 1082.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46698_BALBc-1_X01_Y02_35_602\", \"ini\": 1566, \"clust\": 2165, \"rank\": 1559, \"rankvar\": 1873, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1260, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 162, \"cat-2\": \"Density: 18\", \"cat_2_index\": 96, \"group\": [2165.0, 983.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46751_BALBc-1_X01_Y02_350_379\", \"ini\": 1565, \"clust\": 1863, \"rank\": 2479, \"rankvar\": 1690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1261, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 911, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1251, \"group\": [1862.0, 800.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46910_BALBc-1_X01_Y02_352_503\", \"ini\": 1564, \"clust\": 450, \"rank\": 84, \"rankvar\": 920, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1262, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 163, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2443, \"group\": [449.0, 258.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46947_BALBc-1_X01_Y02_352_937\", \"ini\": 1563, \"clust\": 140, \"rank\": 1349, \"rankvar\": 631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1263, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 164, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2376, \"group\": [139.0, 88.0, 23.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47001_BALBc-1_X01_Y02_353_565\", \"ini\": 1562, \"clust\": 2379, \"rank\": 2251, \"rankvar\": 1457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1264, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 165, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2444, \"group\": [2379.0, 1036.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47004_BALBc-1_X01_Y02_353_639\", \"ini\": 1561, \"clust\": 2247, \"rank\": 2776, \"rankvar\": 2508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1265, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 166, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2377, \"group\": [2247.0, 1026.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47226_BALBc-1_X01_Y02_356_521\", \"ini\": 1560, \"clust\": 2252, \"rank\": 2759, \"rankvar\": 2756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1266, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 167, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2239, \"group\": [2251.0, 1027.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47251_BALBc-1_X01_Y02_356_828\", \"ini\": 1559, \"clust\": 130, \"rank\": 929, \"rankvar\": 1662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1267, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 168, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2445, \"group\": [128.0, 79.0, 20.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47374_BALBc-1_X01_Y02_358_677\", \"ini\": 1558, \"clust\": 1060, \"rank\": 100, \"rankvar\": 669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1268, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 169, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2314, \"group\": [1066.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47389_BALBc-1_X01_Y02_358_844\", \"ini\": 1557, \"clust\": 918, \"rank\": 1025, \"rankvar\": 340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1269, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 170, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2605, \"group\": [919.0, 334.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47513_BALBc-1_X01_Y02_36_798\", \"ini\": 1556, \"clust\": 1931, \"rank\": 2463, \"rankvar\": 2122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1270, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1750, \"cat-2\": \"Density: 19\", \"cat_2_index\": 121, \"group\": [1932.0, 827.0, 213.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47658_BALBc-1_X01_Y02_361_808\", \"ini\": 1555, \"clust\": 919, \"rank\": 790, \"rankvar\": 1143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1271, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1995, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2552, \"group\": [920.0, 334.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47694_BALBc-1_X01_Y02_362_294\", \"ini\": 1554, \"clust\": 958, \"rank\": 250, \"rankvar\": 1080, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1272, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2549, \"cat-2\": \"Density: 23\", \"cat_2_index\": 401, \"group\": [958.0, 348.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47867_BALBc-1_X01_Y02_364_621\", \"ini\": 1553, \"clust\": 916, \"rank\": 523, \"rankvar\": 1347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1273, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 171, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2315, \"group\": [914.0, 333.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47897_BALBc-1_X01_Y02_364_854\", \"ini\": 1552, \"clust\": 709, \"rank\": 45, \"rankvar\": 1155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1274, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 172, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2800, \"group\": [711.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47915_BALBc-1_X01_Y02_365_14\", \"ini\": 1551, \"clust\": 484, \"rank\": 133, \"rankvar\": 1170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1275, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2550, \"cat-2\": \"Density: 24\", \"cat_2_index\": 517, \"group\": [482.0, 265.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48021_BALBc-1_X01_Y02_366_342\", \"ini\": 1550, \"clust\": 1803, \"rank\": 2640, \"rankvar\": 2571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1276, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2551, \"cat-2\": \"Density: 27\", \"cat_2_index\": 950, \"group\": [1804.0, 791.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48025_BALBc-1_X01_Y02_366_428\", \"ini\": 1549, \"clust\": 848, \"rank\": 521, \"rankvar\": 794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1277, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2552, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1871, \"group\": [849.0, 306.0, 71.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48215_BALBc-1_X01_Y02_368_757\", \"ini\": 1548, \"clust\": 2446, \"rank\": 1999, \"rankvar\": 2389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1278, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1996, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2606, \"group\": [2446.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48507_BALBc-1_X01_Y02_371_768\", \"ini\": 1547, \"clust\": 2777, \"rank\": 2452, \"rankvar\": 767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1279, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1997, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2742, \"group\": [2777.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48580_BALBc-1_X01_Y02_372_677\", \"ini\": 1546, \"clust\": 2331, \"rank\": 2588, \"rankvar\": 2540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1280, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 173, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2378, \"group\": [2330.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48668_BALBc-1_X01_Y02_373_878\", \"ini\": 1545, \"clust\": 2539, \"rank\": 2449, \"rankvar\": 2231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1281, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1564, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2553, \"group\": [2560.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48752_BALBc-1_X01_Y02_374_953\", \"ini\": 1544, \"clust\": 1024, \"rank\": 329, \"rankvar\": 5, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1282, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 174, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1980, \"group\": [1026.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48829_BALBc-1_X01_Y02_375_937\", \"ini\": 1543, \"clust\": 2742, \"rank\": 2329, \"rankvar\": 2479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1283, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1565, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2316, \"group\": [2740.0, 1166.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48836_BALBc-1_X01_Y02_375_988\", \"ini\": 1542, \"clust\": 2614, \"rank\": 1913, \"rankvar\": 1556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1284, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1220, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1103, \"group\": [2613.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48875_BALBc-1_X01_Y02_376_577\", \"ini\": 1541, \"clust\": 2453, \"rank\": 1370, \"rankvar\": 1753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1285, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 175, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1872, \"group\": [2454.0, 1057.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49022_BALBc-1_X01_Y02_378_546\", \"ini\": 1540, \"clust\": 168, \"rank\": 1521, \"rankvar\": 453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1286, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2553, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2446, \"group\": [168.0, 110.0, 33.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49038_BALBc-1_X01_Y02_378_703\", \"ini\": 1539, \"clust\": 1025, \"rank\": 308, \"rankvar\": 225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1287, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1998, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2447, \"group\": [1024.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49110_BALBc-1_X01_Y02_379_604\", \"ini\": 1538, \"clust\": 2293, \"rank\": 2337, \"rankvar\": 1239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1288, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 176, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2513, \"group\": [2297.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49158_BALBc-1_X01_Y02_38_459\", \"ini\": 1537, \"clust\": 1294, \"rank\": 2636, \"rankvar\": 2786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1289, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2310, \"cat-2\": \"Density: 21\", \"cat_2_index\": 207, \"group\": [1296.0, 494.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49214_BALBc-1_X01_Y02_380_267\", \"ini\": 1536, \"clust\": 208, \"rank\": 1076, \"rankvar\": 471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1290, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1221, \"cat-2\": \"Density: 24\", \"cat_2_index\": 518, \"group\": [209.0, 137.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49503_BALBc-1_X01_Y02_383_640\", \"ini\": 1535, \"clust\": 2309, \"rank\": 2510, \"rankvar\": 2717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1291, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 177, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2448, \"group\": [2315.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49514_BALBc-1_X01_Y02_383_738\", \"ini\": 1534, \"clust\": 887, \"rank\": 977, \"rankvar\": 487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1292, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1999, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2607, \"group\": [887.0, 323.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49654_BALBc-1_X01_Y02_385_588\", \"ini\": 1533, \"clust\": 2425, \"rank\": 1965, \"rankvar\": 1711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1293, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 178, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2240, \"group\": [2425.0, 1051.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49736_BALBc-1_X01_Y02_386_473\", \"ini\": 1532, \"clust\": 2441, \"rank\": 2582, \"rankvar\": 2670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1294, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 179, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2241, \"group\": [2441.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49747_BALBc-1_X01_Y02_386_572\", \"ini\": 1531, \"clust\": 1094, \"rank\": 385, \"rankvar\": 1230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1295, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2554, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2379, \"group\": [1097.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49822_BALBc-1_X01_Y02_387_448\", \"ini\": 1530, \"clust\": 923, \"rank\": 817, \"rankvar\": 311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1296, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 839, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1981, \"group\": [921.0, 335.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50058_BALBc-1_X01_Y02_39_628\", \"ini\": 1529, \"clust\": 260, \"rank\": 1189, \"rankvar\": 1868, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1297, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1222, \"cat-2\": \"Density: 16\", \"cat_2_index\": 60, \"group\": [263.0, 164.0, 48.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50084_BALBc-1_X01_Y02_39_93\", \"ini\": 1528, \"clust\": 1009, \"rank\": 529, \"rankvar\": 585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1298, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1969, \"cat-2\": \"Density: 17\", \"cat_2_index\": 80, \"group\": [1009.0, 365.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50363_BALBc-1_X01_Y02_393_824\", \"ini\": 1527, \"clust\": 708, \"rank\": 157, \"rankvar\": 1303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1299, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2000, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2514, \"group\": [706.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50468_BALBc-1_X01_Y02_395_251\", \"ini\": 1526, \"clust\": 745, \"rank\": 227, \"rankvar\": 38, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1300, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1223, \"cat-2\": \"Density: 27\", \"cat_2_index\": 951, \"group\": [744.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50654_BALBc-1_X01_Y02_397_653\", \"ini\": 1525, \"clust\": 2083, \"rank\": 1763, \"rankvar\": 982, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1301, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 180, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2449, \"group\": [2084.0, 944.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50678_BALBc-1_X01_Y02_397_965\", \"ini\": 1524, \"clust\": 1724, \"rank\": 1899, \"rankvar\": 541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1302, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 181, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1873, \"group\": [1725.0, 744.0, 194.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50749_BALBc-1_X01_Y02_398_842\", \"ini\": 1523, \"clust\": 2279, \"rank\": 2699, \"rankvar\": 1803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1303, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 182, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2450, \"group\": [2279.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50801_BALBc-1_X01_Y02_399_479\", \"ini\": 1522, \"clust\": 2815, \"rank\": 1628, \"rankvar\": 970, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1304, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 183, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2160, \"group\": [2816.0, 1195.0, 308.0, 82.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50842_BALBc-1_X01_Y02_399_873\", \"ini\": 1521, \"clust\": 1068, \"rank\": 228, \"rankvar\": 509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1305, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 184, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2554, \"group\": [1067.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50850_BALBc-1_X01_Y02_399_955\", \"ini\": 1520, \"clust\": 137, \"rank\": 839, \"rankvar\": 1881, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1306, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 185, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2161, \"group\": [137.0, 86.0, 23.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51102_BALBc-1_X01_Y02_401_718\", \"ini\": 1519, \"clust\": 2607, \"rank\": 1937, \"rankvar\": 1293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1307, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2001, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2555, \"group\": [2606.0, 1093.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51108_BALBc-1_X01_Y02_401_770\", \"ini\": 1518, \"clust\": 683, \"rank\": 207, \"rankvar\": 260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1308, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2002, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2743, \"group\": [684.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51160_BALBc-1_X01_Y02_402_614\", \"ini\": 1517, \"clust\": 2187, \"rank\": 2549, \"rankvar\": 2568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1309, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 186, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2317, \"group\": [2188.0, 1002.0, 268.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51170_BALBc-1_X01_Y02_402_685\", \"ini\": 1516, \"clust\": 701, \"rank\": 389, \"rankvar\": 1150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1310, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 187, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2451, \"group\": [701.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51249_BALBc-1_X01_Y02_403_900\", \"ini\": 1515, \"clust\": 386, \"rank\": 409, \"rankvar\": 328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1311, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1566, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2556, \"group\": [385.0, 232.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51335_BALBc-1_X01_Y02_404_940\", \"ini\": 1514, \"clust\": 2775, \"rank\": 2191, \"rankvar\": 1489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1312, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1567, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2242, \"group\": [2774.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51490_BALBc-1_X01_Y02_406_791\", \"ini\": 1513, \"clust\": 2421, \"rank\": 1946, \"rankvar\": 1974, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1313, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2003, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2608, \"group\": [2422.0, 1051.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51601_BALBc-1_X01_Y02_408_107\", \"ini\": 1512, \"clust\": 466, \"rank\": 313, \"rankvar\": 1114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1314, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2311, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1104, \"group\": [466.0, 261.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51695_BALBc-1_X01_Y02_409_238\", \"ini\": 1511, \"clust\": 1256, \"rank\": 1902, \"rankvar\": 1756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1315, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1224, \"cat-2\": \"Density: 26\", \"cat_2_index\": 801, \"group\": [1257.0, 470.0, 114.0, 29.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51890_BALBc-1_X01_Y02_410_582\", \"ini\": 1510, \"clust\": 1173, \"rank\": 1564, \"rankvar\": 115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1316, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 188, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1982, \"group\": [1174.0, 408.0, 91.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51921_BALBc-1_X01_Y02_411_121\", \"ini\": 1509, \"clust\": 352, \"rank\": 572, \"rankvar\": 1496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1317, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 840, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1404, \"group\": [352.0, 220.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51976_BALBc-1_X01_Y02_411_847\", \"ini\": 1508, \"clust\": 2303, \"rank\": 2387, \"rankvar\": 1614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1318, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 189, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2609, \"group\": [2302.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52269_BALBc-1_X01_Y02_415_277\", \"ini\": 1507, \"clust\": 1602, \"rank\": 813, \"rankvar\": 1535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1319, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 621, \"cat-2\": \"Density: 27\", \"cat_2_index\": 952, \"group\": [1602.0, 642.0, 156.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52299_BALBc-1_X01_Y02_415_694\", \"ini\": 1506, \"clust\": 2108, \"rank\": 1348, \"rankvar\": 1561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1320, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 190, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2658, \"group\": [2104.0, 950.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52362_BALBc-1_X01_Y02_416_643\", \"ini\": 1505, \"clust\": 2294, \"rank\": 2498, \"rankvar\": 2183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1321, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 191, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2452, \"group\": [2296.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52446_BALBc-1_X01_Y02_417_9\", \"ini\": 1504, \"clust\": 76, \"rank\": 734, \"rankvar\": 1127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1322, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2242, \"cat-2\": \"Density: 27\", \"cat_2_index\": 953, \"group\": [76.0, 36.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52574_BALBc-1_X01_Y02_419_463\", \"ini\": 1503, \"clust\": 1066, \"rank\": 222, \"rankvar\": 665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1323, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 841, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2243, \"group\": [1070.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52615_BALBc-1_X01_Y02_419_921\", \"ini\": 1502, \"clust\": 2475, \"rank\": 1593, \"rankvar\": 757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1324, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1568, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2453, \"group\": [2476.0, 1064.0, 276.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52720_BALBc-1_X01_Y02_420_41\", \"ini\": 1501, \"clust\": 302, \"rank\": 588, \"rankvar\": 1897, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1325, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2312, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1405, \"group\": [300.0, 191.0, 56.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52738_BALBc-1_X01_Y02_420_619\", \"ini\": 1500, \"clust\": 364, \"rank\": 872, \"rankvar\": 1406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1326, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 192, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2380, \"group\": [364.0, 224.0, 63.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52831_BALBc-1_X01_Y02_421_884\", \"ini\": 1499, \"clust\": 1045, \"rank\": 737, \"rankvar\": 255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1327, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 193, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2557, \"group\": [1046.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52841_BALBc-1_X01_Y02_421_966\", \"ini\": 1498, \"clust\": 871, \"rank\": 589, \"rankvar\": 629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1328, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 194, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1769, \"group\": [870.0, 314.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52887_BALBc-1_X01_Y02_422_566\", \"ini\": 1497, \"clust\": 906, \"rank\": 967, \"rankvar\": 741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1329, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2555, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2162, \"group\": [906.0, 331.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52914_BALBc-1_X01_Y02_422_826\", \"ini\": 1496, \"clust\": 2328, \"rank\": 2491, \"rankvar\": 2249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1330, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 195, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2454, \"group\": [2327.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52954_BALBc-1_X01_Y02_423_373\", \"ini\": 1495, \"clust\": 1789, \"rank\": 2648, \"rankvar\": 1581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1331, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2556, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1530, \"group\": [1790.0, 787.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52986_BALBc-1_X01_Y02_423_804\", \"ini\": 1494, \"clust\": 846, \"rank\": 860, \"rankvar\": 1218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1332, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 912, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2659, \"group\": [847.0, 304.0, 71.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53029_BALBc-1_X01_Y02_424_444\", \"ini\": 1493, \"clust\": 2499, \"rank\": 1903, \"rankvar\": 1715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1333, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 842, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2079, \"group\": [2503.0, 1076.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53035_BALBc-1_X01_Y02_424_524\", \"ini\": 1492, \"clust\": 2161, \"rank\": 1764, \"rankvar\": 1380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1334, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2557, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2381, \"group\": [2162.0, 983.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53103_BALBc-1_X01_Y02_425_394\", \"ini\": 1491, \"clust\": 271, \"rank\": 862, \"rankvar\": 1291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1335, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2558, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1663, \"group\": [272.0, 172.0, 51.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53160_BALBc-1_X01_Y02_426_216\", \"ini\": 1490, \"clust\": 1063, \"rank\": 91, \"rankvar\": 523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1336, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1225, \"cat-2\": \"Density: 27\", \"cat_2_index\": 954, \"group\": [1063.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53185_BALBc-1_X01_Y02_426_493\", \"ini\": 1489, \"clust\": 2333, \"rank\": 2487, \"rankvar\": 2477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1337, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2004, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2382, \"group\": [2333.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53235_BALBc-1_X01_Y02_426_993\", \"ini\": 1488, \"clust\": 2796, \"rank\": 2808, \"rankvar\": 2777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1338, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1226, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1105, \"group\": [2795.0, 1179.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53488_BALBc-1_X01_Y02_43_189\", \"ini\": 1487, \"clust\": 1389, \"rank\": 2313, \"rankvar\": 2229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1339, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2490, \"cat-2\": \"Density: 20\", \"cat_2_index\": 157, \"group\": [1392.0, 546.0, 137.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53513_BALBc-1_X01_Y02_43_535\", \"ini\": 1486, \"clust\": 2035, \"rank\": 2078, \"rankvar\": 1494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1340, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 843, \"cat-2\": \"Density: 24\", \"cat_2_index\": 519, \"group\": [2041.0, 910.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53632_BALBc-1_X01_Y02_430_943\", \"ini\": 1485, \"clust\": 1082, \"rank\": 546, \"rankvar\": 1244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1341, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 196, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2244, \"group\": [1082.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53680_BALBc-1_X01_Y02_431_592\", \"ini\": 1484, \"clust\": 2324, \"rank\": 2720, \"rankvar\": 2783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1342, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2005, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2245, \"group\": [2326.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53775_BALBc-1_X01_Y02_432_719\", \"ini\": 1483, \"clust\": 2228, \"rank\": 2198, \"rankvar\": 1228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1343, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2006, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2660, \"group\": [2229.0, 1021.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54002_BALBc-1_X01_Y02_435_644\", \"ini\": 1482, \"clust\": 910, \"rank\": 1085, \"rankvar\": 118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1344, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 197, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2610, \"group\": [913.0, 332.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54089_BALBc-1_X01_Y02_436_868\", \"ini\": 1481, \"clust\": 2203, \"rank\": 2141, \"rankvar\": 1589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1345, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 198, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2661, \"group\": [2206.0, 1014.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54172_BALBc-1_X01_Y02_437_824\", \"ini\": 1480, \"clust\": 1658, \"rank\": 2001, \"rankvar\": 2334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1346, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2007, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2455, \"group\": [1658.0, 689.0, 176.0, 44.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54244_BALBc-1_X01_Y02_438_683\", \"ini\": 1479, \"clust\": 2435, \"rank\": 2233, \"rankvar\": 2132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1347, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2008, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2558, \"group\": [2436.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54404_BALBc-1_X01_Y02_44_835\", \"ini\": 1478, \"clust\": 1670, \"rank\": 1462, \"rankvar\": 2012, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1348, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1227, \"cat-2\": \"Density: 21\", \"cat_2_index\": 208, \"group\": [1673.0, 700.0, 178.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54437_BALBc-1_X01_Y02_440_316\", \"ini\": 1477, \"clust\": 1076, \"rank\": 334, \"rankvar\": 666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1349, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2559, \"cat-2\": \"Density: 25\", \"cat_2_index\": 660, \"group\": [1077.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54530_BALBc-1_X01_Y02_441_532\", \"ini\": 1476, \"clust\": 1885, \"rank\": 2136, \"rankvar\": 2485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1350, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2009, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2383, \"group\": [1886.0, 807.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54679_BALBc-1_X01_Y02_443_444\", \"ini\": 1475, \"clust\": 2806, \"rank\": 937, \"rankvar\": 1277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1351, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 199, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1874, \"group\": [2807.0, 1188.0, 307.0, 82.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54837_BALBc-1_X01_Y02_445_603\", \"ini\": 1474, \"clust\": 2372, \"rank\": 2332, \"rankvar\": 2539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1352, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 200, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2456, \"group\": [2373.0, 1036.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54860_BALBc-1_X01_Y02_445_91\", \"ini\": 1473, \"clust\": 35, \"rank\": 1041, \"rankvar\": 1595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1353, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2313, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1252, \"group\": [38.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54974_BALBc-1_X01_Y02_447_354\", \"ini\": 1472, \"clust\": 283, \"rank\": 289, \"rankvar\": 2105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1354, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2560, \"cat-2\": \"Density: 26\", \"cat_2_index\": 802, \"group\": [282.0, 178.0, 52.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55065_BALBc-1_X01_Y02_448_466\", \"ini\": 1471, \"clust\": 728, \"rank\": 130, \"rankvar\": 50, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1355, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2010, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2163, \"group\": [726.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55103_BALBc-1_X01_Y02_448_891\", \"ini\": 1470, \"clust\": 232, \"rank\": 579, \"rankvar\": 1349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1356, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2011, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2559, \"group\": [235.0, 146.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55107_BALBc-1_X01_Y02_448_964\", \"ini\": 1469, \"clust\": 2082, \"rank\": 1386, \"rankvar\": 580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1357, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 201, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1983, \"group\": [2082.0, 943.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55165_BALBc-1_X01_Y02_449_995\", \"ini\": 1468, \"clust\": 2750, \"rank\": 2431, \"rankvar\": 2815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1358, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1228, \"cat-2\": \"Density: 25\", \"cat_2_index\": 661, \"group\": [2749.0, 1170.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55457_BALBc-1_X01_Y02_452_827\", \"ini\": 1467, \"clust\": 2357, \"rank\": 2769, \"rankvar\": 2715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1359, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2012, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2662, \"group\": [2369.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55626_BALBc-1_X01_Y02_454_938\", \"ini\": 1466, \"clust\": 2579, \"rank\": 1952, \"rankvar\": 1088, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1360, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 202, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2318, \"group\": [2579.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55632_BALBc-1_X01_Y02_455_133\", \"ini\": 1465, \"clust\": 1296, \"rank\": 2035, \"rankvar\": 2155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1361, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1229, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1253, \"group\": [1295.0, 493.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55682_BALBc-1_X01_Y02_455_662\", \"ini\": 1464, \"clust\": 907, \"rank\": 662, \"rankvar\": 1065, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1362, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2013, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2457, \"group\": [907.0, 331.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55975_BALBc-1_X01_Y02_459_725\", \"ini\": 1463, \"clust\": 2389, \"rank\": 2725, \"rankvar\": 2431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1363, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 913, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2611, \"group\": [2389.0, 1038.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55987_BALBc-1_X01_Y02_459_856\", \"ini\": 1462, \"clust\": 2094, \"rank\": 1635, \"rankvar\": 991, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1364, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2014, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2384, \"group\": [2098.0, 948.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56102_BALBc-1_X01_Y02_460_412\", \"ini\": 1461, \"clust\": 1719, \"rank\": 2503, \"rankvar\": 2806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1365, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2811, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1875, \"group\": [1717.0, 739.0, 193.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56118_BALBc-1_X01_Y02_460_632\", \"ini\": 1460, \"clust\": 2135, \"rank\": 1545, \"rankvar\": 723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1366, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 203, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2515, \"group\": [2134.0, 967.0, 258.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56299_BALBc-1_X01_Y02_462_698\", \"ini\": 1459, \"clust\": 905, \"rank\": 808, \"rankvar\": 796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1367, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2015, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2516, \"group\": [908.0, 331.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56546_BALBc-1_X01_Y02_466_18\", \"ini\": 1458, \"clust\": 118, \"rank\": 982, \"rankvar\": 1219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1368, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1551, \"cat-2\": \"Density: 27\", \"cat_2_index\": 955, \"group\": [119.0, 70.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56758_BALBc-1_X01_Y02_468_767\", \"ini\": 1457, \"clust\": 2390, \"rank\": 2813, \"rankvar\": 2746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1369, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 914, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2744, \"group\": [2387.0, 1038.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56777_BALBc-1_X01_Y02_469_107\", \"ini\": 1456, \"clust\": 325, \"rank\": 639, \"rankvar\": 1994, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1370, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 844, \"cat-2\": \"Density: 26\", \"cat_2_index\": 803, \"group\": [326.0, 204.0, 59.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56993_BALBc-1_X01_Y02_470_811\", \"ini\": 1455, \"clust\": 2103, \"rank\": 1052, \"rankvar\": 618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1371, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2016, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2663, \"group\": [2101.0, 950.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57236_BALBc-1_X01_Y02_474_156\", \"ini\": 1454, \"clust\": 159, \"rank\": 999, \"rankvar\": 1750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1372, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 845, \"cat-2\": \"Density: 23\", \"cat_2_index\": 402, \"group\": [158.0, 102.0, 29.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57266_BALBc-1_X01_Y02_474_476\", \"ini\": 1453, \"clust\": 2245, \"rank\": 2655, \"rankvar\": 2255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1373, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2017, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2246, \"group\": [2248.0, 1026.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57317_BALBc-1_X01_Y02_475_174\", \"ini\": 1452, \"clust\": 71, \"rank\": 1286, \"rankvar\": 702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1374, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1230, \"cat-2\": \"Density: 26\", \"cat_2_index\": 804, \"group\": [71.0, 33.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57390_BALBc-1_X01_Y02_475_992\", \"ini\": 1451, \"clust\": 2549, \"rank\": 2590, \"rankvar\": 1524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1375, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1231, \"cat-2\": \"Density: 26\", \"cat_2_index\": 805, \"group\": [2547.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57421_BALBc-1_X01_Y02_476_442\", \"ini\": 1450, \"clust\": 2114, \"rank\": 1384, \"rankvar\": 1654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1376, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 204, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2247, \"group\": [2113.0, 956.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57434_BALBc-1_X01_Y02_476_544\", \"ini\": 1449, \"clust\": 2313, \"rank\": 2600, \"rankvar\": 2789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1377, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2018, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2319, \"group\": [2310.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57441_BALBc-1_X01_Y02_476_598\", \"ini\": 1448, \"clust\": 453, \"rank\": 484, \"rankvar\": 1078, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1378, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 205, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2385, \"group\": [455.0, 259.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57487_BALBc-1_X01_Y02_477_186\", \"ini\": 1447, \"clust\": 160, \"rank\": 1182, \"rankvar\": 2346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1379, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1232, \"cat-2\": \"Density: 24\", \"cat_2_index\": 520, \"group\": [159.0, 102.0, 29.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57490_BALBc-1_X01_Y02_477_220\", \"ini\": 1446, \"clust\": 222, \"rank\": 435, \"rankvar\": 1566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1380, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1233, \"cat-2\": \"Density: 23\", \"cat_2_index\": 403, \"group\": [221.0, 140.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57549_BALBc-1_X01_Y02_477_962\", \"ini\": 1445, \"clust\": 402, \"rank\": 727, \"rankvar\": 997, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1381, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 206, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1984, \"group\": [405.0, 240.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57571_BALBc-1_X01_Y02_478_269\", \"ini\": 1444, \"clust\": 1012, \"rank\": 386, \"rankvar\": 589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1382, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1234, \"cat-2\": \"Density: 24\", \"cat_2_index\": 521, \"group\": [1012.0, 366.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57683_BALBc-1_X01_Y02_479_571\", \"ini\": 1443, \"clust\": 2338, \"rank\": 2653, \"rankvar\": 2452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1383, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2019, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2560, \"group\": [2340.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57835_BALBc-1_X01_Y02_480_722\", \"ini\": 1442, \"clust\": 888, \"rank\": 894, \"rankvar\": 214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1384, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 207, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2517, \"group\": [888.0, 323.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57878_BALBc-1_X01_Y02_481_244\", \"ini\": 1441, \"clust\": 1600, \"rank\": 767, \"rankvar\": 2163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1385, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1235, \"cat-2\": \"Density: 22\", \"cat_2_index\": 288, \"group\": [1603.0, 642.0, 156.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58001_BALBc-1_X01_Y02_482_917\", \"ini\": 1440, \"clust\": 2262, \"rank\": 2264, \"rankvar\": 1250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1386, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2020, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2801, \"group\": [2264.0, 1032.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58043_BALBc-1_X01_Y02_483_520\", \"ini\": 1439, \"clust\": 188, \"rank\": 1015, \"rankvar\": 1201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1387, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2021, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2080, \"group\": [189.0, 126.0, 41.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58156_BALBc-1_X01_Y02_484_753\", \"ini\": 1438, \"clust\": 947, \"rank\": 973, \"rankvar\": 1377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1388, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2022, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2704, \"group\": [947.0, 343.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58206_BALBc-1_X01_Y02_485_407\", \"ini\": 1437, \"clust\": 1058, \"rank\": 238, \"rankvar\": 205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1389, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2023, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1531, \"group\": [1059.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58226_BALBc-1_X01_Y02_485_621\", \"ini\": 1436, \"clust\": 133, \"rank\": 1070, \"rankvar\": 1687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1390, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 208, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2081, \"group\": [135.0, 84.0, 21.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58228_BALBc-1_X01_Y02_485_649\", \"ini\": 1435, \"clust\": 2332, \"rank\": 2598, \"rankvar\": 2534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1391, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1236, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2248, \"group\": [2331.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58327_BALBc-1_X01_Y02_486_99\", \"ini\": 1434, \"clust\": 1242, \"rank\": 986, \"rankvar\": 1015, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1392, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1655, \"cat-2\": \"Density: 27\", \"cat_2_index\": 956, \"group\": [1243.0, 457.0, 108.0, 26.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58359_BALBc-1_X01_Y02_487_496\", \"ini\": 1433, \"clust\": 2443, \"rank\": 2330, \"rankvar\": 2399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1393, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2024, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2082, \"group\": [2444.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58404_BALBc-1_X01_Y02_487_980\", \"ini\": 1432, \"clust\": 634, \"rank\": 16, \"rankvar\": 475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1394, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 209, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1664, \"group\": [630.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58545_BALBc-1_X01_Y02_489_773\", \"ini\": 1431, \"clust\": 2236, \"rank\": 2142, \"rankvar\": 820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1395, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2025, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2518, \"group\": [2239.0, 1022.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58554_BALBc-1_X01_Y02_489_847\", \"ini\": 1430, \"clust\": 2349, \"rank\": 2471, \"rankvar\": 1857, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1396, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2026, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2705, \"group\": [2350.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58565_BALBc-1_X01_Y02_489_942\", \"ini\": 1429, \"clust\": 2479, \"rank\": 2040, \"rankvar\": 704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1397, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 210, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2519, \"group\": [2480.0, 1068.0, 278.0, 75.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58586_BALBc-1_X01_Y02_49_255\", \"ini\": 1428, \"clust\": 319, \"rank\": 678, \"rankvar\": 1120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1398, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1237, \"cat-2\": \"Density: 18\", \"cat_2_index\": 97, \"group\": [319.0, 200.0, 58.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58666_BALBc-1_X01_Y02_490_220\", \"ini\": 1427, \"clust\": 1334, \"rank\": 1754, \"rankvar\": 884, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1399, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 211, \"cat-2\": \"Density: 23\", \"cat_2_index\": 404, \"group\": [1338.0, 522.0, 131.0, 33.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58836_BALBc-1_X01_Y02_492_696\", \"ini\": 1426, \"clust\": 2263, \"rank\": 2135, \"rankvar\": 868, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1400, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2027, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2612, \"group\": [2262.0, 1032.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58842_BALBc-1_X01_Y02_492_801\", \"ini\": 1425, \"clust\": 1164, \"rank\": 1117, \"rankvar\": 1374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1401, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2028, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2458, \"group\": [1164.0, 398.0, 85.0, 19.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59277_BALBc-1_X01_Y02_497_952\", \"ini\": 1424, \"clust\": 2157, \"rank\": 1848, \"rankvar\": 736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1402, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2029, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1985, \"group\": [2158.0, 982.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59332_BALBc-1_X01_Y02_498_722\", \"ini\": 1423, \"clust\": 914, \"rank\": 689, \"rankvar\": 898, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1403, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2030, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2520, \"group\": [917.0, 333.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59402_BALBc-1_X01_Y02_499_631\", \"ini\": 1422, \"clust\": 2113, \"rank\": 1627, \"rankvar\": 1396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1404, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2031, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2249, \"group\": [2115.0, 956.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59433_BALBc-1_X01_Y02_499_987\", \"ini\": 1421, \"clust\": 2370, \"rank\": 2632, \"rankvar\": 2463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1405, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2032, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1254, \"group\": [2370.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59455_BALBc-1_X01_Y02_5_514\", \"ini\": 1420, \"clust\": 2472, \"rank\": 2064, \"rankvar\": 1819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1406, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 846, \"cat-2\": \"Density: 13\", \"cat_2_index\": 19, \"group\": [2473.0, 1061.0, 275.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59697_BALBc-1_X01_Y02_502_382\", \"ini\": 1419, \"clust\": 1113, \"rank\": 472, \"rankvar\": 813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1407, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2561, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1255, \"group\": [1113.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59815_BALBc-1_X01_Y02_504_15\", \"ini\": 1418, \"clust\": 250, \"rank\": 715, \"rankvar\": 179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1408, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1970, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1106, \"group\": [253.0, 158.0, 47.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60055_BALBc-1_X01_Y02_507_1005\", \"ini\": 1417, \"clust\": 2367, \"rank\": 2750, \"rankvar\": 2590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1409, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 212, \"cat-2\": \"Density: 26\", \"cat_2_index\": 806, \"group\": [2364.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60088_BALBc-1_X01_Y02_507_454\", \"ini\": 1416, \"clust\": 2458, \"rank\": 2100, \"rankvar\": 2676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1410, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 213, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1876, \"group\": [2457.0, 1058.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60268_BALBc-1_X01_Y02_509_70\", \"ini\": 1415, \"clust\": 1015, \"rank\": 335, \"rankvar\": 406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1411, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1656, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1107, \"group\": [1014.0, 366.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60435_BALBc-1_X01_Y02_510_900\", \"ini\": 1414, \"clust\": 2373, \"rank\": 2664, \"rankvar\": 2589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1412, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2033, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2664, \"group\": [2374.0, 1036.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60513_BALBc-1_X01_Y02_511_842\", \"ini\": 1413, \"clust\": 2105, \"rank\": 1083, \"rankvar\": 1111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1413, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 214, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2613, \"group\": [2106.0, 950.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60591_BALBc-1_X01_Y02_512_878\", \"ini\": 1412, \"clust\": 1089, \"rank\": 395, \"rankvar\": 1590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1414, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2034, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2561, \"group\": [1088.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60694_BALBc-1_X01_Y02_514_485\", \"ini\": 1411, \"clust\": 2476, \"rank\": 1794, \"rankvar\": 1225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1415, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2035, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2459, \"group\": [2477.0, 1065.0, 277.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60776_BALBc-1_X01_Y02_515_521\", \"ini\": 1410, \"clust\": 2450, \"rank\": 2065, \"rankvar\": 2724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1416, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 215, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2083, \"group\": [2451.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60841_BALBc-1_X01_Y02_516_211\", \"ini\": 1409, \"clust\": 490, \"rank\": 673, \"rankvar\": 869, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1417, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2562, \"cat-2\": \"Density: 23\", \"cat_2_index\": 405, \"group\": [489.0, 266.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60860_BALBc-1_X01_Y02_516_505\", \"ini\": 1408, \"clust\": 2542, \"rank\": 2459, \"rankvar\": 1854, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1418, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 216, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2084, \"group\": [2546.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60875_BALBc-1_X01_Y02_516_818\", \"ini\": 1407, \"clust\": 2433, \"rank\": 1555, \"rankvar\": 1462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1419, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2036, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2745, \"group\": [2434.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60902_BALBc-1_X01_Y02_517_236\", \"ini\": 1406, \"clust\": 28, \"rank\": 1690, \"rankvar\": 2610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1420, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 217, \"cat-2\": \"Density: 21\", \"cat_2_index\": 209, \"group\": [29.0, 20.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61018_BALBc-1_X01_Y02_518_607\", \"ini\": 1405, \"clust\": 2337, \"rank\": 2643, \"rankvar\": 2615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1421, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2037, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2164, \"group\": [2341.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61271_BALBc-1_X01_Y02_520_570\", \"ini\": 1404, \"clust\": 2685, \"rank\": 551, \"rankvar\": 2120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1422, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2038, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2460, \"group\": [2686.0, 1142.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61339_BALBc-1_X01_Y02_521_434\", \"ini\": 1403, \"clust\": 2099, \"rank\": 1210, \"rankvar\": 811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1423, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2039, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1986, \"group\": [2108.0, 952.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61380_BALBc-1_X01_Y02_521_947\", \"ini\": 1402, \"clust\": 2339, \"rank\": 2578, \"rankvar\": 1519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1424, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1238, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2320, \"group\": [2338.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61674_BALBc-1_X01_Y02_525_652\", \"ini\": 1401, \"clust\": 2335, \"rank\": 2440, \"rankvar\": 2546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1425, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1239, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2321, \"group\": [2335.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61704_BALBc-1_X01_Y02_525_994\", \"ini\": 1400, \"clust\": 2548, \"rank\": 2562, \"rankvar\": 1765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1426, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2040, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1256, \"group\": [2549.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61719_BALBc-1_X01_Y02_526_269\", \"ini\": 1399, \"clust\": 59, \"rank\": 1859, \"rankvar\": 2363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1427, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2563, \"cat-2\": \"Density: 20\", \"cat_2_index\": 158, \"group\": [58.0, 26.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61758_BALBc-1_X01_Y02_526_905\", \"ini\": 1398, \"clust\": 1031, \"rank\": 607, \"rankvar\": 163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1428, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 218, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2461, \"group\": [1031.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61791_BALBc-1_X01_Y02_527_347\", \"ini\": 1397, \"clust\": 2173, \"rank\": 1524, \"rankvar\": 59, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1429, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2564, \"cat-2\": \"Density: 25\", \"cat_2_index\": 662, \"group\": [2175.0, 991.0, 262.0, 72.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61831_BALBc-1_X01_Y02_527_730\", \"ini\": 1396, \"clust\": 1032, \"rank\": 148, \"rankvar\": 1142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1430, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2041, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2562, \"group\": [1032.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61836_BALBc-1_X01_Y02_527_777\", \"ini\": 1395, \"clust\": 2808, \"rank\": 1676, \"rankvar\": 1853, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1431, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2042, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2386, \"group\": [2809.0, 1190.0, 307.0, 82.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61953_BALBc-1_X01_Y02_529_35\", \"ini\": 1394, \"clust\": 1001, \"rank\": 794, \"rankvar\": 421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1432, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1657, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1108, \"group\": [1004.0, 364.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61991_BALBc-1_X01_Y02_529_837\", \"ini\": 1393, \"clust\": 858, \"rank\": 882, \"rankvar\": 814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1433, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 219, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2563, \"group\": [859.0, 311.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62023_BALBc-1_X01_Y02_53_321\", \"ini\": 1392, \"clust\": 782, \"rank\": 405, \"rankvar\": 1799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1434, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1240, \"cat-2\": \"Density: 21\", \"cat_2_index\": 210, \"group\": [781.0, 289.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62344_BALBc-1_X01_Y02_533_462\", \"ini\": 1391, \"clust\": 399, \"rank\": 442, \"rankvar\": 1156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1435, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2043, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2322, \"group\": [400.0, 239.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62399_BALBc-1_X01_Y02_534_418\", \"ini\": 1390, \"clust\": 1087, \"rank\": 776, \"rankvar\": 643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1436, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2044, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1987, \"group\": [1091.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62425_BALBc-1_X01_Y02_534_752\", \"ini\": 1389, \"clust\": 2199, \"rank\": 2265, \"rankvar\": 1441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1437, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2045, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2462, \"group\": [2200.0, 1010.0, 269.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62434_BALBc-1_X01_Y02_534_821\", \"ini\": 1388, \"clust\": 2457, \"rank\": 1971, \"rankvar\": 2039, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1438, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2046, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2706, \"group\": [2459.0, 1058.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62442_BALBc-1_X01_Y02_534_888\", \"ini\": 1387, \"clust\": 945, \"rank\": 1061, \"rankvar\": 373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1439, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 220, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2463, \"group\": [945.0, 343.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62492_BALBc-1_X01_Y02_535_508\", \"ini\": 1386, \"clust\": 2489, \"rank\": 1307, \"rankvar\": 1192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1440, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2047, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2165, \"group\": [2490.0, 1074.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62565_BALBc-1_X01_Y02_536_544\", \"ini\": 1385, \"clust\": 2188, \"rank\": 2529, \"rankvar\": 2154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1441, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2048, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2387, \"group\": [2186.0, 1002.0, 268.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62586_BALBc-1_X01_Y02_536_855\", \"ini\": 1384, \"clust\": 2280, \"rank\": 2789, \"rankvar\": 2519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1442, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 221, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2614, \"group\": [2281.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62671_BALBc-1_X01_Y02_537_981\", \"ini\": 1383, \"clust\": 2465, \"rank\": 1501, \"rankvar\": 2386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1443, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1241, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1770, \"group\": [2468.0, 1058.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62763_BALBc-1_X01_Y02_539_389\", \"ini\": 1382, \"clust\": 2097, \"rank\": 1328, \"rankvar\": 566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1444, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2049, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1257, \"group\": [2096.0, 947.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62777_BALBc-1_X01_Y02_539_557\", \"ini\": 1381, \"clust\": 2380, \"rank\": 2651, \"rankvar\": 2177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1445, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2050, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2250, \"group\": [2383.0, 1036.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62788_BALBc-1_X01_Y02_539_712\", \"ini\": 1380, \"clust\": 2358, \"rank\": 2811, \"rankvar\": 2800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1446, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1242, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2388, \"group\": [2368.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62960_BALBc-1_X01_Y02_541_26\", \"ini\": 1379, \"clust\": 731, \"rank\": 365, \"rankvar\": 297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1447, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1971, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1109, \"group\": [731.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62991_BALBc-1_X01_Y02_541_75\", \"ini\": 1378, \"clust\": 850, \"rank\": 1002, \"rankvar\": 557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1448, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 847, \"cat-2\": \"Density: 26\", \"cat_2_index\": 807, \"group\": [851.0, 307.0, 71.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63595_BALBc-1_X01_Y02_548_853\", \"ini\": 1377, \"clust\": 2395, \"rank\": 1714, \"rankvar\": 1726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1449, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2051, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2615, \"group\": [2398.0, 1040.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63686_BALBc-1_X01_Y02_549_947\", \"ini\": 1376, \"clust\": 2780, \"rank\": 2502, \"rankvar\": 1727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1450, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1243, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2323, \"group\": [2781.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63912_BALBc-1_X01_Y02_551_904\", \"ini\": 1375, \"clust\": 885, \"rank\": 1361, \"rankvar\": 1357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1451, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 222, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2521, \"group\": [886.0, 322.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63952_BALBc-1_X01_Y02_552_377\", \"ini\": 1374, \"clust\": 946, \"rank\": 1136, \"rankvar\": 439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1452, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 223, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1110, \"group\": [946.0, 343.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64119_BALBc-1_X01_Y02_554_637\", \"ini\": 1373, \"clust\": 2139, \"rank\": 1481, \"rankvar\": 1865, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1453, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2052, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2564, \"group\": [2139.0, 969.0, 258.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64205_BALBc-1_X01_Y02_555_738\", \"ini\": 1372, \"clust\": 2688, \"rank\": 878, \"rankvar\": 2148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1454, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 224, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2389, \"group\": [2689.0, 1142.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64551_BALBc-1_X01_Y02_56_237\", \"ini\": 1371, \"clust\": 1322, \"rank\": 1661, \"rankvar\": 1775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1455, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1244, \"cat-2\": \"Density: 20\", \"cat_2_index\": 159, \"group\": [1325.0, 513.0, 127.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64699_BALBc-1_X01_Y02_560_94\", \"ini\": 1370, \"clust\": 2615, \"rank\": 2069, \"rankvar\": 1781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1456, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2455, \"cat-2\": \"Density: 27\", \"cat_2_index\": 957, \"group\": [2617.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64829_BALBc-1_X01_Y02_562_691\", \"ini\": 1369, \"clust\": 380, \"rank\": 331, \"rankvar\": 1926, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1457, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1245, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2616, \"group\": [379.0, 230.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64850_BALBc-1_X01_Y02_562_963\", \"ini\": 1368, \"clust\": 2466, \"rank\": 1425, \"rankvar\": 2126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1458, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1246, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2251, \"group\": [2466.0, 1058.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64896_BALBc-1_X01_Y02_563_569\", \"ini\": 1367, \"clust\": 1100, \"rank\": 696, \"rankvar\": 889, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1459, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2053, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2464, \"group\": [1101.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64897_BALBc-1_X01_Y02_563_602\", \"ini\": 1366, \"clust\": 2547, \"rank\": 2716, \"rankvar\": 1951, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1460, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2054, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2465, \"group\": [2559.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64941_BALBc-1_X01_Y02_564_31\", \"ini\": 1365, \"clust\": 1194, \"rank\": 1355, \"rankvar\": 177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1461, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1972, \"cat-2\": \"Density: 24\", \"cat_2_index\": 522, \"group\": [1197.0, 427.0, 97.0, 23.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64994_BALBc-1_X01_Y02_564_874\", \"ini\": 1364, \"clust\": 395, \"rank\": 865, \"rankvar\": 1112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1462, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2055, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2466, \"group\": [396.0, 237.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65052_BALBc-1_X01_Y02_565_665\", \"ini\": 1363, \"clust\": 2442, \"rank\": 2541, \"rankvar\": 2469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1463, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 225, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2565, \"group\": [2442.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65064_BALBc-1_X01_Y02_565_759\", \"ini\": 1362, \"clust\": 2360, \"rank\": 2712, \"rankvar\": 2593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1464, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2565, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2522, \"group\": [2358.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65075_BALBc-1_X01_Y02_565_925\", \"ini\": 1361, \"clust\": 455, \"rank\": 294, \"rankvar\": 700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1465, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 622, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2707, \"group\": [454.0, 259.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65095_BALBc-1_X01_Y02_566_271\", \"ini\": 1360, \"clust\": 2193, \"rank\": 2751, \"rankvar\": 2730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1466, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2566, \"cat-2\": \"Density: 21\", \"cat_2_index\": 211, \"group\": [2194.0, 1005.0, 268.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65299_BALBc-1_X01_Y02_568_889\", \"ini\": 1359, \"clust\": 2501, \"rank\": 1804, \"rankvar\": 1315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1467, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 226, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2566, \"group\": [2500.0, 1076.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65326_BALBc-1_X01_Y02_569_433\", \"ini\": 1358, \"clust\": 2402, \"rank\": 1295, \"rankvar\": 932, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1468, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2056, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2085, \"group\": [2402.0, 1042.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65481_BALBc-1_X01_Y02_570_500\", \"ini\": 1357, \"clust\": 2448, \"rank\": 2013, \"rankvar\": 2410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1469, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2057, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2324, \"group\": [2449.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65533_BALBc-1_X01_Y02_571_197\", \"ini\": 1356, \"clust\": 2023, \"rank\": 1844, \"rankvar\": 1134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1470, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2491, \"cat-2\": \"Density: 23\", \"cat_2_index\": 406, \"group\": [2024.0, 900.0, 235.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65552_BALBc-1_X01_Y02_571_380\", \"ini\": 1355, \"clust\": 2318, \"rank\": 2007, \"rankvar\": 1069, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1471, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2058, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1877, \"group\": [2337.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65700_BALBc-1_X01_Y02_573_349\", \"ini\": 1354, \"clust\": 1107, \"rank\": 439, \"rankvar\": 693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1472, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2567, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1406, \"group\": [1111.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65716_BALBc-1_X01_Y02_573_564\", \"ini\": 1353, \"clust\": 2186, \"rank\": 2673, \"rankvar\": 2433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1473, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2059, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2390, \"group\": [2189.0, 1002.0, 268.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65744_BALBc-1_X01_Y02_573_899\", \"ini\": 1352, \"clust\": 883, \"rank\": 1402, \"rankvar\": 18, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1474, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 623, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2746, \"group\": [884.0, 321.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65912_BALBc-1_X01_Y02_575_992\", \"ini\": 1351, \"clust\": 2254, \"rank\": 2047, \"rankvar\": 857, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1475, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 227, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1111, \"group\": [2259.0, 1030.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65965_BALBc-1_X01_Y02_576_941\", \"ini\": 1350, \"clust\": 2558, \"rank\": 2577, \"rankvar\": 1997, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1476, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 624, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2617, \"group\": [2555.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66161_BALBc-1_X01_Y02_579_641\", \"ini\": 1349, \"clust\": 2502, \"rank\": 1890, \"rankvar\": 1444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1477, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 228, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2467, \"group\": [2501.0, 1076.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66381_BALBc-1_X01_Y02_581_736\", \"ini\": 1348, \"clust\": 2419, \"rank\": 2293, \"rankvar\": 2180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1478, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 229, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2391, \"group\": [2419.0, 1050.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66539_BALBc-1_X01_Y02_583_714\", \"ini\": 1347, \"clust\": 2355, \"rank\": 2800, \"rankvar\": 2723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1479, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 230, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2567, \"group\": [2356.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66625_BALBc-1_X01_Y02_584_872\", \"ini\": 1346, \"clust\": 1095, \"rank\": 275, \"rankvar\": 1220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1480, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2060, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2523, \"group\": [1096.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66780_BALBc-1_X01_Y02_586_608\", \"ini\": 1345, \"clust\": 650, \"rank\": 269, \"rankvar\": 9, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 231, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2568, \"group\": [647.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66849_BALBc-1_X01_Y02_587_46\", \"ini\": 1344, \"clust\": 535, \"rank\": 67, \"rankvar\": 1102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1482, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 232, \"cat-2\": \"Density: 24\", \"cat_2_index\": 523, \"group\": [537.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67001_BALBc-1_X01_Y02_589_528\", \"ini\": 1343, \"clust\": 863, \"rank\": 569, \"rankvar\": 743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1483, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2061, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2166, \"group\": [861.0, 312.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67087_BALBc-1_X01_Y02_59_592\", \"ini\": 1342, \"clust\": 1215, \"rank\": 1686, \"rankvar\": 606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1484, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1247, \"cat-2\": \"Density: 20\", \"cat_2_index\": 160, \"group\": [1223.0, 444.0, 103.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67176_BALBc-1_X01_Y02_590_64\", \"ini\": 1341, \"clust\": 1145, \"rank\": 925, \"rankvar\": 293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1485, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1973, \"cat-2\": \"Density: 23\", \"cat_2_index\": 407, \"group\": [1149.0, 386.0, 81.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67186_BALBc-1_X01_Y02_590_689\", \"ini\": 1340, \"clust\": 2386, \"rank\": 2824, \"rankvar\": 2778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1486, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 233, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2468, \"group\": [2392.0, 1039.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67202_BALBc-1_X01_Y02_590_825\", \"ini\": 1339, \"clust\": 416, \"rank\": 454, \"rankvar\": 667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1487, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2062, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2618, \"group\": [419.0, 243.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67369_BALBc-1_X01_Y02_593_1000\", \"ini\": 1338, \"clust\": 562, \"rank\": 140, \"rankvar\": 229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1488, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1248, \"cat-2\": \"Density: 24\", \"cat_2_index\": 524, \"group\": [562.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67476_BALBc-1_X01_Y02_594_578\", \"ini\": 1337, \"clust\": 1019, \"rank\": 596, \"rankvar\": 385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1489, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 234, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2569, \"group\": [1019.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67538_BALBc-1_X01_Y02_595_430\", \"ini\": 1336, \"clust\": 2361, \"rank\": 2721, \"rankvar\": 2691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1490, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2063, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2167, \"group\": [2359.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67823_BALBc-1_X01_Y02_598_978\", \"ini\": 1335, \"clust\": 619, \"rank\": 30, \"rankvar\": 390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1491, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1249, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1532, \"group\": [616.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68029_BALBc-1_X01_Y02_600_513\", \"ini\": 1334, \"clust\": 2340, \"rank\": 2771, \"rankvar\": 2514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2568, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2392, \"group\": [2339.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68242_BALBc-1_X01_Y02_603_235\", \"ini\": 1333, \"clust\": 2639, \"rank\": 2310, \"rankvar\": 1686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1493, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 235, \"cat-2\": \"Density: 20\", \"cat_2_index\": 161, \"group\": [2640.0, 1104.0, 284.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68295_BALBc-1_X01_Y02_603_794\", \"ini\": 1332, \"clust\": 242, \"rank\": 1077, \"rankvar\": 1022, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1494, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2064, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2665, \"group\": [242.0, 152.0, 46.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68341_BALBc-1_X01_Y02_604_634\", \"ini\": 1331, \"clust\": 400, \"rank\": 1047, \"rankvar\": 616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1495, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2065, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2325, \"group\": [401.0, 239.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68346_BALBc-1_X01_Y02_604_71\", \"ini\": 1330, \"clust\": 2651, \"rank\": 2521, \"rankvar\": 1534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1496, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1250, \"cat-2\": \"Density: 25\", \"cat_2_index\": 663, \"group\": [2650.0, 1112.0, 286.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68427_BALBc-1_X01_Y02_605_663\", \"ini\": 1329, \"clust\": 2470, \"rank\": 1959, \"rankvar\": 2402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1497, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2066, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2393, \"group\": [2469.0, 1059.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68484_BALBc-1_X01_Y02_606_336\", \"ini\": 1328, \"clust\": 2369, \"rank\": 2649, \"rankvar\": 2364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1498, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2569, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1258, \"group\": [2372.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68508_BALBc-1_X01_Y02_606_611\", \"ini\": 1327, \"clust\": 2493, \"rank\": 1644, \"rankvar\": 1737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1499, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2067, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2747, \"group\": [2494.0, 1076.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68608_BALBc-1_X01_Y02_607_745\", \"ini\": 1326, \"clust\": 2257, \"rank\": 2468, \"rankvar\": 1791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1500, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 236, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2524, \"group\": [2255.0, 1029.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68626_BALBc-1_X01_Y02_607_953\", \"ini\": 1325, \"clust\": 2237, \"rank\": 2426, \"rankvar\": 1563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1501, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 625, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2326, \"group\": [2237.0, 1022.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68666_BALBc-1_X01_Y02_608_396\", \"ini\": 1324, \"clust\": 2545, \"rank\": 2372, \"rankvar\": 1550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1502, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2570, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2086, \"group\": [2542.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68709_BALBc-1_X01_Y02_608_893\", \"ini\": 1323, \"clust\": 2574, \"rank\": 2154, \"rankvar\": 1313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1503, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2571, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2708, \"group\": [2576.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68790_BALBc-1_X01_Y02_609_760\", \"ini\": 1322, \"clust\": 1111, \"rank\": 353, \"rankvar\": 1682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1504, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 237, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2394, \"group\": [1116.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68847_BALBc-1_X01_Y02_61_732\", \"ini\": 1321, \"clust\": 1641, \"rank\": 1591, \"rankvar\": 2449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1505, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2572, \"cat-2\": \"Density: 20\", \"cat_2_index\": 162, \"group\": [1642.0, 675.0, 169.0, 41.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68852_BALBc-1_X01_Y02_61_768\", \"ini\": 1320, \"clust\": 1628, \"rank\": 711, \"rankvar\": 2097, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1506, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2243, \"cat-2\": \"Density: 22\", \"cat_2_index\": 289, \"group\": [1629.0, 663.0, 165.0, 40.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68930_BALBc-1_X01_Y02_610_841\", \"ini\": 1319, \"clust\": 2526, \"rank\": 2280, \"rankvar\": 1459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1507, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2573, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2525, \"group\": [2526.0, 1084.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69043_BALBc-1_X01_Y02_612_22\", \"ini\": 1318, \"clust\": 1356, \"rank\": 2524, \"rankvar\": 2077, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1508, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1974, \"cat-2\": \"Density: 24\", \"cat_2_index\": 525, \"group\": [1357.0, 530.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69048_BALBc-1_X01_Y02_612_265\", \"ini\": 1317, \"clust\": 1686, \"rank\": 892, \"rankvar\": 1176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1509, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2574, \"cat-2\": \"Density: 22\", \"cat_2_index\": 290, \"group\": [1687.0, 710.0, 181.0, 47.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69070_BALBc-1_X01_Y02_612_557\", \"ini\": 1316, \"clust\": 2334, \"rank\": 2525, \"rankvar\": 2398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1510, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2068, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2469, \"group\": [2334.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69187_BALBc-1_X01_Y02_614_192\", \"ini\": 1315, \"clust\": 1689, \"rank\": 1282, \"rankvar\": 1151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1511, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2314, \"cat-2\": \"Density: 19\", \"cat_2_index\": 122, \"group\": [1694.0, 717.0, 182.0, 47.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69384_BALBc-1_X01_Y02_616_696\", \"ini\": 1314, \"clust\": 2368, \"rank\": 2785, \"rankvar\": 2664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1512, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2069, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2470, \"group\": [2365.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69441_BALBc-1_X01_Y02_617_581\", \"ini\": 1313, \"clust\": 2158, \"rank\": 1584, \"rankvar\": 1744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1513, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2070, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2666, \"group\": [2159.0, 982.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69814_BALBc-1_X01_Y02_621_448\", \"ini\": 1312, \"clust\": 2440, \"rank\": 2346, \"rankvar\": 2526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1514, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2071, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2252, \"group\": [2443.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69943_BALBc-1_X01_Y02_622_815\", \"ini\": 1311, \"clust\": 960, \"rank\": 267, \"rankvar\": 1245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1515, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2072, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2570, \"group\": [959.0, 348.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70167_BALBc-1_X01_Y02_625_622\", \"ini\": 1310, \"clust\": 2374, \"rank\": 2485, \"rankvar\": 1763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1516, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2073, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2667, \"group\": [2377.0, 1036.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70245_BALBc-1_X01_Y02_626_657\", \"ini\": 1309, \"clust\": 2673, \"rank\": 1274, \"rankvar\": 969, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1517, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2074, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2571, \"group\": [2674.0, 1133.0, 291.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70250_BALBc-1_X01_Y02_626_738\", \"ini\": 1308, \"clust\": 2364, \"rank\": 2763, \"rankvar\": 2749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1518, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2075, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2619, \"group\": [2362.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70390_BALBc-1_X01_Y02_628_794\", \"ini\": 1307, \"clust\": 247, \"rank\": 766, \"rankvar\": 1305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1519, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 915, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2620, \"group\": [248.0, 155.0, 46.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70677_BALBc-1_X01_Y02_631_569\", \"ini\": 1306, \"clust\": 609, \"rank\": 17, \"rankvar\": 183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1520, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 238, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2621, \"group\": [607.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70732_BALBc-1_X01_Y02_632_214\", \"ini\": 1305, \"clust\": 1217, \"rank\": 1861, \"rankvar\": 2774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1521, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2575, \"cat-2\": \"Density: 22\", \"cat_2_index\": 291, \"group\": [1217.0, 440.0, 102.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70788_BALBc-1_X01_Y02_632_885\", \"ini\": 1304, \"clust\": 755, \"rank\": 333, \"rankvar\": 577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1522, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2576, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2526, \"group\": [754.0, 280.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70792_BALBc-1_X01_Y02_632_917\", \"ini\": 1303, \"clust\": 2621, \"rank\": 2017, \"rankvar\": 1596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1523, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 626, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2622, \"group\": [2625.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71010_BALBc-1_X01_Y02_635_775\", \"ini\": 1302, \"clust\": 2391, \"rank\": 2807, \"rankvar\": 2718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1524, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2076, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2471, \"group\": [2388.0, 1038.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71015_BALBc-1_X01_Y02_635_841\", \"ini\": 1301, \"clust\": 2032, \"rank\": 2006, \"rankvar\": 1604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1525, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 916, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2327, \"group\": [2035.0, 906.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71192_BALBc-1_X01_Y02_638_152\", \"ini\": 1300, \"clust\": 238, \"rank\": 1103, \"rankvar\": 862, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1526, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1251, \"cat-2\": \"Density: 23\", \"cat_2_index\": 408, \"group\": [238.0, 149.0, 45.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71313_BALBc-1_X01_Y02_639_527\", \"ini\": 1299, \"clust\": 2184, \"rank\": 2166, \"rankvar\": 2019, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1527, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2077, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2395, \"group\": [2185.0, 1001.0, 267.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71373_BALBc-1_X01_Y02_64_410\", \"ini\": 1298, \"clust\": 1326, \"rank\": 1897, \"rankvar\": 943, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1528, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1252, \"cat-2\": \"Density: 21\", \"cat_2_index\": 212, \"group\": [1327.0, 515.0, 127.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71596_BALBc-1_X01_Y02_642_538\", \"ini\": 1297, \"clust\": 2110, \"rank\": 1311, \"rankvar\": 1772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1529, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2078, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2328, \"group\": [2110.0, 954.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71667_BALBc-1_X01_Y02_643_341\", \"ini\": 1296, \"clust\": 2463, \"rank\": 1366, \"rankvar\": 1641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1530, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2079, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1771, \"group\": [2463.0, 1058.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71767_BALBc-1_X01_Y02_644_390\", \"ini\": 1295, \"clust\": 2381, \"rank\": 2288, \"rankvar\": 1090, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1531, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2080, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1988, \"group\": [2381.0, 1036.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71919_BALBc-1_X01_Y02_646_330\", \"ini\": 1294, \"clust\": 2487, \"rank\": 1838, \"rankvar\": 1401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1532, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2081, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1407, \"group\": [2486.0, 1072.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72032_BALBc-1_X01_Y02_647_871\", \"ini\": 1293, \"clust\": 2536, \"rank\": 2659, \"rankvar\": 1348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1533, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2577, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2623, \"group\": [2539.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72139_BALBc-1_X01_Y02_649_280\", \"ini\": 1292, \"clust\": 1827, \"rank\": 2583, \"rankvar\": 2583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1534, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2578, \"cat-2\": \"Density: 26\", \"cat_2_index\": 808, \"group\": [1830.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72165_BALBc-1_X01_Y02_649_642\", \"ini\": 1291, \"clust\": 2275, \"rank\": 2794, \"rankvar\": 2798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1535, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2082, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2777, \"group\": [2276.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72176_BALBc-1_X01_Y02_649_80\", \"ini\": 1290, \"clust\": 599, \"rank\": 139, \"rankvar\": 831, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1536, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1253, \"cat-2\": \"Density: 22\", \"cat_2_index\": 292, \"group\": [598.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72245_BALBc-1_X01_Y02_65_662\", \"ini\": 1289, \"clust\": 1671, \"rank\": 1554, \"rankvar\": 2609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1537, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1254, \"cat-2\": \"Density: 21\", \"cat_2_index\": 213, \"group\": [1671.0, 699.0, 178.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72484_BALBc-1_X01_Y02_652_944\", \"ini\": 1288, \"clust\": 2412, \"rank\": 2124, \"rankvar\": 2002, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1538, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 239, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2253, \"group\": [2411.0, 1045.0, 272.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72716_BALBc-1_X01_Y02_656_182\", \"ini\": 1287, \"clust\": 1804, \"rank\": 2704, \"rankvar\": 2567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1539, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2579, \"cat-2\": \"Density: 24\", \"cat_2_index\": 526, \"group\": [1802.0, 791.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72777_BALBc-1_X01_Y02_656_712\", \"ini\": 1286, \"clust\": 2353, \"rank\": 2722, \"rankvar\": 2425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1540, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2083, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2624, \"group\": [2352.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72835_BALBc-1_X01_Y02_657_361\", \"ini\": 1285, \"clust\": 559, \"rank\": 320, \"rankvar\": 54, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1541, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2580, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2254, \"group\": [558.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72877_BALBc-1_X01_Y02_657_890\", \"ini\": 1284, \"clust\": 693, \"rank\": 232, \"rankvar\": 645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 917, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2625, \"group\": [692.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72970_BALBc-1_X01_Y02_659_402\", \"ini\": 1283, \"clust\": 710, \"rank\": 13, \"rankvar\": 1085, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1543, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2084, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2168, \"group\": [707.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72984_BALBc-1_X01_Y02_659_578\", \"ini\": 1282, \"clust\": 2310, \"rank\": 2627, \"rankvar\": 2509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1544, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2085, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2668, \"group\": [2314.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73026_BALBc-1_X01_Y02_659_964\", \"ini\": 1281, \"clust\": 2773, \"rank\": 2531, \"rankvar\": 2616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1545, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2581, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1772, \"group\": [2775.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73130_BALBc-1_X01_Y02_660_371\", \"ini\": 1280, \"clust\": 899, \"rank\": 978, \"rankvar\": 415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1546, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 240, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2169, \"group\": [899.0, 331.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73323_BALBc-1_X01_Y02_662_515\", \"ini\": 1279, \"clust\": 1080, \"rank\": 738, \"rankvar\": 1423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1547, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2086, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2087, \"group\": [1079.0, 370.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73330_BALBc-1_X01_Y02_662_600\", \"ini\": 1278, \"clust\": 181, \"rank\": 1024, \"rankvar\": 156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1548, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2087, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2709, \"group\": [183.0, 121.0, 39.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73406_BALBc-1_X01_Y02_663_676\", \"ini\": 1277, \"clust\": 2336, \"rank\": 2354, \"rankvar\": 2322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1549, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2088, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2669, \"group\": [2336.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73682_BALBc-1_X01_Y02_667_559\", \"ini\": 1276, \"clust\": 1093, \"rank\": 412, \"rankvar\": 1866, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1550, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2089, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2626, \"group\": [1098.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73864_BALBc-1_X01_Y02_669_904\", \"ini\": 1275, \"clust\": 2543, \"rank\": 2565, \"rankvar\": 1660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 241, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2396, \"group\": [2545.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74137_BALBc-1_X01_Y02_672_747\", \"ini\": 1274, \"clust\": 635, \"rank\": 85, \"rankvar\": 291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1552, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2090, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2572, \"group\": [631.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74157_BALBc-1_X01_Y02_672_938\", \"ini\": 1273, \"clust\": 684, \"rank\": 50, \"rankvar\": 561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1553, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1255, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2170, \"group\": [683.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74183_BALBc-1_X01_Y02_673_288\", \"ini\": 1272, \"clust\": 874, \"rank\": 593, \"rankvar\": 2006, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1554, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2091, \"cat-2\": \"Density: 27\", \"cat_2_index\": 958, \"group\": [873.0, 316.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74202_BALBc-1_X01_Y02_673_537\", \"ini\": 1271, \"clust\": 2704, \"rank\": 1122, \"rankvar\": 1234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1555, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2092, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2255, \"group\": [2705.0, 1145.0, 296.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74319_BALBc-1_X01_Y02_674_785\", \"ini\": 1270, \"clust\": 1238, \"rank\": 1243, \"rankvar\": 1187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1556, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 918, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2527, \"group\": [1239.0, 453.0, 106.0, 25.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74367_BALBc-1_X01_Y02_675_381\", \"ini\": 1269, \"clust\": 2559, \"rank\": 2630, \"rankvar\": 2203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1557, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 242, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2256, \"group\": [2556.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74379_BALBc-1_X01_Y02_675_428\", \"ini\": 1268, \"clust\": 2316, \"rank\": 2652, \"rankvar\": 2424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1558, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2093, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2171, \"group\": [2316.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74438_BALBc-1_X01_Y02_676_159\", \"ini\": 1267, \"clust\": 113, \"rank\": 2611, \"rankvar\": 2671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1559, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2456, \"cat-2\": \"Density: 21\", \"cat_2_index\": 214, \"group\": [112.0, 63.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74507_BALBc-1_X01_Y02_676_988\", \"ini\": 1266, \"clust\": 2491, \"rank\": 1881, \"rankvar\": 1683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1560, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1256, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1112, \"group\": [2492.0, 1075.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74529_BALBc-1_X01_Y02_677_328\", \"ini\": 1265, \"clust\": 2477, \"rank\": 1693, \"rankvar\": 384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1561, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2094, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1773, \"group\": [2478.0, 1066.0, 277.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74573_BALBc-1_X01_Y02_677_811\", \"ini\": 1264, \"clust\": 172, \"rank\": 2247, \"rankvar\": 2607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1562, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1257, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2670, \"group\": [172.0, 114.0, 36.0, 13.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74598_BALBc-1_X01_Y02_678_172\", \"ini\": 1263, \"clust\": 1914, \"rank\": 2379, \"rankvar\": 2725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1563, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2582, \"cat-2\": \"Density: 24\", \"cat_2_index\": 527, \"group\": [1916.0, 820.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74641_BALBc-1_X01_Y02_678_615\", \"ini\": 1262, \"clust\": 2314, \"rank\": 2656, \"rankvar\": 2736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1564, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2095, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2778, \"group\": [2311.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74779_BALBc-1_X01_Y02_68_443\", \"ini\": 1261, \"clust\": 1085, \"rank\": 574, \"rankvar\": 1372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1565, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 704, \"cat-2\": \"Density: 26\", \"cat_2_index\": 809, \"group\": [1085.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74924_BALBc-1_X01_Y02_681_731\", \"ini\": 1260, \"clust\": 2546, \"rank\": 2484, \"rankvar\": 1487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1566, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2096, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2397, \"group\": [2543.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75385_BALBc-1_X01_Y02_687_918\", \"ini\": 1259, \"clust\": 988, \"rank\": 645, \"rankvar\": 711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1567, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1258, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2472, \"group\": [990.0, 358.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75452_BALBc-1_X01_Y02_688_793\", \"ini\": 1258, \"clust\": 527, \"rank\": 107, \"rankvar\": 449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1568, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1259, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2573, \"group\": [529.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75503_BALBc-1_X01_Y02_689_468\", \"ini\": 1257, \"clust\": 2362, \"rank\": 2749, \"rankvar\": 2545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1569, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2097, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2329, \"group\": [2360.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75575_BALBc-1_X01_Y02_69_548\", \"ini\": 1256, \"clust\": 2028, \"rank\": 2357, \"rankvar\": 2138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1570, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 243, \"cat-2\": \"Density: 26\", \"cat_2_index\": 810, \"group\": [2032.0, 904.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75777_BALBc-1_X01_Y02_692_441\", \"ini\": 1255, \"clust\": 636, \"rank\": 3, \"rankvar\": 418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1571, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 244, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1989, \"group\": [632.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75798_BALBc-1_X01_Y02_692_654\", \"ini\": 1254, \"clust\": 2422, \"rank\": 1842, \"rankvar\": 1505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1572, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2098, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2748, \"group\": [2423.0, 1051.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75805_BALBc-1_X01_Y02_692_719\", \"ini\": 1253, \"clust\": 646, \"rank\": 221, \"rankvar\": 28, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1573, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2099, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2749, \"group\": [643.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76045_BALBc-1_X01_Y02_695_763\", \"ini\": 1252, \"clust\": 2560, \"rank\": 2246, \"rankvar\": 1697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1574, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1260, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2671, \"group\": [2561.0, 1086.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76047_BALBc-1_X01_Y02_695_820\", \"ini\": 1251, \"clust\": 2730, \"rank\": 1839, \"rankvar\": 2136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1261, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2627, \"group\": [2730.0, 1158.0, 300.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76155_BALBc-1_X01_Y02_697_37\", \"ini\": 1250, \"clust\": 72, \"rank\": 1409, \"rankvar\": 878, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1576, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2492, \"cat-2\": \"Density: 20\", \"cat_2_index\": 163, \"group\": [72.0, 33.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76157_BALBc-1_X01_Y02_697_390\", \"ini\": 1249, \"clust\": 641, \"rank\": 7, \"rankvar\": 468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1577, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 245, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2257, \"group\": [639.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76261_BALBc-1_X01_Y02_698_588\", \"ini\": 1248, \"clust\": 2191, \"rank\": 2762, \"rankvar\": 2802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1578, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2100, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2750, \"group\": [2190.0, 1003.0, 268.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76284_BALBc-1_X01_Y02_698_894\", \"ini\": 1247, \"clust\": 856, \"rank\": 646, \"rankvar\": 1055, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1579, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 919, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2710, \"group\": [865.0, 313.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76311_BALBc-1_X01_Y02_699_282\", \"ini\": 1246, \"clust\": 2018, \"rank\": 1768, \"rankvar\": 1681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1580, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2583, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1259, \"group\": [2019.0, 896.0, 234.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76337_BALBc-1_X01_Y02_699_564\", \"ini\": 1245, \"clust\": 2795, \"rank\": 2735, \"rankvar\": 2311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1581, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2101, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2628, \"group\": [2797.0, 1179.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76344_BALBc-1_X01_Y02_699_679\", \"ini\": 1244, \"clust\": 886, \"rank\": 1234, \"rankvar\": 1311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1582, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2102, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2629, \"group\": [889.0, 324.0, 74.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76479_BALBc-1_X01_Y02_70_471\", \"ini\": 1243, \"clust\": 2746, \"rank\": 2237, \"rankvar\": 2626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1583, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2457, \"cat-2\": \"Density: 26\", \"cat_2_index\": 811, \"group\": [2767.0, 1173.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76545_BALBc-1_X01_Y02_700_356\", \"ini\": 1242, \"clust\": 1026, \"rank\": 306, \"rankvar\": 635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1584, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 246, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2088, \"group\": [1025.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76565_BALBc-1_X01_Y02_700_603\", \"ini\": 1241, \"clust\": 2351, \"rank\": 2781, \"rankvar\": 2805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1585, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 247, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2751, \"group\": [2355.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76633_BALBc-1_X01_Y02_701_469\", \"ini\": 1240, \"clust\": 985, \"rank\": 303, \"rankvar\": 567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1586, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 248, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2258, \"group\": [984.0, 356.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77012_BALBc-1_X01_Y02_706_499\", \"ini\": 1239, \"clust\": 2813, \"rank\": 1852, \"rankvar\": 658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1587, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2103, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2330, \"group\": [2814.0, 1193.0, 308.0, 82.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77022_BALBc-1_X01_Y02_706_622\", \"ini\": 1238, \"clust\": 2053, \"rank\": 1301, \"rankvar\": 1698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1588, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2104, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2711, \"group\": [2051.0, 919.0, 242.0, 67.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77055_BALBc-1_X01_Y02_706_998\", \"ini\": 1237, \"clust\": 931, \"rank\": 1401, \"rankvar\": 927, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1589, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1262, \"cat-2\": \"Density: 22\", \"cat_2_index\": 293, \"group\": [933.0, 339.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77190_BALBc-1_X01_Y02_708_738\", \"ini\": 1236, \"clust\": 406, \"rank\": 836, \"rankvar\": 720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1590, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1263, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2574, \"group\": [409.0, 241.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77401_BALBc-1_X01_Y02_710_828\", \"ini\": 1235, \"clust\": 1020, \"rank\": 502, \"rankvar\": 56, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1264, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2630, \"group\": [1020.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77491_BALBc-1_X01_Y02_711_906\", \"ini\": 1234, \"clust\": 2783, \"rank\": 2221, \"rankvar\": 1889, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1592, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 249, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2672, \"group\": [2783.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77533_BALBc-1_X01_Y02_712_413\", \"ini\": 1233, \"clust\": 2500, \"rank\": 1956, \"rankvar\": 916, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1593, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2105, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2331, \"group\": [2502.0, 1076.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77644_BALBc-1_X01_Y02_713_803\", \"ini\": 1232, \"clust\": 2797, \"rank\": 2629, \"rankvar\": 2139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1594, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1265, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2631, \"group\": [2796.0, 1179.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77833_BALBc-1_X01_Y02_716_257\", \"ini\": 1231, \"clust\": 286, \"rank\": 1017, \"rankvar\": 1119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1595, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2584, \"cat-2\": \"Density: 24\", \"cat_2_index\": 528, \"group\": [286.0, 180.0, 53.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77991_BALBc-1_X01_Y02_718_159\", \"ini\": 1230, \"clust\": 106, \"rank\": 2345, \"rankvar\": 2080, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1596, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2585, \"cat-2\": \"Density: 22\", \"cat_2_index\": 294, \"group\": [114.0, 65.0, 16.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78053_BALBc-1_X01_Y02_718_850\", \"ini\": 1229, \"clust\": 1661, \"rank\": 2128, \"rankvar\": 2285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1597, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1266, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2473, \"group\": [1661.0, 691.0, 176.0, 44.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78060_BALBc-1_X01_Y02_718_925\", \"ini\": 1228, \"clust\": 1070, \"rank\": 330, \"rankvar\": 588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1598, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1267, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2575, \"group\": [1073.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78089_BALBc-1_X01_Y02_719_369\", \"ini\": 1227, \"clust\": 1831, \"rank\": 2554, \"rankvar\": 1935, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1599, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 250, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2172, \"group\": [1834.0, 796.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78113_BALBc-1_X01_Y02_719_632\", \"ini\": 1226, \"clust\": 2354, \"rank\": 2786, \"rankvar\": 2710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1600, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 251, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2752, \"group\": [2353.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78309_BALBc-1_X01_Y02_721_333\", \"ini\": 1225, \"clust\": 522, \"rank\": 272, \"rankvar\": 125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1601, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 252, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1990, \"group\": [521.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78374_BALBc-1_X01_Y02_721_954\", \"ini\": 1224, \"clust\": 121, \"rank\": 1120, \"rankvar\": 2185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1602, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1268, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2089, \"group\": [121.0, 72.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78457_BALBc-1_X01_Y02_722_887\", \"ini\": 1223, \"clust\": 2660, \"rank\": 2023, \"rankvar\": 442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1603, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 253, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2816, \"group\": [2661.0, 1120.0, 286.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78466_BALBc-1_X01_Y02_723_123\", \"ini\": 1222, \"clust\": 1992, \"rank\": 1455, \"rankvar\": 788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1604, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 920, \"cat-2\": \"Density: 21\", \"cat_2_index\": 215, \"group\": [1996.0, 877.0, 227.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78589_BALBc-1_X01_Y02_724_723\", \"ini\": 1221, \"clust\": 2019, \"rank\": 1749, \"rankvar\": 1969, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1605, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2106, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2474, \"group\": [2020.0, 897.0, 234.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78729_BALBc-1_X01_Y02_726_667\", \"ini\": 1220, \"clust\": 1090, \"rank\": 398, \"rankvar\": 1555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1606, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 254, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2753, \"group\": [1089.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78765_BALBc-1_X01_Y02_727_233\", \"ini\": 1219, \"clust\": 1811, \"rank\": 2801, \"rankvar\": 2533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1607, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2586, \"cat-2\": \"Density: 25\", \"cat_2_index\": 664, \"group\": [1812.0, 793.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78858_BALBc-1_X01_Y02_728_317\", \"ini\": 1218, \"clust\": 2400, \"rank\": 2036, \"rankvar\": 1403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1608, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 255, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2090, \"group\": [2400.0, 1041.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78883_BALBc-1_X01_Y02_728_677\", \"ini\": 1217, \"clust\": 897, \"rank\": 988, \"rankvar\": 249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1609, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2107, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2632, \"group\": [897.0, 330.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78937_BALBc-1_X01_Y02_729_454\", \"ini\": 1216, \"clust\": 2544, \"rank\": 2275, \"rankvar\": 1368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1610, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2108, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2259, \"group\": [2544.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78946_BALBc-1_X01_Y02_729_586\", \"ini\": 1215, \"clust\": 2366, \"rank\": 2805, \"rankvar\": 2606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1611, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2109, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2673, \"group\": [2366.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79000_BALBc-1_X01_Y02_73_364\", \"ini\": 1214, \"clust\": 40, \"rank\": 1241, \"rankvar\": 1947, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1612, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1269, \"cat-2\": \"Density: 21\", \"cat_2_index\": 216, \"group\": [41.0, 23.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79124_BALBc-1_X01_Y02_730_931\", \"ini\": 1213, \"clust\": 2785, \"rank\": 2393, \"rankvar\": 1616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1613, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1270, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2332, \"group\": [2786.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79128_BALBc-1_X01_Y02_730_977\", \"ini\": 1212, \"clust\": 2740, \"rank\": 2728, \"rankvar\": 2773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1614, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1271, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1533, \"group\": [2745.0, 1168.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79171_BALBc-1_X01_Y02_731_534\", \"ini\": 1211, \"clust\": 2494, \"rank\": 1736, \"rankvar\": 1455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1615, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2110, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2633, \"group\": [2495.0, 1076.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79269_BALBc-1_X01_Y02_732_742\", \"ini\": 1210, \"clust\": 268, \"rank\": 1588, \"rankvar\": 612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1616, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1272, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2634, \"group\": [268.0, 168.0, 50.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79364_BALBc-1_X01_Y02_733_888\", \"ini\": 1209, \"clust\": 655, \"rank\": 185, \"rankvar\": 30, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1617, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1273, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2635, \"group\": [652.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79543_BALBc-1_X01_Y02_735_827\", \"ini\": 1208, \"clust\": 685, \"rank\": 40, \"rankvar\": 386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1618, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 256, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2528, \"group\": [681.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79586_BALBc-1_X01_Y02_736_403\", \"ini\": 1207, \"clust\": 1101, \"rank\": 802, \"rankvar\": 627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1619, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2111, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2398, \"group\": [1102.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79601_BALBc-1_X01_Y02_736_604\", \"ini\": 1206, \"clust\": 1069, \"rank\": 117, \"rankvar\": 570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1620, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 257, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2636, \"group\": [1068.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79632_BALBc-1_X01_Y02_737_250\", \"ini\": 1205, \"clust\": 1065, \"rank\": 94, \"rankvar\": 232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1621, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 258, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1113, \"group\": [1062.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79634_BALBc-1_X01_Y02_737_3\", \"ini\": 1204, \"clust\": 1429, \"rank\": 2404, \"rankvar\": 1430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1622, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2812, \"cat-2\": \"Density: 25\", \"cat_2_index\": 665, \"group\": [1429.0, 567.0, 141.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79643_BALBc-1_X01_Y02_737_366\", \"ini\": 1203, \"clust\": 2330, \"rank\": 2603, \"rankvar\": 2776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1623, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 259, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2260, \"group\": [2332.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79664_BALBc-1_X01_Y02_737_57\", \"ini\": 1202, \"clust\": 218, \"rank\": 980, \"rankvar\": 268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1624, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2493, \"cat-2\": \"Density: 22\", \"cat_2_index\": 295, \"group\": [217.0, 140.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79820_BALBc-1_X01_Y02_739_546\", \"ini\": 1201, \"clust\": 2329, \"rank\": 2513, \"rankvar\": 2536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1625, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2112, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2754, \"group\": [2328.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79964_BALBc-1_X01_Y02_740_484\", \"ini\": 1200, \"clust\": 2356, \"rank\": 2816, \"rankvar\": 2728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1626, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 260, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1991, \"group\": [2357.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80233_BALBc-1_X01_Y02_744_315\", \"ini\": 1199, \"clust\": 2429, \"rank\": 1748, \"rankvar\": 1536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1627, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1274, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1992, \"group\": [2430.0, 1054.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80367_BALBc-1_X01_Y02_746_112\", \"ini\": 1198, \"clust\": 212, \"rank\": 1094, \"rankvar\": 1740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1628, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2315, \"cat-2\": \"Density: 20\", \"cat_2_index\": 164, \"group\": [211.0, 138.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80487_BALBc-1_X01_Y02_747_644\", \"ini\": 1197, \"clust\": 913, \"rank\": 458, \"rankvar\": 881, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1629, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2113, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2779, \"group\": [918.0, 333.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80586_BALBc-1_X01_Y02_748_800\", \"ini\": 1196, \"clust\": 2197, \"rank\": 2519, \"rankvar\": 1018, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1630, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1275, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2637, \"group\": [2196.0, 1007.0, 269.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80591_BALBc-1_X01_Y02_748_849\", \"ini\": 1195, \"clust\": 2198, \"rank\": 2371, \"rankvar\": 683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1631, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 261, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2712, \"group\": [2197.0, 1007.0, 269.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80621_BALBc-1_X01_Y02_749_281\", \"ini\": 1194, \"clust\": 1874, \"rank\": 1547, \"rankvar\": 574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1632, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 262, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1534, \"group\": [1873.0, 804.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80660_BALBc-1_X01_Y02_749_710\", \"ini\": 1193, \"clust\": 264, \"rank\": 1556, \"rankvar\": 1257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1633, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 263, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2713, \"group\": [264.0, 165.0, 49.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80840_BALBc-1_X01_Y02_750_977\", \"ini\": 1192, \"clust\": 358, \"rank\": 682, \"rankvar\": 1356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1634, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1276, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1665, \"group\": [357.0, 223.0, 63.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80920_BALBc-1_X01_Y02_752_157\", \"ini\": 1191, \"clust\": 808, \"rank\": 771, \"rankvar\": 404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1635, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 264, \"cat-2\": \"Density: 21\", \"cat_2_index\": 217, \"group\": [807.0, 291.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80933_BALBc-1_X01_Y02_752_347\", \"ini\": 1190, \"clust\": 374, \"rank\": 809, \"rankvar\": 1295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1636, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1277, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2173, \"group\": [377.0, 229.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80959_BALBc-1_X01_Y02_752_681\", \"ini\": 1189, \"clust\": 2515, \"rank\": 1996, \"rankvar\": 1422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1637, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 265, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2576, \"group\": [2515.0, 1080.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81055_BALBc-1_X01_Y02_753_730\", \"ini\": 1188, \"clust\": 2375, \"rank\": 2569, \"rankvar\": 2350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1638, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 266, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2674, \"group\": [2375.0, 1036.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81183_BALBc-1_X01_Y02_755_360\", \"ini\": 1187, \"clust\": 2430, \"rank\": 1682, \"rankvar\": 758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1639, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1278, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2174, \"group\": [2431.0, 1055.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81243_BALBc-1_X01_Y02_756_213\", \"ini\": 1186, \"clust\": 1947, \"rank\": 1673, \"rankvar\": 1146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1640, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2587, \"cat-2\": \"Density: 24\", \"cat_2_index\": 529, \"group\": [1950.0, 841.0, 215.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81269_BALBc-1_X01_Y02_756_466\", \"ini\": 1185, \"clust\": 2327, \"rank\": 2623, \"rankvar\": 2655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1641, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 267, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2091, \"group\": [2329.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81277_BALBc-1_X01_Y02_756_573\", \"ini\": 1184, \"clust\": 542, \"rank\": 246, \"rankvar\": 89, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1642, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 268, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2802, \"group\": [544.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81309_BALBc-1_X01_Y02_756_874\", \"ini\": 1183, \"clust\": 2076, \"rank\": 1592, \"rankvar\": 931, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1643, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1279, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2638, \"group\": [2077.0, 941.0, 253.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81353_BALBc-1_X01_Y02_757_444\", \"ini\": 1182, \"clust\": 2438, \"rank\": 2417, \"rankvar\": 2071, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1644, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2114, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2175, \"group\": [2438.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81355_BALBc-1_X01_Y02_757_476\", \"ini\": 1181, \"clust\": 389, \"rank\": 697, \"rankvar\": 84, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1645, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2115, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2092, \"group\": [394.0, 236.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81446_BALBc-1_X01_Y02_758_596\", \"ini\": 1180, \"clust\": 2317, \"rank\": 2296, \"rankvar\": 2032, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1646, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 269, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2780, \"group\": [2317.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81458_BALBc-1_X01_Y02_758_756\", \"ini\": 1179, \"clust\": 569, \"rank\": 66, \"rankvar\": 886, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1647, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1280, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2714, \"group\": [568.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81459_BALBc-1_X01_Y02_758_783\", \"ini\": 1178, \"clust\": 2088, \"rank\": 1495, \"rankvar\": 999, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1648, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1281, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2675, \"group\": [2091.0, 945.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81463_BALBc-1_X01_Y02_758_825\", \"ini\": 1177, \"clust\": 2809, \"rank\": 1914, \"rankvar\": 1251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1649, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 270, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2676, \"group\": [2810.0, 1190.0, 307.0, 82.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81725_BALBc-1_X01_Y02_761_43\", \"ini\": 1176, \"clust\": 95, \"rank\": 1786, \"rankvar\": 1121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1650, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2316, \"cat-2\": \"Density: 20\", \"cat_2_index\": 165, \"group\": [97.0, 52.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81746_BALBc-1_X01_Y02_761_621\", \"ini\": 1175, \"clust\": 2540, \"rank\": 2564, \"rankvar\": 1946, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1651, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2116, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2715, \"group\": [2540.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81892_BALBc-1_X01_Y02_763_542\", \"ini\": 1174, \"clust\": 2444, \"rank\": 2328, \"rankvar\": 2648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1652, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 271, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2716, \"group\": [2445.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82092_BALBc-1_X01_Y02_766_413\", \"ini\": 1173, \"clust\": 2459, \"rank\": 1851, \"rankvar\": 2242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1653, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2117, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2176, \"group\": [2458.0, 1058.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82120_BALBc-1_X01_Y02_766_839\", \"ini\": 1172, \"clust\": 1967, \"rank\": 906, \"rankvar\": 1383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1654, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 272, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2781, \"group\": [1968.0, 853.0, 219.0, 59.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82269_BALBc-1_X01_Y02_768_578\", \"ini\": 1171, \"clust\": 2576, \"rank\": 2180, \"rankvar\": 1899, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1655, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 273, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2677, \"group\": [2575.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82462_BALBc-1_X01_Y02_770_223\", \"ini\": 1170, \"clust\": 1943, \"rank\": 1743, \"rankvar\": 2206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1656, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 274, \"cat-2\": \"Density: 25\", \"cat_2_index\": 666, \"group\": [1943.0, 835.0, 214.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82468_BALBc-1_X01_Y02_770_255\", \"ini\": 1169, \"clust\": 287, \"rank\": 1124, \"rankvar\": 399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1657, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 275, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1408, \"group\": [287.0, 181.0, 53.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82542_BALBc-1_X01_Y02_771_302\", \"ini\": 1168, \"clust\": 371, \"rank\": 467, \"rankvar\": 444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1658, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1282, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1774, \"group\": [372.0, 226.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82661_BALBc-1_X01_Y02_772_660\", \"ini\": 1167, \"clust\": 854, \"rank\": 1142, \"rankvar\": 462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1659, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2118, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2782, \"group\": [853.0, 309.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82801_BALBc-1_X01_Y02_774_517\", \"ini\": 1166, \"clust\": 2810, \"rank\": 1557, \"rankvar\": 1649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1660, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2119, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2333, \"group\": [2811.0, 1191.0, 307.0, 82.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82803_BALBc-1_X01_Y02_774_554\", \"ini\": 1165, \"clust\": 1184, \"rank\": 800, \"rankvar\": 353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1661, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 276, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2678, \"group\": [1185.0, 416.0, 94.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82911_BALBc-1_X01_Y02_776_103\", \"ini\": 1164, \"clust\": 1995, \"rank\": 1915, \"rankvar\": 1083, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1662, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1283, \"cat-2\": \"Density: 20\", \"cat_2_index\": 166, \"group\": [1994.0, 875.0, 227.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83429_BALBc-1_X01_Y02_781_749\", \"ini\": 1163, \"clust\": 2624, \"rank\": 1978, \"rankvar\": 1984, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1663, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 277, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2679, \"group\": [2621.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83606_BALBc-1_X01_Y02_784_170\", \"ini\": 1162, \"clust\": 787, \"rank\": 188, \"rankvar\": 1914, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1664, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 278, \"cat-2\": \"Density: 24\", \"cat_2_index\": 530, \"group\": [787.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83627_BALBc-1_X01_Y02_784_444\", \"ini\": 1161, \"clust\": 1097, \"rank\": 536, \"rankvar\": 1336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1665, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 279, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2177, \"group\": [1095.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83644_BALBc-1_X01_Y02_784_688\", \"ini\": 1160, \"clust\": 2396, \"rank\": 1788, \"rankvar\": 1271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1666, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 280, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2755, \"group\": [2396.0, 1040.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83649_BALBc-1_X01_Y02_784_705\", \"ini\": 1159, \"clust\": 2276, \"rank\": 2634, \"rankvar\": 2453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1667, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 281, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2577, \"group\": [2277.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83656_BALBc-1_X01_Y02_784_772\", \"ini\": 1158, \"clust\": 132, \"rank\": 1219, \"rankvar\": 303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1668, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 282, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2756, \"group\": [136.0, 85.0, 22.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83744_BALBc-1_X01_Y02_785_846\", \"ini\": 1157, \"clust\": 1975, \"rank\": 1534, \"rankvar\": 1887, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1669, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1284, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2803, \"group\": [1975.0, 860.0, 221.0, 59.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83780_BALBc-1_X01_Y02_786_374\", \"ini\": 1156, \"clust\": 2743, \"rank\": 2352, \"rankvar\": 2456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1670, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1285, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2178, \"group\": [2741.0, 1166.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84081_BALBc-1_X01_Y02_789_906\", \"ini\": 1155, \"clust\": 2781, \"rank\": 2398, \"rankvar\": 2000, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1671, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1286, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2717, \"group\": [2784.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84286_BALBc-1_X01_Y02_791_823\", \"ini\": 1154, \"clust\": 387, \"rank\": 1053, \"rankvar\": 326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1672, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 283, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2783, \"group\": [388.0, 233.0, 65.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84428_BALBc-1_X01_Y02_793_482\", \"ini\": 1153, \"clust\": 2550, \"rank\": 2628, \"rankvar\": 1399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1673, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2120, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2578, \"group\": [2548.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84437_BALBc-1_X01_Y02_793_558\", \"ini\": 1152, \"clust\": 2376, \"rank\": 2587, \"rankvar\": 2169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1674, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 284, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2639, \"group\": [2376.0, 1036.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84444_BALBc-1_X01_Y02_793_629\", \"ini\": 1151, \"clust\": 2347, \"rank\": 2645, \"rankvar\": 2764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1675, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2121, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2718, \"group\": [2348.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84524_BALBc-1_X01_Y02_794_639\", \"ini\": 1150, \"clust\": 417, \"rank\": 319, \"rankvar\": 1182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1676, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2122, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2719, \"group\": [417.0, 243.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84668_BALBc-1_X01_Y02_796_252\", \"ini\": 1149, \"clust\": 2239, \"rank\": 2111, \"rankvar\": 649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1677, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 285, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1114, \"group\": [2240.0, 1023.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84693_BALBc-1_X01_Y02_796_606\", \"ini\": 1148, \"clust\": 2141, \"rank\": 1698, \"rankvar\": 243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1678, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2123, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2822, \"group\": [2142.0, 972.0, 258.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84771_BALBc-1_X01_Y02_797_576\", \"ini\": 1147, \"clust\": 418, \"rank\": 301, \"rankvar\": 1171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1679, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 286, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2804, \"group\": [418.0, 243.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84890_BALBc-1_X01_Y02_799_133\", \"ini\": 1146, \"clust\": 223, \"rank\": 679, \"rankvar\": 1479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1680, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1287, \"cat-2\": \"Density: 22\", \"cat_2_index\": 296, \"group\": [222.0, 140.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85210_BALBc-1_X01_Y02_801_416\", \"ini\": 1145, \"clust\": 909, \"rank\": 939, \"rankvar\": 281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1681, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2124, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2334, \"group\": [910.0, 332.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85318_BALBc-1_X01_Y02_802_791\", \"ini\": 1144, \"clust\": 880, \"rank\": 1422, \"rankvar\": 695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1682, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 287, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2720, \"group\": [881.0, 319.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85392_BALBc-1_X01_Y02_803_774\", \"ini\": 1143, \"clust\": 2564, \"rank\": 2294, \"rankvar\": 1117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1683, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 288, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2757, \"group\": [2564.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85429_BALBc-1_X01_Y02_804_316\", \"ini\": 1142, \"clust\": 2416, \"rank\": 1929, \"rankvar\": 1048, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1684, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1288, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1535, \"group\": [2417.0, 1049.0, 273.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85448_BALBc-1_X01_Y02_804_541\", \"ini\": 1141, \"clust\": 2636, \"rank\": 2010, \"rankvar\": 543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1685, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 289, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2640, \"group\": [2637.0, 1102.0, 283.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85463_BALBc-1_X01_Y02_804_714\", \"ini\": 1140, \"clust\": 412, \"rank\": 562, \"rankvar\": 539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1686, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 290, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2721, \"group\": [413.0, 242.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85557_BALBc-1_X01_Y02_805_753\", \"ini\": 1139, \"clust\": 2397, \"rank\": 1767, \"rankvar\": 1258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1687, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 291, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2758, \"group\": [2397.0, 1040.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85602_BALBc-1_X01_Y02_806_33\", \"ini\": 1138, \"clust\": 1150, \"rank\": 765, \"rankvar\": 188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1688, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2458, \"cat-2\": \"Density: 25\", \"cat_2_index\": 667, \"group\": [1150.0, 387.0, 82.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85669_BALBc-1_X01_Y02_807_182\", \"ini\": 1137, \"clust\": 1829, \"rank\": 2693, \"rankvar\": 2562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1689, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2588, \"cat-2\": \"Density: 27\", \"cat_2_index\": 959, \"group\": [1827.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85834_BALBc-1_X01_Y02_809_436\", \"ini\": 1136, \"clust\": 2420, \"rank\": 2223, \"rankvar\": 2351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1690, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2125, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2261, \"group\": [2420.0, 1050.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85868_BALBc-1_X01_Y02_809_912\", \"ini\": 1135, \"clust\": 369, \"rank\": 327, \"rankvar\": 2278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1691, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1289, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2805, \"group\": [369.0, 225.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85898_BALBc-1_X01_Y02_81_389\", \"ini\": 1134, \"clust\": 1233, \"rank\": 1174, \"rankvar\": 2259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1692, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1290, \"cat-2\": \"Density: 21\", \"cat_2_index\": 218, \"group\": [1234.0, 449.0, 105.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85923_BALBc-1_X01_Y02_81_743\", \"ini\": 1133, \"clust\": 1888, \"rank\": 2646, \"rankvar\": 2675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1693, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2589, \"cat-2\": \"Density: 25\", \"cat_2_index\": 668, \"group\": [1889.0, 808.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85974_BALBc-1_X01_Y02_810_459\", \"ini\": 1132, \"clust\": 2451, \"rank\": 1841, \"rankvar\": 2557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1694, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 292, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2262, \"group\": [2452.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85979_BALBc-1_X01_Y02_810_520\", \"ini\": 1131, \"clust\": 2377, \"rank\": 2256, \"rankvar\": 1863, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1695, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2126, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2475, \"group\": [2380.0, 1036.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86074_BALBc-1_X01_Y02_811_664\", \"ini\": 1130, \"clust\": 2776, \"rank\": 2309, \"rankvar\": 1408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1696, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 293, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2759, \"group\": [2779.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86098_BALBc-1_X01_Y02_811_975\", \"ini\": 1129, \"clust\": 1157, \"rank\": 947, \"rankvar\": 863, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1697, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1291, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1666, \"group\": [1156.0, 392.0, 84.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86157_BALBc-1_X01_Y02_812_892\", \"ini\": 1128, \"clust\": 1155, \"rank\": 1038, \"rankvar\": 199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1698, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1292, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2806, \"group\": [1159.0, 394.0, 84.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86213_BALBc-1_X01_Y02_813_595\", \"ini\": 1127, \"clust\": 2348, \"rank\": 2608, \"rankvar\": 2692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1699, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 294, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2680, \"group\": [2349.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86243_BALBc-1_X01_Y02_813_835\", \"ini\": 1126, \"clust\": 2234, \"rank\": 1919, \"rankvar\": 786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1700, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 295, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2722, \"group\": [2235.0, 1022.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86335_BALBc-1_X01_Y02_814_809\", \"ini\": 1125, \"clust\": 756, \"rank\": 197, \"rankvar\": 174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1701, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 296, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2723, \"group\": [755.0, 280.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86391_BALBc-1_X01_Y02_815_690\", \"ini\": 1124, \"clust\": 729, \"rank\": 316, \"rankvar\": 95, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1702, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 297, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2784, \"group\": [727.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86425_BALBc-1_X01_Y02_816_222\", \"ini\": 1123, \"clust\": 2045, \"rank\": 2094, \"rankvar\": 1518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1703, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 298, \"cat-2\": \"Density: 27\", \"cat_2_index\": 960, \"group\": [2044.0, 913.0, 238.0, 64.0, 15.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86647_BALBc-1_X01_Y02_819_250\", \"ini\": 1122, \"clust\": 2644, \"rank\": 2086, \"rankvar\": 394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1704, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 299, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1115, \"group\": [2645.0, 1108.0, 285.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86676_BALBc-1_X01_Y02_819_581\", \"ini\": 1121, \"clust\": 2365, \"rank\": 2783, \"rankvar\": 2716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1705, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 300, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2681, \"group\": [2363.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86754_BALBc-1_X01_Y02_82_796\", \"ini\": 1120, \"clust\": 1813, \"rank\": 2682, \"rankvar\": 2161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1706, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1293, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1116, \"group\": [1816.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86790_BALBc-1_X01_Y02_820_302\", \"ini\": 1119, \"clust\": 269, \"rank\": 1390, \"rankvar\": 1008, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1707, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 301, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1775, \"group\": [270.0, 170.0, 50.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86794_BALBc-1_X01_Y02_820_348\", \"ini\": 1118, \"clust\": 2691, \"rank\": 1029, \"rankvar\": 1902, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1708, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1294, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2093, \"group\": [2692.0, 1143.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86829_BALBc-1_X01_Y02_820_75\", \"ini\": 1117, \"clust\": 444, \"rank\": 434, \"rankvar\": 1565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1709, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1295, \"cat-2\": \"Density: 22\", \"cat_2_index\": 297, \"group\": [445.0, 257.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86839_BALBc-1_X01_Y02_820_855\", \"ini\": 1116, \"clust\": 937, \"rank\": 883, \"rankvar\": 423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1710, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1296, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2785, \"group\": [937.0, 340.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86899_BALBc-1_X01_Y02_821_630\", \"ini\": 1115, \"clust\": 2485, \"rank\": 1620, \"rankvar\": 1217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1711, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 302, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2724, \"group\": [2489.0, 1073.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87034_BALBc-1_X01_Y02_823_34\", \"ini\": 1114, \"clust\": 2473, \"rank\": 1624, \"rankvar\": 1241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1712, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2459, \"cat-2\": \"Density: 25\", \"cat_2_index\": 669, \"group\": [2474.0, 1062.0, 275.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87221_BALBc-1_X01_Y02_825_543\", \"ini\": 1113, \"clust\": 2153, \"rank\": 1576, \"rankvar\": 1893, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1713, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 303, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2579, \"group\": [2153.0, 980.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87372_BALBc-1_X01_Y02_827_730\", \"ini\": 1112, \"clust\": 2505, \"rank\": 1722, \"rankvar\": 184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1714, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 304, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2682, \"group\": [2504.0, 1077.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87470_BALBc-1_X01_Y02_828_775\", \"ini\": 1111, \"clust\": 2300, \"rank\": 2175, \"rankvar\": 1531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1715, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2127, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2760, \"group\": [2304.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87639_BALBc-1_X01_Y02_830_197\", \"ini\": 1110, \"clust\": 1959, \"rank\": 1342, \"rankvar\": 2301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1716, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1297, \"cat-2\": \"Density: 24\", \"cat_2_index\": 531, \"group\": [1958.0, 845.0, 216.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87741_BALBc-1_X01_Y02_831_562\", \"ini\": 1109, \"clust\": 2551, \"rank\": 2559, \"rankvar\": 1783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1717, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 305, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2641, \"group\": [2552.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87745_BALBc-1_X01_Y02_831_662\", \"ini\": 1108, \"clust\": 2467, \"rank\": 1674, \"rankvar\": 2342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1718, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1298, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2725, \"group\": [2467.0, 1058.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87997_BALBc-1_X01_Y02_835_259\", \"ini\": 1107, \"clust\": 881, \"rank\": 1385, \"rankvar\": 921, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1719, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 306, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1409, \"group\": [882.0, 319.0, 73.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88002_BALBc-1_X01_Y02_835_327\", \"ini\": 1106, \"clust\": 695, \"rank\": 328, \"rankvar\": 375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1720, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2590, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1993, \"group\": [695.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88095_BALBc-1_X01_Y02_836_515\", \"ini\": 1105, \"clust\": 2304, \"rank\": 2635, \"rankvar\": 2443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1721, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2128, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2580, \"group\": [2307.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88266_BALBc-1_X01_Y02_838_738\", \"ini\": 1104, \"clust\": 860, \"rank\": 972, \"rankvar\": 960, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1722, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 307, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2761, \"group\": [858.0, 311.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88354_BALBc-1_X01_Y02_839_825\", \"ini\": 1103, \"clust\": 1720, \"rank\": 2571, \"rankvar\": 2795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1723, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 308, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2823, \"group\": [1718.0, 739.0, 193.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88357_BALBc-1_X01_Y02_839_852\", \"ini\": 1102, \"clust\": 2503, \"rank\": 1821, \"rankvar\": 1009, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1724, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1299, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2817, \"group\": [2514.0, 1079.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88496_BALBc-1_X01_Y02_840_696\", \"ini\": 1101, \"clust\": 936, \"rank\": 1048, \"rankvar\": 547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1725, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1300, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2762, \"group\": [938.0, 340.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88510_BALBc-1_X01_Y02_840_903\", \"ini\": 1100, \"clust\": 2753, \"rank\": 1805, \"rankvar\": 1999, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1726, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1301, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2807, \"group\": [2752.0, 1170.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88541_BALBc-1_X01_Y02_841_302\", \"ini\": 1099, \"clust\": 2431, \"rank\": 1774, \"rankvar\": 1263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1727, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2591, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1994, \"group\": [2432.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88548_BALBc-1_X01_Y02_841_352\", \"ini\": 1098, \"clust\": 2432, \"rank\": 1980, \"rankvar\": 1906, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1728, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2129, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2335, \"group\": [2433.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88675_BALBc-1_X01_Y02_843_224\", \"ini\": 1097, \"clust\": 972, \"rank\": 826, \"rankvar\": 217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1729, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1302, \"cat-2\": \"Density: 26\", \"cat_2_index\": 812, \"group\": [973.0, 353.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88693_BALBc-1_X01_Y02_843_446\", \"ini\": 1096, \"clust\": 2352, \"rank\": 2715, \"rankvar\": 2611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1730, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2130, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2399, \"group\": [2354.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88704_BALBc-1_X01_Y02_843_602\", \"ini\": 1095, \"clust\": 2312, \"rank\": 2745, \"rankvar\": 2734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1731, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2131, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2763, \"group\": [2312.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88810_BALBc-1_X01_Y02_844_808\", \"ini\": 1094, \"clust\": 452, \"rank\": 705, \"rankvar\": 1153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1732, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 309, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2764, \"group\": [456.0, 259.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88868_BALBc-1_X01_Y02_845_558\", \"ini\": 1093, \"clust\": 594, \"rank\": 8, \"rankvar\": 608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1733, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 310, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2683, \"group\": [591.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88930_BALBc-1_X01_Y02_846_528\", \"ini\": 1092, \"clust\": 134, \"rank\": 1427, \"rankvar\": 839, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1734, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 311, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2400, \"group\": [134.0, 83.0, 21.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89014_BALBc-1_X01_Y02_847_497\", \"ini\": 1091, \"clust\": 2634, \"rank\": 1997, \"rankvar\": 722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1735, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2132, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2476, \"group\": [2634.0, 1101.0, 283.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89025_BALBc-1_X01_Y02_847_613\", \"ini\": 1090, \"clust\": 911, \"rank\": 1101, \"rankvar\": 745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1736, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2133, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2808, \"group\": [911.0, 332.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89310_BALBc-1_X01_Y02_850_368\", \"ini\": 1089, \"clust\": 951, \"rank\": 1004, \"rankvar\": 1000, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1737, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2134, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2336, \"group\": [950.0, 343.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89480_BALBc-1_X01_Y02_852_712\", \"ini\": 1088, \"clust\": 675, \"rank\": 231, \"rankvar\": 100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1738, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1303, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2684, \"group\": [674.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89535_BALBc-1_X01_Y02_853_431\", \"ini\": 1087, \"clust\": 2413, \"rank\": 1863, \"rankvar\": 1253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1739, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2135, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2401, \"group\": [2412.0, 1045.0, 272.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89554_BALBc-1_X01_Y02_853_632\", \"ini\": 1086, \"clust\": 663, \"rank\": 214, \"rankvar\": 265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1740, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 312, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2685, \"group\": [661.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89574_BALBc-1_X01_Y02_853_890\", \"ini\": 1085, \"clust\": 890, \"rank\": 748, \"rankvar\": 611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1741, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1304, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2786, \"group\": [890.0, 325.0, 75.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89619_BALBc-1_X01_Y02_854_42\", \"ini\": 1084, \"clust\": 445, \"rank\": 374, \"rankvar\": 2076, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1742, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1975, \"cat-2\": \"Density: 25\", \"cat_2_index\": 670, \"group\": [446.0, 257.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89667_BALBc-1_X01_Y02_854_933\", \"ini\": 1083, \"clust\": 2092, \"rank\": 1357, \"rankvar\": 858, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1743, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1305, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2642, \"group\": [2093.0, 946.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89670_BALBc-1_X01_Y02_854_970\", \"ini\": 1082, \"clust\": 666, \"rank\": 44, \"rankvar\": 517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1744, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1306, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1776, \"group\": [663.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89808_BALBc-1_X01_Y02_856_577\", \"ini\": 1081, \"clust\": 917, \"rank\": 604, \"rankvar\": 1097, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1745, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2136, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2787, \"group\": [915.0, 333.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89834_BALBc-1_X01_Y02_856_743\", \"ini\": 1080, \"clust\": 2496, \"rank\": 1907, \"rankvar\": 1584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1746, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2137, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2686, \"group\": [2498.0, 1076.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89916_BALBc-1_X01_Y02_857_916\", \"ini\": 1079, \"clust\": 739, \"rank\": 178, \"rankvar\": 362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1747, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1307, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2765, \"group\": [741.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90046_BALBc-1_X01_Y02_859_832\", \"ini\": 1078, \"clust\": 1071, \"rank\": 381, \"rankvar\": 598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1748, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 313, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2788, \"group\": [1071.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90073_BALBc-1_X01_Y02_86_249\", \"ini\": 1077, \"clust\": 2817, \"rank\": 1468, \"rankvar\": 91, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1749, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1308, \"cat-2\": \"Density: 24\", \"cat_2_index\": 532, \"group\": [2818.0, 1197.0, 309.0, 82.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90207_BALBc-1_X01_Y02_860_848\", \"ini\": 1076, \"clust\": 2705, \"rank\": 1792, \"rankvar\": 2465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1750, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1309, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2726, \"group\": [2706.0, 1146.0, 296.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90347_BALBc-1_X01_Y02_862_790\", \"ini\": 1075, \"clust\": 2541, \"rank\": 2493, \"rankvar\": 1888, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1751, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2138, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2687, \"group\": [2541.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90484_BALBc-1_X01_Y02_864_649\", \"ini\": 1074, \"clust\": 2371, \"rank\": 2738, \"rankvar\": 2706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1752, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 314, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2824, \"group\": [2371.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90517_BALBc-1_X01_Y02_865_117\", \"ini\": 1073, \"clust\": 236, \"rank\": 1181, \"rankvar\": 221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1753, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1310, \"cat-2\": \"Density: 25\", \"cat_2_index\": 671, \"group\": [236.0, 147.0, 45.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90526_BALBc-1_X01_Y02_865_275\", \"ini\": 1072, \"clust\": 409, \"rank\": 464, \"rankvar\": 10, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1754, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2592, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1536, \"group\": [410.0, 242.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90627_BALBc-1_X01_Y02_866_672\", \"ini\": 1071, \"clust\": 2192, \"rank\": 2637, \"rankvar\": 2587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1755, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1311, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2766, \"group\": [2191.0, 1003.0, 268.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90717_BALBc-1_X01_Y02_867_77\", \"ini\": 1070, \"clust\": 142, \"rank\": 1519, \"rankvar\": 119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1756, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1312, \"cat-2\": \"Density: 23\", \"cat_2_index\": 409, \"group\": [151.0, 95.0, 26.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90877_BALBc-1_X01_Y02_869_470\", \"ini\": 1069, \"clust\": 1034, \"rank\": 510, \"rankvar\": 155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1757, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 315, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2477, \"group\": [1035.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91022_BALBc-1_X01_Y02_870_430\", \"ini\": 1068, \"clust\": 1125, \"rank\": 854, \"rankvar\": 352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1758, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 316, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2263, \"group\": [1125.0, 376.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91052_BALBc-1_X01_Y02_870_812\", \"ini\": 1067, \"clust\": 763, \"rank\": 549, \"rankvar\": 258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1759, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 317, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2809, \"group\": [763.0, 281.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91129_BALBc-1_X01_Y02_871_893\", \"ini\": 1066, \"clust\": 2759, \"rank\": 2277, \"rankvar\": 2270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1760, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1313, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2789, \"group\": [2759.0, 1172.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91141_BALBc-1_X01_Y02_872_170\", \"ini\": 1065, \"clust\": 1946, \"rank\": 1432, \"rankvar\": 732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1761, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1314, \"cat-2\": \"Density: 24\", \"cat_2_index\": 533, \"group\": [1947.0, 838.0, 214.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91166_BALBc-1_X01_Y02_872_397\", \"ini\": 1064, \"clust\": 702, \"rank\": 248, \"rankvar\": 2014, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1762, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2139, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2337, \"group\": [702.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91495_BALBc-1_X01_Y02_876_48\", \"ini\": 1063, \"clust\": 954, \"rank\": 726, \"rankvar\": 592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1763, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2593, \"cat-2\": \"Density: 24\", \"cat_2_index\": 534, \"group\": [953.0, 345.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91511_BALBc-1_X01_Y02_876_712\", \"ini\": 1062, \"clust\": 410, \"rank\": 858, \"rankvar\": 1, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1764, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1315, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2581, \"group\": [411.0, 242.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91600_BALBc-1_X01_Y02_877_848\", \"ini\": 1061, \"clust\": 378, \"rank\": 438, \"rankvar\": 880, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1765, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1316, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2688, \"group\": [380.0, 230.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91734_BALBc-1_X01_Y02_879_562\", \"ini\": 1060, \"clust\": 2152, \"rank\": 1670, \"rankvar\": 613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1766, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2140, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2478, \"group\": [2157.0, 981.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91760_BALBc-1_X01_Y02_879_747\", \"ini\": 1059, \"clust\": 2751, \"rank\": 2478, \"rankvar\": 2643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1767, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2141, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2767, \"group\": [2750.0, 1170.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91896_BALBc-1_X01_Y02_880_618\", \"ini\": 1058, \"clust\": 2739, \"rank\": 2397, \"rankvar\": 1714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1768, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2142, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2768, \"group\": [2737.0, 1164.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91987_BALBc-1_X01_Y02_881_761\", \"ini\": 1057, \"clust\": 2090, \"rank\": 1535, \"rankvar\": 1139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1769, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2143, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2727, \"group\": [2088.0, 945.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92091_BALBc-1_X01_Y02_883_354\", \"ini\": 1056, \"clust\": 2403, \"rank\": 1407, \"rankvar\": 1588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1770, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 318, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2264, \"group\": [2403.0, 1042.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92101_BALBc-1_X01_Y02_883_525\", \"ini\": 1055, \"clust\": 332, \"rank\": 575, \"rankvar\": 705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1771, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 319, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2479, \"group\": [332.0, 208.0, 60.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92192_BALBc-1_X01_Y02_884_787\", \"ini\": 1054, \"clust\": 1193, \"rank\": 843, \"rankvar\": 734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1772, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2144, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2790, \"group\": [1193.0, 423.0, 96.0, 23.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92232_BALBc-1_X01_Y02_885_452\", \"ini\": 1053, \"clust\": 875, \"rank\": 623, \"rankvar\": 937, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1773, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 320, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2402, \"group\": [874.0, 316.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92319_BALBc-1_X01_Y02_886_720\", \"ini\": 1052, \"clust\": 398, \"rank\": 649, \"rankvar\": 190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1774, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 321, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2728, \"group\": [398.0, 238.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92390_BALBc-1_X01_Y02_887_673\", \"ini\": 1051, \"clust\": 912, \"rank\": 772, \"rankvar\": 724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1775, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1317, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2729, \"group\": [912.0, 332.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92396_BALBc-1_X01_Y02_887_730\", \"ini\": 1050, \"clust\": 2553, \"rank\": 2594, \"rankvar\": 1760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1776, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 322, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2582, \"group\": [2551.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92444_BALBc-1_X01_Y02_888_377\", \"ini\": 1049, \"clust\": 460, \"rank\": 416, \"rankvar\": 1003, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1777, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 323, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2403, \"group\": [464.0, 260.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92446_BALBc-1_X01_Y02_888_392\", \"ini\": 1048, \"clust\": 2623, \"rank\": 2021, \"rankvar\": 1869, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1778, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 324, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2265, \"group\": [2623.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92557_BALBc-1_X01_Y02_889_842\", \"ini\": 1047, \"clust\": 2787, \"rank\": 2401, \"rankvar\": 1966, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1779, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1318, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2810, \"group\": [2789.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92644_BALBc-1_X01_Y02_890_129\", \"ini\": 1046, \"clust\": 1922, \"rank\": 1611, \"rankvar\": 2058, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1780, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2594, \"cat-2\": \"Density: 27\", \"cat_2_index\": 961, \"group\": [1926.0, 823.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92729_BALBc-1_X01_Y02_891_16\", \"ini\": 1045, \"clust\": 61, \"rank\": 1745, \"rankvar\": 1049, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1781, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2595, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1117, \"group\": [60.0, 27.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92737_BALBc-1_X01_Y02_891_219\", \"ini\": 1044, \"clust\": 876, \"rank\": 898, \"rankvar\": 401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1782, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1319, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1260, \"group\": [880.0, 318.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92747_BALBc-1_X01_Y02_891_339\", \"ini\": 1043, \"clust\": 2411, \"rank\": 1943, \"rankvar\": 1096, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1783, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2596, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2266, \"group\": [2413.0, 1046.0, 272.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92963_BALBc-1_X01_Y02_894_270\", \"ini\": 1042, \"clust\": 1721, \"rank\": 2543, \"rankvar\": 2745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1784, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2597, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1410, \"group\": [1724.0, 743.0, 194.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92994_BALBc-1_X01_Y02_894_579\", \"ini\": 1041, \"clust\": 2747, \"rank\": 2018, \"rankvar\": 2396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1785, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2145, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2643, \"group\": [2747.0, 1170.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93017_BALBc-1_X01_Y02_894_895\", \"ini\": 1040, \"clust\": 2754, \"rank\": 1640, \"rankvar\": 2151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1786, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1320, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2644, \"group\": [2753.0, 1170.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93023_BALBc-1_X01_Y02_894_972\", \"ini\": 1039, \"clust\": 2699, \"rank\": 915, \"rankvar\": 1890, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1787, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1321, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1261, \"group\": [2703.0, 1144.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93058_BALBc-1_X01_Y02_895_417\", \"ini\": 1038, \"clust\": 1657, \"rank\": 1544, \"rankvar\": 1713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1788, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 325, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2179, \"group\": [1660.0, 690.0, 176.0, 44.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93151_BALBc-1_X01_Y02_896_819\", \"ini\": 1037, \"clust\": 359, \"rank\": 598, \"rankvar\": 1016, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1789, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1322, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2791, \"group\": [358.0, 223.0, 63.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93204_BALBc-1_X01_Y02_897_498\", \"ini\": 1036, \"clust\": 2561, \"rank\": 2015, \"rankvar\": 1023, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1790, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 326, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2480, \"group\": [2562.0, 1086.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93411_BALBc-1_X01_Y02_9_314\", \"ini\": 1035, \"clust\": 801, \"rank\": 149, \"rankvar\": 1907, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1791, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1323, \"cat-2\": \"Density: 12\", \"cat_2_index\": 8, \"group\": [801.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93436_BALBc-1_X01_Y02_9_681\", \"ini\": 1034, \"clust\": 1252, \"rank\": 2096, \"rankvar\": 2131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1792, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 327, \"cat-2\": \"Density: 12\", \"cat_2_index\": 9, \"group\": [1253.0, 466.0, 112.0, 28.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93586_BALBc-1_X01_Y02_900_660\", \"ini\": 1033, \"clust\": 2253, \"rank\": 2546, \"rankvar\": 1934, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1793, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 328, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2645, \"group\": [2252.0, 1027.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93735_BALBc-1_X01_Y02_902_696\", \"ini\": 1032, \"clust\": 136, \"rank\": 1140, \"rankvar\": 872, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1794, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 329, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2646, \"group\": [133.0, 82.0, 21.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93759_BALBc-1_X01_Y02_903_167\", \"ini\": 1031, \"clust\": 1022, \"rank\": 219, \"rankvar\": 73, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1795, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2813, \"cat-2\": \"Density: 25\", \"cat_2_index\": 672, \"group\": [1021.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93900_BALBc-1_X01_Y02_905_185\", \"ini\": 1030, \"clust\": 2166, \"rank\": 1739, \"rankvar\": 1110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1796, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2598, \"cat-2\": \"Density: 27\", \"cat_2_index\": 962, \"group\": [2167.0, 984.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93911_BALBc-1_X01_Y02_905_312\", \"ini\": 1029, \"clust\": 999, \"rank\": 652, \"rankvar\": 1321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1797, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2599, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1878, \"group\": [998.0, 362.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94069_BALBc-1_X01_Y02_907_471\", \"ini\": 1028, \"clust\": 2350, \"rank\": 2444, \"rankvar\": 1719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1798, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 330, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2481, \"group\": [2351.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94075_BALBc-1_X01_Y02_907_532\", \"ini\": 1027, \"clust\": 658, \"rank\": 186, \"rankvar\": 290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1799, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 331, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2180, \"group\": [658.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94153_BALBc-1_X01_Y02_908_623\", \"ini\": 1026, \"clust\": 2677, \"rank\": 1492, \"rankvar\": 1178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1800, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1976, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2583, \"group\": [2677.0, 1135.0, 292.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94234_BALBc-1_X01_Y02_909_73\", \"ini\": 1025, \"clust\": 1368, \"rank\": 2423, \"rankvar\": 2357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1801, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2600, \"cat-2\": \"Density: 25\", \"cat_2_index\": 673, \"group\": [1369.0, 535.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94463_BALBc-1_X01_Y02_911_790\", \"ini\": 1024, \"clust\": 2568, \"rank\": 2253, \"rankvar\": 1808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1802, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1324, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2730, \"group\": [2567.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94538_BALBc-1_X01_Y02_912_752\", \"ini\": 1023, \"clust\": 2238, \"rank\": 2344, \"rankvar\": 1718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1803, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2317, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2769, \"group\": [2238.0, 1022.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94605_BALBc-1_X01_Y02_913_728\", \"ini\": 1022, \"clust\": 991, \"rank\": 592, \"rankvar\": 865, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1804, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2318, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2584, \"group\": [992.0, 360.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94692_BALBc-1_X01_Y02_914_972\", \"ini\": 1021, \"clust\": 1180, \"rank\": 1291, \"rankvar\": 452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1805, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1325, \"cat-2\": \"Density: 27\", \"cat_2_index\": 963, \"group\": [1179.0, 411.0, 93.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94737_BALBc-1_X01_Y02_915_653\", \"ini\": 1020, \"clust\": 2562, \"rank\": 2254, \"rankvar\": 1827, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1806, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 332, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2647, \"group\": [2573.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94800_BALBc-1_X01_Y02_916_392\", \"ini\": 1019, \"clust\": 986, \"rank\": 669, \"rankvar\": 224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1807, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 333, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2404, \"group\": [985.0, 356.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94865_BALBc-1_X01_Y02_917_414\", \"ini\": 1018, \"clust\": 1151, \"rank\": 1003, \"rankvar\": 1180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1808, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 334, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2267, \"group\": [1151.0, 387.0, 82.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94917_BALBc-1_X01_Y02_918_144\", \"ini\": 1017, \"clust\": 2824, \"rank\": 1596, \"rankvar\": 77, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1809, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2601, \"cat-2\": \"Density: 23\", \"cat_2_index\": 410, \"group\": [2824.0, 1202.0, 312.0, 83.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94976_BALBc-1_X01_Y02_918_685\", \"ini\": 1016, \"clust\": 2532, \"rank\": 2476, \"rankvar\": 873, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1810, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 335, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2585, \"group\": [2532.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95031_BALBc-1_X01_Y02_919_496\", \"ini\": 1015, \"clust\": 1659, \"rank\": 1504, \"rankvar\": 1612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1811, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 336, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2181, \"group\": [1659.0, 689.0, 176.0, 44.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95151_BALBc-1_X01_Y02_920_106\", \"ini\": 1014, \"clust\": 544, \"rank\": 249, \"rankvar\": 333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1812, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2602, \"cat-2\": \"Density: 25\", \"cat_2_index\": 674, \"group\": [543.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95247_BALBc-1_X01_Y02_921_339\", \"ini\": 1013, \"clust\": 922, \"rank\": 758, \"rankvar\": 642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1813, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 337, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2268, \"group\": [923.0, 335.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95323_BALBc-1_X01_Y02_922_248\", \"ini\": 1012, \"clust\": 1872, \"rank\": 1834, \"rankvar\": 1507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1814, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2603, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1411, \"group\": [1885.0, 806.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95511_BALBc-1_X01_Y02_924_552\", \"ini\": 1011, \"clust\": 2748, \"rank\": 2581, \"rankvar\": 2625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1815, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 338, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2405, \"group\": [2748.0, 1170.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95603_BALBc-1_X01_Y02_925_713\", \"ini\": 1010, \"clust\": 2637, \"rank\": 2160, \"rankvar\": 752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1816, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2319, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2770, \"group\": [2638.0, 1102.0, 283.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95670_BALBc-1_X01_Y02_926_592\", \"ini\": 1009, \"clust\": 2702, \"rank\": 1123, \"rankvar\": 2411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1817, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1977, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2586, \"group\": [2701.0, 1144.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95679_BALBc-1_X01_Y02_926_670\", \"ini\": 1008, \"clust\": 915, \"rank\": 822, \"rankvar\": 1175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1818, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 339, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2689, \"group\": [916.0, 333.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95702_BALBc-1_X01_Y02_926_934\", \"ini\": 1007, \"clust\": 1747, \"rank\": 2779, \"rankvar\": 2757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1819, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1326, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2529, \"group\": [1749.0, 761.0, 202.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95782_BALBc-1_X01_Y02_927_871\", \"ini\": 1006, \"clust\": 726, \"rank\": 137, \"rankvar\": 242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1820, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1327, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2818, \"group\": [724.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95802_BALBc-1_X01_Y02_928_19\", \"ini\": 1005, \"clust\": 1002, \"rank\": 474, \"rankvar\": 414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1821, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2604, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1262, \"group\": [1002.0, 364.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95821_BALBc-1_X01_Y02_928_362\", \"ini\": 1004, \"clust\": 872, \"rank\": 1138, \"rankvar\": 355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1822, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 340, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2482, \"group\": [876.0, 316.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95912_BALBc-1_X01_Y02_929_417\", \"ini\": 1003, \"clust\": 404, \"rank\": 304, \"rankvar\": 572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1823, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 341, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2483, \"group\": [402.0, 240.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95959_BALBc-1_X01_Y02_93_212\", \"ini\": 1002, \"clust\": 714, \"rank\": 208, \"rankvar\": 1113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1824, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2244, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1263, \"group\": [717.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96011_BALBc-1_X01_Y02_93_891\", \"ini\": 1001, \"clust\": 2647, \"rank\": 2690, \"rankvar\": 2454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1825, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2320, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1264, \"group\": [2646.0, 1109.0, 285.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96026_BALBc-1_X01_Y02_930_183\", \"ini\": 1000, \"clust\": 1900, \"rank\": 2654, \"rankvar\": 2809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1826, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2605, \"cat-2\": \"Density: 25\", \"cat_2_index\": 675, \"group\": [1900.0, 814.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96035_BALBc-1_X01_Y02_930_310\", \"ini\": 999, \"clust\": 1737, \"rank\": 1651, \"rankvar\": 798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1827, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2321, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2094, \"group\": [1738.0, 757.0, 201.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96049_BALBc-1_X01_Y02_930_522\", \"ini\": 998, \"clust\": 2408, \"rank\": 1771, \"rankvar\": 1118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1828, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 342, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2182, \"group\": [2409.0, 1044.0, 272.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96059_BALBc-1_X01_Y02_930_618\", \"ini\": 997, \"clust\": 2586, \"rank\": 2114, \"rankvar\": 924, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1829, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 343, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2587, \"group\": [2586.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96129_BALBc-1_X01_Y02_931_639\", \"ini\": 996, \"clust\": 703, \"rank\": 641, \"rankvar\": 529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1830, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 344, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2588, \"group\": [713.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96358_BALBc-1_X01_Y02_934_786\", \"ini\": 995, \"clust\": 1160, \"rank\": 584, \"rankvar\": 1278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1831, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1328, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2690, \"group\": [1161.0, 395.0, 84.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96494_BALBc-1_X01_Y02_936_390\", \"ini\": 994, \"clust\": 2577, \"rank\": 1938, \"rankvar\": 1115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1832, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 345, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2484, \"group\": [2580.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96556_BALBc-1_X01_Y02_937_334\", \"ini\": 993, \"clust\": 1029, \"rank\": 455, \"rankvar\": 114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1833, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 346, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2485, \"group\": [1029.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96785_BALBc-1_X01_Y02_94_443\", \"ini\": 992, \"clust\": 1214, \"rank\": 1128, \"rankvar\": 1880, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1834, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2460, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1118, \"group\": [1214.0, 438.0, 101.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96861_BALBc-1_X01_Y02_940_441\", \"ini\": 991, \"clust\": 2077, \"rank\": 1664, \"rankvar\": 338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1835, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 347, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2406, \"group\": [2078.0, 942.0, 253.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97094_BALBc-1_X01_Y02_943_554\", \"ini\": 990, \"clust\": 2409, \"rank\": 1421, \"rankvar\": 1133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1836, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 348, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2183, \"group\": [2410.0, 1044.0, 272.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97328_BALBc-1_X01_Y02_946_392\", \"ini\": 989, \"clust\": 855, \"rank\": 869, \"rankvar\": 876, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1837, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 349, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2530, \"group\": [854.0, 309.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97429_BALBc-1_X01_Y02_947_898\", \"ini\": 988, \"clust\": 1017, \"rank\": 337, \"rankvar\": 1185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1838, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1329, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2691, \"group\": [1018.0, 368.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97487_BALBc-1_X01_Y02_948_863\", \"ini\": 987, \"clust\": 2798, \"rank\": 1636, \"rankvar\": 253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1839, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1658, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2771, \"group\": [2806.0, 1187.0, 306.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97559_BALBc-1_X01_Y02_949_682\", \"ini\": 986, \"clust\": 367, \"rank\": 848, \"rankvar\": 979, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1840, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 350, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2692, \"group\": [370.0, 225.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97703_BALBc-1_X01_Y02_950_608\", \"ini\": 985, \"clust\": 760, \"rank\": 233, \"rankvar\": 93, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1841, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2146, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2648, \"group\": [760.0, 280.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97845_BALBc-1_X01_Y02_952_483\", \"ini\": 984, \"clust\": 1662, \"rank\": 2152, \"rankvar\": 1394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1842, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 351, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2531, \"group\": [1662.0, 692.0, 176.0, 44.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97851_BALBc-1_X01_Y02_952_581\", \"ini\": 983, \"clust\": 2749, \"rank\": 2661, \"rankvar\": 2594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1843, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 352, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2532, \"group\": [2751.0, 1170.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97911_BALBc-1_X01_Y02_953_421\", \"ini\": 982, \"clust\": 1120, \"rank\": 801, \"rankvar\": 940, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1844, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 353, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2649, \"group\": [1120.0, 373.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98041_BALBc-1_X01_Y02_955_11\", \"ini\": 981, \"clust\": 2715, \"rank\": 1758, \"rankvar\": 2098, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1845, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1330, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1265, \"group\": [2715.0, 1148.0, 297.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98050_BALBc-1_X01_Y02_955_156\", \"ini\": 980, \"clust\": 265, \"rank\": 1371, \"rankvar\": 145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1846, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2606, \"cat-2\": \"Density: 27\", \"cat_2_index\": 964, \"group\": [265.0, 166.0, 49.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98324_BALBc-1_X01_Y02_958_818\", \"ini\": 979, \"clust\": 659, \"rank\": 209, \"rankvar\": 262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1847, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1331, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2589, \"group\": [657.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98534_BALBc-1_X01_Y02_960_63\", \"ini\": 978, \"clust\": 719, \"rank\": 95, \"rankvar\": 137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1848, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2607, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1412, \"group\": [719.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98596_BALBc-1_X01_Y02_961_438\", \"ini\": 977, \"clust\": 2506, \"rank\": 1706, \"rankvar\": 389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1849, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2608, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2693, \"group\": [2505.0, 1077.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98752_BALBc-1_X01_Y02_963_631\", \"ini\": 976, \"clust\": 2311, \"rank\": 2469, \"rankvar\": 2541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1850, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2147, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2486, \"group\": [2313.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98837_BALBc-1_X01_Y02_964_510\", \"ini\": 975, \"clust\": 2537, \"rank\": 2752, \"rankvar\": 2023, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1851, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 354, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2407, \"group\": [2537.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98921_BALBc-1_X01_Y02_965_673\", \"ini\": 974, \"clust\": 1893, \"rank\": 1922, \"rankvar\": 1973, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1852, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 355, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2694, \"group\": [1893.0, 811.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98956_BALBc-1_X01_Y02_966_344\", \"ini\": 973, \"clust\": 948, \"rank\": 1247, \"rankvar\": 735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1853, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 356, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2487, \"group\": [948.0, 343.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99211_BALBc-1_X01_Y02_969_41\", \"ini\": 972, \"clust\": 1672, \"rank\": 1111, \"rankvar\": 1871, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1854, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1332, \"cat-2\": \"Density: 26\", \"cat_2_index\": 813, \"group\": [1672.0, 699.0, 178.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99244_BALBc-1_X01_Y02_969_891\", \"ini\": 971, \"clust\": 2516, \"rank\": 2536, \"rankvar\": 2200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1855, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1333, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2488, \"group\": [2516.0, 1080.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99284_BALBc-1_X01_Y02_97_366\", \"ini\": 970, \"clust\": 748, \"rank\": 462, \"rankvar\": 68, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1856, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1334, \"cat-2\": \"Density: 24\", \"cat_2_index\": 535, \"group\": [748.0, 278.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99306_BALBc-1_X01_Y02_97_619\", \"ini\": 969, \"clust\": 1635, \"rank\": 1667, \"rankvar\": 1862, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1857, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1335, \"cat-2\": \"Density: 24\", \"cat_2_index\": 536, \"group\": [1638.0, 671.0, 168.0, 41.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99355_BALBc-1_X01_Y02_970_403\", \"ini\": 968, \"clust\": 1163, \"rank\": 1346, \"rankvar\": 277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1858, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 357, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2695, \"group\": [1170.0, 404.0, 88.0, 19.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99386_BALBc-1_X01_Y02_970_788\", \"ini\": 967, \"clust\": 2770, \"rank\": 2182, \"rankvar\": 2245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1859, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1336, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2533, \"group\": [2768.0, 1174.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99599_BALBc-1_X01_Y02_973_494\", \"ini\": 966, \"clust\": 673, \"rank\": 59, \"rankvar\": 270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1860, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 358, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2489, \"group\": [670.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99666_BALBc-1_X01_Y02_974_301\", \"ini\": 965, \"clust\": 1838, \"rank\": 2257, \"rankvar\": 1243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1861, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2148, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1995, \"group\": [1845.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99919_BALBc-1_X01_Y02_977_839\", \"ini\": 964, \"clust\": 2788, \"rank\": 2708, \"rankvar\": 2592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1862, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2814, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2338, \"group\": [2787.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99966_BALBc-1_X01_Y02_978_469\", \"ini\": 963, \"clust\": 1114, \"rank\": 424, \"rankvar\": 1012, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1863, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2609, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2792, \"group\": [1114.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99984_BALBc-1_X01_Y02_978_659\", \"ini\": 962, \"clust\": 2418, \"rank\": 2185, \"rankvar\": 1177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1864, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2149, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2490, \"group\": [2421.0, 1050.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99988_BALBc-1_X01_Y02_978_700\", \"ini\": 961, \"clust\": 375, \"rank\": 244, \"rankvar\": 2577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1865, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 359, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2731, \"group\": [375.0, 228.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100113_BALBc-1_X01_Y02_98_33\", \"ini\": 960, \"clust\": 1504, \"rank\": 2236, \"rankvar\": 2693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1866, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1337, \"cat-2\": \"Density: 20\", \"cat_2_index\": 167, \"group\": [1505.0, 583.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100128_BALBc-1_X01_Y02_98_529\", \"ini\": 959, \"clust\": 925, \"rank\": 1153, \"rankvar\": 201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1867, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2322, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1667, \"group\": [927.0, 336.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100158_BALBc-1_X01_Y02_98_936\", \"ini\": 958, \"clust\": 1935, \"rank\": 2370, \"rankvar\": 2427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1868, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1751, \"cat-2\": \"Density: 26\", \"cat_2_index\": 814, \"group\": [1936.0, 830.0, 213.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100196_BALBc-1_X01_Y02_980_535\", \"ini\": 957, \"clust\": 347, \"rank\": 648, \"rankvar\": 2109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1869, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 360, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2491, \"group\": [356.0, 222.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100343_BALBc-1_X01_Y02_982_719\", \"ini\": 956, \"clust\": 2172, \"rank\": 1659, \"rankvar\": 1474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1870, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1338, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2534, \"group\": [2172.0, 989.0, 261.0, 72.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100409_BALBc-1_X01_Y02_983_525\", \"ini\": 955, \"clust\": 2070, \"rank\": 873, \"rankvar\": 1991, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1871, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 361, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2535, \"group\": [2069.0, 934.0, 251.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100453_BALBc-1_X01_Y02_984_217\", \"ini\": 954, \"clust\": 1957, \"rank\": 1728, \"rankvar\": 1978, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1872, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2610, \"cat-2\": \"Density: 25\", \"cat_2_index\": 676, \"group\": [1956.0, 845.0, 216.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100476_BALBc-1_X01_Y02_984_546\", \"ini\": 953, \"clust\": 2538, \"rank\": 2804, \"rankvar\": 2215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1873, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 362, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2536, \"group\": [2538.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100533_BALBc-1_X01_Y02_985_319\", \"ini\": 952, \"clust\": 2504, \"rank\": 1621, \"rankvar\": 1101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1874, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 363, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1777, \"group\": [2506.0, 1077.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100537_BALBc-1_X01_Y02_985_370\", \"ini\": 951, \"clust\": 873, \"rank\": 831, \"rankvar\": 1288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1875, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 364, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2537, \"group\": [875.0, 316.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100546_BALBc-1_X01_Y02_985_427\", \"ini\": 950, \"clust\": 2599, \"rank\": 1973, \"rankvar\": 351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1876, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2611, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2732, \"group\": [2600.0, 1090.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100828_BALBc-1_X01_Y02_989_180\", \"ini\": 949, \"clust\": 1109, \"rank\": 504, \"rankvar\": 609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1877, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2612, \"cat-2\": \"Density: 26\", \"cat_2_index\": 815, \"group\": [1108.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101159_BALBc-1_X01_Y02_992_512\", \"ini\": 948, \"clust\": 333, \"rank\": 684, \"rankvar\": 409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1878, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 365, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2650, \"group\": [333.0, 208.0, 60.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101202_BALBc-1_X01_Y02_992_939\", \"ini\": 947, \"clust\": 125, \"rank\": 616, \"rankvar\": 1529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1879, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1339, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1668, \"group\": [124.0, 75.0, 19.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101248_BALBc-1_X01_Y02_993_593\", \"ini\": 946, \"clust\": 391, \"rank\": 418, \"rankvar\": 480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1880, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2150, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2590, \"group\": [392.0, 235.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101494_BALBc-1_X01_Y02_996_395\", \"ini\": 945, \"clust\": 924, \"rank\": 991, \"rankvar\": 516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1881, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2613, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2772, \"group\": [922.0, 335.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101598_BALBc-1_X01_Y02_997_656\", \"ini\": 944, \"clust\": 2726, \"rank\": 2131, \"rankvar\": 1707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1882, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2151, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2591, \"group\": [2726.0, 1156.0, 300.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101724_BALBc-1_X01_Y02_999_337\", \"ini\": 943, \"clust\": 1023, \"rank\": 506, \"rankvar\": 29, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1883, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 366, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2269, \"group\": [1022.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-742_BALBc-1_X02_Y02_100_496\", \"ini\": 942, \"clust\": 117, \"rank\": 1143, \"rankvar\": 2214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1884, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1340, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1879, \"group\": [116.0, 67.0, 17.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-763_BALBc-1_X02_Y02_100_736\", \"ini\": 941, \"clust\": 1728, \"rank\": 1720, \"rankvar\": 2117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1885, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1341, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1880, \"group\": [1728.0, 747.0, 195.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-824_BALBc-1_X02_Y02_1000_584\", \"ini\": 940, \"clust\": 1186, \"rank\": 741, \"rankvar\": 1214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1886, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1581, \"cat-2\": \"Density: 26\", \"cat_2_index\": 816, \"group\": [1187.0, 418.0, 94.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1111_BALBc-1_X02_Y02_1004_421\", \"ini\": 939, \"clust\": 1141, \"rank\": 1086, \"rankvar\": 361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1887, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 921, \"cat-2\": \"Density: 23\", \"cat_2_index\": 411, \"group\": [1144.0, 382.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1386_BALBc-1_X02_Y02_1007_914\", \"ini\": 938, \"clust\": 857, \"rank\": 959, \"rankvar\": 1426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1888, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2152, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1266, \"group\": [860.0, 311.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1461_BALBc-1_X02_Y02_1008_949\", \"ini\": 937, \"clust\": 2100, \"rank\": 1391, \"rankvar\": 78, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1889, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2153, \"cat-2\": \"Density: 22\", \"cat_2_index\": 298, \"group\": [2107.0, 951.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1779_BALBc-1_X02_Y02_1011_766\", \"ini\": 936, \"clust\": 2119, \"rank\": 1605, \"rankvar\": 1216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1890, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2614, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1669, \"group\": [2122.0, 960.0, 255.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1887_BALBc-1_X02_Y02_1013_366\", \"ini\": 935, \"clust\": 964, \"rank\": 695, \"rankvar\": 299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1891, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 367, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1267, \"group\": [963.0, 349.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2061_BALBc-1_X02_Y02_1015_519\", \"ini\": 934, \"clust\": 1780, \"rank\": 1671, \"rankvar\": 2324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1892, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2615, \"cat-2\": \"Density: 23\", \"cat_2_index\": 412, \"group\": [1781.0, 780.0, 206.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2081_BALBc-1_X02_Y02_1015_789\", \"ini\": 933, \"clust\": 273, \"rank\": 1046, \"rankvar\": 1465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1893, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1119, \"group\": [274.0, 174.0, 52.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2117_BALBc-1_X02_Y02_1016_330\", \"ini\": 932, \"clust\": 192, \"rank\": 1073, \"rankvar\": 116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1894, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1978, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1120, \"group\": [192.0, 127.0, 42.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2209_BALBc-1_X02_Y02_1017_624\", \"ini\": 931, \"clust\": 1886, \"rank\": 1976, \"rankvar\": 1578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1895, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2617, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1413, \"group\": [1887.0, 807.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2250_BALBc-1_X02_Y02_1017_995\", \"ini\": 930, \"clust\": 2341, \"rank\": 2810, \"rankvar\": 2401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1896, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2154, \"cat-2\": \"Density: 16\", \"cat_2_index\": 61, \"group\": [2344.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2321_BALBc-1_X02_Y02_1018_895\", \"ini\": 929, \"clust\": 1875, \"rank\": 1654, \"rankvar\": 2310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1897, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2155, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1121, \"group\": [1874.0, 804.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2469_BALBc-1_X02_Y02_1020_120\", \"ini\": 928, \"clust\": 1594, \"rank\": 1245, \"rankvar\": 446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1898, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1342, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1537, \"group\": [1595.0, 638.0, 156.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2761_BALBc-1_X02_Y02_1023_729\", \"ini\": 927, \"clust\": 596, \"rank\": 217, \"rankvar\": 308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1899, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1343, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1996, \"group\": [594.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2871_BALBc-1_X02_Y02_1025_203\", \"ini\": 926, \"clust\": 362, \"rank\": 1057, \"rankvar\": 1600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1900, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 848, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1268, \"group\": [362.0, 224.0, 63.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2901_BALBc-1_X02_Y02_1025_465\", \"ini\": 925, \"clust\": 1801, \"rank\": 2231, \"rankvar\": 715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1901, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2618, \"cat-2\": \"Density: 24\", \"cat_2_index\": 537, \"group\": [1806.0, 791.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3027_BALBc-1_X02_Y02_1027_146\", \"ini\": 924, \"clust\": 1169, \"rank\": 1460, \"rankvar\": 973, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1902, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1344, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1670, \"group\": [1169.0, 403.0, 87.0, 19.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3163_BALBc-1_X02_Y02_1028_557\", \"ini\": 923, \"clust\": 1882, \"rank\": 2427, \"rankvar\": 2488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1903, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1582, \"cat-2\": \"Density: 25\", \"cat_2_index\": 677, \"group\": [1884.0, 805.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3345_BALBc-1_X02_Y02_103_855\", \"ini\": 922, \"clust\": 114, \"rank\": 1489, \"rankvar\": 1307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1904, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1345, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1269, \"group\": [118.0, 69.0, 17.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3406_BALBc-1_X02_Y02_1030_786\", \"ini\": 921, \"clust\": 1899, \"rank\": 2188, \"rankvar\": 2820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1905, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2619, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1414, \"group\": [1902.0, 814.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3462_BALBc-1_X02_Y02_1031_450\", \"ini\": 920, \"clust\": 547, \"rank\": 41, \"rankvar\": 490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1906, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 368, \"cat-2\": \"Density: 24\", \"cat_2_index\": 538, \"group\": [545.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3716_BALBc-1_X02_Y02_1034_825\", \"ini\": 919, \"clust\": 2490, \"rank\": 1426, \"rankvar\": 1439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1907, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2620, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1415, \"group\": [2491.0, 1074.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3723_BALBc-1_X02_Y02_1034_946\", \"ini\": 918, \"clust\": 674, \"rank\": 114, \"rankvar\": 273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1908, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 369, \"cat-2\": \"Density: 21\", \"cat_2_index\": 219, \"group\": [675.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3800_BALBc-1_X02_Y02_1035_754\", \"ini\": 917, \"clust\": 2819, \"rank\": 1708, \"rankvar\": 369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1909, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2621, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1538, \"group\": [2819.0, 1198.0, 310.0, 83.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3958_BALBc-1_X02_Y02_1037_680\", \"ini\": 916, \"clust\": 664, \"rank\": 99, \"rankvar\": 83, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1910, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1346, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1881, \"group\": [662.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3996_BALBc-1_X02_Y02_1038_233\", \"ini\": 915, \"clust\": 253, \"rank\": 537, \"rankvar\": 1010, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1911, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1347, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1416, \"group\": [254.0, 159.0, 47.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4123_BALBc-1_X02_Y02_1039_704\", \"ini\": 914, \"clust\": 1794, \"rank\": 2421, \"rankvar\": 1828, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1912, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1348, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1997, \"group\": [1793.0, 788.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4307_BALBc-1_X02_Y02_1041_402\", \"ini\": 913, \"clust\": 836, \"rank\": 444, \"rankvar\": 222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1913, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 922, \"cat-2\": \"Density: 25\", \"cat_2_index\": 678, \"group\": [836.0, 299.0, 70.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4349_BALBc-1_X02_Y02_1041_855\", \"ini\": 912, \"clust\": 1876, \"rank\": 2211, \"rankvar\": 1990, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1914, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2787, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1270, \"group\": [1876.0, 805.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4398_BALBc-1_X02_Y02_1042_440\", \"ini\": 911, \"clust\": 1693, \"rank\": 1756, \"rankvar\": 1824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1915, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 923, \"cat-2\": \"Density: 27\", \"cat_2_index\": 965, \"group\": [1693.0, 716.0, 182.0, 47.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4443_BALBc-1_X02_Y02_1042_919\", \"ini\": 910, \"clust\": 2383, \"rank\": 2718, \"rankvar\": 2067, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1916, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 370, \"cat-2\": \"Density: 23\", \"cat_2_index\": 413, \"group\": [2386.0, 1037.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4730_BALBc-1_X02_Y02_1046_644\", \"ini\": 909, \"clust\": 405, \"rank\": 573, \"rankvar\": 1181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1917, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2622, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1671, \"group\": [403.0, 240.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5035_BALBc-1_X02_Y02_105_291\", \"ini\": 908, \"clust\": 2194, \"rank\": 1991, \"rankvar\": 1741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1918, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2623, \"cat-2\": \"Density: 21\", \"cat_2_index\": 220, \"group\": [2195.0, 1006.0, 268.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5098_BALBc-1_X02_Y02_1050_351\", \"ini\": 907, \"clust\": 631, \"rank\": 26, \"rankvar\": 897, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1919, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 371, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1271, \"group\": [627.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5288_BALBc-1_X02_Y02_1052_892\", \"ini\": 906, \"clust\": 1664, \"rank\": 731, \"rankvar\": 1213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1920, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 372, \"cat-2\": \"Density: 25\", \"cat_2_index\": 679, \"group\": [1665.0, 695.0, 177.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5378_BALBc-1_X02_Y02_1054_302\", \"ini\": 905, \"clust\": 1518, \"rank\": 1403, \"rankvar\": 1809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1921, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1979, \"cat-2\": \"Density: 26\", \"cat_2_index\": 817, \"group\": [1531.0, 593.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5521_BALBc-1_X02_Y02_1055_965\", \"ini\": 904, \"clust\": 2261, \"rank\": 2217, \"rankvar\": 410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1922, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2624, \"cat-2\": \"Density: 20\", \"cat_2_index\": 168, \"group\": [2265.0, 1032.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5598_BALBc-1_X02_Y02_1056_814\", \"ini\": 903, \"clust\": 280, \"rank\": 357, \"rankvar\": 2246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1923, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 373, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1417, \"group\": [280.0, 178.0, 52.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5789_BALBc-1_X02_Y02_1059_368\", \"ini\": 902, \"clust\": 1725, \"rank\": 1862, \"rankvar\": 1678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1924, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1659, \"cat-2\": \"Density: 27\", \"cat_2_index\": 966, \"group\": [1726.0, 745.0, 194.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5813_BALBc-1_X02_Y02_1059_633\", \"ini\": 901, \"clust\": 2597, \"rank\": 1950, \"rankvar\": 1100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1925, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 374, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1998, \"group\": [2597.0, 1090.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5959_BALBc-1_X02_Y02_1060_547\", \"ini\": 900, \"clust\": 1729, \"rank\": 1833, \"rankvar\": 1323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1926, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2625, \"cat-2\": \"Density: 24\", \"cat_2_index\": 539, \"group\": [1732.0, 751.0, 198.0, 53.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5972_BALBc-1_X02_Y02_1060_686\", \"ini\": 899, \"clust\": 591, \"rank\": 25, \"rankvar\": 164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1927, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 375, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1882, \"group\": [589.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6003_BALBc-1_X02_Y02_1061_164\", \"ini\": 898, \"clust\": 791, \"rank\": 428, \"rankvar\": 1350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1928, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1349, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1672, \"group\": [791.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6056_BALBc-1_X02_Y02_1061_611\", \"ini\": 897, \"clust\": 141, \"rank\": 985, \"rankvar\": 670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1929, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1583, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1673, \"group\": [140.0, 88.0, 23.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6125_BALBc-1_X02_Y02_1062_291\", \"ini\": 896, \"clust\": 840, \"rank\": 792, \"rankvar\": 549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1930, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2788, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1272, \"group\": [839.0, 300.0, 70.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6156_BALBc-1_X02_Y02_1062_576\", \"ini\": 895, \"clust\": 2818, \"rank\": 1747, \"rankvar\": 1200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1931, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1584, \"cat-2\": \"Density: 27\", \"cat_2_index\": 967, \"group\": [2821.0, 1200.0, 311.0, 83.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6277_BALBc-1_X02_Y02_1064_324\", \"ini\": 894, \"clust\": 632, \"rank\": 38, \"rankvar\": 364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1932, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 376, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1122, \"group\": [641.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6307_BALBc-1_X02_Y02_1064_651\", \"ini\": 893, \"clust\": 2554, \"rank\": 2304, \"rankvar\": 1132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1933, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 377, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1883, \"group\": [2558.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6501_BALBc-1_X02_Y02_1067_391\", \"ini\": 892, \"clust\": 128, \"rank\": 626, \"rankvar\": 664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1934, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1660, \"cat-2\": \"Density: 27\", \"cat_2_index\": 968, \"group\": [131.0, 81.0, 20.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6716_BALBc-1_X02_Y02_1069_716\", \"ini\": 891, \"clust\": 2631, \"rank\": 1867, \"rankvar\": 363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1935, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2626, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2095, \"group\": [2629.0, 1097.0, 282.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6732_BALBc-1_X02_Y02_1069_881\", \"ini\": 890, \"clust\": 2265, \"rank\": 2249, \"rankvar\": 1466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1936, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2789, \"cat-2\": \"Density: 25\", \"cat_2_index\": 680, \"group\": [2269.0, 1033.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6777_BALBc-1_X02_Y02_107_560\", \"ini\": 889, \"clust\": 1907, \"rank\": 1753, \"rankvar\": 1666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1937, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1569, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2096, \"group\": [1908.0, 818.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6883_BALBc-1_X02_Y02_1070_927\", \"ini\": 888, \"clust\": 1660, \"rank\": 2031, \"rankvar\": 2247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1938, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2627, \"cat-2\": \"Density: 22\", \"cat_2_index\": 299, \"group\": [1663.0, 693.0, 176.0, 44.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6955_BALBc-1_X02_Y02_1071_815\", \"ini\": 887, \"clust\": 127, \"rank\": 1845, \"rankvar\": 1617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1939, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2790, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1539, \"group\": [163.0, 106.0, 31.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7044_BALBc-1_X02_Y02_1072_750\", \"ini\": 886, \"clust\": 1166, \"rank\": 1678, \"rankvar\": 593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1940, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2628, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1884, \"group\": [1166.0, 400.0, 86.0, 19.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7048_BALBc-1_X02_Y02_1072_786\", \"ini\": 885, \"clust\": 284, \"rank\": 636, \"rankvar\": 1247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1941, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2629, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1674, \"group\": [283.0, 178.0, 52.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7330_BALBc-1_X02_Y02_1076_192\", \"ini\": 884, \"clust\": 1129, \"rank\": 916, \"rankvar\": 443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1942, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1350, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1418, \"group\": [1132.0, 378.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7866_BALBc-1_X02_Y02_1082_334\", \"ini\": 883, \"clust\": 1131, \"rank\": 1008, \"rankvar\": 571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1943, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1661, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1273, \"group\": [1131.0, 378.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8112_BALBc-1_X02_Y02_1085_691\", \"ini\": 882, \"clust\": 2825, \"rank\": 1491, \"rankvar\": 172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1944, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 378, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1885, \"group\": [2825.0, 1203.0, 312.0, 83.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8233_BALBc-1_X02_Y02_1087_411\", \"ini\": 881, \"clust\": 1695, \"rank\": 1258, \"rankvar\": 266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1945, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1662, \"cat-2\": \"Density: 27\", \"cat_2_index\": 969, \"group\": [1695.0, 718.0, 183.0, 48.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8249_BALBc-1_X02_Y02_1087_626\", \"ini\": 880, \"clust\": 1115, \"rank\": 322, \"rankvar\": 454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1946, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 379, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1886, \"group\": [1115.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8448_BALBc-1_X02_Y02_109_151\", \"ini\": 879, \"clust\": 516, \"rank\": 421, \"rankvar\": 640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1947, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2630, \"cat-2\": \"Density: 23\", \"cat_2_index\": 414, \"group\": [515.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8463_BALBc-1_X02_Y02_109_451\", \"ini\": 878, \"clust\": 1703, \"rank\": 1315, \"rankvar\": 1482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1948, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2631, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1675, \"group\": [1704.0, 727.0, 186.0, 50.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8476_BALBc-1_X02_Y02_109_610\", \"ini\": 877, \"clust\": 1963, \"rank\": 1347, \"rankvar\": 2101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1949, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1351, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2097, \"group\": [1964.0, 849.0, 217.0, 58.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8551_BALBc-1_X02_Y02_1090_469\", \"ini\": 876, \"clust\": 1199, \"rank\": 880, \"rankvar\": 602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1950, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2632, \"cat-2\": \"Density: 24\", \"cat_2_index\": 540, \"group\": [1202.0, 431.0, 99.0, 23.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8576_BALBc-1_X02_Y02_1090_711\", \"ini\": 875, \"clust\": 653, \"rank\": 340, \"rankvar\": 22, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1951, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2156, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2098, \"group\": [660.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8913_BALBc-1_X02_Y02_1095_144\", \"ini\": 874, \"clust\": 1382, \"rank\": 2361, \"rankvar\": 2763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1952, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1663, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1274, \"group\": [1382.0, 540.0, 135.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8990_BALBc-1_X02_Y02_1096_180\", \"ini\": 873, \"clust\": 712, \"rank\": 6, \"rankvar\": 740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1953, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 380, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1540, \"group\": [709.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9078_BALBc-1_X02_Y02_1097_291\", \"ini\": 872, \"clust\": 1696, \"rank\": 1175, \"rankvar\": 1387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1954, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2791, \"cat-2\": \"Density: 27\", \"cat_2_index\": 970, \"group\": [1696.0, 719.0, 183.0, 48.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9244_BALBc-1_X02_Y02_1099_550\", \"ini\": 871, \"clust\": 2163, \"rank\": 1398, \"rankvar\": 1743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1955, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 627, \"cat-2\": \"Density: 27\", \"cat_2_index\": 971, \"group\": [2166.0, 983.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9402_BALBc-1_X02_Y02_110_392\", \"ini\": 870, \"clust\": 1869, \"rank\": 2504, \"rankvar\": 2653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1956, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2633, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1676, \"group\": [1869.0, 801.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9494_BALBc-1_X02_Y02_1100_508\", \"ini\": 869, \"clust\": 1895, \"rank\": 2034, \"rankvar\": 2812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1957, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2634, \"cat-2\": \"Density: 26\", \"cat_2_index\": 818, \"group\": [1896.0, 814.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9511_BALBc-1_X02_Y02_1100_671\", \"ini\": 868, \"clust\": 1000, \"rank\": 893, \"rankvar\": 637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1958, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 381, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2099, \"group\": [999.0, 362.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9687_BALBc-1_X02_Y02_1103_195\", \"ini\": 867, \"clust\": 2605, \"rank\": 1846, \"rankvar\": 519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1959, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 382, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1677, \"group\": [2609.0, 1093.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9726_BALBc-1_X02_Y02_1103_600\", \"ini\": 866, \"clust\": 1835, \"rank\": 2389, \"rankvar\": 638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1960, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 383, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1678, \"group\": [1836.0, 797.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9731_BALBc-1_X02_Y02_1103_641\", \"ini\": 865, \"clust\": 175, \"rank\": 1330, \"rankvar\": 917, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1961, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 384, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1999, \"group\": [175.0, 116.0, 37.0, 13.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10109_BALBc-1_X02_Y02_1108_209\", \"ini\": 864, \"clust\": 623, \"rank\": 121, \"rankvar\": 87, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1962, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1352, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1419, \"group\": [620.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10196_BALBc-1_X02_Y02_1109_33\", \"ini\": 863, \"clust\": 1501, \"rank\": 1689, \"rankvar\": 1794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1963, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1980, \"cat-2\": \"Density: 22\", \"cat_2_index\": 300, \"group\": [1502.0, 583.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10201_BALBc-1_X02_Y02_1109_425\", \"ini\": 862, \"clust\": 224, \"rank\": 597, \"rankvar\": 1501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1964, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 924, \"cat-2\": \"Density: 26\", \"cat_2_index\": 819, \"group\": [223.0, 140.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10450_BALBc-1_X02_Y02_1111_750\", \"ini\": 861, \"clust\": 2434, \"rank\": 1631, \"rankvar\": 1738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1965, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2157, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1679, \"group\": [2435.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10495_BALBc-1_X02_Y02_1112_333\", \"ini\": 860, \"clust\": 552, \"rank\": 253, \"rankvar\": 103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1966, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1664, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1420, \"group\": [551.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10548_BALBc-1_X02_Y02_1112_995\", \"ini\": 859, \"clust\": 1614, \"rank\": 1232, \"rankvar\": 977, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1967, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2635, \"cat-2\": \"Density: 17\", \"cat_2_index\": 81, \"group\": [1615.0, 650.0, 160.0, 38.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10672_BALBc-1_X02_Y02_1114_725\", \"ini\": 858, \"clust\": 995, \"rank\": 1026, \"rankvar\": 327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1968, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2158, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1887, \"group\": [996.0, 361.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10918_BALBc-1_X02_Y02_1117_812\", \"ini\": 857, \"clust\": 131, \"rank\": 863, \"rankvar\": 1959, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1969, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2792, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1680, \"group\": [129.0, 79.0, 20.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10970_BALBc-1_X02_Y02_1118_562\", \"ini\": 856, \"clust\": 1908, \"rank\": 2307, \"rankvar\": 2307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1970, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2636, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1541, \"group\": [1909.0, 818.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11111_BALBc-1_X02_Y02_112_780\", \"ini\": 855, \"clust\": 1973, \"rank\": 1212, \"rankvar\": 1431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1971, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1353, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1421, \"group\": [1976.0, 861.0, 222.0, 59.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11132_BALBc-1_X02_Y02_1120_160\", \"ini\": 854, \"clust\": 982, \"rank\": 528, \"rankvar\": 157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1972, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2323, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1275, \"group\": [983.0, 356.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11248_BALBc-1_X02_Y02_1121_389\", \"ini\": 853, \"clust\": 228, \"rank\": 828, \"rankvar\": 463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1973, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1665, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1123, \"group\": [229.0, 143.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11332_BALBc-1_X02_Y02_1122_490\", \"ini\": 852, \"clust\": 2229, \"rank\": 2143, \"rankvar\": 1495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1974, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2793, \"cat-2\": \"Density: 24\", \"cat_2_index\": 541, \"group\": [2230.0, 1021.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11531_BALBc-1_X02_Y02_1125_113\", \"ini\": 851, \"clust\": 845, \"rank\": 757, \"rankvar\": 193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1975, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1981, \"cat-2\": \"Density: 26\", \"cat_2_index\": 820, \"group\": [844.0, 301.0, 71.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11546_BALBc-1_X02_Y02_1125_315\", \"ini\": 850, \"clust\": 161, \"rank\": 2085, \"rankvar\": 1834, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1976, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2637, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1124, \"group\": [161.0, 104.0, 30.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11566_BALBc-1_X02_Y02_1125_577\", \"ini\": 849, \"clust\": 556, \"rank\": 408, \"rankvar\": 150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1977, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 385, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1888, \"group\": [555.0, 275.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11573_BALBc-1_X02_Y02_1125_626\", \"ini\": 848, \"clust\": 1077, \"rank\": 787, \"rankvar\": 896, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1978, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 386, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1778, \"group\": [1081.0, 370.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11614_BALBc-1_X02_Y02_1126_250\", \"ini\": 847, \"clust\": 350, \"rank\": 855, \"rankvar\": 298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1979, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1354, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1542, \"group\": [349.0, 218.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11867_BALBc-1_X02_Y02_1129_599\", \"ini\": 846, \"clust\": 1178, \"rank\": 1222, \"rankvar\": 286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1980, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 387, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1889, \"group\": [1180.0, 412.0, 93.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11912_BALBc-1_X02_Y02_113_34\", \"ini\": 845, \"clust\": 1231, \"rank\": 1363, \"rankvar\": 2755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1981, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1355, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1543, \"group\": [1232.0, 448.0, 105.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12036_BALBc-1_X02_Y02_1130_842\", \"ini\": 844, \"clust\": 853, \"rank\": 1045, \"rankvar\": 358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1982, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2794, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1544, \"group\": [855.0, 309.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12076_BALBc-1_X02_Y02_1131_409\", \"ini\": 843, \"clust\": 227, \"rank\": 548, \"rankvar\": 304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1983, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 388, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1125, \"group\": [228.0, 142.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12101_BALBc-1_X02_Y02_1131_782\", \"ini\": 842, \"clust\": 2565, \"rank\": 2347, \"rankvar\": 2187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1984, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2245, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1545, \"group\": [2569.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12136_BALBc-1_X02_Y02_1132_190\", \"ini\": 841, \"clust\": 955, \"rank\": 1075, \"rankvar\": 113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1985, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1356, \"cat-2\": \"Density: 27\", \"cat_2_index\": 972, \"group\": [954.0, 345.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12165_BALBc-1_X02_Y02_1132_447\", \"ini\": 840, \"clust\": 796, \"rank\": 155, \"rankvar\": 844, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1986, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2795, \"cat-2\": \"Density: 22\", \"cat_2_index\": 301, \"group\": [795.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12320_BALBc-1_X02_Y02_1134_679\", \"ini\": 839, \"clust\": 2618, \"rank\": 1662, \"rankvar\": 849, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1987, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2159, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2339, \"group\": [2626.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12365_BALBc-1_X02_Y02_1135_365\", \"ini\": 838, \"clust\": 837, \"rank\": 895, \"rankvar\": 123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1988, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1666, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1126, \"group\": [837.0, 299.0, 70.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12416_BALBc-1_X02_Y02_1135_962\", \"ini\": 837, \"clust\": 2322, \"rank\": 2325, \"rankvar\": 2195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1989, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2638, \"cat-2\": \"Density: 21\", \"cat_2_index\": 221, \"group\": [2322.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12735_BALBc-1_X02_Y02_1139_866\", \"ini\": 836, \"clust\": 2632, \"rank\": 2028, \"rankvar\": 671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1990, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2796, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1890, \"group\": [2630.0, 1097.0, 282.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12751_BALBc-1_X02_Y02_114_194\", \"ini\": 835, \"clust\": 866, \"rank\": 608, \"rankvar\": 1222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1991, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2639, \"cat-2\": \"Density: 22\", \"cat_2_index\": 302, \"group\": [868.0, 314.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12784_BALBc-1_X02_Y02_114_729\", \"ini\": 834, \"clust\": 1933, \"rank\": 2201, \"rankvar\": 2644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1992, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1357, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2000, \"group\": [1934.0, 828.0, 213.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12833_BALBc-1_X02_Y02_1140_332\", \"ini\": 833, \"clust\": 867, \"rank\": 543, \"rankvar\": 374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1993, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2797, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1276, \"group\": [866.0, 314.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12954_BALBc-1_X02_Y02_1141_896\", \"ini\": 832, \"clust\": 1877, \"rank\": 2289, \"rankvar\": 2366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1994, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2640, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1681, \"group\": [1877.0, 805.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12956_BALBc-1_X02_Y02_1141_931\", \"ini\": 831, \"clust\": 608, \"rank\": 144, \"rankvar\": 69, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1995, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2641, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1422, \"group\": [606.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13018_BALBc-1_X02_Y02_1142_616\", \"ini\": 830, \"clust\": 276, \"rank\": 1091, \"rankvar\": 1391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1996, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 389, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1779, \"group\": [278.0, 176.0, 52.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13318_BALBc-1_X02_Y02_1146_668\", \"ini\": 829, \"clust\": 2468, \"rank\": 1415, \"rankvar\": 1992, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1997, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2160, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2184, \"group\": [2472.0, 1060.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13570_BALBc-1_X02_Y02_1149_984\", \"ini\": 828, \"clust\": 2086, \"rank\": 1459, \"rankvar\": 530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1998, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 390, \"cat-2\": \"Density: 22\", \"cat_2_index\": 303, \"group\": [2087.0, 945.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13572_BALBc-1_X02_Y02_115_109\", \"ini\": 827, \"clust\": 793, \"rank\": 102, \"rankvar\": 1051, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1999, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 705, \"cat-2\": \"Density: 27\", \"cat_2_index\": 973, \"group\": [797.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13710_BALBc-1_X02_Y02_1150_801\", \"ini\": 826, \"clust\": 448, \"rank\": 212, \"rankvar\": 1668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2000, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2642, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1780, \"group\": [447.0, 258.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13772_BALBc-1_X02_Y02_1151_585\", \"ini\": 825, \"clust\": 1960, \"rank\": 1796, \"rankvar\": 1488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2001, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2643, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2001, \"group\": [1959.0, 845.0, 216.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13938_BALBc-1_X02_Y02_1153_645\", \"ini\": 824, \"clust\": 442, \"rank\": 750, \"rankvar\": 834, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2002, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 391, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1891, \"group\": [442.0, 255.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14156_BALBc-1_X02_Y02_1156_744\", \"ini\": 823, \"clust\": 2535, \"rank\": 2782, \"rankvar\": 2225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2003, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2644, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2340, \"group\": [2535.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14485_BALBc-1_X02_Y02_1160_173\", \"ini\": 822, \"clust\": 746, \"rank\": 86, \"rankvar\": 220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2004, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2324, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1127, \"group\": [745.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14492_BALBc-1_X02_Y02_1160_253\", \"ini\": 821, \"clust\": 1694, \"rank\": 1616, \"rankvar\": 893, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2005, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1358, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1128, \"group\": [1697.0, 720.0, 183.0, 48.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14502_BALBc-1_X02_Y02_1160_402\", \"ini\": 820, \"clust\": 154, \"rank\": 1080, \"rankvar\": 922, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2006, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2798, \"cat-2\": \"Density: 27\", \"cat_2_index\": 974, \"group\": [154.0, 98.0, 28.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14546_BALBc-1_X02_Y02_1160_824\", \"ini\": 819, \"clust\": 403, \"rank\": 683, \"rankvar\": 610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2007, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 392, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1781, \"group\": [404.0, 240.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14684_BALBc-1_X02_Y02_1162_447\", \"ini\": 818, \"clust\": 2156, \"rank\": 1761, \"rankvar\": 1416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2008, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2799, \"cat-2\": \"Density: 23\", \"cat_2_index\": 415, \"group\": [2156.0, 980.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14743_BALBc-1_X02_Y02_1163_128\", \"ini\": 817, \"clust\": 804, \"rank\": 128, \"rankvar\": 1412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2009, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1982, \"cat-2\": \"Density: 26\", \"cat_2_index\": 821, \"group\": [804.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14867_BALBc-1_X02_Y02_1164_624\", \"ini\": 816, \"clust\": 2243, \"rank\": 2534, \"rankvar\": 2471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2010, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2645, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1782, \"group\": [2244.0, 1026.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14896_BALBc-1_X02_Y02_1164_922\", \"ini\": 815, \"clust\": 2406, \"rank\": 1770, \"rankvar\": 1470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2011, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 393, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1783, \"group\": [2405.0, 1043.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14971_BALBc-1_X02_Y02_1165_840\", \"ini\": 814, \"clust\": 657, \"rank\": 259, \"rankvar\": 40, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2012, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 394, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1892, \"group\": [659.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15063_BALBc-1_X02_Y02_1166_969\", \"ini\": 813, \"clust\": 2266, \"rank\": 2232, \"rankvar\": 1554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2013, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 395, \"cat-2\": \"Density: 24\", \"cat_2_index\": 542, \"group\": [2268.0, 1033.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15135_BALBc-1_X02_Y02_1167_999\", \"ini\": 812, \"clust\": 2359, \"rank\": 2802, \"rankvar\": 2618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2014, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2161, \"cat-2\": \"Density: 20\", \"cat_2_index\": 169, \"group\": [2367.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15303_BALBc-1_X02_Y02_117_410\", \"ini\": 811, \"clust\": 614, \"rank\": 48, \"rankvar\": 141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2015, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2646, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1682, \"group\": [611.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15305_BALBc-1_X02_Y02_117_463\", \"ini\": 810, \"clust\": 1837, \"rank\": 2758, \"rankvar\": 2524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2016, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 849, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1893, \"group\": [1838.0, 798.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15393_BALBc-1_X02_Y02_1170_650\", \"ini\": 809, \"clust\": 2320, \"rank\": 2413, \"rankvar\": 2293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2017, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 396, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2002, \"group\": [2319.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15414_BALBc-1_X02_Y02_1170_876\", \"ini\": 808, \"clust\": 2570, \"rank\": 2174, \"rankvar\": 1343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2018, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 397, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1784, \"group\": [2572.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15423_BALBc-1_X02_Y02_1170_954\", \"ini\": 807, \"clust\": 679, \"rank\": 112, \"rankvar\": 568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2019, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 398, \"cat-2\": \"Density: 26\", \"cat_2_index\": 822, \"group\": [678.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15568_BALBc-1_X02_Y02_1172_980\", \"ini\": 806, \"clust\": 414, \"rank\": 346, \"rankvar\": 779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2020, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 399, \"cat-2\": \"Density: 22\", \"cat_2_index\": 304, \"group\": [414.0, 243.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15595_BALBc-1_X02_Y02_1173_333\", \"ini\": 805, \"clust\": 2044, \"rank\": 1727, \"rankvar\": 219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2021, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2800, \"cat-2\": \"Density: 26\", \"cat_2_index\": 823, \"group\": [2046.0, 915.0, 239.0, 64.0, 15.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15880_BALBc-1_X02_Y02_1176_923\", \"ini\": 804, \"clust\": 2436, \"rank\": 2075, \"rankvar\": 1499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2022, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 400, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2003, \"group\": [2437.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15939_BALBc-1_X02_Y02_1177_805\", \"ini\": 803, \"clust\": 2227, \"rank\": 2150, \"rankvar\": 560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2023, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 401, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1894, \"group\": [2228.0, 1021.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15968_BALBc-1_X02_Y02_1178_208\", \"ini\": 802, \"clust\": 697, \"rank\": 226, \"rankvar\": 595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2024, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1359, \"cat-2\": \"Density: 26\", \"cat_2_index\": 824, \"group\": [697.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15986_BALBc-1_X02_Y02_1178_415\", \"ini\": 801, \"clust\": 219, \"rank\": 736, \"rankvar\": 344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2025, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2647, \"cat-2\": \"Density: 24\", \"cat_2_index\": 543, \"group\": [225.0, 140.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16048_BALBc-1_X02_Y02_1178_942\", \"ini\": 800, \"clust\": 2288, \"rank\": 2501, \"rankvar\": 1960, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2026, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 402, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1683, \"group\": [2288.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16314_BALBc-1_X02_Y02_1181_752\", \"ini\": 799, \"clust\": 2296, \"rank\": 2530, \"rankvar\": 2001, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2027, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2648, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2100, \"group\": [2295.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16545_BALBc-1_X02_Y02_1184_787\", \"ini\": 798, \"clust\": 704, \"rank\": 161, \"rankvar\": 235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2028, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2649, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1785, \"group\": [703.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16556_BALBc-1_X02_Y02_1184_889\", \"ini\": 797, \"clust\": 563, \"rank\": 92, \"rankvar\": 1147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2029, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 403, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2101, \"group\": [560.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16843_BALBc-1_X02_Y02_1188_851\", \"ini\": 796, \"clust\": 2393, \"rank\": 1932, \"rankvar\": 1486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2030, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 404, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2102, \"group\": [2393.0, 1040.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16917_BALBc-1_X02_Y02_1189_710\", \"ini\": 795, \"clust\": 2321, \"rank\": 2263, \"rankvar\": 1634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2031, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2162, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1684, \"group\": [2320.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17166_BALBc-1_X02_Y02_1192_172\", \"ini\": 794, \"clust\": 792, \"rank\": 361, \"rankvar\": 852, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2032, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 850, \"cat-2\": \"Density: 27\", \"cat_2_index\": 975, \"group\": [792.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17200_BALBc-1_X02_Y02_1192_66\", \"ini\": 793, \"clust\": 1481, \"rank\": 1730, \"rankvar\": 632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2033, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 851, \"cat-2\": \"Density: 22\", \"cat_2_index\": 305, \"group\": [1481.0, 578.0, 142.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17277_BALBc-1_X02_Y02_1193_669\", \"ini\": 792, \"clust\": 1126, \"rank\": 969, \"rankvar\": 25, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2034, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2163, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2004, \"group\": [1126.0, 376.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17324_BALBc-1_X02_Y02_1194_343\", \"ini\": 791, \"clust\": 509, \"rank\": 39, \"rankvar\": 1402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2035, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2801, \"cat-2\": \"Density: 24\", \"cat_2_index\": 544, \"group\": [508.0, 272.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17418_BALBc-1_X02_Y02_1195_565\", \"ini\": 790, \"clust\": 1174, \"rank\": 1271, \"rankvar\": 761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2036, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2650, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1277, \"group\": [1177.0, 410.0, 92.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17557_BALBc-1_X02_Y02_1197_533\", \"ini\": 789, \"clust\": 377, \"rank\": 194, \"rankvar\": 1977, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2037, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2651, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1423, \"group\": [381.0, 230.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17661_BALBc-1_X02_Y02_1198_827\", \"ini\": 788, \"clust\": 2179, \"rank\": 1510, \"rankvar\": 2354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2038, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 405, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2103, \"group\": [2180.0, 996.0, 265.0, 73.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17686_BALBc-1_X02_Y02_1199_215\", \"ini\": 787, \"clust\": 1978, \"rank\": 1527, \"rankvar\": 1335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2039, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2248, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1278, \"group\": [1979.0, 864.0, 223.0, 60.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17736_BALBc-1_X02_Y02_1199_815\", \"ini\": 786, \"clust\": 2305, \"rank\": 2691, \"rankvar\": 2598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2040, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 406, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2104, \"group\": [2305.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17809_BALBc-1_X02_Y02_12_793\", \"ini\": 785, \"clust\": 1892, \"rank\": 2302, \"rankvar\": 2103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2041, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1360, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1786, \"group\": [1895.0, 813.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18091_BALBc-1_X02_Y02_1202_280\", \"ini\": 784, \"clust\": 818, \"rank\": 1037, \"rankvar\": 2061, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2042, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2249, \"cat-2\": \"Density: 24\", \"cat_2_index\": 545, \"group\": [821.0, 292.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18146_BALBc-1_X02_Y02_1202_911\", \"ini\": 783, \"clust\": 2286, \"rank\": 2650, \"rankvar\": 2031, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2043, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 407, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2492, \"group\": [2286.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18155_BALBc-1_X02_Y02_1202_975\", \"ini\": 782, \"clust\": 1088, \"rank\": 383, \"rankvar\": 803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2044, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 408, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1129, \"group\": [1090.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18172_BALBc-1_X02_Y02_1203_305\", \"ini\": 781, \"clust\": 835, \"rank\": 687, \"rankvar\": 686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2045, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2652, \"cat-2\": \"Density: 25\", \"cat_2_index\": 681, \"group\": [838.0, 299.0, 70.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18233_BALBc-1_X02_Y02_1204_137\", \"ini\": 780, \"clust\": 1555, \"rank\": 1442, \"rankvar\": 1767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2046, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 706, \"cat-2\": \"Density: 23\", \"cat_2_index\": 416, \"group\": [1555.0, 609.0, 148.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18261_BALBc-1_X02_Y02_1204_367\", \"ini\": 779, \"clust\": 1039, \"rank\": 583, \"rankvar\": 617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2047, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2802, \"cat-2\": \"Density: 26\", \"cat_2_index\": 825, \"group\": [1038.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18290_BALBc-1_X02_Y02_1204_637\", \"ini\": 778, \"clust\": 2460, \"rank\": 1546, \"rankvar\": 1503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2048, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2164, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1895, \"group\": [2461.0, 1058.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18505_BALBc-1_X02_Y02_1207_236\", \"ini\": 777, \"clust\": 601, \"rank\": 158, \"rankvar\": 956, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2049, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2250, \"cat-2\": \"Density: 25\", \"cat_2_index\": 682, \"group\": [600.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18616_BALBc-1_X02_Y02_1208_730\", \"ini\": 776, \"clust\": 2461, \"rank\": 1399, \"rankvar\": 760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2050, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 409, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2341, \"group\": [2462.0, 1058.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18834_BALBc-1_X02_Y02_1210_68\", \"ini\": 775, \"clust\": 1539, \"rank\": 1344, \"rankvar\": 816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2051, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 852, \"cat-2\": \"Density: 22\", \"cat_2_index\": 306, \"group\": [1542.0, 599.0, 146.0, 35.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18835_BALBc-1_X02_Y02_1210_690\", \"ini\": 774, \"clust\": 1033, \"rank\": 519, \"rankvar\": 684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2052, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 410, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1685, \"group\": [1036.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18895_BALBc-1_X02_Y02_1211_550\", \"ini\": 773, \"clust\": 2143, \"rank\": 1334, \"rankvar\": 1879, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2053, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1361, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1279, \"group\": [2144.0, 974.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18963_BALBc-1_X02_Y02_1212_417\", \"ini\": 772, \"clust\": 517, \"rank\": 516, \"rankvar\": 818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2054, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2653, \"cat-2\": \"Density: 23\", \"cat_2_index\": 417, \"group\": [516.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19058_BALBc-1_X02_Y02_1213_786\", \"ini\": 771, \"clust\": 727, \"rank\": 42, \"rankvar\": 233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2055, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 411, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2185, \"group\": [725.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19143_BALBc-1_X02_Y02_1214_853\", \"ini\": 770, \"clust\": 2392, \"rank\": 1607, \"rankvar\": 1409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2056, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 412, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2186, \"group\": [2395.0, 1040.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19158_BALBc-1_X02_Y02_1214_998\", \"ini\": 769, \"clust\": 2581, \"rank\": 2214, \"rankvar\": 1068, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2057, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 413, \"cat-2\": \"Density: 22\", \"cat_2_index\": 307, \"group\": [2581.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19934_BALBc-1_X02_Y02_1224_37\", \"ini\": 768, \"clust\": 1247, \"rank\": 1012, \"rankvar\": 252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2058, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 853, \"cat-2\": \"Density: 23\", \"cat_2_index\": 418, \"group\": [1247.0, 461.0, 109.0, 26.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19942_BALBc-1_X02_Y02_1224_457\", \"ini\": 767, \"clust\": 802, \"rank\": 56, \"rankvar\": 1063, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2059, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2654, \"cat-2\": \"Density: 24\", \"cat_2_index\": 546, \"group\": [805.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19965_BALBc-1_X02_Y02_1224_717\", \"ini\": 766, \"clust\": 2306, \"rank\": 2760, \"rankvar\": 2575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2060, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 414, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2105, \"group\": [2306.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20040_BALBc-1_X02_Y02_1225_677\", \"ini\": 765, \"clust\": 2315, \"rank\": 2419, \"rankvar\": 2211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2061, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 415, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2187, \"group\": [2318.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20113_BALBc-1_X02_Y02_1226_605\", \"ini\": 764, \"clust\": 2074, \"rank\": 1377, \"rankvar\": 416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2062, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2165, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2005, \"group\": [2074.0, 938.0, 252.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20117_BALBc-1_X02_Y02_1226_636\", \"ini\": 763, \"clust\": 279, \"rank\": 853, \"rankvar\": 829, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2063, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 416, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2342, \"group\": [285.0, 179.0, 52.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20128_BALBc-1_X02_Y02_1226_776\", \"ini\": 762, \"clust\": 2414, \"rank\": 1930, \"rankvar\": 1421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2064, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2166, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2270, \"group\": [2415.0, 1048.0, 273.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20281_BALBc-1_X02_Y02_1228_895\", \"ini\": 761, \"clust\": 2154, \"rank\": 1517, \"rankvar\": 1843, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2065, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 417, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2271, \"group\": [2154.0, 980.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20297_BALBc-1_X02_Y02_1229_260\", \"ini\": 760, \"clust\": 652, \"rank\": 465, \"rankvar\": 356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2066, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 418, \"cat-2\": \"Density: 24\", \"cat_2_index\": 547, \"group\": [694.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20538_BALBc-1_X02_Y02_1231_364\", \"ini\": 759, \"clust\": 155, \"rank\": 1298, \"rankvar\": 1936, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2067, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 925, \"cat-2\": \"Density: 23\", \"cat_2_index\": 419, \"group\": [155.0, 99.0, 28.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20631_BALBc-1_X02_Y02_1232_383\", \"ini\": 758, \"clust\": 1116, \"rank\": 595, \"rankvar\": 135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2068, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 419, \"cat-2\": \"Density: 22\", \"cat_2_index\": 308, \"group\": [1117.0, 372.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20752_BALBc-1_X02_Y02_1233_882\", \"ini\": 757, \"clust\": 2180, \"rank\": 1600, \"rankvar\": 165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2069, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 420, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2343, \"group\": [2181.0, 997.0, 265.0, 73.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20757_BALBc-1_X02_Y02_1233_942\", \"ini\": 756, \"clust\": 878, \"rank\": 807, \"rankvar\": 620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2070, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 421, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2006, \"group\": [877.0, 317.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20801_BALBc-1_X02_Y02_1234_579\", \"ini\": 755, \"clust\": 698, \"rank\": 291, \"rankvar\": 605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2071, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1362, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1686, \"group\": [698.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20824_BALBc-1_X02_Y02_1234_805\", \"ini\": 754, \"clust\": 2608, \"rank\": 1900, \"rankvar\": 805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2072, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2167, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2408, \"group\": [2607.0, 1093.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20990_BALBc-1_X02_Y02_1236_981\", \"ini\": 753, \"clust\": 640, \"rank\": 12, \"rankvar\": 335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2073, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2655, \"cat-2\": \"Density: 27\", \"cat_2_index\": 976, \"group\": [635.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21052_BALBc-1_X02_Y02_1238_118\", \"ini\": 752, \"clust\": 644, \"rank\": 173, \"rankvar\": 368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2074, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 707, \"cat-2\": \"Density: 24\", \"cat_2_index\": 548, \"group\": [644.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21101_BALBc-1_X02_Y02_1238_698\", \"ini\": 751, \"clust\": 992, \"rank\": 910, \"rankvar\": 890, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2075, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 422, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2106, \"group\": [993.0, 360.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21177_BALBc-1_X02_Y02_1239_735\", \"ini\": 750, \"clust\": 665, \"rank\": 89, \"rankvar\": 661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2076, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 423, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2188, \"group\": [665.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21417_BALBc-1_X02_Y02_1241_859\", \"ini\": 749, \"clust\": 613, \"rank\": 115, \"rankvar\": 11, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2077, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2168, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2189, \"group\": [613.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21484_BALBc-1_X02_Y02_1242_93\", \"ini\": 748, \"clust\": 1981, \"rank\": 1335, \"rankvar\": 1415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2078, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 854, \"cat-2\": \"Density: 23\", \"cat_2_index\": 420, \"group\": [1982.0, 865.0, 223.0, 60.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21581_BALBc-1_X02_Y02_1244_226\", \"ini\": 747, \"clust\": 2066, \"rank\": 1629, \"rankvar\": 538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2079, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 855, \"cat-2\": \"Density: 27\", \"cat_2_index\": 977, \"group\": [2067.0, 933.0, 250.0, 69.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21628_BALBc-1_X02_Y02_1244_966\", \"ini\": 746, \"clust\": 2555, \"rank\": 2596, \"rankvar\": 1964, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2080, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2656, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1424, \"group\": [2557.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21630_BALBc-1_X02_Y02_1244_997\", \"ini\": 745, \"clust\": 2600, \"rank\": 2012, \"rankvar\": 687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2081, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2657, \"cat-2\": \"Density: 22\", \"cat_2_index\": 309, \"group\": [2601.0, 1090.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21647_BALBc-1_X02_Y02_1245_199\", \"ini\": 744, \"clust\": 696, \"rank\": 631, \"rankvar\": 348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2082, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 708, \"cat-2\": \"Density: 27\", \"cat_2_index\": 978, \"group\": [696.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21656_BALBc-1_X02_Y02_1245_280\", \"ini\": 743, \"clust\": 953, \"rank\": 539, \"rankvar\": 904, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2083, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 926, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1280, \"group\": [955.0, 346.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21832_BALBc-1_X02_Y02_1247_883\", \"ini\": 742, \"clust\": 879, \"rank\": 804, \"rankvar\": 1407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2084, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 424, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2190, \"group\": [878.0, 317.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22423_BALBc-1_X02_Y02_1254_748\", \"ini\": 741, \"clust\": 2298, \"rank\": 2477, \"rankvar\": 1436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2085, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 425, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2344, \"group\": [2298.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22543_BALBc-1_X02_Y02_1256_600\", \"ini\": 740, \"clust\": 2144, \"rank\": 1637, \"rankvar\": 1242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2086, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 426, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2107, \"group\": [2145.0, 974.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22609_BALBc-1_X02_Y02_1257_427\", \"ini\": 739, \"clust\": 824, \"rank\": 1067, \"rankvar\": 727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2087, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1363, \"cat-2\": \"Density: 21\", \"cat_2_index\": 222, \"group\": [826.0, 294.0, 69.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22632_BALBc-1_X02_Y02_1257_646\", \"ini\": 738, \"clust\": 2426, \"rank\": 1726, \"rankvar\": 1680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2088, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 427, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2108, \"group\": [2429.0, 1053.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22899_BALBc-1_X02_Y02_1260_506\", \"ini\": 737, \"clust\": 989, \"rank\": 729, \"rankvar\": 357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2089, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1364, \"cat-2\": \"Density: 25\", \"cat_2_index\": 683, \"group\": [988.0, 357.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22914_BALBc-1_X02_Y02_1260_721\", \"ini\": 736, \"clust\": 2219, \"rank\": 2046, \"rankvar\": 1773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2090, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 428, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2007, \"group\": [2220.0, 1020.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22990_BALBc-1_X02_Y02_1261_872\", \"ini\": 735, \"clust\": 2604, \"rank\": 1974, \"rankvar\": 755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2091, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 429, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1896, \"group\": [2605.0, 1092.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23225_BALBc-1_X02_Y02_1264_989\", \"ini\": 734, \"clust\": 2588, \"rank\": 2439, \"rankvar\": 1284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2092, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2169, \"cat-2\": \"Density: 20\", \"cat_2_index\": 170, \"group\": [2588.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23259_BALBc-1_X02_Y02_1265_403\", \"ini\": 733, \"clust\": 602, \"rank\": 220, \"rankvar\": 108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2093, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 430, \"cat-2\": \"Density: 19\", \"cat_2_index\": 123, \"group\": [604.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23400_BALBc-1_X02_Y02_1267_557\", \"ini\": 732, \"clust\": 939, \"rank\": 944, \"rankvar\": 1194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2094, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1365, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1130, \"group\": [934.0, 340.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23411_BALBc-1_X02_Y02_1267_797\", \"ini\": 731, \"clust\": 2689, \"rank\": 917, \"rankvar\": 2156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2095, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2170, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1897, \"group\": [2690.0, 1142.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23420_BALBc-1_X02_Y02_1267_912\", \"ini\": 730, \"clust\": 2571, \"rank\": 2326, \"rankvar\": 1567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2096, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 431, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1425, \"group\": [2570.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23445_BALBc-1_X02_Y02_1268_264\", \"ini\": 729, \"clust\": 1650, \"rank\": 1454, \"rankvar\": 417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2097, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 709, \"cat-2\": \"Density: 23\", \"cat_2_index\": 421, \"group\": [1651.0, 683.0, 173.0, 43.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23486_BALBc-1_X02_Y02_1268_775\", \"ini\": 728, \"clust\": 2136, \"rank\": 1414, \"rankvar\": 550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2098, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2171, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2191, \"group\": [2135.0, 967.0, 258.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23578_BALBc-1_X02_Y02_127_136\", \"ini\": 727, \"clust\": 1923, \"rank\": 2396, \"rankvar\": 2680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2099, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 432, \"cat-2\": \"Density: 22\", \"cat_2_index\": 310, \"group\": [1925.0, 822.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23693_BALBc-1_X02_Y02_1270_691\", \"ini\": 726, \"clust\": 2427, \"rank\": 2665, \"rankvar\": 2291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2100, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 433, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1787, \"group\": [2427.0, 1052.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23786_BALBc-1_X02_Y02_1272_150\", \"ini\": 725, \"clust\": 617, \"rank\": 60, \"rankvar\": 62, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2101, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 710, \"cat-2\": \"Density: 20\", \"cat_2_index\": 171, \"group\": [615.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23903_BALBc-1_X02_Y02_1273_584\", \"ini\": 724, \"clust\": 2684, \"rank\": 1325, \"rankvar\": 733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2102, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 434, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1546, \"group\": [2685.0, 1141.0, 294.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23932_BALBc-1_X02_Y02_1273_933\", \"ini\": 723, \"clust\": 1121, \"rank\": 1056, \"rankvar\": 531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2103, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 435, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1281, \"group\": [1124.0, 375.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24090_BALBc-1_X02_Y02_1275_977\", \"ini\": 722, \"clust\": 2415, \"rank\": 1816, \"rankvar\": 799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2104, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2172, \"cat-2\": \"Density: 20\", \"cat_2_index\": 172, \"group\": [2416.0, 1048.0, 273.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24259_BALBc-1_X02_Y02_1278_364\", \"ini\": 721, \"clust\": 88, \"rank\": 1883, \"rankvar\": 1124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2105, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1667, \"cat-2\": \"Density: 18\", \"cat_2_index\": 98, \"group\": [88.0, 45.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24308_BALBc-1_X02_Y02_1278_906\", \"ini\": 720, \"clust\": 2249, \"rank\": 2267, \"rankvar\": 2660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2106, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 436, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1282, \"group\": [2249.0, 1027.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24363_BALBc-1_X02_Y02_1279_658\", \"ini\": 719, \"clust\": 2456, \"rank\": 1577, \"rankvar\": 1804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2107, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 437, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2109, \"group\": [2460.0, 1058.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24400_BALBc-1_X02_Y02_128_401\", \"ini\": 718, \"clust\": 2104, \"rank\": 1021, \"rankvar\": 1378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2108, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2658, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1547, \"group\": [2102.0, 950.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24702_BALBc-1_X02_Y02_1283_757\", \"ini\": 717, \"clust\": 595, \"rank\": 47, \"rankvar\": 636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2109, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 438, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1687, \"group\": [592.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24791_BALBc-1_X02_Y02_1284_937\", \"ini\": 716, \"clust\": 2299, \"rank\": 2338, \"rankvar\": 950, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2110, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2173, \"cat-2\": \"Density: 25\", \"cat_2_index\": 684, \"group\": [2299.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24871_BALBc-1_X02_Y02_1286_196\", \"ini\": 715, \"clust\": 446, \"rank\": 655, \"rankvar\": 768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2111, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 711, \"cat-2\": \"Density: 23\", \"cat_2_index\": 422, \"group\": [452.0, 258.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24910_BALBc-1_X02_Y02_1286_61\", \"ini\": 714, \"clust\": 834, \"rank\": 707, \"rankvar\": 279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2112, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 856, \"cat-2\": \"Density: 22\", \"cat_2_index\": 311, \"group\": [834.0, 298.0, 70.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24930_BALBc-1_X02_Y02_1286_94\", \"ini\": 713, \"clust\": 2663, \"rank\": 1578, \"rankvar\": 1282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2113, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 857, \"cat-2\": \"Density: 21\", \"cat_2_index\": 223, \"group\": [2666.0, 1125.0, 288.0, 78.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24997_BALBc-1_X02_Y02_1287_830\", \"ini\": 712, \"clust\": 2591, \"rank\": 2073, \"rankvar\": 1689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2114, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2174, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1548, \"group\": [2591.0, 1088.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25247_BALBc-1_X02_Y02_1290_427\", \"ini\": 711, \"clust\": 1595, \"rank\": 847, \"rankvar\": 2045, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2115, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1366, \"cat-2\": \"Density: 18\", \"cat_2_index\": 99, \"group\": [1596.0, 639.0, 156.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25317_BALBc-1_X02_Y02_1291_314\", \"ini\": 710, \"clust\": 204, \"rank\": 552, \"rankvar\": 1215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2116, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 712, \"cat-2\": \"Density: 20\", \"cat_2_index\": 173, \"group\": [205.0, 134.0, 43.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25428_BALBc-1_X02_Y02_1292_703\", \"ini\": 709, \"clust\": 388, \"rank\": 701, \"rankvar\": 152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2117, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 439, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1688, \"group\": [389.0, 234.0, 65.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25511_BALBc-1_X02_Y02_1293_680\", \"ini\": 708, \"clust\": 1035, \"rank\": 288, \"rankvar\": 379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2118, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 440, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1689, \"group\": [1033.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25661_BALBc-1_X02_Y02_1295_739\", \"ini\": 707, \"clust\": 427, \"rank\": 525, \"rankvar\": 985, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2119, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 441, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1898, \"group\": [429.0, 249.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25688_BALBc-1_X02_Y02_1296_24\", \"ini\": 706, \"clust\": 849, \"rank\": 773, \"rankvar\": 1498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2120, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1367, \"cat-2\": \"Density: 22\", \"cat_2_index\": 312, \"group\": [850.0, 306.0, 71.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25752_BALBc-1_X02_Y02_1297_227\", \"ini\": 705, \"clust\": 21, \"rank\": 1563, \"rankvar\": 1174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2121, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2494, \"cat-2\": \"Density: 23\", \"cat_2_index\": 423, \"group\": [22.0, 16.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26022_BALBc-1_X02_Y02_13_668\", \"ini\": 704, \"clust\": 259, \"rank\": 842, \"rankvar\": 366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2122, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1368, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1283, \"group\": [259.0, 160.0, 47.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26077_BALBc-1_X02_Y02_130_473\", \"ini\": 703, \"clust\": 120, \"rank\": 1098, \"rankvar\": 2458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2123, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 858, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1549, \"group\": [123.0, 74.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26124_BALBc-1_X02_Y02_1300_173\", \"ini\": 702, \"clust\": 510, \"rank\": 431, \"rankvar\": 147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2124, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 442, \"cat-2\": \"Density: 19\", \"cat_2_index\": 124, \"group\": [511.0, 272.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26182_BALBc-1_X02_Y02_1300_787\", \"ini\": 701, \"clust\": 2101, \"rank\": 1202, \"rankvar\": 402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2125, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2175, \"cat-2\": \"Density: 27\", \"cat_2_index\": 979, \"group\": [2099.0, 949.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26230_BALBc-1_X02_Y02_1301_568\", \"ini\": 700, \"clust\": 1840, \"rank\": 2795, \"rankvar\": 2502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2126, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2659, \"cat-2\": \"Density: 26\", \"cat_2_index\": 826, \"group\": [1841.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26312_BALBc-1_X02_Y02_1302_626\", \"ini\": 699, \"clust\": 2130, \"rank\": 1395, \"rankvar\": 1001, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2127, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 443, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1131, \"group\": [2141.0, 971.0, 258.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26315_BALBc-1_X02_Y02_1302_700\", \"ini\": 698, \"clust\": 2428, \"rank\": 1994, \"rankvar\": 1789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2128, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 444, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1550, \"group\": [2428.0, 1052.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26391_BALBc-1_X02_Y02_1303_927\", \"ini\": 697, \"clust\": 610, \"rank\": 20, \"rankvar\": 96, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2129, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2176, \"cat-2\": \"Density: 23\", \"cat_2_index\": 424, \"group\": [608.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26449_BALBc-1_X02_Y02_1304_811\", \"ini\": 696, \"clust\": 711, \"rank\": 21, \"rankvar\": 826, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2130, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2177, \"cat-2\": \"Density: 26\", \"cat_2_index\": 827, \"group\": [708.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26566_BALBc-1_X02_Y02_1306_658\", \"ini\": 695, \"clust\": 903, \"rank\": 720, \"rankvar\": 301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2131, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 445, \"cat-2\": \"Density: 26\", \"cat_2_index\": 828, \"group\": [902.0, 331.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26693_BALBc-1_X02_Y02_1308_47\", \"ini\": 694, \"clust\": 2147, \"rank\": 1192, \"rankvar\": 1712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2132, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 859, \"cat-2\": \"Density: 20\", \"cat_2_index\": 174, \"group\": [2146.0, 975.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26715_BALBc-1_X02_Y02_1308_750\", \"ini\": 693, \"clust\": 2518, \"rank\": 2573, \"rankvar\": 2412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2133, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 446, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1426, \"group\": [2518.0, 1081.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26846_BALBc-1_X02_Y02_131_495\", \"ini\": 692, \"clust\": 751, \"rank\": 287, \"rankvar\": 86, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2134, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 447, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1427, \"group\": [751.0, 279.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27069_BALBc-1_X02_Y02_1312_571\", \"ini\": 691, \"clust\": 564, \"rank\": 79, \"rankvar\": 1037, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2135, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2660, \"cat-2\": \"Density: 23\", \"cat_2_index\": 425, \"group\": [561.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27073_BALBc-1_X02_Y02_1312_596\", \"ini\": 690, \"clust\": 1028, \"rank\": 452, \"rankvar\": 43, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2136, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 448, \"cat-2\": \"Density: 24\", \"cat_2_index\": 549, \"group\": [1028.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27093_BALBc-1_X02_Y02_1312_855\", \"ini\": 689, \"clust\": 1768, \"rank\": 1464, \"rankvar\": 1262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2137, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 449, \"cat-2\": \"Density: 27\", \"cat_2_index\": 980, \"group\": [1769.0, 773.0, 205.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27175_BALBc-1_X02_Y02_1313_889\", \"ini\": 688, \"clust\": 2666, \"rank\": 2005, \"rankvar\": 427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2138, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 450, \"cat-2\": \"Density: 21\", \"cat_2_index\": 224, \"group\": [2669.0, 1128.0, 289.0, 79.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27201_BALBc-1_X02_Y02_1314_469\", \"ini\": 687, \"clust\": 237, \"rank\": 1272, \"rankvar\": 317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2139, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2661, \"cat-2\": \"Density: 16\", \"cat_2_index\": 62, \"group\": [237.0, 148.0, 45.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27203_BALBc-1_X02_Y02_1314_500\", \"ini\": 686, \"clust\": 2133, \"rank\": 966, \"rankvar\": 1105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2140, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2662, \"cat-2\": \"Density: 19\", \"cat_2_index\": 125, \"group\": [2132.0, 966.0, 258.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27300_BALBc-1_X02_Y02_1315_692\", \"ini\": 685, \"clust\": 449, \"rank\": 163, \"rankvar\": 662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2141, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 451, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1132, \"group\": [448.0, 258.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27591_BALBc-1_X02_Y02_1319_767\", \"ini\": 684, \"clust\": 998, \"rank\": 594, \"rankvar\": 1450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2142, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 452, \"cat-2\": \"Density: 26\", \"cat_2_index\": 829, \"group\": [1000.0, 362.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27698_BALBc-1_X02_Y02_1320_253\", \"ini\": 683, \"clust\": 651, \"rank\": 285, \"rankvar\": 0, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2143, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2495, \"cat-2\": \"Density: 19\", \"cat_2_index\": 126, \"group\": [648.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27744_BALBc-1_X02_Y02_1320_827\", \"ini\": 682, \"clust\": 2625, \"rank\": 1955, \"rankvar\": 1771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2144, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 453, \"cat-2\": \"Density: 21\", \"cat_2_index\": 225, \"group\": [2622.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27802_BALBc-1_X02_Y02_1321_633\", \"ini\": 681, \"clust\": 2482, \"rank\": 1752, \"rankvar\": 1761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2145, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 454, \"cat-2\": \"Density: 24\", \"cat_2_index\": 550, \"group\": [2485.0, 1071.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27977_BALBc-1_X02_Y02_1324_135\", \"ini\": 680, \"clust\": 2628, \"rank\": 2239, \"rankvar\": 626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2146, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1369, \"cat-2\": \"Density: 15\", \"cat_2_index\": 45, \"group\": [2633.0, 1100.0, 282.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28001_BALBc-1_X02_Y02_1324_408\", \"ini\": 679, \"clust\": 234, \"rank\": 774, \"rankvar\": 850, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2147, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1668, \"cat-2\": \"Density: 13\", \"cat_2_index\": 20, \"group\": [234.0, 146.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28058_BALBc-1_X02_Y02_1325_209\", \"ini\": 678, \"clust\": 847, \"rank\": 829, \"rankvar\": 324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2148, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1983, \"cat-2\": \"Density: 18\", \"cat_2_index\": 100, \"group\": [848.0, 305.0, 71.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28143_BALBc-1_X02_Y02_1326_180\", \"ini\": 677, \"clust\": 574, \"rank\": 170, \"rankvar\": 756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2149, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 455, \"cat-2\": \"Density: 15\", \"cat_2_index\": 46, \"group\": [572.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28240_BALBc-1_X02_Y02_1327_430\", \"ini\": 676, \"clust\": 1889, \"rank\": 2093, \"rankvar\": 1160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2150, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1984, \"cat-2\": \"Density: 12\", \"cat_2_index\": 10, \"group\": [1892.0, 810.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28326_BALBc-1_X02_Y02_1328_311\", \"ini\": 675, \"clust\": 2146, \"rank\": 1465, \"rankvar\": 1059, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2151, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1370, \"cat-2\": \"Density: 13\", \"cat_2_index\": 21, \"group\": [2148.0, 976.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28355_BALBc-1_X02_Y02_1328_671\", \"ini\": 674, \"clust\": 2645, \"rank\": 2402, \"rankvar\": 1758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2152, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2178, \"cat-2\": \"Density: 21\", \"cat_2_index\": 226, \"group\": [2649.0, 1111.0, 285.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28450_BALBc-1_X02_Y02_1329_795\", \"ini\": 673, \"clust\": 2513, \"rank\": 1949, \"rankvar\": 835, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2153, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 456, \"cat-2\": \"Density: 21\", \"cat_2_index\": 227, \"group\": [2512.0, 1078.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28468_BALBc-1_X02_Y02_1329_935\", \"ini\": 672, \"clust\": 2363, \"rank\": 2778, \"rankvar\": 2588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2154, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2179, \"cat-2\": \"Density: 17\", \"cat_2_index\": 82, \"group\": [2361.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28590_BALBc-1_X02_Y02_1330_719\", \"ini\": 671, \"clust\": 2323, \"rank\": 2420, \"rankvar\": 1920, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2155, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2180, \"cat-2\": \"Density: 25\", \"cat_2_index\": 685, \"group\": [2323.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28625_BALBc-1_X02_Y02_1331_165\", \"ini\": 670, \"clust\": 832, \"rank\": 1027, \"rankvar\": 37, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2156, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 628, \"cat-2\": \"Density: 14\", \"cat_2_index\": 32, \"group\": [835.0, 298.0, 70.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28658_BALBc-1_X02_Y02_1331_656\", \"ini\": 669, \"clust\": 393, \"rank\": 515, \"rankvar\": 825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2157, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2181, \"cat-2\": \"Density: 23\", \"cat_2_index\": 426, \"group\": [391.0, 235.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28726_BALBc-1_X02_Y02_1332_561\", \"ini\": 668, \"clust\": 1820, \"rank\": 2706, \"rankvar\": 2460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2158, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2663, \"cat-2\": \"Density: 19\", \"cat_2_index\": 127, \"group\": [1823.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28748_BALBc-1_X02_Y02_1332_775\", \"ini\": 667, \"clust\": 2123, \"rank\": 1509, \"rankvar\": 867, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2159, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 457, \"cat-2\": \"Density: 20\", \"cat_2_index\": 175, \"group\": [2126.0, 961.0, 255.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28827_BALBc-1_X02_Y02_1333_879\", \"ini\": 666, \"clust\": 2454, \"rank\": 1383, \"rankvar\": 1661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2160, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2182, \"cat-2\": \"Density: 18\", \"cat_2_index\": 101, \"group\": [2455.0, 1058.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28880_BALBc-1_X02_Y02_1334_638\", \"ini\": 665, \"clust\": 248, \"rank\": 762, \"rankvar\": 154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2161, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 458, \"cat-2\": \"Density: 20\", \"cat_2_index\": 176, \"group\": [249.0, 156.0, 47.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29002_BALBc-1_X02_Y02_1336_613\", \"ini\": 664, \"clust\": 151, \"rank\": 1687, \"rankvar\": 1135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2162, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 459, \"cat-2\": \"Density: 19\", \"cat_2_index\": 128, \"group\": [148.0, 92.0, 24.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29036_BALBc-1_X02_Y02_1337_280\", \"ini\": 663, \"clust\": 360, \"rank\": 1169, \"rankvar\": 1448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2163, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1371, \"cat-2\": \"Density: 13\", \"cat_2_index\": 22, \"group\": [365.0, 224.0, 63.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29306_BALBc-1_X02_Y02_135_188\", \"ini\": 662, \"clust\": 1323, \"rank\": 1658, \"rankvar\": 2092, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2164, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1372, \"cat-2\": \"Density: 23\", \"cat_2_index\": 427, \"group\": [1323.0, 513.0, 127.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29325_BALBc-1_X02_Y02_135_44\", \"ini\": 661, \"clust\": 1108, \"rank\": 557, \"rankvar\": 1248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2165, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1373, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1690, \"group\": [1110.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29381_BALBc-1_X02_Y02_136_322\", \"ini\": 660, \"clust\": 2269, \"rank\": 2820, \"rankvar\": 2481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2166, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2664, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1428, \"group\": [2275.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29406_BALBc-1_X02_Y02_136_579\", \"ini\": 659, \"clust\": 2593, \"rank\": 1713, \"rankvar\": 748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2167, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 460, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2110, \"group\": [2596.0, 1090.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29538_BALBc-1_X02_Y02_138_553\", \"ini\": 658, \"clust\": 2675, \"rank\": 1145, \"rankvar\": 126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2168, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 461, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2272, \"group\": [2678.0, 1136.0, 292.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29589_BALBc-1_X02_Y02_139_229\", \"ini\": 657, \"clust\": 1896, \"rank\": 2025, \"rankvar\": 2799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2169, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1374, \"cat-2\": \"Density: 22\", \"cat_2_index\": 313, \"group\": [1897.0, 814.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29755_BALBc-1_X02_Y02_140_609\", \"ini\": 656, \"clust\": 1118, \"rank\": 1032, \"rankvar\": 488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2170, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1375, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2008, \"group\": [1121.0, 373.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29945_BALBc-1_X02_Y02_143_270\", \"ini\": 655, \"clust\": 1773, \"rank\": 1277, \"rankvar\": 2116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2171, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1552, \"cat-2\": \"Density: 23\", \"cat_2_index\": 428, \"group\": [1773.0, 776.0, 206.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29975_BALBc-1_X02_Y02_143_638\", \"ini\": 654, \"clust\": 2671, \"rank\": 1418, \"rankvar\": 1484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2172, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1376, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2192, \"group\": [2672.0, 1131.0, 290.0, 79.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29979_BALBc-1_X02_Y02_143_672\", \"ini\": 653, \"clust\": 122, \"rank\": 1614, \"rankvar\": 2464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2173, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1377, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2009, \"group\": [122.0, 73.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30142_BALBc-1_X02_Y02_145_833\", \"ini\": 652, \"clust\": 2766, \"rank\": 2406, \"rankvar\": 2672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2174, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1378, \"cat-2\": \"Density: 26\", \"cat_2_index\": 830, \"group\": [2765.0, 1172.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30179_BALBc-1_X02_Y02_146_479\", \"ini\": 651, \"clust\": 1818, \"rank\": 2405, \"rankvar\": 1749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2175, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 860, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1429, \"group\": [1819.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30188_BALBc-1_X02_Y02_146_532\", \"ini\": 650, \"clust\": 282, \"rank\": 512, \"rankvar\": 773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2176, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1379, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1788, \"group\": [284.0, 178.0, 52.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30434_BALBc-1_X02_Y02_149_94\", \"ini\": 649, \"clust\": 2208, \"rank\": 2472, \"rankvar\": 2579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2177, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 713, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1284, \"group\": [2207.0, 1015.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30646_BALBc-1_X02_Y02_151_872\", \"ini\": 648, \"clust\": 893, \"rank\": 251, \"rankvar\": 481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2178, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1380, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1285, \"group\": [893.0, 328.0, 77.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30861_BALBc-1_X02_Y02_154_562\", \"ini\": 647, \"clust\": 2807, \"rank\": 1275, \"rankvar\": 478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2179, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1381, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2010, \"group\": [2808.0, 1189.0, 307.0, 82.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30899_BALBc-1_X02_Y02_155_136\", \"ini\": 646, \"clust\": 2657, \"rank\": 2560, \"rankvar\": 947, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2180, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 462, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1133, \"group\": [2656.0, 1117.0, 286.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30927_BALBc-1_X02_Y02_155_518\", \"ini\": 645, \"clust\": 1784, \"rank\": 1685, \"rankvar\": 388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2181, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1382, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1551, \"group\": [1786.0, 784.0, 208.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31105_BALBc-1_X02_Y02_157_714\", \"ini\": 644, \"clust\": 2736, \"rank\": 2261, \"rankvar\": 1762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2182, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1383, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1899, \"group\": [2739.0, 1165.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31639_BALBc-1_X02_Y02_164_25\", \"ini\": 643, \"clust\": 1206, \"rank\": 1285, \"rankvar\": 1082, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1384, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1286, \"group\": [1209.0, 435.0, 101.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31675_BALBc-1_X02_Y02_164_786\", \"ini\": 642, \"clust\": 1739, \"rank\": 2016, \"rankvar\": 1340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2184, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1385, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1287, \"group\": [1740.0, 759.0, 201.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31758_BALBc-1_X02_Y02_165_987\", \"ini\": 641, \"clust\": 2710, \"rank\": 2104, \"rankvar\": 2600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2185, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1386, \"cat-2\": \"Density: 18\", \"cat_2_index\": 102, \"group\": [2709.0, 1147.0, 296.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31767_BALBc-1_X02_Y02_166_176\", \"ini\": 640, \"clust\": 765, \"rank\": 755, \"rankvar\": 573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2186, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1387, \"cat-2\": \"Density: 22\", \"cat_2_index\": 314, \"group\": [766.0, 283.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31803_BALBc-1_X02_Y02_166_611\", \"ini\": 639, \"clust\": 1124, \"rank\": 1058, \"rankvar\": 405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2187, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 463, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1789, \"group\": [1129.0, 377.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31929_BALBc-1_X02_Y02_168_588\", \"ini\": 638, \"clust\": 2068, \"rank\": 1446, \"rankvar\": 777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2188, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1388, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1691, \"group\": [2070.0, 934.0, 251.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31935_BALBc-1_X02_Y02_168_629\", \"ini\": 637, \"clust\": 2771, \"rank\": 2454, \"rankvar\": 2549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2189, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1389, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1790, \"group\": [2769.0, 1174.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32146_BALBc-1_X02_Y02_170_52\", \"ini\": 636, \"clust\": 42, \"rank\": 1055, \"rankvar\": 2382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2190, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 714, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1430, \"group\": [42.0, 24.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32156_BALBc-1_X02_Y02_170_685\", \"ini\": 635, \"clust\": 557, \"rank\": 482, \"rankvar\": 74, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2191, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1390, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1791, \"group\": [559.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32358_BALBc-1_X02_Y02_173_739\", \"ini\": 634, \"clust\": 2698, \"rank\": 1694, \"rankvar\": 2640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2192, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1391, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1552, \"group\": [2699.0, 1144.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32397_BALBc-1_X02_Y02_174_285\", \"ini\": 633, \"clust\": 2009, \"rank\": 1830, \"rankvar\": 2748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2193, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 715, \"cat-2\": \"Density: 21\", \"cat_2_index\": 228, \"group\": [2010.0, 888.0, 231.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32509_BALBc-1_X02_Y02_175_663\", \"ini\": 632, \"clust\": 2700, \"rank\": 659, \"rankvar\": 2547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2194, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1392, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1792, \"group\": [2702.0, 1144.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32671_BALBc-1_X02_Y02_177_97\", \"ini\": 631, \"clust\": 2804, \"rank\": 2358, \"rankvar\": 2318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2195, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 716, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1431, \"group\": [2801.0, 1183.0, 304.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32767_BALBc-1_X02_Y02_179_372\", \"ini\": 630, \"clust\": 281, \"rank\": 857, \"rankvar\": 1508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2196, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2665, \"cat-2\": \"Density: 23\", \"cat_2_index\": 429, \"group\": [281.0, 178.0, 52.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32865_BALBc-1_X02_Y02_18_566\", \"ini\": 629, \"clust\": 2723, \"rank\": 1533, \"rankvar\": 1577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2197, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1393, \"cat-2\": \"Density: 24\", \"cat_2_index\": 551, \"group\": [2724.0, 1154.0, 299.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32892_BALBc-1_X02_Y02_18_931\", \"ini\": 628, \"clust\": 184, \"rank\": 965, \"rankvar\": 900, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2198, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1394, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1288, \"group\": [185.0, 123.0, 40.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33131_BALBc-1_X02_Y02_183_257\", \"ini\": 627, \"clust\": 13, \"rank\": 930, \"rankvar\": 1655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2199, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1395, \"cat-2\": \"Density: 20\", \"cat_2_index\": 177, \"group\": [15.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33364_BALBc-1_X02_Y02_186_477\", \"ini\": 626, \"clust\": 894, \"rank\": 1007, \"rankvar\": 21, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2200, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 861, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1432, \"group\": [894.0, 328.0, 77.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33643_BALBc-1_X02_Y02_19_416\", \"ini\": 625, \"clust\": 2724, \"rank\": 1836, \"rankvar\": 2434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2201, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 862, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2111, \"group\": [2725.0, 1155.0, 299.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33747_BALBc-1_X02_Y02_190_764\", \"ini\": 624, \"clust\": 1740, \"rank\": 2144, \"rankvar\": 1025, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2202, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1396, \"cat-2\": \"Density: 27\", \"cat_2_index\": 981, \"group\": [1741.0, 759.0, 201.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33886_BALBc-1_X02_Y02_192_590\", \"ini\": 623, \"clust\": 288, \"rank\": 719, \"rankvar\": 1790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2203, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2666, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2112, \"group\": [288.0, 182.0, 53.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34093_BALBc-1_X02_Y02_195_549\", \"ini\": 622, \"clust\": 2017, \"rank\": 2382, \"rankvar\": 2373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2204, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1397, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1289, \"group\": [2017.0, 894.0, 234.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34272_BALBc-1_X02_Y02_197_884\", \"ini\": 621, \"clust\": 1814, \"rank\": 2714, \"rankvar\": 2707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2205, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 629, \"cat-2\": \"Density: 27\", \"cat_2_index\": 982, \"group\": [1814.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34519_BALBc-1_X02_Y02_200_308\", \"ini\": 620, \"clust\": 239, \"rank\": 987, \"rankvar\": 710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2206, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2667, \"cat-2\": \"Density: 25\", \"cat_2_index\": 686, \"group\": [239.0, 150.0, 45.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34660_BALBc-1_X02_Y02_202_393\", \"ini\": 619, \"clust\": 1906, \"rank\": 1625, \"rankvar\": 1011, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2207, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2668, \"cat-2\": \"Density: 25\", \"cat_2_index\": 687, \"group\": [1906.0, 816.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34801_BALBc-1_X02_Y02_203_987\", \"ini\": 618, \"clust\": 1756, \"rank\": 2403, \"rankvar\": 2046, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2208, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1398, \"cat-2\": \"Density: 17\", \"cat_2_index\": 83, \"group\": [1757.0, 765.0, 203.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34909_BALBc-1_X02_Y02_205_632\", \"ini\": 617, \"clust\": 1897, \"rank\": 2496, \"rankvar\": 2825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2209, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1399, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2011, \"group\": [1898.0, 814.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34936_BALBc-1_X02_Y02_205_931\", \"ini\": 616, \"clust\": 2791, \"rank\": 2713, \"rankvar\": 2668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2210, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1400, \"cat-2\": \"Density: 26\", \"cat_2_index\": 831, \"group\": [2791.0, 1178.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35064_BALBc-1_X02_Y02_207_701\", \"ini\": 615, \"clust\": 2594, \"rank\": 1606, \"rankvar\": 1211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2211, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1401, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1692, \"group\": [2594.0, 1090.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35117_BALBc-1_X02_Y02_208_445\", \"ini\": 614, \"clust\": 1037, \"rank\": 693, \"rankvar\": 282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2212, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2669, \"cat-2\": \"Density: 26\", \"cat_2_index\": 832, \"group\": [1041.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35215_BALBc-1_X02_Y02_209_729\", \"ini\": 613, \"clust\": 1629, \"rank\": 1231, \"rankvar\": 785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2213, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1752, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1134, \"group\": [1630.0, 664.0, 165.0, 40.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35344_BALBc-1_X02_Y02_210_512\", \"ini\": 612, \"clust\": 289, \"rank\": 1107, \"rankvar\": 2327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2214, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2670, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1135, \"group\": [289.0, 182.0, 53.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35379_BALBc-1_X02_Y02_211_205\", \"ini\": 611, \"clust\": 252, \"rank\": 904, \"rankvar\": 149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2215, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1402, \"cat-2\": \"Density: 22\", \"cat_2_index\": 315, \"group\": [252.0, 158.0, 47.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35409_BALBc-1_X02_Y02_211_663\", \"ini\": 610, \"clust\": 2682, \"rank\": 845, \"rankvar\": 1538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2216, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1403, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1553, \"group\": [2682.0, 1139.0, 293.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35439_BALBc-1_X02_Y02_212_134\", \"ini\": 609, \"clust\": 851, \"rank\": 624, \"rankvar\": 1742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2217, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1404, \"cat-2\": \"Density: 27\", \"cat_2_index\": 983, \"group\": [852.0, 308.0, 71.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35525_BALBc-1_X02_Y02_213_248\", \"ini\": 608, \"clust\": 2129, \"rank\": 1314, \"rankvar\": 994, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2218, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1405, \"cat-2\": \"Density: 22\", \"cat_2_index\": 316, \"group\": [2130.0, 965.0, 257.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35690_BALBc-1_X02_Y02_215_161\", \"ini\": 607, \"clust\": 1691, \"rank\": 1081, \"rankvar\": 2281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2219, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1406, \"cat-2\": \"Density: 19\", \"cat_2_index\": 129, \"group\": [1691.0, 714.0, 182.0, 47.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36203_BALBc-1_X02_Y02_221_61\", \"ini\": 606, \"clust\": 309, \"rank\": 429, \"rankvar\": 1847, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2220, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 717, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1433, \"group\": [308.0, 195.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36421_BALBc-1_X02_Y02_224_50\", \"ini\": 605, \"clust\": 1201, \"rank\": 1071, \"rankvar\": 1948, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2221, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2325, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1434, \"group\": [1201.0, 430.0, 99.0, 23.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36428_BALBc-1_X02_Y02_224_564\", \"ini\": 604, \"clust\": 2048, \"rank\": 1209, \"rankvar\": 716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2222, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2671, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1435, \"group\": [2048.0, 917.0, 241.0, 66.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36602_BALBc-1_X02_Y02_226_849\", \"ini\": 603, \"clust\": 1809, \"rank\": 2557, \"rankvar\": 2659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2223, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1407, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1136, \"group\": [1809.0, 792.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36662_BALBc-1_X02_Y02_227_672\", \"ini\": 602, \"clust\": 1939, \"rank\": 1972, \"rankvar\": 1709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2224, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1753, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1436, \"group\": [1939.0, 831.0, 213.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37114_BALBc-1_X02_Y02_232_789\", \"ini\": 601, \"clust\": 2233, \"rank\": 2196, \"rankvar\": 2055, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2225, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1408, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1137, \"group\": [2234.0, 1022.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37225_BALBc-1_X02_Y02_234_543\", \"ini\": 600, \"clust\": 1920, \"rank\": 2319, \"rankvar\": 2552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2226, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 464, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1138, \"group\": [1918.0, 821.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37303_BALBc-1_X02_Y02_235_622\", \"ini\": 599, \"clust\": 1950, \"rank\": 1280, \"rankvar\": 615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2227, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2672, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1437, \"group\": [1951.0, 842.0, 216.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37334_BALBc-1_X02_Y02_236_115\", \"ini\": 598, \"clust\": 338, \"rank\": 674, \"rankvar\": 1621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2228, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1409, \"cat-2\": \"Density: 27\", \"cat_2_index\": 984, \"group\": [339.0, 213.0, 61.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37540_BALBc-1_X02_Y02_238_897\", \"ini\": 597, \"clust\": 1815, \"rank\": 2756, \"rankvar\": 2576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2229, \"cat-1\": \"Neighbor: CD3(+) other markers (-)\", \"cat_1_index\": 948, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1793, \"group\": [1815.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37573_BALBc-1_X02_Y02_239_298\", \"ini\": 596, \"clust\": 1084, \"rank\": 742, \"rankvar\": 1041, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2230, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 718, \"cat-2\": \"Density: 24\", \"cat_2_index\": 552, \"group\": [1087.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37791_BALBc-1_X02_Y02_241_389\", \"ini\": 595, \"clust\": 1733, \"rank\": 1220, \"rankvar\": 1024, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2231, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2673, \"cat-2\": \"Density: 22\", \"cat_2_index\": 317, \"group\": [1734.0, 753.0, 199.0, 54.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37827_BALBc-1_X02_Y02_242_102\", \"ini\": 594, \"clust\": 307, \"rank\": 258, \"rankvar\": 1541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2232, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1410, \"cat-2\": \"Density: 27\", \"cat_2_index\": 985, \"group\": [309.0, 195.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37931_BALBc-1_X02_Y02_243_508\", \"ini\": 593, \"clust\": 750, \"rank\": 440, \"rankvar\": 3, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2233, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1411, \"cat-2\": \"Density: 26\", \"cat_2_index\": 833, \"group\": [752.0, 279.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38145_BALBc-1_X02_Y02_246_163\", \"ini\": 592, \"clust\": 1257, \"rank\": 1784, \"rankvar\": 464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2234, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1412, \"cat-2\": \"Density: 20\", \"cat_2_index\": 178, \"group\": [1258.0, 471.0, 115.0, 29.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38443_BALBc-1_X02_Y02_25_159\", \"ini\": 591, \"clust\": 11, \"rank\": 1323, \"rankvar\": 325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2235, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2674, \"cat-2\": \"Density: 20\", \"cat_2_index\": 179, \"group\": [17.0, 11.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38529_BALBc-1_X02_Y02_250_569\", \"ini\": 590, \"clust\": 170, \"rank\": 1079, \"rankvar\": 807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2236, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2675, \"cat-2\": \"Density: 26\", \"cat_2_index\": 834, \"group\": [171.0, 113.0, 35.0, 12.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38579_BALBc-1_X02_Y02_251_215\", \"ini\": 589, \"clust\": 93, \"rank\": 2528, \"rankvar\": 2210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2237, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1585, \"cat-2\": \"Density: 23\", \"cat_2_index\": 430, \"group\": [92.0, 48.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38688_BALBc-1_X02_Y02_252_435\", \"ini\": 588, \"clust\": 1865, \"rank\": 2475, \"rankvar\": 2819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2238, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2676, \"cat-2\": \"Density: 22\", \"cat_2_index\": 318, \"group\": [1866.0, 801.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38696_BALBc-1_X02_Y02_252_541\", \"ini\": 587, \"clust\": 2021, \"rank\": 1813, \"rankvar\": 1209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2239, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 927, \"cat-2\": \"Density: 26\", \"cat_2_index\": 835, \"group\": [2022.0, 898.0, 235.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38727_BALBc-1_X02_Y02_252_932\", \"ini\": 586, \"clust\": 1965, \"rank\": 1187, \"rankvar\": 939, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2240, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1413, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1554, \"group\": [1965.0, 850.0, 218.0, 58.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38830_BALBc-1_X02_Y02_254_340\", \"ini\": 585, \"clust\": 366, \"rank\": 591, \"rankvar\": 809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2241, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2677, \"cat-2\": \"Density: 26\", \"cat_2_index\": 836, \"group\": [367.0, 225.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38872_BALBc-1_X02_Y02_254_893\", \"ini\": 584, \"clust\": 1810, \"rank\": 2542, \"rankvar\": 2265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2242, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1414, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1555, \"group\": [1810.0, 792.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38912_BALBc-1_X02_Y02_255_475\", \"ini\": 583, \"clust\": 1961, \"rank\": 1587, \"rankvar\": 1167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2243, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1415, \"cat-2\": \"Density: 25\", \"cat_2_index\": 688, \"group\": [1960.0, 845.0, 216.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39046_BALBc-1_X02_Y02_257_270\", \"ini\": 582, \"clust\": 190, \"rank\": 723, \"rankvar\": 771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2244, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 719, \"cat-2\": \"Density: 21\", \"cat_2_index\": 229, \"group\": [193.0, 127.0, 42.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39285_BALBc-1_X02_Y02_26_589\", \"ini\": 581, \"clust\": 1117, \"rank\": 485, \"rankvar\": 476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2245, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1416, \"cat-2\": \"Density: 27\", \"cat_2_index\": 986, \"group\": [1118.0, 372.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39521_BALBc-1_X02_Y02_262_59\", \"ini\": 580, \"clust\": 1479, \"rank\": 2228, \"rankvar\": 2099, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2246, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1417, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1556, \"group\": [1482.0, 579.0, 143.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39680_BALBc-1_X02_Y02_264_831\", \"ini\": 579, \"clust\": 2029, \"rank\": 2266, \"rankvar\": 1801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2247, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1418, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1139, \"group\": [2031.0, 903.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39683_BALBc-1_X02_Y02_264_853\", \"ini\": 578, \"clust\": 214, \"rank\": 1060, \"rankvar\": 1766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2248, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1419, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1557, \"group\": [214.0, 138.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39823_BALBc-1_X02_Y02_266_650\", \"ini\": 577, \"clust\": 1792, \"rank\": 2545, \"rankvar\": 2094, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2249, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2678, \"cat-2\": \"Density: 27\", \"cat_2_index\": 987, \"group\": [1794.0, 788.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40170_BALBc-1_X02_Y02_270_307\", \"ini\": 576, \"clust\": 2206, \"rank\": 1868, \"rankvar\": 938, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2250, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 465, \"cat-2\": \"Density: 22\", \"cat_2_index\": 319, \"group\": [2210.0, 1016.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40172_BALBc-1_X02_Y02_270_325\", \"ini\": 575, \"clust\": 186, \"rank\": 1171, \"rankvar\": 1583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2251, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2679, \"cat-2\": \"Density: 22\", \"cat_2_index\": 320, \"group\": [187.0, 125.0, 41.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40222_BALBc-1_X02_Y02_270_961\", \"ini\": 574, \"clust\": 2672, \"rank\": 1626, \"rankvar\": 1385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2252, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2326, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1140, \"group\": [2673.0, 1132.0, 290.0, 79.0, 17.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40524_BALBc-1_X02_Y02_275_413\", \"ini\": 573, \"clust\": 1597, \"rank\": 722, \"rankvar\": 1138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2253, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2680, \"cat-2\": \"Density: 19\", \"cat_2_index\": 130, \"group\": [1598.0, 640.0, 156.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40563_BALBc-1_X02_Y02_275_847\", \"ini\": 572, \"clust\": 570, \"rank\": 65, \"rankvar\": 707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2254, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 466, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1290, \"group\": [569.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40879_BALBc-1_X02_Y02_28_120\", \"ini\": 571, \"clust\": 220, \"rank\": 493, \"rankvar\": 1411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2255, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2681, \"cat-2\": \"Density: 21\", \"cat_2_index\": 230, \"group\": [219.0, 140.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41079_BALBc-1_X02_Y02_281_863\", \"ini\": 570, \"clust\": 2115, \"rank\": 1516, \"rankvar\": 1972, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2256, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1420, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1438, \"group\": [2114.0, 956.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41088_BALBc-1_X02_Y02_281_933\", \"ini\": 569, \"clust\": 165, \"rank\": 1104, \"rankvar\": 656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2257, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2327, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2012, \"group\": [165.0, 108.0, 32.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41109_BALBc-1_X02_Y02_282_19\", \"ini\": 568, \"clust\": 194, \"rank\": 770, \"rankvar\": 737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2258, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1421, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1291, \"group\": [194.0, 128.0, 42.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41853_BALBc-1_X02_Y02_291_291\", \"ini\": 567, \"clust\": 2640, \"rank\": 1923, \"rankvar\": 586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2259, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1669, \"cat-2\": \"Density: 21\", \"cat_2_index\": 231, \"group\": [2643.0, 1106.0, 284.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41921_BALBc-1_X02_Y02_292_234\", \"ini\": 566, \"clust\": 1676, \"rank\": 781, \"rankvar\": 331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2260, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2682, \"cat-2\": \"Density: 26\", \"cat_2_index\": 837, \"group\": [1675.0, 701.0, 178.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41969_BALBc-1_X02_Y02_292_826\", \"ini\": 565, \"clust\": 2820, \"rank\": 1790, \"rankvar\": 1599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2261, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1422, \"cat-2\": \"Density: 27\", \"cat_2_index\": 988, \"group\": [2820.0, 1199.0, 310.0, 83.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42255_BALBc-1_X02_Y02_296_91\", \"ini\": 564, \"clust\": 198, \"rank\": 201, \"rankvar\": 1642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2262, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1423, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1439, \"group\": [196.0, 129.0, 42.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42361_BALBc-1_X02_Y02_298_51\", \"ini\": 563, \"clust\": 2131, \"rank\": 1356, \"rankvar\": 696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2263, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1553, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1440, \"group\": [2133.0, 966.0, 258.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42376_BALBc-1_X02_Y02_298_688\", \"ini\": 562, \"clust\": 2630, \"rank\": 2350, \"rankvar\": 2027, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2264, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1754, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1292, \"group\": [2631.0, 1098.0, 282.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42549_BALBc-1_X02_Y02_30_717\", \"ini\": 561, \"clust\": 2762, \"rank\": 2206, \"rankvar\": 2732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2265, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1424, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1558, \"group\": [2761.0, 1172.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42623_BALBc-1_X02_Y02_300_742\", \"ini\": 560, \"clust\": 1812, \"rank\": 2432, \"rankvar\": 2290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2266, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1755, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1293, \"group\": [1813.0, 793.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42724_BALBc-1_X02_Y02_301_912\", \"ini\": 559, \"clust\": 758, \"rank\": 150, \"rankvar\": 305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2267, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1425, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2013, \"group\": [758.0, 280.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43016_BALBc-1_X02_Y02_305_789\", \"ini\": 558, \"clust\": 2757, \"rank\": 2425, \"rankvar\": 2663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2268, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2683, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1141, \"group\": [2755.0, 1171.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43073_BALBc-1_X02_Y02_306_759\", \"ini\": 557, \"clust\": 868, \"rank\": 619, \"rankvar\": 1400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2269, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2684, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1142, \"group\": [867.0, 314.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43104_BALBc-1_X02_Y02_307_25\", \"ini\": 556, \"clust\": 493, \"rank\": 780, \"rankvar\": 12, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2270, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2461, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1559, \"group\": [498.0, 268.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43260_BALBc-1_X02_Y02_309_581\", \"ini\": 555, \"clust\": 1861, \"rank\": 2663, \"rankvar\": 2415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2271, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2685, \"cat-2\": \"Density: 23\", \"cat_2_index\": 431, \"group\": [1865.0, 800.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43563_BALBc-1_X02_Y02_312_481\", \"ini\": 554, \"clust\": 1767, \"rank\": 1121, \"rankvar\": 1638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2272, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2686, \"cat-2\": \"Density: 23\", \"cat_2_index\": 432, \"group\": [1768.0, 772.0, 204.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43574_BALBc-1_X02_Y02_312_648\", \"ini\": 553, \"clust\": 1791, \"rank\": 2680, \"rankvar\": 2329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2273, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2687, \"cat-2\": \"Density: 25\", \"cat_2_index\": 689, \"group\": [1795.0, 788.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43750_BALBc-1_X02_Y02_315_261\", \"ini\": 552, \"clust\": 162, \"rank\": 1567, \"rankvar\": 558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2274, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1670, \"cat-2\": \"Density: 25\", \"cat_2_index\": 690, \"group\": [162.0, 105.0, 30.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43996_BALBc-1_X02_Y02_318_328\", \"ini\": 551, \"clust\": 2169, \"rank\": 1843, \"rankvar\": 792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2275, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2688, \"cat-2\": \"Density: 25\", \"cat_2_index\": 691, \"group\": [2170.0, 987.0, 260.0, 71.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44586_BALBc-1_X02_Y02_324_940\", \"ini\": 550, \"clust\": 425, \"rank\": 379, \"rankvar\": 1429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2276, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2328, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1794, \"group\": [425.0, 246.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44663_BALBc-1_X02_Y02_326_112\", \"ini\": 549, \"clust\": 2148, \"rank\": 1367, \"rankvar\": 1548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2277, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1426, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1294, \"group\": [2147.0, 975.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44734_BALBc-1_X02_Y02_326_893\", \"ini\": 548, \"clust\": 723, \"rank\": 37, \"rankvar\": 124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2278, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1427, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2193, \"group\": [723.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44795_BALBc-1_X02_Y02_327_686\", \"ini\": 547, \"clust\": 2717, \"rank\": 1717, \"rankvar\": 1861, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2279, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2689, \"cat-2\": \"Density: 26\", \"cat_2_index\": 838, \"group\": [2718.0, 1150.0, 297.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44797_BALBc-1_X02_Y02_327_702\", \"ini\": 546, \"clust\": 1653, \"rank\": 1488, \"rankvar\": 323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2280, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2690, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1295, \"group\": [1657.0, 688.0, 175.0, 43.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44833_BALBc-1_X02_Y02_328_182\", \"ini\": 545, \"clust\": 2805, \"rank\": 2470, \"rankvar\": 2665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2281, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1586, \"cat-2\": \"Density: 25\", \"cat_2_index\": 692, \"group\": [2802.0, 1183.0, 304.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44890_BALBc-1_X02_Y02_328_742\", \"ini\": 544, \"clust\": 2175, \"rank\": 1954, \"rankvar\": 1669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2282, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1428, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1693, \"group\": [2174.0, 990.0, 262.0, 72.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45097_BALBc-1_X02_Y02_330_51\", \"ini\": 543, \"clust\": 2054, \"rank\": 1536, \"rankvar\": 966, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2283, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2462, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1143, \"group\": [2052.0, 920.0, 242.0, 67.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45134_BALBc-1_X02_Y02_330_922\", \"ini\": 542, \"clust\": 240, \"rank\": 1016, \"rankvar\": 377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2284, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1429, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2273, \"group\": [243.0, 152.0, 46.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45153_BALBc-1_X02_Y02_331_217\", \"ini\": 541, \"clust\": 451, \"rank\": 406, \"rankvar\": 503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2285, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1587, \"cat-2\": \"Density: 22\", \"cat_2_index\": 321, \"group\": [450.0, 258.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45435_BALBc-1_X02_Y02_334_951\", \"ini\": 540, \"clust\": 498, \"rank\": 403, \"rankvar\": 1418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2286, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2329, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1795, \"group\": [765.0, 282.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45581_BALBc-1_X02_Y02_336_819\", \"ini\": 539, \"clust\": 1751, \"rank\": 2480, \"rankvar\": 1928, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2287, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 467, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1560, \"group\": [1751.0, 761.0, 202.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45601_BALBc-1_X02_Y02_337_15\", \"ini\": 538, \"clust\": 171, \"rank\": 1354, \"rankvar\": 680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2288, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1554, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1796, \"group\": [174.0, 115.0, 36.0, 13.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45622_BALBc-1_X02_Y02_337_558\", \"ini\": 537, \"clust\": 290, \"rank\": 367, \"rankvar\": 1376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2289, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2691, \"cat-2\": \"Density: 22\", \"cat_2_index\": 322, \"group\": [290.0, 183.0, 53.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45630_BALBc-1_X02_Y02_337_608\", \"ini\": 536, \"clust\": 2641, \"rank\": 1944, \"rankvar\": 1930, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2290, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1430, \"cat-2\": \"Density: 25\", \"cat_2_index\": 693, \"group\": [2641.0, 1105.0, 284.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45716_BALBc-1_X02_Y02_338_787\", \"ini\": 535, \"clust\": 2752, \"rank\": 2053, \"rankvar\": 2714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2291, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1431, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1694, \"group\": [2754.0, 1170.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45734_BALBc-1_X02_Y02_338_973\", \"ini\": 534, \"clust\": 2055, \"rank\": 1199, \"rankvar\": 2369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2292, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2330, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1296, \"group\": [2058.0, 926.0, 247.0, 68.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46044_BALBc-1_X02_Y02_342_196\", \"ini\": 533, \"clust\": 57, \"rank\": 943, \"rankvar\": 2578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2293, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1756, \"cat-2\": \"Density: 23\", \"cat_2_index\": 433, \"group\": [56.0, 26.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46376_BALBc-1_X02_Y02_346_38\", \"ini\": 532, \"clust\": 627, \"rank\": 19, \"rankvar\": 578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2294, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1671, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1695, \"group\": [625.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46496_BALBc-1_X02_Y02_347_862\", \"ini\": 531, \"clust\": 1745, \"rank\": 2823, \"rankvar\": 2793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2295, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1432, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2113, \"group\": [1744.0, 761.0, 202.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46558_BALBc-1_X02_Y02_348_812\", \"ini\": 530, \"clust\": 275, \"rank\": 1028, \"rankvar\": 189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2296, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 468, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1797, \"group\": [279.0, 177.0, 52.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46798_BALBc-1_X02_Y02_350_899\", \"ini\": 529, \"clust\": 1103, \"rank\": 461, \"rankvar\": 1057, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2297, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1433, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2194, \"group\": [1103.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46832_BALBc-1_X02_Y02_351_395\", \"ini\": 528, \"clust\": 967, \"rank\": 413, \"rankvar\": 1310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2298, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2692, \"cat-2\": \"Density: 18\", \"cat_2_index\": 103, \"group\": [968.0, 351.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47131_BALBc-1_X02_Y02_355_343\", \"ini\": 527, \"clust\": 2041, \"rank\": 1871, \"rankvar\": 397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2299, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1672, \"cat-2\": \"Density: 18\", \"cat_2_index\": 104, \"group\": [2047.0, 916.0, 240.0, 65.0, 15.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47280_BALBc-1_X02_Y02_357_240\", \"ini\": 526, \"clust\": 1949, \"rank\": 1646, \"rankvar\": 288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2300, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 469, \"cat-2\": \"Density: 23\", \"cat_2_index\": 434, \"group\": [1949.0, 840.0, 215.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47378_BALBc-1_X02_Y02_358_713\", \"ini\": 525, \"clust\": 428, \"rank\": 568, \"rankvar\": 350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2301, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1434, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2014, \"group\": [427.0, 248.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47461_BALBc-1_X02_Y02_359_961\", \"ini\": 524, \"clust\": 2642, \"rank\": 1924, \"rankvar\": 2021, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2302, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1985, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1798, \"group\": [2642.0, 1105.0, 284.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47870_BALBc-1_X02_Y02_364_646\", \"ini\": 523, \"clust\": 1910, \"rank\": 1750, \"rankvar\": 2738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2303, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 470, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1441, \"group\": [1911.0, 819.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47876_BALBc-1_X02_Y02_364_679\", \"ini\": 522, \"clust\": 2075, \"rank\": 1362, \"rankvar\": 435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2304, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2693, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1900, \"group\": [2075.0, 939.0, 252.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47961_BALBc-1_X02_Y02_365_605\", \"ini\": 521, \"clust\": 1904, \"rank\": 1989, \"rankvar\": 1911, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2305, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2694, \"cat-2\": \"Density: 26\", \"cat_2_index\": 839, \"group\": [1907.0, 817.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48010_BALBc-1_X02_Y02_366_148\", \"ini\": 520, \"clust\": 2760, \"rank\": 2190, \"rankvar\": 2682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2306, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1435, \"cat-2\": \"Density: 25\", \"cat_2_index\": 694, \"group\": [2760.0, 1172.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48086_BALBc-1_X02_Y02_367_266\", \"ini\": 519, \"clust\": 102, \"rank\": 2197, \"rankvar\": 2440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2307, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1673, \"cat-2\": \"Density: 21\", \"cat_2_index\": 232, \"group\": [102.0, 55.0, 12.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48310_BALBc-1_X02_Y02_369_971\", \"ini\": 518, \"clust\": 139, \"rank\": 1125, \"rankvar\": 1389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2308, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2331, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1297, \"group\": [141.0, 89.0, 23.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48337_BALBc-1_X02_Y02_37_334\", \"ini\": 517, \"clust\": 2719, \"rank\": 2245, \"rankvar\": 1777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2309, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2695, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1298, \"group\": [2719.0, 1151.0, 298.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48352_BALBc-1_X02_Y02_37_533\", \"ini\": 516, \"clust\": 1783, \"rank\": 1795, \"rankvar\": 1168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2310, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1436, \"cat-2\": \"Density: 27\", \"cat_2_index\": 989, \"group\": [1787.0, 785.0, 209.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48474_BALBc-1_X02_Y02_371_45\", \"ini\": 515, \"clust\": 2653, \"rank\": 2123, \"rankvar\": 1224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2311, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1674, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1799, \"group\": [2654.0, 1115.0, 286.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48542_BALBc-1_X02_Y02_372_378\", \"ini\": 514, \"clust\": 126, \"rank\": 1200, \"rankvar\": 2321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2312, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2696, \"cat-2\": \"Density: 16\", \"cat_2_index\": 63, \"group\": [125.0, 76.0, 19.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48653_BALBc-1_X02_Y02_373_710\", \"ini\": 513, \"clust\": 2127, \"rank\": 1571, \"rankvar\": 751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2313, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1437, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2114, \"group\": [2128.0, 963.0, 256.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48742_BALBc-1_X02_Y02_374_766\", \"ini\": 512, \"clust\": 2084, \"rank\": 1552, \"rankvar\": 941, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2314, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1438, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2274, \"group\": [2085.0, 944.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48757_BALBc-1_X02_Y02_375_1002\", \"ini\": 511, \"clust\": 1158, \"rank\": 821, \"rankvar\": 1884, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2315, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1439, \"cat-2\": \"Density: 23\", \"cat_2_index\": 435, \"group\": [1157.0, 392.0, 84.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48766_BALBc-1_X02_Y02_375_206\", \"ini\": 510, \"clust\": 110, \"rank\": 2290, \"rankvar\": 2574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2316, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1757, \"cat-2\": \"Density: 25\", \"cat_2_index\": 695, \"group\": [109.0, 62.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49046_BALBc-1_X02_Y02_378_827\", \"ini\": 509, \"clust\": 1934, \"rank\": 1781, \"rankvar\": 2096, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2317, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1440, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2115, \"group\": [1935.0, 829.0, 213.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49131_BALBc-1_X02_Y02_379_932\", \"ini\": 508, \"clust\": 2735, \"rank\": 1984, \"rankvar\": 1255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2318, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1441, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2015, \"group\": [2746.0, 1169.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49273_BALBc-1_X02_Y02_380_907\", \"ini\": 507, \"clust\": 2706, \"rank\": 1601, \"rankvar\": 1836, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2319, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1442, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2275, \"group\": [2707.0, 1146.0, 296.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49542_BALBc-1_X02_Y02_384_270\", \"ini\": 506, \"clust\": 2209, \"rank\": 2342, \"rankvar\": 2503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2320, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 720, \"cat-2\": \"Density: 21\", \"cat_2_index\": 233, \"group\": [2208.0, 1015.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49696_BALBc-1_X02_Y02_386_104\", \"ini\": 505, \"clust\": 1289, \"rank\": 2483, \"rankvar\": 1700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2321, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 721, \"cat-2\": \"Density: 26\", \"cat_2_index\": 840, \"group\": [1289.0, 490.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49859_BALBc-1_X02_Y02_387_719\", \"ini\": 504, \"clust\": 2566, \"rank\": 2116, \"rankvar\": 1574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2322, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1443, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2276, \"group\": [2565.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49926_BALBc-1_X02_Y02_388_683\", \"ini\": 503, \"clust\": 1953, \"rank\": 1579, \"rankvar\": 1891, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2323, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 471, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2116, \"group\": [1954.0, 844.0, 216.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49970_BALBc-1_X02_Y02_389_234\", \"ini\": 502, \"clust\": 920, \"rank\": 919, \"rankvar\": 498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2324, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 722, \"cat-2\": \"Density: 24\", \"cat_2_index\": 553, \"group\": [952.0, 344.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50081_BALBc-1_X02_Y02_39_906\", \"ini\": 501, \"clust\": 680, \"rank\": 110, \"rankvar\": 407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2325, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1444, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1561, \"group\": [679.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50288_BALBc-1_X02_Y02_392_752\", \"ini\": 500, \"clust\": 390, \"rank\": 749, \"rankvar\": 64, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2326, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1445, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2409, \"group\": [393.0, 235.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50373_BALBc-1_X02_Y02_393_952\", \"ini\": 499, \"clust\": 584, \"rank\": 417, \"rankvar\": 61, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2327, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 472, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1901, \"group\": [601.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50545_BALBc-1_X02_Y02_396_299\", \"ini\": 498, \"clust\": 1149, \"rank\": 754, \"rankvar\": 988, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2328, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1675, \"cat-2\": \"Density: 21\", \"cat_2_index\": 234, \"group\": [1152.0, 388.0, 82.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50577_BALBc-1_X02_Y02_396_66\", \"ini\": 497, \"clust\": 480, \"rank\": 87, \"rankvar\": 1962, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2329, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2463, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1562, \"group\": [485.0, 265.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50639_BALBc-1_X02_Y02_397_506\", \"ini\": 496, \"clust\": 1823, \"rank\": 2737, \"rankvar\": 2459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2330, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2697, \"cat-2\": \"Density: 20\", \"cat_2_index\": 180, \"group\": [1826.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50667_BALBc-1_X02_Y02_397_837\", \"ini\": 495, \"clust\": 2595, \"rank\": 1740, \"rankvar\": 1477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2331, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1446, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2117, \"group\": [2595.0, 1090.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50671_BALBc-1_X02_Y02_397_871\", \"ini\": 494, \"clust\": 249, \"rank\": 957, \"rankvar\": 1162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2332, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1447, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2016, \"group\": [250.0, 157.0, 47.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50773_BALBc-1_X02_Y02_399_185\", \"ini\": 493, \"clust\": 813, \"rank\": 448, \"rankvar\": 2095, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2333, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1758, \"cat-2\": \"Density: 26\", \"cat_2_index\": 841, \"group\": [813.0, 292.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50866_BALBc-1_X02_Y02_4_371\", \"ini\": 492, \"clust\": 2786, \"rank\": 2586, \"rankvar\": 2365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2334, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1676, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1563, \"group\": [2790.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51013_BALBc-1_X02_Y02_400_654\", \"ini\": 491, \"clust\": 1859, \"rank\": 2770, \"rankvar\": 2432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2335, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 473, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2118, \"group\": [1858.0, 800.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51178_BALBc-1_X02_Y02_402_800\", \"ini\": 490, \"clust\": 1830, \"rank\": 2688, \"rankvar\": 2423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2336, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 474, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2538, \"group\": [1828.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51223_BALBc-1_X02_Y02_403_448\", \"ini\": 489, \"clust\": 2167, \"rank\": 1731, \"rankvar\": 1173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2337, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 630, \"cat-2\": \"Density: 18\", \"cat_2_index\": 105, \"group\": [2168.0, 985.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51252_BALBc-1_X02_Y02_403_925\", \"ini\": 488, \"clust\": 1036, \"rank\": 441, \"rankvar\": 36, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2338, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 475, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2345, \"group\": [1034.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51314_BALBc-1_X02_Y02_404_700\", \"ini\": 487, \"clust\": 2727, \"rank\": 1807, \"rankvar\": 1433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2339, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1570, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2017, \"group\": [2727.0, 1156.0, 300.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51733_BALBc-1_X02_Y02_409_627\", \"ini\": 486, \"clust\": 1781, \"rank\": 1522, \"rankvar\": 1525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2340, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 476, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1800, \"group\": [1779.0, 780.0, 206.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51815_BALBc-1_X02_Y02_41_743\", \"ini\": 485, \"clust\": 1191, \"rank\": 590, \"rankvar\": 1528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2341, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1448, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1801, \"group\": [1191.0, 421.0, 96.0, 23.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51858_BALBc-1_X02_Y02_410_359\", \"ini\": 484, \"clust\": 1631, \"rank\": 1290, \"rankvar\": 802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2342, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 631, \"cat-2\": \"Density: 16\", \"cat_2_index\": 64, \"group\": [1632.0, 666.0, 166.0, 40.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51875_BALBc-1_X02_Y02_410_48\", \"ini\": 483, \"clust\": 108, \"rank\": 2235, \"rankvar\": 1052, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2343, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1677, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1564, \"group\": [108.0, 61.0, 14.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51967_BALBc-1_X02_Y02_411_743\", \"ini\": 482, \"clust\": 182, \"rank\": 1050, \"rankvar\": 136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2344, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1571, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2346, \"group\": [181.0, 120.0, 39.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52455_BALBc-1_X02_Y02_417_999\", \"ini\": 481, \"clust\": 940, \"rank\": 964, \"rankvar\": 1126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2345, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1449, \"cat-2\": \"Density: 22\", \"cat_2_index\": 323, \"group\": [935.0, 340.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52537_BALBc-1_X02_Y02_418_969\", \"ini\": 480, \"clust\": 173, \"rank\": 1590, \"rankvar\": 827, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2346, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1450, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1565, \"group\": [173.0, 114.0, 36.0, 13.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52561_BALBc-1_X02_Y02_419_278\", \"ini\": 479, \"clust\": 1775, \"rank\": 1901, \"rankvar\": 2235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2347, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 723, \"cat-2\": \"Density: 21\", \"cat_2_index\": 235, \"group\": [1778.0, 779.0, 206.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52608_BALBc-1_X02_Y02_419_84\", \"ini\": 478, \"clust\": 129, \"rank\": 1069, \"rankvar\": 907, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2348, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1451, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1802, \"group\": [130.0, 80.0, 20.0, 6.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52692_BALBc-1_X02_Y02_420_10\", \"ini\": 477, \"clust\": 270, \"rank\": 1461, \"rankvar\": 259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2349, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1452, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1696, \"group\": [271.0, 171.0, 50.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52698_BALBc-1_X02_Y02_420_121\", \"ini\": 476, \"clust\": 89, \"rank\": 1882, \"rankvar\": 2341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2350, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 724, \"cat-2\": \"Density: 27\", \"cat_2_index\": 990, \"group\": [89.0, 46.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52763_BALBc-1_X02_Y02_420_947\", \"ini\": 475, \"clust\": 429, \"rank\": 511, \"rankvar\": 697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2351, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 477, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1902, \"group\": [428.0, 248.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52982_BALBc-1_X02_Y02_423_748\", \"ini\": 474, \"clust\": 2635, \"rank\": 2087, \"rankvar\": 1191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2352, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 478, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2347, \"group\": [2635.0, 1101.0, 283.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53042_BALBc-1_X02_Y02_424_598\", \"ini\": 473, \"clust\": 1936, \"rank\": 2082, \"rankvar\": 2362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2353, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2698, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1299, \"group\": [1937.0, 830.0, 213.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53143_BALBc-1_X02_Y02_425_911\", \"ini\": 472, \"clust\": 2492, \"rank\": 1724, \"rankvar\": 1544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2354, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1453, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2493, \"group\": [2493.0, 1075.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53612_BALBc-1_X02_Y02_430_780\", \"ini\": 471, \"clust\": 1860, \"rank\": 2739, \"rankvar\": 1916, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2355, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 479, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2277, \"group\": [1859.0, 800.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53651_BALBc-1_X02_Y02_431_210\", \"ini\": 470, \"clust\": 2159, \"rank\": 1787, \"rankvar\": 949, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2356, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 725, \"cat-2\": \"Density: 27\", \"cat_2_index\": 991, \"group\": [2160.0, 982.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53748_BALBc-1_X02_Y02_432_458\", \"ini\": 469, \"clust\": 2026, \"rank\": 2362, \"rankvar\": 2584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2357, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2699, \"cat-2\": \"Density: 18\", \"cat_2_index\": 106, \"group\": [2025.0, 901.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53769_BALBc-1_X02_Y02_432_657\", \"ini\": 468, \"clust\": 2483, \"rank\": 1970, \"rankvar\": 1759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2358, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 480, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2018, \"group\": [2483.0, 1071.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53818_BALBc-1_X02_Y02_433_32\", \"ini\": 467, \"clust\": 1154, \"rank\": 1023, \"rankvar\": 675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2359, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 863, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1903, \"group\": [1154.0, 390.0, 83.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53861_BALBc-1_X02_Y02_433_832\", \"ini\": 466, \"clust\": 2170, \"rank\": 1580, \"rankvar\": 76, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2360, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2700, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2494, \"group\": [2176.0, 992.0, 263.0, 72.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53918_BALBc-1_X02_Y02_434_639\", \"ini\": 465, \"clust\": 2047, \"rank\": 1480, \"rankvar\": 1027, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2361, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 481, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1803, \"group\": [2050.0, 918.0, 241.0, 66.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53990_BALBc-1_X02_Y02_435_547\", \"ini\": 464, \"clust\": 1805, \"rank\": 2734, \"rankvar\": 2700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2362, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2701, \"cat-2\": \"Density: 24\", \"cat_2_index\": 554, \"group\": [1803.0, 791.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54076_BALBc-1_X02_Y02_436_716\", \"ini\": 463, \"clust\": 2567, \"rank\": 2167, \"rankvar\": 1363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2363, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1572, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2348, \"group\": [2566.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54081_BALBc-1_X02_Y02_436_770\", \"ini\": 462, \"clust\": 1942, \"rank\": 1337, \"rankvar\": 1522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2364, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 482, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2410, \"group\": [1945.0, 836.0, 214.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54253_BALBc-1_X02_Y02_438_736\", \"ini\": 461, \"clust\": 1165, \"rank\": 1191, \"rankvar\": 129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2365, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 483, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2349, \"group\": [1165.0, 399.0, 85.0, 19.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54323_BALBc-1_X02_Y02_439_680\", \"ini\": 460, \"clust\": 2046, \"rank\": 1723, \"rankvar\": 182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2366, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 484, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2278, \"group\": [2045.0, 914.0, 238.0, 64.0, 15.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54356_BALBc-1_X02_Y02_44_193\", \"ini\": 459, \"clust\": 1741, \"rank\": 1942, \"rankvar\": 1309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2367, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2702, \"cat-2\": \"Density: 21\", \"cat_2_index\": 236, \"group\": [1742.0, 760.0, 201.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54458_BALBc-1_X02_Y02_440_577\", \"ini\": 458, \"clust\": 1770, \"rank\": 1849, \"rankvar\": 2062, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2368, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2703, \"cat-2\": \"Density: 24\", \"cat_2_index\": 555, \"group\": [1771.0, 775.0, 206.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54556_BALBc-1_X02_Y02_441_892\", \"ini\": 457, \"clust\": 1850, \"rank\": 2793, \"rankvar\": 2263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2369, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1454, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2350, \"group\": [1854.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54798_BALBc-1_X02_Y02_444_961\", \"ini\": 456, \"clust\": 185, \"rank\": 1364, \"rankvar\": 628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2370, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1455, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1442, \"group\": [186.0, 124.0, 40.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54819_BALBc-1_X02_Y02_445_21\", \"ini\": 455, \"clust\": 2121, \"rank\": 1733, \"rankvar\": 1359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2371, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 485, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1904, \"group\": [2119.0, 960.0, 255.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54862_BALBc-1_X02_Y02_445_938\", \"ini\": 454, \"clust\": 2049, \"rank\": 1266, \"rankvar\": 238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2372, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 632, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2019, \"group\": [2049.0, 917.0, 241.0, 66.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55022_BALBc-1_X02_Y02_448_177\", \"ini\": 453, \"clust\": 548, \"rank\": 75, \"rankvar\": 472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2373, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1456, \"cat-2\": \"Density: 27\", \"cat_2_index\": 992, \"group\": [546.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55154_BALBc-1_X02_Y02_449_850\", \"ini\": 452, \"clust\": 2345, \"rank\": 2576, \"rankvar\": 1910, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2374, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2704, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2279, \"group\": [2345.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55263_BALBc-1_X02_Y02_450_401\", \"ini\": 451, \"clust\": 1964, \"rank\": 1416, \"rankvar\": 596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2375, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1457, \"cat-2\": \"Density: 18\", \"cat_2_index\": 107, \"group\": [1967.0, 852.0, 218.0, 58.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55369_BALBc-1_X02_Y02_451_799\", \"ini\": 450, \"clust\": 189, \"rank\": 605, \"rankvar\": 465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2376, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 486, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2280, \"group\": [190.0, 126.0, 41.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55395_BALBc-1_X02_Y02_452_153\", \"ini\": 449, \"clust\": 1710, \"rank\": 1382, \"rankvar\": 161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2377, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 726, \"cat-2\": \"Density: 25\", \"cat_2_index\": 696, \"group\": [1711.0, 734.0, 190.0, 51.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55452_BALBc-1_X02_Y02_452_751\", \"ini\": 448, \"clust\": 620, \"rank\": 18, \"rankvar\": 198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2378, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 487, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2281, \"group\": [617.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55453_BALBc-1_X02_Y02_452_762\", \"ini\": 447, \"clust\": 2522, \"rank\": 2071, \"rankvar\": 576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2379, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 488, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2411, \"group\": [2522.0, 1083.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55520_BALBc-1_X02_Y02_453_611\", \"ini\": 446, \"clust\": 821, \"rank\": 905, \"rankvar\": 1840, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2380, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 489, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1300, \"group\": [832.0, 297.0, 69.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55535_BALBc-1_X02_Y02_453_779\", \"ini\": 445, \"clust\": 2162, \"rank\": 1525, \"rankvar\": 1571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2381, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 490, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2351, \"group\": [2163.0, 983.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55769_BALBc-1_X02_Y02_456_717\", \"ini\": 444, \"clust\": 274, \"rank\": 1072, \"rankvar\": 493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2382, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 491, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2539, \"group\": [275.0, 175.0, 52.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55815_BALBc-1_X02_Y02_457_41\", \"ini\": 443, \"clust\": 1598, \"rank\": 1035, \"rankvar\": 2340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2383, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1986, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1697, \"group\": [1599.0, 641.0, 156.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55836_BALBc-1_X02_Y02_457_651\", \"ini\": 442, \"clust\": 278, \"rank\": 960, \"rankvar\": 1940, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2384, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 492, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1905, \"group\": [277.0, 176.0, 52.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55853_BALBc-1_X02_Y02_457_820\", \"ini\": 441, \"clust\": 864, \"rank\": 724, \"rankvar\": 426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2385, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 493, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2540, \"group\": [862.0, 312.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55927_BALBc-1_X02_Y02_458_893\", \"ini\": 440, \"clust\": 2690, \"rank\": 989, \"rankvar\": 2585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2386, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 633, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2412, \"group\": [2691.0, 1142.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56318_BALBc-1_X02_Y02_462_867\", \"ini\": 439, \"clust\": 2524, \"rank\": 2318, \"rankvar\": 1154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2387, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 634, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2495, \"group\": [2531.0, 1084.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56467_BALBc-1_X02_Y02_465_167\", \"ini\": 438, \"clust\": 511, \"rank\": 404, \"rankvar\": 581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2388, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 494, \"cat-2\": \"Density: 26\", \"cat_2_index\": 842, \"group\": [509.0, 272.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56525_BALBc-1_X02_Y02_465_852\", \"ini\": 437, \"clust\": 2287, \"rank\": 2710, \"rankvar\": 2312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2389, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 495, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2413, \"group\": [2290.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56552_BALBc-1_X02_Y02_466_269\", \"ini\": 436, \"clust\": 1761, \"rank\": 2707, \"rankvar\": 2597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2390, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1458, \"cat-2\": \"Density: 23\", \"cat_2_index\": 436, \"group\": [1762.0, 768.0, 203.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56674_BALBc-1_X02_Y02_467_624\", \"ini\": 435, \"clust\": 1742, \"rank\": 2625, \"rankvar\": 2614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2391, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 496, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1804, \"group\": [1743.0, 760.0, 201.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56705_BALBc-1_X02_Y02_467_999\", \"ini\": 434, \"clust\": 2768, \"rank\": 2437, \"rankvar\": 1822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2392, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1459, \"cat-2\": \"Density: 21\", \"cat_2_index\": 237, \"group\": [2771.0, 1175.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56787_BALBc-1_X02_Y02_469_24\", \"ini\": 433, \"clust\": 373, \"rank\": 603, \"rankvar\": 492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2393, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1460, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2119, \"group\": [374.0, 227.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56914_BALBc-1_X02_Y02_47_868\", \"ini\": 432, \"clust\": 2712, \"rank\": 1681, \"rankvar\": 2050, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2394, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1461, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1805, \"group\": [2712.0, 1147.0, 296.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57003_BALBc-1_X02_Y02_470_953\", \"ini\": 431, \"clust\": 145, \"rank\": 1597, \"rankvar\": 709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2395, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 635, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1443, \"group\": [142.0, 90.0, 24.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57113_BALBc-1_X02_Y02_472_681\", \"ini\": 430, \"clust\": 2523, \"rank\": 2336, \"rankvar\": 1036, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2396, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 497, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2352, \"group\": [2523.0, 1083.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57374_BALBc-1_X02_Y02_475_756\", \"ini\": 429, \"clust\": 667, \"rank\": 88, \"rankvar\": 448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2397, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 498, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2414, \"group\": [664.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57405_BALBc-1_X02_Y02_476_220\", \"ini\": 428, \"clust\": 1769, \"rank\": 1405, \"rankvar\": 542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2398, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2705, \"cat-2\": \"Density: 26\", \"cat_2_index\": 843, \"group\": [1770.0, 774.0, 205.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57527_BALBc-1_X02_Y02_477_735\", \"ini\": 427, \"clust\": 2778, \"rank\": 2303, \"rankvar\": 263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2399, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 499, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2496, \"group\": [2778.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57580_BALBc-1_X02_Y02_478_330\", \"ini\": 426, \"clust\": 1782, \"rank\": 1512, \"rankvar\": 1826, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2400, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1462, \"cat-2\": \"Density: 18\", \"cat_2_index\": 108, \"group\": [1780.0, 780.0, 206.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57688_BALBc-1_X02_Y02_479_626\", \"ini\": 425, \"clust\": 2811, \"rank\": 1396, \"rankvar\": 1520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2401, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 500, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1566, \"group\": [2812.0, 1192.0, 307.0, 82.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57711_BALBc-1_X02_Y02_48_105\", \"ini\": 424, \"clust\": 2142, \"rank\": 1574, \"rankvar\": 1231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2402, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2464, \"cat-2\": \"Density: 22\", \"cat_2_index\": 324, \"group\": [2143.0, 973.0, 258.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57920_BALBc-1_X02_Y02_481_785\", \"ini\": 423, \"clust\": 146, \"rank\": 1827, \"rankvar\": 1901, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2403, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 501, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2282, \"group\": [143.0, 90.0, 24.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58105_BALBc-1_X02_Y02_484_252\", \"ini\": 422, \"clust\": 254, \"rank\": 630, \"rankvar\": 491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2404, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1463, \"cat-2\": \"Density: 23\", \"cat_2_index\": 437, \"group\": [255.0, 159.0, 47.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58124_BALBc-1_X02_Y02_484_432\", \"ini\": 421, \"clust\": 1912, \"rank\": 1737, \"rankvar\": 2657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2405, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1464, \"cat-2\": \"Density: 20\", \"cat_2_index\": 181, \"group\": [1913.0, 819.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58170_BALBc-1_X02_Y02_484_987\", \"ini\": 420, \"clust\": 2587, \"rank\": 2205, \"rankvar\": 1039, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2406, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 502, \"cat-2\": \"Density: 24\", \"cat_2_index\": 556, \"group\": [2587.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58222_BALBc-1_X02_Y02_485_578\", \"ini\": 419, \"clust\": 1841, \"rank\": 2724, \"rankvar\": 2308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2407, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2706, \"cat-2\": \"Density: 27\", \"cat_2_index\": 993, \"group\": [1839.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58242_BALBc-1_X02_Y02_485_832\", \"ini\": 418, \"clust\": 2256, \"rank\": 2216, \"rankvar\": 1204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2408, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 503, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2415, \"group\": [2257.0, 1029.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58476_BALBc-1_X02_Y02_488_845\", \"ini\": 417, \"clust\": 1044, \"rank\": 471, \"rankvar\": 292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2409, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 504, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2353, \"group\": [1043.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58566_BALBc-1_X02_Y02_489_956\", \"ini\": 416, \"clust\": 2530, \"rank\": 2268, \"rankvar\": 1152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2410, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 636, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1567, \"group\": [2528.0, 1084.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58719_BALBc-1_X02_Y02_491_17\", \"ini\": 415, \"clust\": 1260, \"rank\": 1380, \"rankvar\": 775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2411, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1465, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2283, \"group\": [1260.0, 472.0, 116.0, 30.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58720_BALBc-1_X02_Y02_491_183\", \"ini\": 414, \"clust\": 774, \"rank\": 712, \"rankvar\": 1490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2412, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 505, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1444, \"group\": [779.0, 288.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58765_BALBc-1_X02_Y02_491_801\", \"ini\": 413, \"clust\": 2569, \"rank\": 2083, \"rankvar\": 1723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2413, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 506, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2497, \"group\": [2568.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58869_BALBc-1_X02_Y02_493_117\", \"ini\": 412, \"clust\": 1010, \"rank\": 782, \"rankvar\": 71, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2414, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1466, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1568, \"group\": [1016.0, 367.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58906_BALBc-1_X02_Y02_493_620\", \"ini\": 411, \"clust\": 2271, \"rank\": 2767, \"rankvar\": 2737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2415, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 507, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1698, \"group\": [2270.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58994_BALBc-1_X02_Y02_494_645\", \"ini\": 410, \"clust\": 2282, \"rank\": 2741, \"rankvar\": 2621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2416, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 508, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1806, \"group\": [2283.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59111_BALBc-1_X02_Y02_496_195\", \"ini\": 409, \"clust\": 568, \"rank\": 23, \"rankvar\": 1404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2417, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 727, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1144, \"group\": [565.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59190_BALBc-1_X02_Y02_496_937\", \"ini\": 408, \"clust\": 869, \"rank\": 799, \"rankvar\": 1086, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2418, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 637, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2020, \"group\": [871.0, 314.0, 72.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59361_BALBc-1_X02_Y02_499_164\", \"ini\": 407, \"clust\": 839, \"rank\": 837, \"rankvar\": 251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2419, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 728, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1569, \"group\": [841.0, 300.0, 70.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59627_BALBc-1_X02_Y02_501_380\", \"ini\": 406, \"clust\": 1983, \"rank\": 1840, \"rankvar\": 1814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2420, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1467, \"cat-2\": \"Density: 20\", \"cat_2_index\": 182, \"group\": [1984.0, 866.0, 223.0, 60.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59630_BALBc-1_X02_Y02_501_406\", \"ini\": 405, \"clust\": 1110, \"rank\": 436, \"rankvar\": 753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2421, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 509, \"cat-2\": \"Density: 21\", \"cat_2_index\": 238, \"group\": [1109.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59720_BALBc-1_X02_Y02_502_671\", \"ini\": 404, \"clust\": 148, \"rank\": 1157, \"rankvar\": 1526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2422, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 510, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1807, \"group\": [146.0, 91.0, 24.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59726_BALBc-1_X02_Y02_502_707\", \"ini\": 403, \"clust\": 942, \"rank\": 1149, \"rankvar\": 372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2423, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 511, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2592, \"group\": [943.0, 342.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59879_BALBc-1_X02_Y02_504_867\", \"ini\": 402, \"clust\": 2533, \"rank\": 2624, \"rankvar\": 1629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2424, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 638, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2120, \"group\": [2533.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59993_BALBc-1_X02_Y02_506_250\", \"ini\": 401, \"clust\": 1928, \"rank\": 2456, \"rankvar\": 1776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2425, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1468, \"cat-2\": \"Density: 25\", \"cat_2_index\": 697, \"group\": [1929.0, 824.0, 213.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60209_BALBc-1_X02_Y02_508_95\", \"ini\": 400, \"clust\": 1038, \"rank\": 344, \"rankvar\": 742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2426, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 928, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1808, \"group\": [1040.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60246_BALBc-1_X02_Y02_509_500\", \"ini\": 399, \"clust\": 2010, \"rank\": 2052, \"rankvar\": 2269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2427, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2707, \"cat-2\": \"Density: 22\", \"cat_2_index\": 325, \"group\": [2011.0, 889.0, 231.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60484_BALBc-1_X02_Y02_511_481\", \"ini\": 398, \"clust\": 2181, \"rank\": 1411, \"rankvar\": 1067, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2428, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1469, \"cat-2\": \"Density: 19\", \"cat_2_index\": 131, \"group\": [2182.0, 998.0, 266.0, 73.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60509_BALBc-1_X02_Y02_511_799\", \"ini\": 397, \"clust\": 2079, \"rank\": 1457, \"rankvar\": 130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2429, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 512, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2498, \"group\": [2080.0, 943.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60571_BALBc-1_X02_Y02_512_687\", \"ini\": 396, \"clust\": 2606, \"rank\": 2067, \"rankvar\": 1229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2430, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 513, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2121, \"group\": [2608.0, 1093.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60617_BALBc-1_X02_Y02_513_306\", \"ini\": 395, \"clust\": 2039, \"rank\": 2051, \"rankvar\": 1270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2431, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1470, \"cat-2\": \"Density: 22\", \"cat_2_index\": 326, \"group\": [2039.0, 908.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60829_BALBc-1_X02_Y02_515_980\", \"ini\": 394, \"clust\": 1104, \"rank\": 446, \"rankvar\": 1019, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2432, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 639, \"cat-2\": \"Density: 24\", \"cat_2_index\": 557, \"group\": [1104.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60871_BALBc-1_X02_Y02_516_759\", \"ini\": 393, \"clust\": 1851, \"rank\": 2658, \"rankvar\": 1632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2433, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 514, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2541, \"group\": [1850.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61279_BALBc-1_X02_Y02_520_66\", \"ini\": 392, \"clust\": 262, \"rank\": 1360, \"rankvar\": 699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2434, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1987, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1906, \"group\": [262.0, 163.0, 48.0, 16.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61334_BALBc-1_X02_Y02_521_353\", \"ini\": 391, \"clust\": 700, \"rank\": 432, \"rankvar\": 447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2435, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2803, \"cat-2\": \"Density: 21\", \"cat_2_index\": 239, \"group\": [700.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61348_BALBc-1_X02_Y02_521_546\", \"ini\": 390, \"clust\": 2270, \"rank\": 2765, \"rankvar\": 2266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2436, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2708, \"cat-2\": \"Density: 24\", \"cat_2_index\": 558, \"group\": [2274.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61372_BALBc-1_X02_Y02_521_896\", \"ini\": 389, \"clust\": 2629, \"rank\": 1927, \"rankvar\": 387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2437, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 640, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2416, \"group\": [2632.0, 1099.0, 282.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61534_BALBc-1_X02_Y02_523_860\", \"ini\": 388, \"clust\": 2272, \"rank\": 2790, \"rankvar\": 2633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2438, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 515, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2354, \"group\": [2271.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61617_BALBc-1_X02_Y02_525_120\", \"ini\": 387, \"clust\": 785, \"rank\": 490, \"rankvar\": 533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2439, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 929, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1907, \"group\": [788.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61773_BALBc-1_X02_Y02_527_152\", \"ini\": 386, \"clust\": 1667, \"rank\": 1166, \"rankvar\": 1955, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2440, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 729, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1570, \"group\": [1670.0, 698.0, 178.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61824_BALBc-1_X02_Y02_527_636\", \"ini\": 385, \"clust\": 2580, \"rank\": 2118, \"rankvar\": 1261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2441, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2709, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1445, \"group\": [2583.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61842_BALBc-1_X02_Y02_527_845\", \"ini\": 384, \"clust\": 1819, \"rank\": 2622, \"rankvar\": 2162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2442, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 516, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2499, \"group\": [1820.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61916_BALBc-1_X02_Y02_528_823\", \"ini\": 383, \"clust\": 900, \"rank\": 1087, \"rankvar\": 483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2443, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 517, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2355, \"group\": [900.0, 331.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61962_BALBc-1_X02_Y02_529_428\", \"ini\": 382, \"clust\": 1968, \"rank\": 1135, \"rankvar\": 319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2444, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 518, \"cat-2\": \"Density: 23\", \"cat_2_index\": 438, \"group\": [1969.0, 854.0, 219.0, 59.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61994_BALBc-1_X02_Y02_529_877\", \"ini\": 381, \"clust\": 2112, \"rank\": 1532, \"rankvar\": 923, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2445, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 519, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2284, \"group\": [2116.0, 957.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62001_BALBc-1_X02_Y02_529_999\", \"ini\": 380, \"clust\": 2281, \"rank\": 2777, \"rankvar\": 2559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2446, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 520, \"cat-2\": \"Density: 19\", \"cat_2_index\": 132, \"group\": [2282.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62024_BALBc-1_X02_Y02_53_346\", \"ini\": 379, \"clust\": 1083, \"rank\": 321, \"rankvar\": 2010, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2447, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1588, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1301, \"group\": [1083.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62088_BALBc-1_X02_Y02_530_268\", \"ini\": 378, \"clust\": 230, \"rank\": 698, \"rankvar\": 215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2448, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1471, \"cat-2\": \"Density: 23\", \"cat_2_index\": 439, \"group\": [231.0, 145.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62119_BALBc-1_X02_Y02_530_680\", \"ini\": 377, \"clust\": 2556, \"rank\": 2494, \"rankvar\": 1870, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2449, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 521, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1908, \"group\": [2553.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62139_BALBc-1_X02_Y02_530_910\", \"ini\": 376, \"clust\": 2124, \"rank\": 1856, \"rankvar\": 1572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2450, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 522, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2356, \"group\": [2124.0, 961.0, 255.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62142_BALBc-1_X02_Y02_530_925\", \"ini\": 375, \"clust\": 2109, \"rank\": 1433, \"rankvar\": 1562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2451, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 641, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2357, \"group\": [2112.0, 955.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62170_BALBc-1_X02_Y02_531_40\", \"ini\": 374, \"clust\": 592, \"rank\": 36, \"rankvar\": 309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2452, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2246, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1809, \"group\": [590.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62352_BALBc-1_X02_Y02_533_593\", \"ini\": 373, \"clust\": 2024, \"rank\": 1990, \"rankvar\": 2228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2453, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2710, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1145, \"group\": [2028.0, 902.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62487_BALBc-1_X02_Y02_535_456\", \"ini\": 372, \"clust\": 1273, \"rank\": 1279, \"rankvar\": 821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2454, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2711, \"cat-2\": \"Density: 22\", \"cat_2_index\": 327, \"group\": [1275.0, 484.0, 120.0, 31.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62584_BALBc-1_X02_Y02_536_793\", \"ini\": 371, \"clust\": 1102, \"rank\": 827, \"rankvar\": 380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2455, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 523, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2285, \"group\": [1105.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62698_BALBc-1_X02_Y02_538_395\", \"ini\": 370, \"clust\": 1866, \"rank\": 2424, \"rankvar\": 2770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2456, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2804, \"cat-2\": \"Density: 23\", \"cat_2_index\": 440, \"group\": [1867.0, 801.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62842_BALBc-1_X02_Y02_54_556\", \"ini\": 369, \"clust\": 2720, \"rank\": 2062, \"rankvar\": 2189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2457, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1573, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1146, \"group\": [2720.0, 1151.0, 298.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62982_BALBc-1_X02_Y02_541_688\", \"ini\": 368, \"clust\": 1779, \"rank\": 1529, \"rankvar\": 1140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2458, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 524, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2021, \"group\": [1782.0, 781.0, 206.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63073_BALBc-1_X02_Y02_542_677\", \"ini\": 367, \"clust\": 441, \"rank\": 1082, \"rankvar\": 479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2459, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 525, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1810, \"group\": [444.0, 256.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63152_BALBc-1_X02_Y02_543_663\", \"ini\": 366, \"clust\": 705, \"rank\": 400, \"rankvar\": 111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2460, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2712, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1302, \"group\": [704.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63263_BALBc-1_X02_Y02_544_724\", \"ini\": 365, \"clust\": 2213, \"rank\": 1866, \"rankvar\": 1792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2461, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1472, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2195, \"group\": [2217.0, 1019.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63356_BALBc-1_X02_Y02_545_764\", \"ini\": 364, \"clust\": 2102, \"rank\": 1217, \"rankvar\": 676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2462, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 526, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2417, \"group\": [2100.0, 949.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63594_BALBc-1_X02_Y02_548_836\", \"ini\": 363, \"clust\": 1853, \"rank\": 2798, \"rankvar\": 2438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2463, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 527, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2500, \"group\": [1852.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63611_BALBc-1_X02_Y02_548_990\", \"ini\": 362, \"clust\": 668, \"rank\": 97, \"rankvar\": 197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2464, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 642, \"cat-2\": \"Density: 21\", \"cat_2_index\": 240, \"group\": [668.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63621_BALBc-1_X02_Y02_549_222\", \"ini\": 361, \"clust\": 1681, \"rank\": 2033, \"rankvar\": 2233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2465, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2713, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1571, \"group\": [1681.0, 705.0, 179.0, 46.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63732_BALBc-1_X02_Y02_55_601\", \"ini\": 360, \"clust\": 2495, \"rank\": 1894, \"rankvar\": 1395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2466, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 946, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1303, \"group\": [2499.0, 1076.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63834_BALBc-1_X02_Y02_550_878\", \"ini\": 359, \"clust\": 1832, \"rank\": 2368, \"rankvar\": 534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2467, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 528, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2286, \"group\": [1832.0, 795.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64028_BALBc-1_X02_Y02_553_519\", \"ini\": 358, \"clust\": 2648, \"rank\": 2446, \"rankvar\": 2129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2468, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 864, \"cat-2\": \"Density: 22\", \"cat_2_index\": 328, \"group\": [2647.0, 1109.0, 285.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64073_BALBc-1_X02_Y02_553_924\", \"ini\": 357, \"clust\": 1072, \"rank\": 298, \"rankvar\": 654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2469, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 643, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2196, \"group\": [1072.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64372_BALBc-1_X02_Y02_558_116\", \"ini\": 356, \"clust\": 1711, \"rank\": 1617, \"rankvar\": 438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2470, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 930, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1811, \"group\": [1712.0, 735.0, 191.0, 51.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64456_BALBc-1_X02_Y02_558_995\", \"ini\": 355, \"clust\": 1846, \"rank\": 2775, \"rankvar\": 1673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2471, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 529, \"cat-2\": \"Density: 22\", \"cat_2_index\": 329, \"group\": [1847.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64463_BALBc-1_X02_Y02_559_16\", \"ini\": 354, \"clust\": 344, \"rank\": 370, \"rankvar\": 2065, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2472, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2247, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1699, \"group\": [345.0, 216.0, 62.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64505_BALBc-1_X02_Y02_559_58\", \"ini\": 353, \"clust\": 77, \"rank\": 934, \"rankvar\": 522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2473, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 931, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1909, \"group\": [77.0, 36.0, 7.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64571_BALBc-1_X02_Y02_56_412\", \"ini\": 352, \"clust\": 2758, \"rank\": 2133, \"rankvar\": 2560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2474, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2714, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2122, \"group\": [2756.0, 1171.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64626_BALBc-1_X02_Y02_560_186\", \"ini\": 351, \"clust\": 965, \"rank\": 476, \"rankvar\": 322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2475, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 730, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1700, \"group\": [964.0, 349.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64676_BALBc-1_X02_Y02_560_746\", \"ini\": 350, \"clust\": 2196, \"rank\": 2359, \"rankvar\": 847, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2476, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1473, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2123, \"group\": [2198.0, 1008.0, 269.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64706_BALBc-1_X02_Y02_561_129\", \"ini\": 349, \"clust\": 138, \"rank\": 909, \"rankvar\": 1371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2477, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1474, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1910, \"group\": [138.0, 87.0, 23.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64758_BALBc-1_X02_Y02_561_689\", \"ini\": 348, \"clust\": 1774, \"rank\": 1378, \"rankvar\": 1299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2478, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 530, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1812, \"group\": [1774.0, 776.0, 206.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64883_BALBc-1_X02_Y02_563_442\", \"ini\": 347, \"clust\": 1776, \"rank\": 1817, \"rankvar\": 1460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2479, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1574, \"cat-2\": \"Density: 26\", \"cat_2_index\": 844, \"group\": [1776.0, 778.0, 206.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64889_BALBc-1_X02_Y02_563_483\", \"ini\": 346, \"clust\": 1921, \"rank\": 2399, \"rankvar\": 2647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2480, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2715, \"cat-2\": \"Density: 23\", \"cat_2_index\": 441, \"group\": [1919.0, 821.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64905_BALBc-1_X02_Y02_563_774\", \"ini\": 345, \"clust\": 183, \"rank\": 952, \"rankvar\": 965, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 531, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2358, \"group\": [182.0, 120.0, 39.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65149_BALBc-1_X02_Y02_566_81\", \"ini\": 344, \"clust\": 2659, \"rank\": 2291, \"rankvar\": 935, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2482, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 865, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1911, \"group\": [2662.0, 1121.0, 286.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65186_BALBc-1_X02_Y02_567_271\", \"ini\": 343, \"clust\": 2678, \"rank\": 1260, \"rankvar\": 678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2483, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1988, \"cat-2\": \"Density: 25\", \"cat_2_index\": 698, \"group\": [2679.0, 1137.0, 292.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65292_BALBc-1_X02_Y02_568_797\", \"ini\": 342, \"clust\": 2582, \"rank\": 2153, \"rankvar\": 781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2484, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 532, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2359, \"group\": [2582.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65906_BALBc-1_X02_Y02_575_921\", \"ini\": 341, \"clust\": 2307, \"rank\": 2374, \"rankvar\": 1939, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2485, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2716, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2197, \"group\": [2308.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66097_BALBc-1_X02_Y02_578_646\", \"ini\": 340, \"clust\": 1862, \"rank\": 2451, \"rankvar\": 1274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2486, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2717, \"cat-2\": \"Density: 27\", \"cat_2_index\": 994, \"group\": [1864.0, 800.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66183_BALBc-1_X02_Y02_579_966\", \"ini\": 339, \"clust\": 1852, \"rank\": 2670, \"rankvar\": 877, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2487, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 644, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1147, \"group\": [1851.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66339_BALBc-1_X02_Y02_581_317\", \"ini\": 338, \"clust\": 825, \"rank\": 702, \"rankvar\": 575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2488, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1989, \"cat-2\": \"Density: 23\", \"cat_2_index\": 442, \"group\": [824.0, 294.0, 69.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66357_BALBc-1_X02_Y02_581_49\", \"ini\": 337, \"clust\": 195, \"rank\": 728, \"rankvar\": 1252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2489, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1678, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2022, \"group\": [195.0, 128.0, 42.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66415_BALBc-1_X02_Y02_582_178\", \"ini\": 336, \"clust\": 771, \"rank\": 531, \"rankvar\": 1281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2490, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2496, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1572, \"group\": [774.0, 286.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66616_BALBc-1_X02_Y02_584_773\", \"ini\": 335, \"clust\": 2410, \"rank\": 1765, \"rankvar\": 1858, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2491, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 533, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2198, \"group\": [2414.0, 1047.0, 272.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66755_BALBc-1_X02_Y02_586_349\", \"ini\": 334, \"clust\": 1713, \"rank\": 2117, \"rankvar\": 2804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2718, \"cat-2\": \"Density: 23\", \"cat_2_index\": 443, \"group\": [1714.0, 737.0, 192.0, 52.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66774_BALBc-1_X02_Y02_586_530\", \"ini\": 333, \"clust\": 1901, \"rank\": 2457, \"rankvar\": 2810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2493, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2719, \"cat-2\": \"Density: 22\", \"cat_2_index\": 330, \"group\": [1901.0, 814.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66875_BALBc-1_X02_Y02_587_790\", \"ini\": 332, \"clust\": 1951, \"rank\": 1523, \"rankvar\": 2047, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2494, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 534, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2199, \"group\": [1952.0, 843.0, 216.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66943_BALBc-1_X02_Y02_588_705\", \"ini\": 331, \"clust\": 2737, \"rank\": 2618, \"rankvar\": 2275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2495, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1475, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1912, \"group\": [2738.0, 1164.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67033_BALBc-1_X02_Y02_589_854\", \"ini\": 330, \"clust\": 443, \"rank\": 380, \"rankvar\": 540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2496, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 535, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2418, \"group\": [443.0, 255.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67050_BALBc-1_X02_Y02_59_136\", \"ini\": 329, \"clust\": 202, \"rank\": 735, \"rankvar\": 842, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2497, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2720, \"cat-2\": \"Density: 22\", \"cat_2_index\": 331, \"group\": [202.0, 131.0, 42.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67117_BALBc-1_X02_Y02_59_886\", \"ini\": 328, \"clust\": 2763, \"rank\": 1776, \"rankvar\": 2306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2498, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1476, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1304, \"group\": [2762.0, 1172.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67206_BALBc-1_X02_Y02_590_941\", \"ini\": 327, \"clust\": 902, \"rank\": 582, \"rankvar\": 398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2499, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2721, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1913, \"group\": [904.0, 331.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67342_BALBc-1_X02_Y02_592_741\", \"ini\": 326, \"clust\": 2745, \"rank\": 2415, \"rankvar\": 2205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2500, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1477, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2287, \"group\": [2743.0, 1166.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67356_BALBc-1_X02_Y02_592_870\", \"ini\": 325, \"clust\": 2289, \"rank\": 2711, \"rankvar\": 2428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2501, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2722, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2200, \"group\": [2289.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67680_BALBc-1_X02_Y02_596_996\", \"ini\": 324, \"clust\": 401, \"rank\": 907, \"rankvar\": 284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2502, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 536, \"cat-2\": \"Density: 21\", \"cat_2_index\": 241, \"group\": [406.0, 240.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67689_BALBc-1_X02_Y02_597_244\", \"ini\": 323, \"clust\": 478, \"rank\": 336, \"rankvar\": 691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2503, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1759, \"cat-2\": \"Density: 24\", \"cat_2_index\": 559, \"group\": [479.0, 265.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67735_BALBc-1_X02_Y02_597_815\", \"ini\": 322, \"clust\": 1873, \"rank\": 1649, \"rankvar\": 2450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2504, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 537, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2288, \"group\": [1875.0, 804.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67822_BALBc-1_X02_Y02_598_971\", \"ini\": 321, \"clust\": 2484, \"rank\": 1595, \"rankvar\": 1720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2505, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 538, \"cat-2\": \"Density: 25\", \"cat_2_index\": 699, \"group\": [2484.0, 1071.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67827_BALBc-1_X02_Y02_599_124\", \"ini\": 320, \"clust\": 97, \"rank\": 2272, \"rankvar\": 1797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2506, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1478, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1573, \"group\": [96.0, 51.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67881_BALBc-1_X02_Y02_599_836\", \"ini\": 319, \"clust\": 1966, \"rank\": 1668, \"rankvar\": 1033, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2507, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 539, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2501, \"group\": [1966.0, 851.0, 218.0, 58.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68161_BALBc-1_X02_Y02_602_173\", \"ini\": 318, \"clust\": 1324, \"rank\": 1575, \"rankvar\": 2224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2508, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1479, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1305, \"group\": [1324.0, 513.0, 127.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68329_BALBc-1_X02_Y02_604_479\", \"ini\": 317, \"clust\": 1797, \"rank\": 2555, \"rankvar\": 2051, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2509, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2465, \"cat-2\": \"Density: 26\", \"cat_2_index\": 845, \"group\": [1797.0, 789.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68364_BALBc-1_X02_Y02_604_898\", \"ini\": 316, \"clust\": 764, \"rank\": 661, \"rankvar\": 117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2510, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2723, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2201, \"group\": [764.0, 281.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68650_BALBc-1_X02_Y02_608_247\", \"ini\": 315, \"clust\": 1639, \"rank\": 1105, \"rankvar\": 562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2511, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1679, \"cat-2\": \"Density: 24\", \"cat_2_index\": 560, \"group\": [1640.0, 673.0, 169.0, 41.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68746_BALBc-1_X02_Y02_609_287\", \"ini\": 314, \"clust\": 2802, \"rank\": 2462, \"rankvar\": 1982, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2512, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 540, \"cat-2\": \"Density: 24\", \"cat_2_index\": 561, \"group\": [2804.0, 1185.0, 304.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68769_BALBc-1_X02_Y02_609_505\", \"ini\": 313, \"clust\": 1128, \"rank\": 940, \"rankvar\": 759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2513, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2724, \"cat-2\": \"Density: 21\", \"cat_2_index\": 242, \"group\": [1128.0, 376.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68812_BALBc-1_X02_Y02_61_160\", \"ini\": 312, \"clust\": 2207, \"rank\": 1935, \"rankvar\": 2121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2514, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 541, \"cat-2\": \"Density: 19\", \"cat_2_index\": 133, \"group\": [2209.0, 1015.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68919_BALBc-1_X02_Y02_610_685\", \"ini\": 311, \"clust\": 1881, \"rank\": 1964, \"rankvar\": 2326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2515, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1480, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1813, \"group\": [1881.0, 805.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68936_BALBc-1_X02_Y02_610_908\", \"ini\": 310, \"clust\": 2273, \"rank\": 2697, \"rankvar\": 2049, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2516, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2725, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2202, \"group\": [2272.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69083_BALBc-1_X02_Y02_612_642\", \"ini\": 309, \"clust\": 2176, \"rank\": 1663, \"rankvar\": 1369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2517, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1481, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1148, \"group\": [2179.0, 995.0, 264.0, 73.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69172_BALBc-1_X02_Y02_613_941\", \"ini\": 308, \"clust\": 2297, \"rank\": 2391, \"rankvar\": 1823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2518, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2726, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1574, \"group\": [2300.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69269_BALBc-1_X02_Y02_615_12\", \"ini\": 307, \"clust\": 12, \"rank\": 896, \"rankvar\": 673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2519, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1482, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1575, \"group\": [16.0, 10.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69314_BALBc-1_X02_Y02_615_721\", \"ini\": 306, \"clust\": 1139, \"rank\": 714, \"rankvar\": 1975, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2520, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1483, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2023, \"group\": [1139.0, 381.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69385_BALBc-1_X02_Y02_616_708\", \"ini\": 305, \"clust\": 2201, \"rank\": 2215, \"rankvar\": 1633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2521, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 542, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1814, \"group\": [2202.0, 1011.0, 269.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69392_BALBc-1_X02_Y02_616_80\", \"ini\": 304, \"clust\": 1971, \"rank\": 1487, \"rankvar\": 1256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2522, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 866, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1815, \"group\": [1970.0, 855.0, 220.0, 59.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69516_BALBc-1_X02_Y02_618_346\", \"ini\": 303, \"clust\": 550, \"rank\": 243, \"rankvar\": 780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2523, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2727, \"cat-2\": \"Density: 26\", \"cat_2_index\": 846, \"group\": [550.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69550_BALBc-1_X02_Y02_618_772\", \"ini\": 302, \"clust\": 2291, \"rank\": 2523, \"rankvar\": 1987, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2524, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1680, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2124, \"group\": [2291.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69694_BALBc-1_X02_Y02_62_685\", \"ini\": 301, \"clust\": 2767, \"rank\": 2070, \"rankvar\": 1532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2525, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1484, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1576, \"group\": [2772.0, 1176.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69845_BALBc-1_X02_Y02_621_738\", \"ini\": 300, \"clust\": 2202, \"rank\": 1995, \"rankvar\": 2015, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2526, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 543, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2125, \"group\": [2203.0, 1012.0, 269.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69869_BALBc-1_X02_Y02_621_980\", \"ini\": 299, \"clust\": 2223, \"rank\": 2061, \"rankvar\": 1543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2527, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 544, \"cat-2\": \"Density: 22\", \"cat_2_index\": 332, \"group\": [2224.0, 1020.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69947_BALBc-1_X02_Y02_622_856\", \"ini\": 298, \"clust\": 2589, \"rank\": 2331, \"rankvar\": 1653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2528, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2728, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2419, \"group\": [2589.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70036_BALBc-1_X02_Y02_623_791\", \"ini\": 297, \"clust\": 2521, \"rank\": 2115, \"rankvar\": 974, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2529, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1681, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2203, \"group\": [2524.0, 1083.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70145_BALBc-1_X02_Y02_625_402\", \"ini\": 296, \"clust\": 1666, \"rank\": 469, \"rankvar\": 2741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2530, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2332, \"cat-2\": \"Density: 23\", \"cat_2_index\": 444, \"group\": [1667.0, 697.0, 178.0, 45.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70178_BALBc-1_X02_Y02_625_825\", \"ini\": 295, \"clust\": 2235, \"rank\": 2102, \"rankvar\": 1297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2531, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1485, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2360, \"group\": [2236.0, 1022.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70445_BALBc-1_X02_Y02_629_611\", \"ini\": 294, \"clust\": 1932, \"rank\": 2563, \"rankvar\": 2628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2532, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2729, \"cat-2\": \"Density: 24\", \"cat_2_index\": 562, \"group\": [1933.0, 827.0, 213.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70500_BALBc-1_X02_Y02_63_385\", \"ini\": 293, \"clust\": 694, \"rank\": 81, \"rankvar\": 1327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2533, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2730, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2024, \"group\": [693.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70692_BALBc-1_X02_Y02_631_72\", \"ini\": 292, \"clust\": 1254, \"rank\": 1893, \"rankvar\": 2140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2534, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 545, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1701, \"group\": [1255.0, 468.0, 113.0, 28.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70695_BALBc-1_X02_Y02_631_748\", \"ini\": 291, \"clust\": 2212, \"rank\": 2043, \"rankvar\": 1623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2535, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1682, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2204, \"group\": [2212.0, 1017.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70916_BALBc-1_X02_Y02_634_5\", \"ini\": 290, \"clust\": 34, \"rank\": 587, \"rankvar\": 2104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2536, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1683, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1577, \"group\": [31.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70961_BALBc-1_X02_Y02_635_253\", \"ini\": 289, \"clust\": 935, \"rank\": 866, \"rankvar\": 836, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2537, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1684, \"cat-2\": \"Density: 24\", \"cat_2_index\": 563, \"group\": [939.0, 340.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71202_BALBc-1_X02_Y02_638_308\", \"ini\": 288, \"clust\": 1989, \"rank\": 1388, \"rankvar\": 2188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2538, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1486, \"cat-2\": \"Density: 24\", \"cat_2_index\": 564, \"group\": [1992.0, 873.0, 226.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71220_BALBc-1_X02_Y02_638_474\", \"ini\": 287, \"clust\": 2040, \"rank\": 2422, \"rankvar\": 2069, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2539, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2731, \"cat-2\": \"Density: 26\", \"cat_2_index\": 847, \"group\": [2040.0, 909.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71595_BALBc-1_X02_Y02_642_520\", \"ini\": 286, \"clust\": 166, \"rank\": 1440, \"rankvar\": 502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2540, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2732, \"cat-2\": \"Density: 22\", \"cat_2_index\": 333, \"group\": [169.0, 111.0, 33.0, 11.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71629_BALBc-1_X02_Y02_642_830\", \"ini\": 285, \"clust\": 2696, \"rank\": 1310, \"rankvar\": 2406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2541, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1487, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2289, \"group\": [2697.0, 1144.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71736_BALBc-1_X02_Y02_644_115\", \"ini\": 284, \"clust\": 2093, \"rank\": 1508, \"rankvar\": 1062, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 867, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1702, \"group\": [2094.0, 946.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71739_BALBc-1_X02_Y02_644_155\", \"ini\": 283, \"clust\": 85, \"rank\": 1960, \"rankvar\": 1788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2543, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1760, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1816, \"group\": [86.0, 43.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71744_BALBc-1_X02_Y02_644_213\", \"ini\": 282, \"clust\": 2652, \"rank\": 2593, \"rankvar\": 1587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2544, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1761, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1578, \"group\": [2651.0, 1113.0, 286.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71785_BALBc-1_X02_Y02_644_568\", \"ini\": 281, \"clust\": 1916, \"rank\": 2511, \"rankvar\": 2822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2545, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2733, \"cat-2\": \"Density: 23\", \"cat_2_index\": 445, \"group\": [1915.0, 820.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71963_BALBc-1_X02_Y02_646_955\", \"ini\": 280, \"clust\": 2344, \"rank\": 2561, \"rankvar\": 1341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2546, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2183, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1149, \"group\": [2347.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72006_BALBc-1_X02_Y02_647_56\", \"ini\": 279, \"clust\": 961, \"rank\": 199, \"rankvar\": 1238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2547, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 546, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1703, \"group\": [960.0, 348.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72118_BALBc-1_X02_Y02_648_980\", \"ini\": 278, \"clust\": 615, \"rank\": 61, \"rankvar\": 20, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2548, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 547, \"cat-2\": \"Density: 25\", \"cat_2_index\": 700, \"group\": [612.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72144_BALBc-1_X02_Y02_649_345\", \"ini\": 277, \"clust\": 2027, \"rank\": 2324, \"rankvar\": 2130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2549, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2333, \"cat-2\": \"Density: 24\", \"cat_2_index\": 565, \"group\": [2026.0, 901.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72328_BALBc-1_X02_Y02_650_881\", \"ini\": 276, \"clust\": 2585, \"rank\": 2238, \"rankvar\": 1098, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2550, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2734, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2126, \"group\": [2590.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72406_BALBc-1_X02_Y02_651_83\", \"ini\": 275, \"clust\": 1061, \"rank\": 204, \"rankvar\": 594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 548, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2025, \"group\": [1065.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72482_BALBc-1_X02_Y02_652_908\", \"ini\": 274, \"clust\": 2258, \"rank\": 2392, \"rankvar\": 1837, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2552, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2184, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2205, \"group\": [2256.0, 1029.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72586_BALBc-1_X02_Y02_654_266\", \"ini\": 273, \"clust\": 838, \"rank\": 816, \"rankvar\": 1636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2553, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1488, \"cat-2\": \"Density: 24\", \"cat_2_index\": 566, \"group\": [842.0, 300.0, 70.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72771_BALBc-1_X02_Y02_656_677\", \"ini\": 272, \"clust\": 1239, \"rank\": 1108, \"rankvar\": 738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2554, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1489, \"cat-2\": \"Density: 27\", \"cat_2_index\": 995, \"group\": [1240.0, 454.0, 107.0, 25.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72775_BALBc-1_X02_Y02_656_705\", \"ini\": 271, \"clust\": 1937, \"rank\": 1906, \"rankvar\": 2159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2555, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 549, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1817, \"group\": [1940.0, 832.0, 213.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72872_BALBc-1_X02_Y02_657_832\", \"ini\": 270, \"clust\": 2793, \"rank\": 2675, \"rankvar\": 2497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2556, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1490, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2290, \"group\": [2793.0, 1179.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73062_BALBc-1_X02_Y02_66_601\", \"ini\": 269, \"clust\": 990, \"rank\": 538, \"rankvar\": 828, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2557, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 550, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1306, \"group\": [989.0, 357.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73332_BALBc-1_X02_Y02_662_61\", \"ini\": 268, \"clust\": 45, \"rank\": 1381, \"rankvar\": 2337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2558, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 551, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1579, \"group\": [48.0, 25.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73887_BALBc-1_X02_Y02_67_263\", \"ini\": 267, \"clust\": 828, \"rank\": 392, \"rankvar\": 659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2559, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2735, \"cat-2\": \"Density: 19\", \"cat_2_index\": 134, \"group\": [830.0, 295.0, 69.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73953_BALBc-1_X02_Y02_670_242\", \"ini\": 266, \"clust\": 2000, \"rank\": 1566, \"rankvar\": 1104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2560, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1491, \"cat-2\": \"Density: 23\", \"cat_2_index\": 446, \"group\": [2000.0, 880.0, 228.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73968_BALBc-1_X02_Y02_670_412\", \"ini\": 265, \"clust\": 983, \"rank\": 423, \"rankvar\": 457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2561, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2736, \"cat-2\": \"Density: 23\", \"cat_2_index\": 447, \"group\": [987.0, 356.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73976_BALBc-1_X02_Y02_670_483\", \"ini\": 264, \"clust\": 1137, \"rank\": 415, \"rankvar\": 1786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2562, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1492, \"cat-2\": \"Density: 24\", \"cat_2_index\": 567, \"group\": [1140.0, 381.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74149_BALBc-1_X02_Y02_672_855\", \"ini\": 263, \"clust\": 415, \"rank\": 359, \"rankvar\": 354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2563, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 552, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2502, \"group\": [415.0, 243.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74167_BALBc-1_X02_Y02_673_108\", \"ini\": 262, \"clust\": 1590, \"rank\": 635, \"rankvar\": 728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2564, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 932, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1150, \"group\": [1591.0, 635.0, 155.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74236_BALBc-1_X02_Y02_673_890\", \"ini\": 261, \"clust\": 1098, \"rank\": 576, \"rankvar\": 660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2565, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 553, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2206, \"group\": [1099.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74383_BALBc-1_X02_Y02_675_456\", \"ini\": 260, \"clust\": 766, \"rank\": 614, \"rankvar\": 996, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2566, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1493, \"cat-2\": \"Density: 24\", \"cat_2_index\": 568, \"group\": [767.0, 283.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74388_BALBc-1_X02_Y02_675_540\", \"ini\": 259, \"clust\": 1040, \"rank\": 634, \"rankvar\": 554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2567, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 554, \"cat-2\": \"Density: 24\", \"cat_2_index\": 569, \"group\": [1039.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74441_BALBc-1_X02_Y02_676_169\", \"ini\": 258, \"clust\": 1385, \"rank\": 1359, \"rankvar\": 1276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2568, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 933, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1307, \"group\": [1385.0, 542.0, 136.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74508_BALBc-1_X02_Y02_676_991\", \"ini\": 257, \"clust\": 2572, \"rank\": 2202, \"rankvar\": 1013, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2569, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 555, \"cat-2\": \"Density: 18\", \"cat_2_index\": 109, \"group\": [2571.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74535_BALBc-1_X02_Y02_677_385\", \"ini\": 256, \"clust\": 90, \"rank\": 2260, \"rankvar\": 1811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2570, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2334, \"cat-2\": \"Density: 26\", \"cat_2_index\": 848, \"group\": [94.0, 50.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74729_BALBc-1_X02_Y02_679_790\", \"ini\": 255, \"clust\": 2471, \"rank\": 2187, \"rankvar\": 2538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2571, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1494, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2291, \"group\": [2470.0, 1059.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74731_BALBc-1_X02_Y02_679_812\", \"ini\": 254, \"clust\": 2674, \"rank\": 1235, \"rankvar\": 1361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2572, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1495, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2361, \"group\": [2675.0, 1134.0, 291.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74790_BALBc-1_X02_Y02_68_580\", \"ini\": 253, \"clust\": 1176, \"rank\": 1208, \"rankvar\": 256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2573, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1575, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1151, \"group\": [1176.0, 409.0, 92.0, 21.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74845_BALBc-1_X02_Y02_680_497\", \"ini\": 252, \"clust\": 2231, \"rank\": 2098, \"rankvar\": 1703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2574, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1496, \"cat-2\": \"Density: 23\", \"cat_2_index\": 448, \"group\": [2232.0, 1022.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74920_BALBc-1_X02_Y02_681_628\", \"ini\": 251, \"clust\": 930, \"rank\": 733, \"rankvar\": 349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1497, \"cat-2\": \"Density: 23\", \"cat_2_index\": 449, \"group\": [929.0, 337.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75012_BALBc-1_X02_Y02_682_927\", \"ini\": 250, \"clust\": 2225, \"rank\": 2165, \"rankvar\": 1909, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2576, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2185, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2026, \"group\": [2223.0, 1020.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75078_BALBc-1_X02_Y02_683_754\", \"ini\": 249, \"clust\": 1842, \"rank\": 2732, \"rankvar\": 2470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2577, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1685, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2127, \"group\": [1840.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75093_BALBc-1_X02_Y02_683_961\", \"ini\": 248, \"clust\": 1970, \"rank\": 1707, \"rankvar\": 1885, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2578, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2186, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1152, \"group\": [1972.0, 857.0, 220.0, 59.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75122_BALBc-1_X02_Y02_684_41\", \"ini\": 247, \"clust\": 553, \"rank\": 210, \"rankvar\": 171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2579, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1686, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1580, \"group\": [552.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75210_BALBc-1_X02_Y02_685_709\", \"ini\": 246, \"clust\": 1996, \"rank\": 1612, \"rankvar\": 1268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2580, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 556, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1914, \"group\": [2001.0, 881.0, 228.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75222_BALBc-1_X02_Y02_685_85\", \"ini\": 245, \"clust\": 1003, \"rank\": 667, \"rankvar\": 888, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2581, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 557, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1153, \"group\": [1003.0, 364.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75253_BALBc-1_X02_Y02_686_343\", \"ini\": 244, \"clust\": 111, \"rank\": 2121, \"rankvar\": 1812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2582, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 868, \"cat-2\": \"Density: 22\", \"cat_2_index\": 334, \"group\": [110.0, 62.0, 15.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75823_BALBc-1_X02_Y02_692_891\", \"ini\": 243, \"clust\": 2462, \"rank\": 1424, \"rankvar\": 2007, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2583, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 558, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2292, \"group\": [2465.0, 1058.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75887_BALBc-1_X02_Y02_693_684\", \"ini\": 242, \"clust\": 1883, \"rank\": 2138, \"rankvar\": 2537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2584, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 869, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1446, \"group\": [1882.0, 805.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76096_BALBc-1_X02_Y02_696_645\", \"ini\": 241, \"clust\": 1884, \"rank\": 2412, \"rankvar\": 2447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2585, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 870, \"cat-2\": \"Density: 27\", \"cat_2_index\": 996, \"group\": [1883.0, 805.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76103_BALBc-1_X02_Y02_696_735\", \"ini\": 240, \"clust\": 1123, \"rank\": 759, \"rankvar\": 1129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2586, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 559, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2027, \"group\": [1123.0, 374.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76294_BALBc-1_X02_Y02_699_112\", \"ini\": 239, \"clust\": 586, \"rank\": 323, \"rankvar\": 139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2587, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 934, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1154, \"group\": [586.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76538_BALBc-1_X02_Y02_700_290\", \"ini\": 238, \"clust\": 225, \"rank\": 488, \"rankvar\": 1722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2588, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1498, \"cat-2\": \"Density: 24\", \"cat_2_index\": 570, \"group\": [224.0, 140.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76553_BALBc-1_X02_Y02_700_423\", \"ini\": 237, \"clust\": 512, \"rank\": 281, \"rankvar\": 555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2589, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1499, \"cat-2\": \"Density: 23\", \"cat_2_index\": 450, \"group\": [510.0, 272.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76803_BALBc-1_X02_Y02_703_773\", \"ini\": 236, \"clust\": 337, \"rank\": 560, \"rankvar\": 2178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2590, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 560, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2362, \"group\": [338.0, 212.0, 61.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76901_BALBc-1_X02_Y02_704_869\", \"ini\": 235, \"clust\": 2185, \"rank\": 2220, \"rankvar\": 2330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1500, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2207, \"group\": [2193.0, 1004.0, 268.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77001_BALBc-1_X02_Y02_706_34\", \"ini\": 234, \"clust\": 1253, \"rank\": 1887, \"rankvar\": 1379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2592, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1687, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1581, \"group\": [1254.0, 467.0, 112.0, 28.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77014_BALBc-1_X02_Y02_706_510\", \"ini\": 233, \"clust\": 1977, \"rank\": 1497, \"rankvar\": 967, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2593, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1501, \"cat-2\": \"Density: 24\", \"cat_2_index\": 571, \"group\": [1978.0, 863.0, 223.0, 60.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77039_BALBc-1_X02_Y02_706_830\", \"ini\": 232, \"clust\": 2407, \"rank\": 1531, \"rankvar\": 1320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2594, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1502, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2420, \"group\": [2406.0, 1043.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77074_BALBc-1_X02_Y02_707_326\", \"ini\": 231, \"clust\": 2725, \"rank\": 1665, \"rankvar\": 514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2595, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1503, \"cat-2\": \"Density: 22\", \"cat_2_index\": 335, \"group\": [2728.0, 1157.0, 300.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77093_BALBc-1_X02_Y02_707_617\", \"ini\": 230, \"clust\": 1787, \"rank\": 2674, \"rankvar\": 2661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2596, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2737, \"cat-2\": \"Density: 27\", \"cat_2_index\": 997, \"group\": [1788.0, 786.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77135_BALBc-1_X02_Y02_707_975\", \"ini\": 229, \"clust\": 904, \"rank\": 680, \"rankvar\": 307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2597, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 561, \"cat-2\": \"Density: 23\", \"cat_2_index\": 451, \"group\": [903.0, 331.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77220_BALBc-1_X02_Y02_709_226\", \"ini\": 228, \"clust\": 2043, \"rank\": 1992, \"rankvar\": 2018, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2598, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1762, \"cat-2\": \"Density: 21\", \"cat_2_index\": 243, \"group\": [2043.0, 912.0, 237.0, 63.0, 15.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77373_BALBc-1_X02_Y02_710_537\", \"ini\": 227, \"clust\": 1771, \"rank\": 1419, \"rankvar\": 2028, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2599, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1504, \"cat-2\": \"Density: 26\", \"cat_2_index\": 849, \"group\": [1772.0, 775.0, 206.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77376_BALBc-1_X02_Y02_710_565\", \"ini\": 226, \"clust\": 2004, \"rank\": 2119, \"rankvar\": 1938, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2600, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2738, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1155, \"group\": [2005.0, 883.0, 229.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77395_BALBc-1_X02_Y02_710_791\", \"ini\": 225, \"clust\": 2274, \"rank\": 2695, \"rankvar\": 2493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2601, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 562, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2028, \"group\": [2273.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77586_BALBc-1_X02_Y02_712_99\", \"ini\": 224, \"clust\": 1255, \"rank\": 1609, \"rankvar\": 1165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2602, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 563, \"cat-2\": \"Density: 27\", \"cat_2_index\": 998, \"group\": [1256.0, 469.0, 113.0, 28.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77673_BALBc-1_X02_Y02_714_203\", \"ini\": 223, \"clust\": 1386, \"rank\": 2178, \"rankvar\": 2652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2603, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2739, \"cat-2\": \"Density: 24\", \"cat_2_index\": 572, \"group\": [1389.0, 544.0, 137.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77790_BALBc-1_X02_Y02_715_74\", \"ini\": 222, \"clust\": 545, \"rank\": 62, \"rankvar\": 911, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2604, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1990, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1156, \"group\": [548.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77983_BALBc-1_X02_Y02_717_921\", \"ini\": 221, \"clust\": 2527, \"rank\": 2315, \"rankvar\": 1856, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2605, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 564, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1915, \"group\": [2530.0, 1084.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78066_BALBc-1_X02_Y02_719_1006\", \"ini\": 220, \"clust\": 2519, \"rank\": 2334, \"rankvar\": 400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2606, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 565, \"cat-2\": \"Density: 16\", \"cat_2_index\": 65, \"group\": [2520.0, 1083.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78175_BALBc-1_X02_Y02_72_479\", \"ini\": 219, \"clust\": 1746, \"rank\": 2814, \"rankvar\": 2599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2607, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 871, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2029, \"group\": [1745.0, 761.0, 202.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78545_BALBc-1_X02_Y02_724_169\", \"ini\": 218, \"clust\": 1211, \"rank\": 890, \"rankvar\": 2708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2608, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 935, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1582, \"group\": [1211.0, 436.0, 101.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78626_BALBc-1_X02_Y02_725_382\", \"ini\": 217, \"clust\": 63, \"rank\": 1296, \"rankvar\": 1735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2609, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 872, \"cat-2\": \"Density: 22\", \"cat_2_index\": 336, \"group\": [62.0, 28.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78655_BALBc-1_X02_Y02_725_758\", \"ini\": 216, \"clust\": 1738, \"rank\": 2411, \"rankvar\": 2202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2610, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 566, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1818, \"group\": [1739.0, 758.0, 201.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78673_BALBc-1_X02_Y02_725_953\", \"ini\": 215, \"clust\": 2283, \"rank\": 2736, \"rankvar\": 2413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2611, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2187, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1157, \"group\": [2284.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78684_BALBc-1_X02_Y02_726_124\", \"ini\": 214, \"clust\": 1706, \"rank\": 1327, \"rankvar\": 860, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2612, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 873, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1158, \"group\": [1706.0, 729.0, 187.0, 50.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78789_BALBc-1_X02_Y02_727_511\", \"ini\": 213, \"clust\": 54, \"rank\": 1778, \"rankvar\": 2279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2613, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1505, \"cat-2\": \"Density: 23\", \"cat_2_index\": 452, \"group\": [68.0, 30.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78889_BALBc-1_X02_Y02_728_781\", \"ini\": 212, \"clust\": 176, \"rank\": 1469, \"rankvar\": 1925, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2614, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 567, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2128, \"group\": [176.0, 116.0, 37.0, 13.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78953_BALBc-1_X02_Y02_729_688\", \"ini\": 211, \"clust\": 1790, \"rank\": 2410, \"rankvar\": 1425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2615, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2740, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1583, \"group\": [1791.0, 787.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78974_BALBc-1_X02_Y02_729_890\", \"ini\": 210, \"clust\": 686, \"rank\": 69, \"rankvar\": 248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2616, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 568, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2208, \"group\": [682.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78999_BALBc-1_X02_Y02_73_354\", \"ini\": 209, \"clust\": 1788, \"rank\": 2641, \"rankvar\": 2750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2617, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2741, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1159, \"group\": [1789.0, 786.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79016_BALBc-1_X02_Y02_73_624\", \"ini\": 208, \"clust\": 2789, \"rank\": 2570, \"rankvar\": 2582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2618, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1506, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1584, \"group\": [2788.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79095_BALBc-1_X02_Y02_730_647\", \"ini\": 207, \"clust\": 2214, \"rank\": 2120, \"rankvar\": 1558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2619, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2742, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1447, \"group\": [2216.0, 1019.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79236_BALBc-1_X02_Y02_732_35\", \"ini\": 206, \"clust\": 1652, \"rank\": 1237, \"rankvar\": 2070, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2620, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 941, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1308, \"group\": [1653.0, 684.0, 174.0, 43.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79458_BALBc-1_X02_Y02_734_917\", \"ini\": 205, \"clust\": 2189, \"rank\": 2694, \"rankvar\": 2699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2621, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2188, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2030, \"group\": [2187.0, 1002.0, 268.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79623_BALBc-1_X02_Y02_737_105\", \"ini\": 204, \"clust\": 1006, \"rank\": 871, \"rankvar\": 981, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2622, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 874, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1160, \"group\": [1006.0, 365.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79762_BALBc-1_X02_Y02_738_804\", \"ini\": 203, \"clust\": 2015, \"rank\": 1703, \"rankvar\": 808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2623, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1507, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2209, \"group\": [2018.0, 895.0, 234.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79767_BALBc-1_X02_Y02_738_865\", \"ini\": 202, \"clust\": 2091, \"rank\": 1732, \"rankvar\": 1265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2624, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1508, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2421, \"group\": [2089.0, 945.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79785_BALBc-1_X02_Y02_739_196\", \"ini\": 201, \"clust\": 733, \"rank\": 160, \"rankvar\": 110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2625, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2743, \"cat-2\": \"Density: 24\", \"cat_2_index\": 573, \"group\": [733.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79862_BALBc-1_X02_Y02_739_981\", \"ini\": 200, \"clust\": 551, \"rank\": 240, \"rankvar\": 204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2626, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2189, \"cat-2\": \"Density: 22\", \"cat_2_index\": 337, \"group\": [553.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79984_BALBc-1_X02_Y02_740_709\", \"ini\": 199, \"clust\": 1898, \"rank\": 1876, \"rankvar\": 2754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2627, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2744, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1916, \"group\": [1899.0, 814.0, 212.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80165_BALBc-1_X02_Y02_743_497\", \"ini\": 198, \"clust\": 1586, \"rank\": 732, \"rankvar\": 1806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2628, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1509, \"cat-2\": \"Density: 25\", \"cat_2_index\": 701, \"group\": [1589.0, 634.0, 154.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80587_BALBc-1_X02_Y02_748_815\", \"ini\": 197, \"clust\": 2455, \"rank\": 1507, \"rankvar\": 1986, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2629, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2190, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2210, \"group\": [2456.0, 1058.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80635_BALBc-1_X02_Y02_749_454\", \"ini\": 196, \"clust\": 2216, \"rank\": 2341, \"rankvar\": 1846, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2630, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1510, \"cat-2\": \"Density: 27\", \"cat_2_index\": 999, \"group\": [2215.0, 1019.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80695_BALBc-1_X02_Y02_75_13\", \"ini\": 195, \"clust\": 934, \"rank\": 1095, \"rankvar\": 1094, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2631, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1511, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1309, \"group\": [940.0, 341.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80817_BALBc-1_X02_Y02_750_584\", \"ini\": 194, \"clust\": 1802, \"rank\": 2797, \"rankvar\": 2790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2632, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1512, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1161, \"group\": [1805.0, 791.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81059_BALBc-1_X02_Y02_753_779\", \"ini\": 193, \"clust\": 376, \"rank\": 784, \"rankvar\": 2721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2633, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 569, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2129, \"group\": [376.0, 228.0, 64.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81060_BALBc-1_X02_Y02_753_793\", \"ini\": 192, \"clust\": 2111, \"rank\": 1294, \"rankvar\": 1060, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2634, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 570, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2130, \"group\": [2111.0, 954.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81068_BALBc-1_X02_Y02_753_897\", \"ini\": 191, \"clust\": 2125, \"rank\": 1925, \"rankvar\": 1610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2635, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2191, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2131, \"group\": [2125.0, 961.0, 255.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81108_BALBc-1_X02_Y02_754_416\", \"ini\": 190, \"clust\": 806, \"rank\": 818, \"rankvar\": 195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2636, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 571, \"cat-2\": \"Density: 25\", \"cat_2_index\": 702, \"group\": [808.0, 291.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81179_BALBc-1_X02_Y02_755_323\", \"ini\": 189, \"clust\": 8, \"rank\": 912, \"rankvar\": 1516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2637, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 875, \"cat-2\": \"Density: 22\", \"cat_2_index\": 338, \"group\": [10.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81222_BALBc-1_X02_Y02_755_881\", \"ini\": 188, \"clust\": 2445, \"rank\": 2084, \"rankvar\": 2135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2638, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2192, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1917, \"group\": [2448.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81284_BALBc-1_X02_Y02_756_634\", \"ini\": 187, \"clust\": 1871, \"rank\": 2127, \"rankvar\": 1569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2639, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2745, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1819, \"group\": [1872.0, 803.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81466_BALBc-1_X02_Y02_758_853\", \"ini\": 186, \"clust\": 2325, \"rank\": 2592, \"rankvar\": 2564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2640, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2193, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2422, \"group\": [2324.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81536_BALBc-1_X02_Y02_759_820\", \"ini\": 185, \"clust\": 2401, \"rank\": 1043, \"rankvar\": 902, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2641, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2194, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2031, \"group\": [2404.0, 1042.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81627_BALBc-1_X02_Y02_760_153\", \"ini\": 184, \"clust\": 1136, \"rank\": 798, \"rankvar\": 845, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2642, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 876, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1162, \"group\": [1136.0, 380.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81992_BALBc-1_X02_Y02_764_995\", \"ini\": 183, \"clust\": 2557, \"rank\": 2458, \"rankvar\": 1746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2643, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2195, \"cat-2\": \"Density: 21\", \"cat_2_index\": 244, \"group\": [2554.0, 1085.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82113_BALBc-1_X02_Y02_766_756\", \"ini\": 182, \"clust\": 187, \"rank\": 1162, \"rankvar\": 411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2644, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2746, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2293, \"group\": [188.0, 125.0, 41.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82616_BALBc-1_X02_Y02_772_197\", \"ini\": 181, \"clust\": 539, \"rank\": 290, \"rankvar\": 66, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2645, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2747, \"cat-2\": \"Density: 26\", \"cat_2_index\": 850, \"group\": [539.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82799_BALBc-1_X02_Y02_774_509\", \"ini\": 180, \"clust\": 119, \"rank\": 1278, \"rankvar\": 1815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2646, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1513, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1000, \"group\": [120.0, 71.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82871_BALBc-1_X02_Y02_775_626\", \"ini\": 179, \"clust\": 2255, \"rank\": 2556, \"rankvar\": 2287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2647, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2815, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2032, \"group\": [2258.0, 1029.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82932_BALBc-1_X02_Y02_776_234\", \"ini\": 178, \"clust\": 1599, \"rank\": 840, \"rankvar\": 1942, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2648, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2748, \"cat-2\": \"Density: 25\", \"cat_2_index\": 703, \"group\": [1600.0, 641.0, 156.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83113_BALBc-1_X02_Y02_778_564\", \"ini\": 177, \"clust\": 2792, \"rank\": 2766, \"rankvar\": 2817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2649, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1555, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1310, \"group\": [2792.0, 1178.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83255_BALBc-1_X02_Y02_78_243\", \"ini\": 176, \"clust\": 606, \"rank\": 182, \"rankvar\": 507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2650, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2749, \"cat-2\": \"Density: 19\", \"cat_2_index\": 135, \"group\": [645.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83347_BALBc-1_X02_Y02_780_648\", \"ini\": 175, \"clust\": 1894, \"rank\": 2106, \"rankvar\": 2239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2651, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2750, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1918, \"group\": [1894.0, 812.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83401_BALBc-1_X02_Y02_781_370\", \"ini\": 174, \"clust\": 1765, \"rank\": 2617, \"rankvar\": 2558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2652, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 877, \"cat-2\": \"Density: 23\", \"cat_2_index\": 453, \"group\": [1766.0, 770.0, 203.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83432_BALBc-1_X02_Y02_781_781\", \"ini\": 173, \"clust\": 1847, \"rank\": 2684, \"rankvar\": 1210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2653, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 572, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2211, \"group\": [1848.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83518_BALBc-1_X02_Y02_782_947\", \"ini\": 172, \"clust\": 2610, \"rank\": 1677, \"rankvar\": 1721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2654, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2196, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1585, \"group\": [2611.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83545_BALBc-1_X02_Y02_783_408\", \"ini\": 171, \"clust\": 956, \"rank\": 935, \"rankvar\": 230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2655, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 573, \"cat-2\": \"Density: 20\", \"cat_2_index\": 183, \"group\": [962.0, 348.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83579_BALBc-1_X02_Y02_783_829\", \"ini\": 170, \"clust\": 2394, \"rank\": 1865, \"rankvar\": 1924, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2656, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2197, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2212, \"group\": [2394.0, 1040.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83813_BALBc-1_X02_Y02_786_688\", \"ini\": 169, \"clust\": 1857, \"rank\": 2784, \"rankvar\": 2261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2657, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2751, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1919, \"group\": [1861.0, 800.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83857_BALBc-1_X02_Y02_787_296\", \"ini\": 168, \"clust\": 1991, \"rank\": 1561, \"rankvar\": 1497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2658, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1763, \"cat-2\": \"Density: 23\", \"cat_2_index\": 454, \"group\": [1991.0, 872.0, 226.0, 61.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84179_BALBc-1_X02_Y02_790_487\", \"ini\": 167, \"clust\": 1777, \"rank\": 2273, \"rankvar\": 2345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2659, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2752, \"cat-2\": \"Density: 22\", \"cat_2_index\": 339, \"group\": [1777.0, 778.0, 206.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84223_BALBc-1_X02_Y02_791_169\", \"ini\": 166, \"clust\": 1313, \"rank\": 1696, \"rankvar\": 1736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2660, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 731, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1163, \"group\": [1316.0, 508.0, 124.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84480_BALBc-1_X02_Y02_793_920\", \"ini\": 165, \"clust\": 2342, \"rank\": 2799, \"rankvar\": 2698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2661, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2198, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1920, \"group\": [2342.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84554_BALBc-1_X02_Y02_794_978\", \"ini\": 164, \"clust\": 1051, \"rank\": 622, \"rankvar\": 289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2662, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2199, \"cat-2\": \"Density: 24\", \"cat_2_index\": 574, \"group\": [1056.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84577_BALBc-1_X02_Y02_795_333\", \"ini\": 163, \"clust\": 2034, \"rank\": 2400, \"rankvar\": 1410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2663, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 574, \"cat-2\": \"Density: 23\", \"cat_2_index\": 455, \"group\": [2034.0, 905.0, 236.0, 62.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84864_BALBc-1_X02_Y02_798_754\", \"ini\": 162, \"clust\": 1972, \"rank\": 1451, \"rankvar\": 2313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2664, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1514, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2213, \"group\": [1971.0, 856.0, 220.0, 59.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85074_BALBc-1_X02_Y02_80_689\", \"ini\": 161, \"clust\": 987, \"rank\": 870, \"rankvar\": 247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2665, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1515, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2132, \"group\": [991.0, 359.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85146_BALBc-1_X02_Y02_800_596\", \"ini\": 160, \"clust\": 2073, \"rank\": 1496, \"rankvar\": 1358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2666, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2816, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1586, \"group\": [2076.0, 940.0, 252.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85365_BALBc-1_X02_Y02_803_450\", \"ini\": 159, \"clust\": 469, \"rank\": 491, \"rankvar\": 674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2667, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 575, \"cat-2\": \"Density: 22\", \"cat_2_index\": 340, \"group\": [475.0, 264.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85452_BALBc-1_X02_Y02_804_6\", \"ini\": 158, \"clust\": 1511, \"rank\": 2027, \"rankvar\": 1392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2668, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 942, \"cat-2\": \"Density: 26\", \"cat_2_index\": 851, \"group\": [1511.0, 584.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85759_BALBc-1_X02_Y02_808_377\", \"ini\": 157, \"clust\": 1573, \"rank\": 981, \"rankvar\": 1872, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2669, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 576, \"cat-2\": \"Density: 23\", \"cat_2_index\": 456, \"group\": [1573.0, 624.0, 151.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85916_BALBc-1_X02_Y02_81_656\", \"ini\": 156, \"clust\": 2481, \"rank\": 2189, \"rankvar\": 2134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2670, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1516, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2214, \"group\": [2482.0, 1070.0, 279.0, 76.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85926_BALBc-1_X02_Y02_81_785\", \"ini\": 155, \"clust\": 2528, \"rank\": 2409, \"rankvar\": 1717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2671, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1517, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1001, \"group\": [2529.0, 1084.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85942_BALBc-1_X02_Y02_81_991\", \"ini\": 154, \"clust\": 272, \"rank\": 740, \"rankvar\": 2017, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2672, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1518, \"cat-2\": \"Density: 16\", \"cat_2_index\": 66, \"group\": [273.0, 173.0, 51.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86002_BALBc-1_X02_Y02_810_796\", \"ini\": 153, \"clust\": 996, \"rank\": 585, \"rankvar\": 957, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2673, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 577, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2294, \"group\": [997.0, 361.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86177_BALBc-1_X02_Y02_813_187\", \"ini\": 152, \"clust\": 534, \"rank\": 74, \"rankvar\": 701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2674, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1556, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1164, \"group\": [533.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86247_BALBc-1_X02_Y02_813_882\", \"ini\": 151, \"clust\": 2447, \"rank\": 1837, \"rankvar\": 1877, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2675, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2200, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2033, \"group\": [2447.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86277_BALBc-1_X02_Y02_814_239\", \"ini\": 150, \"clust\": 546, \"rank\": 134, \"rankvar\": 717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2676, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2497, \"cat-2\": \"Density: 24\", \"cat_2_index\": 575, \"group\": [547.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86338_BALBc-1_X02_Y02_814_833\", \"ini\": 149, \"clust\": 2326, \"rank\": 2292, \"rankvar\": 2085, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2677, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2201, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2295, \"group\": [2325.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86350_BALBc-1_X02_Y02_815_1001\", \"ini\": 148, \"clust\": 2200, \"rank\": 2390, \"rankvar\": 1818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2678, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 578, \"cat-2\": \"Density: 17\", \"cat_2_index\": 84, \"group\": [2201.0, 1010.0, 269.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86446_BALBc-1_X02_Y02_816_410\", \"ini\": 147, \"clust\": 461, \"rank\": 686, \"rankvar\": 495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2679, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 579, \"cat-2\": \"Density: 25\", \"cat_2_index\": 704, \"group\": [463.0, 260.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86456_BALBc-1_X02_Y02_816_577\", \"ini\": 146, \"clust\": 1086, \"rank\": 535, \"rankvar\": 1338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2680, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1557, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1448, \"group\": [1086.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86485_BALBc-1_X02_Y02_816_906\", \"ini\": 145, \"clust\": 2464, \"rank\": 1537, \"rankvar\": 1770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2681, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2202, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1820, \"group\": [2464.0, 1058.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86584_BALBc-1_X02_Y02_818_376\", \"ini\": 144, \"clust\": 462, \"rank\": 213, \"rankvar\": 1620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2682, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 580, \"cat-2\": \"Density: 24\", \"cat_2_index\": 576, \"group\": [461.0, 260.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86654_BALBc-1_X02_Y02_819_312\", \"ini\": 143, \"clust\": 32, \"rank\": 856, \"rankvar\": 2254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2683, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 581, \"cat-2\": \"Density: 23\", \"cat_2_index\": 457, \"group\": [32.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86760_BALBc-1_X02_Y02_82_873\", \"ini\": 142, \"clust\": 1081, \"rank\": 181, \"rankvar\": 1434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2684, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1519, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1311, \"group\": [1084.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86819_BALBc-1_X02_Y02_820_592\", \"ini\": 141, \"clust\": 891, \"rank\": 633, \"rankvar\": 763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2685, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 582, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1587, \"group\": [891.0, 326.0, 75.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86859_BALBc-1_X02_Y02_821_272\", \"ini\": 140, \"clust\": 221, \"rank\": 688, \"rankvar\": 1283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2686, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 583, \"cat-2\": \"Density: 24\", \"cat_2_index\": 577, \"group\": [220.0, 140.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86882_BALBc-1_X02_Y02_821_469\", \"ini\": 139, \"clust\": 519, \"rank\": 496, \"rankvar\": 499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2687, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2753, \"cat-2\": \"Density: 22\", \"cat_2_index\": 341, \"group\": [519.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86995_BALBc-1_X02_Y02_822_773\", \"ini\": 138, \"clust\": 2195, \"rank\": 1905, \"rankvar\": 191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2688, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 584, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2034, \"group\": [2199.0, 1009.0, 269.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87010_BALBc-1_X02_Y02_822_970\", \"ini\": 137, \"clust\": 2449, \"rank\": 2207, \"rankvar\": 2544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2689, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2203, \"cat-2\": \"Density: 25\", \"cat_2_index\": 705, \"group\": [2450.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87223_BALBc-1_X02_Y02_825_637\", \"ini\": 136, \"clust\": 671, \"rank\": 264, \"rankvar\": 47, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2690, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2754, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2035, \"group\": [671.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87231_BALBc-1_X02_Y02_825_685\", \"ini\": 135, \"clust\": 2794, \"rank\": 2819, \"rankvar\": 2580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2691, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1520, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2215, \"group\": [2794.0, 1179.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87361_BALBc-1_X02_Y02_827_663\", \"ini\": 134, \"clust\": 1833, \"rank\": 2681, \"rankvar\": 2118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2692, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2755, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2423, \"group\": [1833.0, 795.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87401_BALBc-1_X02_Y02_828_136\", \"ini\": 133, \"clust\": 314, \"rank\": 888, \"rankvar\": 505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2693, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 878, \"cat-2\": \"Density: 25\", \"cat_2_index\": 706, \"group\": [317.0, 198.0, 57.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87753_BALBc-1_X02_Y02_831_750\", \"ini\": 132, \"clust\": 941, \"rank\": 1253, \"rankvar\": 216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2694, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1521, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2036, \"group\": [944.0, 342.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87772_BALBc-1_X02_Y02_832_176\", \"ini\": 131, \"clust\": 1593, \"rank\": 1441, \"rankvar\": 1635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2695, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1558, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1165, \"group\": [1593.0, 636.0, 155.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87940_BALBc-1_X02_Y02_834_449\", \"ini\": 130, \"clust\": 210, \"rank\": 1313, \"rankvar\": 972, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2696, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 585, \"cat-2\": \"Density: 22\", \"cat_2_index\": 342, \"group\": [212.0, 138.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88160_BALBc-1_X02_Y02_837_355\", \"ini\": 129, \"clust\": 463, \"rank\": 190, \"rankvar\": 1346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2697, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 586, \"cat-2\": \"Density: 23\", \"cat_2_index\": 458, \"group\": [462.0, 260.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88190_BALBc-1_X02_Y02_837_668\", \"ini\": 128, \"clust\": 706, \"rank\": 122, \"rankvar\": 1485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2698, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 587, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2296, \"group\": [712.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88264_BALBc-1_X02_Y02_838_719\", \"ini\": 127, \"clust\": 2122, \"rank\": 1482, \"rankvar\": 1594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2699, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1522, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2133, \"group\": [2120.0, 960.0, 255.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88363_BALBc-1_X02_Y02_839_932\", \"ini\": 126, \"clust\": 2404, \"rank\": 1456, \"rankvar\": 254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2700, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2204, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1704, \"group\": [2408.0, 1043.0, 271.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88394_BALBc-1_X02_Y02_84_515\", \"ini\": 125, \"clust\": 2686, \"rank\": 803, \"rankvar\": 2666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2701, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1523, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1921, \"group\": [2687.0, 1142.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88440_BALBc-1_X02_Y02_84_969\", \"ini\": 124, \"clust\": 1106, \"rank\": 397, \"rankvar\": 1478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2702, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1524, \"cat-2\": \"Density: 20\", \"cat_2_index\": 184, \"group\": [1107.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88503_BALBc-1_X02_Y02_840_832\", \"ini\": 123, \"clust\": 2488, \"rank\": 1716, \"rankvar\": 968, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2703, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 588, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2134, \"group\": [2487.0, 1072.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88555_BALBc-1_X02_Y02_841_439\", \"ini\": 122, \"clust\": 22, \"rank\": 1269, \"rankvar\": 971, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2704, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 589, \"cat-2\": \"Density: 23\", \"cat_2_index\": 459, \"group\": [23.0, 17.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88760_BALBc-1_X02_Y02_844_277\", \"ini\": 121, \"clust\": 229, \"rank\": 861, \"rankvar\": 227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2705, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 590, \"cat-2\": \"Density: 22\", \"cat_2_index\": 343, \"group\": [230.0, 144.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88917_BALBc-1_X02_Y02_846_331\", \"ini\": 120, \"clust\": 1041, \"rank\": 505, \"rankvar\": 34, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2706, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 591, \"cat-2\": \"Density: 24\", \"cat_2_index\": 578, \"group\": [1045.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88934_BALBc-1_X02_Y02_846_601\", \"ini\": 119, \"clust\": 1224, \"rank\": 1493, \"rankvar\": 908, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2707, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2756, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1705, \"group\": [1225.0, 445.0, 104.0, 24.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88985_BALBc-1_X02_Y02_847_249\", \"ini\": 118, \"clust\": 768, \"rank\": 823, \"rankvar\": 537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2708, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2498, \"cat-2\": \"Density: 25\", \"cat_2_index\": 707, \"group\": [769.0, 284.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89032_BALBc-1_X02_Y02_847_706\", \"ini\": 117, \"clust\": 2248, \"rank\": 2148, \"rankvar\": 1970, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2709, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 592, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2216, \"group\": [2254.0, 1028.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89042_BALBc-1_X02_Y02_847_797\", \"ini\": 116, \"clust\": 944, \"rank\": 791, \"rankvar\": 791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2710, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2817, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2037, \"group\": [942.0, 342.0, 78.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89169_BALBc-1_X02_Y02_849_386\", \"ini\": 115, \"clust\": 87, \"rank\": 1530, \"rankvar\": 804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2711, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 593, \"cat-2\": \"Density: 23\", \"cat_2_index\": 460, \"group\": [90.0, 47.0, 10.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89338_BALBc-1_X02_Y02_850_734\", \"ini\": 114, \"clust\": 1941, \"rank\": 1114, \"rankvar\": 1509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2712, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 594, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2038, \"group\": [1942.0, 834.0, 214.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89357_BALBc-1_X02_Y02_851_140\", \"ini\": 113, \"clust\": 2059, \"rank\": 1267, \"rankvar\": 330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2713, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 879, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1002, \"group\": [2060.0, 928.0, 248.0, 69.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89396_BALBc-1_X02_Y02_851_573\", \"ini\": 112, \"clust\": 1825, \"rank\": 2620, \"rankvar\": 2358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2714, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1559, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1312, \"group\": [1825.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89419_BALBc-1_X02_Y02_851_872\", \"ini\": 111, \"clust\": 1099, \"rank\": 671, \"rankvar\": 930, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2715, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2205, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1821, \"group\": [1100.0, 371.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89427_BALBc-1_X02_Y02_852_1004\", \"ini\": 110, \"clust\": 2617, \"rank\": 1910, \"rankvar\": 1676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2716, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 595, \"cat-2\": \"Density: 16\", \"cat_2_index\": 67, \"group\": [2616.0, 1094.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89491_BALBc-1_X02_Y02_852_856\", \"ini\": 109, \"clust\": 339, \"rank\": 886, \"rankvar\": 762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2717, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 596, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1922, \"group\": [340.0, 214.0, 61.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89556_BALBc-1_X02_Y02_853_642\", \"ini\": 108, \"clust\": 2520, \"rank\": 2333, \"rankvar\": 1030, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2718, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2757, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2135, \"group\": [2521.0, 1083.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89743_BALBc-1_X02_Y02_855_754\", \"ini\": 107, \"clust\": 2772, \"rank\": 1986, \"rankvar\": 121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2719, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2818, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1822, \"group\": [2776.0, 1177.0, 302.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89977_BALBc-1_X02_Y02_858_899\", \"ini\": 106, \"clust\": 2106, \"rank\": 1304, \"rankvar\": 1333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2720, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2206, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1706, \"group\": [2105.0, 950.0, 254.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90055_BALBc-1_X02_Y02_859_983\", \"ini\": 105, \"clust\": 2250, \"rank\": 2383, \"rankvar\": 2359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2721, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 597, \"cat-2\": \"Density: 24\", \"cat_2_index\": 579, \"group\": [2250.0, 1027.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90109_BALBc-1_X02_Y02_86_60\", \"ini\": 104, \"clust\": 1568, \"rank\": 1604, \"rankvar\": 1675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2722, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 732, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1313, \"group\": [1571.0, 622.0, 151.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90319_BALBc-1_X02_Y02_862_37\", \"ini\": 103, \"clust\": 1059, \"rank\": 256, \"rankvar\": 579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2723, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1991, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1003, \"group\": [1060.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90441_BALBc-1_X02_Y02_864_212\", \"ini\": 102, \"clust\": 43, \"rank\": 812, \"rankvar\": 2487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2724, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2499, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1166, \"group\": [43.0, 24.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90472_BALBc-1_X02_Y02_864_516\", \"ini\": 101, \"clust\": 423, \"rank\": 642, \"rankvar\": 1580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2725, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1525, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1004, \"group\": [426.0, 247.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90584_BALBc-1_X02_Y02_865_954\", \"ini\": 100, \"clust\": 245, \"rank\": 761, \"rankvar\": 1592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2726, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2207, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1314, \"group\": [245.0, 153.0, 46.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90756_BALBc-1_X02_Y02_868_247\", \"ini\": 99, \"clust\": 2692, \"rank\": 1213, \"rankvar\": 1944, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2727, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1764, \"cat-2\": \"Density: 24\", \"cat_2_index\": 580, \"group\": [2693.0, 1143.0, 295.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90964_BALBc-1_X02_Y02_87_810\", \"ini\": 98, \"clust\": 2679, \"rank\": 1240, \"rankvar\": 1089, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2728, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1688, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1167, \"group\": [2680.0, 1138.0, 292.0, 80.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90993_BALBc-1_X02_Y02_870_113\", \"ini\": 97, \"clust\": 790, \"rank\": 113, \"rankvar\": 1264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2729, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 645, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1005, \"group\": [793.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91037_BALBc-1_X02_Y02_870_608\", \"ini\": 96, \"clust\": 1854, \"rank\": 2761, \"rankvar\": 2286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2730, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2758, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1588, \"group\": [1853.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91170_BALBc-1_X02_Y02_872_455\", \"ini\": 95, \"clust\": 514, \"rank\": 276, \"rankvar\": 719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2731, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1526, \"cat-2\": \"Density: 19\", \"cat_2_index\": 136, \"group\": [513.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91208_BALBc-1_X02_Y02_872_797\", \"ini\": 94, \"clust\": 2343, \"rank\": 2726, \"rankvar\": 2113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2732, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2819, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1923, \"group\": [2343.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91245_BALBc-1_X02_Y02_873_333\", \"ini\": 93, \"clust\": 66, \"rank\": 2014, \"rankvar\": 2518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2733, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 598, \"cat-2\": \"Density: 25\", \"cat_2_index\": 708, \"group\": [63.0, 28.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91506_BALBc-1_X02_Y02_876_651\", \"ini\": 92, \"clust\": 681, \"rank\": 156, \"rankvar\": 236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2734, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2759, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2217, \"group\": [680.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91693_BALBc-1_X02_Y02_879_140\", \"ini\": 91, \"clust\": 1576, \"rank\": 879, \"rankvar\": 1502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2735, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 646, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1589, \"group\": [1576.0, 626.0, 152.0, 36.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91994_BALBc-1_X02_Y02_881_868\", \"ini\": 90, \"clust\": 2584, \"rank\": 2092, \"rankvar\": 1044, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2736, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2208, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1707, \"group\": [2585.0, 1087.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92030_BALBc-1_X02_Y02_882_354\", \"ini\": 89, \"clust\": 541, \"rank\": 153, \"rankvar\": 1077, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2737, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 599, \"cat-2\": \"Density: 23\", \"cat_2_index\": 461, \"group\": [541.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92117_BALBc-1_X02_Y02_883_671\", \"ini\": 88, \"clust\": 1848, \"rank\": 2642, \"rankvar\": 1331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2738, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2760, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2039, \"group\": [1849.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92273_BALBc-1_X02_Y02_886_181\", \"ini\": 87, \"clust\": 1528, \"rank\": 1059, \"rankvar\": 824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2739, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2466, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1315, \"group\": [1527.0, 590.0, 144.0, 34.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92311_BALBc-1_X02_Y02_886_596\", \"ini\": 86, \"clust\": 1858, \"rank\": 2647, \"rankvar\": 1647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2740, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2820, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1316, \"group\": [1860.0, 800.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92434_BALBc-1_X02_Y02_888_295\", \"ini\": 85, \"clust\": 235, \"rank\": 1100, \"rankvar\": 285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2741, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 880, \"cat-2\": \"Density: 25\", \"cat_2_index\": 709, \"group\": [240.0, 151.0, 45.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92552_BALBc-1_X02_Y02_889_735\", \"ini\": 84, \"clust\": 963, \"rank\": 342, \"rankvar\": 599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2742, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 600, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1924, \"group\": [965.0, 349.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92558_BALBc-1_X02_Y02_889_853\", \"ini\": 83, \"clust\": 2251, \"rank\": 2306, \"rankvar\": 1844, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2743, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 601, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1708, \"group\": [2253.0, 1027.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92570_BALBc-1_X02_Y02_889_96\", \"ini\": 82, \"clust\": 507, \"rank\": 451, \"rankvar\": 102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2744, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 881, \"cat-2\": \"Density: 26\", \"cat_2_index\": 852, \"group\": [505.0, 272.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92700_BALBc-1_X02_Y02_890_746\", \"ini\": 81, \"clust\": 2346, \"rank\": 2700, \"rankvar\": 2153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2745, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2821, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1709, \"group\": [2346.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92756_BALBc-1_X02_Y02_891_44\", \"ini\": 80, \"clust\": 320, \"rank\": 764, \"rankvar\": 341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2746, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 882, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1168, \"group\": [320.0, 200.0, 58.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92817_BALBc-1_X02_Y02_892_413\", \"ini\": 79, \"clust\": 810, \"rank\": 354, \"rankvar\": 1845, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2747, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 602, \"cat-2\": \"Density: 26\", \"cat_2_index\": 853, \"group\": [811.0, 292.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92906_BALBc-1_X02_Y02_893_546\", \"ini\": 78, \"clust\": 2658, \"rank\": 2685, \"rankvar\": 1345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2748, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1527, \"cat-2\": \"Density: 24\", \"cat_2_index\": 581, \"group\": [2657.0, 1117.0, 286.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92912_BALBc-1_X02_Y02_893_644\", \"ini\": 77, \"clust\": 2292, \"rank\": 2465, \"rankvar\": 1820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2749, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2761, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1925, \"group\": [2292.0, 1034.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92924_BALBc-1_X02_Y02_893_808\", \"ini\": 76, \"clust\": 677, \"rank\": 49, \"rankvar\": 614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2750, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2822, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1710, \"group\": [673.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93103_BALBc-1_X02_Y02_895_993\", \"ini\": 75, \"clust\": 2218, \"rank\": 2163, \"rankvar\": 1148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2751, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 603, \"cat-2\": \"Density: 17\", \"cat_2_index\": 85, \"group\": [2219.0, 1020.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93223_BALBc-1_X02_Y02_897_705\", \"ini\": 74, \"clust\": 2264, \"rank\": 2327, \"rankvar\": 1922, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2752, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2762, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2040, \"group\": [2263.0, 1032.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93348_BALBc-1_X02_Y02_899_389\", \"ini\": 73, \"clust\": 177, \"rank\": 1173, \"rankvar\": 646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2753, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 604, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1006, \"group\": [180.0, 119.0, 38.0, 14.0, 5.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93415_BALBc-1_X02_Y02_9_38\", \"ini\": 72, \"clust\": 1927, \"rank\": 1857, \"rankvar\": 663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2754, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2467, \"cat-2\": \"Density: 24\", \"cat_2_index\": 582, \"group\": [1930.0, 825.0, 213.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93437_BALBc-1_X02_Y02_9_690\", \"ini\": 71, \"clust\": 1188, \"rank\": 1150, \"rankvar\": 1694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2755, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1528, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1711, \"group\": [1189.0, 420.0, 95.0, 22.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93474_BALBc-1_X02_Y02_90_174\", \"ini\": 70, \"clust\": 1240, \"rank\": 1318, \"rankvar\": 378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2756, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2763, \"cat-2\": \"Density: 20\", \"cat_2_index\": 185, \"group\": [1241.0, 455.0, 107.0, 25.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93570_BALBc-1_X02_Y02_900_320\", \"ini\": 69, \"clust\": 86, \"rank\": 1308, \"rankvar\": 1353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2757, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 605, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1007, \"group\": [87.0, 44.0, 9.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93778_BALBc-1_X02_Y02_903_445\", \"ini\": 68, \"clust\": 65, \"rank\": 1473, \"rankvar\": 2377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2758, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1529, \"cat-2\": \"Density: 23\", \"cat_2_index\": 462, \"group\": [65.0, 28.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93852_BALBc-1_X02_Y02_904_543\", \"ini\": 67, \"clust\": 291, \"rank\": 746, \"rankvar\": 1860, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2759, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1530, \"cat-2\": \"Density: 24\", \"cat_2_index\": 583, \"group\": [291.0, 184.0, 53.0, 17.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93948_BALBc-1_X02_Y02_905_80\", \"ini\": 66, \"clust\": 1701, \"rank\": 1265, \"rankvar\": 1637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2760, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 883, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1317, \"group\": [1702.0, 725.0, 186.0, 50.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94108_BALBc-1_X02_Y02_907_946\", \"ini\": 65, \"clust\": 2382, \"rank\": 2227, \"rankvar\": 1240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2761, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2209, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1449, \"group\": [2382.0, 1036.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94454_BALBc-1_X02_Y02_911_705\", \"ini\": 64, \"clust\": 643, \"rank\": 0, \"rankvar\": 419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2762, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2764, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1926, \"group\": [638.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94481_BALBc-1_X02_Y02_912_148\", \"ini\": 63, \"clust\": 231, \"rank\": 751, \"rankvar\": 951, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2763, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 647, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1318, \"group\": [232.0, 145.0, 44.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94484_BALBc-1_X02_Y02_912_174\", \"ini\": 62, \"clust\": 1053, \"rank\": 473, \"rankvar\": 370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2764, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 606, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1319, \"group\": [1054.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94610_BALBc-1_X02_Y02_913_822\", \"ini\": 61, \"clust\": 2308, \"rank\": 2631, \"rankvar\": 2492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2765, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2765, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1450, \"group\": [2309.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94815_BALBc-1_X02_Y02_916_641\", \"ini\": 60, \"clust\": 413, \"rank\": 620, \"rankvar\": 27, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2766, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2766, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1590, \"group\": [416.0, 243.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94838_BALBc-1_X02_Y02_916_85\", \"ini\": 59, \"clust\": 656, \"rank\": 339, \"rankvar\": 8, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2767, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 884, \"cat-2\": \"Density: 25\", \"cat_2_index\": 710, \"group\": [653.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94839_BALBc-1_X02_Y02_916_856\", \"ini\": 58, \"clust\": 2244, \"rank\": 2607, \"rankvar\": 2114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2768, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2767, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1451, \"group\": [2245.0, 1026.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94853_BALBc-1_X02_Y02_917_213\", \"ini\": 57, \"clust\": 628, \"rank\": 132, \"rankvar\": 31, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2769, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 885, \"cat-2\": \"Density: 26\", \"cat_2_index\": 854, \"group\": [629.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94891_BALBc-1_X02_Y02_917_742\", \"ini\": 56, \"clust\": 1030, \"rank\": 391, \"rankvar\": 55, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2770, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 607, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1591, \"group\": [1030.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95053_BALBc-1_X02_Y02_919_786\", \"ini\": 55, \"clust\": 1046, \"rank\": 509, \"rankvar\": 250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2771, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2823, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1823, \"group\": [1047.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95070_BALBc-1_X02_Y02_919_984\", \"ini\": 54, \"clust\": 1067, \"rank\": 192, \"rankvar\": 746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2772, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2210, \"cat-2\": \"Density: 20\", \"cat_2_index\": 186, \"group\": [1069.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95344_BALBc-1_X02_Y02_922_457\", \"ini\": 53, \"clust\": 1055, \"rank\": 483, \"rankvar\": 657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2773, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1531, \"cat-2\": \"Density: 22\", \"cat_2_index\": 344, \"group\": [1053.0, 369.0, 79.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95351_BALBc-1_X02_Y02_922_549\", \"ini\": 52, \"clust\": 1744, \"rank\": 2809, \"rankvar\": 2408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2774, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2768, \"cat-2\": \"Density: 22\", \"cat_2_index\": 345, \"group\": [1746.0, 761.0, 202.0, 55.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95458_BALBc-1_X02_Y02_923_893\", \"ini\": 51, \"clust\": 407, \"rank\": 540, \"rankvar\": 81, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2775, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2211, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1452, \"group\": [407.0, 241.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95495_BALBc-1_X02_Y02_924_349\", \"ini\": 50, \"clust\": 158, \"rank\": 1656, \"rankvar\": 551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2776, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 608, \"cat-2\": \"Density: 24\", \"cat_2_index\": 584, \"group\": [160.0, 103.0, 29.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95866_BALBc-1_X02_Y02_928_872\", \"ini\": 49, \"clust\": 2439, \"rank\": 2360, \"rankvar\": 2421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2777, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2769, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1592, \"group\": [2439.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95874_BALBc-1_X02_Y02_929_132\", \"ini\": 48, \"clust\": 789, \"rank\": 345, \"rankvar\": 2298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2778, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2468, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1320, \"group\": [790.0, 290.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96102_BALBc-1_X02_Y02_931_305\", \"ini\": 47, \"clust\": 199, \"rank\": 625, \"rankvar\": 535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2779, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 886, \"cat-2\": \"Density: 24\", \"cat_2_index\": 585, \"group\": [197.0, 129.0, 42.0, 15.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96234_BALBc-1_X02_Y02_932_924\", \"ini\": 46, \"clust\": 2319, \"rank\": 2301, \"rankvar\": 1980, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2780, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2212, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1593, \"group\": [2321.0, 1035.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96350_BALBc-1_X02_Y02_934_713\", \"ini\": 45, \"clust\": 2242, \"rank\": 2184, \"rankvar\": 1905, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2781, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2770, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1594, \"group\": [2243.0, 1025.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96428_BALBc-1_X02_Y02_935_613\", \"ini\": 44, \"clust\": 1926, \"rank\": 1885, \"rankvar\": 2107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2782, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 609, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1321, \"group\": [1931.0, 826.0, 213.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96640_BALBc-1_X02_Y02_938_684\", \"ini\": 43, \"clust\": 2656, \"rank\": 2203, \"rankvar\": 329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2783, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2771, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1453, \"group\": [2658.0, 1118.0, 286.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97000_BALBc-1_X02_Y02_942_474\", \"ini\": 42, \"clust\": 1778, \"rank\": 1998, \"rankvar\": 1752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2784, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2772, \"cat-2\": \"Density: 23\", \"cat_2_index\": 463, \"group\": [1783.0, 782.0, 206.0, 56.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97011_BALBc-1_X02_Y02_942_662\", \"ini\": 41, \"clust\": 2182, \"rank\": 1472, \"rankvar\": 1144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2785, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2773, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1454, \"group\": [2183.0, 999.0, 266.0, 73.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97056_BALBc-1_X02_Y02_943_193\", \"ini\": 40, \"clust\": 524, \"rank\": 297, \"rankvar\": 90, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2786, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2774, \"cat-2\": \"Density: 25\", \"cat_2_index\": 711, \"group\": [524.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97137_BALBc-1_X02_Y02_944_154\", \"ini\": 39, \"clust\": 1298, \"rank\": 2004, \"rankvar\": 313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2787, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2775, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1824, \"group\": [1299.0, 497.0, 123.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97167_BALBc-1_X02_Y02_944_435\", \"ini\": 38, \"clust\": 734, \"rank\": 147, \"rankvar\": 460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2788, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 936, \"cat-2\": \"Density: 21\", \"cat_2_index\": 245, \"group\": [736.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97214_BALBc-1_X02_Y02_944_966\", \"ini\": 37, \"clust\": 637, \"rank\": 4, \"rankvar\": 469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2789, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2213, \"cat-2\": \"Density: 24\", \"cat_2_index\": 586, \"group\": [633.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97451_BALBc-1_X02_Y02_948_331\", \"ini\": 36, \"clust\": 515, \"rank\": 396, \"rankvar\": 584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2790, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 610, \"cat-2\": \"Density: 21\", \"cat_2_index\": 246, \"group\": [514.0, 274.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97491_BALBc-1_X02_Y02_948_932\", \"ini\": 35, \"clust\": 2140, \"rank\": 1704, \"rankvar\": 1454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2791, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2214, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1595, \"group\": [2140.0, 970.0, 258.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97517_BALBc-1_X02_Y02_949_240\", \"ini\": 34, \"clust\": 2145, \"rank\": 1599, \"rankvar\": 424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2792, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 887, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1008, \"group\": [2149.0, 977.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97549_BALBc-1_X02_Y02_949_586\", \"ini\": 33, \"clust\": 1822, \"rank\": 2729, \"rankvar\": 2248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2793, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1589, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1009, \"group\": [1822.0, 794.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98069_BALBc-1_X02_Y02_955_308\", \"ini\": 32, \"clust\": 826, \"rank\": 971, \"rankvar\": 859, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2794, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 611, \"cat-2\": \"Density: 22\", \"cat_2_index\": 346, \"group\": [825.0, 294.0, 69.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98157_BALBc-1_X02_Y02_956_396\", \"ini\": 31, \"clust\": 1707, \"rank\": 1449, \"rankvar\": 621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2795, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 612, \"cat-2\": \"Density: 25\", \"cat_2_index\": 712, \"group\": [1710.0, 733.0, 189.0, 51.0, 12.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98194_BALBc-1_X02_Y02_956_883\", \"ini\": 30, \"clust\": 2388, \"rank\": 2585, \"rankvar\": 2711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2796, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2215, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1712, \"group\": [2390.0, 1038.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98263_BALBc-1_X02_Y02_957_843\", \"ini\": 29, \"clust\": 597, \"rank\": 151, \"rankvar\": 276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2797, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2776, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1322, \"group\": [595.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98313_BALBc-1_X02_Y02_958_647\", \"ini\": 28, \"clust\": 1293, \"rank\": 2435, \"rankvar\": 2004, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2798, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 613, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1323, \"group\": [1297.0, 495.0, 122.0, 32.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98322_BALBc-1_X02_Y02_958_769\", \"ini\": 27, \"clust\": 2437, \"rank\": 1961, \"rankvar\": 2173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2799, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2777, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1455, \"group\": [2440.0, 1056.0, 274.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98806_BALBc-1_X02_Y02_964_191\", \"ini\": 26, \"clust\": 2160, \"rank\": 1920, \"rankvar\": 1688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2800, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 888, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1169, \"group\": [2161.0, 982.0, 259.0, 70.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98856_BALBc-1_X02_Y02_964_78\", \"ini\": 25, \"clust\": 38, \"rank\": 825, \"rankvar\": 2704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2801, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 889, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1596, \"group\": [36.0, 21.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98994_BALBc-1_X02_Y02_966_741\", \"ini\": 24, \"clust\": 2240, \"rank\": 2285, \"rankvar\": 2267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2802, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2778, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1713, \"group\": [2241.0, 1024.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99000_BALBc-1_X02_Y02_966_800\", \"ini\": 23, \"clust\": 1839, \"rank\": 2599, \"rankvar\": 1876, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2803, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2779, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1456, \"group\": [1842.0, 799.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99040_BALBc-1_X02_Y02_967_294\", \"ini\": 22, \"clust\": 1979, \"rank\": 1270, \"rankvar\": 1107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2804, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 890, \"cat-2\": \"Density: 21\", \"cat_2_index\": 247, \"group\": [1980.0, 864.0, 223.0, 60.0, 14.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99129_BALBc-1_X02_Y02_968_372\", \"ini\": 21, \"clust\": 841, \"rank\": 372, \"rankvar\": 1419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2805, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 614, \"cat-2\": \"Density: 24\", \"cat_2_index\": 587, \"group\": [840.0, 300.0, 70.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99400_BALBc-1_X02_Y02_970_970\", \"ini\": 20, \"clust\": 2598, \"rank\": 2097, \"rankvar\": 1381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2806, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2216, \"cat-2\": \"Density: 22\", \"cat_2_index\": 347, \"group\": [2598.0, 1090.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99453_BALBc-1_X02_Y02_971_668\", \"ini\": 19, \"clust\": 1167, \"rank\": 1632, \"rankvar\": 1481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2807, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2780, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1597, \"group\": [1167.0, 401.0, 86.0, 19.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99472_BALBc-1_X02_Y02_971_945\", \"ini\": 18, \"clust\": 408, \"rank\": 545, \"rankvar\": 467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2808, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2217, \"cat-2\": \"Density: 25\", \"cat_2_index\": 713, \"group\": [408.0, 241.0, 66.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99576_BALBc-1_X02_Y02_973_307\", \"ini\": 17, \"clust\": 479, \"rank\": 73, \"rankvar\": 1038, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2809, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 615, \"cat-2\": \"Density: 22\", \"cat_2_index\": 348, \"group\": [480.0, 265.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99819_BALBc-1_X02_Y02_976_413\", \"ini\": 16, \"clust\": 94, \"rank\": 1710, \"rankvar\": 1050, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2810, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 937, \"cat-2\": \"Density: 25\", \"cat_2_index\": 714, \"group\": [98.0, 53.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99924_BALBc-1_X02_Y02_977_857\", \"ini\": 15, \"clust\": 1864, \"rank\": 2574, \"rankvar\": 1950, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2811, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2218, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1714, \"group\": [1863.0, 800.0, 210.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100214_BALBc-1_X02_Y02_980_820\", \"ini\": 14, \"clust\": 2178, \"rank\": 1225, \"rankvar\": 228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2812, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2781, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1324, \"group\": [2178.0, 994.0, 264.0, 73.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100337_BALBc-1_X02_Y02_982_632\", \"ini\": 13, \"clust\": 1944, \"rank\": 1815, \"rankvar\": 2005, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2813, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2782, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1325, \"group\": [1944.0, 835.0, 214.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100367_BALBc-1_X02_Y02_982_992\", \"ini\": 12, \"clust\": 2417, \"rank\": 2110, \"rankvar\": 915, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2814, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2219, \"cat-2\": \"Density: 17\", \"cat_2_index\": 86, \"group\": [2418.0, 1049.0, 273.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100561_BALBc-1_X02_Y02_985_561\", \"ini\": 11, \"clust\": 1879, \"rank\": 2103, \"rankvar\": 2482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2815, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2783, \"cat-2\": \"Density: 22\", \"cat_2_index\": 349, \"group\": [1879.0, 805.0, 211.0, 57.0, 13.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100649_BALBc-1_X02_Y02_986_672\", \"ini\": 10, \"clust\": 2220, \"rank\": 2076, \"rankvar\": 1390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2816, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2784, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1825, \"group\": [2221.0, 1020.0, 270.0, 74.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100670_BALBc-1_X02_Y02_987_14\", \"ini\": 9, \"clust\": 67, \"rank\": 1904, \"rankvar\": 2527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2817, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1532, \"cat-2\": \"Density: 23\", \"cat_2_index\": 464, \"group\": [64.0, 28.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100764_BALBc-1_X02_Y02_988_366\", \"ini\": 8, \"clust\": 1171, \"rank\": 1239, \"rankvar\": 70, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2818, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1170, \"group\": [1172.0, 406.0, 90.0, 20.0, 7.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100956_BALBc-1_X02_Y02_99_748\", \"ini\": 7, \"clust\": 2592, \"rank\": 2209, \"rankvar\": 2052, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2819, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1533, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1715, \"group\": [2592.0, 1088.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100988_BALBc-1_X02_Y02_990_472\", \"ini\": 6, \"clust\": 1144, \"rank\": 938, \"rankvar\": 1043, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2820, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 938, \"cat-2\": \"Density: 20\", \"cat_2_index\": 187, \"group\": [1142.0, 382.0, 80.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101005_BALBc-1_X02_Y02_990_71\", \"ini\": 5, \"clust\": 690, \"rank\": 78, \"rankvar\": 1040, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2821, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2469, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1010, \"group\": [689.0, 276.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101037_BALBc-1_X02_Y02_991_103\", \"ini\": 4, \"clust\": 2803, \"rank\": 2322, \"rankvar\": 1796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2822, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2470, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1326, \"group\": [2803.0, 1184.0, 304.0, 81.0, 18.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101297_BALBc-1_X02_Y02_994_186\", \"ini\": 3, \"clust\": 81, \"rank\": 1184, \"rankvar\": 559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2823, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2785, \"cat-2\": \"Density: 26\", \"cat_2_index\": 855, \"group\": [82.0, 40.0, 8.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101397_BALBc-1_X02_Y02_995_288\", \"ini\": 2, \"clust\": 713, \"rank\": 24, \"rankvar\": 714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2824, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2471, \"cat-2\": \"Density: 23\", \"cat_2_index\": 465, \"group\": [710.0, 277.0, 68.0, 18.0, 6.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101608_BALBc-1_X02_Y02_997_729\", \"ini\": 1, \"clust\": 2602, \"rank\": 2112, \"rankvar\": 1739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2825, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2786, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2041, \"group\": [2603.0, 1091.0, 280.0, 77.0, 16.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0]}]}}, {\"N_row_var\": 10, \"dist\": \"cos\", \"nodes\": {\"row_nodes\": [{\"name\": \"CD169\", \"ini\": 10, \"clust\": 0, \"rank\": 6, \"rankvar\": 9, \"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD11c\", \"ini\": 9, \"clust\": 8, \"rank\": 1, \"rankvar\": 5, \"group\": [5.0, 5.0, 5.0, 5.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD1632\", \"ini\": 8, \"clust\": 5, \"rank\": 8, \"rankvar\": 7, \"group\": [3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD19\", \"ini\": 7, \"clust\": 7, \"rank\": 9, \"rankvar\": 8, \"group\": [7.0, 7.0, 7.0, 7.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD31\", \"ini\": 6, \"clust\": 6, \"rank\": 2, \"rankvar\": 4, \"group\": [4.0, 4.0, 4.0, 4.0, 3.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD90\", \"ini\": 5, \"clust\": 9, \"rank\": 3, \"rankvar\": 2, \"group\": [6.0, 6.0, 6.0, 6.0, 4.0, 3.0, 2.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD35\", \"ini\": 4, \"clust\": 3, \"rank\": 7, \"rankvar\": 1, \"group\": [9.0, 9.0, 9.0, 9.0, 6.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD79b\", \"ini\": 3, \"clust\": 4, \"rank\": 5, \"rankvar\": 3, \"group\": [8.0, 8.0, 8.0, 8.0, 5.0, 4.0, 2.0, 2.0, 1.0, 1.0, 1.0]}, {\"name\": \"CD44\", \"ini\": 2, \"clust\": 1, \"rank\": 4, \"rankvar\": 6, \"group\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"IgD\", \"ini\": 1, \"clust\": 2, \"rank\": 0, \"rankvar\": 0, \"group\": [10.0, 10.0, 10.0, 10.0, 7.0, 6.0, 3.0, 3.0, 1.0, 1.0, 1.0]}], \"col_nodes\": [{\"name\": \"C-643_BALBc-1_X01_Y01_10_277\", \"ini\": 2826, \"clust\": 2632, \"rank\": 2036, \"rankvar\": 1230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 0, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2805, \"cat-2\": \"Density: 14\", \"cat_2_index\": 23, \"group\": [2633.0, 469.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1264_BALBc-1_X01_Y01_1006_490\", \"ini\": 2825, \"clust\": 64, \"rank\": 1276, \"rankvar\": 1748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1765, \"cat-2\": \"Density: 23\", \"cat_2_index\": 350, \"group\": [64.0, 21.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1589_BALBc-1_X01_Y01_101_504\", \"ini\": 2824, \"clust\": 2702, \"rank\": 2452, \"rankvar\": 2298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2335, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1011, \"group\": [2703.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1611_BALBc-1_X01_Y01_101_759\", \"ini\": 2823, \"clust\": 2676, \"rank\": 2095, \"rankvar\": 2439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 3, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2336, \"cat-2\": \"Density: 25\", \"cat_2_index\": 588, \"group\": [2680.0, 483.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1873_BALBc-1_X01_Y01_1013_254\", \"ini\": 2822, \"clust\": 1109, \"rank\": 918, \"rankvar\": 147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 4, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 949, \"cat-2\": \"Density: 25\", \"cat_2_index\": 589, \"group\": [1110.0, 123.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1877_BALBc-1_X01_Y01_1013_293\", \"ini\": 2821, \"clust\": 753, \"rank\": 640, \"rankvar\": 10, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 5, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2337, \"cat-2\": \"Density: 27\", \"cat_2_index\": 856, \"group\": [756.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1935_BALBc-1_X01_Y01_1013_914\", \"ini\": 2820, \"clust\": 1922, \"rank\": 1652, \"rankvar\": 2797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 6, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2338, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1327, \"group\": [1919.0, 340.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2478_BALBc-1_X01_Y01_1020_25\", \"ini\": 2819, \"clust\": 921, \"rank\": 510, \"rankvar\": 331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 7, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1766, \"cat-2\": \"Density: 14\", \"cat_2_index\": 24, \"group\": [922.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2866_BALBc-1_X01_Y01_1025_128\", \"ini\": 2818, \"clust\": 2183, \"rank\": 2415, \"rankvar\": 1866, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 8, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2251, \"cat-2\": \"Density: 21\", \"cat_2_index\": 188, \"group\": [2184.0, 368.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2988_BALBc-1_X01_Y01_1026_609\", \"ini\": 2817, \"clust\": 534, \"rank\": 720, \"rankvar\": 284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 9, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 950, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1012, \"group\": [533.0, 89.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3121_BALBc-1_X01_Y01_1028_10\", \"ini\": 2816, \"clust\": 1047, \"rank\": 481, \"rankvar\": 259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 10, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1767, \"cat-2\": \"Density: 11\", \"cat_2_index\": 4, \"group\": [1046.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3220_BALBc-1_X01_Y01_1029_199\", \"ini\": 2815, \"clust\": 1903, \"rank\": 1435, \"rankvar\": 272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 11, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 951, \"cat-2\": \"Density: 21\", \"cat_2_index\": 189, \"group\": [1904.0, 333.0, 74.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3350_BALBc-1_X01_Y01_103_877\", \"ini\": 2814, \"clust\": 2685, \"rank\": 2186, \"rankvar\": 2498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 12, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1768, \"cat-2\": \"Density: 22\", \"cat_2_index\": 248, \"group\": [2685.0, 484.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3562_BALBc-1_X01_Y01_1032_941\", \"ini\": 2813, \"clust\": 573, \"rank\": 635, \"rankvar\": 866, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 13, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 648, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1598, \"group\": [573.0, 99.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3566_BALBc-1_X01_Y01_1032_996\", \"ini\": 2812, \"clust\": 2824, \"rank\": 2341, \"rankvar\": 1699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 14, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 649, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1599, \"group\": [2825.0, 504.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3997_BALBc-1_X01_Y01_1038_240\", \"ini\": 2811, \"clust\": 2758, \"rank\": 2204, \"rankvar\": 938, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 15, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 952, \"cat-2\": \"Density: 23\", \"cat_2_index\": 351, \"group\": [2757.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4331_BALBc-1_X01_Y01_1041_691\", \"ini\": 2810, \"clust\": 2570, \"rank\": 1963, \"rankvar\": 2194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 16, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 953, \"cat-2\": \"Density: 27\", \"cat_2_index\": 857, \"group\": [2570.0, 455.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4357_BALBc-1_X01_Y01_1041_883\", \"ini\": 2809, \"clust\": 2080, \"rank\": 2402, \"rankvar\": 824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 17, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 733, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1013, \"group\": [2080.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4446_BALBc-1_X01_Y01_1042_941\", \"ini\": 2808, \"clust\": 1212, \"rank\": 1396, \"rankvar\": 1392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 18, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2500, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1328, \"group\": [1211.0, 160.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4781_BALBc-1_X01_Y01_1047_289\", \"ini\": 2807, \"clust\": 2770, \"rank\": 2141, \"rankvar\": 2454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 19, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2339, \"cat-2\": \"Density: 25\", \"cat_2_index\": 590, \"group\": [2769.0, 492.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6348_BALBc-1_X01_Y01_1065_305\", \"ini\": 2806, \"clust\": 75, \"rank\": 806, \"rankvar\": 1894, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 20, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2472, \"cat-2\": \"Density: 25\", \"cat_2_index\": 591, \"group\": [73.0, 26.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6416_BALBc-1_X01_Y01_1066_194\", \"ini\": 2805, \"clust\": 1509, \"rank\": 1160, \"rankvar\": 113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 21, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2340, \"cat-2\": \"Density: 22\", \"cat_2_index\": 249, \"group\": [1510.0, 238.0, 47.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6555_BALBc-1_X01_Y01_1068_135\", \"ini\": 2804, \"clust\": 842, \"rank\": 10, \"rankvar\": 220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 22, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2252, \"cat-2\": \"Density: 19\", \"cat_2_index\": 110, \"group\": [838.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6697_BALBc-1_X01_Y01_1069_600\", \"ini\": 2803, \"clust\": 533, \"rank\": 738, \"rankvar\": 434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 23, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1769, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1329, \"group\": [535.0, 89.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6969_BALBc-1_X01_Y01_1072_106\", \"ini\": 2802, \"clust\": 2185, \"rank\": 2824, \"rankvar\": 2812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 24, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2253, \"cat-2\": \"Density: 22\", \"cat_2_index\": 250, \"group\": [2188.0, 368.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7033_BALBc-1_X01_Y01_1072_670\", \"ini\": 2801, \"clust\": 1042, \"rank\": 248, \"rankvar\": 218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 25, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1770, \"cat-2\": \"Density: 24\", \"cat_2_index\": 466, \"group\": [1039.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7127_BALBc-1_X01_Y01_1073_75\", \"ini\": 2800, \"clust\": 724, \"rank\": 32, \"rankvar\": 1292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 26, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2254, \"cat-2\": \"Density: 23\", \"cat_2_index\": 352, \"group\": [722.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7426_BALBc-1_X01_Y01_1077_266\", \"ini\": 2799, \"clust\": 801, \"rank\": 531, \"rankvar\": 85, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 27, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2341, \"cat-2\": \"Density: 27\", \"cat_2_index\": 858, \"group\": [802.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7713_BALBc-1_X01_Y01_1080_242\", \"ini\": 2798, \"clust\": 756, \"rank\": 697, \"rankvar\": 18, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 28, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2342, \"cat-2\": \"Density: 24\", \"cat_2_index\": 467, \"group\": [759.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8117_BALBc-1_X01_Y01_1085_774\", \"ini\": 2797, \"clust\": 1472, \"rank\": 1285, \"rankvar\": 970, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 29, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 954, \"cat-2\": \"Density: 24\", \"cat_2_index\": 468, \"group\": [1474.0, 221.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8161_BALBc-1_X01_Y01_1086_450\", \"ini\": 2796, \"clust\": 1601, \"rank\": 1385, \"rankvar\": 598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 30, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2220, \"cat-2\": \"Density: 27\", \"cat_2_index\": 859, \"group\": [1602.0, 271.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8563_BALBc-1_X01_Y01_1090_6\", \"ini\": 2795, \"clust\": 53, \"rank\": 1177, \"rankvar\": 922, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 31, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 650, \"cat-2\": \"Density: 14\", \"cat_2_index\": 25, \"group\": [57.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8628_BALBc-1_X01_Y01_1091_43\", \"ini\": 2794, \"clust\": 2664, \"rank\": 1879, \"rankvar\": 1953, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 32, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1591, \"cat-2\": \"Density: 19\", \"cat_2_index\": 111, \"group\": [2667.0, 481.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9642_BALBc-1_X01_Y01_1102_507\", \"ini\": 2793, \"clust\": 2649, \"rank\": 2022, \"rankvar\": 920, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 33, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2255, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1330, \"group\": [2651.0, 476.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9652_BALBc-1_X01_Y01_1102_662\", \"ini\": 2792, \"clust\": 2617, \"rank\": 1417, \"rankvar\": 1677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 34, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1771, \"cat-2\": \"Density: 23\", \"cat_2_index\": 353, \"group\": [2618.0, 464.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9706_BALBc-1_X01_Y01_1103_434\", \"ini\": 2791, \"clust\": 1438, \"rank\": 865, \"rankvar\": 1865, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 35, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 955, \"cat-2\": \"Density: 27\", \"cat_2_index\": 860, \"group\": [1437.0, 209.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10170_BALBc-1_X01_Y01_1108_899\", \"ini\": 2790, \"clust\": 1932, \"rank\": 2430, \"rankvar\": 2348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 36, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 956, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1171, \"group\": [1932.0, 344.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10432_BALBc-1_X01_Y01_1111_474\", \"ini\": 2789, \"clust\": 1439, \"rank\": 855, \"rankvar\": 2267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 37, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2343, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1331, \"group\": [1435.0, 209.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10617_BALBc-1_X01_Y01_1113_927\", \"ini\": 2788, \"clust\": 732, \"rank\": 683, \"rankvar\": 1778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 38, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1592, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1014, \"group\": [732.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10619_BALBc-1_X01_Y01_1113_965\", \"ini\": 2787, \"clust\": 792, \"rank\": 156, \"rankvar\": 87, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 39, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1593, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1457, \"group\": [793.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10837_BALBc-1_X01_Y01_1116_858\", \"ini\": 2786, \"clust\": 2579, \"rank\": 2066, \"rankvar\": 2465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 40, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 734, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1015, \"group\": [2579.0, 456.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11085_BALBc-1_X01_Y01_112_387\", \"ini\": 2785, \"clust\": 602, \"rank\": 392, \"rankvar\": 789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 41, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 651, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1600, \"group\": [603.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11633_BALBc-1_X01_Y01_1126_451\", \"ini\": 2784, \"clust\": 1589, \"rank\": 650, \"rankvar\": 723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 42, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2344, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1172, \"group\": [1594.0, 267.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11797_BALBc-1_X01_Y01_1128_484\", \"ini\": 2783, \"clust\": 1377, \"rank\": 1862, \"rankvar\": 2077, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 43, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2345, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1458, \"group\": [1376.0, 192.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12372_BALBc-1_X01_Y01_1135_41\", \"ini\": 2782, \"clust\": 2591, \"rank\": 1364, \"rankvar\": 497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 44, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1594, \"cat-2\": \"Density: 16\", \"cat_2_index\": 47, \"group\": [2592.0, 459.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12571_BALBc-1_X01_Y01_1137_963\", \"ini\": 2781, \"clust\": 2822, \"rank\": 2231, \"rankvar\": 1853, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 45, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 0, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1173, \"group\": [2823.0, 504.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12609_BALBc-1_X01_Y01_1138_500\", \"ini\": 2780, \"clust\": 933, \"rank\": 193, \"rankvar\": 993, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 46, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2346, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1459, \"group\": [933.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13081_BALBc-1_X01_Y01_1143_436\", \"ini\": 2779, \"clust\": 891, \"rank\": 536, \"rankvar\": 906, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 47, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 957, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1016, \"group\": [892.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13731_BALBc-1_X01_Y01_1150_998\", \"ini\": 2778, \"clust\": 2810, \"rank\": 2538, \"rankvar\": 2481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 48, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2347, \"cat-2\": \"Density: 26\", \"cat_2_index\": 715, \"group\": [2810.0, 502.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13749_BALBc-1_X01_Y01_1151_281\", \"ini\": 2777, \"clust\": 1041, \"rank\": 318, \"rankvar\": 278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 49, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2348, \"cat-2\": \"Density: 21\", \"cat_2_index\": 190, \"group\": [1041.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13948_BALBc-1_X01_Y01_1153_833\", \"ini\": 2776, \"clust\": 2574, \"rank\": 1914, \"rankvar\": 2600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 50, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1689, \"cat-2\": \"Density: 26\", \"cat_2_index\": 716, \"group\": [2575.0, 456.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14037_BALBc-1_X01_Y01_1154_869\", \"ini\": 2775, \"clust\": 2583, \"rank\": 1889, \"rankvar\": 2561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 51, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1595, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1332, \"group\": [2582.0, 457.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14325_BALBc-1_X01_Y01_1158_916\", \"ini\": 2774, \"clust\": 1958, \"rank\": 2029, \"rankvar\": 1363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 52, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 1, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1017, \"group\": [1959.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14446_BALBc-1_X01_Y01_116_658\", \"ini\": 2773, \"clust\": 1310, \"rank\": 1023, \"rankvar\": 2234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 53, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1772, \"cat-2\": \"Density: 27\", \"cat_2_index\": 861, \"group\": [1307.0, 180.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14698_BALBc-1_X01_Y01_1162_538\", \"ini\": 2772, \"clust\": 1919, \"rank\": 1928, \"rankvar\": 2117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 54, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1773, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1826, \"group\": [1923.0, 340.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14855_BALBc-1_X01_Y01_1164_480\", \"ini\": 2771, \"clust\": 1445, \"rank\": 1724, \"rankvar\": 171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 55, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2349, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1716, \"group\": [1448.0, 213.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15062_BALBc-1_X01_Y01_1166_964\", \"ini\": 2770, \"clust\": 1443, \"rank\": 1726, \"rankvar\": 1708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 56, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2350, \"cat-2\": \"Density: 27\", \"cat_2_index\": 862, \"group\": [1444.0, 211.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15797_BALBc-1_X01_Y01_1175_906\", \"ini\": 2769, \"clust\": 1914, \"rank\": 1580, \"rankvar\": 1604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 57, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 652, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1018, \"group\": [1915.0, 337.0, 75.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16293_BALBc-1_X01_Y01_1181_53\", \"ini\": 2768, \"clust\": 1576, \"rank\": 1467, \"rankvar\": 66, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 58, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1774, \"cat-2\": \"Density: 16\", \"cat_2_index\": 48, \"group\": [1577.0, 262.0, 56.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16370_BALBc-1_X01_Y01_1182_491\", \"ini\": 2767, \"clust\": 218, \"rank\": 1140, \"rankvar\": 124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 59, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1596, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1174, \"group\": [218.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16563_BALBc-1_X01_Y01_1184_941\", \"ini\": 2766, \"clust\": 682, \"rank\": 659, \"rankvar\": 1027, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 60, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2351, \"cat-2\": \"Density: 27\", \"cat_2_index\": 863, \"group\": [684.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16691_BALBc-1_X01_Y01_1186_803\", \"ini\": 2765, \"clust\": 730, \"rank\": 223, \"rankvar\": 362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 61, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 735, \"cat-2\": \"Density: 25\", \"cat_2_index\": 592, \"group\": [729.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17060_BALBc-1_X01_Y01_1190_820\", \"ini\": 2764, \"clust\": 1619, \"rank\": 1985, \"rankvar\": 2489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 62, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 958, \"cat-2\": \"Density: 26\", \"cat_2_index\": 717, \"group\": [1616.0, 272.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17493_BALBc-1_X01_Y01_1196_594\", \"ini\": 2763, \"clust\": 683, \"rank\": 600, \"rankvar\": 748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 63, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1775, \"cat-2\": \"Density: 26\", \"cat_2_index\": 718, \"group\": [682.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17526_BALBc-1_X01_Y01_1196_998\", \"ini\": 2762, \"clust\": 2805, \"rank\": 1979, \"rankvar\": 2380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 64, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2352, \"cat-2\": \"Density: 26\", \"cat_2_index\": 719, \"group\": [2803.0, 500.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17577_BALBc-1_X01_Y01_1197_786\", \"ini\": 2761, \"clust\": 866, \"rank\": 97, \"rankvar\": 1040, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 65, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 736, \"cat-2\": \"Density: 24\", \"cat_2_index\": 469, \"group\": [865.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17628_BALBc-1_X01_Y01_1198_413\", \"ini\": 2760, \"clust\": 2621, \"rank\": 1521, \"rankvar\": 2000, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 66, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 959, \"cat-2\": \"Density: 26\", \"cat_2_index\": 720, \"group\": [2622.0, 465.0, 100.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18640_BALBc-1_X01_Y01_1209_127\", \"ini\": 2759, \"clust\": 198, \"rank\": 1071, \"rankvar\": 706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 67, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 960, \"cat-2\": \"Density: 20\", \"cat_2_index\": 137, \"group\": [199.0, 60.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19476_BALBc-1_X01_Y01_1219_513\", \"ini\": 2758, \"clust\": 1493, \"rank\": 1424, \"rankvar\": 964, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 68, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1776, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1019, \"group\": [1492.0, 229.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19678_BALBc-1_X01_Y01_1221_169\", \"ini\": 2757, \"clust\": 2742, \"rank\": 2583, \"rankvar\": 2285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 69, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1690, \"cat-2\": \"Density: 22\", \"cat_2_index\": 251, \"group\": [2741.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19861_BALBc-1_X01_Y01_1223_430\", \"ini\": 2756, \"clust\": 2619, \"rank\": 1612, \"rankvar\": 1663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 70, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1597, \"cat-2\": \"Density: 27\", \"cat_2_index\": 864, \"group\": [2620.0, 464.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19879_BALBc-1_X01_Y01_1223_598\", \"ini\": 2755, \"clust\": 2581, \"rank\": 1539, \"rankvar\": 2224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 71, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2353, \"cat-2\": \"Density: 27\", \"cat_2_index\": 865, \"group\": [2587.0, 457.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20505_BALBc-1_X01_Y01_1230_928\", \"ini\": 2754, \"clust\": 340, \"rank\": 1184, \"rankvar\": 994, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 72, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 653, \"cat-2\": \"Density: 25\", \"cat_2_index\": 593, \"group\": [343.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20820_BALBc-1_X01_Y01_1234_752\", \"ini\": 2753, \"clust\": 941, \"rank\": 451, \"rankvar\": 783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 73, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 961, \"cat-2\": \"Density: 24\", \"cat_2_index\": 470, \"group\": [943.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20832_BALBc-1_X01_Y01_1234_952\", \"ini\": 2752, \"clust\": 1130, \"rank\": 604, \"rankvar\": 973, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 74, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2354, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1020, \"group\": [1131.0, 127.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21409_BALBc-1_X01_Y01_1241_777\", \"ini\": 2751, \"clust\": 2759, \"rank\": 2462, \"rankvar\": 2317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 75, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1777, \"cat-2\": \"Density: 24\", \"cat_2_index\": 471, \"group\": [2758.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21558_BALBc-1_X01_Y01_1243_856\", \"ini\": 2750, \"clust\": 37, \"rank\": 957, \"rankvar\": 2051, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 76, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 654, \"cat-2\": \"Density: 25\", \"cat_2_index\": 594, \"group\": [37.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21876_BALBc-1_X01_Y01_1248_400\", \"ini\": 2749, \"clust\": 82, \"rank\": 1157, \"rankvar\": 111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 77, \"cat-1\": \"Neighbor: CD3(+) other markers (-)\", \"cat_1_index\": 947, \"cat-2\": \"Density: 23\", \"cat_2_index\": 354, \"group\": [83.0, 28.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22222_BALBc-1_X01_Y01_1251_971\", \"ini\": 2748, \"clust\": 264, \"rank\": 978, \"rankvar\": 1705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 78, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 737, \"cat-2\": \"Density: 27\", \"cat_2_index\": 866, \"group\": [264.0, 69.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22283_BALBc-1_X01_Y01_1252_608\", \"ini\": 2747, \"clust\": 105, \"rank\": 1367, \"rankvar\": 1391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 79, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2355, \"cat-2\": \"Density: 23\", \"cat_2_index\": 355, \"group\": [108.0, 35.0, 11.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22370_BALBc-1_X01_Y01_1253_930\", \"ini\": 2746, \"clust\": 263, \"rank\": 1017, \"rankvar\": 1904, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 80, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 738, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1021, \"group\": [266.0, 69.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22471_BALBc-1_X01_Y01_1255_479\", \"ini\": 2745, \"clust\": 2752, \"rank\": 2499, \"rankvar\": 2374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 81, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 739, \"cat-2\": \"Density: 27\", \"cat_2_index\": 867, \"group\": [2754.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22920_BALBc-1_X01_Y01_1260_756\", \"ini\": 2744, \"clust\": 775, \"rank\": 707, \"rankvar\": 151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 82, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 962, \"cat-2\": \"Density: 23\", \"cat_2_index\": 356, \"group\": [775.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23720_BALBc-1_X01_Y01_1271_214\", \"ini\": 2743, \"clust\": 850, \"rank\": 26, \"rankvar\": 245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 83, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1778, \"cat-2\": \"Density: 22\", \"cat_2_index\": 252, \"group\": [850.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23748_BALBc-1_X01_Y01_1271_543\", \"ini\": 2742, \"clust\": 2755, \"rank\": 2349, \"rankvar\": 2173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 84, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2356, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1175, \"group\": [2755.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23973_BALBc-1_X01_Y01_1274_422\", \"ini\": 2741, \"clust\": 245, \"rank\": 853, \"rankvar\": 515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 85, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1779, \"cat-2\": \"Density: 22\", \"cat_2_index\": 253, \"group\": [249.0, 63.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24535_BALBc-1_X01_Y01_1281_350\", \"ini\": 2740, \"clust\": 500, \"rank\": 808, \"rankvar\": 998, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 86, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 963, \"cat-2\": \"Density: 20\", \"cat_2_index\": 138, \"group\": [500.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24998_BALBc-1_X01_Y01_1287_867\", \"ini\": 2739, \"clust\": 2630, \"rank\": 2461, \"rankvar\": 2744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 87, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 655, \"cat-2\": \"Density: 23\", \"cat_2_index\": 357, \"group\": [2629.0, 468.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25430_BALBc-1_X01_Y01_1292_741\", \"ini\": 2738, \"clust\": 244, \"rank\": 922, \"rankvar\": 344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 88, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1780, \"cat-2\": \"Density: 23\", \"cat_2_index\": 358, \"group\": [250.0, 64.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25531_BALBc-1_X01_Y01_1293_912\", \"ini\": 2737, \"clust\": 2749, \"rank\": 2419, \"rankvar\": 2521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 89, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1781, \"cat-2\": \"Density: 26\", \"cat_2_index\": 721, \"group\": [2760.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25534_BALBc-1_X01_Y01_1293_926\", \"ini\": 2736, \"clust\": 265, \"rank\": 1034, \"rankvar\": 1420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 90, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1782, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1333, \"group\": [265.0, 69.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25729_BALBc-1_X01_Y01_1296_850\", \"ini\": 2735, \"clust\": 713, \"rank\": 172, \"rankvar\": 982, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 91, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1598, \"cat-2\": \"Density: 25\", \"cat_2_index\": 595, \"group\": [713.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25779_BALBc-1_X01_Y01_1297_522\", \"ini\": 2734, \"clust\": 290, \"rank\": 364, \"rankvar\": 1802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 92, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1783, \"cat-2\": \"Density: 27\", \"cat_2_index\": 868, \"group\": [294.0, 72.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26533_BALBc-1_X01_Y01_1306_107\", \"ini\": 2733, \"clust\": 537, \"rank\": 851, \"rankvar\": 1160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 93, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 740, \"cat-2\": \"Density: 21\", \"cat_2_index\": 191, \"group\": [537.0, 91.0, 20.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27126_BALBc-1_X01_Y01_1313_325\", \"ini\": 2732, \"clust\": 593, \"rank\": 940, \"rankvar\": 675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 94, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1784, \"cat-2\": \"Density: 23\", \"cat_2_index\": 359, \"group\": [591.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27291_BALBc-1_X01_Y01_1315_624\", \"ini\": 2731, \"clust\": 2662, \"rank\": 2709, \"rankvar\": 2548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 95, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1785, \"cat-2\": \"Density: 24\", \"cat_2_index\": 472, \"group\": [2661.0, 480.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27496_BALBc-1_X01_Y01_1318_358\", \"ini\": 2730, \"clust\": 2753, \"rank\": 2614, \"rankvar\": 2083, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 96, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2473, \"cat-2\": \"Density: 23\", \"cat_2_index\": 360, \"group\": [2752.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27658_BALBc-1_X01_Y01_132_746\", \"ini\": 2729, \"clust\": 655, \"rank\": 1110, \"rankvar\": 83, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 97, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2357, \"cat-2\": \"Density: 26\", \"cat_2_index\": 722, \"group\": [658.0, 107.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27856_BALBc-1_X01_Y01_1322_539\", \"ini\": 2728, \"clust\": 2548, \"rank\": 1569, \"rankvar\": 1874, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 98, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2256, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1022, \"group\": [2548.0, 448.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27868_BALBc-1_X01_Y01_1322_716\", \"ini\": 2727, \"clust\": 2603, \"rank\": 1798, \"rankvar\": 1424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 99, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 741, \"cat-2\": \"Density: 25\", \"cat_2_index\": 596, \"group\": [2601.0, 460.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28466_BALBc-1_X01_Y01_1329_929\", \"ini\": 2726, \"clust\": 2825, \"rank\": 2444, \"rankvar\": 2518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 100, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1786, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1601, \"group\": [2826.0, 504.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28618_BALBc-1_X01_Y01_1331_1005\", \"ini\": 2725, \"clust\": 1251, \"rank\": 1325, \"rankvar\": 2187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 101, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1787, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1334, \"group\": [1251.0, 171.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29005_BALBc-1_X01_Y01_1336_646\", \"ini\": 2724, \"clust\": 99, \"rank\": 1096, \"rankvar\": 209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 102, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1788, \"cat-2\": \"Density: 20\", \"cat_2_index\": 139, \"group\": [99.0, 33.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29014_BALBc-1_X01_Y01_1336_791\", \"ini\": 2723, \"clust\": 2698, \"rank\": 2255, \"rankvar\": 2425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 103, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2257, \"cat-2\": \"Density: 27\", \"cat_2_index\": 869, \"group\": [2699.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29210_BALBc-1_X01_Y01_134_634\", \"ini\": 2722, \"clust\": 2531, \"rank\": 1713, \"rankvar\": 1621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 104, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1599, \"cat-2\": \"Density: 26\", \"cat_2_index\": 723, \"group\": [2532.0, 443.0, 96.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29734_BALBc-1_X01_Y01_140_392\", \"ini\": 2721, \"clust\": 626, \"rank\": 528, \"rankvar\": 916, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 105, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 742, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1602, \"group\": [624.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30018_BALBc-1_X01_Y01_144_355\", \"ini\": 2720, \"clust\": 989, \"rank\": 139, \"rankvar\": 795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 106, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 743, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1927, \"group\": [996.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30053_BALBc-1_X01_Y01_144_841\", \"ini\": 2719, \"clust\": 1446, \"rank\": 2278, \"rankvar\": 2313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 107, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1789, \"cat-2\": \"Density: 22\", \"cat_2_index\": 254, \"group\": [1446.0, 213.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30398_BALBc-1_X01_Y01_149_544\", \"ini\": 2718, \"clust\": 411, \"rank\": 298, \"rankvar\": 1077, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 108, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1790, \"cat-2\": \"Density: 23\", \"cat_2_index\": 361, \"group\": [413.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30507_BALBc-1_X01_Y01_15_762\", \"ini\": 2717, \"clust\": 2606, \"rank\": 2143, \"rankvar\": 2155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 109, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 744, \"cat-2\": \"Density: 15\", \"cat_2_index\": 33, \"group\": [2608.0, 461.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30743_BALBc-1_X01_Y01_152_927\", \"ini\": 2716, \"clust\": 51, \"rank\": 1114, \"rankvar\": 859, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 110, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1791, \"cat-2\": \"Density: 22\", \"cat_2_index\": 255, \"group\": [52.0, 17.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30803_BALBc-1_X01_Y01_153_644\", \"ini\": 2715, \"clust\": 2705, \"rank\": 2606, \"rankvar\": 2679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 111, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1792, \"cat-2\": \"Density: 26\", \"cat_2_index\": 724, \"group\": [2705.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31107_BALBc-1_X01_Y01_157_727\", \"ini\": 2714, \"clust\": 594, \"rank\": 908, \"rankvar\": 379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 112, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2358, \"cat-2\": \"Density: 27\", \"cat_2_index\": 870, \"group\": [592.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32393_BALBc-1_X01_Y01_174_205\", \"ini\": 2713, \"clust\": 151, \"rank\": 1116, \"rankvar\": 1192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 113, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2359, \"cat-2\": \"Density: 26\", \"cat_2_index\": 725, \"group\": [152.0, 48.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32406_BALBc-1_X01_Y01_174_446\", \"ini\": 2712, \"clust\": 2618, \"rank\": 1559, \"rankvar\": 1534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 114, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1793, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1335, \"group\": [2619.0, 464.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32440_BALBc-1_X01_Y01_174_937\", \"ini\": 2711, \"clust\": 2728, \"rank\": 2765, \"rankvar\": 2725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 115, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2221, \"cat-2\": \"Density: 23\", \"cat_2_index\": 362, \"group\": [2728.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33321_BALBc-1_X01_Y01_185_828\", \"ini\": 2710, \"clust\": 2730, \"rank\": 2743, \"rankvar\": 2749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 116, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1691, \"cat-2\": \"Density: 23\", \"cat_2_index\": 363, \"group\": [2732.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34399_BALBc-1_X01_Y01_199_788\", \"ini\": 2709, \"clust\": 645, \"rank\": 400, \"rankvar\": 1229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 117, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2360, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1023, \"group\": [645.0, 105.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34469_BALBc-1_X01_Y01_20_606\", \"ini\": 2708, \"clust\": 644, \"rank\": 671, \"rankvar\": 369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 118, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1794, \"cat-2\": \"Density: 15\", \"cat_2_index\": 34, \"group\": [647.0, 105.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34670_BALBc-1_X01_Y01_202_526\", \"ini\": 2707, \"clust\": 1441, \"rank\": 1097, \"rankvar\": 282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 119, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 656, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1176, \"group\": [1442.0, 210.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34677_BALBc-1_X01_Y01_202_578\", \"ini\": 2706, \"clust\": 1466, \"rank\": 2072, \"rankvar\": 688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 120, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1795, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1177, \"group\": [1468.0, 219.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34817_BALBc-1_X01_Y01_204_297\", \"ini\": 2705, \"clust\": 2650, \"rank\": 1912, \"rankvar\": 575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 121, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1692, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1336, \"group\": [2649.0, 476.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34866_BALBc-1_X01_Y01_204_930\", \"ini\": 2704, \"clust\": 1381, \"rank\": 1344, \"rankvar\": 1227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 122, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2361, \"cat-2\": \"Density: 23\", \"cat_2_index\": 364, \"group\": [1382.0, 193.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35315_BALBc-1_X01_Y01_210_142\", \"ini\": 2703, \"clust\": 360, \"rank\": 407, \"rankvar\": 1730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 123, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1796, \"cat-2\": \"Density: 23\", \"cat_2_index\": 365, \"group\": [361.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35570_BALBc-1_X01_Y01_213_684\", \"ini\": 2702, \"clust\": 2722, \"rank\": 2386, \"rankvar\": 1967, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 124, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1797, \"cat-2\": \"Density: 26\", \"cat_2_index\": 726, \"group\": [2724.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35785_BALBc-1_X01_Y01_216_442\", \"ini\": 2701, \"clust\": 992, \"rank\": 121, \"rankvar\": 345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 125, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1798, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1603, \"group\": [992.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36633_BALBc-1_X01_Y01_227_305\", \"ini\": 2700, \"clust\": 435, \"rank\": 904, \"rankvar\": 319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 126, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1534, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1337, \"group\": [436.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36710_BALBc-1_X01_Y01_228_469\", \"ini\": 2699, \"clust\": 871, \"rank\": 489, \"rankvar\": 27, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 127, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1799, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1178, \"group\": [871.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36780_BALBc-1_X01_Y01_229_278\", \"ini\": 2698, \"clust\": 2547, \"rank\": 1576, \"rankvar\": 1308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 128, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1535, \"cat-2\": \"Density: 23\", \"cat_2_index\": 366, \"group\": [2550.0, 448.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37147_BALBc-1_X01_Y01_233_345\", \"ini\": 2697, \"clust\": 448, \"rank\": 623, \"rankvar\": 503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 129, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 964, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1338, \"group\": [449.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37192_BALBc-1_X01_Y01_233_984\", \"ini\": 2696, \"clust\": 1375, \"rank\": 1682, \"rankvar\": 1831, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 130, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2222, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1024, \"group\": [1374.0, 192.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37390_BALBc-1_X01_Y01_236_829\", \"ini\": 2695, \"clust\": 622, \"rank\": 202, \"rankvar\": 1016, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 131, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1693, \"cat-2\": \"Density: 27\", \"cat_2_index\": 871, \"group\": [621.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37665_BALBc-1_X01_Y01_24_582\", \"ini\": 2694, \"clust\": 1287, \"rank\": 1807, \"rankvar\": 2404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 132, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1800, \"cat-2\": \"Density: 14\", \"cat_2_index\": 26, \"group\": [1291.0, 176.0, 35.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38087_BALBc-1_X01_Y01_245_436\", \"ini\": 2693, \"clust\": 441, \"rank\": 474, \"rankvar\": 754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 133, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2362, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1604, \"group\": [442.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38121_BALBc-1_X01_Y01_245_812\", \"ini\": 2692, \"clust\": 1324, \"rank\": 1042, \"rankvar\": 1298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 134, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2363, \"cat-2\": \"Density: 27\", \"cat_2_index\": 872, \"group\": [1325.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38523_BALBc-1_X01_Y01_250_505\", \"ini\": 2691, \"clust\": 785, \"rank\": 164, \"rankvar\": 189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 135, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1801, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1025, \"group\": [785.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38805_BALBc-1_X01_Y01_253_960\", \"ini\": 2690, \"clust\": 1444, \"rank\": 1310, \"rankvar\": 1925, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 136, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2474, \"cat-2\": \"Density: 26\", \"cat_2_index\": 727, \"group\": [1445.0, 212.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38981_BALBc-1_X01_Y01_256_369\", \"ini\": 2689, \"clust\": 828, \"rank\": 61, \"rankvar\": 363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 137, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2364, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1460, \"group\": [828.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39031_BALBc-1_X01_Y01_256_980\", \"ini\": 2688, \"clust\": 2075, \"rank\": 2530, \"rankvar\": 2229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 138, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1802, \"cat-2\": \"Density: 26\", \"cat_2_index\": 728, \"group\": [2076.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39262_BALBc-1_X01_Y01_26_273\", \"ini\": 2687, \"clust\": 2634, \"rank\": 1947, \"rankvar\": 1739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 139, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1803, \"cat-2\": \"Density: 17\", \"cat_2_index\": 68, \"group\": [2635.0, 471.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39659_BALBc-1_X01_Y01_264_554\", \"ini\": 2686, \"clust\": 1553, \"rank\": 2301, \"rankvar\": 1899, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 140, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1694, \"cat-2\": \"Density: 27\", \"cat_2_index\": 873, \"group\": [1554.0, 254.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39807_BALBc-1_X01_Y01_266_477\", \"ini\": 2685, \"clust\": 2665, \"rank\": 2102, \"rankvar\": 1194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 141, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1695, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1605, \"group\": [2665.0, 481.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39811_BALBc-1_X01_Y01_266_516\", \"ini\": 2684, \"clust\": 1590, \"rank\": 699, \"rankvar\": 1832, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 142, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1696, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1179, \"group\": [1593.0, 267.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40558_BALBc-1_X01_Y01_275_814\", \"ini\": 2683, \"clust\": 1341, \"rank\": 1436, \"rankvar\": 291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 143, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2365, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1180, \"group\": [1342.0, 187.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41204_BALBc-1_X01_Y01_283_369\", \"ini\": 2682, \"clust\": 2063, \"rank\": 2732, \"rankvar\": 2429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 144, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 965, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1181, \"group\": [2063.0, 356.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41354_BALBc-1_X01_Y01_285_575\", \"ini\": 2681, \"clust\": 2594, \"rank\": 1301, \"rankvar\": 2069, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 145, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1804, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1606, \"group\": [2594.0, 459.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41940_BALBc-1_X01_Y01_292_456\", \"ini\": 2680, \"clust\": 1467, \"rank\": 2171, \"rankvar\": 1616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 146, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1697, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1928, \"group\": [1466.0, 219.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41976_BALBc-1_X01_Y01_292_937\", \"ini\": 2679, \"clust\": 93, \"rank\": 984, \"rankvar\": 1417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 147, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1805, \"cat-2\": \"Density: 27\", \"cat_2_index\": 874, \"group\": [105.0, 34.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42301_BALBc-1_X01_Y01_297_556\", \"ini\": 2678, \"clust\": 1465, \"rank\": 2179, \"rankvar\": 516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 148, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1698, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1461, \"group\": [1469.0, 219.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42630_BALBc-1_X01_Y01_300_775\", \"ini\": 2677, \"clust\": 1300, \"rank\": 1463, \"rankvar\": 1631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 149, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2366, \"cat-2\": \"Density: 25\", \"cat_2_index\": 597, \"group\": [1300.0, 179.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42740_BALBc-1_X01_Y01_302_128\", \"ini\": 2676, \"clust\": 2577, \"rank\": 2275, \"rankvar\": 2268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 150, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1600, \"cat-2\": \"Density: 22\", \"cat_2_index\": 256, \"group\": [2577.0, 456.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43040_BALBc-1_X01_Y01_306_364\", \"ini\": 2675, \"clust\": 2678, \"rank\": 2090, \"rankvar\": 2081, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 151, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 966, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1717, \"group\": [2677.0, 483.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43178_BALBc-1_X01_Y01_308_412\", \"ini\": 2674, \"clust\": 2719, \"rank\": 2482, \"rankvar\": 2497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 152, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2367, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2136, \"group\": [2718.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43217_BALBc-1_X01_Y01_308_969\", \"ini\": 2673, \"clust\": 62, \"rank\": 1100, \"rankvar\": 1908, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 153, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2475, \"cat-2\": \"Density: 27\", \"cat_2_index\": 875, \"group\": [62.0, 21.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43287_BALBc-1_X01_Y01_309_987\", \"ini\": 2672, \"clust\": 1450, \"rank\": 1943, \"rankvar\": 1107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 154, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2476, \"cat-2\": \"Density: 27\", \"cat_2_index\": 876, \"group\": [1451.0, 214.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43697_BALBc-1_X01_Y01_314_444\", \"ini\": 2671, \"clust\": 2674, \"rank\": 2279, \"rankvar\": 1799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 155, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 2, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2218, \"group\": [2673.0, 482.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43943_BALBc-1_X01_Y01_317_804\", \"ini\": 2670, \"clust\": 1328, \"rank\": 621, \"rankvar\": 1202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 156, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2368, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1339, \"group\": [1327.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44052_BALBc-1_X01_Y01_318_913\", \"ini\": 2669, \"clust\": 556, \"rank\": 461, \"rankvar\": 1640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 157, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2258, \"cat-2\": \"Density: 26\", \"cat_2_index\": 729, \"group\": [559.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44139_BALBc-1_X01_Y01_32_289\", \"ini\": 2668, \"clust\": 2688, \"rank\": 2694, \"rankvar\": 2775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 158, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1806, \"cat-2\": \"Density: 18\", \"cat_2_index\": 87, \"group\": [2688.0, 485.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44170_BALBc-1_X01_Y01_32_755\", \"ini\": 2667, \"clust\": 1378, \"rank\": 1660, \"rankvar\": 1722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 159, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 745, \"cat-2\": \"Density: 16\", \"cat_2_index\": 49, \"group\": [1377.0, 192.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44230_BALBc-1_X01_Y01_320_524\", \"ini\": 2666, \"clust\": 2769, \"rank\": 2077, \"rankvar\": 1564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 160, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1699, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1462, \"group\": [2771.0, 492.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44536_BALBc-1_X01_Y01_324_441\", \"ini\": 2665, \"clust\": 958, \"rank\": 335, \"rankvar\": 404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 161, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2369, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2363, \"group\": [961.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44775_BALBc-1_X01_Y01_327_457\", \"ini\": 2664, \"clust\": 772, \"rank\": 391, \"rankvar\": 137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 162, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2370, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2364, \"group\": [773.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45547_BALBc-1_X01_Y01_336_358\", \"ini\": 2663, \"clust\": 1434, \"rank\": 1032, \"rankvar\": 2478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 163, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 657, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1607, \"group\": [1441.0, 209.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45620_BALBc-1_X01_Y01_337_515\", \"ini\": 2662, \"clust\": 1060, \"rank\": 612, \"rankvar\": 310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 164, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 967, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2042, \"group\": [1061.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45792_BALBc-1_X01_Y01_339_781\", \"ini\": 2661, \"clust\": 1289, \"rank\": 1497, \"rankvar\": 646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 165, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2259, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1463, \"group\": [1288.0, 176.0, 35.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46150_BALBc-1_X01_Y01_343_551\", \"ini\": 2660, \"clust\": 2585, \"rank\": 1937, \"rankvar\": 2524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 166, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 968, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1182, \"group\": [2585.0, 457.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46164_BALBc-1_X01_Y01_343_747\", \"ini\": 2659, \"clust\": 1078, \"rank\": 271, \"rankvar\": 1592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 167, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1807, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1026, \"group\": [1075.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46255_BALBc-1_X01_Y01_344_899\", \"ini\": 2658, \"clust\": 2686, \"rank\": 1917, \"rankvar\": 1179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 168, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1808, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1183, \"group\": [2686.0, 484.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46297_BALBc-1_X01_Y01_345_451\", \"ini\": 2657, \"clust\": 38, \"rank\": 1081, \"rankvar\": 739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 169, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2371, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2137, \"group\": [38.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46315_BALBc-1_X01_Y01_345_681\", \"ini\": 2656, \"clust\": 757, \"rank\": 315, \"rankvar\": 172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 170, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2260, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1027, \"group\": [757.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46829_BALBc-1_X01_Y01_351_348\", \"ini\": 2655, \"clust\": 1571, \"rank\": 2071, \"rankvar\": 1238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 171, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 969, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1608, \"group\": [1571.0, 258.0, 54.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46843_BALBc-1_X01_Y01_351_600\", \"ini\": 2654, \"clust\": 2721, \"rank\": 2396, \"rankvar\": 2175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 172, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1809, \"cat-2\": \"Density: 25\", \"cat_2_index\": 598, \"group\": [2725.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46930_BALBc-1_X01_Y01_352_655\", \"ini\": 2653, \"clust\": 249, \"rank\": 691, \"rankvar\": 406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 173, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1810, \"cat-2\": \"Density: 23\", \"cat_2_index\": 367, \"group\": [246.0, 63.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47025_BALBc-1_X01_Y01_353_977\", \"ini\": 2652, \"clust\": 1417, \"rank\": 1188, \"rankvar\": 1838, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 174, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2223, \"cat-2\": \"Density: 26\", \"cat_2_index\": 730, \"group\": [1420.0, 204.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47116_BALBc-1_X01_Y01_355_165\", \"ini\": 2651, \"clust\": 2578, \"rank\": 2271, \"rankvar\": 1988, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 175, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1700, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1028, \"group\": [2578.0, 456.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47124_BALBc-1_X01_Y01_355_25\", \"ini\": 2650, \"clust\": 1104, \"rank\": 703, \"rankvar\": 936, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 176, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1811, \"cat-2\": \"Density: 13\", \"cat_2_index\": 11, \"group\": [1104.0, 122.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47290_BALBc-1_X01_Y01_357_393\", \"ini\": 2649, \"clust\": 248, \"rank\": 589, \"rankvar\": 315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 177, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 658, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1929, \"group\": [248.0, 63.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48026_BALBc-1_X01_Y01_366_429\", \"ini\": 2648, \"clust\": 36, \"rank\": 1073, \"rankvar\": 804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 178, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2372, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1930, \"group\": [41.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48028_BALBc-1_X01_Y01_366_461\", \"ini\": 2647, \"clust\": 878, \"rank\": 290, \"rankvar\": 4, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 179, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1601, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1931, \"group\": [880.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48335_BALBc-1_X01_Y01_37_313\", \"ini\": 2646, \"clust\": 2717, \"rank\": 2719, \"rankvar\": 2795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 180, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 746, \"cat-2\": \"Density: 23\", \"cat_2_index\": 368, \"group\": [2721.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48557_BALBc-1_X01_Y01_372_492\", \"ini\": 2645, \"clust\": 445, \"rank\": 383, \"rankvar\": 1556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 181, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 970, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2138, \"group\": [446.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48582_BALBc-1_X01_Y01_372_692\", \"ini\": 2644, \"clust\": 2729, \"rank\": 2718, \"rankvar\": 2582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 182, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2373, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1340, \"group\": [2729.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48853_BALBc-1_X01_Y01_376_314\", \"ini\": 2643, \"clust\": 2734, \"rank\": 2656, \"rankvar\": 2359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 971, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1184, \"group\": [2733.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49055_BALBc-1_X01_Y01_378_862\", \"ini\": 2642, \"clust\": 1618, \"rank\": 1830, \"rankvar\": 1147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 184, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2261, \"cat-2\": \"Density: 27\", \"cat_2_index\": 877, \"group\": [1618.0, 272.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49397_BALBc-1_X01_Y01_382_422\", \"ini\": 2641, \"clust\": 1578, \"rank\": 1074, \"rankvar\": 610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 185, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 659, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2043, \"group\": [1579.0, 264.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49496_BALBc-1_X01_Y01_383_563\", \"ini\": 2640, \"clust\": 16, \"rank\": 974, \"rankvar\": 939, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 186, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 972, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1464, \"group\": [16.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50108_BALBc-1_X01_Y01_390_456\", \"ini\": 2639, \"clust\": 924, \"rank\": 535, \"rankvar\": 88, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 187, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1602, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2044, \"group\": [924.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50236_BALBc-1_X01_Y01_392_183\", \"ini\": 2638, \"clust\": 2680, \"rank\": 1804, \"rankvar\": 1498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 188, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1812, \"cat-2\": \"Density: 27\", \"cat_2_index\": 878, \"group\": [2681.0, 483.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50329_BALBc-1_X01_Y01_393_436\", \"ini\": 2637, \"clust\": 160, \"rank\": 1112, \"rankvar\": 224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 189, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 3, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2139, \"group\": [160.0, 51.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50622_BALBc-1_X01_Y01_397_212\", \"ini\": 2636, \"clust\": 49, \"rank\": 1192, \"rankvar\": 1543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 190, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1701, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1029, \"group\": [49.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50633_BALBc-1_X01_Y01_397_371\", \"ini\": 2635, \"clust\": 2550, \"rank\": 1882, \"rankvar\": 1237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 191, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 660, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2219, \"group\": [2551.0, 448.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50940_BALBc-1_X01_Y01_40_516\", \"ini\": 2634, \"clust\": 1526, \"rank\": 1531, \"rankvar\": 1657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 192, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2374, \"cat-2\": \"Density: 22\", \"cat_2_index\": 257, \"group\": [1527.0, 246.0, 50.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50944_BALBc-1_X01_Y01_40_562\", \"ini\": 2633, \"clust\": 1003, \"rank\": 47, \"rankvar\": 667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 193, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1813, \"cat-2\": \"Density: 19\", \"cat_2_index\": 112, \"group\": [1004.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51105_BALBc-1_X01_Y01_401_748\", \"ini\": 2632, \"clust\": 1330, \"rank\": 783, \"rankvar\": 1269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 194, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2375, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1030, \"group\": [1331.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51247_BALBc-1_X01_Y01_403_851\", \"ini\": 2631, \"clust\": 95, \"rank\": 645, \"rankvar\": 2516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 195, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2262, \"cat-2\": \"Density: 27\", \"cat_2_index\": 879, \"group\": [94.0, 32.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51412_BALBc-1_X01_Y01_405_776\", \"ini\": 2630, \"clust\": 1595, \"rank\": 1207, \"rankvar\": 569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 196, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2263, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1718, \"group\": [1597.0, 268.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51444_BALBc-1_X01_Y01_406_240\", \"ini\": 2629, \"clust\": 635, \"rank\": 820, \"rankvar\": 49, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 197, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2376, \"cat-2\": \"Density: 25\", \"cat_2_index\": 599, \"group\": [636.0, 104.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51463_BALBc-1_X01_Y01_406_433\", \"ini\": 2628, \"clust\": 2733, \"rank\": 2800, \"rankvar\": 2766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 198, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 661, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1719, \"group\": [2735.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51525_BALBc-1_X01_Y01_407_279\", \"ini\": 2627, \"clust\": 2704, \"rank\": 2663, \"rankvar\": 2760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 199, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 662, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1341, \"group\": [2707.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51947_BALBc-1_X01_Y01_411_566\", \"ini\": 2626, \"clust\": 507, \"rank\": 800, \"rankvar\": 1852, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 200, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2377, \"cat-2\": \"Density: 27\", \"cat_2_index\": 880, \"group\": [507.0, 78.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51995_BALBc-1_X01_Y01_412_107\", \"ini\": 2625, \"clust\": 544, \"rank\": 712, \"rankvar\": 1136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 201, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1814, \"cat-2\": \"Density: 23\", \"cat_2_index\": 369, \"group\": [545.0, 95.0, 21.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52220_BALBc-1_X01_Y01_414_632\", \"ini\": 2624, \"clust\": 171, \"rank\": 1036, \"rankvar\": 281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 202, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2378, \"cat-2\": \"Density: 27\", \"cat_2_index\": 881, \"group\": [171.0, 54.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52340_BALBc-1_X01_Y01_416_366\", \"ini\": 2623, \"clust\": 1004, \"rank\": 46, \"rankvar\": 672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 203, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2501, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1932, \"group\": [1005.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52585_BALBc-1_X01_Y01_419_56\", \"ini\": 2622, \"clust\": 2572, \"rank\": 2117, \"rankvar\": 2236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 204, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1815, \"cat-2\": \"Density: 19\", \"cat_2_index\": 113, \"group\": [2573.0, 456.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53186_BALBc-1_X01_Y01_426_497\", \"ini\": 2621, \"clust\": 1507, \"rank\": 1415, \"rankvar\": 556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 205, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1816, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1827, \"group\": [1508.0, 237.0, 47.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53439_BALBc-1_X01_Y01_429_519\", \"ini\": 2620, \"clust\": 552, \"rank\": 367, \"rankvar\": 419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 206, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1817, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1465, \"group\": [553.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53460_BALBc-1_X01_Y01_429_728\", \"ini\": 2619, \"clust\": 1898, \"rank\": 790, \"rankvar\": 2496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 207, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2379, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1720, \"group\": [1898.0, 332.0, 73.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54293_BALBc-1_X01_Y01_439_281\", \"ini\": 2618, \"clust\": 1379, \"rank\": 1060, \"rankvar\": 1776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 208, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1603, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1609, \"group\": [1380.0, 193.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54995_BALBc-1_X01_Y01_447_636\", \"ini\": 2617, \"clust\": 758, \"rank\": 512, \"rankvar\": 195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 209, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2380, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1031, \"group\": [758.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55049_BALBc-1_X01_Y01_448_341\", \"ini\": 2616, \"clust\": 2707, \"rank\": 2550, \"rankvar\": 2794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 210, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 663, \"cat-2\": \"Density: 27\", \"cat_2_index\": 882, \"group\": [2708.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55837_BALBc-1_X01_Y01_457_685\", \"ini\": 2615, \"clust\": 956, \"rank\": 194, \"rankvar\": 286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 211, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2381, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1933, \"group\": [957.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55843_BALBc-1_X01_Y01_457_714\", \"ini\": 2614, \"clust\": 1897, \"rank\": 1296, \"rankvar\": 2166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 212, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2382, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1828, \"group\": [1900.0, 332.0, 73.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56224_BALBc-1_X01_Y01_461_819\", \"ini\": 2613, \"clust\": 1418, \"rank\": 969, \"rankvar\": 1470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 213, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1818, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1342, \"group\": [1418.0, 204.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56566_BALBc-1_X01_Y01_466_376\", \"ini\": 2612, \"clust\": 279, \"rank\": 356, \"rankvar\": 1265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 214, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 664, \"cat-2\": \"Density: 27\", \"cat_2_index\": 883, \"group\": [280.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56664_BALBc-1_X01_Y01_467_502\", \"ini\": 2611, \"clust\": 250, \"rank\": 721, \"rankvar\": 207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 215, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2383, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1466, \"group\": [247.0, 63.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56683_BALBc-1_X01_Y01_467_748\", \"ini\": 2610, \"clust\": 317, \"rank\": 511, \"rankvar\": 1716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 216, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 973, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1829, \"group\": [318.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56772_BALBc-1_X01_Y01_468_926\", \"ini\": 2609, \"clust\": 284, \"rank\": 991, \"rankvar\": 1312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 217, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 891, \"cat-2\": \"Density: 25\", \"cat_2_index\": 600, \"group\": [284.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56830_BALBc-1_X01_Y01_469_709\", \"ini\": 2608, \"clust\": 1548, \"rank\": 2140, \"rankvar\": 2556, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 218, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 974, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1830, \"group\": [1549.0, 254.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57728_BALBc-1_X01_Y01_48_342\", \"ini\": 2607, \"clust\": 2576, \"rank\": 2107, \"rankvar\": 2389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 219, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2384, \"cat-2\": \"Density: 25\", \"cat_2_index\": 601, \"group\": [2581.0, 456.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57798_BALBc-1_X01_Y01_480_352\", \"ini\": 2606, \"clust\": 1510, \"rank\": 1492, \"rankvar\": 2090, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 220, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2385, \"cat-2\": \"Density: 27\", \"cat_2_index\": 884, \"group\": [1511.0, 239.0, 47.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57888_BALBc-1_X01_Y01_481_332\", \"ini\": 2605, \"clust\": 893, \"rank\": 324, \"rankvar\": 1001, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 221, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 975, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1032, \"group\": [894.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58066_BALBc-1_X01_Y01_483_751\", \"ini\": 2604, \"clust\": 303, \"rank\": 1035, \"rankvar\": 1247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 222, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 976, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1610, \"group\": [305.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58300_BALBc-1_X01_Y01_486_59\", \"ini\": 2603, \"clust\": 2639, \"rank\": 1374, \"rankvar\": 2220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 223, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2224, \"cat-2\": \"Density: 17\", \"cat_2_index\": 69, \"group\": [2641.0, 474.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58405_BALBc-1_X01_Y01_487_989\", \"ini\": 2602, \"clust\": 2725, \"rank\": 2726, \"rankvar\": 2613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 224, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1819, \"cat-2\": \"Density: 22\", \"cat_2_index\": 258, \"group\": [2726.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58769_BALBc-1_X01_Y01_491_835\", \"ini\": 2601, \"clust\": 186, \"rank\": 1289, \"rankvar\": 1315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 225, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2386, \"cat-2\": \"Density: 25\", \"cat_2_index\": 602, \"group\": [189.0, 56.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59185_BALBc-1_X01_Y01_496_860\", \"ini\": 2600, \"clust\": 25, \"rank\": 296, \"rankvar\": 1966, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 226, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2387, \"cat-2\": \"Density: 22\", \"cat_2_index\": 259, \"group\": [25.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59663_BALBc-1_X01_Y01_501_885\", \"ini\": 2599, \"clust\": 2761, \"rank\": 2357, \"rankvar\": 1944, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 227, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2388, \"cat-2\": \"Density: 23\", \"cat_2_index\": 370, \"group\": [2763.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59817_BALBc-1_X01_Y01_504_173\", \"ini\": 2598, \"clust\": 1283, \"rank\": 1464, \"rankvar\": 929, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 228, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1820, \"cat-2\": \"Density: 26\", \"cat_2_index\": 731, \"group\": [1284.0, 175.0, 35.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60154_BALBc-1_X01_Y01_508_261\", \"ini\": 2597, \"clust\": 251, \"rank\": 1290, \"rankvar\": 1572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 229, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1821, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1185, \"group\": [252.0, 66.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60544_BALBc-1_X01_Y01_512_387\", \"ini\": 2596, \"clust\": 868, \"rank\": 118, \"rankvar\": 264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 230, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2806, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1033, \"group\": [869.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61293_BALBc-1_X01_Y01_520_799\", \"ini\": 2595, \"clust\": 760, \"rank\": 396, \"rankvar\": 146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 231, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 977, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1034, \"group\": [760.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61360_BALBc-1_X01_Y01_521_696\", \"ini\": 2594, \"clust\": 1494, \"rank\": 1608, \"rankvar\": 573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 232, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 978, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1721, \"group\": [1493.0, 229.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61696_BALBc-1_X01_Y01_525_94\", \"ini\": 2593, \"clust\": 328, \"rank\": 651, \"rankvar\": 1383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 233, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2225, \"cat-2\": \"Density: 18\", \"cat_2_index\": 88, \"group\": [329.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62336_BALBc-1_X01_Y01_533_397\", \"ini\": 2592, \"clust\": 1432, \"rank\": 1419, \"rankvar\": 2216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 234, \"cat-1\": \"Neighbor: plasma cells\", \"cat_1_index\": 2824, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1186, \"group\": [1433.0, 209.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62423_BALBc-1_X01_Y01_534_722\", \"ini\": 2591, \"clust\": 574, \"rank\": 521, \"rankvar\": 714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 235, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 979, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1831, \"group\": [574.0, 99.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62444_BALBc-1_X01_Y01_534_959\", \"ini\": 2590, \"clust\": 2525, \"rank\": 1616, \"rankvar\": 2147, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 236, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 892, \"cat-2\": \"Density: 25\", \"cat_2_index\": 603, \"group\": [2529.0, 441.0, 96.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63078_BALBc-1_X01_Y01_542_700\", \"ini\": 2589, \"clust\": 1371, \"rank\": 1571, \"rankvar\": 1864, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 237, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2389, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1832, \"group\": [1372.0, 192.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63087_BALBc-1_X01_Y01_542_797\", \"ini\": 2588, \"clust\": 2740, \"rank\": 2460, \"rankvar\": 1986, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 238, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 980, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1035, \"group\": [2747.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63522_BALBc-1_X01_Y01_547_973\", \"ini\": 2587, \"clust\": 530, \"rank\": 973, \"rankvar\": 1166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 239, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1822, \"cat-2\": \"Density: 26\", \"cat_2_index\": 732, \"group\": [529.0, 88.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63778_BALBc-1_X01_Y01_550_157\", \"ini\": 2586, \"clust\": 577, \"rank\": 495, \"rankvar\": 1581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 240, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1823, \"cat-2\": \"Density: 24\", \"cat_2_index\": 473, \"group\": [576.0, 100.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63964_BALBc-1_X01_Y01_552_62\", \"ini\": 2585, \"clust\": 962, \"rank\": 478, \"rankvar\": 456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 241, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1824, \"cat-2\": \"Density: 15\", \"cat_2_index\": 35, \"group\": [962.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64005_BALBc-1_X01_Y01_553_25\", \"ini\": 2584, \"clust\": 1000, \"rank\": 475, \"rankvar\": 16, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 242, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2226, \"cat-2\": \"Density: 10\", \"cat_2_index\": 2, \"group\": [1003.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64010_BALBc-1_X01_Y01_553_292\", \"ini\": 2583, \"clust\": 779, \"rank\": 373, \"rankvar\": 100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 243, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1825, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1036, \"group\": [780.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65182_BALBc-1_X01_Y01_567_223\", \"ini\": 2582, \"clust\": 2551, \"rank\": 1944, \"rankvar\": 1903, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 244, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2264, \"cat-2\": \"Density: 25\", \"cat_2_index\": 604, \"group\": [2552.0, 448.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65656_BALBc-1_X01_Y01_572_784\", \"ini\": 2581, \"clust\": 2589, \"rank\": 1913, \"rankvar\": 1586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 245, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 981, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1187, \"group\": [2588.0, 458.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66746_BALBc-1_X01_Y01_586_262\", \"ini\": 2580, \"clust\": 799, \"rank\": 552, \"rankvar\": 155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 246, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2265, \"cat-2\": \"Density: 25\", \"cat_2_index\": 605, \"group\": [799.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66807_BALBc-1_X01_Y01_586_921\", \"ini\": 2579, \"clust\": 1929, \"rank\": 1939, \"rankvar\": 2153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 247, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 747, \"cat-2\": \"Density: 24\", \"cat_2_index\": 474, \"group\": [1930.0, 343.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67268_BALBc-1_X01_Y01_591_693\", \"ini\": 2578, \"clust\": 2056, \"rank\": 2055, \"rankvar\": 1808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 248, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2390, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1833, \"group\": [2056.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67677_BALBc-1_X01_Y01_596_954\", \"ini\": 2577, \"clust\": 2816, \"rank\": 2115, \"rankvar\": 2042, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 249, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 982, \"cat-2\": \"Density: 22\", \"cat_2_index\": 260, \"group\": [2817.0, 504.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68075_BALBc-1_X01_Y01_600_937\", \"ini\": 2576, \"clust\": 2597, \"rank\": 1785, \"rankvar\": 1183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 250, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 983, \"cat-2\": \"Density: 23\", \"cat_2_index\": 371, \"group\": [2600.0, 460.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68258_BALBc-1_X01_Y01_603_416\", \"ini\": 2575, \"clust\": 2745, \"rank\": 2629, \"rankvar\": 2410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 251, \"cat-1\": \"Neighbor: plasma cells\", \"cat_1_index\": 2825, \"cat-2\": \"Density: 26\", \"cat_2_index\": 733, \"group\": [2743.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68390_BALBc-1_X01_Y01_605_263\", \"ini\": 2574, \"clust\": 744, \"rank\": 206, \"rankvar\": 823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 252, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 748, \"cat-2\": \"Density: 26\", \"cat_2_index\": 734, \"group\": [745.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68460_BALBc-1_X01_Y01_605_972\", \"ini\": 2573, \"clust\": 1430, \"rank\": 1453, \"rankvar\": 1812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 253, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 984, \"cat-2\": \"Density: 23\", \"cat_2_index\": 372, \"group\": [1431.0, 208.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68786_BALBc-1_X01_Y01_609_707\", \"ini\": 2572, \"clust\": 368, \"rank\": 724, \"rankvar\": 328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 254, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2391, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1722, \"group\": [369.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69393_BALBc-1_X01_Y01_616_802\", \"ini\": 2571, \"clust\": 2800, \"rank\": 1827, \"rankvar\": 1402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 255, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 985, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1037, \"group\": [2800.0, 498.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69452_BALBc-1_X01_Y01_617_654\", \"ini\": 2570, \"clust\": 1462, \"rank\": 1978, \"rankvar\": 1731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 256, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2392, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1467, \"group\": [1464.0, 219.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69556_BALBc-1_X01_Y01_618_844\", \"ini\": 2569, \"clust\": 2667, \"rank\": 2035, \"rankvar\": 2396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 257, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 986, \"cat-2\": \"Density: 23\", \"cat_2_index\": 373, \"group\": [2668.0, 481.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69767_BALBc-1_X01_Y01_620_771\", \"ini\": 2568, \"clust\": 1610, \"rank\": 1514, \"rankvar\": 2385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 258, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2393, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1468, \"group\": [1613.0, 271.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70401_BALBc-1_X01_Y01_628_954\", \"ini\": 2567, \"clust\": 1337, \"rank\": 934, \"rankvar\": 1898, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 259, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 4, \"cat-2\": \"Density: 21\", \"cat_2_index\": 192, \"group\": [1341.0, 186.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70856_BALBc-1_X01_Y01_633_693\", \"ini\": 2566, \"clust\": 768, \"rank\": 151, \"rankvar\": 412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 260, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 665, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1723, \"group\": [767.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71169_BALBc-1_X01_Y01_637_858\", \"ini\": 2565, \"clust\": 2818, \"rank\": 2051, \"rankvar\": 2347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 261, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 987, \"cat-2\": \"Density: 26\", \"cat_2_index\": 735, \"group\": [2822.0, 504.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72334_BALBc-1_X01_Y01_650_922\", \"ini\": 2564, \"clust\": 1331, \"rank\": 999, \"rankvar\": 1252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 262, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1702, \"cat-2\": \"Density: 25\", \"cat_2_index\": 606, \"group\": [1332.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72558_BALBc-1_X01_Y01_653_790\", \"ini\": 2563, \"clust\": 964, \"rank\": 104, \"rankvar\": 401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 263, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 988, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1724, \"group\": [965.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72805_BALBc-1_X01_Y01_656_972\", \"ini\": 2562, \"clust\": 1361, \"rank\": 1620, \"rankvar\": 2097, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 264, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1703, \"cat-2\": \"Density: 23\", \"cat_2_index\": 374, \"group\": [1359.0, 190.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73338_BALBc-1_X01_Y01_662_687\", \"ini\": 2561, \"clust\": 193, \"rank\": 1304, \"rankvar\": 590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 265, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 989, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1611, \"group\": [196.0, 60.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74854_BALBc-1_X01_Y01_680_662\", \"ini\": 2560, \"clust\": 747, \"rank\": 770, \"rankvar\": 70, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 266, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2394, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1834, \"group\": [747.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75831_BALBc-1_X01_Y01_692_998\", \"ini\": 2559, \"clust\": 1197, \"rank\": 2380, \"rankvar\": 2419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 267, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1704, \"cat-2\": \"Density: 23\", \"cat_2_index\": 375, \"group\": [1198.0, 152.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76190_BALBc-1_X01_Y01_697_768\", \"ini\": 2558, \"clust\": 363, \"rank\": 565, \"rankvar\": 265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 268, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 749, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1469, \"group\": [366.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76418_BALBc-1_X01_Y01_7_625\", \"ini\": 2557, \"clust\": 1373, \"rank\": 1430, \"rankvar\": 1915, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 269, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2227, \"cat-2\": \"Density: 10\", \"cat_2_index\": 3, \"group\": [1379.0, 192.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77472_BALBc-1_X01_Y01_711_676\", \"ini\": 2556, \"clust\": 1923, \"rank\": 1692, \"rankvar\": 2697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 270, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 990, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2045, \"group\": [1920.0, 340.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77475_BALBc-1_X01_Y01_711_742\", \"ini\": 2555, \"clust\": 1173, \"rank\": 763, \"rankvar\": 2102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 271, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 991, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1725, \"group\": [1170.0, 141.0, 27.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77792_BALBc-1_X01_Y01_715_768\", \"ini\": 2554, \"clust\": 1303, \"rank\": 1225, \"rankvar\": 1525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 272, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1705, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1612, \"group\": [1311.0, 180.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78451_BALBc-1_X01_Y01_722_839\", \"ini\": 2553, \"clust\": 2682, \"rank\": 1875, \"rankvar\": 1718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 273, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2395, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1613, \"group\": [2683.0, 484.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78461_BALBc-1_X01_Y01_722_950\", \"ini\": 2552, \"clust\": 1253, \"rank\": 1136, \"rankvar\": 2399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 274, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1706, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1188, \"group\": [1254.0, 172.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78468_BALBc-1_X01_Y01_723_131\", \"ini\": 2551, \"clust\": 605, \"rank\": 682, \"rankvar\": 119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 275, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1826, \"cat-2\": \"Density: 21\", \"cat_2_index\": 193, \"group\": [607.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78787_BALBc-1_X01_Y01_727_496\", \"ini\": 2550, \"clust\": 2706, \"rank\": 2506, \"rankvar\": 2377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 276, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1707, \"cat-2\": \"Density: 27\", \"cat_2_index\": 885, \"group\": [2706.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78978_BALBc-1_X01_Y01_729_920\", \"ini\": 2549, \"clust\": 2582, \"rank\": 1621, \"rankvar\": 2284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 277, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1604, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1614, \"group\": [2584.0, 457.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79106_BALBc-1_X01_Y01_730_753\", \"ini\": 2548, \"clust\": 2414, \"rank\": 1406, \"rankvar\": 1258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 278, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1605, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1615, \"group\": [2418.0, 402.0, 84.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79197_BALBc-1_X01_Y01_731_852\", \"ini\": 2547, \"clust\": 1411, \"rank\": 993, \"rankvar\": 1267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 279, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 750, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1934, \"group\": [1412.0, 204.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79228_BALBc-1_X01_Y01_732_264\", \"ini\": 2546, \"clust\": 72, \"rank\": 881, \"rankvar\": 1256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 280, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1827, \"cat-2\": \"Density: 16\", \"cat_2_index\": 50, \"group\": [77.0, 26.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79377_BALBc-1_X01_Y01_733_981\", \"ini\": 2545, \"clust\": 1294, \"rank\": 1410, \"rankvar\": 2200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 281, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 992, \"cat-2\": \"Density: 27\", \"cat_2_index\": 886, \"group\": [1296.0, 178.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79939_BALBc-1_X01_Y01_740_1001\", \"ini\": 2544, \"clust\": 2615, \"rank\": 2010, \"rankvar\": 1973, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 282, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 993, \"cat-2\": \"Density: 25\", \"cat_2_index\": 607, \"group\": [2616.0, 463.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80506_BALBc-1_X01_Y01_747_927\", \"ini\": 2543, \"clust\": 1449, \"rank\": 2256, \"rankvar\": 1272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 283, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1828, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1038, \"group\": [1452.0, 214.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80525_BALBc-1_X01_Y01_748_234\", \"ini\": 2542, \"clust\": 2681, \"rank\": 1858, \"rankvar\": 1249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 284, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1829, \"cat-2\": \"Density: 19\", \"cat_2_index\": 114, \"group\": [2682.0, 483.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80830_BALBc-1_X01_Y01_750_807\", \"ini\": 2541, \"clust\": 2700, \"rank\": 2252, \"rankvar\": 2723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 285, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1708, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1189, \"group\": [2701.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80965_BALBc-1_X01_Y01_752_728\", \"ini\": 2540, \"clust\": 1545, \"rank\": 2058, \"rankvar\": 2195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 286, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 994, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1616, \"group\": [1548.0, 253.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81569_BALBc-1_X01_Y01_76_36\", \"ini\": 2539, \"clust\": 994, \"rank\": 189, \"rankvar\": 152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 287, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1830, \"cat-2\": \"Density: 8\", \"cat_2_index\": 0, \"group\": [994.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82103_BALBc-1_X01_Y01_766_541\", \"ini\": 2538, \"clust\": 1554, \"rank\": 2251, \"rankvar\": 2206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 288, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1831, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1190, \"group\": [1555.0, 254.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82283_BALBc-1_X01_Y01_768_747\", \"ini\": 2537, \"clust\": 526, \"rank\": 563, \"rankvar\": 867, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 289, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1606, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1343, \"group\": [524.0, 86.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82292_BALBc-1_X01_Y01_768_860\", \"ini\": 2536, \"clust\": 2611, \"rank\": 1845, \"rankvar\": 2304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 290, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 751, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1726, \"group\": [2612.0, 462.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82501_BALBc-1_X01_Y01_770_672\", \"ini\": 2535, \"clust\": 959, \"rank\": 71, \"rankvar\": 777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 291, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1832, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1617, \"group\": [959.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82814_BALBc-1_X01_Y01_774_701\", \"ini\": 2534, \"clust\": 2623, \"rank\": 2176, \"rankvar\": 2483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 292, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1833, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1039, \"group\": [2626.0, 466.0, 100.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83141_BALBc-1_X01_Y01_778_865\", \"ini\": 2533, \"clust\": 358, \"rank\": 755, \"rankvar\": 1803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 293, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 752, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1935, \"group\": [363.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83368_BALBc-1_X01_Y01_780_829\", \"ini\": 2532, \"clust\": 2817, \"rank\": 2155, \"rankvar\": 1717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 294, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2228, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1727, \"group\": [2818.0, 504.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83575_BALBc-1_X01_Y01_783_772\", \"ini\": 2531, \"clust\": 536, \"rank\": 1141, \"rankvar\": 826, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 295, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1834, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1344, \"group\": [539.0, 91.0, 20.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83783_BALBc-1_X01_Y01_786_42\", \"ini\": 2530, \"clust\": 1072, \"rank\": 992, \"rankvar\": 19, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 296, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1835, \"cat-2\": \"Density: 11\", \"cat_2_index\": 5, \"group\": [1073.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84106_BALBc-1_X01_Y01_79_467\", \"ini\": 2529, \"clust\": 782, \"rank\": 62, \"rankvar\": 746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 297, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2396, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1040, \"group\": [782.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84546_BALBc-1_X01_Y01_794_913\", \"ini\": 2528, \"clust\": 1484, \"rank\": 1698, \"rankvar\": 1418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 298, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1836, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1470, \"group\": [1487.0, 227.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84882_BALBc-1_X01_Y01_798_898\", \"ini\": 2527, \"clust\": 2774, \"rank\": 2187, \"rankvar\": 2562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 299, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 753, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2046, \"group\": [2774.0, 492.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84899_BALBc-1_X01_Y01_799_204\", \"ini\": 2526, \"clust\": 392, \"rank\": 205, \"rankvar\": 652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 300, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1837, \"cat-2\": \"Density: 21\", \"cat_2_index\": 194, \"group\": [392.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85632_BALBc-1_X01_Y01_806_632\", \"ini\": 2525, \"clust\": 954, \"rank\": 425, \"rankvar\": 550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 301, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1709, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1191, \"group\": [955.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85720_BALBc-1_X01_Y01_807_805\", \"ini\": 2524, \"clust\": 727, \"rank\": 84, \"rankvar\": 600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 302, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2229, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1728, \"group\": [726.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85870_BALBc-1_X01_Y01_809_965\", \"ini\": 2523, \"clust\": 315, \"rank\": 771, \"rankvar\": 1672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 303, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2397, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1729, \"group\": [315.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86589_BALBc-1_X01_Y01_818_406\", \"ini\": 2522, \"clust\": 1579, \"rank\": 915, \"rankvar\": 1340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 304, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1710, \"cat-2\": \"Density: 25\", \"cat_2_index\": 608, \"group\": [1580.0, 264.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86924_BALBc-1_X01_Y01_821_936\", \"ini\": 2521, \"clust\": 653, \"rank\": 811, \"rankvar\": 69, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 305, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 754, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1835, \"group\": [653.0, 106.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87345_BALBc-1_X01_Y01_827_373\", \"ini\": 2520, \"clust\": 2526, \"rank\": 1547, \"rankvar\": 1079, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 306, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1711, \"cat-2\": \"Density: 25\", \"cat_2_index\": 609, \"group\": [2528.0, 440.0, 96.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87649_BALBc-1_X01_Y01_830_295\", \"ini\": 2519, \"clust\": 714, \"rank\": 266, \"rankvar\": 1108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 307, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1838, \"cat-2\": \"Density: 22\", \"cat_2_index\": 261, \"group\": [714.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87664_BALBc-1_X01_Y01_830_425\", \"ini\": 2518, \"clust\": 420, \"rank\": 241, \"rankvar\": 1824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 308, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2398, \"cat-2\": \"Density: 27\", \"cat_2_index\": 887, \"group\": [419.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88044_BALBc-1_X01_Y01_835_742\", \"ini\": 2517, \"clust\": 2757, \"rank\": 2213, \"rankvar\": 1211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 309, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1839, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1041, \"group\": [2759.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88079_BALBc-1_X01_Y01_836_344\", \"ini\": 2516, \"clust\": 2596, \"rank\": 1613, \"rankvar\": 1736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 310, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1536, \"cat-2\": \"Density: 25\", \"cat_2_index\": 610, \"group\": [2605.0, 460.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88188_BALBc-1_X01_Y01_837_652\", \"ini\": 2515, \"clust\": 1415, \"rank\": 656, \"rankvar\": 1196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 311, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 995, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1192, \"group\": [1416.0, 204.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88270_BALBc-1_X01_Y01_838_807\", \"ini\": 2514, \"clust\": 1517, \"rank\": 1263, \"rankvar\": 182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 312, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1712, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1730, \"group\": [1517.0, 241.0, 48.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88505_BALBc-1_X01_Y01_840_865\", \"ini\": 2513, \"clust\": 2564, \"rank\": 2247, \"rankvar\": 2443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 313, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 755, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1936, \"group\": [2564.0, 451.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88518_BALBc-1_X01_Y01_840_980\", \"ini\": 2512, \"clust\": 725, \"rank\": 108, \"rankvar\": 868, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 314, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 996, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1471, \"group\": [723.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88712_BALBc-1_X01_Y01_843_668\", \"ini\": 2511, \"clust\": 2592, \"rank\": 1479, \"rankvar\": 755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 315, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1840, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1042, \"group\": [2593.0, 459.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89100_BALBc-1_X01_Y01_848_541\", \"ini\": 2510, \"clust\": 1556, \"rank\": 2365, \"rankvar\": 2588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 316, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1841, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1193, \"group\": [1556.0, 254.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90045_BALBc-1_X01_Y01_859_822\", \"ini\": 2509, \"clust\": 2820, \"rank\": 1960, \"rankvar\": 1313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 317, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1713, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1618, \"group\": [2819.0, 504.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90185_BALBc-1_X01_Y01_860_626\", \"ini\": 2508, \"clust\": 1508, \"rank\": 1220, \"rankvar\": 1690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 318, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1842, \"cat-2\": \"Density: 27\", \"cat_2_index\": 888, \"group\": [1509.0, 237.0, 47.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90284_BALBc-1_X01_Y01_861_874\", \"ini\": 2507, \"clust\": 1301, \"rank\": 1741, \"rankvar\": 2032, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 319, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 997, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2047, \"group\": [1301.0, 179.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90366_BALBc-1_X01_Y01_863_139\", \"ini\": 2506, \"clust\": 847, \"rank\": 124, \"rankvar\": 76, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 320, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2399, \"cat-2\": \"Density: 22\", \"cat_2_index\": 262, \"group\": [845.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91015_BALBc-1_X01_Y01_870_358\", \"ini\": 2505, \"clust\": 620, \"rank\": 220, \"rankvar\": 1872, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 321, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1537, \"cat-2\": \"Density: 24\", \"cat_2_index\": 475, \"group\": [619.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91213_BALBc-1_X01_Y01_872_895\", \"ini\": 2504, \"clust\": 560, \"rank\": 769, \"rankvar\": 107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 322, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 998, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1937, \"group\": [564.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91215_BALBc-1_X01_Y01_872_930\", \"ini\": 2503, \"clust\": 1354, \"rank\": 1679, \"rankvar\": 1191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 323, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 999, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1472, \"group\": [1355.0, 189.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91352_BALBc-1_X01_Y01_874_726\", \"ini\": 2502, \"clust\": 2743, \"rank\": 2445, \"rankvar\": 2143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 324, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1000, \"cat-2\": \"Density: 26\", \"cat_2_index\": 736, \"group\": [2742.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91645_BALBc-1_X01_Y01_878_559\", \"ini\": 2501, \"clust\": 1487, \"rank\": 1697, \"rankvar\": 1917, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 325, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1843, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1194, \"group\": [1488.0, 228.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91823_BALBc-1_X01_Y01_88_805\", \"ini\": 2500, \"clust\": 1447, \"rank\": 2100, \"rankvar\": 1580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 326, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2400, \"cat-2\": \"Density: 23\", \"cat_2_index\": 376, \"group\": [1447.0, 213.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92363_BALBc-1_X01_Y01_887_395\", \"ini\": 2499, \"clust\": 1442, \"rank\": 1109, \"rankvar\": 627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 327, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1844, \"cat-2\": \"Density: 25\", \"cat_2_index\": 611, \"group\": [1443.0, 210.0, 42.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92765_BALBc-1_X01_Y01_891_617\", \"ini\": 2498, \"clust\": 1488, \"rank\": 1786, \"rankvar\": 2163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 328, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2401, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1473, \"group\": [1489.0, 228.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93018_BALBc-1_X01_Y01_894_905\", \"ini\": 2497, \"clust\": 380, \"rank\": 388, \"rankvar\": 1541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 329, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1001, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1474, \"group\": [381.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93161_BALBc-1_X01_Y01_896_937\", \"ini\": 2496, \"clust\": 2709, \"rank\": 2618, \"rankvar\": 2472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 330, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1002, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1731, \"group\": [2713.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94070_BALBc-1_X01_Y01_907_486\", \"ini\": 2495, \"clust\": 2562, \"rank\": 2020, \"rankvar\": 2391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 331, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 756, \"cat-2\": \"Density: 27\", \"cat_2_index\": 889, \"group\": [2562.0, 451.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94547_BALBc-1_X01_Y01_912_926\", \"ini\": 2494, \"clust\": 1214, \"rank\": 1538, \"rankvar\": 2340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 332, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1845, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1619, \"group\": [1215.0, 160.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94695_BALBc-1_X01_Y01_914_981\", \"ini\": 2493, \"clust\": 1391, \"rank\": 1461, \"rankvar\": 673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 333, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1846, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1732, \"group\": [1396.0, 197.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94725_BALBc-1_X01_Y01_915_472\", \"ini\": 2492, \"clust\": 1087, \"rank\": 557, \"rankvar\": 749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 334, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1847, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1043, \"group\": [1088.0, 118.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94799_BALBc-1_X01_Y01_916_387\", \"ini\": 2491, \"clust\": 2718, \"rank\": 2363, \"rankvar\": 2314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 335, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 666, \"cat-2\": \"Density: 25\", \"cat_2_index\": 612, \"group\": [2720.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94985_BALBc-1_X01_Y01_918_863\", \"ini\": 2490, \"clust\": 2811, \"rank\": 2211, \"rankvar\": 1849, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 336, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 667, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1345, \"group\": [2811.0, 502.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95149_BALBc-1_X01_Y01_92_950\", \"ini\": 2489, \"clust\": 1451, \"rank\": 2096, \"rankvar\": 1794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 337, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1848, \"cat-2\": \"Density: 18\", \"cat_2_index\": 89, \"group\": [1449.0, 214.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95350_BALBc-1_X01_Y01_922_525\", \"ini\": 2488, \"clust\": 2723, \"rank\": 2249, \"rankvar\": 1846, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 338, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2502, \"cat-2\": \"Density: 27\", \"cat_2_index\": 890, \"group\": [2722.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95627_BALBc-1_X01_Y01_925_921\", \"ini\": 2487, \"clust\": 1202, \"rank\": 1533, \"rankvar\": 2140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 339, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 668, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1044, \"group\": [1202.0, 154.0, 31.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96058_BALBc-1_X01_Y01_930_613\", \"ini\": 2486, \"clust\": 1482, \"rank\": 1783, \"rankvar\": 1381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 340, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2402, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1045, \"group\": [1481.0, 225.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96292_BALBc-1_X01_Y01_933_666\", \"ini\": 2485, \"clust\": 2602, \"rank\": 1843, \"rankvar\": 2327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 341, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2403, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1346, \"group\": [2603.0, 460.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96547_BALBc-1_X01_Y01_937_170\", \"ini\": 2484, \"clust\": 804, \"rank\": 378, \"rankvar\": 37, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 342, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1849, \"cat-2\": \"Density: 19\", \"cat_2_index\": 115, \"group\": [806.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96665_BALBc-1_X01_Y01_938_963\", \"ini\": 2483, \"clust\": 1308, \"rank\": 1256, \"rankvar\": 2125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 343, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1850, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1836, \"group\": [1305.0, 180.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96745_BALBc-1_X01_Y01_939_916\", \"ini\": 2482, \"clust\": 2814, \"rank\": 1931, \"rankvar\": 1347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 344, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 669, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1475, \"group\": [2815.0, 503.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96964_BALBc-1_X01_Y01_941_78\", \"ini\": 2481, \"clust\": 1452, \"rank\": 2248, \"rankvar\": 2251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 345, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1851, \"cat-2\": \"Density: 17\", \"cat_2_index\": 70, \"group\": [1450.0, 214.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98233_BALBc-1_X01_Y01_957_431\", \"ini\": 2480, \"clust\": 1468, \"rank\": 2049, \"rankvar\": 1011, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 346, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1852, \"cat-2\": \"Density: 23\", \"cat_2_index\": 377, \"group\": [1467.0, 219.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98244_BALBc-1_X01_Y01_957_547\", \"ini\": 2479, \"clust\": 1028, \"rank\": 41, \"rankvar\": 367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 347, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1003, \"cat-2\": \"Density: 25\", \"cat_2_index\": 613, \"group\": [1035.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98423_BALBc-1_X01_Y01_96_276\", \"ini\": 2478, \"clust\": 745, \"rank\": 361, \"rankvar\": 583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 348, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 757, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1347, \"group\": [746.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98533_BALBc-1_X01_Y01_960_606\", \"ini\": 2477, \"clust\": 280, \"rank\": 594, \"rankvar\": 514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 349, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1853, \"cat-2\": \"Density: 27\", \"cat_2_index\": 891, \"group\": [281.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98687_BALBc-1_X01_Y01_962_516\", \"ini\": 2476, \"clust\": 2584, \"rank\": 1824, \"rankvar\": 2144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 350, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1004, \"cat-2\": \"Density: 25\", \"cat_2_index\": 614, \"group\": [2583.0, 457.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98848_BALBc-1_X01_Y01_964_670\", \"ini\": 2475, \"clust\": 2517, \"rank\": 1516, \"rankvar\": 602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 351, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1005, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1046, \"group\": [2521.0, 438.0, 95.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98850_BALBc-1_X01_Y01_964_694\", \"ini\": 2474, \"clust\": 637, \"rank\": 568, \"rankvar\": 1423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 352, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1854, \"cat-2\": \"Density: 26\", \"cat_2_index\": 737, \"group\": [638.0, 104.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99057_BALBc-1_X01_Y01_967_479\", \"ini\": 2473, \"clust\": 2567, \"rank\": 1863, \"rankvar\": 962, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 353, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1855, \"cat-2\": \"Density: 23\", \"cat_2_index\": 378, \"group\": [2567.0, 453.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99105_BALBc-1_X01_Y01_967_965\", \"ini\": 2472, \"clust\": 2701, \"rank\": 2166, \"rankvar\": 1930, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 354, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 670, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1476, \"group\": [2702.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99401_BALBc-1_X01_Y01_970_988\", \"ini\": 2471, \"clust\": 1546, \"rank\": 2431, \"rankvar\": 2764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 355, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 671, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1477, \"group\": [1546.0, 253.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99809_BALBc-1_X01_Y01_976_311\", \"ini\": 2470, \"clust\": 149, \"rank\": 1182, \"rankvar\": 1602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 356, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2404, \"cat-2\": \"Density: 24\", \"cat_2_index\": 476, \"group\": [150.0, 48.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100228_BALBc-1_X01_Y01_980_928\", \"ini\": 2469, \"clust\": 1248, \"rank\": 1000, \"rankvar\": 2296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 357, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 893, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1047, \"group\": [1249.0, 170.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100256_BALBc-1_X01_Y01_981_360\", \"ini\": 2468, \"clust\": 938, \"rank\": 455, \"rankvar\": 477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 358, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 672, \"cat-2\": \"Density: 25\", \"cat_2_index\": 615, \"group\": [938.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100547_BALBc-1_X01_Y01_985_432\", \"ini\": 2467, \"clust\": 1478, \"rank\": 1452, \"rankvar\": 540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 359, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1856, \"cat-2\": \"Density: 22\", \"cat_2_index\": 263, \"group\": [1478.0, 223.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100572_BALBc-1_X01_Y01_985_76\", \"ini\": 2466, \"clust\": 2672, \"rank\": 2040, \"rankvar\": 710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 360, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2266, \"cat-2\": \"Density: 18\", \"cat_2_index\": 90, \"group\": [2676.0, 482.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101105_BALBc-1_X01_Y01_991_734\", \"ini\": 2465, \"clust\": 2750, \"rank\": 2401, \"rankvar\": 1607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 361, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1857, \"cat-2\": \"Density: 25\", \"cat_2_index\": 616, \"group\": [2750.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101341_BALBc-1_X01_Y01_994_653\", \"ini\": 2464, \"clust\": 777, \"rank\": 321, \"rankvar\": 250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 362, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1006, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1048, \"group\": [778.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101367_BALBc-1_X01_Y01_994_943\", \"ini\": 2463, \"clust\": 1480, \"rank\": 1949, \"rankvar\": 726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 363, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 673, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1049, \"group\": [1484.0, 225.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-727_BALBc-1_X02_Y01_100_250\", \"ini\": 2462, \"clust\": 982, \"rank\": 208, \"rankvar\": 161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 364, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1858, \"cat-2\": \"Density: 26\", \"cat_2_index\": 738, \"group\": [985.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-920_BALBc-1_X02_Y01_1001_805\", \"ini\": 2461, \"clust\": 1329, \"rank\": 613, \"rankvar\": 821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 365, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1714, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1478, \"group\": [1328.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1117_BALBc-1_X02_Y01_1004_49\", \"ini\": 2460, \"clust\": 50, \"rank\": 1148, \"rankvar\": 2205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 366, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1007, \"cat-2\": \"Density: 21\", \"cat_2_index\": 195, \"group\": [50.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1309_BALBc-1_X02_Y01_1006_988\", \"ini\": 2459, \"clust\": 648, \"rank\": 866, \"rankvar\": 1301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 367, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1008, \"cat-2\": \"Density: 25\", \"cat_2_index\": 617, \"group\": [651.0, 105.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1701_BALBc-1_X02_Y01_1010_833\", \"ini\": 2458, \"clust\": 1498, \"rank\": 1704, \"rankvar\": 386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 368, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1859, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1348, \"group\": [1507.0, 236.0, 46.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1932_BALBc-1_X02_Y01_1013_860\", \"ini\": 2457, \"clust\": 96, \"rank\": 1106, \"rankvar\": 1421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 369, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 758, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1479, \"group\": [95.0, 32.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1955_BALBc-1_X02_Y01_1014_248\", \"ini\": 2456, \"clust\": 2069, \"rank\": 2537, \"rankvar\": 2138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 370, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1860, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1620, \"group\": [2068.0, 356.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2025_BALBc-1_X02_Y01_1015_159\", \"ini\": 2455, \"clust\": 177, \"rank\": 1040, \"rankvar\": 1253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 371, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1861, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1480, \"group\": [177.0, 55.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2212_BALBc-1_X02_Y01_1017_633\", \"ini\": 2454, \"clust\": 1332, \"rank\": 759, \"rankvar\": 1344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 372, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2405, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1050, \"group\": [1333.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2698_BALBc-1_X02_Y01_1022_99\", \"ini\": 2453, \"clust\": 968, \"rank\": 150, \"rankvar\": 809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 373, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1862, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1051, \"group\": [969.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2934_BALBc-1_X02_Y01_1025_811\", \"ini\": 2452, \"clust\": 2727, \"rank\": 2330, \"rankvar\": 1466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 374, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1715, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1938, \"group\": [2736.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2976_BALBc-1_X02_Y01_1026_488\", \"ini\": 2451, \"clust\": 2456, \"rank\": 1693, \"rankvar\": 1382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 375, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1863, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1481, \"group\": [2456.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3352_BALBc-1_X02_Y01_103_900\", \"ini\": 2450, \"clust\": 1290, \"rank\": 1459, \"rankvar\": 2199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 376, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2477, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1621, \"group\": [1289.0, 176.0, 35.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3627_BALBc-1_X02_Y01_1033_729\", \"ini\": 2449, \"clust\": 378, \"rank\": 307, \"rankvar\": 1529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 377, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2807, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1349, \"group\": [377.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3919_BALBc-1_X02_Y01_1037_288\", \"ini\": 2448, \"clust\": 1962, \"rank\": 1919, \"rankvar\": 1573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 378, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 674, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2048, \"group\": [1963.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4041_BALBc-1_X02_Y01_1038_754\", \"ini\": 2447, \"clust\": 1481, \"rank\": 1754, \"rankvar\": 1552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 379, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1009, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1350, \"group\": [1483.0, 225.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4239_BALBc-1_X02_Y01_1040_415\", \"ini\": 2446, \"clust\": 966, \"rank\": 82, \"rankvar\": 393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 380, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1864, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1052, \"group\": [967.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4540_BALBc-1_X02_Y01_1044_183\", \"ini\": 2445, \"clust\": 685, \"rank\": 182, \"rankvar\": 2500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 381, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1010, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1733, \"group\": [685.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4583_BALBc-1_X02_Y01_1044_66\", \"ini\": 2444, \"clust\": 1458, \"rank\": 2180, \"rankvar\": 2239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 382, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1538, \"cat-2\": \"Density: 24\", \"cat_2_index\": 477, \"group\": [1460.0, 218.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4708_BALBc-1_X02_Y01_1046_353\", \"ini\": 2443, \"clust\": 748, \"rank\": 437, \"rankvar\": 414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 383, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 675, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1351, \"group\": [748.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4717_BALBc-1_X02_Y01_1046_503\", \"ini\": 2442, \"clust\": 1998, \"rank\": 2135, \"rankvar\": 2300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 384, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2808, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1482, \"group\": [1999.0, 352.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4778_BALBc-1_X02_Y01_1047_250\", \"ini\": 2441, \"clust\": 44, \"rank\": 1413, \"rankvar\": 616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 385, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1865, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1837, \"group\": [44.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4973_BALBc-1_X02_Y01_1049_643\", \"ini\": 2440, \"clust\": 463, \"rank\": 197, \"rankvar\": 1319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 386, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 759, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1483, \"group\": [463.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5021_BALBc-1_X02_Y01_105_184\", \"ini\": 2439, \"clust\": 442, \"rank\": 336, \"rankvar\": 918, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 387, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2406, \"cat-2\": \"Density: 21\", \"cat_2_index\": 196, \"group\": [443.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5131_BALBc-1_X02_Y01_1050_723\", \"ini\": 2438, \"clust\": 1616, \"rank\": 1638, \"rankvar\": 1884, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 388, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1866, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1734, \"group\": [1620.0, 274.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5233_BALBc-1_X02_Y01_1052_226\", \"ini\": 2437, \"clust\": 721, \"rank\": 110, \"rankvar\": 1523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 389, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1011, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2049, \"group\": [720.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5349_BALBc-1_X02_Y01_1053_839\", \"ini\": 2436, \"clust\": 2500, \"rank\": 2087, \"rankvar\": 2036, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 390, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1867, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2050, \"group\": [2502.0, 428.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5616_BALBc-1_X02_Y01_1056_980\", \"ini\": 2435, \"clust\": 1412, \"rank\": 878, \"rankvar\": 874, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 391, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1012, \"cat-2\": \"Density: 27\", \"cat_2_index\": 892, \"group\": [1413.0, 204.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5712_BALBc-1_X02_Y01_1058_349\", \"ini\": 2434, \"clust\": 2444, \"rank\": 1814, \"rankvar\": 1503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 392, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 676, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1352, \"group\": [2447.0, 418.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5723_BALBc-1_X02_Y01_1058_507\", \"ini\": 2433, \"clust\": 18, \"rank\": 1131, \"rankvar\": 2508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 393, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2809, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1622, \"group\": [19.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6217_BALBc-1_X02_Y01_1063_382\", \"ini\": 2432, \"clust\": 2545, \"rank\": 1515, \"rankvar\": 2316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 394, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1013, \"cat-2\": \"Density: 27\", \"cat_2_index\": 893, \"group\": [2546.0, 447.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6529_BALBc-1_X02_Y01_1067_754\", \"ini\": 2431, \"clust\": 600, \"rank\": 840, \"rankvar\": 1218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 395, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1868, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1623, \"group\": [600.0, 102.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6591_BALBc-1_X02_Y01_1068_473\", \"ini\": 2430, \"clust\": 1154, \"rank\": 1031, \"rankvar\": 2046, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 396, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1869, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1195, \"group\": [1154.0, 135.0, 25.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6633_BALBc-1_X02_Y01_1068_843\", \"ini\": 2429, \"clust\": 277, \"rank\": 249, \"rankvar\": 1895, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 397, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1870, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1939, \"group\": [276.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7022_BALBc-1_X02_Y01_1072_571\", \"ini\": 2428, \"clust\": 2756, \"rank\": 2379, \"rankvar\": 2119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 398, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 760, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1838, \"group\": [2756.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7059_BALBc-1_X02_Y01_1072_960\", \"ini\": 2427, \"clust\": 2599, \"rank\": 1910, \"rankvar\": 2072, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 399, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1871, \"cat-2\": \"Density: 25\", \"cat_2_index\": 618, \"group\": [2597.0, 460.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7262_BALBc-1_X02_Y01_1075_334\", \"ini\": 2426, \"clust\": 1291, \"rank\": 1123, \"rankvar\": 1861, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 400, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2267, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1735, \"group\": [1292.0, 177.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7803_BALBc-1_X02_Y01_1081_510\", \"ini\": 2425, \"clust\": 1201, \"rank\": 1504, \"rankvar\": 1299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 401, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1576, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1053, \"group\": [1204.0, 154.0, 31.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8504_BALBc-1_X02_Y01_109_960\", \"ini\": 2424, \"clust\": 1940, \"rank\": 2351, \"rankvar\": 1550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 402, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1014, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2051, \"group\": [1943.0, 346.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8575_BALBc-1_X02_Y01_1090_708\", \"ini\": 2423, \"clust\": 458, \"rank\": 415, \"rankvar\": 459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 403, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1872, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1736, \"group\": [465.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8689_BALBc-1_X02_Y01_1092_353\", \"ini\": 2422, \"clust\": 2767, \"rank\": 1859, \"rankvar\": 878, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 404, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1873, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1484, \"group\": [2767.0, 491.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9108_BALBc-1_X02_Y01_1097_627\", \"ini\": 2421, \"clust\": 1277, \"rank\": 951, \"rankvar\": 2037, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 405, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1015, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1940, \"group\": [1276.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9139_BALBc-1_X02_Y01_1098_191\", \"ini\": 2420, \"clust\": 1169, \"rank\": 1104, \"rankvar\": 924, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 406, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1874, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1941, \"group\": [1175.0, 143.0, 27.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9234_BALBc-1_X02_Y01_1099_456\", \"ini\": 2419, \"clust\": 585, \"rank\": 527, \"rankvar\": 927, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 407, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1016, \"cat-2\": \"Density: 27\", \"cat_2_index\": 894, \"group\": [590.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9814_BALBc-1_X02_Y01_1104_657\", \"ini\": 2418, \"clust\": 1366, \"rank\": 1668, \"rankvar\": 1962, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 408, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1607, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1839, \"group\": [1367.0, 191.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9841_BALBc-1_X02_Y01_1104_956\", \"ini\": 2417, \"clust\": 711, \"rank\": 316, \"rankvar\": 425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 409, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1875, \"cat-2\": \"Density: 25\", \"cat_2_index\": 619, \"group\": [708.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9888_BALBc-1_X02_Y01_1105_530\", \"ini\": 2416, \"clust\": 1207, \"rank\": 1753, \"rankvar\": 2145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 410, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1577, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1353, \"group\": [1210.0, 159.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9992_BALBc-1_X02_Y01_1106_822\", \"ini\": 2415, \"clust\": 1437, \"rank\": 1181, \"rankvar\": 2219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 411, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1876, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1840, \"group\": [1438.0, 209.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10019_BALBc-1_X02_Y01_1107_235\", \"ini\": 2414, \"clust\": 2541, \"rank\": 1581, \"rankvar\": 2333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 412, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2478, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1942, \"group\": [2545.0, 446.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10132_BALBc-1_X02_Y01_1108_495\", \"ini\": 2413, \"clust\": 2751, \"rank\": 2458, \"rankvar\": 1868, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 413, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2407, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1354, \"group\": [2751.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10374_BALBc-1_X02_Y01_1110_694\", \"ini\": 2412, \"clust\": 1359, \"rank\": 1548, \"rankvar\": 1431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 414, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1539, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2140, \"group\": [1362.0, 190.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10576_BALBc-1_X02_Y01_1113_426\", \"ini\": 2411, \"clust\": 1827, \"rank\": 2683, \"rankvar\": 1878, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 415, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1017, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1355, \"group\": [1828.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10601_BALBc-1_X02_Y01_1113_726\", \"ini\": 2410, \"clust\": 739, \"rank\": 785, \"rankvar\": 311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 416, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 761, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1737, \"group\": [738.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10688_BALBc-1_X02_Y01_1114_902\", \"ini\": 2409, \"clust\": 2186, \"rank\": 2804, \"rankvar\": 2729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 417, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1877, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1624, \"group\": [2186.0, 368.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10939_BALBc-1_X02_Y01_1118_266\", \"ini\": 2408, \"clust\": 786, \"rank\": 130, \"rankvar\": 339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 418, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1878, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1943, \"group\": [786.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10988_BALBc-1_X02_Y01_1118_830\", \"ini\": 2407, \"clust\": 907, \"rank\": 288, \"rankvar\": 837, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 419, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 762, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1738, \"group\": [910.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11337_BALBc-1_X02_Y01_1122_571\", \"ini\": 2406, \"clust\": 1245, \"rank\": 1067, \"rankvar\": 336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 420, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1018, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1841, \"group\": [1248.0, 170.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11413_BALBc-1_X02_Y01_1123_613\", \"ini\": 2405, \"clust\": 1529, \"rank\": 1721, \"rankvar\": 327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 421, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1019, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2141, \"group\": [1529.0, 247.0, 51.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11498_BALBc-1_X02_Y01_1124_538\", \"ini\": 2404, \"clust\": 1190, \"rank\": 1736, \"rankvar\": 1239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 422, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2268, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1739, \"group\": [1190.0, 150.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11656_BALBc-1_X02_Y01_1126_662\", \"ini\": 2403, \"clust\": 865, \"rank\": 122, \"rankvar\": 1409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 423, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1540, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2297, \"group\": [867.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11767_BALBc-1_X02_Y01_1128_191\", \"ini\": 2402, \"clust\": 1413, \"rank\": 826, \"rankvar\": 2373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 424, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 763, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1740, \"group\": [1414.0, 204.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11839_BALBc-1_X02_Y01_1129_238\", \"ini\": 2401, \"clust\": 272, \"rank\": 245, \"rankvar\": 1785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 425, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2479, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1944, \"group\": [275.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12133_BALBc-1_X02_Y01_1132_128\", \"ini\": 2400, \"clust\": 944, \"rank\": 235, \"rankvar\": 289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 426, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 764, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1625, \"group\": [945.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12185_BALBc-1_X02_Y01_1132_650\", \"ini\": 2399, \"clust\": 1941, \"rank\": 2361, \"rankvar\": 1458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 427, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 765, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1842, \"group\": [1939.0, 346.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12327_BALBc-1_X02_Y01_1134_751\", \"ini\": 2398, \"clust\": 1753, \"rank\": 2037, \"rankvar\": 1000, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 428, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 766, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1945, \"group\": [1756.0, 312.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12702_BALBc-1_X02_Y01_1139_494\", \"ini\": 2397, \"clust\": 2726, \"rank\": 2710, \"rankvar\": 2196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 429, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2269, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1485, \"group\": [2727.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12872_BALBc-1_X02_Y01_1140_895\", \"ini\": 2396, \"clust\": 1469, \"rank\": 1447, \"rankvar\": 1286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 430, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1879, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1196, \"group\": [1470.0, 220.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13105_BALBc-1_X02_Y01_1143_686\", \"ini\": 2395, \"clust\": 1156, \"rank\": 1117, \"rankvar\": 1186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 431, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 767, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1626, \"group\": [1157.0, 136.0, 25.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13323_BALBc-1_X02_Y01_1146_697\", \"ini\": 2394, \"clust\": 2001, \"rank\": 2307, \"rankvar\": 1642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 432, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 768, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2052, \"group\": [2001.0, 353.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13387_BALBc-1_X02_Y01_1147_623\", \"ini\": 2393, \"clust\": 1318, \"rank\": 913, \"rankvar\": 1360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 433, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1020, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2053, \"group\": [1319.0, 184.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13636_BALBc-1_X02_Y01_115_870\", \"ini\": 2392, \"clust\": 1428, \"rank\": 1203, \"rankvar\": 1913, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 434, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 677, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1486, \"group\": [1428.0, 207.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13712_BALBc-1_X02_Y01_1150_829\", \"ini\": 2391, \"clust\": 1192, \"rank\": 1491, \"rankvar\": 1411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 435, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 769, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1356, \"group\": [1193.0, 151.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13747_BALBc-1_X02_Y01_1151_270\", \"ini\": 2390, \"clust\": 1022, \"rank\": 1, \"rankvar\": 326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 436, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2408, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2054, \"group\": [1021.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13791_BALBc-1_X02_Y01_1151_786\", \"ini\": 2389, \"clust\": 196, \"rank\": 1221, \"rankvar\": 825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 437, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1021, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1197, \"group\": [197.0, 60.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13891_BALBc-1_X02_Y01_1153_161\", \"ini\": 2388, \"clust\": 1339, \"rank\": 1208, \"rankvar\": 1611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 438, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 770, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1198, \"group\": [1338.0, 186.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13893_BALBc-1_X02_Y01_1153_212\", \"ini\": 2387, \"clust\": 91, \"rank\": 887, \"rankvar\": 1378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 439, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1716, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1741, \"group\": [92.0, 31.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14380_BALBc-1_X02_Y01_1159_66\", \"ini\": 2386, \"clust\": 628, \"rank\": 700, \"rankvar\": 443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 440, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1880, \"cat-2\": \"Density: 22\", \"cat_2_index\": 264, \"group\": [627.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14826_BALBc-1_X02_Y01_1164_105\", \"ini\": 2385, \"clust\": 2539, \"rank\": 1716, \"rankvar\": 2519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 441, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 771, \"cat-2\": \"Density: 27\", \"cat_2_index\": 895, \"group\": [2540.0, 446.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15075_BALBc-1_X02_Y01_1167_300\", \"ini\": 2384, \"clust\": 2695, \"rank\": 2611, \"rankvar\": 1138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 442, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 772, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2298, \"group\": [2698.0, 487.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15083_BALBc-1_X02_Y01_1167_377\", \"ini\": 2383, \"clust\": 2420, \"rank\": 1800, \"rankvar\": 2204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 443, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1022, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1054, \"group\": [2421.0, 404.0, 85.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15194_BALBc-1_X02_Y01_1168_743\", \"ini\": 2382, \"clust\": 1867, \"rank\": 2734, \"rankvar\": 2246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 444, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 5, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1742, \"group\": [1867.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15334_BALBc-1_X02_Y01_117_883\", \"ini\": 2381, \"clust\": 540, \"rank\": 1044, \"rankvar\": 720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 445, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1881, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1487, \"group\": [540.0, 92.0, 20.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15471_BALBc-1_X02_Y01_1171_582\", \"ini\": 2380, \"clust\": 708, \"rank\": 398, \"rankvar\": 828, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 446, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1023, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1843, \"group\": [710.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15630_BALBc-1_X02_Y01_1173_619\", \"ini\": 2379, \"clust\": 230, \"rank\": 1242, \"rankvar\": 801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 447, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1024, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1844, \"group\": [231.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15634_BALBc-1_X02_Y01_1173_634\", \"ini\": 2378, \"clust\": 2043, \"rank\": 2313, \"rankvar\": 1996, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 448, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 773, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2055, \"group\": [2043.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15644_BALBc-1_X02_Y01_1173_755\", \"ini\": 2377, \"clust\": 1538, \"rank\": 2291, \"rankvar\": 2559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 449, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1025, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1488, \"group\": [1539.0, 252.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15706_BALBc-1_X02_Y01_1174_723\", \"ini\": 2376, \"clust\": 212, \"rank\": 1328, \"rankvar\": 577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 450, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 774, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1627, \"group\": [216.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15832_BALBc-1_X02_Y01_1176_472\", \"ini\": 2375, \"clust\": 1911, \"rank\": 1049, \"rankvar\": 2703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 451, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1026, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1357, \"group\": [1913.0, 335.0, 74.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16250_BALBc-1_X02_Y01_1180_834\", \"ini\": 2374, \"clust\": 2284, \"rank\": 2432, \"rankvar\": 2105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 452, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 775, \"cat-2\": \"Density: 27\", \"cat_2_index\": 896, \"group\": [2285.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16261_BALBc-1_X02_Y01_1180_946\", \"ini\": 2373, \"clust\": 2689, \"rank\": 2434, \"rankvar\": 2672, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 453, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1882, \"cat-2\": \"Density: 27\", \"cat_2_index\": 897, \"group\": [2689.0, 485.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16286_BALBc-1_X02_Y01_1181_398\", \"ini\": 2372, \"clust\": 1555, \"rank\": 2268, \"rankvar\": 2662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 454, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1027, \"cat-2\": \"Density: 27\", \"cat_2_index\": 898, \"group\": [1558.0, 254.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16453_BALBc-1_X02_Y01_1183_622\", \"ini\": 2371, \"clust\": 2057, \"rank\": 2146, \"rankvar\": 1618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 455, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 6, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1743, \"group\": [2057.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16460_BALBc-1_X02_Y01_1183_734\", \"ini\": 2370, \"clust\": 764, \"rank\": 466, \"rankvar\": 370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 456, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 7, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1628, \"group\": [770.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16490_BALBc-1_X02_Y01_1184_20\", \"ini\": 2369, \"clust\": 576, \"rank\": 496, \"rankvar\": 1787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 457, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 894, \"cat-2\": \"Density: 15\", \"cat_2_index\": 36, \"group\": [578.0, 100.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16779_BALBc-1_X02_Y01_1188_180\", \"ini\": 2368, \"clust\": 2519, \"rank\": 1597, \"rankvar\": 1761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 458, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 776, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2056, \"group\": [2518.0, 438.0, 95.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16869_BALBc-1_X02_Y01_1189_208\", \"ini\": 2367, \"clust\": 971, \"rank\": 152, \"rankvar\": 428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 459, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1717, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2220, \"group\": [971.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16889_BALBc-1_X02_Y01_1189_451\", \"ini\": 2366, \"clust\": 1090, \"rank\": 181, \"rankvar\": 798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 460, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1028, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1489, \"group\": [1090.0, 119.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16901_BALBc-1_X02_Y01_1189_539\", \"ini\": 2365, \"clust\": 1403, \"rank\": 939, \"rankvar\": 1056, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 461, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1608, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2221, \"group\": [1403.0, 200.0, 40.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17048_BALBc-1_X02_Y01_1190_641\", \"ini\": 2364, \"clust\": 439, \"rank\": 708, \"rankvar\": 935, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 462, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 8, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1946, \"group\": [438.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17117_BALBc-1_X02_Y01_1191_556\", \"ini\": 2363, \"clust\": 2102, \"rank\": 2317, \"rankvar\": 1469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 463, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1609, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1629, \"group\": [2146.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17132_BALBc-1_X02_Y01_1191_663\", \"ini\": 2362, \"clust\": 1187, \"rank\": 1409, \"rankvar\": 1566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 464, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 777, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1947, \"group\": [1188.0, 150.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17336_BALBc-1_X02_Y01_1194_509\", \"ini\": 2361, \"clust\": 1404, \"rank\": 795, \"rankvar\": 807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 465, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1610, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1630, \"group\": [1404.0, 200.0, 40.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17653_BALBc-1_X02_Y01_1198_693\", \"ini\": 2360, \"clust\": 1905, \"rank\": 1600, \"rankvar\": 1601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 466, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 778, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2057, \"group\": [1908.0, 334.0, 74.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17657_BALBc-1_X02_Y01_1198_792\", \"ini\": 2359, \"clust\": 2626, \"rank\": 2344, \"rankvar\": 2172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 467, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1029, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1055, \"group\": [2627.0, 467.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17668_BALBc-1_X02_Y01_1198_965\", \"ini\": 2358, \"clust\": 1246, \"rank\": 625, \"rankvar\": 1255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 468, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2409, \"cat-2\": \"Density: 26\", \"cat_2_index\": 739, \"group\": [1246.0, 170.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17790_BALBc-1_X02_Y01_12_625\", \"ini\": 2357, \"clust\": 173, \"rank\": 1019, \"rankvar\": 333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 469, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1883, \"cat-2\": \"Density: 25\", \"cat_2_index\": 620, \"group\": [176.0, 54.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17829_BALBc-1_X02_Y01_12_949\", \"ini\": 2356, \"clust\": 1503, \"rank\": 1536, \"rankvar\": 275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 470, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1718, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1358, \"group\": [1506.0, 235.0, 46.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17833_BALBc-1_X02_Y01_120_10\", \"ini\": 2355, \"clust\": 1550, \"rank\": 1941, \"rankvar\": 2610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 471, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1611, \"cat-2\": \"Density: 15\", \"cat_2_index\": 37, \"group\": [1553.0, 254.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17960_BALBc-1_X02_Y01_1200_621\", \"ini\": 2354, \"clust\": 734, \"rank\": 375, \"rankvar\": 1757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 472, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 9, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1845, \"group\": [734.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18016_BALBc-1_X02_Y01_1201_255\", \"ini\": 2353, \"clust\": 1268, \"rank\": 1231, \"rankvar\": 937, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 473, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1030, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1744, \"group\": [1268.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18096_BALBc-1_X02_Y01_1202_300\", \"ini\": 2352, \"clust\": 1260, \"rank\": 1718, \"rankvar\": 2074, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 474, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1719, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1631, \"group\": [1261.0, 173.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18196_BALBc-1_X02_Y01_1203_578\", \"ini\": 2351, \"clust\": 1947, \"rank\": 2085, \"rankvar\": 2096, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 475, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1612, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1632, \"group\": [1948.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18210_BALBc-1_X02_Y01_1203_725\", \"ini\": 2350, \"clust\": 1930, \"rank\": 2083, \"rankvar\": 1976, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 476, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1031, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1633, \"group\": [1931.0, 343.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18259_BALBc-1_X02_Y01_1204_360\", \"ini\": 2349, \"clust\": 1305, \"rank\": 1490, \"rankvar\": 1479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 477, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1720, \"cat-2\": \"Density: 26\", \"cat_2_index\": 740, \"group\": [1309.0, 180.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18482_BALBc-1_X02_Y01_1206_858\", \"ini\": 2348, \"clust\": 1228, \"rank\": 1795, \"rankvar\": 2209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 478, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 779, \"cat-2\": \"Density: 24\", \"cat_2_index\": 478, \"group\": [1227.0, 164.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18612_BALBc-1_X02_Y01_1208_674\", \"ini\": 2347, \"clust\": 2786, \"rank\": 2548, \"rankvar\": 2258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 479, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1032, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2058, \"group\": [2785.0, 496.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18710_BALBc-1_X02_Y01_1209_899\", \"ini\": 2346, \"clust\": 2736, \"rank\": 2347, \"rankvar\": 967, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 480, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 780, \"cat-2\": \"Density: 24\", \"cat_2_index\": 479, \"group\": [2740.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18905_BALBc-1_X02_Y01_1211_658\", \"ini\": 2345, \"clust\": 1669, \"rank\": 1606, \"rankvar\": 2275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 10, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2059, \"group\": [1669.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19104_BALBc-1_X02_Y01_1214_445\", \"ini\": 2344, \"clust\": 1906, \"rank\": 1451, \"rankvar\": 2210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 482, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2410, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1056, \"group\": [1906.0, 334.0, 74.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19264_BALBc-1_X02_Y01_1216_455\", \"ini\": 2343, \"clust\": 633, \"rank\": 416, \"rankvar\": 1311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 483, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1613, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1359, \"group\": [633.0, 104.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19265_BALBc-1_X02_Y01_1216_472\", \"ini\": 2342, \"clust\": 1832, \"rank\": 2758, \"rankvar\": 1668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 484, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1614, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1634, \"group\": [1832.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19271_BALBc-1_X02_Y01_1216_594\", \"ini\": 2341, \"clust\": 1676, \"rank\": 2412, \"rankvar\": 2647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 485, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 781, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1635, \"group\": [1676.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19288_BALBc-1_X02_Y01_1216_855\", \"ini\": 2340, \"clust\": 1179, \"rank\": 2033, \"rankvar\": 2334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 486, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 782, \"cat-2\": \"Density: 24\", \"cat_2_index\": 480, \"group\": [1180.0, 147.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19310_BALBc-1_X02_Y01_1217_258\", \"ini\": 2339, \"clust\": 2083, \"rank\": 2528, \"rankvar\": 1789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 487, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1033, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1745, \"group\": [2083.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19351_BALBc-1_X02_Y01_1217_759\", \"ini\": 2338, \"clust\": 2130, \"rank\": 2370, \"rankvar\": 178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 488, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2503, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1360, \"group\": [2132.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19674_BALBc-1_X02_Y01_1221_135\", \"ini\": 2337, \"clust\": 942, \"rank\": 463, \"rankvar\": 98, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 489, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2411, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1057, \"group\": [941.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19754_BALBc-1_X02_Y01_1222_168\", \"ini\": 2336, \"clust\": 1284, \"rank\": 1187, \"rankvar\": 1648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 490, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1721, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1746, \"group\": [1285.0, 175.0, 35.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19785_BALBc-1_X02_Y01_1222_508\", \"ini\": 2335, \"clust\": 1891, \"rank\": 2472, \"rankvar\": 2431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 491, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1615, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1490, \"group\": [1890.0, 328.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20247_BALBc-1_X02_Y01_1228_427\", \"ini\": 2334, \"clust\": 1762, \"rank\": 2613, \"rankvar\": 2573, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2504, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1361, \"group\": [1763.0, 314.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20444_BALBc-1_X02_Y01_1230_254\", \"ini\": 2333, \"clust\": 1356, \"rank\": 1916, \"rankvar\": 2470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 493, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1034, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1636, \"group\": [1357.0, 190.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20674_BALBc-1_X02_Y01_1232_895\", \"ini\": 2332, \"clust\": 1281, \"rank\": 975, \"rankvar\": 2660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 494, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 783, \"cat-2\": \"Density: 27\", \"cat_2_index\": 899, \"group\": [1280.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20684_BALBc-1_X02_Y01_1232_950\", \"ini\": 2331, \"clust\": 2797, \"rank\": 2642, \"rankvar\": 2733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 495, \"cat-1\": \"Neighbor: CD4(-)CD8(-) cDC\", \"cat_1_index\": 1590, \"cat-2\": \"Density: 24\", \"cat_2_index\": 481, \"group\": [2798.0, 497.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20877_BALBc-1_X02_Y01_1235_619\", \"ini\": 2330, \"clust\": 1852, \"rank\": 2741, \"rankvar\": 2056, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 496, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 784, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1948, \"group\": [1855.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21358_BALBc-1_X02_Y01_1241_235\", \"ini\": 2329, \"clust\": 2696, \"rank\": 2130, \"rankvar\": 261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 497, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1035, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1362, \"group\": [2696.0, 487.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21512_BALBc-1_X02_Y01_1243_309\", \"ini\": 2328, \"clust\": 2631, \"rank\": 2265, \"rankvar\": 2383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 498, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1722, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1058, \"group\": [2630.0, 468.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21583_BALBc-1_X02_Y01_1244_275\", \"ini\": 2327, \"clust\": 2412, \"rank\": 1590, \"rankvar\": 732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 499, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 11, \"cat-2\": \"Density: 27\", \"cat_2_index\": 900, \"group\": [2413.0, 400.0, 83.0, 22.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21689_BALBc-1_X02_Y01_1245_805\", \"ini\": 2326, \"clust\": 2782, \"rank\": 2624, \"rankvar\": 2756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 500, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2505, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1199, \"group\": [2783.0, 495.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22019_BALBc-1_X02_Y01_125_269\", \"ini\": 2325, \"clust\": 1584, \"rank\": 1001, \"rankvar\": 1157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 501, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1884, \"cat-2\": \"Density: 25\", \"cat_2_index\": 621, \"group\": [1587.0, 266.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22239_BALBc-1_X02_Y01_1252_216\", \"ini\": 2324, \"clust\": 2540, \"rank\": 1393, \"rankvar\": 1651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 502, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2270, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1363, \"group\": [2541.0, 446.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22243_BALBc-1_X02_Y01_1252_255\", \"ini\": 2323, \"clust\": 1243, \"rank\": 980, \"rankvar\": 2338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 503, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 12, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1200, \"group\": [1242.0, 169.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22255_BALBc-1_X02_Y01_1252_348\", \"ini\": 2322, \"clust\": 2804, \"rank\": 2399, \"rankvar\": 2546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 504, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1723, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1059, \"group\": [2805.0, 500.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22266_BALBc-1_X02_Y01_1252_472\", \"ini\": 2321, \"clust\": 1796, \"rank\": 2654, \"rankvar\": 2772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 505, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2506, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1364, \"group\": [1794.0, 320.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22548_BALBc-1_X02_Y01_1256_623\", \"ini\": 2320, \"clust\": 1746, \"rank\": 2208, \"rankvar\": 1869, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 506, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 785, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2060, \"group\": [1747.0, 311.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22671_BALBc-1_X02_Y01_1258_136\", \"ini\": 2319, \"clust\": 765, \"rank\": 366, \"rankvar\": 429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 507, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1036, \"cat-2\": \"Density: 27\", \"cat_2_index\": 901, \"group\": [769.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22748_BALBc-1_X02_Y01_1259_383\", \"ini\": 2318, \"clust\": 1279, \"rank\": 1198, \"rankvar\": 2288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 508, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 678, \"cat-2\": \"Density: 27\", \"cat_2_index\": 902, \"group\": [1283.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22787_BALBc-1_X02_Y01_1259_893\", \"ini\": 2317, \"clust\": 1750, \"rank\": 2356, \"rankvar\": 1952, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 509, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 786, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1060, \"group\": [1751.0, 311.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22931_BALBc-1_X02_Y01_1260_924\", \"ini\": 2316, \"clust\": 1282, \"rank\": 1069, \"rankvar\": 2485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 510, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 787, \"cat-2\": \"Density: 27\", \"cat_2_index\": 903, \"group\": [1281.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23108_BALBc-1_X02_Y01_1263_256\", \"ini\": 2315, \"clust\": 2812, \"rank\": 2354, \"rankvar\": 2669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 511, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 679, \"cat-2\": \"Density: 26\", \"cat_2_index\": 741, \"group\": [2812.0, 502.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23139_BALBc-1_X02_Y01_1263_670\", \"ini\": 2314, \"clust\": 1780, \"rank\": 2691, \"rankvar\": 2692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 512, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1037, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1637, \"group\": [1781.0, 318.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23280_BALBc-1_X02_Y01_1265_648\", \"ini\": 2313, \"clust\": 1707, \"rank\": 1936, \"rankvar\": 2630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 513, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 13, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1846, \"group\": [1713.0, 304.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23335_BALBc-1_X02_Y01_1266_525\", \"ini\": 2312, \"clust\": 2556, \"rank\": 2165, \"rankvar\": 2044, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 514, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2507, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1491, \"group\": [2555.0, 449.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23348_BALBc-1_X02_Y01_1266_814\", \"ini\": 2311, \"clust\": 1748, \"rank\": 2465, \"rankvar\": 2654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 515, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2508, \"cat-2\": \"Density: 22\", \"cat_2_index\": 265, \"group\": [1749.0, 311.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23436_BALBc-1_X02_Y01_1268_124\", \"ini\": 2310, \"clust\": 2496, \"rank\": 2026, \"rankvar\": 2299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 516, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2271, \"cat-2\": \"Density: 26\", \"cat_2_index\": 742, \"group\": [2498.0, 427.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23465_BALBc-1_X02_Y01_1268_478\", \"ini\": 2309, \"clust\": 1853, \"rank\": 2767, \"rankvar\": 1428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 517, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 14, \"cat-2\": \"Density: 27\", \"cat_2_index\": 904, \"group\": [1853.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23570_BALBc-1_X02_Y01_1269_960\", \"ini\": 2308, \"clust\": 1416, \"rank\": 449, \"rankvar\": 2272, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 518, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1061, \"group\": [1417.0, 204.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23719_BALBc-1_X02_Y01_1271_19\", \"ini\": 2307, \"clust\": 960, \"rank\": 112, \"rankvar\": 725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 519, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1885, \"cat-2\": \"Density: 9\", \"cat_2_index\": 1, \"group\": [960.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23817_BALBc-1_X02_Y01_1272_501\", \"ini\": 2306, \"clust\": 2600, \"rank\": 1791, \"rankvar\": 1531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 520, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2509, \"cat-2\": \"Density: 27\", \"cat_2_index\": 905, \"group\": [2598.0, 460.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23834_BALBc-1_X02_Y01_1272_684\", \"ini\": 2305, \"clust\": 1622, \"rank\": 1458, \"rankvar\": 1714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 521, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1038, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1365, \"group\": [1622.0, 276.0, 59.0, 14.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23870_BALBc-1_X02_Y01_1273_191\", \"ini\": 2304, \"clust\": 731, \"rank\": 129, \"rankvar\": 692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 522, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1724, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1062, \"group\": [730.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23961_BALBc-1_X02_Y01_1274_276\", \"ini\": 2303, \"clust\": 2647, \"rank\": 2217, \"rankvar\": 1323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 523, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2412, \"cat-2\": \"Density: 24\", \"cat_2_index\": 482, \"group\": [2647.0, 476.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24129_BALBc-1_X02_Y01_1276_627\", \"ini\": 2302, \"clust\": 137, \"rank\": 961, \"rankvar\": 958, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 524, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 15, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1492, \"group\": [136.0, 45.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24213_BALBc-1_X02_Y01_1277_743\", \"ini\": 2301, \"clust\": 1673, \"rank\": 1964, \"rankvar\": 2087, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 525, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2510, \"cat-2\": \"Density: 26\", \"cat_2_index\": 743, \"group\": [1686.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24260_BALBc-1_X02_Y01_1278_371\", \"ini\": 2300, \"clust\": 2713, \"rank\": 2258, \"rankvar\": 1376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 526, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 16, \"cat-2\": \"Density: 20\", \"cat_2_index\": 140, \"group\": [2717.0, 489.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24435_BALBc-1_X02_Y01_128_859\", \"ini\": 2299, \"clust\": 869, \"rank\": 79, \"rankvar\": 830, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 527, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 680, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1493, \"group\": [870.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24454_BALBc-1_X02_Y01_1280_168\", \"ini\": 2298, \"clust\": 2663, \"rank\": 2433, \"rankvar\": 2178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 528, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1725, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1063, \"group\": [2662.0, 480.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24523_BALBc-1_X02_Y01_1281_204\", \"ini\": 2297, \"clust\": 1828, \"rank\": 2358, \"rankvar\": 163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 529, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2511, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1064, \"group\": [1829.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24639_BALBc-1_X02_Y01_1282_936\", \"ini\": 2296, \"clust\": 1763, \"rank\": 2253, \"rankvar\": 2411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 530, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 788, \"cat-2\": \"Density: 25\", \"cat_2_index\": 622, \"group\": [1761.0, 314.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24854_BALBc-1_X02_Y01_1285_865\", \"ini\": 2295, \"clust\": 1806, \"rank\": 2687, \"rankvar\": 2702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 531, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 789, \"cat-2\": \"Density: 20\", \"cat_2_index\": 141, \"group\": [1804.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25171_BALBc-1_X02_Y01_129_327\", \"ini\": 2294, \"clust\": 314, \"rank\": 622, \"rankvar\": 1720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 532, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1886, \"cat-2\": \"Density: 26\", \"cat_2_index\": 744, \"group\": [317.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25272_BALBc-1_X02_Y01_1290_692\", \"ini\": 2293, \"clust\": 2154, \"rank\": 2676, \"rankvar\": 2214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 533, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 17, \"cat-2\": \"Density: 27\", \"cat_2_index\": 906, \"group\": [2154.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25330_BALBc-1_X02_Y01_1291_444\", \"ini\": 2292, \"clust\": 1803, \"rank\": 2577, \"rankvar\": 2510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 534, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2512, \"cat-2\": \"Density: 21\", \"cat_2_index\": 197, \"group\": [1806.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25437_BALBc-1_X02_Y01_1292_824\", \"ini\": 2291, \"clust\": 1528, \"rank\": 1861, \"rankvar\": 2604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 535, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 18, \"cat-2\": \"Density: 21\", \"cat_2_index\": 198, \"group\": [1531.0, 247.0, 51.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25507_BALBc-1_X02_Y01_1293_608\", \"ini\": 2290, \"clust\": 1953, \"rank\": 2378, \"rankvar\": 1487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 536, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 19, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1065, \"group\": [1952.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25576_BALBc-1_X02_Y01_1294_588\", \"ini\": 2289, \"clust\": 706, \"rank\": 219, \"rankvar\": 635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 537, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 790, \"cat-2\": \"Density: 26\", \"cat_2_index\": 745, \"group\": [712.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25582_BALBc-1_X02_Y01_1294_704\", \"ini\": 2288, \"clust\": 1659, \"rank\": 1618, \"rankvar\": 1357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 538, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1039, \"cat-2\": \"Density: 25\", \"cat_2_index\": 623, \"group\": [1662.0, 301.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25697_BALBc-1_X02_Y01_1296_329\", \"ini\": 2287, \"clust\": 2803, \"rank\": 2054, \"rankvar\": 2460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 539, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2413, \"cat-2\": \"Density: 19\", \"cat_2_index\": 116, \"group\": [2806.0, 500.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25710_BALBc-1_X02_Y01_1296_563\", \"ini\": 2286, \"clust\": 1822, \"rank\": 2570, \"rankvar\": 2015, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 540, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2513, \"cat-2\": \"Density: 25\", \"cat_2_index\": 624, \"group\": [1822.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25815_BALBc-1_X02_Y01_1297_976\", \"ini\": 2285, \"clust\": 709, \"rank\": 147, \"rankvar\": 1660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 541, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1040, \"cat-2\": \"Density: 23\", \"cat_2_index\": 379, \"group\": [706.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25841_BALBc-1_X02_Y01_1298_381\", \"ini\": 2284, \"clust\": 2711, \"rank\": 2757, \"rankvar\": 2796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 791, \"cat-2\": \"Density: 17\", \"cat_2_index\": 71, \"group\": [2710.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25946_BALBc-1_X02_Y01_1299_659\", \"ini\": 2283, \"clust\": 1119, \"rank\": 916, \"rankvar\": 1120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 543, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 20, \"cat-2\": \"Density: 24\", \"cat_2_index\": 483, \"group\": [1117.0, 125.0, 23.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26179_BALBc-1_X02_Y01_1300_765\", \"ini\": 2282, \"clust\": 2219, \"rank\": 2783, \"rankvar\": 2238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 544, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2514, \"cat-2\": \"Density: 18\", \"cat_2_index\": 91, \"group\": [2219.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26338_BALBc-1_X02_Y01_1302_966\", \"ini\": 2281, \"clust\": 1835, \"rank\": 2816, \"rankvar\": 2762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 545, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1041, \"cat-2\": \"Density: 22\", \"cat_2_index\": 266, \"group\": [1835.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26563_BALBc-1_X02_Y01_1306_615\", \"ini\": 2280, \"clust\": 1148, \"rank\": 556, \"rankvar\": 383, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 546, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 21, \"cat-2\": \"Density: 24\", \"cat_2_index\": 484, \"group\": [1146.0, 132.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26947_BALBc-1_X02_Y01_1310_844\", \"ini\": 2279, \"clust\": 1834, \"rank\": 2789, \"rankvar\": 2101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 547, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 22, \"cat-2\": \"Density: 17\", \"cat_2_index\": 72, \"group\": [1837.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26986_BALBc-1_X02_Y01_1311_476\", \"ini\": 2278, \"clust\": 1625, \"rank\": 2043, \"rankvar\": 1177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 548, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 23, \"cat-2\": \"Density: 20\", \"cat_2_index\": 142, \"group\": [1627.0, 281.0, 61.0, 15.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27217_BALBc-1_X02_Y01_1314_632\", \"ini\": 2277, \"clust\": 1224, \"rank\": 1589, \"rankvar\": 1151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 549, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 24, \"cat-2\": \"Density: 23\", \"cat_2_index\": 380, \"group\": [1224.0, 163.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27299_BALBc-1_X02_Y01_1315_692\", \"ini\": 2276, \"clust\": 166, \"rank\": 1008, \"rankvar\": 586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 550, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 25, \"cat-2\": \"Density: 22\", \"cat_2_index\": 267, \"group\": [166.0, 53.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27307_BALBc-1_X02_Y01_1315_735\", \"ini\": 2275, \"clust\": 2369, \"rank\": 1908, \"rankvar\": 1674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 26, \"cat-2\": \"Density: 19\", \"cat_2_index\": 117, \"group\": [2369.0, 392.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27466_BALBc-1_X02_Y01_1317_879\", \"ini\": 2274, \"clust\": 1657, \"rank\": 1508, \"rankvar\": 2277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 552, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 792, \"cat-2\": \"Density: 16\", \"cat_2_index\": 51, \"group\": [1657.0, 300.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27504_BALBc-1_X02_Y01_1318_405\", \"ini\": 2273, \"clust\": 2714, \"rank\": 2397, \"rankvar\": 1833, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 553, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 793, \"cat-2\": \"Density: 16\", \"cat_2_index\": 52, \"group\": [2716.0, 489.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27595_BALBc-1_X02_Y01_1319_808\", \"ini\": 2272, \"clust\": 2384, \"rank\": 1706, \"rankvar\": 2755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 554, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 27, \"cat-2\": \"Density: 15\", \"cat_2_index\": 38, \"group\": [2387.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27599_BALBc-1_X02_Y01_1319_890\", \"ini\": 2271, \"clust\": 1732, \"rank\": 797, \"rankvar\": 2394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 555, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 794, \"cat-2\": \"Density: 17\", \"cat_2_index\": 73, \"group\": [1737.0, 309.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27627_BALBc-1_X02_Y01_132_376\", \"ini\": 2270, \"clust\": 1067, \"rank\": 746, \"rankvar\": 482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 556, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1042, \"cat-2\": \"Density: 26\", \"cat_2_index\": 746, \"group\": [1087.0, 117.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27677_BALBc-1_X02_Y01_132_918\", \"ini\": 2269, \"clust\": 1335, \"rank\": 946, \"rankvar\": 493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 557, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2515, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1949, \"group\": [1335.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27726_BALBc-1_X02_Y01_1320_540\", \"ini\": 2268, \"clust\": 1364, \"rank\": 1557, \"rankvar\": 1570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 558, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2516, \"cat-2\": \"Density: 18\", \"cat_2_index\": 92, \"group\": [1364.0, 191.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27814_BALBc-1_X02_Y01_1321_772\", \"ini\": 2267, \"clust\": 200, \"rank\": 1394, \"rankvar\": 1587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 559, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 28, \"cat-2\": \"Density: 17\", \"cat_2_index\": 74, \"group\": [207.0, 61.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27851_BALBc-1_X02_Y01_1322_496\", \"ini\": 2266, \"clust\": 2133, \"rank\": 2520, \"rankvar\": 741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 560, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2517, \"cat-2\": \"Density: 16\", \"cat_2_index\": 53, \"group\": [2133.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27996_BALBc-1_X02_Y01_1324_340\", \"ini\": 2265, \"clust\": 70, \"rank\": 1050, \"rankvar\": 1548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 561, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 795, \"cat-2\": \"Density: 13\", \"cat_2_index\": 12, \"group\": [70.0, 25.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28090_BALBc-1_X02_Y01_1325_569\", \"ini\": 2264, \"clust\": 2248, \"rank\": 2164, \"rankvar\": 1448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 562, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 29, \"cat-2\": \"Density: 20\", \"cat_2_index\": 143, \"group\": [2249.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28093_BALBc-1_X02_Y01_1325_603\", \"ini\": 2263, \"clust\": 142, \"rank\": 1267, \"rankvar\": 1320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 563, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 30, \"cat-2\": \"Density: 22\", \"cat_2_index\": 268, \"group\": [142.0, 46.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28114_BALBc-1_X02_Y01_1325_828\", \"ini\": 2262, \"clust\": 2697, \"rank\": 2464, \"rankvar\": 2231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 564, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 31, \"cat-2\": \"Density: 15\", \"cat_2_index\": 39, \"group\": [2697.0, 487.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28137_BALBc-1_X02_Y01_1325_999\", \"ini\": 2261, \"clust\": 1836, \"rank\": 2823, \"rankvar\": 2761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 565, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 796, \"cat-2\": \"Density: 17\", \"cat_2_index\": 75, \"group\": [1836.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28664_BALBc-1_X02_Y01_1331_725\", \"ini\": 2260, \"clust\": 1837, \"rank\": 2533, \"rankvar\": 887, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 566, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 32, \"cat-2\": \"Density: 16\", \"cat_2_index\": 54, \"group\": [1838.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28713_BALBc-1_X02_Y01_1332_436\", \"ini\": 2259, \"clust\": 1823, \"rank\": 2714, \"rankvar\": 2148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 567, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2518, \"cat-2\": \"Density: 14\", \"cat_2_index\": 27, \"group\": [1823.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28759_BALBc-1_X02_Y01_1332_937\", \"ini\": 2258, \"clust\": 1863, \"rank\": 2780, \"rankvar\": 2576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 568, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 797, \"cat-2\": \"Density: 15\", \"cat_2_index\": 40, \"group\": [1865.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28951_BALBc-1_X02_Y01_1335_663\", \"ini\": 2257, \"clust\": 2471, \"rank\": 1661, \"rankvar\": 1671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 569, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 33, \"cat-2\": \"Density: 20\", \"cat_2_index\": 144, \"group\": [2469.0, 420.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29000_BALBc-1_X02_Y01_1336_597\", \"ini\": 2256, \"clust\": 2139, \"rank\": 2559, \"rankvar\": 1876, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 570, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 34, \"cat-2\": \"Density: 16\", \"cat_2_index\": 55, \"group\": [2139.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29507_BALBc-1_X02_Y01_137_977\", \"ini\": 2255, \"clust\": 1258, \"rank\": 1227, \"rankvar\": 2580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 571, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1043, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1950, \"group\": [1259.0, 173.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29674_BALBc-1_X02_Y01_14_498\", \"ini\": 2254, \"clust\": 268, \"rank\": 810, \"rankvar\": 1954, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 572, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2414, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1201, \"group\": [267.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29998_BALBc-1_X02_Y01_143_952\", \"ini\": 2253, \"clust\": 1936, \"rank\": 2621, \"rankvar\": 2700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 573, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1044, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1951, \"group\": [1935.0, 345.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30482_BALBc-1_X02_Y01_15_575\", \"ini\": 2252, \"clust\": 505, \"rank\": 717, \"rankvar\": 1594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 574, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1887, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1202, \"group\": [505.0, 78.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30586_BALBc-1_X02_Y01_150_909\", \"ini\": 2251, \"clust\": 587, \"rank\": 864, \"rankvar\": 643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1045, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1494, \"group\": [588.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31216_BALBc-1_X02_Y01_159_250\", \"ini\": 2250, \"clust\": 1306, \"rank\": 1336, \"rankvar\": 1283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 576, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1617, \"cat-2\": \"Density: 26\", \"cat_2_index\": 747, \"group\": [1303.0, 180.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31389_BALBc-1_X02_Y01_160_546\", \"ini\": 2249, \"clust\": 97, \"rank\": 990, \"rankvar\": 445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 577, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1888, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1203, \"group\": [97.0, 33.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31462_BALBc-1_X02_Y01_161_584\", \"ini\": 2248, \"clust\": 897, \"rank\": 250, \"rankvar\": 67, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 578, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1889, \"cat-2\": \"Density: 27\", \"cat_2_index\": 907, \"group\": [896.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31774_BALBc-1_X02_Y01_166_30\", \"ini\": 2247, \"clust\": 2543, \"rank\": 1496, \"rankvar\": 608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 579, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1046, \"cat-2\": \"Density: 16\", \"cat_2_index\": 56, \"group\": [2542.0, 446.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31790_BALBc-1_X02_Y01_166_464\", \"ini\": 2246, \"clust\": 1522, \"rank\": 1429, \"rankvar\": 1781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 580, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2810, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1495, \"group\": [1522.0, 243.0, 49.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32250_BALBc-1_X02_Y01_171_888\", \"ini\": 2245, \"clust\": 1389, \"rank\": 1486, \"rankvar\": 1775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 581, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 798, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1366, \"group\": [1389.0, 195.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32282_BALBc-1_X02_Y01_172_482\", \"ini\": 2244, \"clust\": 469, \"rank\": 1082, \"rankvar\": 232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 582, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1890, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1496, \"group\": [470.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32442_BALBc-1_X02_Y01_174_956\", \"ini\": 2243, \"clust\": 1400, \"rank\": 1324, \"rankvar\": 1507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 583, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1047, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1847, \"group\": [1399.0, 199.0, 40.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32519_BALBc-1_X02_Y01_175_843\", \"ini\": 2242, \"clust\": 2747, \"rank\": 2558, \"rankvar\": 2448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 584, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1891, \"cat-2\": \"Density: 26\", \"cat_2_index\": 748, \"group\": [2748.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32762_BALBc-1_X02_Y01_179_322\", \"ini\": 2241, \"clust\": 401, \"rank\": 262, \"rankvar\": 885, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 585, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1048, \"cat-2\": \"Density: 25\", \"cat_2_index\": 625, \"group\": [404.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32908_BALBc-1_X02_Y01_180_240\", \"ini\": 2240, \"clust\": 101, \"rank\": 989, \"rankvar\": 1887, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 586, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1618, \"cat-2\": \"Density: 23\", \"cat_2_index\": 381, \"group\": [101.0, 33.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33134_BALBc-1_X02_Y01_183_289\", \"ini\": 2239, \"clust\": 163, \"rank\": 1219, \"rankvar\": 422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 587, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1049, \"cat-2\": \"Density: 24\", \"cat_2_index\": 485, \"group\": [163.0, 53.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33188_BALBc-1_X02_Y01_183_994\", \"ini\": 2238, \"clust\": 1945, \"rank\": 2408, \"rankvar\": 2527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 588, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1619, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1497, \"group\": [1946.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33296_BALBc-1_X02_Y01_185_49\", \"ini\": 2237, \"clust\": 1504, \"rank\": 1391, \"rankvar\": 640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 589, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2480, \"cat-2\": \"Density: 20\", \"cat_2_index\": 145, \"group\": [1505.0, 235.0, 46.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33298_BALBc-1_X02_Y01_185_504\", \"ini\": 2236, \"clust\": 892, \"rank\": 188, \"rankvar\": 1135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 590, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2415, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1638, \"group\": [893.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33505_BALBc-1_X02_Y01_188_605\", \"ini\": 2235, \"clust\": 1591, \"rank\": 897, \"rankvar\": 409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1050, \"cat-2\": \"Density: 27\", \"cat_2_index\": 908, \"group\": [1592.0, 267.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34197_BALBc-1_X02_Y01_196_898\", \"ini\": 2234, \"clust\": 2762, \"rank\": 2435, \"rankvar\": 2115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 592, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 799, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1204, \"group\": [2761.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34308_BALBc-1_X02_Y01_198_421\", \"ini\": 2233, \"clust\": 2178, \"rank\": 2298, \"rankvar\": 1882, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 593, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1892, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1747, \"group\": [2179.0, 367.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34743_BALBc-1_X02_Y01_203_465\", \"ini\": 2232, \"clust\": 2666, \"rank\": 2218, \"rankvar\": 1795, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 594, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1893, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1748, \"group\": [2666.0, 481.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35154_BALBc-1_X02_Y01_208_938\", \"ini\": 2231, \"clust\": 4, \"rank\": 836, \"rankvar\": 1841, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 595, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1051, \"cat-2\": \"Density: 26\", \"cat_2_index\": 749, \"group\": [6.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35303_BALBc-1_X02_Y01_21_920\", \"ini\": 2230, \"clust\": 1431, \"rank\": 1292, \"rankvar\": 986, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 596, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2416, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1749, \"group\": [1432.0, 208.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35604_BALBc-1_X02_Y01_214_17\", \"ini\": 2229, \"clust\": 312, \"rank\": 923, \"rankvar\": 1021, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 597, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1620, \"cat-2\": \"Density: 15\", \"cat_2_index\": 41, \"group\": [313.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35670_BALBc-1_X02_Y01_214_814\", \"ini\": 2228, \"clust\": 161, \"rank\": 1275, \"rankvar\": 338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 598, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1894, \"cat-2\": \"Density: 25\", \"cat_2_index\": 626, \"group\": [161.0, 51.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35942_BALBc-1_X02_Y01_218_649\", \"ini\": 2227, \"clust\": 1170, \"rank\": 559, \"rankvar\": 2422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 599, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1052, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1639, \"group\": [1174.0, 142.0, 27.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36172_BALBc-1_X02_Y01_221_262\", \"ini\": 2226, \"clust\": 1577, \"rank\": 1238, \"rankvar\": 8, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 600, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1621, \"cat-2\": \"Density: 26\", \"cat_2_index\": 750, \"group\": [1578.0, 263.0, 56.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36246_BALBc-1_X02_Y01_222_326\", \"ini\": 2225, \"clust\": 459, \"rank\": 477, \"rankvar\": 761, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 601, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1622, \"cat-2\": \"Density: 24\", \"cat_2_index\": 486, \"group\": [459.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36545_BALBc-1_X02_Y01_226_202\", \"ini\": 2224, \"clust\": 1900, \"rank\": 1487, \"rankvar\": 471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 602, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1623, \"cat-2\": \"Density: 24\", \"cat_2_index\": 487, \"group\": [1903.0, 333.0, 74.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37650_BALBc-1_X02_Y01_24_403\", \"ini\": 2223, \"clust\": 76, \"rank\": 988, \"rankvar\": 1109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 603, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2481, \"cat-2\": \"Density: 22\", \"cat_2_index\": 269, \"group\": [74.0, 26.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37845_BALBc-1_X02_Y01_242_283\", \"ini\": 2222, \"clust\": 443, \"rank\": 456, \"rankvar\": 676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 604, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2272, \"cat-2\": \"Density: 22\", \"cat_2_index\": 270, \"group\": [448.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37881_BALBc-1_X02_Y01_242_724\", \"ini\": 2221, \"clust\": 854, \"rank\": 190, \"rankvar\": 343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 605, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 617, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1205, \"group\": [855.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38216_BALBc-1_X02_Y01_246_892\", \"ini\": 2220, \"clust\": 606, \"rank\": 891, \"rankvar\": 323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 606, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1895, \"cat-2\": \"Density: 26\", \"cat_2_index\": 751, \"group\": [605.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38269_BALBc-1_X02_Y01_247_736\", \"ini\": 2219, \"clust\": 67, \"rank\": 1264, \"rankvar\": 89, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 607, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1896, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1367, \"group\": [67.0, 23.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38745_BALBc-1_X02_Y01_253_169\", \"ini\": 2218, \"clust\": 261, \"rank\": 279, \"rankvar\": 1429, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 608, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2417, \"cat-2\": \"Density: 20\", \"cat_2_index\": 146, \"group\": [260.0, 68.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38753_BALBc-1_X02_Y01_253_315\", \"ini\": 2217, \"clust\": 597, \"rank\": 679, \"rankvar\": 1365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 609, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1624, \"cat-2\": \"Density: 24\", \"cat_2_index\": 488, \"group\": [596.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39430_BALBc-1_X02_Y01_261_492\", \"ini\": 2216, \"clust\": 508, \"rank\": 606, \"rankvar\": 1478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 610, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2418, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1750, \"group\": [508.0, 78.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39865_BALBc-1_X02_Y01_267_24\", \"ini\": 2215, \"clust\": 811, \"rank\": 637, \"rankvar\": 5, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 611, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1053, \"cat-2\": \"Density: 15\", \"cat_2_index\": 42, \"group\": [816.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40114_BALBc-1_X02_Y01_27_431\", \"ini\": 2214, \"clust\": 617, \"rank\": 171, \"rankvar\": 574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 612, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2482, \"cat-2\": \"Density: 26\", \"cat_2_index\": 752, \"group\": [615.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40196_BALBc-1_X02_Y01_270_639\", \"ini\": 2213, \"clust\": 951, \"rank\": 134, \"rankvar\": 385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 613, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 618, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1206, \"group\": [952.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40274_BALBc-1_X02_Y01_271_849\", \"ini\": 2212, \"clust\": 2763, \"rank\": 2362, \"rankvar\": 1963, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 614, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1897, \"cat-2\": \"Density: 25\", \"cat_2_index\": 627, \"group\": [2762.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40304_BALBc-1_X02_Y01_272_264\", \"ini\": 2211, \"clust\": 1302, \"rank\": 1640, \"rankvar\": 923, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 615, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1054, \"cat-2\": \"Density: 21\", \"cat_2_index\": 199, \"group\": [1312.0, 181.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40412_BALBc-1_X02_Y01_273_730\", \"ini\": 2210, \"clust\": 889, \"rank\": 380, \"rankvar\": 925, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 616, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 800, \"cat-2\": \"Density: 27\", \"cat_2_index\": 909, \"group\": [890.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40506_BALBc-1_X02_Y01_275_150\", \"ini\": 2209, \"clust\": 728, \"rank\": 174, \"rankvar\": 498, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 617, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1055, \"cat-2\": \"Density: 20\", \"cat_2_index\": 147, \"group\": [727.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40534_BALBc-1_X02_Y01_275_491\", \"ini\": 2208, \"clust\": 2537, \"rank\": 1769, \"rankvar\": 698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 618, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2419, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1368, \"group\": [2538.0, 445.0, 96.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40859_BALBc-1_X02_Y01_279_657\", \"ini\": 2207, \"clust\": 150, \"rank\": 1154, \"rankvar\": 1295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 619, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1056, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1066, \"group\": [151.0, 48.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41366_BALBc-1_X02_Y01_285_702\", \"ini\": 2206, \"clust\": 46, \"rank\": 1449, \"rankvar\": 1280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 620, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1057, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1207, \"group\": [47.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41645_BALBc-1_X02_Y01_289_419\", \"ini\": 2205, \"clust\": 92, \"rank\": 1087, \"rankvar\": 871, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 621, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1058, \"cat-2\": \"Density: 25\", \"cat_2_index\": 628, \"group\": [93.0, 31.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41692_BALBc-1_X02_Y01_289_977\", \"ini\": 2204, \"clust\": 1236, \"rank\": 1407, \"rankvar\": 2455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 622, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2483, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1498, \"group\": [1236.0, 166.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41720_BALBc-1_X02_Y01_29_371\", \"ini\": 2203, \"clust\": 1599, \"rank\": 1313, \"rankvar\": 290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 623, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1898, \"cat-2\": \"Density: 21\", \"cat_2_index\": 200, \"group\": [1599.0, 270.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42093_BALBc-1_X02_Y01_294_471\", \"ini\": 2202, \"clust\": 158, \"rank\": 1303, \"rankvar\": 1175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 624, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1899, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1067, \"group\": [158.0, 51.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42388_BALBc-1_X02_Y01_298_746\", \"ini\": 2201, \"clust\": 1429, \"rank\": 1546, \"rankvar\": 1536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 625, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1059, \"cat-2\": \"Density: 25\", \"cat_2_index\": 629, \"group\": [1429.0, 207.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42422_BALBc-1_X02_Y01_299_309\", \"ini\": 2200, \"clust\": 908, \"rank\": 74, \"rankvar\": 797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 626, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1625, \"cat-2\": \"Density: 22\", \"cat_2_index\": 271, \"group\": [908.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42773_BALBc-1_X02_Y01_302_572\", \"ini\": 2199, \"clust\": 852, \"rank\": 95, \"rankvar\": 256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 627, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2420, \"cat-2\": \"Density: 27\", \"cat_2_index\": 910, \"group\": [853.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42875_BALBc-1_X02_Y01_303_626\", \"ini\": 2198, \"clust\": 722, \"rank\": 274, \"rankvar\": 1260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 628, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 939, \"cat-2\": \"Density: 26\", \"cat_2_index\": 753, \"group\": [721.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42918_BALBc-1_X02_Y01_304_24\", \"ini\": 2197, \"clust\": 610, \"rank\": 332, \"rankvar\": 307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 629, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2484, \"cat-2\": \"Density: 14\", \"cat_2_index\": 28, \"group\": [612.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43254_BALBc-1_X02_Y01_309_522\", \"ini\": 2196, \"clust\": 424, \"rank\": 98, \"rankvar\": 1152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 630, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1900, \"cat-2\": \"Density: 23\", \"cat_2_index\": 382, \"group\": [423.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43735_BALBc-1_X02_Y01_314_988\", \"ini\": 2195, \"clust\": 2808, \"rank\": 2488, \"rankvar\": 2515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 631, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1060, \"cat-2\": \"Density: 26\", \"cat_2_index\": 754, \"group\": [2808.0, 502.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44336_BALBc-1_X02_Y01_321_884\", \"ini\": 2194, \"clust\": 100, \"rank\": 741, \"rankvar\": 1401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 632, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1061, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1068, \"group\": [100.0, 33.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44373_BALBc-1_X02_Y01_322_353\", \"ini\": 2193, \"clust\": 288, \"rank\": 467, \"rankvar\": 1502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 633, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2230, \"cat-2\": \"Density: 24\", \"cat_2_index\": 489, \"group\": [289.0, 71.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44527_BALBc-1_X02_Y01_324_319\", \"ini\": 2192, \"clust\": 940, \"rank\": 845, \"rankvar\": 63, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 634, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1626, \"cat-2\": \"Density: 24\", \"cat_2_index\": 490, \"group\": [944.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44555_BALBc-1_X02_Y01_324_635\", \"ini\": 2191, \"clust\": 54, \"rank\": 1244, \"rankvar\": 44, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 635, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 940, \"cat-2\": \"Density: 27\", \"cat_2_index\": 911, \"group\": [56.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45166_BALBc-1_X02_Y01_331_409\", \"ini\": 2190, \"clust\": 1557, \"rank\": 2287, \"rankvar\": 2646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 636, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2231, \"cat-2\": \"Density: 25\", \"cat_2_index\": 630, \"group\": [1557.0, 254.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45200_BALBc-1_X02_Y01_331_901\", \"ini\": 2189, \"clust\": 595, \"rank\": 372, \"rankvar\": 1375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 637, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1901, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1208, \"group\": [594.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45510_BALBc-1_X02_Y01_335_873\", \"ini\": 2188, \"clust\": 223, \"rank\": 1045, \"rankvar\": 889, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 638, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1062, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1069, \"group\": [223.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45659_BALBc-1_X02_Y01_338_160\", \"ini\": 2187, \"clust\": 983, \"rank\": 65, \"rankvar\": 628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 639, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 801, \"cat-2\": \"Density: 26\", \"cat_2_index\": 755, \"group\": [983.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45693_BALBc-1_X02_Y01_338_551\", \"ini\": 2186, \"clust\": 1425, \"rank\": 924, \"rankvar\": 1234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 640, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2421, \"cat-2\": \"Density: 26\", \"cat_2_index\": 756, \"group\": [1424.0, 206.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46414_BALBc-1_X02_Y01_346_740\", \"ini\": 2185, \"clust\": 2575, \"rank\": 1988, \"rankvar\": 1858, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 641, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1063, \"cat-2\": \"Density: 22\", \"cat_2_index\": 272, \"group\": [2576.0, 456.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46504_BALBc-1_X02_Y01_348_114\", \"ini\": 2184, \"clust\": 769, \"rank\": 417, \"rankvar\": 156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 642, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1902, \"cat-2\": \"Density: 20\", \"cat_2_index\": 148, \"group\": [768.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46508_BALBc-1_X02_Y01_348_141\", \"ini\": 2183, \"clust\": 273, \"rank\": 601, \"rankvar\": 488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 643, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1903, \"cat-2\": \"Density: 23\", \"cat_2_index\": 383, \"group\": [273.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46935_BALBc-1_X02_Y01_352_73\", \"ini\": 2182, \"clust\": 546, \"rank\": 944, \"rankvar\": 491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 644, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1064, \"cat-2\": \"Density: 19\", \"cat_2_index\": 118, \"group\": [547.0, 96.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46949_BALBc-1_X02_Y01_352_958\", \"ini\": 2181, \"clust\": 1435, \"rank\": 1062, \"rankvar\": 1990, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 645, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1065, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2061, \"group\": [1440.0, 209.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47181_BALBc-1_X02_Y01_355_871\", \"ini\": 2180, \"clust\": 592, \"rank\": 731, \"rankvar\": 984, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 646, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2273, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1209, \"group\": [593.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47567_BALBc-1_X02_Y01_360_631\", \"ini\": 2179, \"clust\": 548, \"rank\": 816, \"rankvar\": 142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 647, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1904, \"cat-2\": \"Density: 27\", \"cat_2_index\": 912, \"group\": [549.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47808_BALBc-1_X02_Y01_363_91\", \"ini\": 2178, \"clust\": 1419, \"rank\": 1064, \"rankvar\": 1867, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 648, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 681, \"cat-2\": \"Density: 20\", \"cat_2_index\": 149, \"group\": [1419.0, 204.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47901_BALBc-1_X02_Y01_364_890\", \"ini\": 2177, \"clust\": 550, \"rank\": 822, \"rankvar\": 1009, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 649, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1627, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1499, \"group\": [551.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48689_BALBc-1_X02_Y01_374_207\", \"ini\": 2176, \"clust\": 1603, \"rank\": 1269, \"rankvar\": 2551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 650, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 802, \"cat-2\": \"Density: 22\", \"cat_2_index\": 273, \"group\": [1615.0, 271.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48761_BALBc-1_X02_Y01_375_164\", \"ini\": 2175, \"clust\": 347, \"rank\": 743, \"rankvar\": 299, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 651, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 35, \"cat-2\": \"Density: 22\", \"cat_2_index\": 274, \"group\": [348.0, 75.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48973_BALBc-1_X02_Y01_377_883\", \"ini\": 2174, \"clust\": 310, \"rank\": 927, \"rankvar\": 846, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 652, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2422, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1640, \"group\": [311.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49252_BALBc-1_X02_Y01_380_635\", \"ini\": 2173, \"clust\": 2520, \"rank\": 1649, \"rankvar\": 2192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 653, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 803, \"cat-2\": \"Density: 27\", \"cat_2_index\": 913, \"group\": [2519.0, 438.0, 95.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49290_BALBc-1_X02_Y01_381_186\", \"ini\": 2172, \"clust\": 978, \"rank\": 230, \"rankvar\": 567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 654, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 804, \"cat-2\": \"Density: 20\", \"cat_2_index\": 150, \"group\": [979.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49698_BALBc-1_X02_Y01_386_108\", \"ini\": 2171, \"clust\": 1098, \"rank\": 663, \"rankvar\": 744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 655, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 682, \"cat-2\": \"Density: 23\", \"cat_2_index\": 384, \"group\": [1100.0, 120.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50061_BALBc-1_X02_Y01_39_635\", \"ini\": 2170, \"clust\": 2532, \"rank\": 1477, \"rankvar\": 1801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 656, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1905, \"cat-2\": \"Density: 22\", \"cat_2_index\": 275, \"group\": [2533.0, 443.0, 96.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50421_BALBc-1_X02_Y01_394_629\", \"ini\": 2169, \"clust\": 1459, \"rank\": 2129, \"rankvar\": 2033, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 657, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2232, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1070, \"group\": [1458.0, 218.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50593_BALBc-1_X02_Y01_396_836\", \"ini\": 2168, \"clust\": 278, \"rank\": 304, \"rankvar\": 1974, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 658, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1906, \"cat-2\": \"Density: 27\", \"cat_2_index\": 914, \"group\": [277.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50814_BALBc-1_X02_Y01_399_570\", \"ini\": 2167, \"clust\": 1091, \"rank\": 498, \"rankvar\": 193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 659, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1907, \"cat-2\": \"Density: 27\", \"cat_2_index\": 915, \"group\": [1091.0, 119.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50857_BALBc-1_X02_Y01_4_1000\", \"ini\": 2166, \"clust\": 676, \"rank\": 664, \"rankvar\": 512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 660, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1066, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1210, \"group\": [677.0, 110.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50898_BALBc-1_X02_Y01_40_107\", \"ini\": 2165, \"clust\": 89, \"rank\": 1278, \"rankvar\": 845, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 661, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 805, \"cat-2\": \"Density: 18\", \"cat_2_index\": 93, \"group\": [88.0, 29.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51368_BALBc-1_X02_Y01_405_327\", \"ini\": 2164, \"clust\": 364, \"rank\": 453, \"rankvar\": 716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 662, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1908, \"cat-2\": \"Density: 25\", \"cat_2_index\": 631, \"group\": [364.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51852_BALBc-1_X02_Y01_410_23\", \"ini\": 2163, \"clust\": 1244, \"rank\": 842, \"rankvar\": 2376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 663, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1067, \"cat-2\": \"Density: 13\", \"cat_2_index\": 13, \"group\": [1243.0, 169.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51999_BALBc-1_X02_Y01_412_155\", \"ini\": 2162, \"clust\": 341, \"rank\": 1339, \"rankvar\": 767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 664, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1541, \"cat-2\": \"Density: 26\", \"cat_2_index\": 757, \"group\": [341.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52079_BALBc-1_X02_Y01_413_103\", \"ini\": 2161, \"clust\": 2813, \"rank\": 2424, \"rankvar\": 2407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 665, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1542, \"cat-2\": \"Density: 26\", \"cat_2_index\": 758, \"group\": [2813.0, 502.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52251_BALBc-1_X02_Y01_415_13\", \"ini\": 2160, \"clust\": 1758, \"rank\": 2510, \"rankvar\": 2821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 666, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1068, \"cat-2\": \"Density: 13\", \"cat_2_index\": 14, \"group\": [1758.0, 313.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52621_BALBc-1_X02_Y01_419_991\", \"ini\": 2159, \"clust\": 1398, \"rank\": 1401, \"rankvar\": 1558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 667, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1069, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1848, \"group\": [1402.0, 199.0, 40.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52973_BALBc-1_X02_Y01_423_647\", \"ini\": 2158, \"clust\": 2557, \"rank\": 1778, \"rankvar\": 1505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 668, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2233, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1211, \"group\": [2556.0, 449.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53049_BALBc-1_X02_Y01_424_66\", \"ini\": 2157, \"clust\": 742, \"rank\": 421, \"rankvar\": 1486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 669, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 683, \"cat-2\": \"Density: 21\", \"cat_2_index\": 201, \"group\": [741.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53155_BALBc-1_X02_Y01_426_178\", \"ini\": 2156, \"clust\": 1479, \"rank\": 1730, \"rankvar\": 1712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 670, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1909, \"cat-2\": \"Density: 26\", \"cat_2_index\": 759, \"group\": [1479.0, 223.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53404_BALBc-1_X02_Y01_429_1005\", \"ini\": 2155, \"clust\": 1531, \"rank\": 1841, \"rankvar\": 1912, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 671, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 36, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2142, \"group\": [1532.0, 248.0, 51.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53535_BALBc-1_X02_Y01_43_792\", \"ini\": 2154, \"clust\": 2622, \"rank\": 1607, \"rankvar\": 1835, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 672, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1070, \"cat-2\": \"Density: 26\", \"cat_2_index\": 760, \"group\": [2623.0, 465.0, 100.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53582_BALBc-1_X02_Y01_430_391\", \"ini\": 2153, \"clust\": 1908, \"rank\": 1483, \"rankvar\": 212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 673, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2423, \"cat-2\": \"Density: 23\", \"cat_2_index\": 385, \"group\": [1914.0, 336.0, 74.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53678_BALBc-1_X02_Y01_431_589\", \"ini\": 2152, \"clust\": 1499, \"rank\": 1111, \"rankvar\": 1627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 674, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2424, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1071, \"group\": [1499.0, 233.0, 46.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53767_BALBc-1_X02_Y01_432_601\", \"ini\": 2151, \"clust\": 798, \"rank\": 214, \"rankvar\": 507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 675, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2425, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1500, \"group\": [801.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53917_BALBc-1_X02_Y01_434_617\", \"ini\": 2150, \"clust\": 2023, \"rank\": 2214, \"rankvar\": 1126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 676, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2234, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1212, \"group\": [2027.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54343_BALBc-1_X02_Y01_439_956\", \"ini\": 2149, \"clust\": 2571, \"rank\": 1981, \"rankvar\": 1857, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 677, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 806, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2143, \"group\": [2571.0, 455.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54799_BALBc-1_X02_Y01_444_988\", \"ini\": 2148, \"clust\": 1369, \"rank\": 1722, \"rankvar\": 1906, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 678, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1071, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2062, \"group\": [1369.0, 191.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54922_BALBc-1_X02_Y01_446_748\", \"ini\": 2147, \"clust\": 2607, \"rank\": 1976, \"rankvar\": 1948, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 679, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1910, \"cat-2\": \"Density: 22\", \"cat_2_index\": 276, \"group\": [2606.0, 461.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55138_BALBc-1_X02_Y01_449_612\", \"ini\": 2146, \"clust\": 1032, \"rank\": 9, \"rankvar\": 553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 680, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2426, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1369, \"group\": [1031.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55205_BALBc-1_X02_Y01_45_516\", \"ini\": 2145, \"clust\": 286, \"rank\": 434, \"rankvar\": 1637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 681, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2427, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1213, \"group\": [287.0, 71.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55330_BALBc-1_X02_Y01_451_348\", \"ini\": 2144, \"clust\": 106, \"rank\": 1302, \"rankvar\": 1743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 682, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1072, \"cat-2\": \"Density: 25\", \"cat_2_index\": 632, \"group\": [106.0, 35.0, 11.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55345_BALBc-1_X02_Y01_451_533\", \"ini\": 2143, \"clust\": 2651, \"rank\": 2078, \"rankvar\": 1102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 683, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1726, \"cat-2\": \"Density: 27\", \"cat_2_index\": 916, \"group\": [2650.0, 476.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55441_BALBc-1_X02_Y01_452_672\", \"ini\": 2142, \"clust\": 1069, \"rank\": 305, \"rankvar\": 558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 684, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2428, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1370, \"group\": [1068.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56039_BALBc-1_X02_Y01_46_538\", \"ini\": 2141, \"clust\": 512, \"rank\": 574, \"rankvar\": 2250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 685, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2274, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1371, \"group\": [512.0, 80.0, 17.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56270_BALBc-1_X02_Y01_462_394\", \"ini\": 2140, \"clust\": 1185, \"rank\": 1903, \"rankvar\": 1576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 686, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2429, \"cat-2\": \"Density: 25\", \"cat_2_index\": 633, \"group\": [1184.0, 148.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56966_BALBc-1_X02_Y01_470_546\", \"ini\": 2139, \"clust\": 875, \"rank\": 227, \"rankvar\": 109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 687, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2275, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1501, \"group\": [874.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57291_BALBc-1_X02_Y01_474_753\", \"ini\": 2138, \"clust\": 304, \"rank\": 829, \"rankvar\": 1343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 688, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1073, \"cat-2\": \"Density: 22\", \"cat_2_index\": 277, \"group\": [303.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57690_BALBc-1_X02_Y01_479_652\", \"ini\": 2137, \"clust\": 2656, \"rank\": 2283, \"rankvar\": 1713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 689, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1911, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1372, \"group\": [2655.0, 478.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57946_BALBc-1_X02_Y01_482_291\", \"ini\": 2136, \"clust\": 1475, \"rank\": 1549, \"rankvar\": 987, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 690, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1912, \"cat-2\": \"Density: 23\", \"cat_2_index\": 386, \"group\": [1475.0, 221.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58045_BALBc-1_X02_Y01_483_527\", \"ini\": 2135, \"clust\": 1573, \"rank\": 1372, \"rankvar\": 932, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 691, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1727, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1373, \"group\": [1576.0, 261.0, 55.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58865_BALBc-1_X02_Y01_493_104\", \"ini\": 2134, \"clust\": 1380, \"rank\": 1248, \"rankvar\": 1968, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 692, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 684, \"cat-2\": \"Density: 24\", \"cat_2_index\": 491, \"group\": [1381.0, 193.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59155_BALBc-1_X02_Y01_496_623\", \"ini\": 2133, \"clust\": 2091, \"rank\": 2755, \"rankvar\": 2511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 693, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2276, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1502, \"group\": [2092.0, 358.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59197_BALBc-1_X02_Y01_497_131\", \"ini\": 2132, \"clust\": 1050, \"rank\": 282, \"rankvar\": 229, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 694, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2277, \"cat-2\": \"Density: 25\", \"cat_2_index\": 634, \"group\": [1050.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59416_BALBc-1_X02_Y01_499_768\", \"ini\": 2131, \"clust\": 1501, \"rank\": 1735, \"rankvar\": 508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 695, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1074, \"cat-2\": \"Density: 26\", \"cat_2_index\": 761, \"group\": [1501.0, 234.0, 46.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59420_BALBc-1_X02_Y01_499_799\", \"ini\": 2130, \"clust\": 805, \"rank\": 136, \"rankvar\": 387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 696, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1075, \"cat-2\": \"Density: 25\", \"cat_2_index\": 635, \"group\": [804.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59463_BALBc-1_X02_Y01_5_879\", \"ini\": 2129, \"clust\": 2566, \"rank\": 1647, \"rankvar\": 678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 697, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2430, \"cat-2\": \"Density: 27\", \"cat_2_index\": 917, \"group\": [2569.0, 454.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59517_BALBc-1_X02_Y01_50_888\", \"ini\": 2128, \"clust\": 1089, \"rank\": 684, \"rankvar\": 361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 698, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2431, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1214, \"group\": [1092.0, 119.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59710_BALBc-1_X02_Y01_502_573\", \"ini\": 2127, \"clust\": 80, \"rank\": 765, \"rankvar\": 469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 699, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2278, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1641, \"group\": [80.0, 28.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59712_BALBc-1_X02_Y01_502_604\", \"ini\": 2126, \"clust\": 270, \"rank\": 579, \"rankvar\": 1932, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 700, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2279, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1952, \"group\": [271.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59744_BALBc-1_X02_Y01_502_986\", \"ini\": 2125, \"clust\": 239, \"rank\": 1191, \"rankvar\": 629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 701, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1076, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2144, \"group\": [241.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60337_BALBc-1_X02_Y01_51_580\", \"ini\": 2124, \"clust\": 376, \"rank\": 643, \"rankvar\": 1288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 702, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2280, \"cat-2\": \"Density: 27\", \"cat_2_index\": 918, \"group\": [380.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60489_BALBc-1_X02_Y01_511_561\", \"ini\": 2123, \"clust\": 1382, \"rank\": 1283, \"rankvar\": 1691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 703, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1728, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1751, \"group\": [1383.0, 193.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61166_BALBc-1_X02_Y01_52_424\", \"ini\": 2122, \"clust\": 770, \"rank\": 875, \"rankvar\": 26, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 704, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1077, \"cat-2\": \"Density: 24\", \"cat_2_index\": 492, \"group\": [771.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61199_BALBc-1_X02_Y01_52_776\", \"ini\": 2121, \"clust\": 2613, \"rank\": 1690, \"rankvar\": 2547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 705, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2432, \"cat-2\": \"Density: 24\", \"cat_2_index\": 493, \"group\": [2614.0, 462.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61388_BALBc-1_X02_Y01_521_982\", \"ini\": 2120, \"clust\": 2464, \"rank\": 1400, \"rankvar\": 1493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 706, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2235, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1953, \"group\": [2465.0, 420.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62377_BALBc-1_X02_Y01_533_933\", \"ini\": 2119, \"clust\": 2430, \"rank\": 1787, \"rankvar\": 884, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 707, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1913, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1752, \"group\": [2431.0, 410.0, 87.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62863_BALBc-1_X02_Y01_54_847\", \"ini\": 2118, \"clust\": 266, \"rank\": 928, \"rankvar\": 1669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 708, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2485, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1072, \"group\": [270.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62911_BALBc-1_X02_Y01_540_549\", \"ini\": 2117, \"clust\": 2720, \"rank\": 2598, \"rankvar\": 2667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 709, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2433, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1073, \"group\": [2719.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62931_BALBc-1_X02_Y01_540_834\", \"ini\": 2116, \"clust\": 882, \"rank\": 30, \"rankvar\": 217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 710, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1914, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1503, \"group\": [881.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63142_BALBc-1_X02_Y01_543_585\", \"ini\": 2115, \"clust\": 2724, \"rank\": 2505, \"rankvar\": 2597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 711, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2281, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1215, \"group\": [2723.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63191_BALBc-1_X02_Y01_543_972\", \"ini\": 2114, \"clust\": 2151, \"rank\": 2276, \"rankvar\": 1524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 712, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 807, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1753, \"group\": [2151.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63252_BALBc-1_X02_Y01_544_650\", \"ini\": 2113, \"clust\": 578, \"rank\": 405, \"rankvar\": 1325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 713, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2282, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1216, \"group\": [577.0, 100.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63692_BALBc-1_X02_Y01_55_1003\", \"ini\": 2112, \"clust\": 2627, \"rank\": 2456, \"rankvar\": 2486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 714, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1078, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1374, \"group\": [2628.0, 467.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63713_BALBc-1_X02_Y01_55_344\", \"ini\": 2111, \"clust\": 627, \"rank\": 504, \"rankvar\": 1139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 715, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1915, \"cat-2\": \"Density: 26\", \"cat_2_index\": 762, \"group\": [625.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63995_BALBc-1_X02_Y01_552_987\", \"ini\": 2110, \"clust\": 1231, \"rank\": 1363, \"rankvar\": 2287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 716, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1079, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1642, \"group\": [1231.0, 165.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64052_BALBc-1_X02_Y01_553_695\", \"ini\": 2109, \"clust\": 332, \"rank\": 696, \"rankvar\": 1132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 717, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2434, \"cat-2\": \"Density: 26\", \"cat_2_index\": 763, \"group\": [331.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64156_BALBc-1_X02_Y01_555_138\", \"ini\": 2108, \"clust\": 1433, \"rank\": 1214, \"rankvar\": 2189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 718, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 685, \"cat-2\": \"Density: 26\", \"cat_2_index\": 764, \"group\": [1434.0, 209.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64283_BALBc-1_X02_Y01_556_902\", \"ini\": 2107, \"clust\": 2741, \"rank\": 2388, \"rankvar\": 2018, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 719, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1916, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2145, \"group\": [2746.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64567_BALBc-1_X02_Y01_56_378\", \"ini\": 2106, \"clust\": 1073, \"rank\": 597, \"rankvar\": 71, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 720, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2435, \"cat-2\": \"Density: 26\", \"cat_2_index\": 765, \"group\": [1071.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64703_BALBc-1_X02_Y01_561_10\", \"ini\": 2105, \"clust\": 1208, \"rank\": 1699, \"rankvar\": 2350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 721, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1729, \"cat-2\": \"Density: 15\", \"cat_2_index\": 43, \"group\": [1208.0, 158.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64934_BALBc-1_X02_Y01_564_219\", \"ini\": 2104, \"clust\": 61, \"rank\": 1270, \"rankvar\": 2030, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 722, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2436, \"cat-2\": \"Density: 24\", \"cat_2_index\": 494, \"group\": [66.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65293_BALBc-1_X02_Y01_568_803\", \"ini\": 2103, \"clust\": 1146, \"rank\": 792, \"rankvar\": 1379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 723, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1628, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1849, \"group\": [1149.0, 132.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65644_BALBc-1_X02_Y01_572_683\", \"ini\": 2102, \"clust\": 563, \"rank\": 352, \"rankvar\": 1226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 724, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 686, \"cat-2\": \"Density: 25\", \"cat_2_index\": 636, \"group\": [562.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66649_BALBc-1_X02_Y01_585_154\", \"ini\": 2101, \"clust\": 246, \"rank\": 628, \"rankvar\": 702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 725, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 687, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1217, \"group\": [244.0, 63.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67382_BALBc-1_X02_Y01_593_27\", \"ini\": 2100, \"clust\": 2655, \"rank\": 2108, \"rankvar\": 745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 726, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2519, \"cat-2\": \"Density: 15\", \"cat_2_index\": 44, \"group\": [2657.0, 478.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67833_BALBc-1_X02_Y01_599_219\", \"ini\": 2099, \"clust\": 957, \"rank\": 178, \"rankvar\": 175, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 727, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2437, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1074, \"group\": [958.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68344_BALBc-1_X02_Y01_604_682\", \"ini\": 2098, \"clust\": 1383, \"rank\": 861, \"rankvar\": 1793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 728, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1917, \"cat-2\": \"Density: 26\", \"cat_2_index\": 766, \"group\": [1384.0, 193.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68440_BALBc-1_X02_Y01_605_807\", \"ini\": 2097, \"clust\": 1519, \"rank\": 1414, \"rankvar\": 2393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 729, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 808, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1643, \"group\": [1520.0, 242.0, 49.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68443_BALBc-1_X02_Y01_605_835\", \"ini\": 2096, \"clust\": 103, \"rank\": 1093, \"rankvar\": 2039, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 730, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1918, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1504, \"group\": [103.0, 33.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68542_BALBc-1_X02_Y01_607_143\", \"ini\": 2095, \"clust\": 1711, \"rank\": 1630, \"rankvar\": 2720, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 731, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 688, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1218, \"group\": [1711.0, 304.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68978_BALBc-1_X02_Y01_611_516\", \"ini\": 2094, \"clust\": 2735, \"rank\": 2763, \"rankvar\": 2650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 732, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1919, \"cat-2\": \"Density: 25\", \"cat_2_index\": 637, \"group\": [2734.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69185_BALBc-1_X02_Y01_614_181\", \"ini\": 2093, \"clust\": 1759, \"rank\": 2046, \"rankvar\": 2750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 733, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 689, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1075, \"group\": [1759.0, 313.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70273_BALBc-1_X02_Y01_627_209\", \"ini\": 2092, \"clust\": 1128, \"rank\": 1080, \"rankvar\": 1769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 734, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1730, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1219, \"group\": [1129.0, 127.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70491_BALBc-1_X02_Y01_63_250\", \"ini\": 2091, \"clust\": 860, \"rank\": 55, \"rankvar\": 427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 735, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1920, \"cat-2\": \"Density: 24\", \"cat_2_index\": 495, \"group\": [860.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71443_BALBc-1_X02_Y01_640_235\", \"ini\": 2090, \"clust\": 2495, \"rank\": 2490, \"rankvar\": 2581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 736, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2438, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1644, \"group\": [2499.0, 427.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71479_BALBc-1_X02_Y01_640_560\", \"ini\": 2089, \"clust\": 2708, \"rank\": 2418, \"rankvar\": 2537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 737, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2439, \"cat-2\": \"Density: 25\", \"cat_2_index\": 638, \"group\": [2709.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71570_BALBc-1_X02_Y01_642_167\", \"ini\": 2088, \"clust\": 1316, \"rank\": 1210, \"rankvar\": 597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 738, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1731, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1076, \"group\": [1317.0, 184.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71733_BALBc-1_X02_Y01_643_984\", \"ini\": 2087, \"clust\": 1534, \"rank\": 2152, \"rankvar\": 1935, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 739, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2283, \"cat-2\": \"Density: 27\", \"cat_2_index\": 919, \"group\": [1534.0, 249.0, 51.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71734_BALBc-1_X02_Y01_643_999\", \"ini\": 2086, \"clust\": 720, \"rank\": 311, \"rankvar\": 771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 740, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1629, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1220, \"group\": [725.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72068_BALBc-1_X02_Y01_648_425\", \"ini\": 2085, \"clust\": 2673, \"rank\": 2113, \"rankvar\": 1726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 741, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1921, \"cat-2\": \"Density: 22\", \"cat_2_index\": 278, \"group\": [2675.0, 482.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72274_BALBc-1_X02_Y01_650_104\", \"ini\": 2084, \"clust\": 57, \"rank\": 1431, \"rankvar\": 2301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 742, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 690, \"cat-2\": \"Density: 27\", \"cat_2_index\": 920, \"group\": [58.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72329_BALBc-1_X02_Y01_650_882\", \"ini\": 2083, \"clust\": 1489, \"rank\": 1575, \"rankvar\": 566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 743, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1732, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1754, \"group\": [1490.0, 229.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72440_BALBc-1_X02_Y01_652_474\", \"ini\": 2082, \"clust\": 2746, \"rank\": 2617, \"rankvar\": 2535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 744, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 809, \"cat-2\": \"Density: 26\", \"cat_2_index\": 767, \"group\": [2744.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73095_BALBc-1_X02_Y01_66_970\", \"ini\": 2081, \"clust\": 2423, \"rank\": 2310, \"rankvar\": 2322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 745, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1080, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1755, \"group\": [2423.0, 405.0, 85.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73185_BALBc-1_X02_Y01_661_141\", \"ini\": 2080, \"clust\": 1705, \"rank\": 1566, \"rankvar\": 2038, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 746, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 810, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1221, \"group\": [1706.0, 304.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73278_BALBc-1_X02_Y01_661_947\", \"ini\": 2079, \"clust\": 2544, \"rank\": 1443, \"rankvar\": 1582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 747, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1081, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1077, \"group\": [2543.0, 446.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73431_BALBc-1_X02_Y01_664_117\", \"ini\": 2078, \"clust\": 638, \"rank\": 705, \"rankvar\": 1251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 748, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1630, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1222, \"group\": [639.0, 104.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73653_BALBc-1_X02_Y01_667_199\", \"ini\": 2077, \"clust\": 2690, \"rank\": 2552, \"rankvar\": 2075, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 749, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1733, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1375, \"group\": [2690.0, 485.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73761_BALBc-1_X02_Y01_668_692\", \"ini\": 2076, \"clust\": 178, \"rank\": 1193, \"rankvar\": 263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 750, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2486, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1223, \"group\": [178.0, 55.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74145_BALBc-1_X02_Y01_672_798\", \"ini\": 2075, \"clust\": 2580, \"rank\": 2154, \"rankvar\": 2416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 751, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1082, \"cat-2\": \"Density: 27\", \"cat_2_index\": 921, \"group\": [2580.0, 456.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74412_BALBc-1_X02_Y01_675_754\", \"ini\": 2074, \"clust\": 1549, \"rank\": 2303, \"rankvar\": 2621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 752, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1083, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1224, \"group\": [1550.0, 254.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74523_BALBc-1_X02_Y01_677_25\", \"ini\": 2073, \"clust\": 1521, \"rank\": 1412, \"rankvar\": 1273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 753, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 811, \"cat-2\": \"Density: 16\", \"cat_2_index\": 57, \"group\": [1524.0, 244.0, 49.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74897_BALBc-1_X02_Y01_681_262\", \"ini\": 2072, \"clust\": 1500, \"rank\": 1556, \"rankvar\": 917, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 754, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1578, \"cat-2\": \"Density: 25\", \"cat_2_index\": 639, \"group\": [1500.0, 233.0, 46.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75174_BALBc-1_X02_Y01_685_173\", \"ini\": 2071, \"clust\": 2772, \"rank\": 2002, \"rankvar\": 1459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 755, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 812, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1078, \"group\": [2772.0, 492.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75539_BALBc-1_X02_Y01_689_937\", \"ini\": 2070, \"clust\": 1916, \"rank\": 1844, \"rankvar\": 1400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 756, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1084, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1225, \"group\": [1924.0, 341.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75915_BALBc-1_X02_Y01_694_130\", \"ini\": 2069, \"clust\": 608, \"rank\": 157, \"rankvar\": 1897, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 757, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1631, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1226, \"group\": [608.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75959_BALBc-1_X02_Y01_694_670\", \"ini\": 2068, \"clust\": 1199, \"rank\": 1468, \"rankvar\": 518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 758, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2440, \"cat-2\": \"Density: 25\", \"cat_2_index\": 640, \"group\": [1200.0, 153.0, 31.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76516_BALBc-1_X02_Y01_70_895\", \"ini\": 2067, \"clust\": 282, \"rank\": 856, \"rankvar\": 848, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 759, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2441, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1376, \"group\": [282.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77517_BALBc-1_X02_Y01_712_265\", \"ini\": 2066, \"clust\": 2501, \"rank\": 2308, \"rankvar\": 2752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 760, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 813, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1227, \"group\": [2500.0, 428.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77678_BALBc-1_X02_Y01_714_293\", \"ini\": 2065, \"clust\": 1085, \"rank\": 310, \"rankvar\": 1539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 761, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 814, \"cat-2\": \"Density: 27\", \"cat_2_index\": 922, \"group\": [1084.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77685_BALBc-1_X02_Y01_714_40\", \"ini\": 2064, \"clust\": 2507, \"rank\": 1678, \"rankvar\": 2457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 762, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 815, \"cat-2\": \"Density: 23\", \"cat_2_index\": 387, \"group\": [2509.0, 432.0, 93.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77734_BALBc-1_X02_Y01_714_974\", \"ini\": 2063, \"clust\": 2568, \"rank\": 2106, \"rankvar\": 2480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 763, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2284, \"cat-2\": \"Density: 27\", \"cat_2_index\": 923, \"group\": [2568.0, 453.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78145_BALBc-1_X02_Y01_72_12\", \"ini\": 2062, \"clust\": 369, \"rank\": 542, \"rankvar\": 442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 764, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1922, \"cat-2\": \"Density: 13\", \"cat_2_index\": 15, \"group\": [370.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78540_BALBc-1_X02_Y01_724_107\", \"ini\": 2061, \"clust\": 1724, \"rank\": 2048, \"rankvar\": 2754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 765, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 816, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1377, \"group\": [1721.0, 305.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79190_BALBc-1_X02_Y01_731_769\", \"ini\": 2060, \"clust\": 157, \"rank\": 1321, \"rankvar\": 240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 766, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1085, \"cat-2\": \"Density: 27\", \"cat_2_index\": 924, \"group\": [162.0, 52.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79300_BALBc-1_X02_Y01_733_29\", \"ini\": 2059, \"clust\": 52, \"rank\": 1299, \"rankvar\": 249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 767, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1543, \"cat-2\": \"Density: 20\", \"cat_2_index\": 151, \"group\": [53.0, 17.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79428_BALBc-1_X02_Y01_734_627\", \"ini\": 2058, \"clust\": 2754, \"rank\": 2495, \"rankvar\": 1970, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 768, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2236, \"cat-2\": \"Density: 25\", \"cat_2_index\": 641, \"group\": [2753.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79624_BALBc-1_X02_Y01_737_12\", \"ini\": 2057, \"clust\": 1088, \"rank\": 538, \"rankvar\": 740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 769, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 37, \"cat-2\": \"Density: 18\", \"cat_2_index\": 94, \"group\": [1089.0, 118.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80316_BALBc-1_X02_Y01_745_334\", \"ini\": 2056, \"clust\": 1569, \"rank\": 2191, \"rankvar\": 800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 770, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1923, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1079, \"group\": [1569.0, 257.0, 54.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80359_BALBc-1_X02_Y01_745_91\", \"ini\": 2055, \"clust\": 853, \"rank\": 162, \"rankvar\": 179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 771, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 817, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1756, \"group\": [854.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80734_BALBc-1_X02_Y01_75_602\", \"ini\": 2054, \"clust\": 1099, \"rank\": 886, \"rankvar\": 55, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 772, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2285, \"cat-2\": \"Density: 26\", \"cat_2_index\": 768, \"group\": [1098.0, 120.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81293_BALBc-1_X02_Y01_756_706\", \"ini\": 2053, \"clust\": 1423, \"rank\": 1174, \"rankvar\": 1293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 773, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2237, \"cat-2\": \"Density: 24\", \"cat_2_index\": 496, \"group\": [1427.0, 206.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81486_BALBc-1_X02_Y01_759_199\", \"ini\": 2052, \"clust\": 2799, \"rank\": 1672, \"rankvar\": 2248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 774, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1086, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1505, \"group\": [2802.0, 499.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81590_BALBc-1_X02_Y01_76_583\", \"ini\": 2051, \"clust\": 898, \"rank\": 73, \"rankvar\": 169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 775, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2286, \"cat-2\": \"Density: 25\", \"cat_2_index\": 642, \"group\": [897.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81902_BALBc-1_X02_Y01_763_671\", \"ini\": 2050, \"clust\": 2738, \"rank\": 2503, \"rankvar\": 1848, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 776, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 818, \"cat-2\": \"Density: 26\", \"cat_2_index\": 769, \"group\": [2737.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82140_BALBc-1_X02_Y01_767_163\", \"ini\": 2049, \"clust\": 2510, \"rank\": 1398, \"rankvar\": 2538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 777, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2287, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1954, \"group\": [2511.0, 434.0, 94.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82308_BALBc-1_X02_Y01_768_99\", \"ini\": 2048, \"clust\": 642, \"rank\": 729, \"rankvar\": 1125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 778, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1544, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1645, \"group\": [643.0, 105.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82369_BALBc-1_X02_Y01_769_770\", \"ini\": 2047, \"clust\": 1909, \"rank\": 1139, \"rankvar\": 2308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 779, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1632, \"cat-2\": \"Density: 25\", \"cat_2_index\": 643, \"group\": [1909.0, 335.0, 74.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83169_BALBc-1_X02_Y01_779_23\", \"ini\": 2046, \"clust\": 2488, \"rank\": 1594, \"rankvar\": 2474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 780, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1087, \"cat-2\": \"Density: 24\", \"cat_2_index\": 497, \"group\": [2489.0, 425.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83364_BALBc-1_X02_Y01_780_79\", \"ini\": 2045, \"clust\": 718, \"rank\": 217, \"rankvar\": 418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 781, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1545, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1757, \"group\": [718.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84196_BALBc-1_X02_Y01_790_748\", \"ini\": 2044, \"clust\": 1299, \"rank\": 1567, \"rankvar\": 2540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 782, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2487, \"cat-2\": \"Density: 24\", \"cat_2_index\": 498, \"group\": [1302.0, 179.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84357_BALBc-1_X02_Y01_792_686\", \"ini\": 2043, \"clust\": 1485, \"rank\": 1572, \"rankvar\": 192, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 783, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 819, \"cat-2\": \"Density: 22\", \"cat_2_index\": 279, \"group\": [1485.0, 226.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84582_BALBc-1_X02_Y01_795_344\", \"ini\": 2042, \"clust\": 2587, \"rank\": 1617, \"rankvar\": 295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 784, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2288, \"cat-2\": \"Density: 25\", \"cat_2_index\": 644, \"group\": [2591.0, 458.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84699_BALBc-1_X02_Y01_796_71\", \"ini\": 2041, \"clust\": 1235, \"rank\": 1297, \"rankvar\": 2225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 785, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2289, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1646, \"group\": [1238.0, 166.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85322_BALBc-1_X02_Y01_802_832\", \"ini\": 2040, \"clust\": 454, \"rank\": 454, \"rankvar\": 368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 786, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1924, \"cat-2\": \"Density: 27\", \"cat_2_index\": 925, \"group\": [454.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85337_BALBc-1_X02_Y01_803_103\", \"ini\": 2039, \"clust\": 1134, \"rank\": 1183, \"rankvar\": 75, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 787, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 943, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1850, \"group\": [1137.0, 128.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85500_BALBc-1_X02_Y01_805_277\", \"ini\": 2038, \"clust\": 2497, \"rank\": 2288, \"rankvar\": 2162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 788, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2488, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1378, \"group\": [2496.0, 427.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85553_BALBc-1_X02_Y01_805_711\", \"ini\": 2037, \"clust\": 1580, \"rank\": 933, \"rankvar\": 1099, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 789, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2442, \"cat-2\": \"Density: 23\", \"cat_2_index\": 388, \"group\": [1581.0, 264.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85954_BALBc-1_X02_Y01_810_220\", \"ini\": 2036, \"clust\": 2422, \"rank\": 2041, \"rankvar\": 2349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 790, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2290, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1647, \"group\": [2425.0, 405.0, 85.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86607_BALBc-1_X02_Y01_818_617\", \"ini\": 2035, \"clust\": 2609, \"rank\": 1906, \"rankvar\": 2164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 791, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 820, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1080, \"group\": [2609.0, 461.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86719_BALBc-1_X02_Y01_82_404\", \"ini\": 2034, \"clust\": 1490, \"rank\": 1622, \"rankvar\": 638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 792, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1088, \"cat-2\": \"Density: 26\", \"cat_2_index\": 770, \"group\": [1491.0, 229.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87009_BALBc-1_X02_Y01_822_96\", \"ini\": 2033, \"clust\": 1634, \"rank\": 1664, \"rankvar\": 384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 793, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1734, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2222, \"group\": [1635.0, 288.0, 64.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87084_BALBc-1_X02_Y01_823_81\", \"ini\": 2032, \"clust\": 684, \"rank\": 371, \"rankvar\": 1089, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 794, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1735, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1851, \"group\": [683.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87109_BALBc-1_X02_Y01_824_179\", \"ini\": 2031, \"clust\": 2502, \"rank\": 2212, \"rankvar\": 2666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 795, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2291, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1852, \"group\": [2501.0, 428.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87294_BALBc-1_X02_Y01_826_54\", \"ini\": 2030, \"clust\": 2559, \"rank\": 1747, \"rankvar\": 1679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 796, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1736, \"cat-2\": \"Density: 26\", \"cat_2_index\": 771, \"group\": [2560.0, 450.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87491_BALBc-1_X02_Y01_828_989\", \"ini\": 2029, \"clust\": 2601, \"rank\": 1846, \"rankvar\": 1050, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 797, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1925, \"cat-2\": \"Density: 26\", \"cat_2_index\": 772, \"group\": [2604.0, 460.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87558_BALBc-1_X02_Y01_829_961\", \"ini\": 2028, \"clust\": 2766, \"rank\": 1510, \"rankvar\": 349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 798, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 821, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1081, \"group\": [2776.0, 493.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87735_BALBc-1_X02_Y01_831_448\", \"ini\": 2027, \"clust\": 2598, \"rank\": 1665, \"rankvar\": 2355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 799, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2443, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1379, \"group\": [2599.0, 460.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87925_BALBc-1_X02_Y01_834_297\", \"ini\": 2026, \"clust\": 2648, \"rank\": 2202, \"rankvar\": 1029, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 800, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1926, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1380, \"group\": [2648.0, 476.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88101_BALBc-1_X02_Y01_836_594\", \"ini\": 2025, \"clust\": 1307, \"rank\": 1427, \"rankvar\": 1643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 801, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1927, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1082, \"group\": [1304.0, 180.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88212_BALBc-1_X02_Y01_837_889\", \"ini\": 2024, \"clust\": 1617, \"rank\": 1493, \"rankvar\": 642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 802, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1928, \"cat-2\": \"Density: 27\", \"cat_2_index\": 926, \"group\": [1619.0, 273.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88228_BALBc-1_X02_Y01_838_199\", \"ini\": 2023, \"clust\": 496, \"rank\": 619, \"rankvar\": 1554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 803, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 822, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1955, \"group\": [499.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88242_BALBc-1_X02_Y01_838_433\", \"ini\": 2022, \"clust\": 1297, \"rank\": 1469, \"rankvar\": 2406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 804, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1737, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1228, \"group\": [1298.0, 178.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88501_BALBc-1_X02_Y01_840_810\", \"ini\": 2021, \"clust\": 1285, \"rank\": 1472, \"rankvar\": 2141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 805, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1929, \"cat-2\": \"Density: 23\", \"cat_2_index\": 389, \"group\": [1286.0, 176.0, 35.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88562_BALBc-1_X02_Y01_841_513\", \"ini\": 2020, \"clust\": 1011, \"rank\": 38, \"rankvar\": 847, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 806, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1930, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1956, \"group\": [1010.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88609_BALBc-1_X02_Y01_842_154\", \"ini\": 2019, \"clust\": 1394, \"rank\": 1421, \"rankvar\": 1395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 807, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1738, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2146, \"group\": [1394.0, 196.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88759_BALBc-1_X02_Y01_844_26\", \"ini\": 2018, \"clust\": 63, \"rank\": 982, \"rankvar\": 1993, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 808, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2444, \"cat-2\": \"Density: 20\", \"cat_2_index\": 152, \"group\": [63.0, 21.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88814_BALBc-1_X02_Y01_844_864\", \"ini\": 2017, \"clust\": 2593, \"rank\": 1530, \"rankvar\": 1688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 809, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1931, \"cat-2\": \"Density: 27\", \"cat_2_index\": 927, \"group\": [2596.0, 459.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88845_BALBc-1_X02_Y01_845_321\", \"ini\": 2016, \"clust\": 613, \"rank\": 53, \"rankvar\": 1989, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 810, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1739, \"cat-2\": \"Density: 27\", \"cat_2_index\": 928, \"group\": [613.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89110_BALBc-1_X02_Y01_848_694\", \"ini\": 2015, \"clust\": 59, \"rank\": 960, \"rankvar\": 1760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 811, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2238, \"cat-2\": \"Density: 22\", \"cat_2_index\": 280, \"group\": [60.0, 20.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90038_BALBc-1_X02_Y01_859_742\", \"ini\": 2014, \"clust\": 65, \"rank\": 1246, \"rankvar\": 1673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 812, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1932, \"cat-2\": \"Density: 26\", \"cat_2_index\": 773, \"group\": [65.0, 21.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90134_BALBc-1_X02_Y01_86_851\", \"ini\": 2013, \"clust\": 751, \"rank\": 85, \"rankvar\": 728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 813, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 691, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1648, \"group\": [750.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91113_BALBc-1_X02_Y01_871_608\", \"ini\": 2012, \"clust\": 2590, \"rank\": 1808, \"rankvar\": 2019, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 814, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1633, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1381, \"group\": [2589.0, 458.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91313_BALBc-1_X02_Y01_874_166\", \"ini\": 2011, \"clust\": 1388, \"rank\": 1271, \"rankvar\": 1982, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 815, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1740, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2223, \"group\": [1391.0, 195.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91333_BALBc-1_X02_Y01_874_423\", \"ini\": 2010, \"clust\": 2692, \"rank\": 2319, \"rankvar\": 1630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 816, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1933, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1382, \"group\": [2695.0, 487.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91389_BALBc-1_X02_Y01_875_273\", \"ini\": 2009, \"clust\": 2773, \"rank\": 1973, \"rankvar\": 1919, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 817, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1934, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1853, \"group\": [2773.0, 492.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91790_BALBc-1_X02_Y01_88_353\", \"ini\": 2008, \"clust\": 449, \"rank\": 867, \"rankvar\": 61, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 818, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1935, \"cat-2\": \"Density: 27\", \"cat_2_index\": 929, \"group\": [450.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91944_BALBc-1_X02_Y01_881_300\", \"ini\": 2007, \"clust\": 746, \"rank\": 420, \"rankvar\": 505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 819, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 823, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1383, \"group\": [749.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92119_BALBc-1_X02_Y01_883_690\", \"ini\": 2006, \"clust\": 2498, \"rank\": 2192, \"rankvar\": 2655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 820, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2445, \"cat-2\": \"Density: 24\", \"cat_2_index\": 499, \"group\": [2497.0, 427.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92234_BALBc-1_X02_Y01_885_483\", \"ini\": 2005, \"clust\": 516, \"rank\": 1158, \"rankvar\": 303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 821, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1936, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2063, \"group\": [519.0, 83.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92639_BALBc-1_X02_Y01_89_950\", \"ini\": 2004, \"clust\": 181, \"rank\": 534, \"rankvar\": 2052, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 822, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 824, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1957, \"group\": [182.0, 55.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92716_BALBc-1_X02_Y01_890_939\", \"ini\": 2003, \"clust\": 973, \"rank\": 435, \"rankvar\": 48, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 823, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1089, \"cat-2\": \"Density: 25\", \"cat_2_index\": 645, \"group\": [978.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92826_BALBc-1_X02_Y01_892_493\", \"ini\": 2002, \"clust\": 84, \"rank\": 889, \"rankvar\": 561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 824, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1937, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1758, \"group\": [87.0, 28.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92861_BALBc-1_X02_Y01_892_982\", \"ini\": 2001, \"clust\": 2549, \"rank\": 1555, \"rankvar\": 1472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 825, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 825, \"cat-2\": \"Density: 26\", \"cat_2_index\": 774, \"group\": [2549.0, 448.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93022_BALBc-1_X02_Y01_894_971\", \"ini\": 2000, \"clust\": 2693, \"rank\": 2736, \"rankvar\": 2594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 826, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1090, \"cat-2\": \"Density: 26\", \"cat_2_index\": 775, \"group\": [2693.0, 487.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93068_BALBc-1_X02_Y01_895_559\", \"ini\": 1999, \"clust\": 1523, \"rank\": 1274, \"rankvar\": 1994, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 827, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1938, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1854, \"group\": [1523.0, 243.0, 49.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93323_BALBc-1_X02_Y01_898_909\", \"ini\": 1998, \"clust\": 955, \"rank\": 308, \"rankvar\": 770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 828, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1091, \"cat-2\": \"Density: 26\", \"cat_2_index\": 776, \"group\": [956.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93904_BALBc-1_X02_Y01_905_249\", \"ini\": 1997, \"clust\": 2573, \"rank\": 1907, \"rankvar\": 902, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 829, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 826, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2147, \"group\": [2574.0, 456.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93971_BALBc-1_X02_Y01_906_130\", \"ini\": 1996, \"clust\": 1551, \"rank\": 2188, \"rankvar\": 2495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 830, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1741, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2148, \"group\": [1551.0, 254.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94356_BALBc-1_X02_Y01_910_484\", \"ini\": 1995, \"clust\": 1292, \"rank\": 1088, \"rankvar\": 1397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 831, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2446, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1759, \"group\": [1293.0, 177.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94868_BALBc-1_X02_Y01_917_430\", \"ini\": 1994, \"clust\": 2731, \"rank\": 2478, \"rankvar\": 1936, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 832, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1939, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1229, \"group\": [2730.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95225_BALBc-1_X02_Y01_920_863\", \"ini\": 1993, \"clust\": 896, \"rank\": 490, \"rankvar\": 9, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 833, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1940, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1384, \"group\": [898.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95582_BALBc-1_X02_Y01_925_541\", \"ini\": 1992, \"clust\": 1105, \"rank\": 674, \"rankvar\": 292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 834, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1941, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1855, \"group\": [1105.0, 122.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95746_BALBc-1_X02_Y01_927_54\", \"ini\": 1991, \"clust\": 1470, \"rank\": 1746, \"rankvar\": 1422, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 835, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1742, \"cat-2\": \"Density: 21\", \"cat_2_index\": 202, \"group\": [1471.0, 220.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96191_BALBc-1_X02_Y01_932_492\", \"ini\": 1990, \"clust\": 2076, \"rank\": 2536, \"rankvar\": 1830, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 836, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1942, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1958, \"group\": [2077.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96279_BALBc-1_X02_Y01_933_566\", \"ini\": 1989, \"clust\": 2415, \"rank\": 1172, \"rankvar\": 1664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 837, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1092, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1506, \"group\": [2417.0, 401.0, 84.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96334_BALBc-1_X02_Y01_934_380\", \"ini\": 1988, \"clust\": 1288, \"rank\": 1432, \"rankvar\": 2063, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 838, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1943, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1083, \"group\": [1290.0, 176.0, 35.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96344_BALBc-1_X02_Y01_934_613\", \"ini\": 1987, \"clust\": 2699, \"rank\": 2455, \"rankvar\": 2560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 839, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2489, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1507, \"group\": [2700.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96459_BALBc-1_X02_Y01_935_966\", \"ini\": 1986, \"clust\": 1286, \"rank\": 1316, \"rankvar\": 2079, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 840, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1093, \"cat-2\": \"Density: 26\", \"cat_2_index\": 777, \"group\": [1287.0, 176.0, 35.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96674_BALBc-1_X02_Y01_939_112\", \"ini\": 1985, \"clust\": 2636, \"rank\": 2189, \"rankvar\": 2577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 841, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 944, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1760, \"group\": [2642.0, 475.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97053_BALBc-1_X02_Y01_943_180\", \"ini\": 1984, \"clust\": 2518, \"rank\": 1395, \"rankvar\": 893, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 842, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1944, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1959, \"group\": [2520.0, 438.0, 95.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97263_BALBc-1_X02_Y01_945_522\", \"ini\": 1983, \"clust\": 2677, \"rank\": 2031, \"rankvar\": 2226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 843, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2292, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1960, \"group\": [2679.0, 483.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97534_BALBc-1_X02_Y01_949_394\", \"ini\": 1982, \"clust\": 542, \"rank\": 906, \"rankvar\": 663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 844, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1945, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1385, \"group\": [543.0, 94.0, 21.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98149_BALBc-1_X02_Y01_956_248\", \"ini\": 1981, \"clust\": 949, \"rank\": 668, \"rankvar\": 617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 845, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 827, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1649, \"group\": [954.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98727_BALBc-1_X02_Y01_963_190\", \"ini\": 1980, \"clust\": 1001, \"rank\": 113, \"rankvar\": 330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 846, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 828, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2064, \"group\": [1001.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98778_BALBc-1_X02_Y01_963_859\", \"ini\": 1979, \"clust\": 2675, \"rank\": 2205, \"rankvar\": 1693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 847, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1094, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1230, \"group\": [2674.0, 482.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98945_BALBc-1_X02_Y01_966_166\", \"ini\": 1978, \"clust\": 1477, \"rank\": 1293, \"rankvar\": 106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 848, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1946, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1856, \"group\": [1480.0, 224.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99117_BALBc-1_X02_Y01_968_271\", \"ini\": 1977, \"clust\": 98, \"rank\": 976, \"rankvar\": 1521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 849, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1947, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1650, \"group\": [98.0, 33.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99166_BALBc-1_X02_Y01_968_799\", \"ini\": 1976, \"clust\": 2744, \"rank\": 2428, \"rankvar\": 1117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 850, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1948, \"cat-2\": \"Density: 27\", \"cat_2_index\": 930, \"group\": [2745.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99323_BALBc-1_X02_Y01_97_873\", \"ini\": 1975, \"clust\": 934, \"rank\": 491, \"rankvar\": 198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 851, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2447, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1651, \"group\": [934.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99561_BALBc-1_X02_Y01_973_197\", \"ini\": 1974, \"clust\": 211, \"rank\": 713, \"rankvar\": 1515, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 852, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 829, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2065, \"group\": [217.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99777_BALBc-1_X02_Y01_975_860\", \"ini\": 1973, \"clust\": 455, \"rank\": 655, \"rankvar\": 177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 853, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1949, \"cat-2\": \"Density: 26\", \"cat_2_index\": 778, \"group\": [455.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100239_BALBc-1_X02_Y01_981_12\", \"ini\": 1972, \"clust\": 909, \"rank\": 541, \"rankvar\": 97, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 854, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1950, \"cat-2\": \"Density: 13\", \"cat_2_index\": 16, \"group\": [909.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100387_BALBc-1_X02_Y01_983_285\", \"ini\": 1971, \"clust\": 1058, \"rank\": 158, \"rankvar\": 1452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 855, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1951, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1508, \"group\": [1055.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100684_BALBc-1_X02_Y01_987_235\", \"ini\": 1970, \"clust\": 2523, \"rank\": 1948, \"rankvar\": 1480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 856, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 830, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1761, \"group\": [2522.0, 439.0, 95.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100729_BALBc-1_X02_Y01_987_776\", \"ini\": 1969, \"clust\": 2527, \"rank\": 1428, \"rankvar\": 604, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 857, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1743, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1084, \"group\": [2526.0, 440.0, 96.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101299_BALBc-1_X02_Y01_994_207\", \"ini\": 1968, \"clust\": 2771, \"rank\": 2156, \"rankvar\": 2592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 858, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1095, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1961, \"group\": [2770.0, 492.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101376_BALBc-1_X02_Y01_995_115\", \"ini\": 1967, \"clust\": 913, \"rank\": 204, \"rankvar\": 1703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 859, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1952, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1386, \"group\": [913.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101379_BALBc-1_X02_Y01_995_125\", \"ini\": 1966, \"clust\": 2737, \"rank\": 2646, \"rankvar\": 2490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 860, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1953, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1387, \"group\": [2739.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101762_BALBc-1_X02_Y01_999_749\", \"ini\": 1965, \"clust\": 2710, \"rank\": 2517, \"rankvar\": 2641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 861, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1954, \"cat-2\": \"Density: 26\", \"cat_2_index\": 779, \"group\": [2712.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-814_BALBc-1_X01_Y02_1000_470\", \"ini\": 1964, \"clust\": 1991, \"rank\": 1801, \"rankvar\": 657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 862, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2520, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2542, \"group\": [1992.0, 351.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1027_BALBc-1_X01_Y02_1003_258\", \"ini\": 1963, \"clust\": 1680, \"rank\": 2272, \"rankvar\": 2673, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 863, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2521, \"cat-2\": \"Density: 27\", \"cat_2_index\": 931, \"group\": [1678.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1035_BALBc-1_X01_Y02_1003_353\", \"ini\": 1962, \"clust\": 517, \"rank\": 784, \"rankvar\": 1133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 864, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 38, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2365, \"group\": [517.0, 83.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1100_BALBc-1_X01_Y02_1004_310\", \"ini\": 1961, \"clust\": 1002, \"rank\": 67, \"rankvar\": 466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 865, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 39, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1652, \"group\": [1002.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1200_BALBc-1_X01_Y02_1005_707\", \"ini\": 1960, \"clust\": 715, \"rank\": 598, \"rankvar\": 764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 866, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1096, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2503, \"group\": [717.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1322_BALBc-1_X01_Y02_1007_204\", \"ini\": 1959, \"clust\": 1703, \"rank\": 1822, \"rankvar\": 2426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 867, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 40, \"cat-2\": \"Density: 25\", \"cat_2_index\": 646, \"group\": [1703.0, 303.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1434_BALBc-1_X01_Y02_1008_667\", \"ini\": 1958, \"clust\": 2168, \"rank\": 2294, \"rankvar\": 1473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 868, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 41, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2543, \"group\": [2171.0, 364.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1462_BALBc-1_X01_Y02_1008_96\", \"ini\": 1957, \"clust\": 894, \"rank\": 211, \"rankvar\": 1623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 869, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2522, \"cat-2\": \"Density: 26\", \"cat_2_index\": 780, \"group\": [895.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1655_BALBc-1_X01_Y02_1010_300\", \"ini\": 1956, \"clust\": 1271, \"rank\": 1007, \"rankvar\": 1358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 870, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 42, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1762, \"group\": [1271.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1685_BALBc-1_X01_Y02_1010_638\", \"ini\": 1955, \"clust\": 916, \"rank\": 199, \"rankvar\": 952, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 871, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1992, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2544, \"group\": [916.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1696_BALBc-1_X01_Y02_1010_759\", \"ini\": 1954, \"clust\": 350, \"rank\": 657, \"rankvar\": 1165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 872, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1097, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2424, \"group\": [350.0, 75.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1730_BALBc-1_X01_Y02_1011_325\", \"ini\": 1953, \"clust\": 451, \"rank\": 520, \"rankvar\": 651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 873, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 43, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2066, \"group\": [451.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1847_BALBc-1_X01_Y02_1012_897\", \"ini\": 1952, \"clust\": 967, \"rank\": 102, \"rankvar\": 780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 874, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1098, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2299, \"group\": [968.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1915_BALBc-1_X01_Y02_1013_615\", \"ini\": 1951, \"clust\": 2089, \"rank\": 2700, \"rankvar\": 2430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 875, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1993, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2651, \"group\": [2090.0, 358.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2124_BALBc-1_X01_Y02_1016_391\", \"ini\": 1950, \"clust\": 2457, \"rank\": 1684, \"rankvar\": 1434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 876, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 44, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2773, \"group\": [2457.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2204_BALBc-1_X01_Y02_1017_547\", \"ini\": 1949, \"clust\": 1409, \"rank\": 1103, \"rankvar\": 1095, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 877, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 45, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2652, \"group\": [1410.0, 203.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2235_BALBc-1_X01_Y02_1017_848\", \"ini\": 1948, \"clust\": 535, \"rank\": 801, \"rankvar\": 202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 878, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1099, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2504, \"group\": [534.0, 89.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2283_BALBc-1_X01_Y02_1018_442\", \"ini\": 1947, \"clust\": 2340, \"rank\": 2679, \"rankvar\": 2252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 879, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2523, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2733, \"group\": [2340.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2353_BALBc-1_X01_Y02_1019_489\", \"ini\": 1946, \"clust\": 2202, \"rank\": 2324, \"rankvar\": 2696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 880, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2524, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2734, \"group\": [2204.0, 374.0, 80.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2355_BALBc-1_X01_Y02_1019_507\", \"ini\": 1945, \"clust\": 2371, \"rank\": 2091, \"rankvar\": 1715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 881, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 46, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2593, \"group\": [2374.0, 392.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2384_BALBc-1_X01_Y02_1019_836\", \"ini\": 1944, \"clust\": 1607, \"rank\": 1535, \"rankvar\": 2566, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 882, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1634, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2594, \"group\": [1608.0, 271.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2557_BALBc-1_X01_Y02_1021_285\", \"ini\": 1943, \"clust\": 985, \"rank\": 142, \"rankvar\": 486, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 883, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 47, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1388, \"group\": [989.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2591_BALBc-1_X01_Y02_1021_733\", \"ini\": 1942, \"clust\": 379, \"rank\": 480, \"rankvar\": 500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 884, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1100, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2425, \"group\": [378.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2671_BALBc-1_X01_Y02_1022_672\", \"ini\": 1941, \"clust\": 1143, \"rank\": 393, \"rankvar\": 1817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 885, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1101, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2505, \"group\": [1143.0, 131.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2730_BALBc-1_X01_Y02_1023_412\", \"ini\": 1940, \"clust\": 658, \"rank\": 414, \"rankvar\": 1654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 886, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2525, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2696, \"group\": [664.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2766_BALBc-1_X01_Y02_1023_779\", \"ini\": 1939, \"clust\": 465, \"rank\": 1146, \"rankvar\": 919, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 887, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1102, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2426, \"group\": [466.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2827_BALBc-1_X01_Y02_1024_575\", \"ini\": 1938, \"clust\": 2119, \"rank\": 2771, \"rankvar\": 2388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 888, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 48, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2595, \"group\": [2119.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2833_BALBc-1_X01_Y02_1024_621\", \"ini\": 1937, \"clust\": 235, \"rank\": 1311, \"rankvar\": 888, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 889, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 49, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2596, \"group\": [235.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2893_BALBc-1_X01_Y02_1025_369\", \"ini\": 1936, \"clust\": 2239, \"rank\": 1847, \"rankvar\": 1583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 890, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1635, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2506, \"group\": [2242.0, 385.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2964_BALBc-1_X01_Y02_1026_323\", \"ini\": 1935, \"clust\": 1982, \"rank\": 1888, \"rankvar\": 1209, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 891, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 50, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1857, \"group\": [1987.0, 350.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3081_BALBc-1_X01_Y02_1027_596\", \"ini\": 1934, \"clust\": 829, \"rank\": 44, \"rankvar\": 318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 892, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 51, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2653, \"group\": [829.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3102_BALBc-1_X01_Y02_1027_8\", \"ini\": 1933, \"clust\": 778, \"rank\": 289, \"rankvar\": 134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 893, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1636, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1763, \"group\": [779.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3134_BALBc-1_X01_Y02_1028_174\", \"ini\": 1932, \"clust\": 1702, \"rank\": 1599, \"rankvar\": 2362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 894, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1103, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1085, \"group\": [1705.0, 303.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3301_BALBc-1_X01_Y02_103_274\", \"ini\": 1931, \"clust\": 1082, \"rank\": 183, \"rankvar\": 1257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 895, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1104, \"cat-2\": \"Density: 25\", \"cat_2_index\": 647, \"group\": [1082.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3362_BALBc-1_X01_Y02_1030_122\", \"ini\": 1930, \"clust\": 1767, \"rank\": 2551, \"rankvar\": 2539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 896, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 692, \"cat-2\": \"Density: 24\", \"cat_2_index\": 500, \"group\": [1768.0, 315.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3370_BALBc-1_X01_Y02_1030_219\", \"ini\": 1929, \"clust\": 1709, \"rank\": 2262, \"rankvar\": 2809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 897, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1105, \"cat-2\": \"Density: 27\", \"cat_2_index\": 932, \"group\": [1708.0, 304.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3687_BALBc-1_X01_Y02_1034_469\", \"ini\": 1928, \"clust\": 2295, \"rank\": 2391, \"rankvar\": 1683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 898, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2526, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2735, \"group\": [2296.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3758_BALBc-1_X01_Y02_1035_352\", \"ini\": 1927, \"clust\": 1030, \"rank\": 13, \"rankvar\": 221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 899, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1637, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2427, \"group\": [1033.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3764_BALBc-1_X01_Y02_1035_406\", \"ini\": 1926, \"clust\": 2257, \"rank\": 2323, \"rankvar\": 2197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 900, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1638, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2597, \"group\": [2258.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4026_BALBc-1_X01_Y02_1038_521\", \"ini\": 1925, \"clust\": 2436, \"rank\": 1833, \"rankvar\": 842, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 901, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 52, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2736, \"group\": [2437.0, 414.0, 89.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4053_BALBc-1_X01_Y02_1038_905\", \"ini\": 1924, \"clust\": 1514, \"rank\": 1676, \"rankvar\": 2232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 902, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1744, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2149, \"group\": [1514.0, 240.0, 48.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4056_BALBc-1_X01_Y02_1038_930\", \"ini\": 1923, \"clust\": 884, \"rank\": 225, \"rankvar\": 436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 903, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1106, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1509, \"group\": [887.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4110_BALBc-1_X01_Y02_1039_579\", \"ini\": 1922, \"clust\": 1385, \"rank\": 1645, \"rankvar\": 1072, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 904, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 53, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2598, \"group\": [1388.0, 194.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4115_BALBc-1_X01_Y02_1039_648\", \"ini\": 1921, \"clust\": 1592, \"rank\": 848, \"rankvar\": 700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 905, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1107, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2428, \"group\": [1590.0, 267.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4300_BALBc-1_X01_Y02_1041_266\", \"ini\": 1920, \"clust\": 1658, \"rank\": 1295, \"rankvar\": 2620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 906, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 54, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1231, \"group\": [1658.0, 300.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4313_BALBc-1_X01_Y02_1041_433\", \"ini\": 1919, \"clust\": 1184, \"rank\": 2116, \"rankvar\": 2011, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 907, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2527, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2697, \"group\": [1186.0, 148.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4822_BALBc-1_X01_Y02_1047_721\", \"ini\": 1918, \"clust\": 467, \"rank\": 885, \"rankvar\": 1030, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 908, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1108, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2507, \"group\": [468.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4884_BALBc-1_X01_Y02_1048_476\", \"ini\": 1917, \"clust\": 81, \"rank\": 397, \"rankvar\": 581, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 909, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 55, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2819, \"group\": [81.0, 28.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4887_BALBc-1_X01_Y02_1048_504\", \"ini\": 1916, \"clust\": 497, \"rank\": 694, \"rankvar\": 1014, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 910, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 56, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2820, \"group\": [497.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4912_BALBc-1_X01_Y02_1048_876\", \"ini\": 1915, \"clust\": 1421, \"rank\": 727, \"rankvar\": 2070, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 911, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1109, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2224, \"group\": [1421.0, 205.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5193_BALBc-1_X01_Y02_1051_618\", \"ini\": 1914, \"clust\": 215, \"rank\": 1113, \"rankvar\": 953, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 912, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1110, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2366, \"group\": [214.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5224_BALBc-1_X01_Y02_1052_107\", \"ini\": 1913, \"clust\": 794, \"rank\": 196, \"rankvar\": 840, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 913, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 693, \"cat-2\": \"Density: 23\", \"cat_2_index\": 390, \"group\": [795.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5304_BALBc-1_X01_Y02_1053_18\", \"ini\": 1912, \"clust\": 2637, \"rank\": 1761, \"rankvar\": 2690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 914, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2448, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1232, \"group\": [2637.0, 472.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5328_BALBc-1_X01_Y02_1053_572\", \"ini\": 1911, \"clust\": 1993, \"rank\": 1759, \"rankvar\": 388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 915, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 57, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2599, \"group\": [1994.0, 351.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5445_BALBc-1_X01_Y02_1055_145\", \"ini\": 1910, \"clust\": 1219, \"rank\": 1779, \"rankvar\": 2193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 916, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 58, \"cat-2\": \"Density: 23\", \"cat_2_index\": 391, \"group\": [1220.0, 162.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5547_BALBc-1_X01_Y02_1056_251\", \"ini\": 1909, \"clust\": 1666, \"rank\": 1925, \"rankvar\": 1569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 917, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1560, \"cat-2\": \"Density: 27\", \"cat_2_index\": 933, \"group\": [1667.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5577_BALBc-1_X01_Y02_1056_535\", \"ini\": 1908, \"clust\": 1017, \"rank\": 179, \"rankvar\": 21, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 918, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 59, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2698, \"group\": [1016.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5586_BALBc-1_X01_Y02_1056_690\", \"ini\": 1907, \"clust\": 729, \"rank\": 169, \"rankvar\": 648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 919, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1111, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2429, \"group\": [731.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5602_BALBc-1_X01_Y02_1056_84\", \"ini\": 1906, \"clust\": 1092, \"rank\": 660, \"rankvar\": 77, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 920, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 694, \"cat-2\": \"Density: 26\", \"cat_2_index\": 781, \"group\": [1093.0, 119.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5707_BALBc-1_X01_Y02_1058_294\", \"ini\": 1905, \"clust\": 796, \"rank\": 515, \"rankvar\": 334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 921, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 60, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1510, \"group\": [797.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5739_BALBc-1_X01_Y02_1058_669\", \"ini\": 1904, \"clust\": 213, \"rank\": 1038, \"rankvar\": 1100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 922, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1112, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2654, \"group\": [212.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5833_BALBc-1_X01_Y02_1059_848\", \"ini\": 1903, \"clust\": 1083, \"rank\": 452, \"rankvar\": 511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 923, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1113, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2300, \"group\": [1083.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6281_BALBc-1_X01_Y02_1064_432\", \"ini\": 1902, \"clust\": 1975, \"rank\": 2229, \"rankvar\": 1522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 924, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 61, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2737, \"group\": [1975.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6293_BALBc-1_X01_Y02_1064_504\", \"ini\": 1901, \"clust\": 2462, \"rank\": 1624, \"rankvar\": 528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 925, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 62, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2811, \"group\": [2463.0, 420.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6437_BALBc-1_X01_Y02_1066_473\", \"ini\": 1900, \"clust\": 1386, \"rank\": 1466, \"rankvar\": 983, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 926, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 63, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2821, \"group\": [1386.0, 194.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6448_BALBc-1_X01_Y02_1066_590\", \"ini\": 1899, \"clust\": 1014, \"rank\": 39, \"rankvar\": 472, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 927, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 64, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2655, \"group\": [1014.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6527_BALBc-1_X01_Y02_1067_691\", \"ini\": 1898, \"clust\": 2508, \"rank\": 1282, \"rankvar\": 1384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 928, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1114, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2430, \"group\": [2507.0, 432.0, 93.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6588_BALBc-1_X01_Y02_1068_448\", \"ini\": 1897, \"clust\": 227, \"rank\": 1128, \"rankvar\": 737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 929, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 65, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2812, \"group\": [228.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6686_BALBc-1_X01_Y02_1069_459\", \"ini\": 1896, \"clust\": 399, \"rank\": 509, \"rankvar\": 655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 930, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 66, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2793, \"group\": [400.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6811_BALBc-1_X01_Y02_1070_150\", \"ini\": 1895, \"clust\": 262, \"rank\": 507, \"rankvar\": 1891, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 931, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1115, \"cat-2\": \"Density: 23\", \"cat_2_index\": 392, \"group\": [261.0, 68.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7004_BALBc-1_X01_Y02_1072_408\", \"ini\": 1894, \"clust\": 144, \"rank\": 725, \"rankvar\": 2184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 932, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 619, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2794, \"group\": [148.0, 46.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7308_BALBc-1_X01_Y02_1075_797\", \"ini\": 1893, \"clust\": 895, \"rank\": 349, \"rankvar\": 543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 933, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1116, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2301, \"group\": [902.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7360_BALBc-1_X01_Y02_1076_505\", \"ini\": 1892, \"clust\": 2657, \"rank\": 2304, \"rankvar\": 1578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 934, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 67, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2795, \"group\": [2656.0, 478.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7375_BALBc-1_X01_Y02_1076_614\", \"ini\": 1891, \"clust\": 945, \"rank\": 322, \"rankvar\": 1134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 935, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1117, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2656, \"group\": [946.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7388_BALBc-1_X01_Y02_1076_772\", \"ini\": 1890, \"clust\": 1620, \"rank\": 1673, \"rankvar\": 1756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 936, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1118, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2367, \"group\": [1617.0, 272.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7429_BALBc-1_X01_Y02_1077_283\", \"ini\": 1889, \"clust\": 518, \"rank\": 814, \"rankvar\": 372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 937, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 68, \"cat-2\": \"Density: 26\", \"cat_2_index\": 782, \"group\": [518.0, 83.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7521_BALBc-1_X01_Y02_1078_434\", \"ini\": 1888, \"clust\": 833, \"rank\": 236, \"rankvar\": 127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 938, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 69, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2796, \"group\": [834.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7604_BALBc-1_X01_Y02_1079_662\", \"ini\": 1887, \"clust\": 1613, \"rank\": 1705, \"rankvar\": 2706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 939, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1119, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2431, \"group\": [1611.0, 271.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7606_BALBc-1_X01_Y02_1079_678\", \"ini\": 1886, \"clust\": 2560, \"rank\": 1849, \"rankvar\": 2071, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 940, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1639, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2432, \"group\": [2558.0, 450.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7804_BALBc-1_X01_Y02_1081_554\", \"ini\": 1885, \"clust\": 214, \"rank\": 971, \"rankvar\": 933, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 941, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 70, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2699, \"group\": [213.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7953_BALBc-1_X01_Y02_1083_574\", \"ini\": 1884, \"clust\": 2468, \"rank\": 1670, \"rankvar\": 1281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 942, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 71, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2508, \"group\": [2467.0, 420.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8179_BALBc-1_X01_Y02_1086_62\", \"ini\": 1883, \"clust\": 803, \"rank\": 276, \"rankvar\": 405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 943, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1640, \"cat-2\": \"Density: 27\", \"cat_2_index\": 934, \"group\": [807.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8323_BALBc-1_X01_Y02_1088_532\", \"ini\": 1882, \"clust\": 601, \"rank\": 779, \"rankvar\": 279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 944, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 72, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2774, \"group\": [601.0, 102.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8368_BALBc-1_X01_Y02_1089_10\", \"ini\": 1881, \"clust\": 986, \"rank\": 60, \"rankvar\": 494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 945, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 695, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1233, \"group\": [988.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8395_BALBc-1_X01_Y02_1089_383\", \"ini\": 1880, \"clust\": 402, \"rank\": 284, \"rankvar\": 612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 946, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 620, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2600, \"group\": [402.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8610_BALBc-1_X01_Y02_1091_207\", \"ini\": 1879, \"clust\": 1649, \"rank\": 1500, \"rankvar\": 1943, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 947, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1120, \"cat-2\": \"Density: 22\", \"cat_2_index\": 281, \"group\": [1649.0, 297.0, 66.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8618_BALBc-1_X01_Y02_1091_325\", \"ini\": 1878, \"clust\": 478, \"rank\": 843, \"rankvar\": 1236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 948, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1641, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1962, \"group\": [479.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8711_BALBc-1_X01_Y02_1092_593\", \"ini\": 1877, \"clust\": 1976, \"rank\": 2127, \"rankvar\": 1305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 949, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 73, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2738, \"group\": [1976.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8860_BALBc-1_X01_Y02_1094_414\", \"ini\": 1876, \"clust\": 1972, \"rank\": 1958, \"rankvar\": 1499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 950, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 74, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2775, \"group\": [1972.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8911_BALBc-1_X01_Y02_1095_127\", \"ini\": 1875, \"clust\": 1161, \"rank\": 571, \"rankvar\": 1744, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 951, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1121, \"cat-2\": \"Density: 24\", \"cat_2_index\": 501, \"group\": [1163.0, 137.0, 25.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8950_BALBc-1_X01_Y02_1095_640\", \"ini\": 1874, \"clust\": 937, \"rank\": 291, \"rankvar\": 417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 952, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1122, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2700, \"group\": [940.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9039_BALBc-1_X01_Y02_1096_780\", \"ini\": 1873, \"clust\": 1049, \"rank\": 533, \"rankvar\": 148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 953, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 945, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2225, \"group\": [1052.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9116_BALBc-1_X01_Y02_1097_820\", \"ini\": 1872, \"clust\": 1971, \"rank\": 2121, \"rankvar\": 1934, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 954, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1123, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2226, \"group\": [1974.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9237_BALBc-1_X01_Y02_1099_474\", \"ini\": 1871, \"clust\": 904, \"rank\": 328, \"rankvar\": 135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 955, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 75, \"cat-2\": \"Density: 52\", \"cat_2_index\": 2825, \"group\": [907.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9410_BALBc-1_X01_Y02_110_501\", \"ini\": 1870, \"clust\": 970, \"rank\": 141, \"rankvar\": 1243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 956, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2449, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1086, \"group\": [973.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9518_BALBc-1_X01_Y02_1100_80\", \"ini\": 1869, \"clust\": 34, \"rank\": 850, \"rankvar\": 2632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 957, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1955, \"cat-2\": \"Density: 24\", \"cat_2_index\": 502, \"group\": [35.0, 11.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9617_BALBc-1_X01_Y02_1102_229\", \"ini\": 1868, \"clust\": 1637, \"rank\": 1562, \"rankvar\": 1809, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 958, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1561, \"cat-2\": \"Density: 26\", \"cat_2_index\": 783, \"group\": [1639.0, 290.0, 65.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9723_BALBc-1_X01_Y02_1103_562\", \"ini\": 1867, \"clust\": 750, \"rank\": 314, \"rankvar\": 54, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 959, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 76, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2545, \"group\": [752.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9784_BALBc-1_X01_Y02_1104_292\", \"ini\": 1866, \"clust\": 1574, \"rank\": 1078, \"rankvar\": 1971, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 960, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2528, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1511, \"group\": [1574.0, 260.0, 55.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9793_BALBc-1_X01_Y02_1104_427\", \"ini\": 1865, \"clust\": 431, \"rank\": 825, \"rankvar\": 605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 961, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 77, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2797, \"group\": [435.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9800_BALBc-1_X01_Y02_1104_504\", \"ini\": 1864, \"clust\": 1980, \"rank\": 1996, \"rankvar\": 1019, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 962, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 78, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2798, \"group\": [1977.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9883_BALBc-1_X01_Y02_1105_447\", \"ini\": 1863, \"clust\": 348, \"rank\": 958, \"rankvar\": 80, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 963, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 79, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2813, \"group\": [349.0, 75.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10036_BALBc-1_X01_Y02_1107_379\", \"ini\": 1862, \"clust\": 2233, \"rank\": 2145, \"rankvar\": 1807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 964, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 80, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2368, \"group\": [2237.0, 383.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10115_BALBc-1_X01_Y02_1108_313\", \"ini\": 1861, \"clust\": 806, \"rank\": 344, \"rankvar\": 154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 965, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2529, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1389, \"group\": [805.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10188_BALBc-1_X01_Y02_1109_186\", \"ini\": 1860, \"clust\": 316, \"rank\": 667, \"rankvar\": 1711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 966, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1124, \"cat-2\": \"Density: 20\", \"cat_2_index\": 153, \"group\": [316.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10290_BALBc-1_X01_Y02_111_587\", \"ini\": 1859, \"clust\": 914, \"rank\": 255, \"rankvar\": 1687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 967, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1125, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1087, \"group\": [914.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10354_BALBc-1_X01_Y02_1110_402\", \"ini\": 1858, \"clust\": 1034, \"rank\": 4, \"rankvar\": 254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 968, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 81, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2546, \"group\": [1028.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10516_BALBc-1_X01_Y02_1112_616\", \"ini\": 1857, \"clust\": 1585, \"rank\": 590, \"rankvar\": 2513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 969, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1126, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2739, \"group\": [1585.0, 266.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10520_BALBc-1_X01_Y02_1112_667\", \"ini\": 1856, \"clust\": 1566, \"rank\": 1962, \"rankvar\": 1871, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 970, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 82, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2369, \"group\": [1566.0, 256.0, 53.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10730_BALBc-1_X01_Y02_1115_472\", \"ini\": 1855, \"clust\": 876, \"rank\": 382, \"rankvar\": 15, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 971, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 83, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2814, \"group\": [875.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10887_BALBc-1_X01_Y02_1117_527\", \"ini\": 1854, \"clust\": 228, \"rank\": 987, \"rankvar\": 722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 972, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 84, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2601, \"group\": [226.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10916_BALBc-1_X01_Y02_1117_796\", \"ini\": 1853, \"clust\": 1080, \"rank\": 278, \"rankvar\": 611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 973, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1127, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1963, \"group\": [1080.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10974_BALBc-1_X01_Y02_1118_646\", \"ini\": 1852, \"clust\": 527, \"rank\": 629, \"rankvar\": 1609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 974, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 85, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2602, \"group\": [525.0, 86.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11010_BALBc-1_X01_Y02_1119_25\", \"ini\": 1851, \"clust\": 1890, \"rank\": 2069, \"rankvar\": 1695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 975, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 696, \"cat-2\": \"Density: 27\", \"cat_2_index\": 935, \"group\": [1892.0, 328.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11155_BALBc-1_X01_Y02_1120_361\", \"ini\": 1850, \"clust\": 668, \"rank\": 81, \"rankvar\": 1321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 976, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 86, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1964, \"group\": [665.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11235_BALBc-1_X01_Y02_1121_237\", \"ini\": 1849, \"clust\": 1111, \"rank\": 841, \"rankvar\": 411, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 977, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1562, \"cat-2\": \"Density: 23\", \"cat_2_index\": 393, \"group\": [1112.0, 123.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11425_BALBc-1_X01_Y02_1123_682\", \"ini\": 1848, \"clust\": 1061, \"rank\": 497, \"rankvar\": 701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 978, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1642, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2509, \"group\": [1062.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11501_BALBc-1_X01_Y02_1124_589\", \"ini\": 1847, \"clust\": 1967, \"rank\": 2038, \"rankvar\": 1658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 979, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1128, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2433, \"group\": [1968.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11783_BALBc-1_X01_Y02_1128_375\", \"ini\": 1846, \"clust\": 2460, \"rank\": 1681, \"rankvar\": 464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 980, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 87, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2227, \"group\": [2461.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11789_BALBc-1_X01_Y02_1128_446\", \"ini\": 1845, \"clust\": 220, \"rank\": 1281, \"rankvar\": 790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 981, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 88, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2776, \"group\": [221.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11818_BALBc-1_X01_Y02_1128_778\", \"ini\": 1844, \"clust\": 1515, \"rank\": 1715, \"rankvar\": 912, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 982, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1129, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2302, \"group\": [1515.0, 240.0, 48.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11861_BALBc-1_X01_Y02_1129_519\", \"ini\": 1843, \"clust\": 774, \"rank\": 566, \"rankvar\": 216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 983, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1546, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2815, \"group\": [777.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11949_BALBc-1_X01_Y02_113_746\", \"ini\": 1842, \"clust\": 2610, \"rank\": 2013, \"rankvar\": 2289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 984, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1130, \"cat-2\": \"Density: 26\", \"cat_2_index\": 784, \"group\": [2610.0, 461.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12248_BALBc-1_X01_Y02_1133_543\", \"ini\": 1841, \"clust\": 2529, \"rank\": 1402, \"rankvar\": 236, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 985, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1547, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2547, \"group\": [2530.0, 442.0, 96.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12302_BALBc-1_X01_Y02_1134_424\", \"ini\": 1840, \"clust\": 1635, \"rank\": 1444, \"rankvar\": 166, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 986, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2530, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2510, \"group\": [1636.0, 289.0, 64.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12338_BALBc-1_X01_Y02_1135_117\", \"ini\": 1839, \"clust\": 19, \"rank\": 1408, \"rankvar\": 1661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 987, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1131, \"cat-2\": \"Density: 25\", \"cat_2_index\": 648, \"group\": [20.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12370_BALBc-1_X01_Y02_1135_398\", \"ini\": 1838, \"clust\": 1461, \"rank\": 2290, \"rankvar\": 1815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 988, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2531, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2303, \"group\": [1465.0, 219.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12399_BALBc-1_X01_Y02_1135_711\", \"ini\": 1837, \"clust\": 952, \"rank\": 269, \"rankvar\": 241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 989, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1132, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2511, \"group\": [950.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12520_BALBc-1_X01_Y02_1137_482\", \"ini\": 1836, \"clust\": 881, \"rank\": 180, \"rankvar\": 125, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 990, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 89, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2701, \"group\": [883.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13075_BALBc-1_X01_Y02_1143_338\", \"ini\": 1835, \"clust\": 1424, \"rank\": 997, \"rankvar\": 594, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 991, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2532, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1234, \"group\": [1426.0, 206.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13103_BALBc-1_X01_Y02_1143_664\", \"ini\": 1834, \"clust\": 1561, \"rank\": 1793, \"rankvar\": 1575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 992, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 90, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2304, \"group\": [1561.0, 255.0, 53.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13162_BALBc-1_X01_Y02_1144_457\", \"ini\": 1833, \"clust\": 879, \"rank\": 331, \"rankvar\": 2, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 993, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 91, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2799, \"group\": [878.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13164_BALBc-1_X01_Y02_1144_469\", \"ini\": 1832, \"clust\": 79, \"rank\": 920, \"rankvar\": 162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 994, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 92, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2702, \"group\": [82.0, 28.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13317_BALBc-1_X01_Y02_1146_638\", \"ini\": 1831, \"clust\": 547, \"rank\": 1251, \"rankvar\": 101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 995, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 93, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2305, \"group\": [548.0, 96.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13467_BALBc-1_X01_Y02_1148_565\", \"ini\": 1830, \"clust\": 834, \"rank\": 105, \"rankvar\": 129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 996, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1133, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2434, \"group\": [835.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13517_BALBc-1_X01_Y02_1149_362\", \"ini\": 1829, \"clust\": 1141, \"rank\": 440, \"rankvar\": 1875, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 997, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 94, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1653, \"group\": [1141.0, 131.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13825_BALBc-1_X01_Y02_1152_206\", \"ini\": 1828, \"clust\": 1068, \"rank\": 518, \"rankvar\": 734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 998, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2533, \"cat-2\": \"Density: 23\", \"cat_2_index\": 394, \"group\": [1070.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14075_BALBc-1_X01_Y02_1155_606\", \"ini\": 1827, \"clust\": 1106, \"rank\": 355, \"rankvar\": 1725, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 999, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1134, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2228, \"group\": [1109.0, 122.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14139_BALBc-1_X01_Y02_1156_505\", \"ini\": 1826, \"clust\": 2458, \"rank\": 1885, \"rankvar\": 892, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1000, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1548, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2603, \"group\": [2459.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14194_BALBc-1_X01_Y02_1157_257\", \"ini\": 1825, \"clust\": 1095, \"rank\": 633, \"rankvar\": 43, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1001, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1135, \"cat-2\": \"Density: 23\", \"cat_2_index\": 395, \"group\": [1095.0, 119.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14333_BALBc-1_X01_Y02_1158_98\", \"ini\": 1824, \"clust\": 504, \"rank\": 1307, \"rankvar\": 525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1002, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1136, \"cat-2\": \"Density: 22\", \"cat_2_index\": 282, \"group\": [511.0, 79.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14461_BALBc-1_X01_Y02_116_804\", \"ini\": 1823, \"clust\": 1785, \"rank\": 2286, \"rankvar\": 2312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1003, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1137, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1654, \"group\": [1786.0, 319.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14529_BALBc-1_X01_Y02_1160_70\", \"ini\": 1822, \"clust\": 1654, \"rank\": 1386, \"rankvar\": 989, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1004, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1956, \"cat-2\": \"Density: 23\", \"cat_2_index\": 396, \"group\": [1655.0, 299.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14765_BALBc-1_X01_Y02_1163_363\", \"ini\": 1821, \"clust\": 1505, \"rank\": 1353, \"rankvar\": 539, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1005, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2534, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1390, \"group\": [1503.0, 235.0, 46.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14775_BALBc-1_X01_Y02_1163_470\", \"ini\": 1820, \"clust\": 501, \"rank\": 830, \"rankvar\": 820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1006, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1957, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2548, \"group\": [501.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14940_BALBc-1_X01_Y02_1165_431\", \"ini\": 1819, \"clust\": 384, \"rank\": 252, \"rankvar\": 1532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1007, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1643, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2549, \"group\": [385.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14952_BALBc-1_X01_Y02_1165_653\", \"ini\": 1818, \"clust\": 1056, \"rank\": 320, \"rankvar\": 653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1008, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1138, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2229, \"group\": [1058.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15044_BALBc-1_X01_Y02_1166_715\", \"ini\": 1817, \"clust\": 1602, \"rank\": 1132, \"rankvar\": 2211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1009, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1139, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2230, \"group\": [1603.0, 271.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15252_BALBc-1_X01_Y02_1169_690\", \"ini\": 1816, \"clust\": 1124, \"rank\": 575, \"rankvar\": 565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1010, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1140, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2306, \"group\": [1127.0, 127.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15308_BALBc-1_X01_Y02_117_556\", \"ini\": 1815, \"clust\": 1728, \"rank\": 1317, \"rankvar\": 2257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1011, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 95, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1391, \"group\": [1729.0, 308.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15434_BALBc-1_X01_Y02_1171_25\", \"ini\": 1814, \"clust\": 1198, \"rank\": 1756, \"rankvar\": 118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1012, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1958, \"cat-2\": \"Density: 27\", \"cat_2_index\": 936, \"group\": [1199.0, 152.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15469_BALBc-1_X01_Y02_1171_563\", \"ini\": 1813, \"clust\": 586, \"rank\": 379, \"rankvar\": 681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1013, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1745, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2231, \"group\": [589.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15536_BALBc-1_X01_Y02_1172_623\", \"ini\": 1812, \"clust\": 863, \"rank\": 163, \"rankvar\": 976, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1014, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1141, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2067, \"group\": [863.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15847_BALBc-1_X01_Y02_1176_597\", \"ini\": 1811, \"clust\": 2511, \"rank\": 1738, \"rankvar\": 2473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1015, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1746, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1965, \"group\": [2512.0, 434.0, 94.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15894_BALBc-1_X01_Y02_1177_234\", \"ini\": 1810, \"clust\": 1691, \"rank\": 2225, \"rankvar\": 2721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1016, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1142, \"cat-2\": \"Density: 22\", \"cat_2_index\": 283, \"group\": [1690.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15978_BALBc-1_X01_Y02_1178_306\", \"ini\": 1809, \"clust\": 837, \"rank\": 149, \"rankvar\": 78, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1017, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1143, \"cat-2\": \"Density: 21\", \"cat_2_index\": 203, \"group\": [842.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15996_BALBc-1_X01_Y02_1178_501\", \"ini\": 1808, \"clust\": 623, \"rank\": 374, \"rankvar\": 691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1018, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1549, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2435, \"group\": [622.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16362_BALBc-1_X01_Y02_1182_417\", \"ini\": 1807, \"clust\": 2473, \"rank\": 1534, \"rankvar\": 462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1019, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1644, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2307, \"group\": [2474.0, 421.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16367_BALBc-1_X01_Y02_1182_448\", \"ini\": 1806, \"clust\": 1140, \"rank\": 876, \"rankvar\": 1297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1020, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1645, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2436, \"group\": [1145.0, 131.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16640_BALBc-1_X01_Y02_1185_889\", \"ini\": 1805, \"clust\": 1582, \"rank\": 773, \"rankvar\": 2397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1021, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1144, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1858, \"group\": [1583.0, 265.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16730_BALBc-1_X01_Y02_1187_385\", \"ini\": 1804, \"clust\": 2439, \"rank\": 1450, \"rankvar\": 802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1022, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2535, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1764, \"group\": [2439.0, 415.0, 89.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17035_BALBc-1_X01_Y02_1190_493\", \"ini\": 1803, \"clust\": 2467, \"rank\": 1742, \"rankvar\": 1220, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1023, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1959, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2232, \"group\": [2472.0, 420.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17207_BALBc-1_X01_Y02_1192_761\", \"ini\": 1802, \"clust\": 466, \"rank\": 950, \"rankvar\": 1217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1024, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1145, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2370, \"group\": [467.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17322_BALBc-1_X01_Y02_1194_325\", \"ini\": 1801, \"clust\": 1742, \"rank\": 938, \"rankvar\": 1306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1025, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2293, \"cat-2\": \"Density: 24\", \"cat_2_index\": 503, \"group\": [1746.0, 310.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17680_BALBc-1_X01_Y02_1199_122\", \"ini\": 1800, \"clust\": 509, \"rank\": 368, \"rankvar\": 2165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1026, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1146, \"cat-2\": \"Density: 20\", \"cat_2_index\": 154, \"group\": [509.0, 78.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17793_BALBc-1_X01_Y02_12_655\", \"ini\": 1799, \"clust\": 2777, \"rank\": 1999, \"rankvar\": 2020, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1027, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 96, \"cat-2\": \"Density: 14\", \"cat_2_index\": 29, \"group\": [2777.0, 494.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17839_BALBc-1_X01_Y02_120_140\", \"ini\": 1798, \"clust\": 2586, \"rank\": 1831, \"rankvar\": 2415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1028, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1147, \"cat-2\": \"Density: 26\", \"cat_2_index\": 785, \"group\": [2586.0, 457.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17873_BALBc-1_X01_Y02_120_509\", \"ini\": 1797, \"clust\": 2789, \"rank\": 1993, \"rankvar\": 2150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1029, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 97, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1235, \"group\": [2789.0, 497.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17954_BALBc-1_X01_Y02_1200_546\", \"ini\": 1796, \"clust\": 183, \"rank\": 1039, \"rankvar\": 895, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1030, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1550, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1655, \"group\": [186.0, 55.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18320_BALBc-1_X01_Y02_1204_93\", \"ini\": 1795, \"clust\": 2640, \"rank\": 1739, \"rankvar\": 2542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1031, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 98, \"cat-2\": \"Density: 22\", \"cat_2_index\": 284, \"group\": [2639.0, 473.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18357_BALBc-1_X01_Y02_1205_419\", \"ini\": 1794, \"clust\": 295, \"rank\": 514, \"rankvar\": 1822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1032, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1646, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2150, \"group\": [295.0, 73.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18530_BALBc-1_X01_Y02_1207_517\", \"ini\": 1793, \"clust\": 85, \"rank\": 1022, \"rankvar\": 33, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1033, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1148, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1859, \"group\": [85.0, 28.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18940_BALBc-1_X01_Y02_1212_14\", \"ini\": 1792, \"clust\": 2806, \"rank\": 1881, \"rankvar\": 1178, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1034, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1960, \"cat-2\": \"Density: 26\", \"cat_2_index\": 786, \"group\": [2804.0, 500.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19125_BALBc-1_X01_Y02_1214_642\", \"ini\": 1791, \"clust\": 2687, \"rank\": 2468, \"rankvar\": 2403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1035, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1149, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2068, \"group\": [2692.0, 486.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19244_BALBc-1_X01_Y02_1216_259\", \"ini\": 1790, \"clust\": 274, \"rank\": 297, \"rankvar\": 2190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1036, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1150, \"cat-2\": \"Density: 19\", \"cat_2_index\": 119, \"group\": [274.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19318_BALBc-1_X01_Y02_1217_339\", \"ini\": 1789, \"clust\": 930, \"rank\": 632, \"rankvar\": 366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1037, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2294, \"cat-2\": \"Density: 25\", \"cat_2_index\": 649, \"group\": [930.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19577_BALBc-1_X01_Y02_122_855\", \"ini\": 1788, \"clust\": 1833, \"rank\": 2746, \"rankvar\": 1595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1038, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2295, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1236, \"group\": [1833.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19630_BALBc-1_X01_Y02_1220_488\", \"ini\": 1787, \"clust\": 334, \"rank\": 508, \"rankvar\": 1901, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1039, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1151, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2151, \"group\": [335.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19649_BALBc-1_X01_Y02_1220_756\", \"ini\": 1786, \"clust\": 1568, \"rank\": 1813, \"rankvar\": 979, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1040, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1647, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2308, \"group\": [1573.0, 259.0, 54.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19712_BALBc-1_X01_Y02_1221_558\", \"ini\": 1785, \"clust\": 905, \"rank\": 66, \"rankvar\": 1216, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1041, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1152, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1237, \"group\": [905.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19804_BALBc-1_X01_Y02_1222_695\", \"ini\": 1784, \"clust\": 554, \"rank\": 268, \"rankvar\": 1738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1042, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1153, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2371, \"group\": [555.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19893_BALBc-1_X01_Y02_1223_804\", \"ini\": 1783, \"clust\": 910, \"rank\": 127, \"rankvar\": 1052, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1043, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1154, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2233, \"group\": [911.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19976_BALBc-1_X01_Y02_1224_87\", \"ini\": 1782, \"clust\": 1077, \"rank\": 413, \"rankvar\": 1197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1044, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1155, \"cat-2\": \"Density: 24\", \"cat_2_index\": 504, \"group\": [1077.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20108_BALBc-1_X01_Y02_1226_52\", \"ini\": 1781, \"clust\": 243, \"rank\": 1004, \"rankvar\": 203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1045, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1579, \"cat-2\": \"Density: 24\", \"cat_2_index\": 505, \"group\": [251.0, 65.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20419_BALBc-1_X01_Y02_123_829\", \"ini\": 1780, \"clust\": 696, \"rank\": 254, \"rankvar\": 899, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1046, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1156, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1512, \"group\": [695.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20540_BALBc-1_X01_Y02_1231_399\", \"ini\": 1779, \"clust\": 55, \"rank\": 921, \"rankvar\": 1004, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1047, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1157, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1656, \"group\": [54.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20591_BALBc-1_X01_Y02_1231_893\", \"ini\": 1778, \"clust\": 650, \"rank\": 756, \"rankvar\": 735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1048, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1158, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1860, \"group\": [648.0, 105.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21204_BALBc-1_X01_Y02_124_109\", \"ini\": 1777, \"clust\": 1112, \"rank\": 627, \"rankvar\": 2309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1049, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1159, \"cat-2\": \"Density: 27\", \"cat_2_index\": 937, \"group\": [1113.0, 123.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21575_BALBc-1_X01_Y02_1244_166\", \"ini\": 1776, \"clust\": 1674, \"rank\": 2222, \"rankvar\": 2751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1050, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2536, \"cat-2\": \"Density: 22\", \"cat_2_index\": 285, \"group\": [1674.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21957_BALBc-1_X01_Y02_1249_556\", \"ini\": 1775, \"clust\": 1558, \"rank\": 2173, \"rankvar\": 2778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1051, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1160, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1088, \"group\": [1559.0, 254.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21977_BALBc-1_X01_Y02_1249_787\", \"ini\": 1774, \"clust\": 614, \"rank\": 313, \"rankvar\": 843, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1052, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1161, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2152, \"group\": [614.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22035_BALBc-1_X01_Y02_125_534\", \"ini\": 1773, \"clust\": 1483, \"rank\": 1837, \"rankvar\": 1060, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1053, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 99, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1392, \"group\": [1482.0, 225.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22253_BALBc-1_X01_Y02_1252_344\", \"ini\": 1772, \"clust\": 187, \"rank\": 1471, \"rankvar\": 474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1054, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2296, \"cat-2\": \"Density: 23\", \"cat_2_index\": 397, \"group\": [187.0, 56.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22740_BALBc-1_X01_Y02_1259_25\", \"ini\": 1771, \"clust\": 2668, \"rank\": 1872, \"rankvar\": 183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1055, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1961, \"cat-2\": \"Density: 26\", \"cat_2_index\": 787, \"group\": [2669.0, 481.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22891_BALBc-1_X01_Y02_1260_403\", \"ini\": 1770, \"clust\": 446, \"rank\": 626, \"rankvar\": 727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1056, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1162, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1513, \"group\": [444.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23039_BALBc-1_X01_Y02_1262_452\", \"ini\": 1769, \"clust\": 393, \"rank\": 222, \"rankvar\": 696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1057, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1163, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1238, \"group\": [393.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23057_BALBc-1_X01_Y02_1262_678\", \"ini\": 1768, \"clust\": 580, \"rank\": 465, \"rankvar\": 601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1058, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1164, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2069, \"group\": [580.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23972_BALBc-1_X01_Y02_1274_408\", \"ini\": 1767, \"clust\": 790, \"rank\": 88, \"rankvar\": 364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1059, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 100, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1393, \"group\": [790.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23974_BALBc-1_X01_Y02_1274_423\", \"ini\": 1766, \"clust\": 519, \"rank\": 1048, \"rankvar\": 580, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1060, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1165, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1514, \"group\": [520.0, 84.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24160_BALBc-1_X01_Y02_1277_153\", \"ini\": 1765, \"clust\": 1734, \"rank\": 1021, \"rankvar\": 1407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1061, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2537, \"cat-2\": \"Density: 21\", \"cat_2_index\": 204, \"group\": [1735.0, 309.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24404_BALBc-1_X01_Y02_128_478\", \"ini\": 1764, \"clust\": 318, \"rank\": 634, \"rankvar\": 2049, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1062, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2450, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1089, \"group\": [319.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24468_BALBc-1_X01_Y02_1280_260\", \"ini\": 1763, \"clust\": 1427, \"rank\": 1286, \"rankvar\": 1047, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1063, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2297, \"cat-2\": \"Density: 16\", \"cat_2_index\": 58, \"group\": [1430.0, 207.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24628_BALBc-1_X01_Y02_1282_802\", \"ini\": 1762, \"clust\": 1608, \"rank\": 1623, \"rankvar\": 2626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1064, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1166, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1861, \"group\": [1606.0, 271.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25243_BALBc-1_X01_Y02_1290_386\", \"ini\": 1761, \"clust\": 174, \"rank\": 1185, \"rankvar\": 552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1065, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1167, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1239, \"group\": [174.0, 54.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25273_BALBc-1_X01_Y02_1290_702\", \"ini\": 1760, \"clust\": 2180, \"rank\": 2643, \"rankvar\": 2807, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1066, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2298, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1966, \"group\": [2183.0, 368.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25852_BALBc-1_X01_Y02_1298_50\", \"ini\": 1759, \"clust\": 856, \"rank\": 488, \"rankvar\": 60, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1067, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1580, \"cat-2\": \"Density: 24\", \"cat_2_index\": 506, \"group\": [859.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25924_BALBc-1_X01_Y02_1299_448\", \"ini\": 1758, \"clust\": 1051, \"rank\": 167, \"rankvar\": 615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1068, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1648, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1394, \"group\": [1051.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26183_BALBc-1_X01_Y02_1300_80\", \"ini\": 1757, \"clust\": 1164, \"rank\": 1772, \"rankvar\": 876, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1069, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2538, \"cat-2\": \"Density: 23\", \"cat_2_index\": 398, \"group\": [1165.0, 138.0, 26.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26216_BALBc-1_X01_Y02_1301_40\", \"ini\": 1756, \"clust\": 1247, \"rank\": 833, \"rankvar\": 1112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1070, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1962, \"cat-2\": \"Density: 25\", \"cat_2_index\": 650, \"group\": [1247.0, 170.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26286_BALBc-1_X01_Y02_1302_362\", \"ini\": 1755, \"clust\": 1632, \"rank\": 1079, \"rankvar\": 2111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1071, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1168, \"cat-2\": \"Density: 25\", \"cat_2_index\": 651, \"group\": [1631.0, 285.0, 63.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26422_BALBc-1_X01_Y02_1304_482\", \"ini\": 1754, \"clust\": 468, \"rank\": 805, \"rankvar\": 1559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1072, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1169, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1090, \"group\": [469.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26472_BALBc-1_X01_Y02_1305_154\", \"ini\": 1753, \"clust\": 1059, \"rank\": 91, \"rankvar\": 1724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1073, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2539, \"cat-2\": \"Density: 17\", \"cat_2_index\": 76, \"group\": [1056.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26543_BALBc-1_X01_Y02_1306_303\", \"ini\": 1752, \"clust\": 1694, \"rank\": 2334, \"rankvar\": 2701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1074, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1170, \"cat-2\": \"Density: 22\", \"cat_2_index\": 286, \"group\": [1694.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26628_BALBc-1_X01_Y02_1307_628\", \"ini\": 1751, \"clust\": 545, \"rank\": 323, \"rankvar\": 1896, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1075, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1171, \"cat-2\": \"Density: 26\", \"cat_2_index\": 788, \"group\": [546.0, 95.0, 21.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26791_BALBc-1_X01_Y02_1309_847\", \"ini\": 1750, \"clust\": 899, \"rank\": 340, \"rankvar\": 246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1076, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1172, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1967, \"group\": [901.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26808_BALBc-1_X01_Y02_131_13\", \"ini\": 1749, \"clust\": 1563, \"rank\": 1541, \"rankvar\": 266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1077, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1173, \"cat-2\": \"Density: 25\", \"cat_2_index\": 652, \"group\": [1564.0, 256.0, 53.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26858_BALBc-1_X01_Y02_131_710\", \"ini\": 1748, \"clust\": 1682, \"rank\": 2542, \"rankvar\": 2799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1078, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1174, \"cat-2\": \"Density: 25\", \"cat_2_index\": 653, \"group\": [1685.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26907_BALBc-1_X01_Y02_1310_424\", \"ini\": 1747, \"clust\": 1144, \"rank\": 493, \"rankvar\": 1188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1079, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 831, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1657, \"group\": [1144.0, 131.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27339_BALBc-1_X01_Y02_1316_272\", \"ini\": 1746, \"clust\": 1692, \"rank\": 2224, \"rankvar\": 2763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1080, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2540, \"cat-2\": \"Density: 16\", \"cat_2_index\": 59, \"group\": [1691.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27376_BALBc-1_X01_Y02_1316_760\", \"ini\": 1745, \"clust\": 1596, \"rank\": 1423, \"rankvar\": 1155, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1081, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1175, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1862, \"group\": [1595.0, 268.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27712_BALBc-1_X01_Y02_1320_379\", \"ini\": 1744, \"clust\": 1593, \"rank\": 994, \"rankvar\": 408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1082, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1649, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1395, \"group\": [1591.0, 267.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27787_BALBc-1_X01_Y02_1321_46\", \"ini\": 1743, \"clust\": 1815, \"rank\": 2581, \"rankvar\": 1563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1083, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2451, \"cat-2\": \"Density: 25\", \"cat_2_index\": 654, \"group\": [1819.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28104_BALBc-1_X01_Y02_1325_686\", \"ini\": 1742, \"clust\": 2191, \"rank\": 1898, \"rankvar\": 1084, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1084, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1176, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1515, \"group\": [2191.0, 369.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28119_BALBc-1_X01_Y02_1325_869\", \"ini\": 1741, \"clust\": 1021, \"rank\": 23, \"rankvar\": 227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1085, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1177, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1516, \"group\": [1023.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28171_BALBc-1_X01_Y02_1326_556\", \"ini\": 1740, \"clust\": 1054, \"rank\": 433, \"rankvar\": 1545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1086, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1178, \"cat-2\": \"Density: 21\", \"cat_2_index\": 205, \"group\": [1060.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28403_BALBc-1_X01_Y02_1329_340\", \"ini\": 1739, \"clust\": 1679, \"rank\": 2177, \"rankvar\": 2765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1087, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2541, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1091, \"group\": [1680.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28439_BALBc-1_X01_Y02_1329_667\", \"ini\": 1738, \"clust\": 543, \"rank\": 516, \"rankvar\": 2040, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1088, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1179, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1517, \"group\": [544.0, 94.0, 21.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28793_BALBc-1_X01_Y02_1333_435\", \"ini\": 1737, \"clust\": 2491, \"rank\": 1418, \"rankvar\": 467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1089, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 832, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1863, \"group\": [2491.0, 426.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28907_BALBc-1_X01_Y02_1334_958\", \"ini\": 1736, \"clust\": 294, \"rank\": 469, \"rankvar\": 1798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1090, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1180, \"cat-2\": \"Density: 24\", \"cat_2_index\": 507, \"group\": [297.0, 73.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29029_BALBc-1_X01_Y02_1337_148\", \"ini\": 1735, \"clust\": 1138, \"rank\": 1277, \"rankvar\": 50, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1091, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2542, \"cat-2\": \"Density: 17\", \"cat_2_index\": 77, \"group\": [1138.0, 129.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29253_BALBc-1_X01_Y02_1340_880\", \"ini\": 1734, \"clust\": 1587, \"rank\": 847, \"rankvar\": 1068, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1092, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1181, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1864, \"group\": [1588.0, 267.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29328_BALBc-1_X01_Y02_135_526\", \"ini\": 1733, \"clust\": 640, \"rank\": 839, \"rankvar\": 750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1093, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 101, \"cat-2\": \"Density: 26\", \"cat_2_index\": 789, \"group\": [640.0, 105.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29539_BALBc-1_X01_Y02_138_561\", \"ini\": 1732, \"clust\": 1227, \"rank\": 1573, \"rankvar\": 2001, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1094, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 102, \"cat-2\": \"Density: 27\", \"cat_2_index\": 938, \"group\": [1229.0, 164.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29570_BALBc-1_X01_Y02_138_885\", \"ini\": 1731, \"clust\": 1395, \"rank\": 1341, \"rankvar\": 1168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1095, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2299, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1240, \"group\": [1395.0, 196.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29751_BALBc-1_X01_Y02_140_575\", \"ini\": 1730, \"clust\": 1788, \"rank\": 2712, \"rankvar\": 2602, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1096, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1182, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1092, \"group\": [1790.0, 320.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29777_BALBc-1_X01_Y02_140_975\", \"ini\": 1729, \"clust\": 3, \"rank\": 1633, \"rankvar\": 599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1097, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2300, \"cat-2\": \"Density: 18\", \"cat_2_index\": 95, \"group\": [7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29799_BALBc-1_X01_Y02_141_323\", \"ini\": 1728, \"clust\": 539, \"rank\": 1072, \"rankvar\": 120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1098, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 697, \"cat-2\": \"Density: 27\", \"cat_2_index\": 939, \"group\": [542.0, 93.0, 20.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29956_BALBc-1_X01_Y02_143_444\", \"ini\": 1727, \"clust\": 2366, \"rank\": 1540, \"rankvar\": 568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1099, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2452, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1518, \"group\": [2366.0, 391.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30085_BALBc-1_X01_Y02_145_273\", \"ini\": 1726, \"clust\": 234, \"rank\": 1212, \"rankvar\": 554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1100, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2239, \"cat-2\": \"Density: 25\", \"cat_2_index\": 655, \"group\": [237.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30088_BALBc-1_X01_Y02_145_290\", \"ini\": 1725, \"clust\": 902, \"rank\": 295, \"rankvar\": 396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1101, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2453, \"cat-2\": \"Density: 24\", \"cat_2_index\": 508, \"group\": [903.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30181_BALBc-1_X01_Y02_146_484\", \"ini\": 1724, \"clust\": 2790, \"rank\": 2261, \"rankvar\": 2230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1102, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1963, \"cat-2\": \"Density: 26\", \"cat_2_index\": 790, \"group\": [2790.0, 497.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30212_BALBc-1_X01_Y02_146_853\", \"ini\": 1723, \"clust\": 849, \"rank\": 77, \"rankvar\": 317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1103, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 103, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1658, \"group\": [852.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30226_BALBc-1_X01_Y02_147_121\", \"ini\": 1722, \"clust\": 1384, \"rank\": 1020, \"rankvar\": 1248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1104, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1183, \"cat-2\": \"Density: 22\", \"cat_2_index\": 287, \"group\": [1385.0, 193.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30323_BALBc-1_X01_Y02_148_511\", \"ini\": 1721, \"clust\": 2616, \"rank\": 1989, \"rankvar\": 2176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1105, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 104, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1241, \"group\": [2617.0, 463.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30392_BALBc-1_X01_Y02_149_423\", \"ini\": 1720, \"clust\": 69, \"rank\": 1279, \"rankvar\": 2160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1106, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1650, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1396, \"group\": [72.0, 25.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30672_BALBc-1_X01_Y02_152_19\", \"ini\": 1719, \"clust\": 102, \"rank\": 1206, \"rankvar\": 856, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1107, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1184, \"cat-2\": \"Density: 27\", \"cat_2_index\": 940, \"group\": [102.0, 33.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31029_BALBc-1_X01_Y02_156_815\", \"ini\": 1718, \"clust\": 2426, \"rank\": 1743, \"rankvar\": 2228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1108, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2301, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1519, \"group\": [2426.0, 406.0, 86.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31048_BALBc-1_X01_Y02_156_993\", \"ini\": 1717, \"clust\": 429, \"rank\": 605, \"rankvar\": 1182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1109, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2543, \"cat-2\": \"Density: 13\", \"cat_2_index\": 17, \"group\": [430.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31155_BALBc-1_X01_Y02_158_405\", \"ini\": 1716, \"clust\": 1626, \"rank\": 2338, \"rankvar\": 2682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1110, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 698, \"cat-2\": \"Density: 27\", \"cat_2_index\": 941, \"group\": [1625.0, 279.0, 61.0, 15.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31283_BALBc-1_X01_Y02_16_366\", \"ini\": 1715, \"clust\": 2546, \"rank\": 1873, \"rankvar\": 2128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1111, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1185, \"cat-2\": \"Density: 13\", \"cat_2_index\": 18, \"group\": [2547.0, 447.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31361_BALBc-1_X01_Y02_160_197\", \"ini\": 1714, \"clust\": 281, \"rank\": 804, \"rankvar\": 2180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1112, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1186, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1093, \"group\": [286.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31477_BALBc-1_X01_Y02_161_787\", \"ini\": 1713, \"clust\": 209, \"rank\": 1284, \"rankvar\": 656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1113, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1187, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1242, \"group\": [210.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31533_BALBc-1_X01_Y02_162_623\", \"ini\": 1712, \"clust\": 2174, \"rank\": 2442, \"rankvar\": 2259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1114, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1188, \"cat-2\": \"Density: 24\", \"cat_2_index\": 509, \"group\": [2175.0, 365.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31548_BALBc-1_X01_Y02_162_836\", \"ini\": 1711, \"clust\": 2604, \"rank\": 1809, \"rankvar\": 1481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1115, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 105, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1520, \"group\": [2602.0, 460.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31566_BALBc-1_X01_Y02_163_150\", \"ini\": 1710, \"clust\": 382, \"rank\": 587, \"rankvar\": 1172, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1116, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1189, \"cat-2\": \"Density: 27\", \"cat_2_index\": 942, \"group\": [383.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31622_BALBc-1_X01_Y02_163_893\", \"ini\": 1709, \"clust\": 2515, \"rank\": 1711, \"rankvar\": 665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1117, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2302, \"cat-2\": \"Density: 27\", \"cat_2_index\": 943, \"group\": [2516.0, 437.0, 95.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31687_BALBc-1_X01_Y02_164_924\", \"ini\": 1708, \"clust\": 523, \"rank\": 1083, \"rankvar\": 1031, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1118, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2303, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1243, \"group\": [528.0, 87.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31771_BALBc-1_X01_Y02_166_248\", \"ini\": 1707, \"clust\": 326, \"rank\": 363, \"rankvar\": 1937, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1119, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1190, \"cat-2\": \"Density: 26\", \"cat_2_index\": 791, \"group\": [327.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31778_BALBc-1_X01_Y02_166_382\", \"ini\": 1706, \"clust\": 903, \"rank\": 132, \"rankvar\": 944, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1120, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 699, \"cat-2\": \"Density: 24\", \"cat_2_index\": 510, \"group\": [904.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31826_BALBc-1_X01_Y02_166_996\", \"ini\": 1705, \"clust\": 2195, \"rank\": 1866, \"rankvar\": 390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1121, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 106, \"cat-2\": \"Density: 14\", \"cat_2_index\": 30, \"group\": [2199.0, 372.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31882_BALBc-1_X01_Y02_167_871\", \"ini\": 1704, \"clust\": 430, \"rank\": 551, \"rankvar\": 1336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1122, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 107, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1521, \"group\": [431.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32028_BALBc-1_X01_Y02_169_976\", \"ini\": 1703, \"clust\": 630, \"rank\": 911, \"rankvar\": 122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1123, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2304, \"cat-2\": \"Density: 21\", \"cat_2_index\": 206, \"group\": [629.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32605_BALBc-1_X01_Y02_177_12\", \"ini\": 1702, \"clust\": 2732, \"rank\": 2655, \"rankvar\": 2506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1124, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1191, \"cat-2\": \"Density: 26\", \"cat_2_index\": 792, \"group\": [2731.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32781_BALBc-1_X01_Y02_179_504\", \"ini\": 1701, \"clust\": 2791, \"rank\": 2685, \"rankvar\": 2789, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1125, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1964, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1397, \"group\": [2791.0, 497.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32994_BALBc-1_X01_Y02_181_536\", \"ini\": 1700, \"clust\": 1789, \"rank\": 2591, \"rankvar\": 2352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1126, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 108, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1659, \"group\": [1788.0, 320.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33083_BALBc-1_X01_Y02_182_591\", \"ini\": 1699, \"clust\": 1700, \"rank\": 2359, \"rankvar\": 2800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1127, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2240, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1244, \"group\": [1697.0, 303.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33098_BALBc-1_X01_Y02_182_806\", \"ini\": 1698, \"clust\": 2612, \"rank\": 1457, \"rankvar\": 2447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1128, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1192, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1865, \"group\": [2613.0, 462.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33178_BALBc-1_X01_Y02_183_939\", \"ini\": 1697, \"clust\": 2620, \"rank\": 1635, \"rankvar\": 1221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1129, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 109, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1094, \"group\": [2621.0, 464.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33258_BALBc-1_X01_Y02_184_896\", \"ini\": 1696, \"clust\": 2461, \"rank\": 1789, \"rankvar\": 1551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1130, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 110, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1866, \"group\": [2462.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33265_BALBc-1_X01_Y02_184_97\", \"ini\": 1695, \"clust\": 216, \"rank\": 1237, \"rankvar\": 623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1131, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1651, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1245, \"group\": [215.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33280_BALBc-1_X01_Y02_185_324\", \"ini\": 1694, \"clust\": 2641, \"rank\": 1750, \"rankvar\": 2668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1132, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1193, \"cat-2\": \"Density: 26\", \"cat_2_index\": 793, \"group\": [2640.0, 473.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33754_BALBc-1_X01_Y02_190_870\", \"ini\": 1693, \"clust\": 2121, \"rank\": 2541, \"rankvar\": 1766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1133, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 111, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2070, \"group\": [2129.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33990_BALBc-1_X01_Y02_193_959\", \"ini\": 1692, \"clust\": 240, \"rank\": 1232, \"rankvar\": 1153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1134, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 112, \"cat-2\": \"Density: 27\", \"cat_2_index\": 944, \"group\": [240.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34020_BALBc-1_X01_Y02_194_351\", \"ini\": 1691, \"clust\": 1200, \"rank\": 1626, \"rankvar\": 222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1135, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 700, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1095, \"group\": [1201.0, 153.0, 31.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34038_BALBc-1_X01_Y02_194_572\", \"ini\": 1690, \"clust\": 1755, \"rank\": 2404, \"rankvar\": 1947, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1136, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2544, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1522, \"group\": [1753.0, 312.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34165_BALBc-1_X01_Y02_196_520\", \"ini\": 1689, \"clust\": 1951, \"rank\": 2326, \"rankvar\": 2218, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1137, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 895, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1867, \"group\": [1955.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34589_BALBc-1_X01_Y02_201_481\", \"ini\": 1688, \"clust\": 21, \"rank\": 1189, \"rankvar\": 1557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1138, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1965, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1246, \"group\": [23.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34649_BALBc-1_X01_Y02_202_257\", \"ini\": 1687, \"clust\": 555, \"rank\": 334, \"rankvar\": 1122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1139, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1966, \"cat-2\": \"Density: 27\", \"cat_2_index\": 945, \"group\": [556.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34718_BALBc-1_X01_Y02_203_164\", \"ini\": 1686, \"clust\": 88, \"rank\": 1532, \"rankvar\": 2058, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1140, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1194, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1096, \"group\": [90.0, 29.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34915_BALBc-1_X01_Y02_205_7\", \"ini\": 1685, \"clust\": 761, \"rank\": 692, \"rankvar\": 187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1141, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1195, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1097, \"group\": [761.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35085_BALBc-1_X01_Y02_207_892\", \"ini\": 1684, \"clust\": 830, \"rank\": 96, \"rankvar\": 253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1142, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 113, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1765, \"group\": [833.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35133_BALBc-1_X01_Y02_208_606\", \"ini\": 1683, \"clust\": 498, \"rank\": 585, \"rankvar\": 1440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1143, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2241, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1098, \"group\": [498.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35140_BALBc-1_X01_Y02_208_76\", \"ini\": 1682, \"clust\": 581, \"rank\": 442, \"rankvar\": 1091, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1144, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1652, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1247, \"group\": [581.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35161_BALBc-1_X01_Y02_208_997\", \"ini\": 1681, \"clust\": 2146, \"rank\": 2147, \"rankvar\": 304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1145, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 114, \"cat-2\": \"Density: 20\", \"cat_2_index\": 155, \"group\": [2147.0, 360.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35307_BALBc-1_X01_Y02_21_950\", \"ini\": 1680, \"clust\": 1142, \"rank\": 120, \"rankvar\": 1749, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1146, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1196, \"cat-2\": \"Density: 11\", \"cat_2_index\": 6, \"group\": [1142.0, 131.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35371_BALBc-1_X01_Y02_210_919\", \"ini\": 1679, \"clust\": 2054, \"rank\": 2001, \"rankvar\": 1142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1147, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 115, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1968, \"group\": [2054.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35707_BALBc-1_X01_Y02_215_359\", \"ini\": 1678, \"clust\": 26, \"rank\": 333, \"rankvar\": 1885, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1148, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 701, \"cat-2\": \"Density: 25\", \"cat_2_index\": 656, \"group\": [26.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35849_BALBc-1_X01_Y02_217_422\", \"ini\": 1677, \"clust\": 603, \"rank\": 173, \"rankvar\": 1214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1149, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 702, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1099, \"group\": [604.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35964_BALBc-1_X01_Y02_218_953\", \"ini\": 1676, \"clust\": 823, \"rank\": 148, \"rankvar\": 355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1150, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 116, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1868, \"group\": [824.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36019_BALBc-1_X01_Y02_219_856\", \"ini\": 1675, \"clust\": 625, \"rank\": 408, \"rankvar\": 2100, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1151, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2305, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2437, \"group\": [626.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36350_BALBc-1_X01_Y02_223_52\", \"ini\": 1674, \"clust\": 541, \"rank\": 1047, \"rankvar\": 1161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1152, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1197, \"cat-2\": \"Density: 26\", \"cat_2_index\": 794, \"group\": [541.0, 92.0, 20.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36560_BALBc-1_X01_Y02_226_384\", \"ini\": 1673, \"clust\": 1304, \"rank\": 1259, \"rankvar\": 2360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1153, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 703, \"cat-2\": \"Density: 26\", \"cat_2_index\": 795, \"group\": [1310.0, 180.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36605_BALBc-1_X01_Y02_226_872\", \"ini\": 1672, \"clust\": 2003, \"rank\": 2201, \"rankvar\": 1902, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1154, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2306, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2234, \"group\": [2007.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37140_BALBc-1_X01_Y02_233_273\", \"ini\": 1671, \"clust\": 104, \"rank\": 672, \"rankvar\": 2631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1155, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1198, \"cat-2\": \"Density: 26\", \"cat_2_index\": 796, \"group\": [104.0, 33.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37170_BALBc-1_X01_Y02_233_605\", \"ini\": 1670, \"clust\": 2064, \"rank\": 2682, \"rankvar\": 2271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1156, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1199, \"cat-2\": \"Density: 27\", \"cat_2_index\": 946, \"group\": [2064.0, 356.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37201_BALBc-1_X01_Y02_234_185\", \"ini\": 1669, \"clust\": 1414, \"rank\": 767, \"rankvar\": 2242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1157, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1200, \"cat-2\": \"Density: 24\", \"cat_2_index\": 511, \"group\": [1415.0, 204.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37456_BALBc-1_X01_Y02_237_70\", \"ini\": 1668, \"clust\": 1153, \"rank\": 892, \"rankvar\": 1528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1158, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 117, \"cat-2\": \"Density: 25\", \"cat_2_index\": 657, \"group\": [1156.0, 135.0, 25.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37475_BALBc-1_X01_Y02_237_937\", \"ini\": 1667, \"clust\": 229, \"rank\": 1059, \"rankvar\": 776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1159, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 118, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2153, \"group\": [227.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37621_BALBc-1_X01_Y02_239_971\", \"ini\": 1666, \"clust\": 241, \"rank\": 1134, \"rankvar\": 1124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1160, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 119, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1523, \"group\": [238.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37749_BALBc-1_X01_Y02_240_84\", \"ini\": 1665, \"clust\": 2493, \"rank\": 1991, \"rankvar\": 1786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1161, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1653, \"cat-2\": \"Density: 23\", \"cat_2_index\": 399, \"group\": [2494.0, 427.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37862_BALBc-1_X01_Y02_242_444\", \"ini\": 1664, \"clust\": 1771, \"rank\": 2504, \"rankvar\": 2414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1162, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1654, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1660, \"group\": [1772.0, 315.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37892_BALBc-1_X01_Y02_242_898\", \"ini\": 1663, \"clust\": 2058, \"rank\": 1883, \"rankvar\": 196, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1163, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 120, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1969, \"group\": [2062.0, 355.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37950_BALBc-1_X01_Y02_243_786\", \"ini\": 1662, \"clust\": 2048, \"rank\": 2203, \"rankvar\": 2245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1164, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 833, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2071, \"group\": [2047.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38019_BALBc-1_X01_Y02_244_504\", \"ini\": 1661, \"clust\": 1448, \"rank\": 2526, \"rankvar\": 2622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1165, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 896, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1398, \"group\": [1453.0, 215.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38163_BALBc-1_X01_Y02_246_349\", \"ini\": 1660, \"clust\": 1255, \"rank\": 1399, \"rankvar\": 1653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1166, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1201, \"cat-2\": \"Density: 23\", \"cat_2_index\": 400, \"group\": [1258.0, 172.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38833_BALBc-1_X01_Y02_254_406\", \"ini\": 1659, \"clust\": 1931, \"rank\": 2608, \"rankvar\": 2279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1167, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 121, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1766, \"group\": [1934.0, 344.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38864_BALBc-1_X01_Y02_254_818\", \"ini\": 1658, \"clust\": 2188, \"rank\": 2590, \"rankvar\": 679, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1168, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1202, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1970, \"group\": [2189.0, 368.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38921_BALBc-1_X01_Y02_255_579\", \"ini\": 1657, \"clust\": 726, \"rank\": 123, \"rankvar\": 637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1169, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2545, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1399, \"group\": [728.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39097_BALBc-1_X01_Y02_257_981\", \"ini\": 1656, \"clust\": 2404, \"rank\": 1714, \"rankvar\": 357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1170, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 122, \"cat-2\": \"Density: 27\", \"cat_2_index\": 947, \"group\": [2405.0, 396.0, 83.0, 22.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39159_BALBc-1_X01_Y02_258_932\", \"ini\": 1655, \"clust\": 2144, \"rank\": 2582, \"rankvar\": 1762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1171, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 123, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2309, \"group\": [2143.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39206_BALBc-1_X01_Y02_259_497\", \"ini\": 1654, \"clust\": 1917, \"rank\": 1650, \"rankvar\": 2420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1172, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 897, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1971, \"group\": [1917.0, 339.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39295_BALBc-1_X01_Y02_26_739\", \"ini\": 1653, \"clust\": 2635, \"rank\": 2628, \"rankvar\": 2710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1173, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1747, \"cat-2\": \"Density: 17\", \"cat_2_index\": 78, \"group\": [2636.0, 471.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39359_BALBc-1_X01_Y02_260_604\", \"ini\": 1652, \"clust\": 2082, \"rank\": 2440, \"rankvar\": 1614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1174, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1203, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1400, \"group\": [2087.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39370_BALBc-1_X01_Y02_260_753\", \"ini\": 1651, \"clust\": 1631, \"rank\": 1728, \"rankvar\": 2132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1175, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 834, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1972, \"group\": [1633.0, 286.0, 63.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39467_BALBc-1_X01_Y02_261_915\", \"ini\": 1650, \"clust\": 754, \"rank\": 457, \"rankvar\": 52, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1176, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 124, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2310, \"group\": [754.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39512_BALBc-1_X01_Y02_262_462\", \"ini\": 1649, \"clust\": 2792, \"rank\": 2407, \"rankvar\": 1821, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1177, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1967, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1869, \"group\": [2792.0, 497.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39541_BALBc-1_X01_Y02_262_944\", \"ini\": 1648, \"clust\": 253, \"rank\": 1342, \"rankvar\": 690, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1178, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 125, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2154, \"group\": [256.0, 67.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39556_BALBc-1_X01_Y02_263_219\", \"ini\": 1647, \"clust\": 1611, \"rank\": 1041, \"rankvar\": 2801, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1179, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1204, \"cat-2\": \"Density: 24\", \"cat_2_index\": 512, \"group\": [1609.0, 271.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39656_BALBc-1_X01_Y02_264_54\", \"ini\": 1646, \"clust\": 2684, \"rank\": 2148, \"rankvar\": 1923, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1180, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2307, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1248, \"group\": [2687.0, 484.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39742_BALBc-1_X01_Y02_265_717\", \"ini\": 1645, \"clust\": 2160, \"rank\": 2673, \"rankvar\": 2221, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1181, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 835, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1524, \"group\": [2163.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39744_BALBc-1_X01_Y02_265_773\", \"ini\": 1644, \"clust\": 491, \"rank\": 775, \"rankvar\": 796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1182, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 836, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2072, \"group\": [493.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39786_BALBc-1_X01_Y02_266_282\", \"ini\": 1643, \"clust\": 2629, \"rank\": 1816, \"rankvar\": 1608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1205, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1100, \"group\": [2631.0, 468.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39838_BALBc-1_X01_Y02_266_848\", \"ini\": 1642, \"clust\": 565, \"rank\": 782, \"rankvar\": 342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1184, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2308, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2311, \"group\": [566.0, 98.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39873_BALBc-1_X01_Y02_267_383\", \"ini\": 1641, \"clust\": 976, \"rank\": 263, \"rankvar\": 533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1185, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 898, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1101, \"group\": [974.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39968_BALBc-1_X01_Y02_268_561\", \"ini\": 1640, \"clust\": 1813, \"rank\": 2631, \"rankvar\": 2757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1186, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2546, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1870, \"group\": [1813.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40006_BALBc-1_X01_Y02_268_984\", \"ini\": 1639, \"clust\": 2045, \"rank\": 2274, \"rankvar\": 2095, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1187, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 126, \"cat-2\": \"Density: 27\", \"cat_2_index\": 948, \"group\": [2045.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40052_BALBc-1_X01_Y02_269_644\", \"ini\": 1638, \"clust\": 2207, \"rank\": 2576, \"rankvar\": 1508, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1188, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1206, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1525, \"group\": [2211.0, 378.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40139_BALBc-1_X01_Y02_27_826\", \"ini\": 1637, \"clust\": 1036, \"rank\": 264, \"rankvar\": 440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1189, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1748, \"cat-2\": \"Density: 20\", \"cat_2_index\": 156, \"group\": [1037.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40204_BALBc-1_X01_Y02_270_792\", \"ini\": 1636, \"clust\": 2310, \"rank\": 2753, \"rankvar\": 2002, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1190, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 899, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2073, \"group\": [2316.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40333_BALBc-1_X01_Y02_272_580\", \"ini\": 1635, \"clust\": 2450, \"rank\": 1691, \"rankvar\": 1231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1191, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 127, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1249, \"group\": [2450.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40421_BALBc-1_X01_Y02_273_871\", \"ini\": 1634, \"clust\": 190, \"rank\": 977, \"rankvar\": 1296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1192, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 128, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2438, \"group\": [192.0, 58.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40533_BALBc-1_X01_Y02_275_478\", \"ini\": 1633, \"clust\": 1719, \"rank\": 2270, \"rankvar\": 2599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1193, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 129, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1661, \"group\": [1717.0, 305.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40559_BALBc-1_X01_Y02_275_815\", \"ini\": 1632, \"clust\": 416, \"rank\": 212, \"rankvar\": 1791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1194, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 130, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2074, \"group\": [415.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40761_BALBc-1_X01_Y02_278_453\", \"ini\": 1631, \"clust\": 1802, \"rank\": 2692, \"rankvar\": 2759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1195, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 131, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1526, \"group\": [1807.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41007_BALBc-1_X01_Y02_280_883\", \"ini\": 1630, \"clust\": 2318, \"rank\": 2423, \"rankvar\": 1941, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1196, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 132, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2439, \"group\": [2319.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41013_BALBc-1_X01_Y02_280_967\", \"ini\": 1629, \"clust\": 841, \"rank\": 25, \"rankvar\": 174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1197, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 133, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1527, \"group\": [840.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41049_BALBc-1_X01_Y02_281_533\", \"ini\": 1628, \"clust\": 1729, \"rank\": 1796, \"rankvar\": 2583, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1198, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 900, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1973, \"group\": [1730.0, 308.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41198_BALBc-1_X01_Y02_283_337\", \"ini\": 1627, \"clust\": 1269, \"rank\": 1153, \"rankvar\": 536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1199, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1207, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1102, \"group\": [1269.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41290_BALBc-1_X01_Y02_284_545\", \"ini\": 1626, \"clust\": 1996, \"rank\": 1926, \"rankvar\": 506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1200, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 134, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1974, \"group\": [1996.0, 351.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41467_BALBc-1_X01_Y02_286_916\", \"ini\": 1625, \"clust\": 2002, \"rank\": 2185, \"rankvar\": 1454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1201, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 135, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2372, \"group\": [2002.0, 353.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41763_BALBc-1_X01_Y02_29_936\", \"ini\": 1624, \"clust\": 2642, \"rank\": 2476, \"rankvar\": 2449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1202, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1749, \"cat-2\": \"Density: 12\", \"cat_2_index\": 7, \"group\": [2652.0, 477.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41809_BALBc-1_X01_Y02_290_713\", \"ini\": 1623, \"clust\": 207, \"rank\": 1055, \"rankvar\": 1972, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1203, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 837, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1975, \"group\": [208.0, 61.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41901_BALBc-1_X01_Y02_291_852\", \"ini\": 1622, \"clust\": 1989, \"rank\": 1870, \"rankvar\": 1170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1204, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 136, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2155, \"group\": [1990.0, 351.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41931_BALBc-1_X01_Y02_292_367\", \"ini\": 1621, \"clust\": 1309, \"rank\": 1308, \"rankvar\": 522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1205, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 901, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1401, \"group\": [1306.0, 180.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41979_BALBc-1_X01_Y02_292_991\", \"ini\": 1620, \"clust\": 2052, \"rank\": 2006, \"rankvar\": 1596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1206, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 137, \"cat-2\": \"Density: 25\", \"cat_2_index\": 658, \"group\": [2050.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42051_BALBc-1_X01_Y02_293_825\", \"ini\": 1619, \"clust\": 2044, \"rank\": 2369, \"rankvar\": 1909, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1207, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 138, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2312, \"group\": [2044.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42197_BALBc-1_X01_Y02_296_1001\", \"ini\": 1618, \"clust\": 646, \"rank\": 370, \"rankvar\": 838, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1208, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 139, \"cat-2\": \"Density: 24\", \"cat_2_index\": 513, \"group\": [646.0, 105.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42211_BALBc-1_X01_Y02_296_251\", \"ini\": 1617, \"clust\": 686, \"rank\": 146, \"rankvar\": 2151, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1209, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1208, \"cat-2\": \"Density: 26\", \"cat_2_index\": 797, \"group\": [686.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42305_BALBc-1_X01_Y02_297_639\", \"ini\": 1616, \"clust\": 1221, \"rank\": 1585, \"rankvar\": 2118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1210, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1209, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2075, \"group\": [1222.0, 163.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42319_BALBc-1_X01_Y02_297_804\", \"ini\": 1615, \"clust\": 1039, \"rank\": 277, \"rankvar\": 378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1211, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 902, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2373, \"group\": [1043.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42398_BALBc-1_X01_Y02_298_87\", \"ini\": 1614, \"clust\": 2563, \"rank\": 2016, \"rankvar\": 2191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1212, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1210, \"cat-2\": \"Density: 24\", \"cat_2_index\": 514, \"group\": [2563.0, 451.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42612_BALBc-1_X01_Y02_300_601\", \"ini\": 1613, \"clust\": 221, \"rank\": 1261, \"rankvar\": 951, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1213, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 140, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2076, \"group\": [222.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42732_BALBc-1_X01_Y02_301_949\", \"ini\": 1612, \"clust\": 2008, \"rank\": 2063, \"rankvar\": 1335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1214, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 141, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1976, \"group\": [2014.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43120_BALBc-1_X01_Y02_307_419\", \"ini\": 1611, \"clust\": 1721, \"rank\": 2059, \"rankvar\": 2687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1215, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 903, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1662, \"group\": [1725.0, 305.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43132_BALBc-1_X01_Y02_307_574\", \"ini\": 1610, \"clust\": 1875, \"rank\": 1667, \"rankvar\": 2094, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1216, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 142, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1767, \"group\": [1877.0, 324.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43153_BALBc-1_X01_Y02_307_973\", \"ini\": 1609, \"clust\": 862, \"rank\": 302, \"rankvar\": 593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1217, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1211, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1528, \"group\": [868.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43190_BALBc-1_X01_Y02_308_551\", \"ini\": 1608, \"clust\": 1261, \"rank\": 1377, \"rankvar\": 2382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1218, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 143, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1977, \"group\": [1262.0, 173.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43335_BALBc-1_X01_Y02_31_697\", \"ini\": 1607, \"clust\": 1921, \"rank\": 1669, \"rankvar\": 2815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1219, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2547, \"cat-2\": \"Density: 14\", \"cat_2_index\": 31, \"group\": [1921.0, 340.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43610_BALBc-1_X01_Y02_313_207\", \"ini\": 1606, \"clust\": 2669, \"rank\": 2030, \"rankvar\": 1259, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1220, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1212, \"cat-2\": \"Density: 26\", \"cat_2_index\": 798, \"group\": [2672.0, 481.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43667_BALBc-1_X01_Y02_313_928\", \"ini\": 1605, \"clust\": 2524, \"rank\": 2086, \"rankvar\": 2585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1221, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 144, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2440, \"group\": [2523.0, 439.0, 95.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43786_BALBc-1_X01_Y02_315_720\", \"ini\": 1604, \"clust\": 917, \"rank\": 231, \"rankvar\": 435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1222, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1213, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2374, \"group\": [917.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43787_BALBc-1_X01_Y02_315_732\", \"ini\": 1603, \"clust\": 2134, \"rank\": 2521, \"rankvar\": 1665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1223, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1994, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2441, \"group\": [2134.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43806_BALBc-1_X01_Y02_315_911\", \"ini\": 1602, \"clust\": 2131, \"rank\": 2312, \"rankvar\": 632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1224, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 145, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2657, \"group\": [2130.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43842_BALBc-1_X01_Y02_316_523\", \"ini\": 1601, \"clust\": 1866, \"rank\": 2722, \"rankvar\": 2412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1225, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 146, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2156, \"group\": [1869.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43849_BALBc-1_X01_Y02_316_620\", \"ini\": 1600, \"clust\": 1810, \"rank\": 2661, \"rankvar\": 2699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1226, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 147, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2157, \"group\": [1815.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43973_BALBc-1_X01_Y02_317_998\", \"ini\": 1599, \"clust\": 2029, \"rank\": 2406, \"rankvar\": 1590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1227, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 148, \"cat-2\": \"Density: 24\", \"cat_2_index\": 515, \"group\": [2031.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44048_BALBc-1_X01_Y02_318_852\", \"ini\": 1598, \"clust\": 1210, \"rank\": 1288, \"rankvar\": 1820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1228, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 149, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2550, \"group\": [1214.0, 160.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44158_BALBc-1_X01_Y02_32_575\", \"ini\": 1597, \"clust\": 2823, \"rank\": 2327, \"rankvar\": 2078, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1229, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 838, \"cat-2\": \"Density: 17\", \"cat_2_index\": 79, \"group\": [2824.0, 504.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44319_BALBc-1_X01_Y02_321_675\", \"ini\": 1596, \"clust\": 2243, \"rank\": 1734, \"rankvar\": 1094, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1230, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1214, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1978, \"group\": [2243.0, 385.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44330_BALBc-1_X01_Y02_321_819\", \"ini\": 1595, \"clust\": 2153, \"rank\": 2605, \"rankvar\": 1985, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1231, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 904, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2442, \"group\": [2156.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44535_BALBc-1_X01_Y02_324_399\", \"ini\": 1594, \"clust\": 182, \"rank\": 686, \"rankvar\": 1064, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1232, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 905, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1402, \"group\": [183.0, 55.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44544_BALBc-1_X01_Y02_324_471\", \"ini\": 1593, \"clust\": 1792, \"rank\": 2705, \"rankvar\": 2813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1233, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 150, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2158, \"group\": [1796.0, 320.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44837_BALBc-1_X01_Y02_328_284\", \"ini\": 1592, \"clust\": 2481, \"rank\": 1070, \"rankvar\": 894, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1234, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 906, \"cat-2\": \"Density: 26\", \"cat_2_index\": 799, \"group\": [2481.0, 423.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44938_BALBc-1_X01_Y02_329_485\", \"ini\": 1591, \"clust\": 1392, \"rank\": 914, \"rankvar\": 1474, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1235, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 151, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2235, \"group\": [1392.0, 196.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44940_BALBc-1_X01_Y02_329_520\", \"ini\": 1590, \"clust\": 1455, \"rank\": 1895, \"rankvar\": 1721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1236, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 152, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2236, \"group\": [1454.0, 216.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45002_BALBc-1_X01_Y02_33_176\", \"ini\": 1589, \"clust\": 275, \"rank\": 462, \"rankvar\": 1892, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1237, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1968, \"cat-2\": \"Density: 19\", \"cat_2_index\": 120, \"group\": [279.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45143_BALBc-1_X01_Y02_331_141\", \"ini\": 1588, \"clust\": 2624, \"rank\": 1868, \"rankvar\": 2459, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1238, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2454, \"cat-2\": \"Density: 24\", \"cat_2_index\": 516, \"group\": [2624.0, 466.0, 100.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45181_BALBc-1_X01_Y02_331_563\", \"ini\": 1587, \"clust\": 2085, \"rank\": 2289, \"rankvar\": 1254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1239, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 153, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2077, \"group\": [2085.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45205_BALBc-1_X01_Y02_331_950\", \"ini\": 1586, \"clust\": 283, \"rank\": 1101, \"rankvar\": 948, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1240, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1215, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2237, \"group\": [283.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45467_BALBc-1_X01_Y02_335_449\", \"ini\": 1585, \"clust\": 2466, \"rank\": 1584, \"rankvar\": 2235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1241, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 154, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1768, \"group\": [2473.0, 420.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45505_BALBc-1_X01_Y02_335_812\", \"ini\": 1584, \"clust\": 132, \"rank\": 1323, \"rankvar\": 1307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1242, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 907, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2604, \"group\": [131.0, 44.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45513_BALBc-1_X01_Y02_335_880\", \"ini\": 1583, \"clust\": 117, \"rank\": 884, \"rankvar\": 140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1243, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 155, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2703, \"group\": [117.0, 39.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45549_BALBc-1_X01_Y02_336_399\", \"ini\": 1582, \"clust\": 570, \"rank\": 895, \"rankvar\": 287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1244, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 156, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1403, \"group\": [571.0, 99.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45699_BALBc-1_X01_Y02_338_596\", \"ini\": 1581, \"clust\": 1216, \"rank\": 1586, \"rankvar\": 2335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1245, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 157, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2375, \"group\": [1219.0, 161.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45736_BALBc-1_X01_Y02_338_994\", \"ini\": 1580, \"clust\": 139, \"rank\": 1454, \"rankvar\": 1025, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1246, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1216, \"cat-2\": \"Density: 26\", \"cat_2_index\": 800, \"group\": [141.0, 45.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45772_BALBc-1_X01_Y02_339_514\", \"ini\": 1579, \"clust\": 1652, \"rank\": 1439, \"rankvar\": 841, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1247, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 158, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2313, \"group\": [1652.0, 298.0, 66.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45887_BALBc-1_X01_Y02_340_11\", \"ini\": 1578, \"clust\": 870, \"rank\": 479, \"rankvar\": 47, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1248, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2309, \"cat-2\": \"Density: 27\", \"cat_2_index\": 949, \"group\": [873.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46022_BALBc-1_X01_Y02_341_760\", \"ini\": 1577, \"clust\": 1158, \"rank\": 1135, \"rankvar\": 968, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1249, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 908, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2740, \"group\": [1159.0, 137.0, 25.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46029_BALBc-1_X01_Y02_341_855\", \"ini\": 1576, \"clust\": 2314, \"rank\": 2715, \"rankvar\": 1530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1250, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 159, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2512, \"group\": [2313.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46196_BALBc-1_X01_Y02_344_268\", \"ini\": 1575, \"clust\": 1233, \"rank\": 1006, \"rankvar\": 1877, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1251, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1217, \"cat-2\": \"Density: 25\", \"cat_2_index\": 659, \"group\": [1234.0, 166.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46287_BALBc-1_X01_Y02_345_339\", \"ini\": 1574, \"clust\": 1320, \"rank\": 818, \"rankvar\": 1538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1252, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 909, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1250, \"group\": [1321.0, 184.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46316_BALBc-1_X01_Y02_345_683\", \"ini\": 1573, \"clust\": 2291, \"rank\": 2422, \"rankvar\": 1511, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1253, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1218, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2238, \"group\": [2292.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46325_BALBc-1_X01_Y02_345_783\", \"ini\": 1572, \"clust\": 1360, \"rank\": 1687, \"rankvar\": 1600, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1254, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 910, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2551, \"group\": [1361.0, 190.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46464_BALBc-1_X01_Y02_347_433\", \"ini\": 1571, \"clust\": 2205, \"rank\": 2081, \"rankvar\": 997, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1255, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 160, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2078, \"group\": [2206.0, 376.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46599_BALBc-1_X01_Y02_349_408\", \"ini\": 1570, \"clust\": 590, \"rank\": 888, \"rankvar\": 2048, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1256, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2548, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1529, \"group\": [599.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46604_BALBc-1_X01_Y02_349_467\", \"ini\": 1569, \"clust\": 2231, \"rank\": 2775, \"rankvar\": 2467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1257, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 161, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2159, \"group\": [2231.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46653_BALBc-1_X01_Y02_349_905\", \"ini\": 1568, \"clust\": 2252, \"rank\": 2329, \"rankvar\": 1103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1258, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1563, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2741, \"group\": [2253.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46659_BALBc-1_X01_Y02_349_959\", \"ini\": 1567, \"clust\": 2428, \"rank\": 1921, \"rankvar\": 1945, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1259, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1219, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1979, \"group\": [2429.0, 408.0, 87.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46698_BALBc-1_X01_Y02_35_602\", \"ini\": 1566, \"clust\": 1189, \"rank\": 1918, \"rankvar\": 2024, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1260, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 162, \"cat-2\": \"Density: 18\", \"cat_2_index\": 96, \"group\": [1192.0, 150.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46751_BALBc-1_X01_Y02_350_379\", \"ini\": 1565, \"clust\": 1830, \"rank\": 2649, \"rankvar\": 827, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1261, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 911, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1251, \"group\": [1830.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46910_BALBc-1_X01_Y02_352_503\", \"ini\": 1564, \"clust\": 596, \"rank\": 144, \"rankvar\": 1914, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1262, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 163, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2443, \"group\": [595.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46947_BALBc-1_X01_Y02_352_937\", \"ini\": 1563, \"clust\": 1114, \"rank\": 1224, \"rankvar\": 160, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1263, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 164, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2376, \"group\": [1114.0, 124.0, 23.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47001_BALBc-1_X01_Y02_353_565\", \"ini\": 1562, \"clust\": 2255, \"rank\": 2193, \"rankvar\": 1638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1264, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 165, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2444, \"group\": [2255.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47004_BALBc-1_X01_Y02_353_639\", \"ini\": 1561, \"clust\": 2222, \"rank\": 2808, \"rankvar\": 2318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1265, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 166, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2377, \"group\": [2222.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47226_BALBc-1_X01_Y02_356_521\", \"ini\": 1560, \"clust\": 2220, \"rank\": 2785, \"rankvar\": 2401, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1266, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 167, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2239, \"group\": [2220.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47251_BALBc-1_X01_Y02_356_828\", \"ini\": 1559, \"clust\": 2359, \"rank\": 1240, \"rankvar\": 1987, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1267, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 168, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2445, \"group\": [2361.0, 388.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47374_BALBc-1_X01_Y02_358_677\", \"ini\": 1558, \"clust\": 781, \"rank\": 93, \"rankvar\": 1167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1268, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 169, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2314, \"group\": [784.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47389_BALBc-1_X01_Y02_358_844\", \"ini\": 1557, \"clust\": 1100, \"rank\": 749, \"rankvar\": 186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1269, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 170, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2605, \"group\": [1099.0, 120.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47513_BALBc-1_X01_Y02_36_798\", \"ini\": 1556, \"clust\": 1787, \"rank\": 2496, \"rankvar\": 2512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1270, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1750, \"cat-2\": \"Density: 19\", \"cat_2_index\": 121, \"group\": [1798.0, 320.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47658_BALBc-1_X01_Y02_361_808\", \"ini\": 1555, \"clust\": 1097, \"rank\": 593, \"rankvar\": 1625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1271, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1995, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2552, \"group\": [1101.0, 120.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47694_BALBc-1_X01_Y02_362_294\", \"ini\": 1554, \"clust\": 269, \"rank\": 687, \"rankvar\": 1918, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1272, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2549, \"cat-2\": \"Density: 23\", \"cat_2_index\": 401, \"group\": [268.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47867_BALBc-1_X01_Y02_364_621\", \"ini\": 1553, \"clust\": 814, \"rank\": 256, \"rankvar\": 359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1273, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 171, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2315, \"group\": [814.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47897_BALBc-1_X01_Y02_364_854\", \"ini\": 1552, \"clust\": 669, \"rank\": 83, \"rankvar\": 1597, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1274, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 172, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2800, \"group\": [666.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47915_BALBc-1_X01_Y02_365_14\", \"ini\": 1551, \"clust\": 719, \"rank\": 106, \"rankvar\": 869, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1275, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2550, \"cat-2\": \"Density: 24\", \"cat_2_index\": 517, \"group\": [719.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48021_BALBc-1_X01_Y02_366_342\", \"ini\": 1550, \"clust\": 1765, \"rank\": 2737, \"rankvar\": 2782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1276, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2551, \"cat-2\": \"Density: 27\", \"cat_2_index\": 950, \"group\": [1766.0, 315.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48025_BALBc-1_X01_Y02_366_428\", \"ini\": 1549, \"clust\": 39, \"rank\": 799, \"rankvar\": 1650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1277, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2552, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1871, \"group\": [39.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48215_BALBc-1_X01_Y02_368_757\", \"ini\": 1548, \"clust\": 2362, \"rank\": 2306, \"rankvar\": 2456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1278, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1996, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2606, \"group\": [2365.0, 390.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48507_BALBc-1_X01_Y02_371_768\", \"ini\": 1547, \"clust\": 2095, \"rank\": 2299, \"rankvar\": 564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1279, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1997, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2742, \"group\": [2100.0, 358.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48580_BALBc-1_X01_Y02_372_677\", \"ini\": 1546, \"clust\": 2329, \"rank\": 2639, \"rankvar\": 2534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1280, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 173, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2378, \"group\": [2329.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48668_BALBc-1_X01_Y02_373_878\", \"ini\": 1545, \"clust\": 2027, \"rank\": 2477, \"rankvar\": 2424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1281, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1564, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2553, \"group\": [2035.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48752_BALBc-1_X01_Y02_374_953\", \"ini\": 1544, \"clust\": 815, \"rank\": 384, \"rankvar\": 91, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1282, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 174, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1980, \"group\": [815.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48829_BALBc-1_X01_Y02_375_937\", \"ini\": 1543, \"clust\": 1570, \"rank\": 1977, \"rankvar\": 1137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1283, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1565, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2316, \"group\": [1570.0, 257.0, 54.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48836_BALBc-1_X01_Y02_375_988\", \"ini\": 1542, \"clust\": 2047, \"rank\": 2053, \"rankvar\": 1560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1284, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1220, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1103, \"group\": [2049.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48875_BALBc-1_X01_Y02_376_577\", \"ini\": 1541, \"clust\": 2387, \"rank\": 1688, \"rankvar\": 1965, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1285, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 175, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1872, \"group\": [2388.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49022_BALBc-1_X01_Y02_378_546\", \"ini\": 1540, \"clust\": 45, \"rank\": 1553, \"rankvar\": 458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1286, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2553, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2446, \"group\": [45.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49038_BALBc-1_X01_Y02_378_703\", \"ini\": 1539, \"clust\": 407, \"rank\": 376, \"rankvar\": 1083, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1287, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1998, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2447, \"group\": [409.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49110_BALBc-1_X01_Y02_379_604\", \"ini\": 1538, \"clust\": 2141, \"rank\": 2393, \"rankvar\": 1613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1288, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 176, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2513, \"group\": [2141.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49158_BALBc-1_X01_Y02_38_459\", \"ini\": 1537, \"clust\": 2703, \"rank\": 2716, \"rankvar\": 2746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1289, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2310, \"cat-2\": \"Density: 21\", \"cat_2_index\": 207, \"group\": [2704.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49214_BALBc-1_X01_Y02_380_267\", \"ini\": 1536, \"clust\": 1275, \"rank\": 1028, \"rankvar\": 1159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1290, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1221, \"cat-2\": \"Density: 24\", \"cat_2_index\": 518, \"group\": [1279.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49503_BALBc-1_X01_Y02_383_640\", \"ini\": 1535, \"clust\": 2286, \"rank\": 2647, \"rankvar\": 2589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1291, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 177, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2448, \"group\": [2287.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49514_BALBc-1_X01_Y02_383_738\", \"ini\": 1534, \"clust\": 129, \"rank\": 909, \"rankvar\": 950, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1292, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 1999, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2607, \"group\": [127.0, 43.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49654_BALBc-1_X01_Y02_385_588\", \"ini\": 1533, \"clust\": 2242, \"rank\": 2076, \"rankvar\": 2127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1293, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 178, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2240, \"group\": [2245.0, 385.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49736_BALBc-1_X01_Y02_386_473\", \"ini\": 1532, \"clust\": 2275, \"rank\": 2664, \"rankvar\": 2638, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1294, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 179, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2241, \"group\": [2276.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49747_BALBc-1_X01_Y02_386_572\", \"ini\": 1531, \"clust\": 410, \"rank\": 191, \"rankvar\": 815, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1295, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2554, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2379, \"group\": [414.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49822_BALBc-1_X01_Y02_387_448\", \"ini\": 1530, \"clust\": 336, \"rank\": 998, \"rankvar\": 1092, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1296, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 839, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1981, \"group\": [337.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50058_BALBc-1_X01_Y02_39_628\", \"ini\": 1529, \"clust\": 1250, \"rank\": 1241, \"rankvar\": 2514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1297, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1222, \"cat-2\": \"Density: 16\", \"cat_2_index\": 60, \"group\": [1253.0, 171.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50084_BALBc-1_X01_Y02_39_93\", \"ini\": 1528, \"clust\": 494, \"rank\": 681, \"rankvar\": 1264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1298, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1969, \"cat-2\": \"Density: 17\", \"cat_2_index\": 80, \"group\": [495.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50363_BALBc-1_X01_Y02_393_824\", \"ini\": 1527, \"clust\": 666, \"rank\": 114, \"rankvar\": 1419, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1299, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2000, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2514, \"group\": [668.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50468_BALBc-1_X01_Y02_395_251\", \"ini\": 1526, \"clust\": 1048, \"rank\": 500, \"rankvar\": 95, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1300, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1223, \"cat-2\": \"Density: 27\", \"cat_2_index\": 951, \"group\": [1047.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50654_BALBc-1_X01_Y02_397_653\", \"ini\": 1525, \"clust\": 140, \"rank\": 1494, \"rankvar\": 880, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1301, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 180, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2449, \"group\": [139.0, 45.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50678_BALBc-1_X01_Y02_397_965\", \"ini\": 1524, \"clust\": 2234, \"rank\": 1920, \"rankvar\": 881, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1302, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 181, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1873, \"group\": [2236.0, 382.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50749_BALBc-1_X01_Y02_398_842\", \"ini\": 1523, \"clust\": 2341, \"rank\": 2680, \"rankvar\": 2076, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1303, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 182, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2450, \"group\": [2341.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50801_BALBc-1_X01_Y02_399_479\", \"ini\": 1522, \"clust\": 1653, \"rank\": 1593, \"rankvar\": 1225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1304, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 183, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2160, \"group\": [1653.0, 298.0, 66.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50842_BALBc-1_X01_Y02_399_873\", \"ini\": 1521, \"clust\": 403, \"rank\": 265, \"rankvar\": 1045, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1305, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 184, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2554, \"group\": [403.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50850_BALBc-1_X01_Y02_399_955\", \"ini\": 1520, \"clust\": 1334, \"rank\": 639, \"rankvar\": 949, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1306, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 185, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2161, \"group\": [1337.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51102_BALBc-1_X01_Y02_401_718\", \"ini\": 1519, \"clust\": 2053, \"rank\": 1904, \"rankvar\": 1828, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1307, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2001, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2555, \"group\": [2051.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51108_BALBc-1_X01_Y02_401_770\", \"ini\": 1518, \"clust\": 963, \"rank\": 161, \"rankvar\": 591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1308, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2002, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2743, \"group\": [963.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51160_BALBc-1_X01_Y02_402_614\", \"ini\": 1517, \"clust\": 2282, \"rank\": 2594, \"rankvar\": 2684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1309, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 186, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2317, \"group\": [2281.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51170_BALBc-1_X01_Y02_402_685\", \"ini\": 1516, \"clust\": 659, \"rank\": 584, \"rankvar\": 1329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1310, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 187, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2451, \"group\": [659.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51249_BALBc-1_X01_Y02_403_900\", \"ini\": 1515, \"clust\": 800, \"rank\": 362, \"rankvar\": 86, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1311, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1566, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2556, \"group\": [800.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51335_BALBc-1_X01_Y02_404_940\", \"ini\": 1514, \"clust\": 1981, \"rank\": 2023, \"rankvar\": 1374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1312, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1567, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2242, \"group\": [1978.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51490_BALBc-1_X01_Y02_406_791\", \"ini\": 1513, \"clust\": 2240, \"rank\": 2105, \"rankvar\": 2203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1313, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2003, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2608, \"group\": [2240.0, 385.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51601_BALBc-1_X01_Y02_408_107\", \"ini\": 1512, \"clust\": 1162, \"rank\": 561, \"rankvar\": 1709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1314, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2311, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1104, \"group\": [1161.0, 137.0, 25.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51695_BALBc-1_X01_Y02_409_238\", \"ini\": 1511, \"clust\": 1239, \"rank\": 1611, \"rankvar\": 1228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1315, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1224, \"cat-2\": \"Density: 26\", \"cat_2_index\": 801, \"group\": [1239.0, 167.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51890_BALBc-1_X01_Y02_410_582\", \"ini\": 1510, \"clust\": 2463, \"rank\": 1662, \"rankvar\": 375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1316, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 188, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1982, \"group\": [2464.0, 420.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51921_BALBc-1_X01_Y02_411_121\", \"ini\": 1509, \"clust\": 74, \"rank\": 718, \"rankvar\": 1070, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1317, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 840, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1404, \"group\": [75.0, 26.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51976_BALBc-1_X01_Y02_411_847\", \"ini\": 1508, \"clust\": 2137, \"rank\": 2509, \"rankvar\": 1414, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1318, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 189, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2609, \"group\": [2135.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52269_BALBc-1_X01_Y02_415_277\", \"ini\": 1507, \"clust\": 551, \"rank\": 778, \"rankvar\": 1468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1319, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 621, \"cat-2\": \"Density: 27\", \"cat_2_index\": 952, \"group\": [552.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52299_BALBc-1_X01_Y02_415_694\", \"ini\": 1506, \"clust\": 205, \"rank\": 1196, \"rankvar\": 1141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1320, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 190, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2658, \"group\": [205.0, 61.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52362_BALBc-1_X01_Y02_416_643\", \"ini\": 1505, \"clust\": 2145, \"rank\": 2625, \"rankvar\": 2342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1321, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 191, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2452, \"group\": [2144.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52446_BALBc-1_X01_Y02_417_9\", \"ini\": 1504, \"clust\": 490, \"rank\": 932, \"rankvar\": 1198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1322, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2242, \"cat-2\": \"Density: 27\", \"cat_2_index\": 953, \"group\": [494.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52574_BALBc-1_X01_Y02_419_463\", \"ini\": 1503, \"clust\": 433, \"rank\": 292, \"rankvar\": 1626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1323, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 841, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2243, \"group\": [432.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52615_BALBc-1_X01_Y02_419_921\", \"ini\": 1502, \"clust\": 2408, \"rank\": 1648, \"rankvar\": 1032, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1324, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1568, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2453, \"group\": [2409.0, 398.0, 83.0, 22.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52720_BALBc-1_X01_Y02_420_41\", \"ini\": 1501, \"clust\": 271, \"rank\": 464, \"rankvar\": 2371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1325, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2312, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1405, \"group\": [272.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52738_BALBc-1_X01_Y02_420_619\", \"ini\": 1500, \"clust\": 56, \"rank\": 742, \"rankvar\": 915, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1326, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 192, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2380, \"group\": [55.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52831_BALBc-1_X01_Y02_421_884\", \"ini\": 1499, \"clust\": 308, \"rank\": 701, \"rankvar\": 877, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1327, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 193, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2557, \"group\": [307.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52841_BALBc-1_X01_Y02_421_966\", \"ini\": 1498, \"clust\": 677, \"rank\": 615, \"rankvar\": 703, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1328, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 194, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1769, \"group\": [678.0, 110.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52887_BALBc-1_X01_Y02_422_566\", \"ini\": 1497, \"clust\": 492, \"rank\": 879, \"rankvar\": 785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1329, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2555, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2162, \"group\": [491.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52914_BALBc-1_X01_Y02_422_826\", \"ini\": 1496, \"clust\": 2267, \"rank\": 2473, \"rankvar\": 2437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1330, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 195, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2454, \"group\": [2267.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52954_BALBc-1_X01_Y02_423_373\", \"ini\": 1495, \"clust\": 1854, \"rank\": 2720, \"rankvar\": 864, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1331, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2556, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1530, \"group\": [1854.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52986_BALBc-1_X01_Y02_423_804\", \"ini\": 1494, \"clust\": 1160, \"rank\": 846, \"rankvar\": 1879, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1332, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 912, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2659, \"group\": [1164.0, 137.0, 25.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53029_BALBc-1_X01_Y02_424_444\", \"ini\": 1493, \"clust\": 2643, \"rank\": 2163, \"rankvar\": 1565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1333, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 842, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2079, \"group\": [2643.0, 476.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53035_BALBc-1_X01_Y02_424_524\", \"ini\": 1492, \"clust\": 1938, \"rank\": 1951, \"rankvar\": 1456, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1334, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2557, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2381, \"group\": [1945.0, 346.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53103_BALBc-1_X01_Y02_425_394\", \"ini\": 1491, \"clust\": 1628, \"rank\": 1378, \"rankvar\": 1981, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1335, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2558, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1663, \"group\": [1629.0, 283.0, 63.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53160_BALBc-1_X01_Y02_426_216\", \"ini\": 1490, \"clust\": 423, \"rank\": 216, \"rankvar\": 1372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1336, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1225, \"cat-2\": \"Density: 27\", \"cat_2_index\": 954, \"group\": [425.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53185_BALBc-1_X01_Y02_426_493\", \"ini\": 1489, \"clust\": 2308, \"rank\": 2543, \"rankvar\": 2532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1337, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2004, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2382, \"group\": [2307.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53235_BALBc-1_X01_Y02_426_993\", \"ini\": 1488, \"clust\": 2070, \"rank\": 2764, \"rankvar\": 2656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1338, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1226, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1105, \"group\": [2069.0, 356.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53488_BALBc-1_X01_Y02_43_189\", \"ini\": 1487, \"clust\": 1564, \"rank\": 1922, \"rankvar\": 1813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1339, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2490, \"cat-2\": \"Density: 20\", \"cat_2_index\": 157, \"group\": [1565.0, 256.0, 53.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53513_BALBc-1_X01_Y02_43_535\", \"ini\": 1486, \"clust\": 1530, \"rank\": 2174, \"rankvar\": 2098, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1340, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 843, \"cat-2\": \"Density: 24\", \"cat_2_index\": 519, \"group\": [1530.0, 247.0, 51.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53632_BALBc-1_X01_Y02_430_943\", \"ini\": 1485, \"clust\": 432, \"rank\": 402, \"rankvar\": 1571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1341, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 196, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2244, \"group\": [434.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53680_BALBc-1_X01_Y02_431_592\", \"ini\": 1484, \"clust\": 2346, \"rank\": 2744, \"rankvar\": 2624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1342, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2005, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2245, \"group\": [2347.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53775_BALBc-1_X01_Y02_432_719\", \"ini\": 1483, \"clust\": 2060, \"rank\": 2239, \"rankvar\": 1127, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1343, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2006, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2660, \"group\": [2059.0, 355.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54002_BALBc-1_X01_Y02_435_644\", \"ini\": 1482, \"clust\": 352, \"rank\": 949, \"rankvar\": 99, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1344, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 197, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2610, \"group\": [353.0, 75.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54089_BALBc-1_X01_Y02_436_868\", \"ini\": 1481, \"clust\": 1949, \"rank\": 2314, \"rankvar\": 2110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1345, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 198, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2661, \"group\": [1950.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54172_BALBc-1_X01_Y02_437_824\", \"ini\": 1480, \"clust\": 1937, \"rank\": 2292, \"rankvar\": 2689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1346, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2007, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2455, \"group\": [1936.0, 345.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54244_BALBc-1_X01_Y02_438_683\", \"ini\": 1479, \"clust\": 2292, \"rank\": 2426, \"rankvar\": 2106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1347, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2008, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2558, \"group\": [2293.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54404_BALBc-1_X01_Y02_44_835\", \"ini\": 1478, \"clust\": 1920, \"rank\": 1852, \"rankvar\": 2591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1348, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1227, \"cat-2\": \"Density: 21\", \"cat_2_index\": 208, \"group\": [1922.0, 340.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54437_BALBc-1_X01_Y02_440_316\", \"ini\": 1477, \"clust\": 327, \"rank\": 410, \"rankvar\": 1696, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1349, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2559, \"cat-2\": \"Density: 25\", \"cat_2_index\": 660, \"group\": [328.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54530_BALBc-1_X01_Y02_441_532\", \"ini\": 1476, \"clust\": 1825, \"rank\": 2540, \"rankvar\": 2730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1350, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2009, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2383, \"group\": [1825.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54679_BALBc-1_X01_Y02_443_444\", \"ini\": 1475, \"clust\": 179, \"rank\": 941, \"rankvar\": 1670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1351, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 199, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1874, \"group\": [180.0, 55.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54837_BALBc-1_X01_Y02_445_603\", \"ini\": 1474, \"clust\": 2260, \"rank\": 2516, \"rankvar\": 2681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1352, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 200, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2456, \"group\": [2260.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54860_BALBc-1_X01_Y02_445_91\", \"ini\": 1473, \"clust\": 354, \"rank\": 859, \"rankvar\": 524, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1353, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2313, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1252, \"group\": [355.0, 75.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54974_BALBc-1_X01_Y02_447_354\", \"ini\": 1472, \"clust\": 1743, \"rank\": 503, \"rankvar\": 2676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1354, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2560, \"cat-2\": \"Density: 26\", \"cat_2_index\": 802, \"group\": [1745.0, 310.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55065_BALBc-1_X01_Y02_448_466\", \"ini\": 1471, \"clust\": 1040, \"rank\": 154, \"rankvar\": 260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1355, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2010, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2163, \"group\": [1042.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55103_BALBc-1_X01_Y02_448_891\", \"ini\": 1470, \"clust\": 733, \"rank\": 685, \"rankvar\": 2134, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1356, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2011, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2559, \"group\": [733.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55107_BALBc-1_X01_Y02_448_964\", \"ini\": 1469, \"clust\": 236, \"rank\": 1171, \"rankvar\": 757, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1357, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 201, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1983, \"group\": [236.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55165_BALBc-1_X01_Y02_449_995\", \"ini\": 1468, \"clust\": 1565, \"rank\": 1897, \"rankvar\": 2531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1358, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1228, \"cat-2\": \"Density: 25\", \"cat_2_index\": 661, \"group\": [1568.0, 256.0, 53.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55457_BALBc-1_X01_Y02_452_827\", \"ini\": 1467, \"clust\": 2347, \"rank\": 2774, \"rankvar\": 2718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1359, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2012, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2662, \"group\": [2348.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55626_BALBc-1_X01_Y02_454_938\", \"ini\": 1466, \"clust\": 2050, \"rank\": 1880, \"rankvar\": 1063, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1360, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 202, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2318, \"group\": [2053.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55632_BALBc-1_X01_Y02_455_133\", \"ini\": 1465, \"clust\": 2683, \"rank\": 2167, \"rankvar\": 2212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1361, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1229, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1253, \"group\": [2684.0, 484.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55682_BALBc-1_X01_Y02_455_662\", \"ini\": 1464, \"clust\": 1093, \"rank\": 418, \"rankvar\": 860, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1362, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2013, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2457, \"group\": [1094.0, 119.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55975_BALBc-1_X01_Y02_459_725\", \"ini\": 1463, \"clust\": 2324, \"rank\": 2728, \"rankvar\": 2565, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1363, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 913, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2611, \"group\": [2325.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55987_BALBc-1_X01_Y02_459_856\", \"ini\": 1462, \"clust\": 1496, \"rank\": 1643, \"rankvar\": 300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1364, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2014, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2384, \"group\": [1496.0, 230.0, 45.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56102_BALBc-1_X01_Y02_460_412\", \"ini\": 1461, \"clust\": 1520, \"rank\": 1821, \"rankvar\": 2596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1365, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2811, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1875, \"group\": [1521.0, 242.0, 49.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56118_BALBc-1_X01_Y02_460_632\", \"ini\": 1460, \"clust\": 1362, \"rank\": 1655, \"rankvar\": 1212, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1366, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 203, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2515, \"group\": [1360.0, 190.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56299_BALBc-1_X01_Y02_462_698\", \"ini\": 1459, \"clust\": 502, \"rank\": 757, \"rankvar\": 1028, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1367, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2015, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2516, \"group\": [502.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56546_BALBc-1_X01_Y02_466_18\", \"ini\": 1458, \"clust\": 2483, \"rank\": 1460, \"rankvar\": 2055, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1368, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1551, \"cat-2\": \"Density: 27\", \"cat_2_index\": 955, \"group\": [2488.0, 424.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56758_BALBc-1_X01_Y02_468_767\", \"ini\": 1457, \"clust\": 2312, \"rank\": 2809, \"rankvar\": 2740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1369, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 914, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2744, \"group\": [2311.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56777_BALBc-1_X01_Y02_469_107\", \"ini\": 1456, \"clust\": 1079, \"rank\": 409, \"rankvar\": 1783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1370, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 844, \"cat-2\": \"Density: 26\", \"cat_2_index\": 803, \"group\": [1076.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56993_BALBc-1_X01_Y02_470_811\", \"ini\": 1455, \"clust\": 521, \"rank\": 926, \"rankvar\": 74, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1371, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2016, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2663, \"group\": [522.0, 85.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57236_BALBc-1_X01_Y02_474_156\", \"ini\": 1454, \"clust\": 32, \"rank\": 1085, \"rankvar\": 2139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1372, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 845, \"cat-2\": \"Density: 23\", \"cat_2_index\": 402, \"group\": [31.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57266_BALBc-1_X01_Y02_474_476\", \"ini\": 1453, \"clust\": 2232, \"rank\": 2658, \"rankvar\": 2392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1373, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2017, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2246, \"group\": [2232.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57317_BALBc-1_X01_Y02_475_174\", \"ini\": 1452, \"clust\": 1350, \"rank\": 1482, \"rankvar\": 1128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1374, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1230, \"cat-2\": \"Density: 26\", \"cat_2_index\": 804, \"group\": [1350.0, 188.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57390_BALBc-1_X01_Y02_475_992\", \"ini\": 1451, \"clust\": 2033, \"rank\": 2525, \"rankvar\": 1916, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1375, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1231, \"cat-2\": \"Density: 26\", \"cat_2_index\": 805, \"group\": [2032.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57421_BALBc-1_X01_Y02_476_442\", \"ini\": 1450, \"clust\": 2416, \"rank\": 1727, \"rankvar\": 2031, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1376, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 204, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2247, \"group\": [2415.0, 401.0, 84.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57434_BALBc-1_X01_Y02_476_544\", \"ini\": 1449, \"clust\": 2278, \"rank\": 2648, \"rankvar\": 2709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1377, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2018, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2319, \"group\": [2278.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57441_BALBc-1_X01_Y02_476_598\", \"ini\": 1448, \"clust\": 639, \"rank\": 669, \"rankvar\": 1233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1378, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 205, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2385, \"group\": [642.0, 105.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57487_BALBc-1_X01_Y02_477_186\", \"ini\": 1447, \"clust\": 20, \"rank\": 1229, \"rankvar\": 2315, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1379, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1232, \"cat-2\": \"Density: 24\", \"cat_2_index\": 520, \"group\": [24.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57490_BALBc-1_X01_Y02_477_220\", \"ini\": 1446, \"clust\": 1264, \"rank\": 936, \"rankvar\": 2381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1380, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1233, \"cat-2\": \"Density: 23\", \"cat_2_index\": 403, \"group\": [1267.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57549_BALBc-1_X01_Y02_477_962\", \"ini\": 1445, \"clust\": 926, \"rank\": 351, \"rankvar\": 1115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1381, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 206, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1984, \"group\": [928.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57571_BALBc-1_X01_Y02_478_269\", \"ini\": 1444, \"clust\": 679, \"rank\": 483, \"rankvar\": 631, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1382, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1234, \"cat-2\": \"Density: 24\", \"cat_2_index\": 521, \"group\": [679.0, 110.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57683_BALBc-1_X01_Y02_479_571\", \"ini\": 1443, \"clust\": 2250, \"rank\": 2640, \"rankvar\": 2578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1383, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2019, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2560, \"group\": [2251.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57835_BALBc-1_X01_Y02_480_722\", \"ini\": 1442, \"clust\": 147, \"rank\": 872, \"rankvar\": 267, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1384, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 207, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2517, \"group\": [146.0, 46.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57878_BALBc-1_X01_Y02_481_244\", \"ini\": 1441, \"clust\": 110, \"rank\": 716, \"rankvar\": 2364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1385, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1235, \"cat-2\": \"Density: 22\", \"cat_2_index\": 288, \"group\": [111.0, 36.0, 11.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58001_BALBc-1_X01_Y02_482_917\", \"ini\": 1440, \"clust\": 2254, \"rank\": 2285, \"rankvar\": 1044, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1386, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2020, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2801, \"group\": [2257.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58043_BALBc-1_X01_Y02_483_520\", \"ini\": 1439, \"clust\": 112, \"rank\": 1024, \"rankvar\": 2016, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1387, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2021, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2080, \"group\": [113.0, 37.0, 11.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58156_BALBc-1_X01_Y02_484_753\", \"ini\": 1438, \"clust\": 345, \"rank\": 943, \"rankvar\": 1729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1388, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2022, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2704, \"group\": [344.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58206_BALBc-1_X01_Y02_485_407\", \"ini\": 1437, \"clust\": 460, \"rank\": 492, \"rankvar\": 747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1389, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2023, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1531, \"group\": [460.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58226_BALBc-1_X01_Y02_485_621\", \"ini\": 1436, \"clust\": 1117, \"rank\": 1130, \"rankvar\": 2008, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1390, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 208, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2081, \"group\": [1120.0, 125.0, 23.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58228_BALBc-1_X01_Y02_485_649\", \"ini\": 1435, \"clust\": 2330, \"rank\": 2636, \"rankvar\": 2570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1391, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1236, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2248, \"group\": [2330.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58327_BALBc-1_X01_Y02_486_99\", \"ini\": 1434, \"clust\": 353, \"rank\": 985, \"rankvar\": 248, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1392, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1655, \"cat-2\": \"Density: 27\", \"cat_2_index\": 956, \"group\": [354.0, 75.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58359_BALBc-1_X01_Y02_487_496\", \"ini\": 1433, \"clust\": 2297, \"rank\": 2447, \"rankvar\": 2563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1393, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2024, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2082, \"group\": [2310.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58404_BALBc-1_X01_Y02_487_980\", \"ini\": 1432, \"clust\": 1033, \"rank\": 8, \"rankvar\": 403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1394, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 209, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1664, \"group\": [1030.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58545_BALBc-1_X01_Y02_489_773\", \"ini\": 1431, \"clust\": 2059, \"rank\": 2184, \"rankvar\": 817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1395, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2025, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2518, \"group\": [2061.0, 355.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58554_BALBc-1_X01_Y02_489_847\", \"ini\": 1430, \"clust\": 2264, \"rank\": 2414, \"rankvar\": 2208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1396, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2026, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2705, \"group\": [2265.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58565_BALBc-1_X01_Y02_489_942\", \"ini\": 1429, \"clust\": 2442, \"rank\": 1802, \"rankvar\": 1129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1397, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 210, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2519, \"group\": [2442.0, 416.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58586_BALBc-1_X01_Y02_49_255\", \"ini\": 1428, \"clust\": 629, \"rank\": 695, \"rankvar\": 354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1398, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1237, \"cat-2\": \"Density: 18\", \"cat_2_index\": 97, \"group\": [628.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58666_BALBc-1_X01_Y02_490_220\", \"ini\": 1427, \"clust\": 2046, \"rank\": 1818, \"rankvar\": 480, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1399, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 211, \"cat-2\": \"Density: 23\", \"cat_2_index\": 404, \"group\": [2046.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58836_BALBc-1_X01_Y02_492_696\", \"ini\": 1426, \"clust\": 2249, \"rank\": 2209, \"rankvar\": 1326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1400, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2027, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2612, \"group\": [2250.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58842_BALBc-1_X01_Y02_492_801\", \"ini\": 1425, \"clust\": 1137, \"rank\": 883, \"rankvar\": 1263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1401, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2028, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2458, \"group\": [1140.0, 130.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59277_BALBc-1_X01_Y02_497_952\", \"ini\": 1424, \"clust\": 1955, \"rank\": 1967, \"rankvar\": 1184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1402, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2029, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1985, \"group\": [1958.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59332_BALBc-1_X01_Y02_498_722\", \"ini\": 1423, \"clust\": 456, \"rank\": 524, \"rankvar\": 153, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1403, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2030, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2520, \"group\": [457.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59402_BALBc-1_X01_Y02_499_631\", \"ini\": 1422, \"clust\": 2469, \"rank\": 1603, \"rankvar\": 1215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1404, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2031, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2249, \"group\": [2468.0, 420.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59433_BALBc-1_X01_Y02_499_987\", \"ini\": 1421, \"clust\": 2298, \"rank\": 2616, \"rankvar\": 2452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1405, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2032, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1254, \"group\": [2298.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59455_BALBc-1_X01_Y02_5_514\", \"ini\": 1420, \"clust\": 1999, \"rank\": 2384, \"rankvar\": 2368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1406, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 846, \"cat-2\": \"Density: 13\", \"cat_2_index\": 19, \"group\": [2000.0, 352.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59697_BALBc-1_X01_Y02_502_382\", \"ini\": 1419, \"clust\": 427, \"rank\": 338, \"rankvar\": 1203, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1407, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2561, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1255, \"group\": [427.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59815_BALBc-1_X01_Y02_504_15\", \"ini\": 1418, \"clust\": 1336, \"rank\": 899, \"rankvar\": 424, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1408, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1970, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1106, \"group\": [1336.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60055_BALBc-1_X01_Y02_507_1005\", \"ini\": 1417, \"clust\": 2349, \"rank\": 2766, \"rankvar\": 2625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1409, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 212, \"cat-2\": \"Density: 26\", \"cat_2_index\": 806, \"group\": [2352.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60088_BALBc-1_X01_Y02_507_454\", \"ini\": 1416, \"clust\": 2385, \"rank\": 2138, \"rankvar\": 2678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1410, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 213, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1876, \"group\": [2385.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60268_BALBc-1_X01_Y02_509_70\", \"ini\": 1415, \"clust\": 453, \"rank\": 411, \"rankvar\": 571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1411, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1656, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1107, \"group\": [456.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60435_BALBc-1_X01_Y02_510_900\", \"ini\": 1414, \"clust\": 2326, \"rank\": 2723, \"rankvar\": 2643, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1412, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2033, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2664, \"group\": [2327.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60513_BALBc-1_X01_Y02_511_842\", \"ini\": 1413, \"clust\": 206, \"rank\": 983, \"rankvar\": 1206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1413, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 214, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2613, \"group\": [206.0, 61.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60591_BALBc-1_X01_Y02_512_878\", \"ini\": 1412, \"clust\": 408, \"rank\": 319, \"rankvar\": 1589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1414, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2034, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2561, \"group\": [407.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60694_BALBc-1_X01_Y02_514_485\", \"ini\": 1411, \"clust\": 2246, \"rank\": 2245, \"rankvar\": 1057, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1415, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2035, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2459, \"group\": [2246.0, 386.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60776_BALBc-1_X01_Y02_515_521\", \"ini\": 1410, \"clust\": 2386, \"rank\": 2065, \"rankvar\": 2742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1416, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 215, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2083, \"group\": [2386.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60841_BALBc-1_X01_Y02_516_211\", \"ini\": 1409, \"clust\": 911, \"rank\": 719, \"rankvar\": 81, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1417, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2562, \"cat-2\": \"Density: 23\", \"cat_2_index\": 405, \"group\": [912.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60860_BALBc-1_X01_Y02_516_505\", \"ini\": 1408, \"clust\": 2108, \"rank\": 2531, \"rankvar\": 2142, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1418, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 216, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2084, \"group\": [2108.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60875_BALBc-1_X01_Y02_516_818\", \"ini\": 1407, \"clust\": 1209, \"rank\": 1776, \"rankvar\": 1764, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1419, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2036, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2745, \"group\": [1209.0, 158.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60902_BALBc-1_X01_Y02_517_236\", \"ini\": 1406, \"clust\": 1171, \"rank\": 1147, \"rankvar\": 1837, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1420, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 217, \"cat-2\": \"Density: 21\", \"cat_2_index\": 209, \"group\": [1173.0, 141.0, 27.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61018_BALBc-1_X01_Y02_518_607\", \"ini\": 1405, \"clust\": 2251, \"rank\": 2588, \"rankvar\": 2552, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1421, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2037, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2164, \"group\": [2252.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61271_BALBc-1_X01_Y02_520_570\", \"ini\": 1404, \"clust\": 1038, \"rank\": 301, \"rankvar\": 447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1422, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2038, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2460, \"group\": [1049.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61339_BALBc-1_X01_Y02_521_434\", \"ini\": 1403, \"clust\": 514, \"rank\": 1161, \"rankvar\": 1240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1423, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2039, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1986, \"group\": [515.0, 82.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61380_BALBc-1_X01_Y02_521_947\", \"ini\": 1402, \"clust\": 2335, \"rank\": 2563, \"rankvar\": 1652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1424, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1238, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2320, \"group\": [2335.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61674_BALBc-1_X01_Y02_525_652\", \"ini\": 1401, \"clust\": 2259, \"rank\": 2512, \"rankvar\": 2671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1425, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1239, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2321, \"group\": [2264.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61704_BALBc-1_X01_Y02_525_994\", \"ini\": 1400, \"clust\": 2096, \"rank\": 2446, \"rankvar\": 2053, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1426, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2040, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1256, \"group\": [2096.0, 358.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61719_BALBc-1_X01_Y02_526_269\", \"ini\": 1399, \"clust\": 1213, \"rank\": 1455, \"rankvar\": 787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1427, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2563, \"cat-2\": \"Density: 20\", \"cat_2_index\": 158, \"group\": [1212.0, 160.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61758_BALBc-1_X01_Y02_526_905\", \"ini\": 1398, \"clust\": 422, \"rank\": 529, \"rankvar\": 251, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1428, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 218, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2461, \"group\": [426.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61791_BALBc-1_X01_Y02_527_347\", \"ini\": 1397, \"clust\": 2561, \"rank\": 1708, \"rankvar\": 208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1429, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2564, \"cat-2\": \"Density: 25\", \"cat_2_index\": 662, \"group\": [2559.0, 450.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61831_BALBc-1_X01_Y02_527_730\", \"ini\": 1396, \"clust\": 395, \"rank\": 64, \"rankvar\": 1620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1430, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2041, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2562, \"group\": [394.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61836_BALBc-1_X01_Y02_527_777\", \"ini\": 1395, \"clust\": 1560, \"rank\": 1446, \"rankvar\": 960, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1431, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2042, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2386, \"group\": [1563.0, 255.0, 53.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61953_BALBc-1_X01_Y02_529_35\", \"ini\": 1394, \"clust\": 313, \"rank\": 868, \"rankvar\": 1051, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1432, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1657, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1108, \"group\": [314.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61991_BALBc-1_X01_Y02_529_837\", \"ini\": 1393, \"clust\": 145, \"rank\": 802, \"rankvar\": 487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1433, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 219, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2563, \"group\": [144.0, 46.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62023_BALBc-1_X01_Y02_53_321\", \"ini\": 1392, \"clust\": 611, \"rank\": 325, \"rankvar\": 975, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1434, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1240, \"cat-2\": \"Density: 21\", \"cat_2_index\": 210, \"group\": [610.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62344_BALBc-1_X01_Y02_533_462\", \"ini\": 1391, \"clust\": 749, \"rank\": 184, \"rankvar\": 460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1435, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2043, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2322, \"group\": [753.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62399_BALBc-1_X01_Y02_534_418\", \"ini\": 1390, \"clust\": 351, \"rank\": 732, \"rankvar\": 391, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1436, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2044, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1987, \"group\": [351.0, 75.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62425_BALBc-1_X01_Y02_534_752\", \"ini\": 1389, \"clust\": 2779, \"rank\": 2196, \"rankvar\": 1437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1437, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2045, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2462, \"group\": [2782.0, 494.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62434_BALBc-1_X01_Y02_534_821\", \"ini\": 1388, \"clust\": 2396, \"rank\": 2112, \"rankvar\": 2278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1438, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2046, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2706, \"group\": [2396.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62442_BALBc-1_X01_Y02_534_888\", \"ini\": 1387, \"clust\": 225, \"rank\": 1053, \"rankvar\": 686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1439, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 220, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2463, \"group\": [230.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62492_BALBc-1_X01_Y02_535_508\", \"ini\": 1386, \"clust\": 237, \"rank\": 1176, \"rankvar\": 660, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1440, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2047, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2165, \"group\": [243.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62565_BALBc-1_X01_Y02_536_544\", \"ini\": 1385, \"clust\": 2334, \"rank\": 2589, \"rankvar\": 2244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1441, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2048, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2387, \"group\": [2337.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62586_BALBc-1_X01_Y02_536_855\", \"ini\": 1384, \"clust\": 2126, \"rank\": 2792, \"rankvar\": 2683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1442, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 221, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2614, \"group\": [2123.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62671_BALBc-1_X01_Y02_537_981\", \"ini\": 1383, \"clust\": 2388, \"rank\": 1719, \"rankvar\": 2558, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1443, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1241, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1770, \"group\": [2389.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62763_BALBc-1_X01_Y02_539_389\", \"ini\": 1382, \"clust\": 194, \"rank\": 1498, \"rankvar\": 547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1444, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2049, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1257, \"group\": [194.0, 60.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62777_BALBc-1_X01_Y02_539_557\", \"ini\": 1381, \"clust\": 2331, \"rank\": 2586, \"rankvar\": 2445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1445, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2050, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2250, \"group\": [2334.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62788_BALBc-1_X01_Y02_539_712\", \"ini\": 1380, \"clust\": 2344, \"rank\": 2822, \"rankvar\": 2714, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1446, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1242, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2388, \"group\": [2345.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62960_BALBc-1_X01_Y02_541_26\", \"ini\": 1379, \"clust\": 1126, \"rank\": 572, \"rankvar\": 535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1447, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1971, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1109, \"group\": [1124.0, 127.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62991_BALBc-1_X01_Y02_541_75\", \"ini\": 1378, \"clust\": 1129, \"rank\": 1155, \"rankvar\": 854, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1448, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 847, \"cat-2\": \"Density: 26\", \"cat_2_index\": 807, \"group\": [1130.0, 127.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63595_BALBc-1_X01_Y02_548_853\", \"ini\": 1377, \"clust\": 2374, \"rank\": 1817, \"rankvar\": 1585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1449, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2051, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2615, \"group\": [2384.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63686_BALBc-1_X01_Y02_549_947\", \"ini\": 1376, \"clust\": 2066, \"rank\": 2280, \"rankvar\": 756, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1450, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1243, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2323, \"group\": [2066.0, 356.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63912_BALBc-1_X01_Y02_551_904\", \"ini\": 1375, \"clust\": 133, \"rank\": 1379, \"rankvar\": 2034, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1451, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 222, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2521, \"group\": [132.0, 44.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63952_BALBc-1_X01_Y02_552_377\", \"ini\": 1374, \"clust\": 231, \"rank\": 1254, \"rankvar\": 721, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1452, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 223, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1110, \"group\": [232.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64119_BALBc-1_X01_Y02_554_637\", \"ini\": 1373, \"clust\": 2365, \"rank\": 1404, \"rankvar\": 2123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1453, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2052, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2564, \"group\": [2368.0, 391.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64205_BALBc-1_X01_Y02_555_738\", \"ini\": 1372, \"clust\": 604, \"rank\": 638, \"rankvar\": 689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1454, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 224, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2389, \"group\": [632.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64551_BALBc-1_X01_Y02_56_237\", \"ini\": 1371, \"clust\": 1901, \"rank\": 1651, \"rankvar\": 2181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1455, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1244, \"cat-2\": \"Density: 20\", \"cat_2_index\": 159, \"group\": [1901.0, 333.0, 74.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64699_BALBc-1_X01_Y02_560_94\", \"ini\": 1370, \"clust\": 2086, \"rank\": 2318, \"rankvar\": 1553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1456, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2455, \"cat-2\": \"Density: 27\", \"cat_2_index\": 957, \"group\": [2086.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64829_BALBc-1_X01_Y02_562_691\", \"ini\": 1369, \"clust\": 670, \"rank\": 168, \"rankvar\": 1512, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1457, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1245, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2616, \"group\": [671.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64850_BALBc-1_X01_Y02_562_963\", \"ini\": 1368, \"clust\": 2381, \"rank\": 1755, \"rankvar\": 2159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1458, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1246, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2251, \"group\": [2381.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64896_BALBc-1_X01_Y02_563_569\", \"ini\": 1367, \"clust\": 307, \"rank\": 526, \"rankvar\": 1207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1459, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2053, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2464, \"group\": [309.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64897_BALBc-1_X01_Y02_563_602\", \"ini\": 1366, \"clust\": 2122, \"rank\": 2644, \"rankvar\": 2188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1460, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2054, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2465, \"group\": [2121.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64941_BALBc-1_X01_Y02_564_31\", \"ini\": 1365, \"clust\": 1586, \"rank\": 1150, \"rankvar\": 258, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1461, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1972, \"cat-2\": \"Density: 24\", \"cat_2_index\": 522, \"group\": [1586.0, 266.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64994_BALBc-1_X01_Y02_564_874\", \"ini\": 1364, \"clust\": 1407, \"rank\": 821, \"rankvar\": 717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1462, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2055, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2466, \"group\": [1408.0, 203.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65052_BALBc-1_X01_Y02_565_665\", \"ini\": 1363, \"clust\": 2299, \"rank\": 2626, \"rankvar\": 2487, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1463, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 225, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2565, \"group\": [2299.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65064_BALBc-1_X01_Y02_565_759\", \"ini\": 1362, \"clust\": 2332, \"rank\": 2698, \"rankvar\": 2637, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1464, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2565, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2522, \"group\": [2332.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65075_BALBc-1_X01_Y02_565_925\", \"ini\": 1361, \"clust\": 631, \"rank\": 444, \"rankvar\": 736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1465, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 622, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2707, \"group\": [630.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65095_BALBc-1_X01_Y02_566_271\", \"ini\": 1360, \"clust\": 2784, \"rank\": 2811, \"rankvar\": 2680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1466, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2566, \"cat-2\": \"Density: 21\", \"cat_2_index\": 211, \"group\": [2788.0, 496.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65299_BALBc-1_X01_Y02_568_889\", \"ini\": 1359, \"clust\": 2459, \"rank\": 1823, \"rankvar\": 1445, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1467, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 226, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2566, \"group\": [2460.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65326_BALBc-1_X01_Y02_569_433\", \"ini\": 1358, \"clust\": 131, \"rank\": 1351, \"rankvar\": 430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1468, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2056, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2085, \"group\": [133.0, 44.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65481_BALBc-1_X01_Y02_570_500\", \"ini\": 1357, \"clust\": 2393, \"rank\": 2182, \"rankvar\": 2601, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1469, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2057, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2324, \"group\": [2393.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65533_BALBc-1_X01_Y02_571_197\", \"ini\": 1356, \"clust\": 2694, \"rank\": 2042, \"rankvar\": 526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1470, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2491, \"cat-2\": \"Density: 23\", \"cat_2_index\": 406, \"group\": [2694.0, 487.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65552_BALBc-1_X01_Y02_571_380\", \"ini\": 1355, \"clust\": 2289, \"rank\": 2260, \"rankvar\": 991, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1471, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2058, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1877, \"group\": [2289.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65700_BALBc-1_X01_Y02_573_349\", \"ini\": 1354, \"clust\": 331, \"rank\": 562, \"rankvar\": 1279, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1472, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2567, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1406, \"group\": [333.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65716_BALBc-1_X01_Y02_573_564\", \"ini\": 1353, \"clust\": 2296, \"rank\": 2672, \"rankvar\": 2618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1473, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2059, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2390, \"group\": [2297.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65744_BALBc-1_X01_Y02_573_899\", \"ini\": 1352, \"clust\": 126, \"rank\": 1361, \"rankvar\": 84, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1474, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 623, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2746, \"group\": [149.0, 47.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65912_BALBc-1_X01_Y02_575_992\", \"ini\": 1351, \"clust\": 1915, \"rank\": 2027, \"rankvar\": 1430, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1475, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 227, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1111, \"group\": [1916.0, 338.0, 75.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65965_BALBc-1_X01_Y02_576_941\", \"ini\": 1350, \"clust\": 2031, \"rank\": 2596, \"rankvar\": 2223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1476, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 624, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2617, \"group\": [2028.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66161_BALBc-1_X01_Y02_579_641\", \"ini\": 1349, \"clust\": 2005, \"rank\": 2000, \"rankvar\": 1393, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1477, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 228, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2467, \"group\": [2004.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66381_BALBc-1_X01_Y02_581_736\", \"ini\": 1348, \"clust\": 2269, \"rank\": 2429, \"rankvar\": 2451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1478, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 229, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2391, \"group\": [2270.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66539_BALBc-1_X01_Y02_583_714\", \"ini\": 1347, \"clust\": 2342, \"rank\": 2794, \"rankvar\": 2753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1479, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 230, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2567, \"group\": [2343.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66625_BALBc-1_X01_Y02_584_872\", \"ini\": 1346, \"clust\": 417, \"rank\": 192, \"rankvar\": 1773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1480, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2060, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2523, \"group\": [416.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66780_BALBc-1_X01_Y02_586_608\", \"ini\": 1345, \"clust\": 812, \"rank\": 350, \"rankvar\": 93, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 231, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2568, \"group\": [812.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66849_BALBc-1_X01_Y02_587_46\", \"ini\": 1344, \"clust\": 716, \"rank\": 119, \"rankvar\": 1790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1482, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 232, \"cat-2\": \"Density: 24\", \"cat_2_index\": 523, \"group\": [715.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67001_BALBc-1_X01_Y02_589_528\", \"ini\": 1343, \"clust\": 114, \"rank\": 545, \"rankvar\": 1433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1483, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2061, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2166, \"group\": [115.0, 39.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67087_BALBc-1_X01_Y02_59_592\", \"ini\": 1342, \"clust\": 1175, \"rank\": 1520, \"rankvar\": 452, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1484, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1247, \"cat-2\": \"Density: 20\", \"cat_2_index\": 160, \"group\": [1179.0, 146.0, 29.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67176_BALBc-1_X01_Y02_590_64\", \"ini\": 1341, \"clust\": 197, \"rank\": 1360, \"rankvar\": 485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1485, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1973, \"cat-2\": \"Density: 23\", \"cat_2_index\": 407, \"group\": [198.0, 60.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67186_BALBc-1_X01_Y02_590_689\", \"ini\": 1340, \"clust\": 2343, \"rank\": 2807, \"rankvar\": 2743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1486, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 233, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2468, \"group\": [2344.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67202_BALBc-1_X01_Y02_590_825\", \"ini\": 1339, \"clust\": 947, \"rank\": 306, \"rankvar\": 465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1487, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2062, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2618, \"group\": [947.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67369_BALBc-1_X01_Y02_593_1000\", \"ini\": 1338, \"clust\": 880, \"rank\": 103, \"rankvar\": 39, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1488, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1248, \"cat-2\": \"Density: 24\", \"cat_2_index\": 524, \"group\": [879.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67476_BALBc-1_X01_Y02_594_578\", \"ini\": 1337, \"clust\": 386, \"rank\": 592, \"rankvar\": 1096, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1489, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 234, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2569, \"group\": [389.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67538_BALBc-1_X01_Y02_595_430\", \"ini\": 1336, \"clust\": 2333, \"rank\": 2677, \"rankvar\": 2567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1490, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2063, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2167, \"group\": [2333.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67823_BALBc-1_X01_Y02_598_978\", \"ini\": 1335, \"clust\": 838, \"rank\": 28, \"rankvar\": 441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1491, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1249, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1532, \"group\": [841.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68029_BALBc-1_X01_Y02_600_513\", \"ini\": 1334, \"clust\": 2336, \"rank\": 2779, \"rankvar\": 2623, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2568, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2392, \"group\": [2336.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68242_BALBc-1_X01_Y02_603_235\", \"ini\": 1333, \"clust\": 2172, \"rank\": 2467, \"rankvar\": 532, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1493, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 235, \"cat-2\": \"Density: 20\", \"cat_2_index\": 161, \"group\": [2172.0, 364.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68295_BALBc-1_X01_Y02_603_794\", \"ini\": 1332, \"clust\": 1405, \"rank\": 1352, \"rankvar\": 684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1494, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2064, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2665, \"group\": [1406.0, 201.0, 40.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68341_BALBc-1_X01_Y02_604_634\", \"ini\": 1331, \"clust\": 1074, \"rank\": 573, \"rankvar\": 82, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1495, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2065, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2325, \"group\": [1072.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68346_BALBc-1_X01_Y02_604_71\", \"ini\": 1330, \"clust\": 2149, \"rank\": 2555, \"rankvar\": 1504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1496, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1250, \"cat-2\": \"Density: 25\", \"cat_2_index\": 663, \"group\": [2149.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68427_BALBc-1_X01_Y02_605_663\", \"ini\": 1329, \"clust\": 1217, \"rank\": 2132, \"rankvar\": 2659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1497, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2066, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2393, \"group\": [1217.0, 161.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68484_BALBc-1_X01_Y02_606_336\", \"ini\": 1328, \"clust\": 2218, \"rank\": 2681, \"rankvar\": 2091, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1498, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2569, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1258, \"group\": [2221.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68508_BALBc-1_X01_Y02_606_611\", \"ini\": 1327, \"clust\": 2445, \"rank\": 1560, \"rankvar\": 1345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1499, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2067, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2747, \"group\": [2445.0, 418.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68608_BALBc-1_X01_Y02_607_745\", \"ini\": 1326, \"clust\": 2281, \"rank\": 2425, \"rankvar\": 2243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1500, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 236, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2524, \"group\": [2283.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68626_BALBc-1_X01_Y02_607_953\", \"ini\": 1325, \"clust\": 2106, \"rank\": 2553, \"rankvar\": 954, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1501, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 625, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2326, \"group\": [2105.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68666_BALBc-1_X01_Y02_608_396\", \"ini\": 1324, \"clust\": 2111, \"rank\": 2453, \"rankvar\": 1039, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1502, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2570, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2086, \"group\": [2110.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68709_BALBc-1_X01_Y02_608_893\", \"ini\": 1323, \"clust\": 2024, \"rank\": 2281, \"rankvar\": 794, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1503, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2571, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2708, \"group\": [2026.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68790_BALBc-1_X01_Y02_609_760\", \"ini\": 1322, \"clust\": 146, \"rank\": 343, \"rankvar\": 2363, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1504, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 237, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2394, \"group\": [145.0, 46.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68847_BALBc-1_X01_Y02_61_732\", \"ini\": 1321, \"clust\": 2628, \"rank\": 1953, \"rankvar\": 2726, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1505, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2572, \"cat-2\": \"Density: 20\", \"cat_2_index\": 162, \"group\": [2632.0, 468.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68852_BALBc-1_X01_Y02_61_768\", \"ini\": 1320, \"clust\": 575, \"rank\": 549, \"rankvar\": 2310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1506, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2243, \"cat-2\": \"Density: 22\", \"cat_2_index\": 289, \"group\": [579.0, 100.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68930_BALBc-1_X01_Y02_610_841\", \"ini\": 1319, \"clust\": 1997, \"rank\": 2175, \"rankvar\": 1394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1507, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2573, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2525, \"group\": [1997.0, 351.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69043_BALBc-1_X01_Y02_612_22\", \"ini\": 1318, \"clust\": 2739, \"rank\": 2355, \"rankvar\": 1436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1508, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1974, \"cat-2\": \"Density: 24\", \"cat_2_index\": 525, \"group\": [2738.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69048_BALBc-1_X01_Y02_612_265\", \"ini\": 1317, \"clust\": 41, \"rank\": 1287, \"rankvar\": 1510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1509, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2574, \"cat-2\": \"Density: 22\", \"cat_2_index\": 290, \"group\": [42.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69070_BALBc-1_X01_Y02_612_557\", \"ini\": 1316, \"clust\": 2328, \"rank\": 2603, \"rankvar\": 2574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1510, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2068, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2469, \"group\": [2331.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69187_BALBc-1_X01_Y02_614_192\", \"ini\": 1315, \"clust\": 1722, \"rank\": 1614, \"rankvar\": 1426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1511, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2314, \"cat-2\": \"Density: 19\", \"cat_2_index\": 122, \"group\": [1724.0, 305.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69384_BALBc-1_X01_Y02_616_696\", \"ini\": 1314, \"clust\": 2356, \"rank\": 2782, \"rankvar\": 2586, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1512, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2069, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2470, \"group\": [2355.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69441_BALBc-1_X01_Y02_617_581\", \"ini\": 1313, \"clust\": 1376, \"rank\": 1762, \"rankvar\": 2131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1513, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2070, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2666, \"group\": [1375.0, 192.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69814_BALBc-1_X01_Y02_621_448\", \"ini\": 1312, \"clust\": 2300, \"rank\": 2554, \"rankvar\": 2595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1514, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2071, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2252, \"group\": [2300.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69943_BALBc-1_X01_Y02_622_815\", \"ini\": 1311, \"clust\": 259, \"rank\": 273, \"rankvar\": 2254, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1515, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2072, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2570, \"group\": [257.0, 68.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70167_BALBc-1_X01_Y02_625_622\", \"ini\": 1310, \"clust\": 2114, \"rank\": 2569, \"rankvar\": 1825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1516, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2073, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2667, \"group\": [2113.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70245_BALBc-1_X01_Y02_626_657\", \"ini\": 1309, \"clust\": 68, \"rank\": 1200, \"rankvar\": 555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1517, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2074, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2571, \"group\": [68.0, 23.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70250_BALBc-1_X01_Y02_626_738\", \"ini\": 1308, \"clust\": 2353, \"rank\": 2772, \"rankvar\": 2642, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1518, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2075, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2619, \"group\": [2353.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70390_BALBc-1_X01_Y02_628_794\", \"ini\": 1307, \"clust\": 1157, \"rank\": 793, \"rankvar\": 1752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1519, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 915, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2620, \"group\": [1158.0, 136.0, 25.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70677_BALBc-1_X01_Y02_631_569\", \"ini\": 1306, \"clust\": 843, \"rank\": 15, \"rankvar\": 200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1520, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 238, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2621, \"group\": [839.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70732_BALBc-1_X01_Y02_632_214\", \"ini\": 1305, \"clust\": 107, \"rank\": 1790, \"rankvar\": 2612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1521, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2575, \"cat-2\": \"Density: 22\", \"cat_2_index\": 291, \"group\": [107.0, 35.0, 11.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70788_BALBc-1_X01_Y02_632_885\", \"ini\": 1304, \"clust\": 919, \"rank\": 267, \"rankvar\": 1278, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1522, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2576, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2526, \"group\": [919.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70792_BALBc-1_X01_Y02_632_917\", \"ini\": 1303, \"clust\": 2038, \"rank\": 2159, \"rankvar\": 1924, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1523, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 626, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2622, \"group\": [2041.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71010_BALBc-1_X01_Y02_635_775\", \"ini\": 1302, \"clust\": 2313, \"rank\": 2813, \"rankvar\": 2715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1524, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2076, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2471, \"group\": [2312.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71015_BALBc-1_X01_Y02_635_841\", \"ini\": 1301, \"clust\": 2778, \"rank\": 2118, \"rankvar\": 2311, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1525, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 916, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2327, \"group\": [2778.0, 494.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71192_BALBc-1_X01_Y02_638_152\", \"ini\": 1300, \"clust\": 1254, \"rank\": 1346, \"rankvar\": 1342, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1526, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1251, \"cat-2\": \"Density: 23\", \"cat_2_index\": 408, \"group\": [1255.0, 172.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71313_BALBc-1_X01_Y02_639_527\", \"ini\": 1299, \"clust\": 2809, \"rank\": 2392, \"rankvar\": 2109, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1527, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2077, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2395, \"group\": [2809.0, 502.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71373_BALBc-1_X01_Y02_64_410\", \"ini\": 1298, \"clust\": 2535, \"rank\": 1929, \"rankvar\": 1187, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1528, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1252, \"cat-2\": \"Density: 21\", \"cat_2_index\": 212, \"group\": [2536.0, 444.0, 96.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71596_BALBc-1_X01_Y02_642_538\", \"ini\": 1297, \"clust\": 201, \"rank\": 1057, \"rankvar\": 1605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1529, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2078, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2328, \"group\": [201.0, 61.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71667_BALBc-1_X01_Y02_643_341\", \"ini\": 1296, \"clust\": 2377, \"rank\": 1484, \"rankvar\": 2198, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1530, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2079, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1771, \"group\": [2383.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71767_BALBc-1_X01_Y02_644_390\", \"ini\": 1295, \"clust\": 2136, \"rank\": 2427, \"rankvar\": 1080, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1531, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2080, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1988, \"group\": [2137.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71919_BALBc-1_X01_Y02_646_330\", \"ini\": 1294, \"clust\": 1638, \"rank\": 1709, \"rankvar\": 1316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1532, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2081, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1407, \"group\": [1637.0, 290.0, 65.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72032_BALBc-1_X01_Y02_647_871\", \"ini\": 1293, \"clust\": 2087, \"rank\": 2607, \"rankvar\": 1477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1533, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2577, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2623, \"group\": [2088.0, 358.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72139_BALBc-1_X01_Y02_649_280\", \"ini\": 1292, \"clust\": 1794, \"rank\": 2627, \"rankvar\": 2792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1534, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2578, \"cat-2\": \"Density: 26\", \"cat_2_index\": 808, \"group\": [1791.0, 320.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72165_BALBc-1_X01_Y02_649_642\", \"ini\": 1291, \"clust\": 2345, \"rank\": 2820, \"rankvar\": 2776, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1535, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2082, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2777, \"group\": [2346.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72176_BALBc-1_X01_Y02_649_80\", \"ini\": 1290, \"clust\": 391, \"rank\": 209, \"rankvar\": 1617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1536, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1253, \"cat-2\": \"Density: 22\", \"cat_2_index\": 292, \"group\": [399.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72245_BALBc-1_X01_Y02_65_662\", \"ini\": 1289, \"clust\": 1912, \"rank\": 1694, \"rankvar\": 2806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1537, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1254, \"cat-2\": \"Density: 21\", \"cat_2_index\": 213, \"group\": [1911.0, 335.0, 74.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72484_BALBc-1_X01_Y02_652_944\", \"ini\": 1288, \"clust\": 2402, \"rank\": 2149, \"rankvar\": 1797, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1538, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 239, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2253, \"group\": [2402.0, 394.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72716_BALBc-1_X01_Y02_656_182\", \"ini\": 1287, \"clust\": 1768, \"rank\": 2750, \"rankvar\": 2770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1539, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2579, \"cat-2\": \"Density: 24\", \"cat_2_index\": 526, \"group\": [1769.0, 315.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72777_BALBc-1_X01_Y02_656_712\", \"ini\": 1286, \"clust\": 2322, \"rank\": 2699, \"rankvar\": 2440, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1540, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2083, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2624, \"group\": [2321.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72835_BALBc-1_X01_Y02_657_361\", \"ini\": 1285, \"clust\": 755, \"rank\": 330, \"rankvar\": 31, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1541, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2580, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2254, \"group\": [755.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72877_BALBc-1_X01_Y02_657_890\", \"ini\": 1284, \"clust\": 374, \"rank\": 242, \"rankvar\": 786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 917, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2625, \"group\": [375.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72970_BALBc-1_X01_Y02_659_402\", \"ini\": 1283, \"clust\": 1006, \"rank\": 7, \"rankvar\": 1373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1543, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2084, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2168, \"group\": [1006.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72984_BALBc-1_X01_Y02_659_578\", \"ini\": 1282, \"clust\": 2283, \"rank\": 2602, \"rankvar\": 2645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1544, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2085, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2668, \"group\": [2282.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73026_BALBc-1_X01_Y02_659_964\", \"ini\": 1281, \"clust\": 1965, \"rank\": 2343, \"rankvar\": 2372, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1545, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2581, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1772, \"group\": [1965.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73130_BALBc-1_X01_Y02_660_371\", \"ini\": 1280, \"clust\": 503, \"rank\": 901, \"rankvar\": 1073, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1546, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 240, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2169, \"group\": [503.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73323_BALBc-1_X01_Y02_662_515\", \"ini\": 1279, \"clust\": 300, \"rank\": 653, \"rankvar\": 1593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1547, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2086, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2087, \"group\": [301.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73330_BALBc-1_X01_Y02_662_600\", \"ini\": 1278, \"clust\": 513, \"rank\": 1018, \"rankvar\": 337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1548, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2087, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2709, \"group\": [513.0, 80.0, 17.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73406_BALBc-1_X01_Y02_663_676\", \"ini\": 1277, \"clust\": 2303, \"rank\": 2439, \"rankvar\": 2461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1549, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2088, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2669, \"group\": [2302.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73682_BALBc-1_X01_Y02_667_559\", \"ini\": 1276, \"clust\": 418, \"rank\": 210, \"rankvar\": 1737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1550, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2089, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2626, \"group\": [417.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73864_BALBc-1_X01_Y02_669_904\", \"ini\": 1275, \"clust\": 2113, \"rank\": 2579, \"rankvar\": 1707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 241, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2396, \"group\": [2115.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74137_BALBc-1_X01_Y02_672_747\", \"ini\": 1274, \"clust\": 1018, \"rank\": 59, \"rankvar\": 35, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1552, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2090, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2572, \"group\": [1017.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74157_BALBc-1_X01_Y02_672_938\", \"ini\": 1273, \"clust\": 990, \"rank\": 34, \"rankvar\": 685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1553, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1255, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2170, \"group\": [990.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74183_BALBc-1_X01_Y02_673_288\", \"ini\": 1272, \"clust\": 673, \"rank\": 726, \"rankvar\": 2260, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1554, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2091, \"cat-2\": \"Density: 27\", \"cat_2_index\": 958, \"group\": [676.0, 109.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74202_BALBc-1_X01_Y02_673_537\", \"ini\": 1271, \"clust\": 1604, \"rank\": 1340, \"rankvar\": 1767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1555, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2092, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2255, \"group\": [1614.0, 271.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74319_BALBc-1_X01_Y02_674_785\", \"ini\": 1270, \"clust\": 1918, \"rank\": 1312, \"rankvar\": 1710, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1556, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 918, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2527, \"group\": [1918.0, 339.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74367_BALBc-1_X01_Y02_675_381\", \"ini\": 1269, \"clust\": 2034, \"rank\": 2657, \"rankvar\": 2331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1557, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 242, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2256, \"group\": [2033.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74379_BALBc-1_X01_Y02_675_428\", \"ini\": 1268, \"clust\": 2348, \"rank\": 2667, \"rankvar\": 2523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1558, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2093, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2171, \"group\": [2358.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74438_BALBc-1_X01_Y02_676_159\", \"ini\": 1267, \"clust\": 2633, \"rank\": 2492, \"rankvar\": 2644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1559, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2456, \"cat-2\": \"Density: 21\", \"cat_2_index\": 214, \"group\": [2634.0, 470.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74507_BALBc-1_X01_Y02_676_988\", \"ini\": 1266, \"clust\": 2438, \"rank\": 1636, \"rankvar\": 791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1560, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1256, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1112, \"group\": [2441.0, 415.0, 89.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74529_BALBc-1_X01_Y02_677_328\", \"ini\": 1265, \"clust\": 1994, \"rank\": 1942, \"rankvar\": 431, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1561, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2094, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1773, \"group\": [1995.0, 351.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74573_BALBc-1_X01_Y02_677_811\", \"ini\": 1264, \"clust\": 1527, \"rank\": 2094, \"rankvar\": 2747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1562, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1257, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2670, \"group\": [1528.0, 246.0, 50.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74598_BALBc-1_X01_Y02_678_172\", \"ini\": 1263, \"clust\": 1764, \"rank\": 2420, \"rankvar\": 2790, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1563, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2582, \"cat-2\": \"Density: 24\", \"cat_2_index\": 527, \"group\": [1762.0, 314.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74641_BALBc-1_X01_Y02_678_615\", \"ini\": 1262, \"clust\": 2277, \"rank\": 2637, \"rankvar\": 2691, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1564, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2095, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2778, \"group\": [2280.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74779_BALBc-1_X01_Y02_68_443\", \"ini\": 1261, \"clust\": 361, \"rank\": 505, \"rankvar\": 1880, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1565, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 704, \"cat-2\": \"Density: 26\", \"cat_2_index\": 809, \"group\": [359.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74924_BALBc-1_X01_Y02_681_731\", \"ini\": 1260, \"clust\": 2112, \"rank\": 2491, \"rankvar\": 1591, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1566, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2096, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2397, \"group\": [2111.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75385_BALBc-1_X01_Y02_687_918\", \"ini\": 1259, \"clust\": 1420, \"rank\": 919, \"rankvar\": 1002, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1567, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1258, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2472, \"group\": [1423.0, 205.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75452_BALBc-1_X01_Y02_688_793\", \"ini\": 1258, \"clust\": 776, \"rank\": 201, \"rankvar\": 1509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1568, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1259, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2573, \"group\": [776.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75503_BALBc-1_X01_Y02_689_468\", \"ini\": 1257, \"clust\": 2351, \"rank\": 2749, \"rankvar\": 2616, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1569, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2097, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2329, \"group\": [2349.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75575_BALBc-1_X01_Y02_69_548\", \"ini\": 1256, \"clust\": 2798, \"rank\": 2469, \"rankvar\": 2432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1570, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 243, \"cat-2\": \"Density: 26\", \"cat_2_index\": 810, \"group\": [2799.0, 497.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75777_BALBc-1_X01_Y02_692_441\", \"ini\": 1255, \"clust\": 1023, \"rank\": 3, \"rankvar\": 402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1571, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 244, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1989, \"group\": [1022.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75798_BALBc-1_X01_Y02_692_654\", \"ini\": 1254, \"clust\": 2241, \"rank\": 2021, \"rankvar\": 2093, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1572, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2098, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2748, \"group\": [2241.0, 385.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75805_BALBc-1_X01_Y02_692_719\", \"ini\": 1253, \"clust\": 900, \"rank\": 303, \"rankvar\": 57, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1573, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2099, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2749, \"group\": [899.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76045_BALBc-1_X01_Y02_695_763\", \"ini\": 1252, \"clust\": 1963, \"rank\": 2200, \"rankvar\": 2043, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1574, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1260, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2671, \"group\": [1964.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76047_BALBc-1_X01_Y02_695_820\", \"ini\": 1251, \"clust\": 2434, \"rank\": 1604, \"rankvar\": 2157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1261, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2627, \"group\": [2433.0, 412.0, 88.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76155_BALBc-1_X01_Y02_697_37\", \"ini\": 1250, \"clust\": 1351, \"rank\": 1397, \"rankvar\": 1005, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1576, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2492, \"cat-2\": \"Density: 20\", \"cat_2_index\": 163, \"group\": [1351.0, 188.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76157_BALBc-1_X01_Y02_697_390\", \"ini\": 1249, \"clust\": 1029, \"rank\": 14, \"rankvar\": 711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1577, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 245, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2257, \"group\": [1034.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76261_BALBc-1_X01_Y02_698_588\", \"ini\": 1248, \"clust\": 2203, \"rank\": 2727, \"rankvar\": 2808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1578, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2100, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2750, \"group\": [2202.0, 374.0, 80.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76284_BALBc-1_X01_Y02_698_894\", \"ini\": 1247, \"clust\": 1062, \"rank\": 517, \"rankvar\": 247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1579, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 919, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2710, \"group\": [1065.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76311_BALBc-1_X01_Y02_699_282\", \"ini\": 1246, \"clust\": 1881, \"rank\": 1956, \"rankvar\": 2186, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1580, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2583, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1259, \"group\": [1882.0, 325.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76337_BALBc-1_X01_Y02_699_564\", \"ini\": 1245, \"clust\": 2311, \"rank\": 2707, \"rankvar\": 2215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1581, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2101, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2628, \"group\": [2315.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76344_BALBc-1_X01_Y02_699_679\", \"ini\": 1244, \"clust\": 141, \"rank\": 1438, \"rankvar\": 1827, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1582, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2102, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2629, \"group\": [140.0, 45.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76479_BALBc-1_X01_Y02_70_471\", \"ini\": 1243, \"clust\": 1536, \"rank\": 1886, \"rankvar\": 2593, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1583, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2457, \"cat-2\": \"Density: 26\", \"cat_2_index\": 811, \"group\": [1537.0, 250.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76545_BALBc-1_X01_Y02_700_356\", \"ini\": 1242, \"clust\": 377, \"rank\": 299, \"rankvar\": 1634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1584, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 246, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2088, \"group\": [379.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76565_BALBc-1_X01_Y02_700_603\", \"ini\": 1241, \"clust\": 2321, \"rank\": 2748, \"rankvar\": 2787, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1585, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 247, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2751, \"group\": [2323.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76633_BALBc-1_X01_Y02_701_469\", \"ini\": 1240, \"clust\": 483, \"rank\": 537, \"rankvar\": 1261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1586, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 248, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2258, \"group\": [482.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77012_BALBc-1_X01_Y02_706_499\", \"ini\": 1239, \"clust\": 2437, \"rank\": 1752, \"rankvar\": 1222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1587, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2103, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2330, \"group\": [2438.0, 414.0, 89.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77022_BALBc-1_X01_Y02_706_622\", \"ini\": 1238, \"clust\": 1476, \"rank\": 1226, \"rankvar\": 2113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1588, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2104, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2711, \"group\": [1476.0, 221.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77055_BALBc-1_X01_Y02_706_998\", \"ini\": 1237, \"clust\": 2447, \"rank\": 1683, \"rankvar\": 812, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1589, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1262, \"cat-2\": \"Density: 22\", \"cat_2_index\": 293, \"group\": [2448.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77190_BALBc-1_X01_Y02_708_738\", \"ini\": 1236, \"clust\": 1125, \"rank\": 620, \"rankvar\": 1105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1590, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1263, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2574, \"group\": [1126.0, 127.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77401_BALBc-1_X01_Y02_710_828\", \"ini\": 1235, \"clust\": 366, \"rank\": 591, \"rankvar\": 314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1264, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2630, \"group\": [367.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77491_BALBc-1_X01_Y02_711_906\", \"ini\": 1234, \"clust\": 1969, \"rank\": 1966, \"rankvar\": 1733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1592, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 249, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2672, \"group\": [1970.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77533_BALBc-1_X01_Y02_712_413\", \"ini\": 1233, \"clust\": 2004, \"rank\": 1924, \"rankvar\": 1065, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1593, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2105, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2331, \"group\": [2006.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77644_BALBc-1_X01_Y02_713_803\", \"ini\": 1232, \"clust\": 1964, \"rank\": 2514, \"rankvar\": 2265, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1594, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1265, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2631, \"group\": [1967.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77833_BALBc-1_X01_Y02_716_257\", \"ini\": 1231, \"clust\": 1730, \"rank\": 1411, \"rankvar\": 1606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1595, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2584, \"cat-2\": \"Density: 24\", \"cat_2_index\": 528, \"group\": [1731.0, 309.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77991_BALBc-1_X01_Y02_718_159\", \"ini\": 1230, \"clust\": 1757, \"rank\": 2119, \"rankvar\": 1920, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1596, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2585, \"cat-2\": \"Density: 22\", \"cat_2_index\": 294, \"group\": [1760.0, 313.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78053_BALBc-1_X01_Y02_718_850\", \"ini\": 1229, \"clust\": 1927, \"rank\": 1950, \"rankvar\": 2617, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1597, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1266, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2473, \"group\": [1928.0, 343.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78060_BALBc-1_X01_Y02_718_925\", \"ini\": 1228, \"clust\": 404, \"rank\": 617, \"rankvar\": 1104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1598, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1267, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2575, \"group\": [405.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78089_BALBc-1_X01_Y02_719_369\", \"ini\": 1227, \"clust\": 2155, \"rank\": 2635, \"rankvar\": 2080, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1599, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 250, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2172, \"group\": [2155.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78113_BALBc-1_X01_Y02_719_632\", \"ini\": 1226, \"clust\": 2323, \"rank\": 2747, \"rankvar\": 2704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1600, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 251, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2752, \"group\": [2322.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78309_BALBc-1_X01_Y02_721_333\", \"ini\": 1225, \"clust\": 690, \"rank\": 569, \"rankvar\": 563, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1601, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 252, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1990, \"group\": [690.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78374_BALBc-1_X01_Y02_721_954\", \"ini\": 1224, \"clust\": 2486, \"rank\": 1205, \"rankvar\": 2648, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1602, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1268, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2089, \"group\": [2484.0, 424.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78457_BALBc-1_X01_Y02_722_887\", \"ini\": 1223, \"clust\": 2055, \"rank\": 2067, \"rankvar\": 980, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1603, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 253, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2816, \"group\": [2055.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78466_BALBc-1_X01_Y02_723_123\", \"ini\": 1222, \"clust\": 1167, \"rank\": 1710, \"rankvar\": 1742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1604, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 920, \"cat-2\": \"Density: 21\", \"cat_2_index\": 215, \"group\": [1167.0, 139.0, 27.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78589_BALBc-1_X01_Y02_724_723\", \"ini\": 1221, \"clust\": 2555, \"rank\": 1901, \"rankvar\": 2433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1605, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2106, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2474, \"group\": [2557.0, 449.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78729_BALBc-1_X01_Y02_726_667\", \"ini\": 1220, \"clust\": 329, \"rank\": 406, \"rankvar\": 1774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1606, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 254, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2753, \"group\": [330.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78765_BALBc-1_X01_Y02_727_233\", \"ini\": 1219, \"clust\": 1861, \"rank\": 2806, \"rankvar\": 2549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1607, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2586, \"cat-2\": \"Density: 25\", \"cat_2_index\": 664, \"group\": [1860.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78858_BALBc-1_X01_Y02_728_317\", \"ini\": 1218, \"clust\": 2247, \"rank\": 2097, \"rankvar\": 715, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1608, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 255, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2090, \"group\": [2247.0, 386.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78883_BALBc-1_X01_Y02_728_677\", \"ini\": 1217, \"clust\": 254, \"rank\": 947, \"rankvar\": 978, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1609, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2107, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2632, \"group\": [254.0, 67.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78937_BALBc-1_X01_Y02_729_454\", \"ini\": 1216, \"clust\": 1983, \"rank\": 2373, \"rankvar\": 1443, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1610, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2108, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2259, \"group\": [1983.0, 350.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78946_BALBc-1_X01_Y02_729_586\", \"ini\": 1215, \"clust\": 2350, \"rank\": 2803, \"rankvar\": 2529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1611, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2109, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2673, \"group\": [2351.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79000_BALBc-1_X01_Y02_73_364\", \"ini\": 1214, \"clust\": 654, \"rank\": 761, \"rankvar\": 62, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1612, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1269, \"cat-2\": \"Density: 21\", \"cat_2_index\": 216, \"group\": [654.0, 106.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79124_BALBc-1_X01_Y02_730_931\", \"ini\": 1213, \"clust\": 1968, \"rank\": 2061, \"rankvar\": 1492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1613, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1270, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2332, \"group\": [1969.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79128_BALBc-1_X01_Y02_730_977\", \"ini\": 1212, \"clust\": 2691, \"rank\": 2693, \"rankvar\": 2748, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1614, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1271, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1533, \"group\": [2691.0, 485.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79171_BALBc-1_X01_Y02_731_534\", \"ini\": 1211, \"clust\": 2446, \"rank\": 1506, \"rankvar\": 1180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1615, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2110, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2633, \"group\": [2446.0, 418.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79269_BALBc-1_X01_Y02_732_742\", \"ini\": 1210, \"clust\": 1229, \"rank\": 1517, \"rankvar\": 863, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1616, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1272, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2634, \"group\": [1228.0, 164.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79364_BALBc-1_X01_Y02_733_888\", \"ini\": 1209, \"clust\": 885, \"rank\": 261, \"rankvar\": 68, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1617, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1273, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2635, \"group\": [885.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79543_BALBc-1_X01_Y02_735_827\", \"ini\": 1208, \"clust\": 788, \"rank\": 35, \"rankvar\": 252, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1618, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 256, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2528, \"group\": [788.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79586_BALBc-1_X01_Y02_736_403\", \"ini\": 1207, \"clust\": 306, \"rank\": 890, \"rankvar\": 903, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1619, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2111, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2398, \"group\": [310.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79601_BALBc-1_X01_Y02_736_604\", \"ini\": 1206, \"clust\": 412, \"rank\": 111, \"rankvar\": 1205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1620, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 257, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2636, \"group\": [411.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79632_BALBc-1_X01_Y02_737_250\", \"ini\": 1205, \"clust\": 425, \"rank\": 187, \"rankvar\": 1058, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1621, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 258, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1113, \"group\": [424.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79634_BALBc-1_X01_Y02_737_3\", \"ini\": 1204, \"clust\": 2748, \"rank\": 2400, \"rankvar\": 1310, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1622, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2812, \"cat-2\": \"Density: 25\", \"cat_2_index\": 665, \"group\": [2749.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79643_BALBc-1_X01_Y02_737_366\", \"ini\": 1203, \"clust\": 2262, \"rank\": 2662, \"rankvar\": 2688, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1623, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 259, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2260, \"group\": [2262.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79664_BALBc-1_X01_Y02_737_57\", \"ini\": 1202, \"clust\": 1272, \"rank\": 1215, \"rankvar\": 603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1624, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2493, \"cat-2\": \"Density: 22\", \"cat_2_index\": 295, \"group\": [1272.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79820_BALBc-1_X01_Y02_739_546\", \"ini\": 1201, \"clust\": 2268, \"rank\": 2534, \"rankvar\": 2579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1625, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2112, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2754, \"group\": [2268.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79964_BALBc-1_X01_Y02_740_484\", \"ini\": 1200, \"clust\": 2315, \"rank\": 2818, \"rankvar\": 2598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1626, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 260, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1991, \"group\": [2314.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80233_BALBc-1_X01_Y02_744_315\", \"ini\": 1199, \"clust\": 2372, \"rank\": 2034, \"rankvar\": 2005, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1627, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1274, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1992, \"group\": [2372.0, 392.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80367_BALBc-1_X01_Y02_746_112\", \"ini\": 1198, \"clust\": 1267, \"rank\": 1222, \"rankvar\": 2282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1628, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2315, \"cat-2\": \"Density: 20\", \"cat_2_index\": 164, \"group\": [1270.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80487_BALBc-1_X01_Y02_747_644\", \"ini\": 1197, \"clust\": 1096, \"rank\": 234, \"rankvar\": 584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1629, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2113, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2779, \"group\": [1096.0, 119.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80586_BALBc-1_X01_Y02_748_800\", \"ini\": 1196, \"clust\": 2065, \"rank\": 2494, \"rankvar\": 1655, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1630, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1275, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2637, \"group\": [2071.0, 356.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80591_BALBc-1_X01_Y02_748_849\", \"ini\": 1195, \"clust\": 2212, \"rank\": 2332, \"rankvar\": 875, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1631, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 261, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2712, \"group\": [2215.0, 379.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80621_BALBc-1_X01_Y02_749_281\", \"ini\": 1194, \"clust\": 1687, \"rank\": 1503, \"rankvar\": 1610, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1632, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 262, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1534, \"group\": [1687.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80660_BALBc-1_X01_Y02_749_710\", \"ini\": 1193, \"clust\": 1220, \"rank\": 1812, \"rankvar\": 1740, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1633, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 263, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2713, \"group\": [1221.0, 162.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80840_BALBc-1_X01_Y02_750_977\", \"ini\": 1192, \"clust\": 643, \"rank\": 666, \"rankvar\": 1287, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1634, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1276, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1665, \"group\": [644.0, 105.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80920_BALBc-1_X01_Y02_752_157\", \"ini\": 1191, \"clust\": 191, \"rank\": 880, \"rankvar\": 92, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1635, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 264, \"cat-2\": \"Density: 21\", \"cat_2_index\": 217, \"group\": [190.0, 57.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80933_BALBc-1_X01_Y02_752_347\", \"ini\": 1190, \"clust\": 915, \"rank\": 544, \"rankvar\": 822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1636, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1277, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2173, \"group\": [918.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80959_BALBc-1_X01_Y02_752_681\", \"ini\": 1189, \"clust\": 2093, \"rank\": 2128, \"rankvar\": 1463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1637, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 265, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2576, \"group\": [2094.0, 358.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81055_BALBc-1_X01_Y02_753_730\", \"ini\": 1188, \"clust\": 2316, \"rank\": 2645, \"rankvar\": 2491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1638, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 266, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2674, \"group\": [2317.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81183_BALBc-1_X01_Y02_755_360\", \"ini\": 1187, \"clust\": 2367, \"rank\": 1717, \"rankvar\": 1385, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1639, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1278, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2174, \"group\": [2367.0, 391.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81243_BALBc-1_X01_Y02_756_213\", \"ini\": 1186, \"clust\": 1749, \"rank\": 2161, \"rankvar\": 1404, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1640, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2587, \"cat-2\": \"Density: 24\", \"cat_2_index\": 529, \"group\": [1750.0, 311.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81269_BALBc-1_X01_Y02_756_466\", \"ini\": 1185, \"clust\": 2261, \"rank\": 2565, \"rankvar\": 2674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1641, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 267, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2091, \"group\": [2261.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81277_BALBc-1_X01_Y02_756_573\", \"ini\": 1184, \"clust\": 979, \"rank\": 341, \"rankvar\": 239, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1642, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 268, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2802, \"group\": [980.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81309_BALBc-1_X01_Y02_756_874\", \"ini\": 1183, \"clust\": 1502, \"rank\": 1695, \"rankvar\": 865, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1643, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1279, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2638, \"group\": [1502.0, 234.0, 46.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81353_BALBc-1_X01_Y02_757_444\", \"ini\": 1182, \"clust\": 2307, \"rank\": 2385, \"rankvar\": 2255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1644, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2114, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2175, \"group\": [2309.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81355_BALBc-1_X01_Y02_757_476\", \"ini\": 1181, \"clust\": 1052, \"rank\": 737, \"rankvar\": 116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1645, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2115, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2092, \"group\": [1053.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81446_BALBc-1_X01_Y02_758_596\", \"ini\": 1180, \"clust\": 2285, \"rank\": 2480, \"rankvar\": 2227, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1646, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 269, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2780, \"group\": [2286.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81458_BALBc-1_X01_Y02_758_756\", \"ini\": 1179, \"clust\": 864, \"rank\": 63, \"rankvar\": 965, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1647, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1280, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2714, \"group\": [864.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81459_BALBc-1_X01_Y02_758_783\", \"ini\": 1178, \"clust\": 1347, \"rank\": 1537, \"rankvar\": 909, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1648, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1281, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2675, \"group\": [1348.0, 188.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81463_BALBc-1_X01_Y02_758_825\", \"ini\": 1177, \"clust\": 1895, \"rank\": 1933, \"rankvar\": 645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1649, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 270, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2676, \"group\": [1896.0, 330.0, 72.0, 19.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81725_BALBc-1_X01_Y02_761_43\", \"ini\": 1176, \"clust\": 1194, \"rank\": 1836, \"rankvar\": 1588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1650, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2316, \"cat-2\": \"Density: 20\", \"cat_2_index\": 165, \"group\": [1197.0, 152.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81746_BALBc-1_X01_Y02_761_621\", \"ini\": 1175, \"clust\": 2100, \"rank\": 2487, \"rankvar\": 2240, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1651, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2116, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2715, \"group\": [2101.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81892_BALBc-1_X01_Y02_763_542\", \"ini\": 1174, \"clust\": 2301, \"rank\": 2518, \"rankvar\": 2569, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1652, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 271, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2716, \"group\": [2301.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82092_BALBc-1_X01_Y02_766_413\", \"ini\": 1173, \"clust\": 2389, \"rank\": 2120, \"rankvar\": 2405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1653, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2117, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2176, \"group\": [2392.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82120_BALBc-1_X01_Y02_766_839\", \"ini\": 1172, \"clust\": 5, \"rank\": 1011, \"rankvar\": 2213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1654, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 272, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2781, \"group\": [4.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82269_BALBc-1_X01_Y02_768_578\", \"ini\": 1171, \"clust\": 2030, \"rank\": 2348, \"rankvar\": 1723, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1655, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 273, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2677, \"group\": [2030.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82462_BALBc-1_X01_Y02_770_223\", \"ini\": 1170, \"clust\": 1712, \"rank\": 1748, \"rankvar\": 2686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1656, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 274, \"cat-2\": \"Density: 25\", \"cat_2_index\": 666, \"group\": [1712.0, 304.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82468_BALBc-1_X01_Y02_770_255\", \"ini\": 1169, \"clust\": 1636, \"rank\": 1554, \"rankvar\": 630, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1657, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 275, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1408, \"group\": [1640.0, 291.0, 65.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82542_BALBc-1_X01_Y02_771_302\", \"ini\": 1168, \"clust\": 1076, \"rank\": 649, \"rankvar\": 943, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1658, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1282, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1774, \"group\": [1078.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82661_BALBc-1_X01_Y02_772_660\", \"ini\": 1167, \"clust\": 136, \"rank\": 1138, \"rankvar\": 928, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1659, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2118, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2782, \"group\": [138.0, 45.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82801_BALBc-1_X01_Y02_774_517\", \"ini\": 1166, \"clust\": 83, \"rank\": 1105, \"rankvar\": 641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1660, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2119, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2333, \"group\": [84.0, 28.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82803_BALBc-1_X01_Y02_774_554\", \"ini\": 1165, \"clust\": 189, \"rank\": 1127, \"rankvar\": 620, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1661, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 276, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2678, \"group\": [193.0, 59.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82911_BALBc-1_X01_Y02_776_103\", \"ini\": 1164, \"clust\": 2821, \"rank\": 2064, \"rankvar\": 1701, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1662, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1283, \"cat-2\": \"Density: 20\", \"cat_2_index\": 166, \"group\": [2820.0, 504.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83429_BALBc-1_X01_Y02_781_749\", \"ini\": 1163, \"clust\": 2039, \"rank\": 2019, \"rankvar\": 2306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1663, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 277, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2679, \"group\": [2040.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83606_BALBc-1_X01_Y02_784_170\", \"ini\": 1162, \"clust\": 929, \"rank\": 246, \"rankvar\": 1506, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1664, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 278, \"cat-2\": \"Density: 24\", \"cat_2_index\": 530, \"group\": [932.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83627_BALBc-1_X01_Y02_784_444\", \"ini\": 1161, \"clust\": 415, \"rank\": 348, \"rankvar\": 1546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1665, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 279, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2177, \"group\": [421.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83644_BALBc-1_X01_Y02_784_688\", \"ini\": 1160, \"clust\": 2368, \"rank\": 1892, \"rankvar\": 1250, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1666, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 280, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2755, \"group\": [2371.0, 392.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83649_BALBc-1_X01_Y02_784_705\", \"ini\": 1159, \"clust\": 2120, \"rank\": 2762, \"rankvar\": 2555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1667, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 281, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2577, \"group\": [2120.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83656_BALBc-1_X01_Y02_784_772\", \"ini\": 1158, \"clust\": 1101, \"rank\": 1054, \"rankvar\": 810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1668, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 282, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2756, \"group\": [1102.0, 121.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83744_BALBc-1_X01_Y02_785_846\", \"ini\": 1157, \"clust\": 2504, \"rank\": 1656, \"rankvar\": 2398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1669, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1284, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2803, \"group\": [2504.0, 430.0, 92.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83780_BALBc-1_X01_Y02_786_374\", \"ini\": 1156, \"clust\": 1572, \"rank\": 2015, \"rankvar\": 545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1670, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1285, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2178, \"group\": [1572.0, 258.0, 54.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84081_BALBc-1_X01_Y02_789_906\", \"ini\": 1155, \"clust\": 2645, \"rank\": 2080, \"rankvar\": 1285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1671, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1286, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2717, \"group\": [2645.0, 476.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84286_BALBc-1_X01_Y02_791_823\", \"ini\": 1154, \"clust\": 649, \"rank\": 893, \"rankvar\": 576, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1672, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 283, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2783, \"group\": [650.0, 105.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84428_BALBc-1_X01_Y02_793_482\", \"ini\": 1153, \"clust\": 2110, \"rank\": 2578, \"rankvar\": 1537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1673, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2120, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2578, \"group\": [2112.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84437_BALBc-1_X01_Y02_793_558\", \"ini\": 1152, \"clust\": 2317, \"rank\": 2604, \"rankvar\": 2345, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1674, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 284, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2639, \"group\": [2318.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84444_BALBc-1_X01_Y02_793_629\", \"ini\": 1151, \"clust\": 2320, \"rank\": 2620, \"rankvar\": 2727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1675, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2121, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2718, \"group\": [2324.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84524_BALBc-1_X01_Y02_794_639\", \"ini\": 1150, \"clust\": 886, \"rank\": 69, \"rankvar\": 215, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1676, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2122, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2719, \"group\": [886.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84668_BALBc-1_X01_Y02_796_252\", \"ini\": 1149, \"clust\": 1888, \"rank\": 2263, \"rankvar\": 173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1677, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 285, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1114, \"group\": [1888.0, 327.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84693_BALBc-1_X01_Y02_796_606\", \"ini\": 1148, \"clust\": 119, \"rank\": 1565, \"rankvar\": 829, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1678, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2123, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2822, \"group\": [126.0, 42.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84771_BALBc-1_X01_Y02_797_576\", \"ini\": 1147, \"clust\": 987, \"rank\": 90, \"rankvar\": 312, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1679, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 286, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2804, \"group\": [986.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84890_BALBc-1_X01_Y02_799_133\", \"ini\": 1146, \"clust\": 1265, \"rank\": 1003, \"rankvar\": 2201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1680, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1287, \"cat-2\": \"Density: 22\", \"cat_2_index\": 296, \"group\": [1265.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85210_BALBc-1_X01_Y02_801_416\", \"ini\": 1145, \"clust\": 208, \"rank\": 966, \"rankvar\": 743, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1681, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2124, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2334, \"group\": [209.0, 61.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85318_BALBc-1_X01_Y02_802_791\", \"ini\": 1144, \"clust\": 1726, \"rank\": 1422, \"rankvar\": 961, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1682, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 287, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2720, \"group\": [1727.0, 307.0, 68.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85392_BALBc-1_X01_Y02_803_774\", \"ini\": 1143, \"clust\": 1985, \"rank\": 2178, \"rankvar\": 1818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1683, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 288, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2757, \"group\": [1985.0, 350.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85429_BALBc-1_X01_Y02_804_316\", \"ini\": 1142, \"clust\": 2399, \"rank\": 1900, \"rankvar\": 792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1684, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1288, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1535, \"group\": [2399.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85448_BALBc-1_X01_Y02_804_541\", \"ini\": 1141, \"clust\": 1454, \"rank\": 1781, \"rankvar\": 381, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1685, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 289, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2640, \"group\": [1456.0, 216.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85463_BALBc-1_X01_Y02_804_714\", \"ini\": 1140, \"clust\": 771, \"rank\": 446, \"rankvar\": 392, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1686, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 290, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2721, \"group\": [772.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85557_BALBc-1_X01_Y02_805_753\", \"ini\": 1139, \"clust\": 2370, \"rank\": 1825, \"rankvar\": 683, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1687, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 291, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2758, \"group\": [2370.0, 392.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85602_BALBc-1_X01_Y02_806_33\", \"ini\": 1138, \"clust\": 258, \"rank\": 807, \"rankvar\": 332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1688, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2458, \"cat-2\": \"Density: 25\", \"cat_2_index\": 667, \"group\": [259.0, 68.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85669_BALBc-1_X01_Y02_807_182\", \"ini\": 1137, \"clust\": 1793, \"rank\": 2721, \"rankvar\": 2774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1689, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2588, \"cat-2\": \"Density: 27\", \"cat_2_index\": 959, \"group\": [1793.0, 320.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85834_BALBc-1_X01_Y02_809_436\", \"ini\": 1136, \"clust\": 2270, \"rank\": 2254, \"rankvar\": 2507, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1690, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2125, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2261, \"group\": [2271.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85868_BALBc-1_X01_Y02_809_912\", \"ini\": 1135, \"clust\": 1070, \"rank\": 155, \"rankvar\": 1755, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1691, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1289, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2805, \"group\": [1069.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85898_BALBc-1_X01_Y02_81_389\", \"ini\": 1134, \"clust\": 346, \"rank\": 931, \"rankvar\": 1706, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1692, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1290, \"cat-2\": \"Density: 21\", \"cat_2_index\": 218, \"group\": [345.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85923_BALBc-1_X01_Y02_81_743\", \"ini\": 1133, \"clust\": 1824, \"rank\": 2659, \"rankvar\": 2781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1693, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2589, \"cat-2\": \"Density: 25\", \"cat_2_index\": 668, \"group\": [1827.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85974_BALBc-1_X01_Y02_810_459\", \"ini\": 1132, \"clust\": 2392, \"rank\": 2153, \"rankvar\": 2639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1694, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 292, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2262, \"group\": [2395.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85979_BALBc-1_X01_Y02_810_520\", \"ini\": 1131, \"clust\": 2263, \"rank\": 2350, \"rankvar\": 2174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1695, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2126, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2475, \"group\": [2263.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86074_BALBc-1_X01_Y02_811_664\", \"ini\": 1130, \"clust\": 1974, \"rank\": 2082, \"rankvar\": 1150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1696, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 293, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2759, \"group\": [1982.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86098_BALBc-1_X01_Y02_811_975\", \"ini\": 1129, \"clust\": 155, \"rank\": 1169, \"rankvar\": 901, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1697, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1291, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1666, \"group\": [156.0, 50.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86157_BALBc-1_X01_Y02_812_892\", \"ini\": 1128, \"clust\": 528, \"rank\": 1094, \"rankvar\": 274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1698, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1292, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2806, \"group\": [532.0, 88.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86213_BALBc-1_X01_Y02_813_595\", \"ini\": 1127, \"clust\": 2266, \"rank\": 2567, \"rankvar\": 2619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1699, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 294, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2680, \"group\": [2269.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86243_BALBc-1_X01_Y02_813_835\", \"ini\": 1126, \"clust\": 2072, \"rank\": 2101, \"rankvar\": 504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1700, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 295, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2722, \"group\": [2074.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86335_BALBc-1_X01_Y02_814_809\", \"ini\": 1125, \"clust\": 953, \"rank\": 126, \"rankvar\": 351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1701, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 296, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2723, \"group\": [951.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86391_BALBc-1_X01_Y02_815_690\", \"ini\": 1124, \"clust\": 1043, \"rank\": 257, \"rankvar\": 210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1702, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 297, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2784, \"group\": [1040.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86425_BALBc-1_X01_Y02_816_222\", \"ini\": 1123, \"clust\": 1457, \"rank\": 2226, \"rankvar\": 1447, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1703, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 298, \"cat-2\": \"Density: 27\", \"cat_2_index\": 960, \"group\": [1461.0, 218.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86647_BALBc-1_X01_Y02_819_250\", \"ini\": 1122, \"clust\": 2169, \"rank\": 2315, \"rankvar\": 395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1704, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 299, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1115, \"group\": [2169.0, 364.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86676_BALBc-1_X01_Y02_819_581\", \"ini\": 1121, \"clust\": 2354, \"rank\": 2768, \"rankvar\": 2649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1705, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 300, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2681, \"group\": [2354.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86754_BALBc-1_X01_Y02_82_796\", \"ini\": 1120, \"clust\": 1868, \"rank\": 2752, \"rankvar\": 2089, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1706, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1293, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1116, \"group\": [1868.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86790_BALBc-1_X01_Y02_820_302\", \"ini\": 1119, \"clust\": 1230, \"rank\": 1371, \"rankvar\": 1154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1707, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 301, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1775, \"group\": [1233.0, 165.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86794_BALBc-1_X01_Y02_820_348\", \"ini\": 1118, \"clust\": 807, \"rank\": 419, \"rankvar\": 51, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1708, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1294, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2093, \"group\": [808.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86829_BALBc-1_X01_Y02_820_75\", \"ini\": 1117, \"clust\": 31, \"rank\": 644, \"rankvar\": 2222, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1709, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1295, \"cat-2\": \"Density: 22\", \"cat_2_index\": 297, \"group\": [33.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86839_BALBc-1_X01_Y02_820_855\", \"ini\": 1116, \"clust\": 477, \"rank\": 903, \"rankvar\": 413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1710, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1296, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2785, \"group\": [480.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86899_BALBc-1_X01_Y02_821_630\", \"ini\": 1115, \"clust\": 242, \"rank\": 1260, \"rankvar\": 1037, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1711, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 302, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2724, \"group\": [239.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87034_BALBc-1_X01_Y02_823_34\", \"ini\": 1114, \"clust\": 1355, \"rank\": 1799, \"rankvar\": 2122, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1712, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2459, \"cat-2\": \"Density: 25\", \"cat_2_index\": 669, \"group\": [1356.0, 189.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87221_BALBc-1_X01_Y02_825_543\", \"ini\": 1113, \"clust\": 2363, \"rank\": 1803, \"rankvar\": 2170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1713, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 303, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2579, \"group\": [2363.0, 390.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87372_BALBc-1_X01_Y02_827_730\", \"ini\": 1112, \"clust\": 2453, \"rank\": 1610, \"rankvar\": 661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1714, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 304, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2682, \"group\": [2453.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87470_BALBc-1_X01_Y02_828_775\", \"ini\": 1111, \"clust\": 1984, \"rank\": 2333, \"rankvar\": 1728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1715, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2127, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2760, \"group\": [1984.0, 350.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87639_BALBc-1_X01_Y02_830_197\", \"ini\": 1110, \"clust\": 1667, \"rank\": 1853, \"rankvar\": 2685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1716, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1297, \"cat-2\": \"Density: 24\", \"cat_2_index\": 531, \"group\": [1668.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87741_BALBc-1_X01_Y02_831_562\", \"ini\": 1109, \"clust\": 2098, \"rank\": 2403, \"rankvar\": 1771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1717, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 305, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2641, \"group\": [2098.0, 358.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87745_BALBc-1_X01_Y02_831_662\", \"ini\": 1108, \"clust\": 2382, \"rank\": 1806, \"rankvar\": 2458, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1718, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1298, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2725, \"group\": [2379.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87997_BALBc-1_X01_Y02_835_259\", \"ini\": 1107, \"clust\": 1727, \"rank\": 1383, \"rankvar\": 1449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1719, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 306, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1409, \"group\": [1728.0, 307.0, 68.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88002_BALBc-1_X01_Y02_835_327\", \"ini\": 1106, \"clust\": 998, \"rank\": 275, \"rankvar\": 510, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1720, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2590, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1993, \"group\": [999.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88095_BALBc-1_X01_Y02_836_515\", \"ini\": 1105, \"clust\": 2273, \"rank\": 2632, \"rankvar\": 2484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1721, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2128, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2580, \"group\": [2274.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88266_BALBc-1_X01_Y02_838_738\", \"ini\": 1104, \"clust\": 301, \"rank\": 953, \"rankvar\": 1123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1722, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 307, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2761, \"group\": [302.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88354_BALBc-1_X01_Y02_839_825\", \"ini\": 1103, \"clust\": 1543, \"rank\": 2206, \"rankvar\": 2716, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1723, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 308, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2823, \"group\": [1544.0, 253.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88357_BALBc-1_X01_Y02_839_852\", \"ini\": 1102, \"clust\": 2007, \"rank\": 1891, \"rankvar\": 1442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1724, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1299, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2817, \"group\": [2015.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88496_BALBc-1_X01_Y02_840_696\", \"ini\": 1101, \"clust\": 203, \"rank\": 1216, \"rankvar\": 945, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1725, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1300, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2762, \"group\": [203.0, 61.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88510_BALBc-1_X01_Y02_840_903\", \"ini\": 1100, \"clust\": 1518, \"rank\": 1333, \"rankvar\": 562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1726, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1301, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2807, \"group\": [1518.0, 241.0, 48.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88541_BALBc-1_X01_Y02_841_302\", \"ini\": 1099, \"clust\": 2398, \"rank\": 1770, \"rankvar\": 1143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1727, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2591, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1994, \"group\": [2401.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88548_BALBc-1_X01_Y02_841_352\", \"ini\": 1098, \"clust\": 2400, \"rank\": 1896, \"rankvar\": 1370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1728, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2129, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2335, \"group\": [2400.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88675_BALBc-1_X01_Y02_843_224\", \"ini\": 1097, \"clust\": 1648, \"rank\": 1201, \"rankvar\": 782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1729, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1302, \"cat-2\": \"Density: 26\", \"cat_2_index\": 812, \"group\": [1651.0, 297.0, 66.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88693_BALBc-1_X01_Y02_843_446\", \"ini\": 1096, \"clust\": 2327, \"rank\": 2666, \"rankvar\": 2590, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1730, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2130, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2399, \"group\": [2328.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88704_BALBc-1_X01_Y02_843_602\", \"ini\": 1095, \"clust\": 2279, \"rank\": 2704, \"rankvar\": 2640, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1731, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2131, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2763, \"group\": [2279.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88810_BALBc-1_X01_Y02_844_808\", \"ini\": 1094, \"clust\": 624, \"rank\": 740, \"rankvar\": 1193, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1732, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 309, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2764, \"group\": [631.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88868_BALBc-1_X01_Y02_845_558\", \"ini\": 1093, \"clust\": 831, \"rank\": 20, \"rankvar\": 1176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1733, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 310, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2683, \"group\": [831.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88930_BALBc-1_X01_Y02_846_528\", \"ini\": 1092, \"clust\": 1116, \"rank\": 1257, \"rankvar\": 1819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1734, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 311, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2400, \"group\": [1121.0, 126.0, 23.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89014_BALBc-1_X01_Y02_847_497\", \"ini\": 1091, \"clust\": 1939, \"rank\": 1968, \"rankvar\": 320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1735, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2132, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2476, \"group\": [1944.0, 346.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89025_BALBc-1_X01_Y02_847_613\", \"ini\": 1090, \"clust\": 487, \"rank\": 857, \"rankvar\": 779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1736, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2133, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2808, \"group\": [488.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89310_BALBc-1_X01_Y02_850_368\", \"ini\": 1089, \"clust\": 232, \"rank\": 873, \"rankvar\": 1114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1737, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2134, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2336, \"group\": [233.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89480_BALBc-1_X01_Y02_852_712\", \"ini\": 1088, \"clust\": 835, \"rank\": 198, \"rankvar\": 25, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1738, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1303, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2684, \"group\": [844.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89535_BALBc-1_X01_Y02_853_431\", \"ini\": 1087, \"clust\": 2403, \"rank\": 1850, \"rankvar\": 1388, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1739, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2135, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2401, \"group\": [2403.0, 394.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89554_BALBc-1_X01_Y02_853_632\", \"ini\": 1086, \"clust\": 848, \"rank\": 107, \"rankvar\": 59, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1740, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 312, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2685, \"group\": [846.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89574_BALBc-1_X01_Y02_853_890\", \"ini\": 1085, \"clust\": 192, \"rank\": 945, \"rankvar\": 423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1741, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1304, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2786, \"group\": [191.0, 57.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89619_BALBc-1_X01_Y02_854_42\", \"ini\": 1084, \"clust\": 27, \"rank\": 300, \"rankvar\": 2067, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1742, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1975, \"cat-2\": \"Density: 25\", \"cat_2_index\": 670, \"group\": [27.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89667_BALBc-1_X01_Y02_854_933\", \"ini\": 1083, \"clust\": 202, \"rank\": 1211, \"rankvar\": 1024, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1743, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1305, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2642, \"group\": [202.0, 61.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89670_BALBc-1_X01_Y02_854_970\", \"ini\": 1082, \"clust\": 832, \"rank\": 18, \"rankvar\": 633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1744, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1306, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1776, \"group\": [832.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89808_BALBc-1_X01_Y02_856_577\", \"ini\": 1081, \"clust\": 809, \"rank\": 260, \"rankvar\": 102, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1745, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2136, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2787, \"group\": [810.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89834_BALBc-1_X01_Y02_856_743\", \"ini\": 1080, \"clust\": 2646, \"rank\": 1954, \"rankvar\": 977, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1746, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2137, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2686, \"group\": [2646.0, 476.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89916_BALBc-1_X01_Y02_857_916\", \"ini\": 1079, \"clust\": 1044, \"rank\": 165, \"rankvar\": 298, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1747, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1307, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2765, \"group\": [1044.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90046_BALBc-1_X01_Y02_859_832\", \"ini\": 1078, \"clust\": 406, \"rank\": 487, \"rankvar\": 1291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1748, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 313, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2788, \"group\": [410.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90073_BALBc-1_X01_Y02_86_249\", \"ini\": 1077, \"clust\": 66, \"rank\": 1373, \"rankvar\": 58, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1749, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1308, \"cat-2\": \"Density: 24\", \"cat_2_index\": 532, \"group\": [69.0, 24.0, 7.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90207_BALBc-1_X01_Y02_860_848\", \"ini\": 1076, \"clust\": 1612, \"rank\": 1345, \"rankvar\": 2545, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1750, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1309, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2726, \"group\": [1610.0, 271.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90347_BALBc-1_X01_Y02_862_790\", \"ini\": 1075, \"clust\": 2099, \"rank\": 2500, \"rankvar\": 2168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1751, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2138, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2687, \"group\": [2099.0, 358.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90484_BALBc-1_X01_Y02_864_649\", \"ini\": 1074, \"clust\": 2325, \"rank\": 2738, \"rankvar\": 2428, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1752, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 314, \"cat-2\": \"Density: 51\", \"cat_2_index\": 2824, \"group\": [2326.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90517_BALBc-1_X01_Y02_865_117\", \"ini\": 1073, \"clust\": 1314, \"rank\": 1245, \"rankvar\": 199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1753, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1310, \"cat-2\": \"Density: 25\", \"cat_2_index\": 671, \"group\": [1315.0, 183.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90526_BALBc-1_X01_Y02_865_275\", \"ini\": 1072, \"clust\": 762, \"rank\": 502, \"rankvar\": 17, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1754, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2592, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1536, \"group\": [763.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90627_BALBc-1_X01_Y02_866_672\", \"ini\": 1071, \"clust\": 2204, \"rank\": 2489, \"rankvar\": 2728, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1755, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1311, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2766, \"group\": [2203.0, 374.0, 80.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90717_BALBc-1_X01_Y02_867_77\", \"ini\": 1070, \"clust\": 1165, \"rank\": 1677, \"rankvar\": 185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1756, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1312, \"cat-2\": \"Density: 23\", \"cat_2_index\": 409, \"group\": [1166.0, 138.0, 26.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90877_BALBc-1_X01_Y02_869_470\", \"ini\": 1069, \"clust\": 810, \"rank\": 294, \"rankvar\": 150, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1757, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 315, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2477, \"group\": [811.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91022_BALBc-1_X01_Y02_870_430\", \"ini\": 1068, \"clust\": 499, \"rank\": 835, \"rankvar\": 1106, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1758, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 316, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2263, \"group\": [504.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91052_BALBc-1_X01_Y02_870_812\", \"ini\": 1067, \"clust\": 1081, \"rank\": 426, \"rankvar\": 225, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1759, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 317, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2809, \"group\": [1081.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91129_BALBc-1_X01_Y02_871_893\", \"ini\": 1066, \"clust\": 1535, \"rank\": 1784, \"rankvar\": 1399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1760, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1313, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2789, \"group\": [1535.0, 249.0, 51.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91141_BALBc-1_X01_Y02_872_170\", \"ini\": 1065, \"clust\": 9, \"rank\": 1767, \"rankvar\": 1555, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1761, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1314, \"cat-2\": \"Density: 24\", \"cat_2_index\": 533, \"group\": [10.0, 6.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91166_BALBc-1_X01_Y02_872_397\", \"ini\": 1064, \"clust\": 665, \"rank\": 238, \"rankvar\": 2261, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1762, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2139, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2337, \"group\": [672.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91495_BALBc-1_X01_Y02_876_48\", \"ini\": 1063, \"clust\": 330, \"rank\": 540, \"rankvar\": 1446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1763, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2593, \"cat-2\": \"Density: 24\", \"cat_2_index\": 534, \"group\": [334.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91511_BALBc-1_X01_Y02_876_712\", \"ini\": 1062, \"clust\": 656, \"rank\": 935, \"rankvar\": 14, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1764, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1315, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2581, \"group\": [656.0, 107.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91600_BALBc-1_X01_Y02_877_848\", \"ini\": 1061, \"clust\": 632, \"rank\": 431, \"rankvar\": 1034, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1765, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1316, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2688, \"group\": [635.0, 104.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91734_BALBc-1_X01_Y02_879_562\", \"ini\": 1060, \"clust\": 1357, \"rank\": 1876, \"rankvar\": 870, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1766, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2140, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2478, \"group\": [1358.0, 190.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91760_BALBc-1_X01_Y02_879_747\", \"ini\": 1059, \"clust\": 1567, \"rank\": 2009, \"rankvar\": 1784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1767, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2141, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2767, \"group\": [1567.0, 256.0, 53.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91896_BALBc-1_X01_Y02_880_618\", \"ini\": 1058, \"clust\": 2170, \"rank\": 2345, \"rankvar\": 1464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1768, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2142, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2768, \"group\": [2170.0, 364.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91987_BALBc-1_X01_Y02_881_761\", \"ini\": 1057, \"clust\": 1349, \"rank\": 1527, \"rankvar\": 862, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1769, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2143, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2727, \"group\": [1352.0, 188.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92091_BALBc-1_X01_Y02_883_354\", \"ini\": 1056, \"clust\": 134, \"rank\": 1213, \"rankvar\": 1270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1770, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 318, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2264, \"group\": [134.0, 45.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92101_BALBc-1_X01_Y02_883_525\", \"ini\": 1055, \"clust\": 86, \"rank\": 588, \"rankvar\": 806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1771, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 319, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2479, \"group\": [86.0, 28.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92192_BALBc-1_X01_Y02_884_787\", \"ini\": 1054, \"clust\": 1107, \"rank\": 680, \"rankvar\": 1022, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1772, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2144, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2790, \"group\": [1107.0, 122.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92232_BALBc-1_X01_Y02_885_452\", \"ini\": 1053, \"clust\": 674, \"rank\": 723, \"rankvar\": 1333, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1773, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 320, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2402, \"group\": [674.0, 109.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92319_BALBc-1_X01_Y02_886_720\", \"ini\": 1052, \"clust\": 844, \"rank\": 473, \"rankvar\": 11, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1774, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 321, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2728, \"group\": [849.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92390_BALBc-1_X01_Y02_887_673\", \"ini\": 1051, \"clust\": 370, \"rank\": 554, \"rankvar\": 622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1775, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1317, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2729, \"group\": [371.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92396_BALBc-1_X01_Y02_887_730\", \"ini\": 1050, \"clust\": 2032, \"rank\": 2508, \"rankvar\": 1961, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1776, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 322, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2582, \"group\": [2029.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92444_BALBc-1_X01_Y02_888_377\", \"ini\": 1049, \"clust\": 1037, \"rank\": 346, \"rankvar\": 763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1777, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 323, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2403, \"group\": [1038.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92446_BALBc-1_X01_Y02_888_392\", \"ini\": 1048, \"clust\": 2040, \"rank\": 2136, \"rankvar\": 2014, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1778, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 324, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2265, \"group\": [2038.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92557_BALBc-1_X01_Y02_889_842\", \"ini\": 1047, \"clust\": 1966, \"rank\": 2293, \"rankvar\": 2297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1779, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1318, \"cat-2\": \"Density: 49\", \"cat_2_index\": 2810, \"group\": [1966.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92644_BALBc-1_X01_Y02_890_129\", \"ini\": 1046, \"clust\": 1671, \"rank\": 2075, \"rankvar\": 2509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1780, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2594, \"cat-2\": \"Density: 27\", \"cat_2_index\": 961, \"group\": [1672.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92729_BALBc-1_X01_Y02_891_16\", \"ini\": 1045, \"clust\": 195, \"rank\": 1474, \"rankvar\": 374, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1781, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2595, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1117, \"group\": [195.0, 60.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92737_BALBc-1_X01_Y02_891_219\", \"ini\": 1044, \"clust\": 1317, \"rank\": 1086, \"rankvar\": 283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1782, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1319, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1260, \"group\": [1318.0, 184.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92747_BALBc-1_X01_Y02_891_339\", \"ini\": 1043, \"clust\": 2405, \"rank\": 1909, \"rankvar\": 1181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1783, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2596, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2266, \"group\": [2406.0, 396.0, 83.0, 22.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92963_BALBc-1_X01_Y02_894_270\", \"ini\": 1042, \"clust\": 2209, \"rank\": 2566, \"rankvar\": 2351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1784, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2597, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1410, \"group\": [2208.0, 377.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92994_BALBc-1_X01_Y02_894_579\", \"ini\": 1041, \"clust\": 1524, \"rank\": 1511, \"rankvar\": 1960, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1785, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2145, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2643, \"group\": [1525.0, 245.0, 50.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93017_BALBc-1_X01_Y02_894_895\", \"ini\": 1040, \"clust\": 1511, \"rank\": 1348, \"rankvar\": 1241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1786, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1320, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2644, \"group\": [1512.0, 240.0, 48.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93023_BALBc-1_X01_Y02_894_972\", \"ini\": 1039, \"clust\": 1149, \"rank\": 673, \"rankvar\": 201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1787, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1321, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1261, \"group\": [1147.0, 132.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93058_BALBc-1_X01_Y02_895_417\", \"ini\": 1038, \"clust\": 1925, \"rank\": 1729, \"rankvar\": 2325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1788, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 325, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2179, \"group\": [1925.0, 342.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93151_BALBc-1_X01_Y02_896_819\", \"ini\": 1037, \"clust\": 1108, \"rank\": 610, \"rankvar\": 1514, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1789, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1322, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2791, \"group\": [1108.0, 122.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93204_BALBc-1_X01_Y02_897_498\", \"ini\": 1036, \"clust\": 2433, \"rank\": 2005, \"rankvar\": 1457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1790, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 326, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2480, \"group\": [2435.0, 412.0, 88.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93411_BALBc-1_X01_Y02_9_314\", \"ini\": 1035, \"clust\": 984, \"rank\": 125, \"rankvar\": 277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1791, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1323, \"cat-2\": \"Density: 12\", \"cat_2_index\": 8, \"group\": [984.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93436_BALBc-1_X01_Y02_9_681\", \"ini\": 1034, \"clust\": 2435, \"rank\": 1911, \"rankvar\": 2479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1792, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 327, \"cat-2\": \"Density: 12\", \"cat_2_index\": 9, \"group\": [2434.0, 412.0, 88.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93586_BALBc-1_X01_Y02_900_660\", \"ini\": 1033, \"clust\": 2216, \"rank\": 2562, \"rankvar\": 1219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1793, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 328, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2645, \"group\": [2217.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93735_BALBc-1_X01_Y02_902_696\", \"ini\": 1032, \"clust\": 1120, \"rank\": 1015, \"rankvar\": 1520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1794, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 329, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2646, \"group\": [1118.0, 125.0, 23.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93759_BALBc-1_X01_Y02_903_167\", \"ini\": 1031, \"clust\": 397, \"rank\": 280, \"rankvar\": 687, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1795, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2813, \"cat-2\": \"Density: 25\", \"cat_2_index\": 672, \"group\": [396.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93900_BALBc-1_X01_Y02_905_185\", \"ini\": 1030, \"clust\": 1463, \"rank\": 2122, \"rankvar\": 1361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1796, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2598, \"cat-2\": \"Density: 27\", \"cat_2_index\": 962, \"group\": [1462.0, 219.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93911_BALBc-1_X01_Y02_905_312\", \"ini\": 1029, \"clust\": 356, \"rank\": 583, \"rankvar\": 2114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1797, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2599, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1878, \"group\": [357.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94069_BALBc-1_X01_Y02_907_471\", \"ini\": 1028, \"clust\": 2256, \"rank\": 2374, \"rankvar\": 2088, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1798, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 330, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2481, \"group\": [2256.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94075_BALBc-1_X01_Y02_907_532\", \"ini\": 1027, \"clust\": 452, \"rank\": 293, \"rankvar\": 913, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1799, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 331, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2180, \"group\": [452.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94153_BALBc-1_X01_Y02_908_623\", \"ini\": 1026, \"clust\": 252, \"rank\": 1230, \"rankvar\": 730, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1800, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1976, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2583, \"group\": [253.0, 66.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94234_BALBc-1_X01_Y02_909_73\", \"ini\": 1025, \"clust\": 1754, \"rank\": 2131, \"rankvar\": 1075, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1801, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2600, \"cat-2\": \"Density: 25\", \"cat_2_index\": 673, \"group\": [1755.0, 312.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94463_BALBc-1_X01_Y02_911_790\", \"ini\": 1024, \"clust\": 2009, \"rank\": 2309, \"rankvar\": 2149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1802, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1324, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2730, \"group\": [2008.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94538_BALBc-1_X01_Y02_912_752\", \"ini\": 1023, \"clust\": 2115, \"rank\": 2485, \"rankvar\": 1396, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1803, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2317, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2769, \"group\": [2114.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94605_BALBc-1_X01_Y02_913_728\", \"ini\": 1022, \"clust\": 381, \"rank\": 611, \"rankvar\": 1353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1804, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2318, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2584, \"group\": [382.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94692_BALBc-1_X01_Y02_914_972\", \"ini\": 1021, \"clust\": 238, \"rank\": 1236, \"rankvar\": 1210, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1805, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1325, \"cat-2\": \"Density: 27\", \"cat_2_index\": 963, \"group\": [242.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94737_BALBc-1_X01_Y02_915_653\", \"ini\": 1020, \"clust\": 1978, \"rank\": 2137, \"rankvar\": 2116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1806, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 332, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2647, \"group\": [1980.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94800_BALBc-1_X01_Y02_916_392\", \"ini\": 1019, \"clust\": 184, \"rank\": 834, \"rankvar\": 988, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1807, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 333, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2404, \"group\": [184.0, 55.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94865_BALBc-1_X01_Y02_917_414\", \"ini\": 1018, \"clust\": 256, \"rank\": 745, \"rankvar\": 1355, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1808, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 334, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2267, \"group\": [263.0, 68.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94917_BALBc-1_X01_Y02_918_144\", \"ini\": 1017, \"clust\": 2538, \"rank\": 1732, \"rankvar\": 271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1809, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2601, \"cat-2\": \"Density: 23\", \"cat_2_index\": 410, \"group\": [2539.0, 445.0, 96.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94976_BALBc-1_X01_Y02_918_685\", \"ini\": 1016, \"clust\": 2097, \"rank\": 2409, \"rankvar\": 1119, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1810, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 335, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2585, \"group\": [2097.0, 358.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95031_BALBc-1_X01_Y02_919_496\", \"ini\": 1015, \"clust\": 1926, \"rank\": 1701, \"rankvar\": 2294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1811, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 336, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2181, \"group\": [1926.0, 342.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95151_BALBc-1_X01_Y02_920_106\", \"ini\": 1014, \"clust\": 697, \"rank\": 286, \"rankvar\": 784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1812, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2602, \"cat-2\": \"Density: 25\", \"cat_2_index\": 674, \"group\": [696.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95247_BALBc-1_X01_Y02_921_339\", \"ini\": 1013, \"clust\": 319, \"rank\": 772, \"rankvar\": 1438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1813, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 337, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2268, \"group\": [323.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95323_BALBc-1_X01_Y02_922_248\", \"ini\": 1012, \"clust\": 1690, \"rank\": 1959, \"rankvar\": 2167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1814, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2603, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1411, \"group\": [1692.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95511_BALBc-1_X01_Y02_924_552\", \"ini\": 1011, \"clust\": 2179, \"rank\": 2395, \"rankvar\": 2423, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1815, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 338, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2405, \"group\": [2180.0, 367.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95603_BALBc-1_X01_Y02_925_713\", \"ini\": 1010, \"clust\": 1943, \"rank\": 2197, \"rankvar\": 324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1816, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2319, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2770, \"group\": [1941.0, 346.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95670_BALBc-1_X01_Y02_926_592\", \"ini\": 1009, \"clust\": 1581, \"rank\": 711, \"rankvar\": 1777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1817, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1977, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2586, \"group\": [1582.0, 264.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95679_BALBc-1_X01_Y02_926_670\", \"ini\": 1008, \"clust\": 808, \"rank\": 484, \"rankvar\": 41, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1818, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 339, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2689, \"group\": [809.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95702_BALBc-1_X01_Y02_926_934\", \"ini\": 1007, \"clust\": 2181, \"rank\": 2725, \"rankvar\": 2803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1819, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1326, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2529, \"group\": [2181.0, 368.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95782_BALBc-1_X01_Y02_927_871\", \"ini\": 1006, \"clust\": 1013, \"rank\": 78, \"rankvar\": 377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1820, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1327, \"cat-2\": \"Density: 50\", \"cat_2_index\": 2818, \"group\": [1036.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95802_BALBc-1_X01_Y02_928_19\", \"ini\": 1005, \"clust\": 773, \"rank\": 404, \"rankvar\": 230, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1821, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2604, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1262, \"group\": [774.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95821_BALBc-1_X01_Y02_928_362\", \"ini\": 1004, \"clust\": 1115, \"rank\": 1124, \"rankvar\": 126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1822, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 340, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2482, \"group\": [1115.0, 124.0, 23.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95912_BALBc-1_X01_Y02_929_417\", \"ini\": 1003, \"clust\": 999, \"rank\": 185, \"rankvar\": 394, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1823, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 341, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2483, \"group\": [1000.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95959_BALBc-1_X01_Y02_93_212\", \"ini\": 1002, \"clust\": 538, \"rank\": 458, \"rankvar\": 1680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1824, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2244, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1263, \"group\": [538.0, 91.0, 20.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96011_BALBc-1_X01_Y02_93_891\", \"ini\": 1001, \"clust\": 2161, \"rank\": 2761, \"rankvar\": 2629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1825, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2320, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1264, \"group\": [2161.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96026_BALBc-1_X01_Y02_930_183\", \"ini\": 1000, \"clust\": 1718, \"rank\": 2609, \"rankvar\": 2777, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1826, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2605, \"cat-2\": \"Density: 25\", \"cat_2_index\": 675, \"group\": [1719.0, 305.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96035_BALBc-1_X01_Y02_930_310\", \"ini\": 999, \"clust\": 2490, \"rank\": 1591, \"rankvar\": 231, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1827, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2321, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2094, \"group\": [2493.0, 426.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96049_BALBc-1_X01_Y02_930_522\", \"ini\": 998, \"clust\": 1495, \"rank\": 1829, \"rankvar\": 1455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1828, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 342, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2182, \"group\": [1498.0, 232.0, 45.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96059_BALBc-1_X01_Y02_930_618\", \"ini\": 997, \"clust\": 2017, \"rank\": 1987, \"rankvar\": 805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1829, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 343, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2587, \"group\": [2016.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96129_BALBc-1_X01_Y02_931_639\", \"ini\": 996, \"clust\": 1065, \"rank\": 665, \"rankvar\": 713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1830, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 344, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2588, \"group\": [1066.0, 115.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96358_BALBc-1_X01_Y02_934_786\", \"ini\": 995, \"clust\": 287, \"rank\": 468, \"rankvar\": 1667, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1831, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1328, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2690, \"group\": [288.0, 71.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96494_BALBc-1_X01_Y02_936_390\", \"ini\": 994, \"clust\": 2035, \"rank\": 1955, \"rankvar\": 1087, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1832, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 345, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2484, \"group\": [2036.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96556_BALBc-1_X01_Y02_937_334\", \"ini\": 993, \"clust\": 371, \"rank\": 429, \"rankvar\": 309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1833, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 346, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2485, \"group\": [372.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96785_BALBc-1_X01_Y02_94_443\", \"ini\": 992, \"clust\": 1168, \"rank\": 1199, \"rankvar\": 1806, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1834, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2460, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1118, \"group\": [1168.0, 139.0, 27.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96861_BALBc-1_X01_Y02_940_441\", \"ini\": 991, \"clust\": 210, \"rank\": 1425, \"rankvar\": 308, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1835, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 347, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2406, \"group\": [211.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97094_BALBc-1_X01_Y02_943_554\", \"ini\": 990, \"clust\": 2375, \"rank\": 1609, \"rankvar\": 1149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1836, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 348, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2183, \"group\": [2375.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97328_BALBc-1_X01_Y02_946_392\", \"ini\": 989, \"clust\": 143, \"rank\": 986, \"rankvar\": 1535, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1837, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 349, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2530, \"group\": [143.0, 46.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97429_BALBc-1_X01_Y02_947_898\", \"ini\": 988, \"clust\": 296, \"rank\": 358, \"rankvar\": 2092, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1838, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1329, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2691, \"group\": [296.0, 73.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97487_BALBc-1_X01_Y02_948_863\", \"ini\": 987, \"clust\": 1204, \"rank\": 1654, \"rankvar\": 570, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1839, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1658, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2771, \"group\": [1207.0, 157.0, 32.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97559_BALBc-1_X01_Y02_949_682\", \"ini\": 986, \"clust\": 128, \"rank\": 905, \"rankvar\": 168, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1840, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 350, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2692, \"group\": [129.0, 43.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97703_BALBc-1_X01_Y02_950_608\", \"ini\": 985, \"clust\": 851, \"rank\": 170, \"rankvar\": 64, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1841, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2146, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2648, \"group\": [851.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97845_BALBc-1_X01_Y02_952_483\", \"ini\": 984, \"clust\": 1933, \"rank\": 2098, \"rankvar\": 1939, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1842, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 351, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2531, \"group\": [1933.0, 344.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97851_BALBc-1_X01_Y02_952_581\", \"ini\": 983, \"clust\": 2068, \"rank\": 2377, \"rankvar\": 1476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1843, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 352, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2532, \"group\": [2070.0, 356.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97911_BALBc-1_X01_Y02_953_421\", \"ini\": 982, \"clust\": 457, \"rank\": 582, \"rankvar\": 549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1844, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 353, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2649, \"group\": [458.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98041_BALBc-1_X01_Y02_955_11\", \"ini\": 981, \"clust\": 1598, \"rank\": 1509, \"rankvar\": 473, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1845, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1330, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1265, \"group\": [1601.0, 270.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98050_BALBc-1_X01_Y02_955_156\", \"ini\": 980, \"clust\": 1280, \"rank\": 1501, \"rankvar\": 439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1846, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2606, \"cat-2\": \"Density: 27\", \"cat_2_index\": 964, \"group\": [1282.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98324_BALBc-1_X01_Y02_958_818\", \"ini\": 979, \"clust\": 780, \"rank\": 239, \"rankvar\": 513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1847, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1331, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2589, \"group\": [781.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98534_BALBc-1_X01_Y02_960_63\", \"ini\": 978, \"clust\": 988, \"rank\": 138, \"rankvar\": 587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1848, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2607, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1412, \"group\": [987.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98596_BALBc-1_X01_Y02_961_438\", \"ini\": 977, \"clust\": 2454, \"rank\": 1628, \"rankvar\": 883, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1849, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2608, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2693, \"group\": [2454.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98752_BALBc-1_X01_Y02_963_631\", \"ini\": 976, \"clust\": 2274, \"rank\": 2523, \"rankvar\": 2263, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1850, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2147, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2486, \"group\": [2275.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98837_BALBc-1_X01_Y02_964_510\", \"ini\": 975, \"clust\": 2090, \"rank\": 2713, \"rankvar\": 2256, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1851, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 354, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2407, \"group\": [2091.0, 358.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98921_BALBc-1_X01_Y02_965_673\", \"ini\": 974, \"clust\": 1640, \"rank\": 1998, \"rankvar\": 2156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1852, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 355, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2694, \"group\": [1643.0, 293.0, 65.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98956_BALBc-1_X01_Y02_966_344\", \"ini\": 973, \"clust\": 233, \"rank\": 1190, \"rankvar\": 731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1853, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 356, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2487, \"group\": [234.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99211_BALBc-1_X01_Y02_969_41\", \"ini\": 972, \"clust\": 1913, \"rank\": 1440, \"rankvar\": 2417, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1854, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1332, \"cat-2\": \"Density: 26\", \"cat_2_index\": 813, \"group\": [1912.0, 335.0, 74.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99244_BALBc-1_X01_Y02_969_891\", \"ini\": 971, \"clust\": 2094, \"rank\": 2571, \"rankvar\": 2526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1855, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1333, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2488, \"group\": [2095.0, 358.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99284_BALBc-1_X01_Y02_97_366\", \"ini\": 970, \"clust\": 247, \"rank\": 599, \"rankvar\": 352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1856, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1334, \"cat-2\": \"Density: 24\", \"cat_2_index\": 535, \"group\": [245.0, 63.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99306_BALBc-1_X01_Y02_97_619\", \"ini\": 969, \"clust\": 1907, \"rank\": 1337, \"rankvar\": 2073, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1857, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1335, \"cat-2\": \"Density: 24\", \"cat_2_index\": 536, \"group\": [1907.0, 334.0, 74.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99355_BALBc-1_X01_Y02_970_403\", \"ini\": 968, \"clust\": 2413, \"rank\": 1512, \"rankvar\": 669, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1858, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 357, \"cat-2\": \"Density: 45\", \"cat_2_index\": 2695, \"group\": [2414.0, 400.0, 83.0, 22.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99386_BALBc-1_X01_Y02_970_788\", \"ini\": 967, \"clust\": 1547, \"rank\": 2024, \"rankvar\": 1544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1859, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1336, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2533, \"group\": [1547.0, 253.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99599_BALBc-1_X01_Y02_973_494\", \"ini\": 966, \"clust\": 1005, \"rank\": 40, \"rankvar\": 446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1860, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 358, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2489, \"group\": [1013.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99666_BALBc-1_X01_Y02_974_301\", \"ini\": 965, \"clust\": 1821, \"rank\": 2413, \"rankvar\": 1071, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1861, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2148, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1995, \"group\": [1824.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99919_BALBc-1_X01_Y02_977_839\", \"ini\": 964, \"clust\": 1540, \"rank\": 2539, \"rankvar\": 2735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1862, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2814, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2338, \"group\": [1543.0, 253.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99966_BALBc-1_X01_Y02_978_469\", \"ini\": 963, \"clust\": 434, \"rank\": 441, \"rankvar\": 1519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1863, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2609, \"cat-2\": \"Density: 48\", \"cat_2_index\": 2792, \"group\": [433.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99984_BALBc-1_X01_Y02_978_659\", \"ini\": 962, \"clust\": 2265, \"rank\": 2052, \"rankvar\": 1403, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1864, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2149, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2490, \"group\": [2266.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99988_BALBc-1_X01_Y02_978_700\", \"ini\": 961, \"clust\": 667, \"rank\": 54, \"rankvar\": 2305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1865, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 359, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2731, \"group\": [667.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100113_BALBc-1_X01_Y02_98_33\", \"ini\": 960, \"clust\": 2588, \"rank\": 2068, \"rankvar\": 2369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1866, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1337, \"cat-2\": \"Density: 20\", \"cat_2_index\": 167, \"group\": [2590.0, 458.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100128_BALBc-1_X01_Y02_98_529\", \"ini\": 959, \"clust\": 343, \"rank\": 1315, \"rankvar\": 188, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1867, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2322, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1667, \"group\": [347.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100158_BALBc-1_X01_Y02_98_936\", \"ini\": 958, \"clust\": 1799, \"rank\": 2524, \"rankvar\": 2708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1868, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1751, \"cat-2\": \"Density: 26\", \"cat_2_index\": 814, \"group\": [1799.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100196_BALBc-1_X01_Y02_980_535\", \"ini\": 957, \"clust\": 127, \"rank\": 631, \"rankvar\": 2253, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1869, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 360, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2491, \"group\": [130.0, 43.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100343_BALBc-1_X01_Y02_982_719\", \"ini\": 956, \"clust\": 2429, \"rank\": 1689, \"rankvar\": 1751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1870, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1338, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2534, \"group\": [2430.0, 409.0, 87.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100409_BALBc-1_X01_Y02_983_525\", \"ini\": 955, \"clust\": 344, \"rank\": 768, \"rankvar\": 2136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1871, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 361, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2535, \"group\": [346.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100453_BALBc-1_X01_Y02_984_217\", \"ini\": 954, \"clust\": 1675, \"rank\": 1990, \"rankvar\": 2572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1872, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2610, \"cat-2\": \"Density: 25\", \"cat_2_index\": 676, \"group\": [1675.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100476_BALBc-1_X01_Y02_984_546\", \"ini\": 953, \"clust\": 2116, \"rank\": 2795, \"rankvar\": 2520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1873, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 362, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2536, \"group\": [2118.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100533_BALBc-1_X01_Y02_985_319\", \"ini\": 952, \"clust\": 2455, \"rank\": 1644, \"rankvar\": 1810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1874, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 363, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1777, \"group\": [2458.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100537_BALBc-1_X01_Y02_985_370\", \"ini\": 951, \"clust\": 675, \"rank\": 750, \"rankvar\": 1495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1875, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 364, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2537, \"group\": [675.0, 109.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100546_BALBc-1_X01_Y02_985_427\", \"ini\": 950, \"clust\": 2441, \"rank\": 1788, \"rankvar\": 244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1876, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2611, \"cat-2\": \"Density: 46\", \"cat_2_index\": 2732, \"group\": [2444.0, 417.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100828_BALBc-1_X01_Y02_989_180\", \"ini\": 949, \"clust\": 323, \"rank\": 677, \"rankvar\": 1341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1877, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2612, \"cat-2\": \"Density: 26\", \"cat_2_index\": 815, \"group\": [326.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101159_BALBc-1_X01_Y02_992_512\", \"ini\": 948, \"clust\": 1066, \"rank\": 728, \"rankvar\": 1010, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1878, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 365, \"cat-2\": \"Density: 44\", \"cat_2_index\": 2650, \"group\": [1067.0, 115.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101202_BALBc-1_X01_Y02_992_939\", \"ini\": 947, \"clust\": 2489, \"rank\": 1234, \"rankvar\": 2290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1879, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1339, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1668, \"group\": [2490.0, 425.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101248_BALBc-1_X01_Y02_993_593\", \"ini\": 946, \"clust\": 996, \"rank\": 272, \"rankvar\": 191, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1880, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2150, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2590, \"group\": [997.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101494_BALBc-1_X01_Y02_996_395\", \"ini\": 945, \"clust\": 338, \"rank\": 1137, \"rankvar\": 1294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1881, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2613, \"cat-2\": \"Density: 47\", \"cat_2_index\": 2772, \"group\": [339.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101598_BALBc-1_X01_Y02_997_656\", \"ini\": 944, \"clust\": 1615, \"rank\": 1720, \"rankvar\": 972, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1882, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2151, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2591, \"group\": [1621.0, 275.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101724_BALBc-1_X01_Y02_999_337\", \"ini\": 943, \"clust\": 394, \"rank\": 580, \"rankvar\": 255, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1883, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 366, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2269, \"group\": [398.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-742_BALBc-1_X02_Y02_100_496\", \"ini\": 942, \"clust\": 2487, \"rank\": 1204, \"rankvar\": 2550, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1884, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1340, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1879, \"group\": [2485.0, 424.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-763_BALBc-1_X02_Y02_100_736\", \"ini\": 941, \"clust\": 2506, \"rank\": 1338, \"rankvar\": 1977, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1885, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1341, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1880, \"group\": [2510.0, 433.0, 93.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-824_BALBc-1_X02_Y02_1000_584\", \"ini\": 940, \"clust\": 164, \"rank\": 1107, \"rankvar\": 839, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1886, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1581, \"cat-2\": \"Density: 26\", \"cat_2_index\": 816, \"group\": [164.0, 53.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1111_BALBc-1_X02_Y02_1004_421\", \"ini\": 939, \"clust\": 1492, \"rank\": 1587, \"rankvar\": 803, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1887, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 921, \"cat-2\": \"Density: 23\", \"cat_2_index\": 411, \"group\": [1494.0, 229.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1386_BALBc-1_X02_Y02_1007_914\", \"ini\": 938, \"clust\": 148, \"rank\": 688, \"rankvar\": 1649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1888, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2152, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1266, \"group\": [147.0, 46.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1461_BALBc-1_X02_Y02_1008_949\", \"ini\": 937, \"clust\": 2431, \"rank\": 1382, \"rankvar\": 105, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1889, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2153, \"cat-2\": \"Density: 22\", \"cat_2_index\": 298, \"group\": [2432.0, 411.0, 87.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1779_BALBc-1_X02_Y02_1011_766\", \"ini\": 936, \"clust\": 1205, \"rank\": 1663, \"rankvar\": 1753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1890, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2614, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1669, \"group\": [1205.0, 155.0, 32.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-1887_BALBc-1_X02_Y02_1013_366\", \"ini\": 935, \"clust\": 292, \"rank\": 817, \"rankvar\": 432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1891, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 367, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1267, \"group\": [291.0, 72.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2061_BALBc-1_X02_Y02_1015_519\", \"ini\": 934, \"clust\": 1876, \"rank\": 2062, \"rankvar\": 2717, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1892, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2615, \"cat-2\": \"Density: 23\", \"cat_2_index\": 412, \"group\": [1875.0, 324.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2081_BALBc-1_X02_Y02_1015_789\", \"ini\": 933, \"clust\": 1737, \"rank\": 1156, \"rankvar\": 2233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1893, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1119, \"group\": [1742.0, 310.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2117_BALBc-1_X02_Y02_1016_330\", \"ini\": 932, \"clust\": 1311, \"rank\": 1332, \"rankvar\": 551, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1894, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1978, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1120, \"group\": [1308.0, 180.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2209_BALBc-1_X02_Y02_1017_624\", \"ini\": 931, \"clust\": 1826, \"rank\": 2441, \"rankvar\": 1826, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1895, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2617, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1413, \"group\": [1826.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2250_BALBc-1_X02_Y02_1017_995\", \"ini\": 930, \"clust\": 2223, \"rank\": 2802, \"rankvar\": 2108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1896, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2154, \"cat-2\": \"Density: 16\", \"cat_2_index\": 61, \"group\": [2223.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2321_BALBc-1_X02_Y02_1018_895\", \"ini\": 929, \"clust\": 1686, \"rank\": 1887, \"rankvar\": 2670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1897, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2155, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1121, \"group\": [1689.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2469_BALBc-1_X02_Y02_1020_120\", \"ini\": 928, \"clust\": 553, \"rank\": 870, \"rankvar\": 170, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1898, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1342, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1537, \"group\": [554.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2761_BALBc-1_X02_Y02_1023_729\", \"ini\": 927, \"clust\": 428, \"rank\": 327, \"rankvar\": 654, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1899, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1343, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1996, \"group\": [428.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2871_BALBc-1_X02_Y02_1025_203\", \"ini\": 926, \"clust\": 567, \"rank\": 896, \"rankvar\": 451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1900, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 848, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1268, \"group\": [570.0, 99.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-2901_BALBc-1_X02_Y02_1025_465\", \"ini\": 925, \"clust\": 1766, \"rank\": 2342, \"rankvar\": 1314, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1901, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2618, \"cat-2\": \"Density: 24\", \"cat_2_index\": 537, \"group\": [1767.0, 315.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3027_BALBc-1_X02_Y02_1027_146\", \"ini\": 924, \"clust\": 2449, \"rank\": 1579, \"rankvar\": 1334, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1902, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1344, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1670, \"group\": [2452.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3163_BALBc-1_X02_Y02_1028_557\", \"ini\": 923, \"clust\": 1677, \"rank\": 2507, \"rankvar\": 2786, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1903, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1582, \"cat-2\": \"Density: 25\", \"cat_2_index\": 677, \"group\": [1677.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3345_BALBc-1_X02_Y02_103_855\", \"ini\": 922, \"clust\": 6, \"rank\": 1331, \"rankvar\": 1603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1904, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1345, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1269, \"group\": [5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3406_BALBc-1_X02_Y02_1030_786\", \"ini\": 921, \"clust\": 1697, \"rank\": 1601, \"rankvar\": 2810, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1905, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2619, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1414, \"group\": [1701.0, 303.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3462_BALBc-1_X02_Y02_1031_450\", \"ini\": 920, \"clust\": 702, \"rank\": 45, \"rankvar\": 1224, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1906, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 368, \"cat-2\": \"Density: 24\", \"cat_2_index\": 538, \"group\": [700.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3716_BALBc-1_X02_Y02_1034_825\", \"ini\": 919, \"clust\": 2478, \"rank\": 1359, \"rankvar\": 1615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1907, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2620, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1415, \"group\": [2478.0, 422.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3723_BALBc-1_X02_Y02_1034_946\", \"ini\": 918, \"clust\": 845, \"rank\": 100, \"rankvar\": 322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1908, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 369, \"cat-2\": \"Density: 21\", \"cat_2_index\": 219, \"group\": [848.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3800_BALBc-1_X02_Y02_1035_754\", \"ini\": 917, \"clust\": 1643, \"rank\": 1835, \"rankvar\": 618, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1909, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2621, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1538, \"group\": [1644.0, 294.0, 66.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3958_BALBc-1_X02_Y02_1037_680\", \"ini\": 916, \"clust\": 817, \"rank\": 58, \"rankvar\": 114, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1910, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1346, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1881, \"group\": [817.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-3996_BALBc-1_X02_Y02_1038_233\", \"ini\": 915, \"clust\": 1312, \"rank\": 824, \"rankvar\": 1928, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1911, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1347, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1416, \"group\": [1313.0, 182.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4123_BALBc-1_X02_Y02_1039_704\", \"ini\": 914, \"clust\": 1811, \"rank\": 2463, \"rankvar\": 2107, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1912, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1348, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1997, \"group\": [1811.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4307_BALBc-1_X02_Y02_1041_402\", \"ini\": 913, \"clust\": 698, \"rank\": 387, \"rankvar\": 365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1913, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 922, \"cat-2\": \"Density: 25\", \"cat_2_index\": 678, \"group\": [697.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4349_BALBc-1_X02_Y02_1041_855\", \"ini\": 912, \"clust\": 1798, \"rank\": 2535, \"rankvar\": 2367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1914, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2787, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1270, \"group\": [1801.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4398_BALBc-1_X02_Y02_1042_440\", \"ini\": 911, \"clust\": 42, \"rank\": 1605, \"rankvar\": 1451, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1915, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 923, \"cat-2\": \"Density: 27\", \"cat_2_index\": 965, \"group\": [43.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4443_BALBc-1_X02_Y02_1042_919\", \"ini\": 910, \"clust\": 2109, \"rank\": 2702, \"rankvar\": 2343, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1916, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 370, \"cat-2\": \"Density: 23\", \"cat_2_index\": 413, \"group\": [2109.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-4730_BALBc-1_X02_Y02_1046_644\", \"ini\": 909, \"clust\": 927, \"rank\": 243, \"rankvar\": 585, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1917, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2622, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1671, \"group\": [926.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5035_BALBc-1_X02_Y02_105_291\", \"ini\": 908, \"clust\": 2776, \"rank\": 2232, \"rankvar\": 1992, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1918, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2623, \"cat-2\": \"Density: 21\", \"cat_2_index\": 220, \"group\": [2779.0, 494.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5098_BALBc-1_X02_Y02_1050_351\", \"ini\": 907, \"clust\": 839, \"rank\": 43, \"rankvar\": 280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1919, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 371, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1271, \"group\": [836.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5288_BALBc-1_X02_Y02_1052_892\", \"ini\": 906, \"clust\": 1172, \"rank\": 787, \"rankvar\": 2104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1920, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 372, \"cat-2\": \"Density: 25\", \"cat_2_index\": 679, \"group\": [1172.0, 141.0, 27.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5378_BALBc-1_X02_Y02_1054_302\", \"ini\": 905, \"clust\": 1651, \"rank\": 1387, \"rankvar\": 1632, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1921, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1979, \"cat-2\": \"Density: 26\", \"cat_2_index\": 817, \"group\": [1654.0, 298.0, 66.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5521_BALBc-1_X02_Y02_1055_965\", \"ini\": 904, \"clust\": 2147, \"rank\": 2250, \"rankvar\": 416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1922, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2624, \"cat-2\": \"Density: 20\", \"cat_2_index\": 168, \"group\": [2148.0, 360.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5598_BALBc-1_X02_Y02_1056_814\", \"ini\": 903, \"clust\": 1740, \"rank\": 760, \"rankvar\": 2695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1923, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 373, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1417, \"group\": [1740.0, 310.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5789_BALBc-1_X02_Y02_1059_368\", \"ini\": 902, \"clust\": 1532, \"rank\": 1744, \"rankvar\": 1641, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1924, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1659, \"cat-2\": \"Density: 27\", \"cat_2_index\": 966, \"group\": [1533.0, 248.0, 51.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5813_BALBc-1_X02_Y02_1059_633\", \"ini\": 901, \"clust\": 1990, \"rank\": 1938, \"rankvar\": 1082, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1925, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 374, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1998, \"group\": [1991.0, 351.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5959_BALBc-1_X02_Y02_1060_547\", \"ini\": 900, \"clust\": 1893, \"rank\": 2057, \"rankvar\": 1275, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1926, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2625, \"cat-2\": \"Density: 24\", \"cat_2_index\": 539, \"group\": [1893.0, 328.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-5972_BALBc-1_X02_Y02_1060_686\", \"ini\": 899, \"clust\": 825, \"rank\": 50, \"rankvar\": 371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1927, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 375, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1882, \"group\": [826.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6003_BALBc-1_X02_Y02_1061_164\", \"ini\": 898, \"clust\": 980, \"rank\": 237, \"rankvar\": 705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1928, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1349, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1672, \"group\": [981.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6056_BALBc-1_X02_Y02_1061_611\", \"ini\": 897, \"clust\": 660, \"rank\": 900, \"rankvar\": 301, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1929, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1583, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1673, \"group\": [660.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6125_BALBc-1_X02_Y02_1062_291\", \"ini\": 896, \"clust\": 1262, \"rank\": 910, \"rankvar\": 831, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1930, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2788, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1272, \"group\": [1263.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6156_BALBc-1_X02_Y02_1062_576\", \"ini\": 895, \"clust\": 1646, \"rank\": 1625, \"rankvar\": 1156, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1931, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1584, \"cat-2\": \"Density: 27\", \"cat_2_index\": 967, \"group\": [1646.0, 295.0, 66.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6277_BALBc-1_X02_Y02_1064_324\", \"ini\": 894, \"clust\": 752, \"rank\": 49, \"rankvar\": 729, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1932, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 376, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1122, \"group\": [751.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6307_BALBc-1_X02_Y02_1064_651\", \"ini\": 893, \"clust\": 2077, \"rank\": 2387, \"rankvar\": 1244, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1933, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 377, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1883, \"group\": [2078.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6501_BALBc-1_X02_Y02_1067_391\", \"ini\": 892, \"clust\": 532, \"rank\": 907, \"rankvar\": 818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1934, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1660, \"cat-2\": \"Density: 27\", \"cat_2_index\": 968, \"group\": [536.0, 90.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6716_BALBc-1_X02_Y02_1069_716\", \"ini\": 891, \"clust\": 1641, \"rank\": 1856, \"rankvar\": 578, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1935, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2626, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2095, \"group\": [1641.0, 292.0, 65.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6732_BALBc-1_X02_Y02_1069_881\", \"ini\": 890, \"clust\": 2101, \"rank\": 2331, \"rankvar\": 774, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1936, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2789, \"cat-2\": \"Density: 25\", \"cat_2_index\": 680, \"group\": [2102.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6777_BALBc-1_X02_Y02_107_560\", \"ini\": 889, \"clust\": 1706, \"rank\": 1780, \"rankvar\": 2274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1937, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1569, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2096, \"group\": [1707.0, 304.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6883_BALBc-1_X02_Y02_1070_927\", \"ini\": 888, \"clust\": 1928, \"rank\": 2220, \"rankvar\": 2661, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1938, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2627, \"cat-2\": \"Density: 22\", \"cat_2_index\": 299, \"group\": [1929.0, 343.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-6955_BALBc-1_X02_Y02_1071_815\", \"ini\": 887, \"clust\": 2199, \"rank\": 1448, \"rankvar\": 1173, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1939, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2790, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1539, \"group\": [2200.0, 373.0, 80.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7044_BALBc-1_X02_Y02_1072_750\", \"ini\": 886, \"clust\": 2409, \"rank\": 1513, \"rankvar\": 775, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1940, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2628, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1884, \"group\": [2410.0, 398.0, 83.0, 22.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7048_BALBc-1_X02_Y02_1072_786\", \"ini\": 885, \"clust\": 1735, \"rank\": 981, \"rankvar\": 2281, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1941, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2629, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1674, \"group\": [1733.0, 309.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7330_BALBc-1_X02_Y02_1076_192\", \"ini\": 884, \"clust\": 1399, \"rank\": 1165, \"rankvar\": 1497, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1942, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1350, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1418, \"group\": [1401.0, 199.0, 40.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-7866_BALBc-1_X02_Y02_1082_334\", \"ini\": 883, \"clust\": 1401, \"rank\": 1247, \"rankvar\": 1302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1943, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1661, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1273, \"group\": [1400.0, 199.0, 40.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8112_BALBc-1_X02_Y02_1085_691\", \"ini\": 882, \"clust\": 188, \"rank\": 1476, \"rankvar\": 527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1944, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 378, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1885, \"group\": [188.0, 56.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8233_BALBc-1_X02_Y02_1087_411\", \"ini\": 881, \"clust\": 1252, \"rank\": 1144, \"rankvar\": 438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1945, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1662, \"cat-2\": \"Density: 27\", \"cat_2_index\": 969, \"group\": [1252.0, 171.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8249_BALBc-1_X02_Y02_1087_626\", \"ini\": 880, \"clust\": 426, \"rank\": 432, \"rankvar\": 910, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1946, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 379, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1886, \"group\": [429.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8448_BALBc-1_X02_Y02_109_151\", \"ini\": 879, \"clust\": 707, \"rank\": 609, \"rankvar\": 1163, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1947, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2630, \"cat-2\": \"Density: 23\", \"cat_2_index\": 414, \"group\": [711.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8463_BALBc-1_X02_Y02_109_451\", \"ini\": 878, \"clust\": 1575, \"rank\": 1262, \"rankvar\": 662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1948, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2631, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1675, \"group\": [1575.0, 260.0, 55.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8476_BALBc-1_X02_Y02_109_610\", \"ini\": 877, \"clust\": 58, \"rank\": 1731, \"rankvar\": 2634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1949, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1351, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2097, \"group\": [59.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8551_BALBc-1_X02_Y02_1090_469\", \"ini\": 876, \"clust\": 1177, \"rank\": 1065, \"rankvar\": 708, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1950, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2632, \"cat-2\": \"Density: 24\", \"cat_2_index\": 540, \"group\": [1176.0, 144.0, 28.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8576_BALBc-1_X02_Y02_1090_711\", \"ini\": 875, \"clust\": 874, \"rank\": 394, \"rankvar\": 20, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1951, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2156, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2098, \"group\": [876.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8913_BALBc-1_X02_Y02_1095_144\", \"ini\": 874, \"clust\": 2679, \"rank\": 2297, \"rankvar\": 2713, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1952, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1663, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1274, \"group\": [2678.0, 483.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-8990_BALBc-1_X02_Y02_1096_180\", \"ini\": 873, \"clust\": 1008, \"rank\": 6, \"rankvar\": 857, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1953, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 380, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1540, \"group\": [1008.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9078_BALBc-1_X02_Y02_1097_291\", \"ini\": 872, \"clust\": 568, \"rank\": 751, \"rankvar\": 389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1954, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2791, \"cat-2\": \"Density: 27\", \"cat_2_index\": 970, \"group\": [568.0, 99.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9244_BALBc-1_X02_Y02_1099_550\", \"ini\": 871, \"clust\": 1370, \"rank\": 1874, \"rankvar\": 1772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1955, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 627, \"cat-2\": \"Density: 27\", \"cat_2_index\": 971, \"group\": [1370.0, 191.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9402_BALBc-1_X02_Y02_110_392\", \"ini\": 870, \"clust\": 1808, \"rank\": 2630, \"rankvar\": 2731, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1956, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2633, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1676, \"group\": [1809.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9494_BALBc-1_X02_Y02_1100_508\", \"ini\": 869, \"clust\": 1698, \"rank\": 2084, \"rankvar\": 2820, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1957, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2634, \"cat-2\": \"Density: 26\", \"cat_2_index\": 818, \"group\": [1700.0, 303.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9511_BALBc-1_X02_Y02_1100_671\", \"ini\": 868, \"clust\": 1738, \"rank\": 959, \"rankvar\": 1488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1958, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 381, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2099, \"group\": [1738.0, 310.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9687_BALBc-1_X02_Y02_1103_195\", \"ini\": 867, \"clust\": 2049, \"rank\": 1940, \"rankvar\": 1015, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1959, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 382, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1677, \"group\": [2048.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9726_BALBc-1_X02_Y02_1103_600\", \"ini\": 866, \"clust\": 2176, \"rank\": 2417, \"rankvar\": 626, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1960, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 383, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1678, \"group\": [2177.0, 366.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-9731_BALBc-1_X02_Y02_1103_641\", \"ini\": 865, \"clust\": 11, \"rank\": 1314, \"rankvar\": 1036, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1961, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 384, \"cat-2\": \"Density: 35\", \"cat_2_index\": 1999, \"group\": [15.0, 6.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10109_BALBc-1_X02_Y02_1108_209\", \"ini\": 864, \"clust\": 826, \"rank\": 137, \"rankvar\": 104, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1962, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1352, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1419, \"group\": [827.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10196_BALBc-1_X02_Y02_1109_33\", \"ini\": 863, \"clust\": 2595, \"rank\": 1583, \"rankvar\": 1612, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1963, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1980, \"cat-2\": \"Density: 22\", \"cat_2_index\": 300, \"group\": [2595.0, 459.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10201_BALBc-1_X02_Y02_1109_425\", \"ini\": 862, \"clust\": 1259, \"rank\": 1026, \"rankvar\": 2050, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1964, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 924, \"cat-2\": \"Density: 26\", \"cat_2_index\": 819, \"group\": [1260.0, 173.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10450_BALBc-1_X02_Y02_1111_750\", \"ini\": 861, \"clust\": 2401, \"rank\": 1792, \"rankvar\": 1800, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1965, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2157, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1679, \"group\": [2404.0, 395.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10495_BALBc-1_X02_Y02_1112_333\", \"ini\": 860, \"clust\": 704, \"rank\": 365, \"rankvar\": 176, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1966, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1664, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1420, \"group\": [704.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10548_BALBc-1_X02_Y02_1112_995\", \"ini\": 859, \"clust\": 35, \"rank\": 1063, \"rankvar\": 1405, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1967, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2635, \"cat-2\": \"Density: 17\", \"cat_2_index\": 81, \"group\": [36.0, 11.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10672_BALBc-1_X02_Y02_1114_725\", \"ini\": 858, \"clust\": 170, \"rank\": 1029, \"rankvar\": 1008, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1968, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2158, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1887, \"group\": [173.0, 54.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10918_BALBc-1_X02_Y02_1117_812\", \"ini\": 857, \"clust\": 1222, \"rank\": 1392, \"rankvar\": 2023, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1969, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2792, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1680, \"group\": [1223.0, 163.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-10970_BALBc-1_X02_Y02_1118_562\", \"ini\": 856, \"clust\": 1663, \"rank\": 2382, \"rankvar\": 2608, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1970, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2636, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1541, \"group\": [1665.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11111_BALBc-1_X02_Y02_112_780\", \"ini\": 855, \"clust\": 2509, \"rank\": 1291, \"rankvar\": 2291, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1971, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1353, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1421, \"group\": [2508.0, 432.0, 93.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11132_BALBc-1_X02_Y02_1120_160\", \"ini\": 854, \"clust\": 510, \"rank\": 877, \"rankvar\": 940, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1972, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2323, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1275, \"group\": [510.0, 78.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11248_BALBc-1_X02_Y02_1121_389\", \"ini\": 853, \"clust\": 738, \"rank\": 766, \"rankvar\": 718, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1973, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1665, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1123, \"group\": [740.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11332_BALBc-1_X02_Y02_1122_490\", \"ini\": 852, \"clust\": 2078, \"rank\": 2300, \"rankvar\": 852, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1974, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2793, \"cat-2\": \"Density: 24\", \"cat_2_index\": 541, \"group\": [2079.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11531_BALBc-1_X02_Y02_1125_113\", \"ini\": 851, \"clust\": 740, \"rank\": 863, \"rankvar\": 206, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1975, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1981, \"cat-2\": \"Density: 26\", \"cat_2_index\": 820, \"group\": [739.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11546_BALBc-1_X02_Y02_1125_315\", \"ini\": 850, \"clust\": 1751, \"rank\": 2223, \"rankvar\": 1890, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1976, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2637, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1124, \"group\": [1752.0, 311.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11566_BALBc-1_X02_Y02_1125_577\", \"ini\": 849, \"clust\": 946, \"rank\": 734, \"rankvar\": 65, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1977, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 385, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1888, \"group\": [949.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11573_BALBc-1_X02_Y02_1125_626\", \"ini\": 848, \"clust\": 297, \"rank\": 1012, \"rankvar\": 1013, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1978, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 386, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1778, \"group\": [300.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11614_BALBc-1_X02_Y02_1126_250\", \"ini\": 847, \"clust\": 890, \"rank\": 752, \"rankvar\": 144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1979, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1354, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1542, \"group\": [891.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11867_BALBc-1_X02_Y02_1129_599\", \"ini\": 846, \"clust\": 219, \"rank\": 1197, \"rankvar\": 873, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1980, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 387, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1889, \"group\": [219.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-11912_BALBc-1_X02_Y02_113_34\", \"ini\": 845, \"clust\": 73, \"rank\": 1145, \"rankvar\": 2241, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1981, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1355, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1543, \"group\": [76.0, 26.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12036_BALBc-1_X02_Y02_1130_842\", \"ini\": 844, \"clust\": 138, \"rank\": 1142, \"rankvar\": 999, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1982, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2794, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1544, \"group\": [137.0, 45.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12076_BALBc-1_X02_Y02_1131_409\", \"ini\": 843, \"clust\": 693, \"rank\": 567, \"rankvar\": 666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1983, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 388, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1125, \"group\": [692.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12101_BALBc-1_X02_Y02_1131_782\", \"ini\": 842, \"clust\": 2010, \"rank\": 2389, \"rankvar\": 2444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1984, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2245, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1545, \"group\": [2009.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12136_BALBc-1_X02_Y02_1132_190\", \"ini\": 841, \"clust\": 321, \"rank\": 963, \"rankvar\": 495, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1985, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1356, \"cat-2\": \"Density: 27\", \"cat_2_index\": 972, \"group\": [320.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12165_BALBc-1_X02_Y02_1132_447\", \"ini\": 840, \"clust\": 1016, \"rank\": 72, \"rankvar\": 117, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1986, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2795, \"cat-2\": \"Density: 22\", \"cat_2_index\": 301, \"group\": [1018.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12320_BALBc-1_X02_Y02_1134_679\", \"ini\": 839, \"clust\": 2037, \"rank\": 1810, \"rankvar\": 1018, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1987, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2159, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2339, \"group\": [2042.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12365_BALBc-1_X02_Y02_1135_365\", \"ini\": 838, \"clust\": 1163, \"rank\": 1025, \"rankvar\": 149, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1988, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1666, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1126, \"group\": [1162.0, 137.0, 25.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12416_BALBc-1_X02_Y02_1135_962\", \"ini\": 837, \"clust\": 2287, \"rank\": 2449, \"rankvar\": 1763, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1989, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2638, \"cat-2\": \"Density: 21\", \"cat_2_index\": 221, \"group\": [2288.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12735_BALBc-1_X02_Y02_1139_866\", \"ini\": 836, \"clust\": 1642, \"rank\": 1890, \"rankvar\": 835, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1990, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2796, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1890, \"group\": [1642.0, 292.0, 65.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12751_BALBc-1_X02_Y02_114_194\", \"ini\": 835, \"clust\": 1242, \"rank\": 698, \"rankvar\": 1644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1991, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2639, \"cat-2\": \"Density: 22\", \"cat_2_index\": 302, \"group\": [1244.0, 169.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12784_BALBc-1_X02_Y02_114_729\", \"ini\": 834, \"clust\": 1774, \"rank\": 2561, \"rankvar\": 2805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1992, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1357, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2000, \"group\": [1774.0, 316.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12833_BALBc-1_X02_Y02_1140_332\", \"ini\": 833, \"clust\": 705, \"rank\": 548, \"rankvar\": 205, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1993, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2797, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1276, \"group\": [705.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12954_BALBc-1_X02_Y02_1141_896\", \"ini\": 832, \"clust\": 1720, \"rank\": 2481, \"rankvar\": 2707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1994, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2640, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1681, \"group\": [1718.0, 305.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-12956_BALBc-1_X02_Y02_1141_931\", \"ini\": 831, \"clust\": 883, \"rank\": 283, \"rankvar\": 24, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1995, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2641, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1422, \"group\": [882.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13018_BALBc-1_X02_Y02_1142_616\", \"ini\": 830, \"clust\": 1744, \"rank\": 1209, \"rankvar\": 2154, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1996, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 389, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1779, \"group\": [1743.0, 310.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13318_BALBc-1_X02_Y02_1146_668\", \"ini\": 829, \"clust\": 2358, \"rank\": 1442, \"rankvar\": 2135, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1997, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2160, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2184, \"group\": [2362.0, 389.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13570_BALBc-1_X02_Y02_1149_984\", \"ini\": 828, \"clust\": 120, \"rank\": 1478, \"rankvar\": 769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1998, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 390, \"cat-2\": \"Density: 22\", \"cat_2_index\": 303, \"group\": [120.0, 40.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13572_BALBc-1_X02_Y02_115_109\", \"ini\": 827, \"clust\": 1019, \"rank\": 51, \"rankvar\": 546, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 1999, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 705, \"cat-2\": \"Density: 27\", \"cat_2_index\": 973, \"group\": [1019.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13710_BALBc-1_X02_Y02_1150_801\", \"ini\": 826, \"clust\": 609, \"rank\": 259, \"rankvar\": 2152, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2000, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2642, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1780, \"group\": [609.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13772_BALBc-1_X02_Y02_1151_585\", \"ini\": 825, \"clust\": 1664, \"rank\": 2079, \"rankvar\": 2336, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2001, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2643, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2001, \"group\": [1663.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-13938_BALBc-1_X02_Y02_1153_645\", \"ini\": 824, \"clust\": 28, \"rank\": 607, \"rankvar\": 1322, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2002, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 391, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1891, \"group\": [28.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14156_BALBc-1_X02_Y02_1156_744\", \"ini\": 823, \"clust\": 2117, \"rank\": 2742, \"rankvar\": 1969, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2003, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2644, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2340, \"group\": [2116.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14485_BALBc-1_X02_Y02_1160_173\", \"ini\": 822, \"clust\": 948, \"rank\": 233, \"rankvar\": 285, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2004, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2324, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1127, \"group\": [948.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14492_BALBc-1_X02_Y02_1160_253\", \"ini\": 821, \"clust\": 116, \"rank\": 1030, \"rankvar\": 103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2005, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1358, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1128, \"group\": [119.0, 39.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14502_BALBc-1_X02_Y02_1160_402\", \"ini\": 820, \"clust\": 579, \"rank\": 979, \"rankvar\": 159, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2006, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2798, \"cat-2\": \"Density: 27\", \"cat_2_index\": 974, \"group\": [582.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14546_BALBc-1_X02_Y02_1160_824\", \"ini\": 819, \"clust\": 923, \"rank\": 423, \"rankvar\": 760, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2007, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 392, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1781, \"group\": [929.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14684_BALBc-1_X02_Y02_1162_447\", \"ini\": 818, \"clust\": 1456, \"rank\": 1972, \"rankvar\": 1490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2008, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2799, \"cat-2\": \"Density: 23\", \"cat_2_index\": 415, \"group\": [1455.0, 216.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14743_BALBc-1_X02_Y02_1163_128\", \"ini\": 817, \"clust\": 618, \"rank\": 133, \"rankvar\": 709, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2009, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1982, \"cat-2\": \"Density: 26\", \"cat_2_index\": 821, \"group\": [616.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14867_BALBc-1_X02_Y02_1164_624\", \"ini\": 816, \"clust\": 2227, \"rank\": 2668, \"rankvar\": 2522, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2010, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2645, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1782, \"group\": [2227.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14896_BALBc-1_X02_Y02_1164_922\", \"ini\": 815, \"clust\": 124, \"rank\": 1659, \"rankvar\": 1327, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2011, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 393, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1783, \"group\": [122.0, 41.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-14971_BALBc-1_X02_Y02_1165_840\", \"ini\": 814, \"clust\": 461, \"rank\": 403, \"rankvar\": 228, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2012, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 394, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1892, \"group\": [461.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15063_BALBc-1_X02_Y02_1166_969\", \"ini\": 813, \"clust\": 2258, \"rank\": 2099, \"rankvar\": 1328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2013, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 395, \"cat-2\": \"Density: 24\", \"cat_2_index\": 542, \"group\": [2259.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15135_BALBc-1_X02_Y02_1167_999\", \"ini\": 812, \"clust\": 2355, \"rank\": 2770, \"rankvar\": 2492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2014, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2161, \"cat-2\": \"Density: 20\", \"cat_2_index\": 169, \"group\": [2357.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15303_BALBc-1_X02_Y02_117_410\", \"ini\": 811, \"clust\": 791, \"rank\": 70, \"rankvar\": 237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2015, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2646, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1682, \"group\": [791.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15305_BALBc-1_X02_Y02_117_463\", \"ini\": 810, \"clust\": 2189, \"rank\": 2787, \"rankvar\": 2302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2016, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 849, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1893, \"group\": [2190.0, 368.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15393_BALBc-1_X02_Y02_1170_650\", \"ini\": 809, \"clust\": 2305, \"rank\": 2493, \"rankvar\": 2307, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2017, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 396, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2002, \"group\": [2305.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15414_BALBc-1_X02_Y02_1170_876\", \"ini\": 808, \"clust\": 1979, \"rank\": 1971, \"rankvar\": 1282, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2018, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 397, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1784, \"group\": [1979.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15423_BALBc-1_X02_Y02_1170_954\", \"ini\": 807, \"clust\": 821, \"rank\": 94, \"rankvar\": 356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2019, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 398, \"cat-2\": \"Density: 26\", \"cat_2_index\": 822, \"group\": [820.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15568_BALBc-1_X02_Y02_1172_980\", \"ini\": 806, \"clust\": 943, \"rank\": 342, \"rankvar\": 211, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2020, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 399, \"cat-2\": \"Density: 22\", \"cat_2_index\": 304, \"group\": [942.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15595_BALBc-1_X02_Y02_1173_333\", \"ini\": 805, \"clust\": 2819, \"rank\": 1751, \"rankvar\": 213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2021, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2800, \"cat-2\": \"Density: 26\", \"cat_2_index\": 823, \"group\": [2821.0, 504.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15880_BALBc-1_X02_Y02_1176_923\", \"ini\": 804, \"clust\": 2302, \"rank\": 2259, \"rankvar\": 1190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2022, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 400, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2003, \"group\": [2304.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15939_BALBc-1_X02_Y02_1177_805\", \"ini\": 803, \"clust\": 2061, \"rank\": 2150, \"rankvar\": 158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2023, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 401, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1894, \"group\": [2060.0, 355.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15968_BALBc-1_X02_Y02_1178_208\", \"ini\": 802, \"clust\": 699, \"rank\": 244, \"rankvar\": 489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2024, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1359, \"cat-2\": \"Density: 26\", \"cat_2_index\": 824, \"group\": [698.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-15986_BALBc-1_X02_Y02_1178_415\", \"ini\": 801, \"clust\": 1270, \"rank\": 1102, \"rankvar\": 548, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2025, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2647, \"cat-2\": \"Density: 24\", \"cat_2_index\": 543, \"group\": [1273.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16048_BALBc-1_X02_Y02_1178_942\", \"ini\": 800, \"clust\": 2143, \"rank\": 2519, \"rankvar\": 2269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2026, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 402, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1683, \"group\": [2145.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16314_BALBc-1_X02_Y02_1181_752\", \"ini\": 799, \"clust\": 2140, \"rank\": 2592, \"rankvar\": 1998, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2027, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2648, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2100, \"group\": [2140.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16545_BALBc-1_X02_Y02_1184_787\", \"ini\": 798, \"clust\": 1045, \"rank\": 153, \"rankvar\": 341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2028, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2649, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1785, \"group\": [1045.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16556_BALBc-1_X02_Y02_1184_889\", \"ini\": 797, \"clust\": 1020, \"rank\": 33, \"rankvar\": 450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2029, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 403, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2101, \"group\": [1020.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16843_BALBc-1_X02_Y02_1188_851\", \"ini\": 796, \"clust\": 2395, \"rank\": 1982, \"rankvar\": 1516, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2030, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 404, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2102, \"group\": [2398.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-16917_BALBc-1_X02_Y02_1189_710\", \"ini\": 795, \"clust\": 2288, \"rank\": 2383, \"rankvar\": 1662, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2031, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2162, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1684, \"group\": [2291.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17166_BALBc-1_X02_Y02_1192_172\", \"ini\": 794, \"clust\": 981, \"rank\": 186, \"rankvar\": 582, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2032, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 850, \"cat-2\": \"Density: 27\", \"cat_2_index\": 975, \"group\": [982.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17200_BALBc-1_X02_Y02_1192_66\", \"ini\": 793, \"clust\": 168, \"rank\": 1358, \"rankvar\": 141, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2033, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 851, \"cat-2\": \"Density: 22\", \"cat_2_index\": 305, \"group\": [169.0, 54.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17277_BALBc-1_X02_Y02_1193_669\", \"ini\": 792, \"clust\": 473, \"rank\": 1077, \"rankvar\": 296, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2034, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2163, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2004, \"group\": [476.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17324_BALBc-1_X02_Y02_1194_343\", \"ini\": 791, \"clust\": 1012, \"rank\": 21, \"rankvar\": 658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2035, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2801, \"cat-2\": \"Density: 24\", \"cat_2_index\": 544, \"group\": [1011.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17418_BALBc-1_X02_Y02_1195_565\", \"ini\": 790, \"clust\": 1343, \"rank\": 1550, \"rankvar\": 1055, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2036, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2650, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1277, \"group\": [1344.0, 187.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17557_BALBc-1_X02_Y02_1197_533\", \"ini\": 789, \"clust\": 634, \"rank\": 247, \"rankvar\": 1698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2037, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2651, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1423, \"group\": [634.0, 104.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17661_BALBc-1_X02_Y02_1198_827\", \"ini\": 788, \"clust\": 2406, \"rank\": 1330, \"rankvar\": 2663, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2038, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 405, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2103, \"group\": [2407.0, 397.0, 83.0, 22.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17686_BALBc-1_X02_Y02_1199_215\", \"ini\": 787, \"clust\": 1183, \"rank\": 1828, \"rankvar\": 1567, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2039, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2248, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1278, \"group\": [1187.0, 149.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17736_BALBc-1_X02_Y02_1199_815\", \"ini\": 786, \"clust\": 2276, \"rank\": 2697, \"rankvar\": 2544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2040, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 406, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2104, \"group\": [2277.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-17809_BALBc-1_X02_Y02_12_793\", \"ini\": 785, \"clust\": 1869, \"rank\": 2457, \"rankvar\": 2324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2041, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1360, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1786, \"group\": [1874.0, 323.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18091_BALBc-1_X02_Y02_1202_280\", \"ini\": 784, \"clust\": 372, \"rank\": 586, \"rankvar\": 453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2042, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2249, \"cat-2\": \"Density: 24\", \"cat_2_index\": 545, \"group\": [373.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18146_BALBc-1_X02_Y02_1202_911\", \"ini\": 783, \"clust\": 2128, \"rank\": 2652, \"rankvar\": 1979, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2043, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 407, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2492, \"group\": [2127.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18155_BALBc-1_X02_Y02_1202_975\", \"ini\": 782, \"clust\": 450, \"rank\": 359, \"rankvar\": 742, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2044, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 408, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1129, \"group\": [453.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18172_BALBc-1_X02_Y02_1203_305\", \"ini\": 781, \"clust\": 662, \"rank\": 654, \"rankvar\": 778, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2045, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2652, \"cat-2\": \"Density: 25\", \"cat_2_index\": 681, \"group\": [661.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18233_BALBc-1_X02_Y02_1204_137\", \"ini\": 780, \"clust\": 2528, \"rank\": 1420, \"rankvar\": 947, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2046, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 706, \"cat-2\": \"Density: 23\", \"cat_2_index\": 416, \"group\": [2527.0, 440.0, 96.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18261_BALBc-1_X02_Y02_1204_367\", \"ini\": 779, \"clust\": 333, \"rank\": 596, \"rankvar\": 1349, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2047, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2802, \"cat-2\": \"Density: 26\", \"cat_2_index\": 825, \"group\": [332.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18290_BALBc-1_X02_Y02_1204_637\", \"ini\": 778, \"clust\": 2378, \"rank\": 1700, \"rankvar\": 2029, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2048, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2164, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1895, \"group\": [2382.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18505_BALBc-1_X02_Y02_1207_236\", \"ini\": 777, \"clust\": 387, \"rank\": 177, \"rankvar\": 1959, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2049, \"cat-1\": \"Neighbor: capsule\", \"cat_1_index\": 2250, \"cat-2\": \"Density: 25\", \"cat_2_index\": 682, \"group\": [387.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18616_BALBc-1_X02_Y02_1208_730\", \"ini\": 776, \"clust\": 125, \"rank\": 1488, \"rankvar\": 1398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2050, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 409, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2341, \"group\": [123.0, 41.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18834_BALBc-1_X02_Y02_1210_68\", \"ini\": 775, \"clust\": 175, \"rank\": 1217, \"rankvar\": 855, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2051, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 852, \"cat-2\": \"Density: 22\", \"cat_2_index\": 306, \"group\": [175.0, 54.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18835_BALBc-1_X02_Y02_1210_690\", \"ini\": 774, \"clust\": 389, \"rank\": 312, \"rankvar\": 1066, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2052, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 410, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1685, \"group\": [390.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18895_BALBc-1_X02_Y02_1211_550\", \"ini\": 773, \"clust\": 2418, \"rank\": 1642, \"rankvar\": 2400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2053, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1361, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1279, \"group\": [2419.0, 403.0, 85.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-18963_BALBc-1_X02_Y02_1212_417\", \"ini\": 772, \"clust\": 736, \"rank\": 715, \"rankvar\": 926, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2054, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2653, \"cat-2\": \"Density: 23\", \"cat_2_index\": 417, \"group\": [736.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19058_BALBc-1_X02_Y02_1213_786\", \"ini\": 771, \"clust\": 1015, \"rank\": 19, \"rankvar\": 457, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2055, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 411, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2185, \"group\": [1015.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19143_BALBc-1_X02_Y02_1214_853\", \"ini\": 770, \"clust\": 2376, \"rank\": 1598, \"rankvar\": 1330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2056, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 412, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2186, \"group\": [2376.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19158_BALBc-1_X02_Y02_1214_998\", \"ini\": 769, \"clust\": 2025, \"rank\": 2103, \"rankvar\": 1035, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2057, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 413, \"cat-2\": \"Density: 22\", \"cat_2_index\": 307, \"group\": [2024.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19934_BALBc-1_X02_Y02_1224_37\", \"ini\": 768, \"clust\": 652, \"rank\": 962, \"rankvar\": 23, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2058, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 853, \"cat-2\": \"Density: 23\", \"cat_2_index\": 418, \"group\": [655.0, 106.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19942_BALBc-1_X02_Y02_1224_457\", \"ini\": 767, \"clust\": 1057, \"rank\": 42, \"rankvar\": 1144, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2059, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2654, \"cat-2\": \"Density: 24\", \"cat_2_index\": 546, \"group\": [1057.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-19965_BALBc-1_X02_Y02_1224_717\", \"ini\": 766, \"clust\": 2357, \"rank\": 2773, \"rankvar\": 2606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2060, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 414, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2105, \"group\": [2356.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20040_BALBc-1_X02_Y02_1225_677\", \"ini\": 765, \"clust\": 2245, \"rank\": 2572, \"rankvar\": 2320, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2061, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 415, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2187, \"group\": [2248.0, 386.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20113_BALBc-1_X02_Y02_1226_605\", \"ini\": 764, \"clust\": 1630, \"rank\": 1658, \"rankvar\": 634, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2062, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2165, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2005, \"group\": [1634.0, 287.0, 63.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20117_BALBc-1_X02_Y02_1226_636\", \"ini\": 763, \"clust\": 1731, \"rank\": 1058, \"rankvar\": 1845, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2063, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 416, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2342, \"group\": [1732.0, 309.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20128_BALBc-1_X02_Y02_1226_776\", \"ini\": 762, \"clust\": 2306, \"rank\": 2109, \"rankvar\": 1101, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2064, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2166, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2270, \"group\": [2306.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20281_BALBc-1_X02_Y02_1228_895\", \"ini\": 761, \"clust\": 2364, \"rank\": 1869, \"rankvar\": 1957, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2065, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 417, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2271, \"group\": [2364.0, 390.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20297_BALBc-1_X02_Y02_1229_260\", \"ini\": 760, \"clust\": 784, \"rank\": 476, \"rankvar\": 138, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2066, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 418, \"cat-2\": \"Density: 24\", \"cat_2_index\": 547, \"group\": [787.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20538_BALBc-1_X02_Y02_1231_364\", \"ini\": 759, \"clust\": 1338, \"rank\": 1149, \"rankvar\": 1012, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2067, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 925, \"cat-2\": \"Density: 23\", \"cat_2_index\": 419, \"group\": [1340.0, 186.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20631_BALBc-1_X02_Y02_1232_383\", \"ini\": 758, \"clust\": 365, \"rank\": 519, \"rankvar\": 269, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2068, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 419, \"cat-2\": \"Density: 22\", \"cat_2_index\": 308, \"group\": [365.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20752_BALBc-1_X02_Y02_1233_882\", \"ini\": 757, \"clust\": 2407, \"rank\": 1403, \"rankvar\": 325, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2069, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 420, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2343, \"group\": [2408.0, 397.0, 83.0, 22.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20757_BALBc-1_X02_Y02_1233_942\", \"ini\": 756, \"clust\": 671, \"rank\": 642, \"rankvar\": 557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2070, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 421, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2006, \"group\": [669.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20801_BALBc-1_X02_Y02_1234_579\", \"ini\": 755, \"clust\": 977, \"rank\": 329, \"rankvar\": 483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2071, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1362, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1686, \"group\": [975.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20824_BALBc-1_X02_Y02_1234_805\", \"ini\": 754, \"clust\": 2051, \"rank\": 1878, \"rankvar\": 1369, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2072, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2167, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2408, \"group\": [2052.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-20990_BALBc-1_X02_Y02_1236_981\", \"ini\": 753, \"clust\": 1035, \"rank\": 16, \"rankvar\": 243, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2073, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2655, \"cat-2\": \"Density: 27\", \"cat_2_index\": 976, \"group\": [1029.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21052_BALBc-1_X02_Y02_1238_118\", \"ini\": 752, \"clust\": 901, \"rank\": 159, \"rankvar\": 242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2074, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 707, \"cat-2\": \"Density: 24\", \"cat_2_index\": 548, \"group\": [900.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21101_BALBc-1_X02_Y02_1238_698\", \"ini\": 751, \"clust\": 130, \"rank\": 809, \"rankvar\": 1386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2075, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 422, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2106, \"group\": [128.0, 43.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21177_BALBc-1_X02_Y02_1239_735\", \"ini\": 750, \"clust\": 836, \"rank\": 29, \"rankvar\": 890, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2076, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 423, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2188, \"group\": [843.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21417_BALBc-1_X02_Y02_1241_859\", \"ini\": 749, \"clust\": 787, \"rank\": 207, \"rankvar\": 96, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2077, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2168, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2189, \"group\": [792.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21484_BALBc-1_X02_Y02_1242_93\", \"ini\": 748, \"clust\": 1295, \"rank\": 1561, \"rankvar\": 2086, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2078, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 854, \"cat-2\": \"Density: 23\", \"cat_2_index\": 420, \"group\": [1294.0, 178.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21581_BALBc-1_X02_Y02_1244_226\", \"ini\": 747, \"clust\": 1345, \"rank\": 1588, \"rankvar\": 448, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2079, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 855, \"cat-2\": \"Density: 27\", \"cat_2_index\": 977, \"group\": [1346.0, 187.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21628_BALBc-1_X02_Y02_1244_966\", \"ini\": 746, \"clust\": 2028, \"rank\": 2573, \"rankvar\": 2357, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2080, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2656, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1424, \"group\": [2034.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21630_BALBc-1_X02_Y02_1244_997\", \"ini\": 745, \"clust\": 2448, \"rank\": 1723, \"rankvar\": 302, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2081, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2657, \"cat-2\": \"Density: 22\", \"cat_2_index\": 309, \"group\": [2449.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21647_BALBc-1_X02_Y02_1245_199\", \"ini\": 744, \"clust\": 641, \"rank\": 547, \"rankvar\": 816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2082, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 708, \"cat-2\": \"Density: 27\", \"cat_2_index\": 978, \"group\": [641.0, 105.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21656_BALBc-1_X02_Y02_1245_280\", \"ini\": 743, \"clust\": 349, \"rank\": 445, \"rankvar\": 1020, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2083, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 926, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1280, \"group\": [352.0, 75.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-21832_BALBc-1_X02_Y02_1247_883\", \"ini\": 742, \"clust\": 663, \"rank\": 652, \"rankvar\": 1086, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2084, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 424, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2190, \"group\": [662.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22423_BALBc-1_X02_Y02_1254_748\", \"ini\": 741, \"clust\": 2138, \"rank\": 2527, \"rankvar\": 1171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2085, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 425, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2344, \"group\": [2136.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22543_BALBc-1_X02_Y02_1256_600\", \"ini\": 740, \"clust\": 2419, \"rank\": 2028, \"rankvar\": 1527, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2086, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 426, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2107, \"group\": [2420.0, 403.0, 85.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22609_BALBc-1_X02_Y02_1257_427\", \"ini\": 739, \"clust\": 1155, \"rank\": 1056, \"rankvar\": 614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2087, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1363, \"cat-2\": \"Density: 21\", \"cat_2_index\": 222, \"group\": [1155.0, 135.0, 25.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22632_BALBc-1_X02_Y02_1257_646\", \"ini\": 738, \"clust\": 1218, \"rank\": 1865, \"rankvar\": 2303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2088, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 427, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2108, \"group\": [1218.0, 161.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22899_BALBc-1_X02_Y02_1260_506\", \"ini\": 737, \"clust\": 153, \"rank\": 894, \"rankvar\": 433, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2089, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1364, \"cat-2\": \"Density: 25\", \"cat_2_index\": 683, \"group\": [154.0, 49.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22914_BALBc-1_X02_Y02_1260_721\", \"ini\": 736, \"clust\": 1368, \"rank\": 2092, \"rankvar\": 2004, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2090, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 428, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2007, \"group\": [1371.0, 191.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-22990_BALBc-1_X02_Y02_1261_872\", \"ini\": 735, \"clust\": 1987, \"rank\": 1995, \"rankvar\": 1007, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2091, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 429, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1896, \"group\": [1988.0, 351.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23225_BALBc-1_X02_Y02_1264_989\", \"ini\": 734, \"clust\": 2016, \"rank\": 2295, \"rankvar\": 1453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2092, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2169, \"cat-2\": \"Density: 20\", \"cat_2_index\": 170, \"group\": [2018.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23259_BALBc-1_X02_Y02_1265_403\", \"ini\": 733, \"clust\": 822, \"rank\": 218, \"rankvar\": 42, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2093, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 430, \"cat-2\": \"Density: 19\", \"cat_2_index\": 123, \"group\": [821.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23400_BALBc-1_X02_Y02_1267_557\", \"ini\": 732, \"clust\": 476, \"rank\": 1052, \"rankvar\": 1482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2094, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1365, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1130, \"group\": [481.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23411_BALBc-1_X02_Y02_1267_797\", \"ini\": 731, \"clust\": 657, \"rank\": 630, \"rankvar\": 165, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2095, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2170, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1897, \"group\": [657.0, 107.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23420_BALBc-1_X02_Y02_1267_912\", \"ini\": 730, \"clust\": 2013, \"rank\": 1992, \"rankvar\": 1692, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2096, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 431, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1425, \"group\": [2010.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23445_BALBc-1_X02_Y02_1268_264\", \"ini\": 729, \"clust\": 2542, \"rank\": 1528, \"rankvar\": 1268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2097, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 709, \"cat-2\": \"Density: 23\", \"cat_2_index\": 421, \"group\": [2544.0, 446.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23486_BALBc-1_X02_Y02_1268_775\", \"ini\": 728, \"clust\": 1348, \"rank\": 1388, \"rankvar\": 499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2098, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2171, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2191, \"group\": [1349.0, 188.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23578_BALBc-1_X02_Y02_127_136\", \"ini\": 727, \"clust\": 1678, \"rank\": 2353, \"rankvar\": 2793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2099, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 432, \"cat-2\": \"Density: 22\", \"cat_2_index\": 310, \"group\": [1681.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23693_BALBc-1_X02_Y02_1270_691\", \"ini\": 726, \"clust\": 2237, \"rank\": 2651, \"rankvar\": 2462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2100, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 433, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1787, \"group\": [2238.0, 384.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23786_BALBc-1_X02_Y02_1272_150\", \"ini\": 725, \"clust\": 846, \"rank\": 92, \"rankvar\": 128, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2101, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 710, \"cat-2\": \"Density: 20\", \"cat_2_index\": 171, \"group\": [847.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23903_BALBc-1_X02_Y02_1273_584\", \"ini\": 724, \"clust\": 1583, \"rank\": 1306, \"rankvar\": 1162, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2102, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 434, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1546, \"group\": [1584.0, 265.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-23932_BALBc-1_X02_Y02_1273_933\", \"ini\": 723, \"clust\": 485, \"rank\": 1066, \"rankvar\": 671, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2103, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 435, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1281, \"group\": [490.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24090_BALBc-1_X02_Y02_1275_977\", \"ini\": 722, \"clust\": 1950, \"rank\": 1997, \"rankvar\": 523, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2104, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2172, \"cat-2\": \"Density: 20\", \"cat_2_index\": 172, \"group\": [1951.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24259_BALBc-1_X02_Y02_1278_364\", \"ini\": 721, \"clust\": 1396, \"rank\": 1523, \"rankvar\": 306, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2105, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1667, \"cat-2\": \"Density: 18\", \"cat_2_index\": 98, \"group\": [1397.0, 198.0, 39.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24308_BALBc-1_X02_Y02_1278_906\", \"ini\": 720, \"clust\": 2229, \"rank\": 2544, \"rankvar\": 2615, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2106, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 436, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1282, \"group\": [2229.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24363_BALBc-1_X02_Y02_1279_658\", \"ini\": 719, \"clust\": 2390, \"rank\": 1855, \"rankvar\": 2057, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2107, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 437, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2109, \"group\": [2390.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24400_BALBc-1_X02_Y02_128_401\", \"ini\": 718, \"clust\": 522, \"rank\": 852, \"rankvar\": 931, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2108, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2658, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1547, \"group\": [523.0, 85.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24702_BALBc-1_X02_Y02_1283_757\", \"ini\": 717, \"clust\": 396, \"rank\": 52, \"rankvar\": 1337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2109, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 438, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1687, \"group\": [395.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24791_BALBc-1_X02_Y02_1284_937\", \"ini\": 716, \"clust\": 2135, \"rank\": 2340, \"rankvar\": 765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2110, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2173, \"cat-2\": \"Density: 25\", \"cat_2_index\": 684, \"group\": [2138.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24871_BALBc-1_X02_Y02_1286_196\", \"ini\": 715, \"clust\": 588, \"rank\": 513, \"rankvar\": 719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2111, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 711, \"cat-2\": \"Density: 23\", \"cat_2_index\": 422, \"group\": [586.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24910_BALBc-1_X02_Y02_1286_61\", \"ini\": 714, \"clust\": 763, \"rank\": 662, \"rankvar\": 29, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2112, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 856, \"cat-2\": \"Density: 22\", \"cat_2_index\": 311, \"group\": [764.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24930_BALBc-1_X02_Y02_1286_94\", \"ini\": 713, \"clust\": 1650, \"rank\": 1480, \"rankvar\": 1042, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2113, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 857, \"cat-2\": \"Density: 21\", \"cat_2_index\": 223, \"group\": [1650.0, 297.0, 66.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-24997_BALBc-1_X02_Y02_1287_830\", \"ini\": 712, \"clust\": 2472, \"rank\": 1805, \"rankvar\": 2035, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2114, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2174, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1548, \"group\": [2470.0, 420.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25247_BALBc-1_X02_Y02_1290_427\", \"ini\": 711, \"clust\": 29, \"rank\": 794, \"rankvar\": 1978, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2115, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1366, \"cat-2\": \"Density: 18\", \"cat_2_index\": 99, \"group\": [29.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25317_BALBc-1_X02_Y02_1291_314\", \"ini\": 710, \"clust\": 692, \"rank\": 460, \"rankvar\": 1148, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2116, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 712, \"cat-2\": \"Density: 20\", \"cat_2_index\": 173, \"group\": [694.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25428_BALBc-1_X02_Y02_1292_703\", \"ini\": 709, \"clust\": 582, \"rank\": 748, \"rankvar\": 399, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2117, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 439, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1688, \"group\": [585.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25511_BALBc-1_X02_Y02_1293_680\", \"ini\": 708, \"clust\": 462, \"rank\": 195, \"rankvar\": 468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2118, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 440, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1689, \"group\": [462.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25661_BALBc-1_X02_Y02_1295_739\", \"ini\": 707, \"clust\": 647, \"rank\": 702, \"rankvar\": 1719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2119, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 441, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1898, \"group\": [652.0, 105.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25688_BALBc-1_X02_Y02_1296_24\", \"ini\": 706, \"clust\": 1313, \"rank\": 1002, \"rankvar\": 2183, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2120, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1367, \"cat-2\": \"Density: 22\", \"cat_2_index\": 312, \"group\": [1314.0, 182.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-25752_BALBc-1_X02_Y02_1297_227\", \"ini\": 705, \"clust\": 169, \"rank\": 1239, \"rankvar\": 773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2121, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2494, \"cat-2\": \"Density: 23\", \"cat_2_index\": 423, \"group\": [170.0, 54.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26022_BALBc-1_X02_Y02_13_668\", \"ini\": 704, \"clust\": 524, \"rank\": 786, \"rankvar\": 762, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2122, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1368, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1283, \"group\": [527.0, 86.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26077_BALBc-1_X02_Y02_130_473\", \"ini\": 703, \"clust\": 2484, \"rank\": 1485, \"rankvar\": 2737, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2123, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 858, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1549, \"group\": [2487.0, 424.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26124_BALBc-1_X02_Y02_1300_173\", \"ini\": 702, \"clust\": 935, \"rank\": 436, \"rankvar\": 223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2124, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 442, \"cat-2\": \"Density: 19\", \"cat_2_index\": 124, \"group\": [936.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26182_BALBc-1_X02_Y02_1300_787\", \"ini\": 701, \"clust\": 1352, \"rank\": 1350, \"rankvar\": 219, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2125, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2175, \"cat-2\": \"Density: 27\", \"cat_2_index\": 979, \"group\": [1353.0, 188.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26230_BALBc-1_X02_Y02_1301_568\", \"ini\": 700, \"clust\": 1862, \"rank\": 2812, \"rankvar\": 2482, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2126, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2659, \"cat-2\": \"Density: 26\", \"cat_2_index\": 826, \"group\": [1861.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26312_BALBc-1_X02_Y02_1302_626\", \"ini\": 699, \"clust\": 1372, \"rank\": 1366, \"rankvar\": 1339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2127, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 443, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1131, \"group\": [1373.0, 192.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26315_BALBc-1_X02_Y02_1302_700\", \"ini\": 698, \"clust\": 2238, \"rank\": 2195, \"rankvar\": 2017, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2128, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 444, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1550, \"group\": [2239.0, 384.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26391_BALBc-1_X02_Y02_1303_927\", \"ini\": 697, \"clust\": 840, \"rank\": 12, \"rankvar\": 132, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2129, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2176, \"cat-2\": \"Density: 23\", \"cat_2_index\": 424, \"group\": [837.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26449_BALBc-1_X02_Y02_1304_811\", \"ini\": 696, \"clust\": 1007, \"rank\": 31, \"rankvar\": 1174, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2130, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2177, \"cat-2\": \"Density: 26\", \"cat_2_index\": 827, \"group\": [1007.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26566_BALBc-1_X02_Y02_1306_658\", \"ini\": 695, \"clust\": 488, \"rank\": 762, \"rankvar\": 1017, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2131, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 445, \"cat-2\": \"Density: 26\", \"cat_2_index\": 828, \"group\": [486.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26693_BALBc-1_X02_Y02_1308_47\", \"ini\": 694, \"clust\": 1234, \"rank\": 1389, \"rankvar\": 2262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2132, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 859, \"cat-2\": \"Density: 20\", \"cat_2_index\": 174, \"group\": [1235.0, 166.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26715_BALBc-1_X02_Y02_1308_750\", \"ini\": 693, \"clust\": 2088, \"rank\": 2674, \"rankvar\": 2557, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2133, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 446, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1426, \"group\": [2089.0, 358.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-26846_BALBc-1_X02_Y02_131_495\", \"ini\": 692, \"clust\": 1063, \"rank\": 386, \"rankvar\": 353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2134, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 447, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1427, \"group\": [1063.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27069_BALBc-1_X02_Y02_1312_571\", \"ini\": 691, \"clust\": 1024, \"rank\": 11, \"rankvar\": 190, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2135, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2660, \"cat-2\": \"Density: 23\", \"cat_2_index\": 425, \"group\": [1024.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27073_BALBc-1_X02_Y02_1312_596\", \"ini\": 690, \"clust\": 367, \"rank\": 646, \"rankvar\": 226, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2136, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 448, \"cat-2\": \"Density: 24\", \"cat_2_index\": 549, \"group\": [368.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27093_BALBc-1_X02_Y02_1312_855\", \"ini\": 689, \"clust\": 1621, \"rank\": 1703, \"rankvar\": 1346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2137, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 449, \"cat-2\": \"Density: 27\", \"cat_2_index\": 980, \"group\": [1624.0, 278.0, 60.0, 14.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27175_BALBc-1_X02_Y02_1313_889\", \"ini\": 688, \"clust\": 1645, \"rank\": 1826, \"rankvar\": 724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2138, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 450, \"cat-2\": \"Density: 21\", \"cat_2_index\": 224, \"group\": [1648.0, 296.0, 66.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27201_BALBc-1_X02_Y02_1314_469\", \"ini\": 687, \"clust\": 1215, \"rank\": 1582, \"rankvar\": 496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2139, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2661, \"cat-2\": \"Density: 16\", \"cat_2_index\": 62, \"group\": [1216.0, 160.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27203_BALBc-1_X02_Y02_1314_500\", \"ini\": 686, \"clust\": 337, \"rank\": 1037, \"rankvar\": 898, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2140, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2662, \"cat-2\": \"Density: 19\", \"cat_2_index\": 125, \"group\": [338.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27300_BALBc-1_X02_Y02_1315_692\", \"ini\": 685, \"clust\": 615, \"rank\": 176, \"rankvar\": 1026, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2141, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 451, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1132, \"group\": [618.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27591_BALBc-1_X02_Y02_1319_767\", \"ini\": 684, \"clust\": 385, \"rank\": 401, \"rankvar\": 1796, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2142, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 452, \"cat-2\": \"Density: 26\", \"cat_2_index\": 829, \"group\": [386.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27698_BALBc-1_X02_Y02_1320_253\", \"ini\": 683, \"clust\": 766, \"rank\": 427, \"rankvar\": 40, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2143, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2495, \"cat-2\": \"Density: 19\", \"cat_2_index\": 126, \"group\": [765.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27744_BALBc-1_X02_Y02_1320_827\", \"ini\": 682, \"clust\": 2041, \"rank\": 1974, \"rankvar\": 2013, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2144, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 453, \"cat-2\": \"Density: 21\", \"cat_2_index\": 225, \"group\": [2039.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27802_BALBc-1_X02_Y02_1321_633\", \"ini\": 681, \"clust\": 2475, \"rank\": 1766, \"rankvar\": 2124, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2145, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 454, \"cat-2\": \"Density: 24\", \"cat_2_index\": 550, \"group\": [2476.0, 422.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-27977_BALBc-1_X02_Y02_1324_135\", \"ini\": 680, \"clust\": 2177, \"rank\": 2142, \"rankvar\": 347, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2146, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1369, \"cat-2\": \"Density: 15\", \"cat_2_index\": 45, \"group\": [2178.0, 366.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28001_BALBc-1_X02_Y02_1324_408\", \"ini\": 679, \"clust\": 737, \"rank\": 603, \"rankvar\": 1054, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2147, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1668, \"cat-2\": \"Density: 13\", \"cat_2_index\": 20, \"group\": [737.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28058_BALBc-1_X02_Y02_1325_209\", \"ini\": 678, \"clust\": 1127, \"rank\": 777, \"rankvar\": 415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2148, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1983, \"cat-2\": \"Density: 18\", \"cat_2_index\": 100, \"group\": [1125.0, 127.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28143_BALBc-1_X02_Y02_1326_180\", \"ini\": 677, \"clust\": 867, \"rank\": 128, \"rankvar\": 813, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2149, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 455, \"cat-2\": \"Density: 15\", \"cat_2_index\": 46, \"group\": [866.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28240_BALBc-1_X02_Y02_1327_430\", \"ini\": 676, \"clust\": 1819, \"rank\": 2242, \"rankvar\": 1380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2150, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1984, \"cat-2\": \"Density: 12\", \"cat_2_index\": 10, \"group\": [1820.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28326_BALBc-1_X02_Y02_1328_311\", \"ini\": 675, \"clust\": 1367, \"rank\": 1757, \"rankvar\": 1489, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2151, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1370, \"cat-2\": \"Density: 13\", \"cat_2_index\": 21, \"group\": [1368.0, 191.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28355_BALBc-1_X02_Y02_1328_671\", \"ini\": 674, \"clust\": 2670, \"rank\": 2474, \"rankvar\": 1823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2152, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2178, \"cat-2\": \"Density: 21\", \"cat_2_index\": 226, \"group\": [2670.0, 481.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28450_BALBc-1_X02_Y02_1329_795\", \"ini\": 673, \"clust\": 2452, \"rank\": 1646, \"rankvar\": 1053, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2153, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 456, \"cat-2\": \"Density: 21\", \"cat_2_index\": 227, \"group\": [2455.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28468_BALBc-1_X02_Y02_1329_935\", \"ini\": 672, \"clust\": 2352, \"rank\": 2760, \"rankvar\": 2464, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2154, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2179, \"cat-2\": \"Density: 17\", \"cat_2_index\": 82, \"group\": [2350.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28590_BALBc-1_X02_Y02_1330_719\", \"ini\": 671, \"clust\": 2290, \"rank\": 2459, \"rankvar\": 2045, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2155, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2180, \"cat-2\": \"Density: 25\", \"cat_2_index\": 685, \"group\": [2290.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28625_BALBc-1_X02_Y02_1331_165\", \"ini\": 670, \"clust\": 759, \"rank\": 832, \"rankvar\": 1, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2156, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 628, \"cat-2\": \"Density: 14\", \"cat_2_index\": 32, \"group\": [762.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28658_BALBc-1_X02_Y02_1331_656\", \"ini\": 669, \"clust\": 636, \"rank\": 471, \"rankvar\": 235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2157, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2181, \"cat-2\": \"Density: 23\", \"cat_2_index\": 426, \"group\": [637.0, 104.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28726_BALBc-1_X02_Y02_1332_561\", \"ini\": 668, \"clust\": 1807, \"rank\": 2703, \"rankvar\": 2627, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2158, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2663, \"cat-2\": \"Density: 19\", \"cat_2_index\": 127, \"group\": [1805.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28748_BALBc-1_X02_Y02_1332_775\", \"ini\": 667, \"clust\": 1188, \"rank\": 1522, \"rankvar\": 478, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2159, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 457, \"cat-2\": \"Density: 20\", \"cat_2_index\": 175, \"group\": [1189.0, 150.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28827_BALBc-1_X02_Y02_1333_879\", \"ini\": 666, \"clust\": 2360, \"rank\": 1524, \"rankvar\": 2158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2160, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2182, \"cat-2\": \"Density: 18\", \"cat_2_index\": 101, \"group\": [2359.0, 388.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-28880_BALBc-1_X02_Y02_1334_638\", \"ini\": 665, \"clust\": 1135, \"rank\": 972, \"rankvar\": 270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2161, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 458, \"cat-2\": \"Density: 20\", \"cat_2_index\": 176, \"group\": [1135.0, 128.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29002_BALBc-1_X02_Y02_1336_613\", \"ini\": 664, \"clust\": 1211, \"rank\": 1347, \"rankvar\": 819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2162, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 459, \"cat-2\": \"Density: 19\", \"cat_2_index\": 128, \"group\": [1213.0, 160.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29036_BALBc-1_X02_Y02_1337_280\", \"ini\": 663, \"clust\": 1178, \"rank\": 1119, \"rankvar\": 595, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2163, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1371, \"cat-2\": \"Density: 13\", \"cat_2_index\": 22, \"group\": [1177.0, 144.0, 28.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29306_BALBc-1_X02_Y02_135_188\", \"ini\": 662, \"clust\": 1902, \"rank\": 1563, \"rankvar\": 2161, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2164, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1372, \"cat-2\": \"Density: 23\", \"cat_2_index\": 427, \"group\": [1902.0, 333.0, 74.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29325_BALBc-1_X02_Y02_135_44\", \"ini\": 661, \"clust\": 324, \"rank\": 647, \"rankvar\": 1646, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2165, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1373, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1690, \"group\": [324.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29381_BALBc-1_X02_Y02_136_322\", \"ini\": 660, \"clust\": 2156, \"rank\": 2825, \"rankvar\": 2609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2166, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2664, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1428, \"group\": [2160.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29406_BALBc-1_X02_Y02_136_579\", \"ini\": 659, \"clust\": 1344, \"rank\": 1470, \"rankvar\": 905, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2167, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 460, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2110, \"group\": [1345.0, 187.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29538_BALBc-1_X02_Y02_138_553\", \"ini\": 658, \"clust\": 1071, \"rank\": 1061, \"rankvar\": 3, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2168, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 461, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2272, \"group\": [1074.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29589_BALBc-1_X02_Y02_139_229\", \"ini\": 657, \"clust\": 1716, \"rank\": 1737, \"rankvar\": 2817, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2169, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1374, \"cat-2\": \"Density: 22\", \"cat_2_index\": 313, \"group\": [1726.0, 306.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29755_BALBc-1_X02_Y02_140_609\", \"ini\": 656, \"clust\": 520, \"rank\": 815, \"rankvar\": 204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2170, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1375, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2008, \"group\": [521.0, 84.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29945_BALBc-1_X02_Y02_143_270\", \"ini\": 655, \"clust\": 1882, \"rank\": 1877, \"rankvar\": 2575, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2171, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1552, \"cat-2\": \"Density: 23\", \"cat_2_index\": 428, \"group\": [1883.0, 325.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29975_BALBc-1_X02_Y02_143_638\", \"ini\": 654, \"clust\": 1629, \"rank\": 1255, \"rankvar\": 1964, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2172, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1376, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2192, \"group\": [1630.0, 284.0, 63.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-29979_BALBc-1_X02_Y02_143_672\", \"ini\": 653, \"clust\": 2485, \"rank\": 1685, \"rankvar\": 2771, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2173, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1377, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2009, \"group\": [2486.0, 424.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30142_BALBc-1_X02_Y02_145_833\", \"ini\": 652, \"clust\": 1559, \"rank\": 2305, \"rankvar\": 2438, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2174, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1378, \"cat-2\": \"Density: 26\", \"cat_2_index\": 830, \"group\": [1560.0, 254.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30179_BALBc-1_X02_Y02_146_479\", \"ini\": 651, \"clust\": 1816, \"rank\": 2546, \"rankvar\": 2059, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2175, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 860, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1429, \"group\": [1818.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30188_BALBc-1_X02_Y02_146_532\", \"ini\": 650, \"clust\": 1733, \"rank\": 616, \"rankvar\": 1697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2176, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1379, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1788, \"group\": [1736.0, 309.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30434_BALBc-1_X02_Y02_149_94\", \"ini\": 649, \"clust\": 1946, \"rank\": 2597, \"rankvar\": 2653, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2177, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 713, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1284, \"group\": [1947.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30646_BALBc-1_X02_Y02_151_872\", \"ini\": 648, \"clust\": 1094, \"rank\": 345, \"rankvar\": 914, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2178, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1380, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1285, \"group\": [1097.0, 119.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30861_BALBc-1_X02_Y02_154_562\", \"ini\": 647, \"clust\": 185, \"rank\": 1194, \"rankvar\": 707, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2179, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1381, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2010, \"group\": [185.0, 55.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30899_BALBc-1_X02_Y02_155_136\", \"ini\": 646, \"clust\": 1831, \"rank\": 2568, \"rankvar\": 358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2180, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 462, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1133, \"group\": [1831.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-30927_BALBc-1_X02_Y02_155_518\", \"ini\": 645, \"clust\": 1647, \"rank\": 1773, \"rankvar\": 695, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2181, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1382, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1551, \"group\": [1647.0, 295.0, 66.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31105_BALBc-1_X02_Y02_157_714\", \"ini\": 644, \"clust\": 2163, \"rank\": 2125, \"rankvar\": 872, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2182, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1383, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1899, \"group\": [2166.0, 362.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31639_BALBc-1_X02_Y02_164_25\", \"ini\": 643, \"clust\": 1296, \"rank\": 1365, \"rankvar\": 1735, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2183, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1384, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1286, \"group\": [1295.0, 178.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31675_BALBc-1_X02_Y02_164_786\", \"ini\": 642, \"clust\": 2164, \"rank\": 2221, \"rankvar\": 1169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2184, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1385, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1287, \"group\": [2164.0, 362.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31758_BALBc-1_X02_Y02_165_987\", \"ini\": 641, \"clust\": 1605, \"rank\": 1864, \"rankvar\": 2587, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2185, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1386, \"cat-2\": \"Density: 18\", \"cat_2_index\": 102, \"group\": [1604.0, 271.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31767_BALBc-1_X02_Y02_166_176\", \"ini\": 640, \"clust\": 1131, \"rank\": 758, \"rankvar\": 1140, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2186, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1387, \"cat-2\": \"Density: 22\", \"cat_2_index\": 314, \"group\": [1132.0, 127.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31803_BALBc-1_X02_Y02_166_611\", \"ini\": 639, \"clust\": 479, \"rank\": 831, \"rankvar\": 995, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2187, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 463, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1789, \"group\": [477.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31929_BALBc-1_X02_Y02_168_588\", \"ini\": 638, \"clust\": 342, \"rank\": 1326, \"rankvar\": 753, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2188, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1388, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1691, \"group\": [342.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-31935_BALBc-1_X02_Y02_168_629\", \"ini\": 637, \"clust\": 1541, \"rank\": 2367, \"rankvar\": 2724, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2189, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1389, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1790, \"group\": [1541.0, 253.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32146_BALBc-1_X02_Y02_170_52\", \"ini\": 636, \"clust\": 564, \"rank\": 470, \"rankvar\": 1862, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2190, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 714, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1430, \"group\": [563.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32156_BALBc-1_X02_Y02_170_685\", \"ini\": 635, \"clust\": 872, \"rank\": 424, \"rankvar\": 53, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2191, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1390, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1791, \"group\": [872.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32358_BALBc-1_X02_Y02_173_739\", \"ini\": 634, \"clust\": 1390, \"rank\": 1235, \"rankvar\": 1069, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2192, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1391, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1552, \"group\": [1390.0, 195.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32397_BALBc-1_X02_Y02_174_285\", \"ini\": 633, \"clust\": 1776, \"rank\": 2443, \"rankvar\": 2814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2193, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 715, \"cat-2\": \"Density: 21\", \"cat_2_index\": 228, \"group\": [1780.0, 317.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32509_BALBc-1_X02_Y02_175_663\", \"ini\": 632, \"clust\": 819, \"rank\": 115, \"rankvar\": 321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2194, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1392, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1792, \"group\": [823.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32671_BALBc-1_X02_Y02_177_97\", \"ini\": 631, \"clust\": 1885, \"rank\": 1957, \"rankvar\": 1116, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2195, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 716, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1431, \"group\": [1886.0, 326.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32767_BALBc-1_X02_Y02_179_372\", \"ini\": 630, \"clust\": 1739, \"rank\": 995, \"rankvar\": 2249, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2196, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2665, \"cat-2\": \"Density: 23\", \"cat_2_index\": 429, \"group\": [1739.0, 310.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32865_BALBc-1_X02_Y02_18_566\", \"ini\": 629, \"clust\": 2513, \"rank\": 1564, \"rankvar\": 1494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2197, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1393, \"cat-2\": \"Density: 24\", \"cat_2_index\": 551, \"group\": [2513.0, 435.0, 94.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-32892_BALBc-1_X02_Y02_18_931\", \"ini\": 628, \"clust\": 7, \"rank\": 1376, \"rankvar\": 1390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2198, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1394, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1288, \"group\": [8.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33131_BALBc-1_X02_Y02_183_257\", \"ini\": 627, \"clust\": 60, \"rank\": 1089, \"rankvar\": 2012, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2199, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1395, \"cat-2\": \"Density: 20\", \"cat_2_index\": 177, \"group\": [61.0, 20.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33364_BALBc-1_X02_Y02_186_477\", \"ini\": 626, \"clust\": 887, \"rank\": 929, \"rankvar\": 13, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2200, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 861, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1432, \"group\": [888.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33643_BALBc-1_X02_Y02_19_416\", \"ini\": 625, \"clust\": 2553, \"rank\": 2124, \"rankvar\": 2635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2201, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 862, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2111, \"group\": [2553.0, 449.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33747_BALBc-1_X02_Y02_190_764\", \"ini\": 624, \"clust\": 2165, \"rank\": 2172, \"rankvar\": 380, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2202, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1396, \"cat-2\": \"Density: 27\", \"cat_2_index\": 981, \"group\": [2165.0, 362.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-33886_BALBc-1_X02_Y02_192_590\", \"ini\": 623, \"clust\": 1736, \"rank\": 965, \"rankvar\": 2453, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2203, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2666, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2112, \"group\": [1734.0, 309.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34093_BALBc-1_X02_Y02_195_549\", \"ini\": 622, \"clust\": 1781, \"rank\": 2560, \"rankvar\": 2541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2204, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1397, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1289, \"group\": [1782.0, 318.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34272_BALBc-1_X02_Y02_197_884\", \"ini\": 621, \"clust\": 1844, \"rank\": 2799, \"rankvar\": 2769, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2205, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 629, \"cat-2\": \"Density: 27\", \"cat_2_index\": 982, \"group\": [1845.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34519_BALBc-1_X02_Y02_200_308\", \"ini\": 620, \"clust\": 1315, \"rank\": 1298, \"rankvar\": 1185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2206, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2667, \"cat-2\": \"Density: 25\", \"cat_2_index\": 686, \"group\": [1316.0, 183.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34660_BALBc-1_X02_Y02_202_393\", \"ini\": 619, \"clust\": 1695, \"rank\": 1839, \"rankvar\": 1675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2207, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2668, \"cat-2\": \"Density: 25\", \"cat_2_index\": 687, \"group\": [1695.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34801_BALBc-1_X02_Y02_203_987\", \"ini\": 618, \"clust\": 2764, \"rank\": 2264, \"rankvar\": 1759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2208, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1398, \"cat-2\": \"Density: 17\", \"cat_2_index\": 83, \"group\": [2765.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34909_BALBc-1_X02_Y02_205_632\", \"ini\": 617, \"clust\": 1701, \"rank\": 2471, \"rankvar\": 2825, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2209, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1399, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2011, \"group\": [1698.0, 303.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-34936_BALBc-1_X02_Y02_205_931\", \"ini\": 616, \"clust\": 1870, \"rank\": 2641, \"rankvar\": 2711, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2210, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1400, \"cat-2\": \"Density: 26\", \"cat_2_index\": 831, \"group\": [1873.0, 323.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35064_BALBc-1_X02_Y02_207_701\", \"ini\": 615, \"clust\": 2465, \"rank\": 1456, \"rankvar\": 1200, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2211, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1401, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1692, \"group\": [2466.0, 420.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35117_BALBc-1_X02_Y02_208_445\", \"ini\": 614, \"clust\": 436, \"rank\": 781, \"rankvar\": 1111, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2212, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2669, \"cat-2\": \"Density: 26\", \"cat_2_index\": 832, \"group\": [437.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35215_BALBc-1_X02_Y02_209_729\", \"ini\": 613, \"clust\": 2625, \"rank\": 1369, \"rankvar\": 1568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2213, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1752, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1134, \"group\": [2625.0, 466.0, 100.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35344_BALBc-1_X02_Y02_210_512\", \"ini\": 612, \"clust\": 1693, \"rank\": 1794, \"rankvar\": 2693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2214, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2670, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1135, \"group\": [1696.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35379_BALBc-1_X02_Y02_211_205\", \"ini\": 611, \"clust\": 531, \"rank\": 1098, \"rankvar\": 592, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2215, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1402, \"cat-2\": \"Density: 22\", \"cat_2_index\": 315, \"group\": [530.0, 88.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35409_BALBc-1_X02_Y02_211_663\", \"ini\": 610, \"clust\": 1084, \"rank\": 430, \"rankvar\": 1467, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2216, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1403, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1553, \"group\": [1086.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35439_BALBc-1_X02_Y02_212_134\", \"ini\": 609, \"clust\": 1132, \"rank\": 1126, \"rankvar\": 1704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2217, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1404, \"cat-2\": \"Density: 27\", \"cat_2_index\": 983, \"group\": [1133.0, 128.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35525_BALBc-1_X02_Y02_213_248\", \"ini\": 608, \"clust\": 1623, \"rank\": 1631, \"rankvar\": 1364, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2218, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1405, \"cat-2\": \"Density: 22\", \"cat_2_index\": 316, \"group\": [1623.0, 277.0, 59.0, 14.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-35690_BALBc-1_X02_Y02_215_161\", \"ini\": 607, \"clust\": 108, \"rank\": 1013, \"rankvar\": 2471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2219, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1406, \"cat-2\": \"Density: 19\", \"cat_2_index\": 129, \"group\": [109.0, 36.0, 11.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36203_BALBc-1_X02_Y02_221_61\", \"ini\": 606, \"clust\": 612, \"rank\": 258, \"rankvar\": 1408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2220, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 717, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1433, \"group\": [611.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36421_BALBc-1_X02_Y02_224_50\", \"ini\": 605, \"clust\": 1588, \"rank\": 1027, \"rankvar\": 2028, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2221, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2325, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1434, \"group\": [1589.0, 267.0, 57.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36428_BALBc-1_X02_Y02_224_564\", \"ini\": 604, \"clust\": 152, \"rank\": 1343, \"rankvar\": 664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2222, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2671, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1435, \"group\": [153.0, 48.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36602_BALBc-1_X02_Y02_226_849\", \"ini\": 603, \"clust\": 1817, \"rank\": 2745, \"rankvar\": 2741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2223, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1407, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1136, \"group\": [1816.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-36662_BALBc-1_X02_Y02_227_672\", \"ini\": 602, \"clust\": 1756, \"rank\": 2325, \"rankvar\": 2323, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2224, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1753, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1436, \"group\": [1754.0, 312.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37114_BALBc-1_X02_Y02_232_789\", \"ini\": 601, \"clust\": 2103, \"rank\": 2448, \"rankvar\": 1788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2225, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1408, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1137, \"group\": [2103.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37225_BALBc-1_X02_Y02_234_543\", \"ini\": 600, \"clust\": 1795, \"rank\": 2600, \"rankvar\": 2768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2226, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 464, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1138, \"group\": [1792.0, 320.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37303_BALBc-1_X02_Y02_235_622\", \"ini\": 599, \"clust\": 2521, \"rank\": 1777, \"rankvar\": 1088, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2227, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2672, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1437, \"group\": [2525.0, 439.0, 95.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37334_BALBc-1_X02_Y02_236_115\", \"ini\": 598, \"clust\": 257, \"rank\": 525, \"rankvar\": 1851, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2228, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1409, \"cat-2\": \"Density: 27\", \"cat_2_index\": 984, \"group\": [262.0, 68.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37540_BALBc-1_X02_Y02_238_897\", \"ini\": 597, \"clust\": 1845, \"rank\": 2784, \"rankvar\": 2736, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2229, \"cat-1\": \"Neighbor: CD3(+) other markers (-)\", \"cat_1_index\": 948, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1793, \"group\": [1846.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37573_BALBc-1_X02_Y02_239_298\", \"ini\": 596, \"clust\": 359, \"rank\": 722, \"rankvar\": 1517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2230, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 718, \"cat-2\": \"Density: 24\", \"cat_2_index\": 552, \"group\": [362.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37791_BALBc-1_X02_Y02_241_389\", \"ini\": 595, \"clust\": 2552, \"rank\": 1294, \"rankvar\": 589, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2231, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2673, \"cat-2\": \"Density: 22\", \"cat_2_index\": 317, \"group\": [2566.0, 452.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37827_BALBc-1_X02_Y02_242_102\", \"ini\": 594, \"clust\": 619, \"rank\": 251, \"rankvar\": 2025, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2232, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1410, \"cat-2\": \"Density: 27\", \"cat_2_index\": 985, \"group\": [623.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-37931_BALBc-1_X02_Y02_243_508\", \"ini\": 593, \"clust\": 1053, \"rank\": 618, \"rankvar\": 32, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2233, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1411, \"cat-2\": \"Density: 26\", \"cat_2_index\": 833, \"group\": [1054.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38145_BALBc-1_X02_Y02_246_163\", \"ini\": 592, \"clust\": 1206, \"rank\": 1712, \"rankvar\": 1059, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2234, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1412, \"cat-2\": \"Density: 20\", \"cat_2_index\": 178, \"group\": [1206.0, 156.0, 32.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38443_BALBc-1_X02_Y02_25_159\", \"ini\": 591, \"clust\": 1122, \"rank\": 1046, \"rankvar\": 373, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2235, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2674, \"cat-2\": \"Density: 20\", \"cat_2_index\": 179, \"group\": [1122.0, 127.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38529_BALBc-1_X02_Y02_250_569\", \"ini\": 590, \"clust\": 2530, \"rank\": 1505, \"rankvar\": 1284, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2236, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2675, \"cat-2\": \"Density: 26\", \"cat_2_index\": 834, \"group\": [2531.0, 442.0, 96.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38579_BALBc-1_X02_Y02_251_215\", \"ini\": 589, \"clust\": 2795, \"rank\": 2622, \"rankvar\": 2434, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2237, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1585, \"cat-2\": \"Density: 23\", \"cat_2_index\": 430, \"group\": [2796.0, 497.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38688_BALBc-1_X02_Y02_252_435\", \"ini\": 588, \"clust\": 1775, \"rank\": 2584, \"rankvar\": 2818, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2238, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2676, \"cat-2\": \"Density: 22\", \"cat_2_index\": 318, \"group\": [1775.0, 316.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38696_BALBc-1_X02_Y02_252_541\", \"ini\": 587, \"clust\": 2783, \"rank\": 2181, \"rankvar\": 1685, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2239, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 927, \"cat-2\": \"Density: 26\", \"cat_2_index\": 835, \"group\": [2784.0, 495.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38727_BALBc-1_X02_Y02_252_932\", \"ini\": 586, \"clust\": 2514, \"rank\": 1596, \"rankvar\": 1754, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2240, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1413, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1554, \"group\": [2514.0, 435.0, 94.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38830_BALBc-1_X02_Y02_254_340\", \"ini\": 585, \"clust\": 285, \"rank\": 823, \"rankvar\": 1500, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2241, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2677, \"cat-2\": \"Density: 26\", \"cat_2_index\": 836, \"group\": [285.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38872_BALBc-1_X02_Y02_254_893\", \"ini\": 584, \"clust\": 1818, \"rank\": 2650, \"rankvar\": 2530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2242, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1414, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1555, \"group\": [1817.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-38912_BALBc-1_X02_Y02_255_475\", \"ini\": 583, \"clust\": 1665, \"rank\": 1932, \"rankvar\": 1911, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2243, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1415, \"cat-2\": \"Density: 25\", \"cat_2_index\": 688, \"group\": [1664.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39046_BALBc-1_X02_Y02_257_270\", \"ini\": 582, \"clust\": 1340, \"rank\": 1125, \"rankvar\": 1840, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2244, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 719, \"cat-2\": \"Density: 21\", \"cat_2_index\": 229, \"group\": [1339.0, 186.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39285_BALBc-1_X02_Y02_26_589\", \"ini\": 581, \"clust\": 464, \"rank\": 347, \"rankvar\": 738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2245, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1416, \"cat-2\": \"Density: 27\", \"cat_2_index\": 986, \"group\": [464.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39521_BALBc-1_X02_Y02_262_59\", \"ini\": 580, \"clust\": 1460, \"rank\": 2183, \"rankvar\": 2319, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2246, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1417, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1556, \"group\": [1459.0, 218.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39680_BALBc-1_X02_Y02_264_831\", \"ini\": 579, \"clust\": 2796, \"rank\": 2557, \"rankvar\": 2202, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2247, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1418, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1139, \"group\": [2797.0, 497.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39683_BALBc-1_X02_Y02_264_853\", \"ini\": 578, \"clust\": 1238, \"rank\": 1170, \"rankvar\": 2358, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2248, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1419, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1557, \"group\": [1241.0, 168.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-39823_BALBc-1_X02_Y02_266_650\", \"ini\": 577, \"clust\": 1791, \"rank\": 2585, \"rankvar\": 2346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2249, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2678, \"cat-2\": \"Density: 27\", \"cat_2_index\": 987, \"group\": [1797.0, 320.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40170_BALBc-1_X02_Y02_270_307\", \"ini\": 576, \"clust\": 1959, \"rank\": 2039, \"rankvar\": 1043, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2250, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 465, \"cat-2\": \"Density: 22\", \"cat_2_index\": 319, \"group\": [1960.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40172_BALBc-1_X02_Y02_270_325\", \"ini\": 575, \"clust\": 13, \"rank\": 1356, \"rankvar\": 2463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2251, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2679, \"cat-2\": \"Density: 22\", \"cat_2_index\": 320, \"group\": [12.0, 6.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40222_BALBc-1_X02_Y02_270_961\", \"ini\": 574, \"clust\": 1633, \"rank\": 1252, \"rankvar\": 1859, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2252, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2326, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1140, \"group\": [1632.0, 285.0, 63.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40524_BALBc-1_X02_Y02_275_413\", \"ini\": 573, \"clust\": 651, \"rank\": 819, \"rankvar\": 1562, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2253, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2680, \"cat-2\": \"Density: 19\", \"cat_2_index\": 130, \"group\": [649.0, 105.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40563_BALBc-1_X02_Y02_275_847\", \"ini\": 572, \"clust\": 818, \"rank\": 27, \"rankvar\": 293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2254, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 466, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1290, \"group\": [818.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-40879_BALBc-1_X02_Y02_28_120\", \"ini\": 571, \"clust\": 1276, \"rank\": 747, \"rankvar\": 2283, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2255, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2681, \"cat-2\": \"Density: 21\", \"cat_2_index\": 230, \"group\": [1278.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41079_BALBc-1_X02_Y02_281_863\", \"ini\": 570, \"clust\": 2417, \"rank\": 1641, \"rankvar\": 2068, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2256, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1420, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1438, \"group\": [2416.0, 401.0, 84.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41088_BALBc-1_X02_Y02_281_933\", \"ini\": 569, \"clust\": 47, \"rank\": 1320, \"rankvar\": 1189, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2257, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2327, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2012, \"group\": [48.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41109_BALBc-1_X02_Y02_282_19\", \"ini\": 568, \"clust\": 1256, \"rank\": 1179, \"rankvar\": 1770, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2258, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1421, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1291, \"group\": [1256.0, 172.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41853_BALBc-1_X02_Y02_291_291\", \"ini\": 567, \"clust\": 2105, \"rank\": 2114, \"rankvar\": 181, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2259, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1669, \"cat-2\": \"Density: 21\", \"cat_2_index\": 231, \"group\": [2107.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41921_BALBc-1_X02_Y02_292_234\", \"ini\": 566, \"clust\": 1910, \"rank\": 1051, \"rankvar\": 1208, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2260, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2682, \"cat-2\": \"Density: 26\", \"cat_2_index\": 837, \"group\": [1910.0, 335.0, 74.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-41969_BALBc-1_X02_Y02_292_826\", \"ini\": 565, \"clust\": 1644, \"rank\": 1867, \"rankvar\": 2003, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2261, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1422, \"cat-2\": \"Density: 27\", \"cat_2_index\": 988, \"group\": [1645.0, 294.0, 66.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42255_BALBc-1_X02_Y02_296_91\", \"ini\": 564, \"clust\": 687, \"rank\": 450, \"rankvar\": 2328, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2262, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1423, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1439, \"group\": [689.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42361_BALBc-1_X02_Y02_298_51\", \"ini\": 563, \"clust\": 339, \"rank\": 1228, \"rankvar\": 1354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2263, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1553, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1440, \"group\": [340.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42376_BALBc-1_X02_Y02_298_688\", \"ini\": 562, \"clust\": 2432, \"rank\": 2241, \"rankvar\": 1656, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2264, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1754, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1292, \"group\": [2436.0, 413.0, 88.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42549_BALBc-1_X02_Y02_30_717\", \"ini\": 561, \"clust\": 1513, \"rank\": 1733, \"rankvar\": 2528, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2265, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1424, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1558, \"group\": [1516.0, 240.0, 48.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42623_BALBc-1_X02_Y02_300_742\", \"ini\": 560, \"clust\": 1809, \"rank\": 2574, \"rankvar\": 2366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2266, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1755, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1293, \"group\": [1810.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-42724_BALBc-1_X02_Y02_301_912\", \"ini\": 559, \"clust\": 816, \"rank\": 101, \"rankvar\": 268, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2267, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1425, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2013, \"group\": [819.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43016_BALBc-1_X02_Y02_305_789\", \"ini\": 558, \"clust\": 2565, \"rank\": 2017, \"rankvar\": 2047, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2268, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2683, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1141, \"group\": [2565.0, 451.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43073_BALBc-1_X02_Y02_306_759\", \"ini\": 557, \"clust\": 743, \"rank\": 558, \"rankvar\": 1090, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2269, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2684, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1142, \"group\": [742.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43104_BALBc-1_X02_Y02_307_25\", \"ini\": 556, \"clust\": 802, \"rank\": 812, \"rankvar\": 6, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2270, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2461, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1559, \"group\": [803.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43260_BALBc-1_X02_Y02_309_581\", \"ini\": 555, \"clust\": 2715, \"rank\": 2776, \"rankvar\": 2387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2271, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2685, \"cat-2\": \"Density: 23\", \"cat_2_index\": 431, \"group\": [2714.0, 489.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43563_BALBc-1_X02_Y02_312_481\", \"ini\": 554, \"clust\": 1166, \"rank\": 1542, \"rankvar\": 2395, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2272, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2686, \"cat-2\": \"Density: 23\", \"cat_2_index\": 432, \"group\": [1169.0, 140.0, 27.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43574_BALBc-1_X02_Y02_312_648\", \"ini\": 553, \"clust\": 1871, \"rank\": 2638, \"rankvar\": 2408, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2273, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2687, \"cat-2\": \"Density: 25\", \"cat_2_index\": 689, \"group\": [1872.0, 323.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43750_BALBc-1_X02_Y02_315_261\", \"ini\": 552, \"clust\": 22, \"rank\": 1355, \"rankvar\": 853, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2274, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1670, \"cat-2\": \"Density: 25\", \"cat_2_index\": 690, \"group\": [21.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-43996_BALBc-1_X02_Y02_318_328\", \"ini\": 551, \"clust\": 2175, \"rank\": 2111, \"rankvar\": 955, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2275, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2688, \"cat-2\": \"Density: 25\", \"cat_2_index\": 691, \"group\": [2176.0, 365.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44586_BALBc-1_X02_Y02_324_940\", \"ini\": 550, \"clust\": 599, \"rank\": 789, \"rankvar\": 2378, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2276, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2328, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1794, \"group\": [602.0, 102.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44663_BALBc-1_X02_Y02_326_112\", \"ini\": 549, \"clust\": 1240, \"rank\": 1815, \"rankvar\": 2022, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2277, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1426, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1294, \"group\": [1240.0, 167.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44734_BALBc-1_X02_Y02_326_893\", \"ini\": 548, \"clust\": 972, \"rank\": 75, \"rankvar\": 541, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2278, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1427, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2193, \"group\": [972.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44795_BALBc-1_X02_Y02_327_686\", \"ini\": 547, \"clust\": 1656, \"rank\": 1495, \"rankvar\": 1684, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2279, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2689, \"cat-2\": \"Density: 26\", \"cat_2_index\": 838, \"group\": [1659.0, 300.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44797_BALBc-1_X02_Y02_327_702\", \"ini\": 546, \"clust\": 2605, \"rank\": 1765, \"rankvar\": 832, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2280, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2690, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1295, \"group\": [2611.0, 461.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44833_BALBc-1_X02_Y02_328_182\", \"ini\": 545, \"clust\": 1886, \"rank\": 1983, \"rankvar\": 2247, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2281, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1586, \"cat-2\": \"Density: 25\", \"cat_2_index\": 692, \"group\": [1887.0, 326.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-44890_BALBc-1_X02_Y02_328_742\", \"ini\": 544, \"clust\": 2654, \"rank\": 2246, \"rankvar\": 1850, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2282, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1428, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1693, \"group\": [2658.0, 478.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45097_BALBc-1_X02_Y02_330_51\", \"ini\": 543, \"clust\": 1473, \"rank\": 1384, \"rankvar\": 1085, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2283, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2462, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1143, \"group\": [1472.0, 221.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45134_BALBc-1_X02_Y02_330_922\", \"ini\": 542, \"clust\": 1422, \"rank\": 1164, \"rankvar\": 376, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2284, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1429, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2273, \"group\": [1422.0, 205.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45153_BALBc-1_X02_Y02_331_217\", \"ini\": 541, \"clust\": 589, \"rank\": 485, \"rankvar\": 844, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2285, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1587, \"cat-2\": \"Density: 22\", \"cat_2_index\": 321, \"group\": [587.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45435_BALBc-1_X02_Y02_334_951\", \"ini\": 540, \"clust\": 859, \"rank\": 135, \"rankvar\": 834, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2286, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2329, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1795, \"group\": [862.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45581_BALBc-1_X02_Y02_336_819\", \"ini\": 539, \"clust\": 2184, \"rank\": 2394, \"rankvar\": 1958, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2287, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 467, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1560, \"group\": [2185.0, 368.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45601_BALBc-1_X02_Y02_337_15\", \"ini\": 538, \"clust\": 1139, \"rank\": 1357, \"rankvar\": 1121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2288, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1554, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1796, \"group\": [1139.0, 129.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45622_BALBc-1_X02_Y02_337_558\", \"ini\": 537, \"clust\": 24, \"rank\": 546, \"rankvar\": 2237, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2289, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2691, \"cat-2\": \"Density: 22\", \"cat_2_index\": 322, \"group\": [34.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45630_BALBc-1_X02_Y02_337_608\", \"ini\": 536, \"clust\": 2658, \"rank\": 2346, \"rankvar\": 1816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2290, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1430, \"cat-2\": \"Density: 25\", \"cat_2_index\": 693, \"group\": [2659.0, 479.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45716_BALBc-1_X02_Y02_338_787\", \"ini\": 535, \"clust\": 1506, \"rank\": 1405, \"rankvar\": 534, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2291, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1431, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1694, \"group\": [1504.0, 235.0, 46.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-45734_BALBc-1_X02_Y02_338_973\", \"ini\": 534, \"clust\": 511, \"rank\": 930, \"rankvar\": 2441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2292, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2330, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1296, \"group\": [514.0, 81.0, 17.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46044_BALBc-1_X02_Y02_342_196\", \"ini\": 533, \"clust\": 569, \"rank\": 448, \"rankvar\": 470, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2293, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1756, \"cat-2\": \"Density: 23\", \"cat_2_index\": 433, \"group\": [569.0, 99.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46376_BALBc-1_X02_Y02_346_38\", \"ini\": 532, \"clust\": 857, \"rank\": 37, \"rankvar\": 542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2294, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1671, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1695, \"group\": [857.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46496_BALBc-1_X02_Y02_347_862\", \"ini\": 531, \"clust\": 2187, \"rank\": 2817, \"rankvar\": 2780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2295, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1432, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2113, \"group\": [2187.0, 368.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46558_BALBc-1_X02_Y02_348_812\", \"ini\": 530, \"clust\": 1745, \"rank\": 1253, \"rankvar\": 520, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2296, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 468, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1797, \"group\": [1744.0, 310.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46798_BALBc-1_X02_Y02_350_899\", \"ini\": 529, \"clust\": 471, \"rank\": 693, \"rankvar\": 1366, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2297, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1433, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2194, \"group\": [472.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-46832_BALBc-1_X02_Y02_351_395\", \"ini\": 528, \"clust\": 1086, \"rank\": 369, \"rankvar\": 2065, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2298, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2692, \"cat-2\": \"Density: 18\", \"cat_2_index\": 103, \"group\": [1085.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47131_BALBc-1_X02_Y02_355_343\", \"ini\": 527, \"clust\": 1497, \"rank\": 1760, \"rankvar\": 990, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2299, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1672, \"cat-2\": \"Density: 18\", \"cat_2_index\": 104, \"group\": [1497.0, 231.0, 45.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47280_BALBc-1_X02_Y02_357_240\", \"ini\": 526, \"clust\": 1760, \"rank\": 1834, \"rankvar\": 257, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2300, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 469, \"cat-2\": \"Density: 23\", \"cat_2_index\": 434, \"group\": [1765.0, 314.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47378_BALBc-1_X02_Y02_358_713\", \"ini\": 525, \"clust\": 557, \"rank\": 754, \"rankvar\": 911, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2301, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1434, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2014, \"group\": [557.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47461_BALBc-1_X02_Y02_359_961\", \"ini\": 524, \"clust\": 2660, \"rank\": 2339, \"rankvar\": 1659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2302, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1985, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1798, \"group\": [2664.0, 480.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47870_BALBc-1_X02_Y02_364_646\", \"ini\": 523, \"clust\": 1710, \"rank\": 2025, \"rankvar\": 2816, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2303, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 470, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1441, \"group\": [1709.0, 304.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47876_BALBc-1_X02_Y02_364_679\", \"ini\": 522, \"clust\": 1486, \"rank\": 1657, \"rankvar\": 461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2304, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2693, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1900, \"group\": [1486.0, 226.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-47961_BALBc-1_X02_Y02_365_605\", \"ini\": 521, \"clust\": 1704, \"rank\": 2139, \"rankvar\": 2344, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2305, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2694, \"cat-2\": \"Density: 26\", \"cat_2_index\": 839, \"group\": [1704.0, 303.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48010_BALBc-1_X02_Y02_366_148\", \"ini\": 520, \"clust\": 1552, \"rank\": 1838, \"rankvar\": 1702, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2306, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1435, \"cat-2\": \"Density: 25\", \"cat_2_index\": 694, \"group\": [1552.0, 254.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48086_BALBc-1_X02_Y02_367_266\", \"ini\": 519, \"clust\": 1181, \"rank\": 2073, \"rankvar\": 1758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2307, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1673, \"cat-2\": \"Density: 21\", \"cat_2_index\": 232, \"group\": [1182.0, 147.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48310_BALBc-1_X02_Y02_369_971\", \"ini\": 518, \"clust\": 931, \"rank\": 690, \"rankvar\": 941, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2308, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2331, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1297, \"group\": [931.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48337_BALBc-1_X02_Y02_37_334\", \"ini\": 517, \"clust\": 2652, \"rank\": 2322, \"rankvar\": 1579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2309, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2695, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1298, \"group\": [2653.0, 478.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48352_BALBc-1_X02_Y02_37_533\", \"ini\": 516, \"clust\": 2522, \"rank\": 1871, \"rankvar\": 1995, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2310, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1436, \"cat-2\": \"Density: 27\", \"cat_2_index\": 989, \"group\": [2524.0, 439.0, 95.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48474_BALBc-1_X02_Y02_371_45\", \"ini\": 515, \"clust\": 2661, \"rank\": 2320, \"rankvar\": 963, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2311, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1674, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1799, \"group\": [2663.0, 480.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48542_BALBc-1_X02_Y02_372_378\", \"ini\": 514, \"clust\": 2492, \"rank\": 1740, \"rankvar\": 2636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2312, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2696, \"cat-2\": \"Density: 16\", \"cat_2_index\": 63, \"group\": [2492.0, 426.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48653_BALBc-1_X02_Y02_373_710\", \"ini\": 513, \"clust\": 1176, \"rank\": 1390, \"rankvar\": 624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2313, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1437, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2114, \"group\": [1178.0, 145.0, 28.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48742_BALBc-1_X02_Y02_374_766\", \"ini\": 512, \"clust\": 255, \"rank\": 1258, \"rankvar\": 454, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2314, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1438, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2274, \"group\": [255.0, 67.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48757_BALBc-1_X02_Y02_375_1002\", \"ini\": 511, \"clust\": 289, \"rank\": 735, \"rankvar\": 1633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2315, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1439, \"cat-2\": \"Density: 23\", \"cat_2_index\": 435, \"group\": [290.0, 71.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-48766_BALBc-1_X02_Y02_375_206\", \"ini\": 510, \"clust\": 1924, \"rank\": 1857, \"rankvar\": 2571, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2316, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1757, \"cat-2\": \"Density: 25\", \"cat_2_index\": 695, \"group\": [1927.0, 342.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49046_BALBc-1_X02_Y02_378_827\", \"ini\": 509, \"clust\": 1773, \"rank\": 2244, \"rankvar\": 2501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2317, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1440, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2115, \"group\": [1776.0, 316.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49131_BALBc-1_X02_Y02_379_932\", \"ini\": 508, \"clust\": 1, \"rank\": 1745, \"rankvar\": 959, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2318, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1441, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2015, \"group\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49273_BALBc-1_X02_Y02_380_907\", \"ini\": 507, \"clust\": 1614, \"rank\": 1545, \"rankvar\": 2413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2319, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1442, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2275, \"group\": [1612.0, 271.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49542_BALBc-1_X02_Y02_384_270\", \"ini\": 506, \"clust\": 1627, \"rank\": 2497, \"rankvar\": 2611, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2320, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 720, \"cat-2\": \"Density: 21\", \"cat_2_index\": 233, \"group\": [1626.0, 280.0, 61.0, 15.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49696_BALBc-1_X02_Y02_386_104\", \"ini\": 505, \"clust\": 2760, \"rank\": 2266, \"rankvar\": 1782, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2321, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 721, \"cat-2\": \"Density: 26\", \"cat_2_index\": 840, \"group\": [2764.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49859_BALBc-1_X02_Y02_387_719\", \"ini\": 504, \"clust\": 2012, \"rank\": 2011, \"rankvar\": 1870, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2322, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1443, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2276, \"group\": [2012.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49926_BALBc-1_X02_Y02_388_683\", \"ini\": 503, \"clust\": 1670, \"rank\": 1860, \"rankvar\": 2442, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2323, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 471, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2116, \"group\": [1670.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-49970_BALBc-1_X02_Y02_389_234\", \"ini\": 502, \"clust\": 199, \"rank\": 1178, \"rankvar\": 882, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2324, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 722, \"cat-2\": \"Density: 24\", \"cat_2_index\": 553, \"group\": [200.0, 60.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50081_BALBc-1_X02_Y02_39_906\", \"ini\": 501, \"clust\": 965, \"rank\": 175, \"rankvar\": 613, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2325, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1444, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1561, \"group\": [966.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50288_BALBc-1_X02_Y02_392_752\", \"ini\": 500, \"clust\": 678, \"rank\": 970, \"rankvar\": 7, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2326, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1445, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2409, \"group\": [681.0, 110.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50373_BALBc-1_X02_Y02_393_952\", \"ini\": 499, \"clust\": 383, \"rank\": 602, \"rankvar\": 400, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2327, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 472, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1901, \"group\": [384.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50545_BALBc-1_X02_Y02_396_299\", \"ini\": 498, \"clust\": 109, \"rank\": 776, \"rankvar\": 1855, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2328, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1675, \"cat-2\": \"Density: 21\", \"cat_2_index\": 234, \"group\": [110.0, 36.0, 11.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50577_BALBc-1_X02_Y02_396_66\", \"ini\": 497, \"clust\": 717, \"rank\": 86, \"rankvar\": 1856, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2329, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2463, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1562, \"group\": [716.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50639_BALBc-1_X02_Y02_397_506\", \"ini\": 496, \"clust\": 1804, \"rank\": 2729, \"rankvar\": 2734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2330, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2697, \"cat-2\": \"Density: 20\", \"cat_2_index\": 180, \"group\": [1802.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50667_BALBc-1_X02_Y02_397_837\", \"ini\": 495, \"clust\": 1387, \"rank\": 1558, \"rankvar\": 1289, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2331, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1446, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2117, \"group\": [1387.0, 194.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50671_BALBc-1_X02_Y02_397_871\", \"ini\": 494, \"clust\": 1133, \"rank\": 956, \"rankvar\": 1271, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2332, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1447, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2016, \"group\": [1134.0, 128.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50773_BALBc-1_X02_Y02_399_185\", \"ini\": 493, \"clust\": 375, \"rank\": 494, \"rankvar\": 501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2333, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1758, \"cat-2\": \"Density: 26\", \"cat_2_index\": 841, \"group\": [376.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-50866_BALBc-1_X02_Y02_4_371\", \"ini\": 492, \"clust\": 2190, \"rank\": 2045, \"rankvar\": 1682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2334, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1676, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1563, \"group\": [2193.0, 369.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51013_BALBc-1_X02_Y02_400_654\", \"ini\": 491, \"clust\": 1847, \"rank\": 2814, \"rankvar\": 2054, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2335, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 473, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2118, \"group\": [1849.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51178_BALBc-1_X02_Y02_402_800\", \"ini\": 490, \"clust\": 1814, \"rank\": 2733, \"rankvar\": 2719, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2336, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 474, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2538, \"group\": [1814.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51223_BALBc-1_X02_Y02_403_448\", \"ini\": 489, \"clust\": 1453, \"rank\": 2123, \"rankvar\": 1410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2337, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 630, \"cat-2\": \"Density: 18\", \"cat_2_index\": 105, \"group\": [1457.0, 217.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51252_BALBc-1_X02_Y02_403_925\", \"ini\": 488, \"clust\": 813, \"rank\": 337, \"rankvar\": 79, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2338, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 475, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2345, \"group\": [813.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51314_BALBc-1_X02_Y02_404_700\", \"ini\": 487, \"clust\": 2410, \"rank\": 1362, \"rankvar\": 276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2339, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1570, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2017, \"group\": [2411.0, 399.0, 83.0, 22.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51733_BALBc-1_X02_Y02_409_627\", \"ini\": 486, \"clust\": 1879, \"rank\": 1797, \"rankvar\": 2379, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2340, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 476, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1800, \"group\": [1878.0, 324.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51815_BALBc-1_X02_Y02_41_743\", \"ini\": 485, \"clust\": 1103, \"rank\": 506, \"rankvar\": 1746, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2341, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1448, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1801, \"group\": [1106.0, 122.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51858_BALBc-1_X02_Y02_410_359\", \"ini\": 484, \"clust\": 2801, \"rank\": 1775, \"rankvar\": 969, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2342, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 631, \"cat-2\": \"Density: 16\", \"cat_2_index\": 64, \"group\": [2801.0, 498.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51875_BALBc-1_X02_Y02_410_48\", \"ini\": 483, \"clust\": 2073, \"rank\": 2160, \"rankvar\": 621, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2343, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1677, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1564, \"group\": [2072.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-51967_BALBc-1_X02_Y02_411_743\", \"ini\": 482, \"clust\": 950, \"rank\": 739, \"rankvar\": 72, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2344, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1571, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2346, \"group\": [953.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52455_BALBc-1_X02_Y02_417_999\", \"ini\": 481, \"clust\": 480, \"rank\": 942, \"rankvar\": 1246, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2345, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1449, \"cat-2\": \"Density: 22\", \"cat_2_index\": 323, \"group\": [478.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52537_BALBc-1_X02_Y02_418_969\", \"ini\": 480, \"clust\": 1525, \"rank\": 1529, \"rankvar\": 833, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2346, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1450, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1565, \"group\": [1526.0, 245.0, 50.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52561_BALBc-1_X02_Y02_419_278\", \"ini\": 479, \"clust\": 1874, \"rank\": 2210, \"rankvar\": 2584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2347, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 723, \"cat-2\": \"Density: 21\", \"cat_2_index\": 235, \"group\": [1881.0, 324.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52608_BALBc-1_X02_Y02_419_84\", \"ini\": 478, \"clust\": 1113, \"rank\": 1163, \"rankvar\": 1038, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2348, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1451, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1802, \"group\": [1116.0, 124.0, 23.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52692_BALBc-1_X02_Y02_420_10\", \"ini\": 477, \"clust\": 1150, \"rank\": 1305, \"rankvar\": 167, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2349, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1452, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1696, \"group\": [1153.0, 134.0, 25.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52698_BALBc-1_X02_Y02_420_121\", \"ini\": 476, \"clust\": 2421, \"rank\": 1768, \"rankvar\": 1975, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2350, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 724, \"cat-2\": \"Density: 27\", \"cat_2_index\": 990, \"group\": [2422.0, 404.0, 85.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52763_BALBc-1_X02_Y02_420_947\", \"ini\": 475, \"clust\": 17, \"rank\": 733, \"rankvar\": 1619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2351, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 477, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1902, \"group\": [17.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-52982_BALBc-1_X02_Y02_423_748\", \"ini\": 474, \"clust\": 2132, \"rank\": 2316, \"rankvar\": 297, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2352, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 478, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2347, \"group\": [2131.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53042_BALBc-1_X02_Y02_424_598\", \"ini\": 473, \"clust\": 1723, \"rank\": 2335, \"rankvar\": 2722, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2353, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2698, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1299, \"group\": [1723.0, 305.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53143_BALBc-1_X02_Y02_425_911\", \"ini\": 472, \"clust\": 2451, \"rank\": 1725, \"rankvar\": 1093, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2354, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1453, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2493, \"group\": [2451.0, 419.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53612_BALBc-1_X02_Y02_430_780\", \"ini\": 471, \"clust\": 1848, \"rank\": 2781, \"rankvar\": 647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2355, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 479, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2277, \"group\": [1847.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53651_BALBc-1_X02_Y02_431_210\", \"ini\": 470, \"clust\": 1956, \"rank\": 2007, \"rankvar\": 1332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2356, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 725, \"cat-2\": \"Density: 27\", \"cat_2_index\": 991, \"group\": [1956.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53748_BALBc-1_X02_Y02_432_458\", \"ini\": 469, \"clust\": 2793, \"rank\": 2670, \"rankvar\": 2712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2357, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2699, \"cat-2\": \"Density: 18\", \"cat_2_index\": 106, \"group\": [2794.0, 497.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53769_BALBc-1_X02_Y02_432_657\", \"ini\": 468, \"clust\": 2477, \"rank\": 1568, \"rankvar\": 1955, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2358, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 480, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2018, \"group\": [2480.0, 422.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53818_BALBc-1_X02_Y02_433_32\", \"ini\": 467, \"clust\": 1397, \"rank\": 1327, \"rankvar\": 110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2359, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 863, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1903, \"group\": [1398.0, 198.0, 39.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53861_BALBc-1_X02_Y02_433_832\", \"ini\": 466, \"clust\": 2, \"rank\": 1696, \"rankvar\": 133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2360, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2700, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2494, \"group\": [2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53918_BALBc-1_X02_Y02_434_639\", \"ini\": 465, \"clust\": 2533, \"rank\": 1481, \"rankvar\": 1266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2361, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 481, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1803, \"group\": [2534.0, 443.0, 96.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-53990_BALBc-1_X02_Y02_435_547\", \"ini\": 464, \"clust\": 1769, \"rank\": 2801, \"rankvar\": 2773, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2362, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2701, \"cat-2\": \"Density: 24\", \"cat_2_index\": 554, \"group\": [1770.0, 315.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54076_BALBc-1_X02_Y02_436_716\", \"ini\": 463, \"clust\": 2014, \"rank\": 2088, \"rankvar\": 1829, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2363, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1572, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2348, \"group\": [2011.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54081_BALBc-1_X02_Y02_436_770\", \"ini\": 462, \"clust\": 1655, \"rank\": 1243, \"rankvar\": 2409, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2364, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 482, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2410, \"group\": [1656.0, 299.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54253_BALBc-1_X02_Y02_438_736\", \"ini\": 461, \"clust\": 1516, \"rank\": 1143, \"rankvar\": 340, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2365, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 483, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2349, \"group\": [1519.0, 241.0, 48.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54323_BALBc-1_X02_Y02_439_680\", \"ini\": 460, \"clust\": 2659, \"rank\": 2012, \"rankvar\": 46, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2366, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 484, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2278, \"group\": [2660.0, 479.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54356_BALBc-1_X02_Y02_44_193\", \"ini\": 459, \"clust\": 2536, \"rank\": 1946, \"rankvar\": 704, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2367, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2702, \"cat-2\": \"Density: 21\", \"cat_2_index\": 236, \"group\": [2537.0, 444.0, 96.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54458_BALBc-1_X02_Y02_440_577\", \"ini\": 458, \"clust\": 1783, \"rank\": 2375, \"rankvar\": 2402, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2368, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2703, \"cat-2\": \"Density: 24\", \"cat_2_index\": 555, \"group\": [1783.0, 319.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54556_BALBc-1_X02_Y02_441_892\", \"ini\": 457, \"clust\": 1838, \"rank\": 2790, \"rankvar\": 2475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2369, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1454, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2350, \"group\": [1839.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54798_BALBc-1_X02_Y02_444_961\", \"ini\": 456, \"clust\": 8, \"rank\": 1578, \"rankvar\": 1081, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2370, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1455, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1442, \"group\": [9.0, 5.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54819_BALBc-1_X02_Y02_445_21\", \"ini\": 455, \"clust\": 1363, \"rank\": 1686, \"rankvar\": 1886, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2371, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 485, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1904, \"group\": [1366.0, 191.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-54862_BALBc-1_X02_Y02_445_938\", \"ini\": 454, \"clust\": 482, \"rank\": 1186, \"rankvar\": 73, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2372, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 632, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2019, \"group\": [484.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55022_BALBc-1_X02_Y02_448_177\", \"ini\": 453, \"clust\": 701, \"rank\": 89, \"rankvar\": 1130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2373, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1456, \"cat-2\": \"Density: 27\", \"cat_2_index\": 992, \"group\": [702.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55154_BALBc-1_X02_Y02_449_850\", \"ini\": 452, \"clust\": 2337, \"rank\": 2610, \"rankvar\": 1940, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2374, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2704, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2279, \"group\": [2338.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55263_BALBc-1_X02_Y02_450_401\", \"ini\": 451, \"clust\": 43, \"rank\": 1627, \"rankvar\": 1131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2375, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1457, \"cat-2\": \"Density: 18\", \"cat_2_index\": 107, \"group\": [46.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55369_BALBc-1_X02_Y02_451_799\", \"ini\": 450, \"clust\": 558, \"rank\": 648, \"rankvar\": 1460, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2376, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 486, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2280, \"group\": [558.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55395_BALBc-1_X02_Y02_452_153\", \"ini\": 449, \"clust\": 1151, \"rank\": 1416, \"rankvar\": 262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2377, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 726, \"cat-2\": \"Density: 25\", \"cat_2_index\": 696, \"group\": [1151.0, 133.0, 25.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55452_BALBc-1_X02_Y02_452_751\", \"ini\": 448, \"clust\": 783, \"rank\": 57, \"rankvar\": 420, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2378, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 487, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2281, \"group\": [783.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55453_BALBc-1_X02_Y02_452_762\", \"ini\": 447, \"clust\": 2197, \"rank\": 2158, \"rankvar\": 238, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2379, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 488, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2411, \"group\": [2196.0, 371.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55520_BALBc-1_X02_Y02_453_611\", \"ini\": 446, \"clust\": 1249, \"rank\": 1016, \"rankvar\": 1938, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2380, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 489, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1300, \"group\": [1250.0, 170.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55535_BALBc-1_X02_Y02_453_779\", \"ini\": 445, \"clust\": 1374, \"rank\": 1774, \"rankvar\": 1889, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2381, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 490, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2351, \"group\": [1378.0, 192.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55769_BALBc-1_X02_Y02_456_717\", \"ini\": 444, \"clust\": 1741, \"rank\": 1233, \"rankvar\": 694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2382, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 491, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2539, \"group\": [1741.0, 310.0, 69.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55815_BALBc-1_X02_Y02_457_41\", \"ini\": 443, \"clust\": 113, \"rank\": 1120, \"rankvar\": 2493, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2383, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1986, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1697, \"group\": [114.0, 38.0, 11.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55836_BALBc-1_X02_Y02_457_651\", \"ini\": 442, \"clust\": 1668, \"rank\": 1634, \"rankvar\": 2468, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2384, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 492, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1905, \"group\": [1671.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55853_BALBc-1_X02_Y02_457_820\", \"ini\": 441, \"clust\": 115, \"rank\": 791, \"rankvar\": 808, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2385, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 493, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2540, \"group\": [116.0, 39.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-55927_BALBc-1_X02_Y02_458_893\", \"ini\": 440, \"clust\": 1406, \"rank\": 937, \"rankvar\": 531, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2386, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 633, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2412, \"group\": [1407.0, 202.0, 40.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56318_BALBc-1_X02_Y02_462_867\", \"ini\": 439, \"clust\": 1960, \"rank\": 2047, \"rankvar\": 814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2387, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 634, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2495, \"group\": [1961.0, 348.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56467_BALBc-1_X02_Y02_465_167\", \"ini\": 438, \"clust\": 936, \"rank\": 443, \"rankvar\": 1049, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2388, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 494, \"cat-2\": \"Density: 26\", \"cat_2_index\": 842, \"group\": [937.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56525_BALBc-1_X02_Y02_465_852\", \"ini\": 437, \"clust\": 2339, \"rank\": 2735, \"rankvar\": 2476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2389, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 495, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2413, \"group\": [2342.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56552_BALBc-1_X02_Y02_466_269\", \"ini\": 436, \"clust\": 1872, \"rank\": 2695, \"rankvar\": 1999, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2390, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1458, \"cat-2\": \"Density: 23\", \"cat_2_index\": 436, \"group\": [1870.0, 323.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56674_BALBc-1_X02_Y02_467_624\", \"ini\": 435, \"clust\": 1800, \"rank\": 2671, \"rankvar\": 2605, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2391, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 496, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1804, \"group\": [1800.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56705_BALBc-1_X02_Y02_467_999\", \"ini\": 434, \"clust\": 1539, \"rank\": 2405, \"rankvar\": 2133, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2392, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1459, \"cat-2\": \"Density: 21\", \"cat_2_index\": 237, \"group\": [1540.0, 252.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56787_BALBc-1_X02_Y02_469_24\", \"ini\": 433, \"clust\": 444, \"rank\": 499, \"rankvar\": 609, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2393, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1460, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2119, \"group\": [447.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-56914_BALBc-1_X02_Y02_47_868\", \"ini\": 432, \"clust\": 1597, \"rank\": 1519, \"rankvar\": 1860, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2394, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1461, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1805, \"group\": [1596.0, 268.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57003_BALBc-1_X02_Y02_470_953\", \"ini\": 431, \"clust\": 1223, \"rank\": 1426, \"rankvar\": 966, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2395, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 635, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1443, \"group\": [1226.0, 163.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57113_BALBc-1_X02_Y02_472_681\", \"ini\": 430, \"clust\": 2196, \"rank\": 2233, \"rankvar\": 1262, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2396, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 497, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2352, \"group\": [2198.0, 371.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57374_BALBc-1_X02_Y02_475_756\", \"ini\": 429, \"clust\": 858, \"rank\": 24, \"rankvar\": 407, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2397, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 498, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2414, \"group\": [858.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57405_BALBc-1_X02_Y02_476_220\", \"ini\": 428, \"clust\": 1883, \"rank\": 1502, \"rankvar\": 1164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2398, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2705, \"cat-2\": \"Density: 26\", \"cat_2_index\": 843, \"group\": [1884.0, 325.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57527_BALBc-1_X02_Y02_477_735\", \"ini\": 427, \"clust\": 2198, \"rank\": 2236, \"rankvar\": 294, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2399, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 499, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2496, \"group\": [2197.0, 371.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57580_BALBc-1_X02_Y02_478_330\", \"ini\": 426, \"clust\": 1880, \"rank\": 1899, \"rankvar\": 2494, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2400, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1462, \"cat-2\": \"Density: 18\", \"cat_2_index\": 108, \"group\": [1879.0, 324.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57688_BALBc-1_X02_Y02_479_626\", \"ini\": 425, \"clust\": 217, \"rank\": 1068, \"rankvar\": 1223, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2401, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 500, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1566, \"group\": [220.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57711_BALBc-1_X02_Y02_48_105\", \"ini\": 424, \"clust\": 1358, \"rank\": 1577, \"rankvar\": 1635, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2402, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2464, \"cat-2\": \"Density: 22\", \"cat_2_index\": 324, \"group\": [1363.0, 190.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-57920_BALBc-1_X02_Y02_481_785\", \"ini\": 423, \"clust\": 1225, \"rank\": 1525, \"rankvar\": 2321, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2403, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 501, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2282, \"group\": [1225.0, 163.0, 33.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58105_BALBc-1_X02_Y02_484_252\", \"ini\": 422, \"clust\": 529, \"rank\": 952, \"rankvar\": 1232, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2404, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1463, \"cat-2\": \"Density: 23\", \"cat_2_index\": 437, \"group\": [531.0, 88.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58124_BALBc-1_X02_Y02_484_432\", \"ini\": 421, \"clust\": 1708, \"rank\": 1851, \"rankvar\": 2767, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2405, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1464, \"cat-2\": \"Density: 20\", \"cat_2_index\": 181, \"group\": [1710.0, 304.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58170_BALBc-1_X02_Y02_484_987\", \"ini\": 420, \"clust\": 2019, \"rank\": 2168, \"rankvar\": 904, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2406, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 502, \"cat-2\": \"Density: 24\", \"cat_2_index\": 556, \"group\": [2020.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58222_BALBc-1_X02_Y02_485_578\", \"ini\": 419, \"clust\": 1864, \"rank\": 2777, \"rankvar\": 2276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2407, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2706, \"cat-2\": \"Density: 27\", \"cat_2_index\": 993, \"group\": [1863.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58242_BALBc-1_X02_Y02_485_832\", \"ini\": 418, \"clust\": 2235, \"rank\": 2074, \"rankvar\": 1213, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2408, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 503, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2415, \"group\": [2234.0, 381.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58476_BALBc-1_X02_Y02_488_845\", \"ini\": 417, \"clust\": 311, \"rank\": 828, \"rankvar\": 1046, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2409, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 504, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2353, \"group\": [312.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58566_BALBc-1_X02_Y02_489_956\", \"ini\": 416, \"clust\": 1977, \"rank\": 2228, \"rankvar\": 1371, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2410, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 636, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1567, \"group\": [1981.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58719_BALBc-1_X02_Y02_491_17\", \"ini\": 415, \"clust\": 176, \"rank\": 1152, \"rankvar\": 607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2411, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1465, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2283, \"group\": [179.0, 55.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58720_BALBc-1_X02_Y02_491_183\", \"ini\": 414, \"clust\": 1075, \"rank\": 560, \"rankvar\": 619, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2412, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 505, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1444, \"group\": [1079.0, 116.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58765_BALBc-1_X02_Y02_491_801\", \"ini\": 413, \"clust\": 2011, \"rank\": 2216, \"rankvar\": 1893, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2413, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 506, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2497, \"group\": [2013.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58869_BALBc-1_X02_Y02_493_117\", \"ini\": 412, \"clust\": 1064, \"rank\": 714, \"rankvar\": 115, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2414, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1466, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1568, \"group\": [1064.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58906_BALBc-1_X02_Y02_493_620\", \"ini\": 411, \"clust\": 2118, \"rank\": 2821, \"rankvar\": 2628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2415, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 507, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1698, \"group\": [2117.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-58994_BALBc-1_X02_Y02_494_645\", \"ini\": 410, \"clust\": 2127, \"rank\": 2805, \"rankvar\": 2658, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2416, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 508, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1806, \"group\": [2124.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59111_BALBc-1_X02_Y02_496_195\", \"ini\": 409, \"clust\": 1025, \"rank\": 5, \"rankvar\": 437, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2417, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 727, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1144, \"group\": [1025.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59190_BALBc-1_X02_Y02_496_937\", \"ini\": 408, \"clust\": 1402, \"rank\": 1010, \"rankvar\": 1076, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2418, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 637, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2020, \"group\": [1405.0, 200.0, 40.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59361_BALBc-1_X02_Y02_499_164\", \"ini\": 407, \"clust\": 1327, \"rank\": 827, \"rankvar\": 639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2419, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 728, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1569, \"group\": [1329.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59627_BALBc-1_X02_Y02_501_380\", \"ini\": 406, \"clust\": 1180, \"rank\": 2093, \"rankvar\": 2099, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2420, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1467, \"cat-2\": \"Density: 20\", \"cat_2_index\": 182, \"group\": [1181.0, 147.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59630_BALBc-1_X02_Y02_501_406\", \"ini\": 405, \"clust\": 325, \"rank\": 550, \"rankvar\": 1377, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2421, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 509, \"cat-2\": \"Density: 21\", \"cat_2_index\": 238, \"group\": [325.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59720_BALBc-1_X02_Y02_502_671\", \"ini\": 404, \"clust\": 1118, \"rank\": 1091, \"rankvar\": 2137, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2422, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 510, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1807, \"group\": [1119.0, 125.0, 23.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59726_BALBc-1_X02_Y02_502_707\", \"ini\": 403, \"clust\": 167, \"rank\": 1249, \"rankvar\": 476, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2423, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 511, \"cat-2\": \"Density: 43\", \"cat_2_index\": 2592, \"group\": [167.0, 53.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59879_BALBc-1_X02_Y02_504_867\", \"ini\": 402, \"clust\": 2067, \"rank\": 2511, \"rankvar\": 1389, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2424, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 638, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2120, \"group\": [2067.0, 356.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-59993_BALBc-1_X02_Y02_506_250\", \"ini\": 401, \"clust\": 2653, \"rank\": 2593, \"rankvar\": 1779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2425, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1468, \"cat-2\": \"Density: 25\", \"cat_2_index\": 697, \"group\": [2654.0, 478.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60209_BALBc-1_X02_Y02_508_95\", \"ini\": 400, \"clust\": 414, \"rank\": 399, \"rankvar\": 1584, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2426, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 928, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1808, \"group\": [422.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60246_BALBc-1_X02_Y02_509_500\", \"ini\": 399, \"clust\": 1777, \"rank\": 2601, \"rankvar\": 2339, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2427, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2707, \"cat-2\": \"Density: 22\", \"cat_2_index\": 325, \"group\": [1779.0, 317.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60484_BALBc-1_X02_Y02_511_481\", \"ini\": 398, \"clust\": 2425, \"rank\": 1380, \"rankvar\": 1984, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2428, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1469, \"cat-2\": \"Density: 19\", \"cat_2_index\": 131, \"group\": [2428.0, 407.0, 86.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60509_BALBc-1_X02_Y02_511_799\", \"ini\": 397, \"clust\": 222, \"rank\": 1329, \"rankvar\": 481, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2429, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 512, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2498, \"group\": [225.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60571_BALBc-1_X02_Y02_512_687\", \"ini\": 396, \"clust\": 2036, \"rank\": 2144, \"rankvar\": 1750, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2430, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 513, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2121, \"group\": [2037.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60617_BALBc-1_X02_Y02_513_306\", \"ini\": 395, \"clust\": 2788, \"rank\": 2207, \"rankvar\": 1811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2431, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1470, \"cat-2\": \"Density: 22\", \"cat_2_index\": 326, \"group\": [2793.0, 497.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60829_BALBc-1_X02_Y02_515_980\", \"ini\": 394, \"clust\": 472, \"rank\": 564, \"rankvar\": 1465, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2432, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 639, \"cat-2\": \"Density: 24\", \"cat_2_index\": 557, \"group\": [473.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-60871_BALBc-1_X02_Y02_516_759\", \"ini\": 393, \"clust\": 1855, \"rank\": 2706, \"rankvar\": 1368, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2433, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 514, \"cat-2\": \"Density: 42\", \"cat_2_index\": 2541, \"group\": [1856.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61279_BALBc-1_X02_Y02_520_66\", \"ini\": 392, \"clust\": 1321, \"rank\": 1175, \"rankvar\": 1097, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2434, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1987, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1906, \"group\": [1322.0, 184.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61334_BALBc-1_X02_Y02_521_353\", \"ini\": 391, \"clust\": 974, \"rank\": 317, \"rankvar\": 305, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2435, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2803, \"cat-2\": \"Density: 21\", \"cat_2_index\": 239, \"group\": [977.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61348_BALBc-1_X02_Y02_521_546\", \"ini\": 390, \"clust\": 2162, \"rank\": 2793, \"rankvar\": 2171, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2436, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2708, \"cat-2\": \"Density: 24\", \"cat_2_index\": 558, \"group\": [2162.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61372_BALBc-1_X02_Y02_521_896\", \"ini\": 389, \"clust\": 2192, \"rank\": 1840, \"rankvar\": 1204, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2437, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 640, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2416, \"group\": [2192.0, 369.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61534_BALBc-1_X02_Y02_523_860\", \"ini\": 388, \"clust\": 1839, \"rank\": 2819, \"rankvar\": 2525, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2438, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 515, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2354, \"group\": [1840.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61617_BALBc-1_X02_Y02_525_120\", \"ini\": 387, \"clust\": 932, \"rank\": 532, \"rankvar\": 313, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2439, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 929, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1907, \"group\": [935.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61773_BALBc-1_X02_Y02_527_152\", \"ini\": 386, \"clust\": 1174, \"rank\": 1090, \"rankvar\": 2337, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2440, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 729, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1570, \"group\": [1171.0, 141.0, 27.0, 7.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61824_BALBc-1_X02_Y02_527_636\", \"ini\": 385, \"clust\": 2074, \"rank\": 2190, \"rankvar\": 766, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2441, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2709, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1445, \"group\": [2073.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61842_BALBc-1_X02_Y02_527_845\", \"ini\": 384, \"clust\": 1859, \"rank\": 2684, \"rankvar\": 2353, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2442, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 516, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2499, \"group\": [1866.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61916_BALBc-1_X02_Y02_528_823\", \"ini\": 383, \"clust\": 474, \"rank\": 1118, \"rankvar\": 957, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2443, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 517, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2355, \"group\": [474.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61962_BALBc-1_X02_Y02_529_428\", \"ini\": 382, \"clust\": 2503, \"rank\": 1335, \"rankvar\": 900, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2444, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 518, \"cat-2\": \"Density: 23\", \"cat_2_index\": 438, \"group\": [2506.0, 431.0, 92.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-61994_BALBc-1_X02_Y02_529_877\", \"ini\": 381, \"clust\": 2443, \"rank\": 1602, \"rankvar\": 1074, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2445, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 519, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2284, \"group\": [2443.0, 416.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62001_BALBc-1_X02_Y02_529_999\", \"ini\": 380, \"clust\": 2125, \"rank\": 2786, \"rankvar\": 2732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2446, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 520, \"cat-2\": \"Density: 19\", \"cat_2_index\": 132, \"group\": [2125.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62024_BALBc-1_X02_Y02_53_346\", \"ini\": 379, \"clust\": 413, \"rank\": 140, \"rankvar\": 1462, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2447, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1588, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1301, \"group\": [412.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62088_BALBc-1_X02_Y02_530_268\", \"ini\": 378, \"clust\": 1326, \"rank\": 912, \"rankvar\": 502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2448, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1471, \"cat-2\": \"Density: 23\", \"cat_2_index\": 439, \"group\": [1330.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62119_BALBc-1_X02_Y02_530_680\", \"ini\": 377, \"clust\": 2021, \"rank\": 2501, \"rankvar\": 2179, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2449, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 521, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1908, \"group\": [2022.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62139_BALBc-1_X02_Y02_530_910\", \"ini\": 376, \"clust\": 1193, \"rank\": 1980, \"rankvar\": 1931, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2450, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 522, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2356, \"group\": [1194.0, 151.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62142_BALBc-1_X02_Y02_530_925\", \"ini\": 375, \"clust\": 2482, \"rank\": 1115, \"rankvar\": 1900, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2451, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 641, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2357, \"group\": [2482.0, 423.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62170_BALBc-1_X02_Y02_531_40\", \"ini\": 374, \"clust\": 861, \"rank\": 76, \"rankvar\": 572, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2452, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2246, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1809, \"group\": [861.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62352_BALBc-1_X02_Y02_533_593\", \"ini\": 373, \"clust\": 1786, \"rank\": 2438, \"rankvar\": 2517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2453, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2710, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1145, \"group\": [1787.0, 319.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62487_BALBc-1_X02_Y02_535_456\", \"ini\": 372, \"clust\": 2499, \"rank\": 1632, \"rankvar\": 1113, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2454, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2711, \"cat-2\": \"Density: 22\", \"cat_2_index\": 327, \"group\": [2503.0, 429.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62584_BALBc-1_X02_Y02_536_793\", \"ini\": 371, \"clust\": 298, \"rank\": 955, \"rankvar\": 659, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2455, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 523, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2285, \"group\": [298.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62698_BALBc-1_X02_Y02_538_395\", \"ini\": 370, \"clust\": 1672, \"rank\": 2411, \"rankvar\": 2779, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2456, \"cat-1\": \"Neighbor: megakaryocytes\", \"cat_1_index\": 2804, \"cat-2\": \"Density: 23\", \"cat_2_index\": 440, \"group\": [1673.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62842_BALBc-1_X02_Y02_54_556\", \"ini\": 369, \"clust\": 2516, \"rank\": 1905, \"rankvar\": 1836, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2457, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1573, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1146, \"group\": [2517.0, 437.0, 95.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-62982_BALBc-1_X02_Y02_541_688\", \"ini\": 368, \"clust\": 1877, \"rank\": 1771, \"rankvar\": 1949, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2458, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 524, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2021, \"group\": [1876.0, 324.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63073_BALBc-1_X02_Y02_542_677\", \"ini\": 367, \"clust\": 23, \"rank\": 1014, \"rankvar\": 1062, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2459, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 525, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1810, \"group\": [22.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63152_BALBc-1_X02_Y02_543_663\", \"ini\": 366, \"clust\": 997, \"rank\": 523, \"rankvar\": 36, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2460, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2712, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1302, \"group\": [998.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63263_BALBc-1_X02_Y02_544_724\", \"ini\": 365, \"clust\": 2148, \"rank\": 2296, \"rankvar\": 490, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2461, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1472, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2195, \"group\": [2153.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63356_BALBc-1_X02_Y02_545_764\", \"ini\": 364, \"clust\": 1353, \"rank\": 1334, \"rankvar\": 559, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2462, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 526, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2417, \"group\": [1354.0, 188.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63594_BALBc-1_X02_Y02_548_836\", \"ini\": 363, \"clust\": 1840, \"rank\": 2810, \"rankvar\": 2418, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2463, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 527, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2500, \"group\": [1841.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63611_BALBc-1_X02_Y02_548_990\", \"ini\": 362, \"clust\": 824, \"rank\": 109, \"rankvar\": 649, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2464, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 642, \"cat-2\": \"Density: 21\", \"cat_2_index\": 240, \"group\": [825.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63621_BALBc-1_X02_Y02_549_222\", \"ini\": 361, \"clust\": 2638, \"rank\": 2044, \"rankvar\": 2652, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2465, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2713, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1571, \"group\": [2638.0, 472.0, 101.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63732_BALBc-1_X02_Y02_55_601\", \"ini\": 360, \"clust\": 1973, \"rank\": 2003, \"rankvar\": 1201, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2466, \"cat-1\": \"Neighbor: CD11c(+) B cells\", \"cat_1_index\": 946, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1303, \"group\": [1973.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-63834_BALBc-1_X02_Y02_550_878\", \"ini\": 359, \"clust\": 2206, \"rank\": 2376, \"rankvar\": 360, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2467, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 528, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2286, \"group\": [2207.0, 376.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64028_BALBc-1_X02_Y02_553_519\", \"ini\": 358, \"clust\": 2081, \"rank\": 2669, \"rankvar\": 2009, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2468, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 864, \"cat-2\": \"Density: 22\", \"cat_2_index\": 328, \"group\": [2081.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64073_BALBc-1_X02_Y02_553_924\", \"ini\": 357, \"clust\": 409, \"rank\": 412, \"rankvar\": 1406, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2469, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 643, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2196, \"group\": [408.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64372_BALBc-1_X02_Y02_558_116\", \"ini\": 356, \"clust\": 2427, \"rank\": 1674, \"rankvar\": 184, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2470, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 930, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1811, \"group\": [2427.0, 406.0, 86.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64456_BALBc-1_X02_Y02_558_995\", \"ini\": 355, \"clust\": 1857, \"rank\": 2740, \"rankvar\": 1927, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2471, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 529, \"cat-2\": \"Density: 22\", \"cat_2_index\": 329, \"group\": [1858.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64463_BALBc-1_X02_Y02_559_16\", \"ini\": 354, \"clust\": 695, \"rank\": 143, \"rankvar\": 751, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2472, \"cat-1\": \"Neighbor: NK cells\", \"cat_1_index\": 2247, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1699, \"group\": [699.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64505_BALBc-1_X02_Y02_559_58\", \"ini\": 353, \"clust\": 226, \"rank\": 1033, \"rankvar\": 733, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2473, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 931, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1909, \"group\": [229.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64571_BALBc-1_X02_Y02_56_412\", \"ini\": 352, \"clust\": 1696, \"rank\": 1629, \"rankvar\": 674, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2474, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2714, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2122, \"group\": [1702.0, 303.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64626_BALBc-1_X02_Y02_560_186\", \"ini\": 351, \"clust\": 291, \"rank\": 570, \"rankvar\": 861, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2475, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 730, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1700, \"group\": [293.0, 72.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64676_BALBc-1_X02_Y02_560_746\", \"ini\": 350, \"clust\": 2221, \"rank\": 2436, \"rankvar\": 907, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2476, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1473, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2123, \"group\": [2224.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64706_BALBc-1_X02_Y02_561_129\", \"ini\": 349, \"clust\": 681, \"rank\": 614, \"rankvar\": 1277, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2477, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1474, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1910, \"group\": [744.0, 112.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64758_BALBc-1_X02_Y02_561_689\", \"ini\": 348, \"clust\": 1884, \"rank\": 1811, \"rankvar\": 2006, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2478, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 530, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1812, \"group\": [1885.0, 325.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64883_BALBc-1_X02_Y02_563_442\", \"ini\": 347, \"clust\": 1782, \"rank\": 2194, \"rankvar\": 1883, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2479, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1574, \"cat-2\": \"Density: 26\", \"cat_2_index\": 844, \"group\": [1785.0, 319.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64889_BALBc-1_X02_Y02_563_483\", \"ini\": 346, \"clust\": 1797, \"rank\": 2612, \"rankvar\": 2802, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2480, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2715, \"cat-2\": \"Density: 23\", \"cat_2_index\": 441, \"group\": [1795.0, 320.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-64905_BALBc-1_X02_Y02_563_774\", \"ini\": 345, \"clust\": 1123, \"rank\": 578, \"rankvar\": 1359, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2481, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 531, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2358, \"group\": [1123.0, 127.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65149_BALBc-1_X02_Y02_566_81\", \"ini\": 344, \"clust\": 2079, \"rank\": 2421, \"rankvar\": 1387, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2482, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 865, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1911, \"group\": [2082.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65186_BALBc-1_X02_Y02_567_271\", \"ini\": 343, \"clust\": 159, \"rank\": 1489, \"rankvar\": 677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2483, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1988, \"cat-2\": \"Density: 25\", \"cat_2_index\": 698, \"group\": [159.0, 51.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65292_BALBc-1_X02_Y02_568_797\", \"ini\": 342, \"clust\": 2026, \"rank\": 2110, \"rankvar\": 680, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2484, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 532, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2359, \"group\": [2025.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-65906_BALBc-1_X02_Y02_575_921\", \"ini\": 341, \"clust\": 2271, \"rank\": 2498, \"rankvar\": 2266, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2485, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2716, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2197, \"group\": [2272.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66097_BALBc-1_X02_Y02_578_646\", \"ini\": 340, \"clust\": 1842, \"rank\": 2575, \"rankvar\": 197, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2486, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2717, \"cat-2\": \"Density: 27\", \"cat_2_index\": 994, \"group\": [1842.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66183_BALBc-1_X02_Y02_579_966\", \"ini\": 339, \"clust\": 1843, \"rank\": 2686, \"rankvar\": 463, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2487, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 644, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1147, \"group\": [1843.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66339_BALBc-1_X02_Y02_581_317\", \"ini\": 338, \"clust\": 1333, \"rank\": 803, \"rankvar\": 942, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2488, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1989, \"cat-2\": \"Density: 23\", \"cat_2_index\": 442, \"group\": [1334.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66357_BALBc-1_X02_Y02_581_49\", \"ini\": 337, \"clust\": 1257, \"rank\": 1268, \"rankvar\": 1956, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2489, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1678, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2022, \"group\": [1257.0, 172.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66415_BALBc-1_X02_Y02_582_178\", \"ini\": 336, \"clust\": 607, \"rank\": 676, \"rankvar\": 1362, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2490, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2496, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1572, \"group\": [606.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66616_BALBc-1_X02_Y02_584_773\", \"ini\": 335, \"clust\": 2208, \"rank\": 2199, \"rankvar\": 1980, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2491, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 533, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2198, \"group\": [2210.0, 377.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66755_BALBc-1_X02_Y02_586_349\", \"ini\": 334, \"clust\": 1609, \"rank\": 1543, \"rankvar\": 2804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2492, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2718, \"cat-2\": \"Density: 23\", \"cat_2_index\": 443, \"group\": [1607.0, 271.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66774_BALBc-1_X02_Y02_586_530\", \"ini\": 333, \"clust\": 1717, \"rank\": 2486, \"rankvar\": 2819, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2493, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2719, \"cat-2\": \"Density: 22\", \"cat_2_index\": 330, \"group\": [1720.0, 305.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66875_BALBc-1_X02_Y02_587_790\", \"ini\": 332, \"clust\": 1662, \"rank\": 2060, \"rankvar\": 2466, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2494, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 534, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2199, \"group\": [1666.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-66943_BALBc-1_X02_Y02_588_705\", \"ini\": 331, \"clust\": 2193, \"rank\": 2545, \"rankvar\": 2126, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2495, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1475, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1912, \"group\": [2194.0, 370.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67033_BALBc-1_X02_Y02_589_854\", \"ini\": 330, \"clust\": 961, \"rank\": 309, \"rankvar\": 1158, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2496, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 535, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2418, \"group\": [964.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67050_BALBc-1_X02_Y02_59_136\", \"ini\": 329, \"clust\": 1325, \"rank\": 917, \"rankvar\": 1483, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2497, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2720, \"cat-2\": \"Density: 22\", \"cat_2_index\": 331, \"group\": [1326.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67117_BALBc-1_X02_Y02_59_886\", \"ini\": 328, \"clust\": 1512, \"rank\": 1375, \"rankvar\": 2207, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2498, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1476, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1304, \"group\": [1513.0, 240.0, 48.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67206_BALBc-1_X02_Y02_590_941\", \"ini\": 327, \"clust\": 481, \"rank\": 675, \"rankvar\": 891, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2499, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2721, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1913, \"group\": [485.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67342_BALBc-1_X02_Y02_592_741\", \"ini\": 326, \"clust\": 2022, \"rank\": 2273, \"rankvar\": 1628, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2500, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1477, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2287, \"group\": [2023.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67356_BALBc-1_X02_Y02_592_870\", \"ini\": 325, \"clust\": 2123, \"rank\": 2739, \"rankvar\": 2657, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2501, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2722, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2200, \"group\": [2122.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67680_BALBc-1_X02_Y02_596_996\", \"ini\": 324, \"clust\": 571, \"rank\": 854, \"rankvar\": 479, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2502, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 536, \"cat-2\": \"Density: 21\", \"cat_2_index\": 241, \"group\": [572.0, 99.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67689_BALBc-1_X02_Y02_597_244\", \"ini\": 323, \"clust\": 877, \"rank\": 339, \"rankvar\": 94, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2503, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1759, \"cat-2\": \"Density: 24\", \"cat_2_index\": 559, \"group\": [884.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67735_BALBc-1_X02_Y02_597_815\", \"ini\": 322, \"clust\": 1688, \"rank\": 1675, \"rankvar\": 2783, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2504, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 537, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2288, \"group\": [1688.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67822_BALBc-1_X02_Y02_598_971\", \"ini\": 321, \"clust\": 2479, \"rank\": 1309, \"rankvar\": 1645, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2505, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 538, \"cat-2\": \"Density: 25\", \"cat_2_index\": 699, \"group\": [2479.0, 422.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67827_BALBc-1_X02_Y02_599_124\", \"ini\": 320, \"clust\": 1195, \"rank\": 2257, \"rankvar\": 1732, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2506, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1478, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1573, \"group\": [1195.0, 152.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-67881_BALBc-1_X02_Y02_599_836\", \"ini\": 319, \"clust\": 2768, \"rank\": 2004, \"rankvar\": 1547, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2507, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 539, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2501, \"group\": [2768.0, 491.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68161_BALBc-1_X02_Y02_602_173\", \"ini\": 318, \"clust\": 1904, \"rank\": 1473, \"rankvar\": 2084, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2508, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1479, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1305, \"group\": [1905.0, 333.0, 74.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68329_BALBc-1_X02_Y02_604_479\", \"ini\": 317, \"clust\": 1790, \"rank\": 2615, \"rankvar\": 2295, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2509, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2465, \"cat-2\": \"Density: 26\", \"cat_2_index\": 845, \"group\": [1789.0, 320.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68364_BALBc-1_X02_Y02_604_898\", \"ini\": 316, \"clust\": 888, \"rank\": 522, \"rankvar\": 30, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2510, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2723, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2201, \"group\": [889.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68650_BALBc-1_X02_Y02_608_247\", \"ini\": 315, \"clust\": 71, \"rank\": 1318, \"rankvar\": 1441, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2511, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1679, \"cat-2\": \"Density: 24\", \"cat_2_index\": 560, \"group\": [71.0, 25.0, 8.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68746_BALBc-1_X02_Y02_609_287\", \"ini\": 314, \"clust\": 2716, \"rank\": 2381, \"rankvar\": 1485, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2512, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 540, \"cat-2\": \"Density: 24\", \"cat_2_index\": 561, \"group\": [2715.0, 489.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68769_BALBc-1_X02_Y02_609_505\", \"ini\": 313, \"clust\": 475, \"rank\": 964, \"rankvar\": 1598, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2513, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2724, \"cat-2\": \"Density: 21\", \"cat_2_index\": 242, \"group\": [475.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68812_BALBc-1_X02_Y02_61_160\", \"ini\": 312, \"clust\": 1226, \"rank\": 2014, \"rankvar\": 2435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2514, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 541, \"cat-2\": \"Density: 19\", \"cat_2_index\": 133, \"group\": [1230.0, 164.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68919_BALBc-1_X02_Y02_610_685\", \"ini\": 311, \"clust\": 1684, \"rank\": 2336, \"rankvar\": 2698, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2515, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1480, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1813, \"group\": [1682.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-68936_BALBc-1_X02_Y02_610_908\", \"ini\": 310, \"clust\": 2158, \"rank\": 2754, \"rankvar\": 1518, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2516, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2725, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2202, \"group\": [2157.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69083_BALBc-1_X02_Y02_612_642\", \"ini\": 309, \"clust\": 1624, \"rank\": 1749, \"rankvar\": 2169, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2517, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1481, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1148, \"group\": [1628.0, 282.0, 62.0, 15.0, 6.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69172_BALBc-1_X02_Y02_613_941\", \"ini\": 308, \"clust\": 1942, \"rank\": 2454, \"rankvar\": 1933, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2518, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2726, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1574, \"group\": [1940.0, 346.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69269_BALBc-1_X02_Y02_615_12\", \"ini\": 307, \"clust\": 1136, \"rank\": 858, \"rankvar\": 851, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2519, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1482, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1575, \"group\": [1136.0, 128.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69314_BALBc-1_X02_Y02_615_721\", \"ini\": 306, \"clust\": 1440, \"rank\": 798, \"rankvar\": 2427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2520, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1483, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2023, \"group\": [1436.0, 209.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69385_BALBc-1_X02_Y02_616_708\", \"ini\": 305, \"clust\": 2200, \"rank\": 1832, \"rankvar\": 2010, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2521, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 542, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1814, \"group\": [2201.0, 373.0, 80.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69392_BALBc-1_X02_Y02_616_80\", \"ini\": 304, \"clust\": 2775, \"rank\": 1927, \"rankvar\": 1926, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2522, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 866, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1815, \"group\": [2775.0, 492.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69516_BALBc-1_X02_Y02_618_346\", \"ini\": 303, \"clust\": 735, \"rank\": 390, \"rankvar\": 1843, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2523, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2727, \"cat-2\": \"Density: 26\", \"cat_2_index\": 846, \"group\": [735.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69550_BALBc-1_X02_Y02_618_772\", \"ini\": 302, \"clust\": 2129, \"rank\": 2595, \"rankvar\": 1624, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2524, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1680, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2124, \"group\": [2128.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69694_BALBc-1_X02_Y02_62_685\", \"ini\": 301, \"clust\": 1970, \"rank\": 2032, \"rankvar\": 1636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2525, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1484, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1576, \"group\": [1971.0, 349.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69845_BALBc-1_X02_Y02_621_738\", \"ini\": 300, \"clust\": 1533, \"rank\": 1984, \"rankvar\": 2564, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2526, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 543, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2125, \"group\": [1536.0, 249.0, 51.0, 12.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69869_BALBc-1_X02_Y02_621_980\", \"ini\": 299, \"clust\": 1952, \"rank\": 2170, \"rankvar\": 1549, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2527, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 544, \"cat-2\": \"Density: 22\", \"cat_2_index\": 332, \"group\": [1954.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-69947_BALBc-1_X02_Y02_622_856\", \"ini\": 298, \"clust\": 2015, \"rank\": 2337, \"rankvar\": 1942, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2528, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2728, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2419, \"group\": [2019.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70036_BALBc-1_X02_Y02_623_791\", \"ini\": 297, \"clust\": 2194, \"rank\": 2169, \"rankvar\": 668, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2529, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1681, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2203, \"group\": [2195.0, 370.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70145_BALBc-1_X02_Y02_625_402\", \"ini\": 296, \"clust\": 111, \"rank\": 1043, \"rankvar\": 2823, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2530, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2332, \"cat-2\": \"Density: 23\", \"cat_2_index\": 444, \"group\": [112.0, 36.0, 11.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70178_BALBc-1_X02_Y02_625_825\", \"ini\": 295, \"clust\": 2020, \"rank\": 2240, \"rankvar\": 879, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2531, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1485, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2360, \"group\": [2021.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70445_BALBc-1_X02_Y02_629_611\", \"ini\": 294, \"clust\": 1772, \"rank\": 2665, \"rankvar\": 2798, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2532, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2729, \"cat-2\": \"Density: 24\", \"cat_2_index\": 562, \"group\": [1773.0, 315.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70500_BALBc-1_X02_Y02_63_385\", \"ini\": 293, \"clust\": 906, \"rank\": 36, \"rankvar\": 712, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2533, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2730, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2024, \"group\": [906.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70692_BALBc-1_X02_Y02_631_72\", \"ini\": 292, \"clust\": 2512, \"rank\": 1544, \"rankvar\": 1348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2534, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 545, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1701, \"group\": [2515.0, 436.0, 94.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70695_BALBc-1_X02_Y02_631_748\", \"ini\": 291, \"clust\": 2424, \"rank\": 2134, \"rankvar\": 1929, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2535, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1682, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2204, \"group\": [2424.0, 405.0, 85.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70916_BALBc-1_X02_Y02_634_5\", \"ini\": 290, \"clust\": 691, \"rank\": 377, \"rankvar\": 350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2536, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1683, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1577, \"group\": [691.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-70961_BALBc-1_X02_Y02_635_253\", \"ini\": 289, \"clust\": 506, \"rank\": 948, \"rankvar\": 1367, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2537, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1684, \"cat-2\": \"Density: 24\", \"cat_2_index\": 563, \"group\": [506.0, 78.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71202_BALBc-1_X02_Y02_638_308\", \"ini\": 288, \"clust\": 2802, \"rank\": 1969, \"rankvar\": 2505, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2538, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1486, \"cat-2\": \"Density: 24\", \"cat_2_index\": 564, \"group\": [2807.0, 501.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71220_BALBc-1_X02_Y02_638_474\", \"ini\": 287, \"clust\": 2785, \"rank\": 2529, \"rankvar\": 2085, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2539, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2731, \"cat-2\": \"Density: 26\", \"cat_2_index\": 847, \"group\": [2787.0, 496.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71595_BALBc-1_X02_Y02_642_520\", \"ini\": 286, \"clust\": 2558, \"rank\": 1707, \"rankvar\": 836, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2540, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2732, \"cat-2\": \"Density: 22\", \"cat_2_index\": 333, \"group\": [2561.0, 450.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71629_BALBc-1_X02_Y02_642_830\", \"ini\": 285, \"clust\": 1147, \"rank\": 954, \"rankvar\": 335, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2541, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1487, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2289, \"group\": [1148.0, 132.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71736_BALBc-1_X02_Y02_644_115\", \"ini\": 284, \"clust\": 1342, \"rank\": 1437, \"rankvar\": 793, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2542, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 867, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1702, \"group\": [1343.0, 187.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71739_BALBc-1_X02_Y02_644_155\", \"ini\": 283, \"clust\": 1957, \"rank\": 2133, \"rankvar\": 1350, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2543, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1760, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1816, \"group\": [1957.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71744_BALBc-1_X02_Y02_644_213\", \"ini\": 282, \"clust\": 2107, \"rank\": 2619, \"rankvar\": 1041, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2544, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1761, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1578, \"group\": [2106.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71785_BALBc-1_X02_Y02_644_568\", \"ini\": 281, \"clust\": 1725, \"rank\": 2483, \"rankvar\": 2824, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2545, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2733, \"cat-2\": \"Density: 23\", \"cat_2_index\": 445, \"group\": [1722.0, 305.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-71963_BALBc-1_X02_Y02_646_955\", \"ini\": 280, \"clust\": 2214, \"rank\": 2515, \"rankvar\": 996, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2546, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2183, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1149, \"group\": [2212.0, 379.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72006_BALBc-1_X02_Y02_647_56\", \"ini\": 279, \"clust\": 260, \"rank\": 270, \"rankvar\": 2021, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2547, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 546, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1703, \"group\": [258.0, 68.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72118_BALBc-1_X02_Y02_648_980\", \"ini\": 278, \"clust\": 789, \"rank\": 116, \"rankvar\": 108, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2548, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 547, \"cat-2\": \"Density: 25\", \"cat_2_index\": 700, \"group\": [789.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72144_BALBc-1_X02_Y02_649_345\", \"ini\": 277, \"clust\": 2794, \"rank\": 2580, \"rankvar\": 2488, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2549, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2333, \"cat-2\": \"Density: 24\", \"cat_2_index\": 565, \"group\": [2795.0, 497.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72328_BALBc-1_X02_Y02_650_881\", \"ini\": 276, \"clust\": 1986, \"rank\": 2219, \"rankvar\": 1118, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2550, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2734, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2126, \"group\": [1986.0, 350.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72406_BALBc-1_X02_Y02_651_83\", \"ini\": 275, \"clust\": 276, \"rank\": 428, \"rankvar\": 1324, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2551, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 548, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2025, \"group\": [278.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72482_BALBc-1_X02_Y02_652_908\", \"ini\": 274, \"clust\": 2236, \"rank\": 2269, \"rankvar\": 2329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2552, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2184, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2205, \"group\": [2235.0, 381.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72586_BALBc-1_X02_Y02_654_266\", \"ini\": 273, \"clust\": 1273, \"rank\": 1166, \"rankvar\": 1905, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2553, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1488, \"cat-2\": \"Density: 24\", \"cat_2_index\": 566, \"group\": [1274.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72771_BALBc-1_X02_Y02_656_677\", \"ini\": 272, \"clust\": 87, \"rank\": 1265, \"rankvar\": 1491, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2554, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1489, \"cat-2\": \"Density: 27\", \"cat_2_index\": 995, \"group\": [91.0, 30.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72775_BALBc-1_X02_Y02_656_705\", \"ini\": 271, \"clust\": 1752, \"rank\": 2050, \"rankvar\": 2651, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2555, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 549, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1817, \"group\": [1757.0, 312.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-72872_BALBc-1_X02_Y02_657_832\", \"ini\": 270, \"clust\": 2062, \"rank\": 2556, \"rankvar\": 1666, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2556, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1490, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2290, \"group\": [2065.0, 356.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73062_BALBc-1_X02_Y02_66_601\", \"ini\": 269, \"clust\": 470, \"rank\": 764, \"rankvar\": 1048, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2557, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 550, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1306, \"group\": [471.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73332_BALBc-1_X02_Y02_662_61\", \"ini\": 268, \"clust\": 1110, \"rank\": 736, \"rankvar\": 1412, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2558, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 551, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1579, \"group\": [1111.0, 123.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73887_BALBc-1_X02_Y02_67_263\", \"ini\": 267, \"clust\": 525, \"rank\": 576, \"rankvar\": 858, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2559, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2735, \"cat-2\": \"Density: 19\", \"cat_2_index\": 134, \"group\": [526.0, 86.0, 19.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73953_BALBc-1_X02_Y02_670_242\", \"ini\": 266, \"clust\": 2815, \"rank\": 1894, \"rankvar\": 1681, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2560, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1491, \"cat-2\": \"Density: 23\", \"cat_2_index\": 446, \"group\": [2816.0, 503.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73968_BALBc-1_X02_Y02_670_412\", \"ini\": 265, \"clust\": 486, \"rank\": 788, \"rankvar\": 930, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2561, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2736, \"cat-2\": \"Density: 23\", \"cat_2_index\": 447, \"group\": [489.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-73976_BALBc-1_X02_Y02_670_483\", \"ini\": 264, \"clust\": 1426, \"rank\": 869, \"rankvar\": 2469, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2562, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1492, \"cat-2\": \"Density: 24\", \"cat_2_index\": 567, \"group\": [1425.0, 206.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74149_BALBc-1_X02_Y02_672_855\", \"ini\": 263, \"clust\": 939, \"rank\": 353, \"rankvar\": 397, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2563, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 552, \"cat-2\": \"Density: 41\", \"cat_2_index\": 2502, \"group\": [939.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74167_BALBc-1_X02_Y02_673_108\", \"ini\": 262, \"clust\": 920, \"rank\": 555, \"rankvar\": 214, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2564, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 932, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1150, \"group\": [920.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74236_BALBc-1_X02_Y02_673_890\", \"ini\": 261, \"clust\": 440, \"rank\": 539, \"rankvar\": 1098, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2565, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 553, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2206, \"group\": [439.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74383_BALBc-1_X02_Y02_675_456\", \"ini\": 260, \"clust\": 928, \"rank\": 422, \"rankvar\": 697, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2566, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1493, \"cat-2\": \"Density: 24\", \"cat_2_index\": 568, \"group\": [927.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74388_BALBc-1_X02_Y02_675_540\", \"ini\": 259, \"clust\": 335, \"rank\": 780, \"rankvar\": 1274, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2567, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 554, \"cat-2\": \"Density: 24\", \"cat_2_index\": 569, \"group\": [336.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74441_BALBc-1_X02_Y02_676_169\", \"ini\": 258, \"clust\": 583, \"rank\": 796, \"rankvar\": 650, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2568, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 933, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1307, \"group\": [583.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74508_BALBc-1_X02_Y02_676_991\", \"ini\": 257, \"clust\": 2006, \"rank\": 1915, \"rankvar\": 1276, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2569, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 555, \"cat-2\": \"Density: 18\", \"cat_2_index\": 109, \"group\": [2005.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74535_BALBc-1_X02_Y02_677_385\", \"ini\": 256, \"clust\": 1892, \"rank\": 2227, \"rankvar\": 2273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2570, \"cat-1\": \"Neighbor: dirt\", \"cat_1_index\": 2334, \"cat-2\": \"Density: 26\", \"cat_2_index\": 848, \"group\": [1891.0, 328.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74729_BALBc-1_X02_Y02_679_790\", \"ini\": 255, \"clust\": 2244, \"rank\": 2321, \"rankvar\": 2568, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2571, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1494, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2291, \"group\": [2244.0, 385.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74731_BALBc-1_X02_Y02_679_812\", \"ini\": 254, \"clust\": 1408, \"rank\": 898, \"rankvar\": 670, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2572, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1495, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2361, \"group\": [1409.0, 203.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74790_BALBc-1_X02_Y02_68_580\", \"ini\": 253, \"clust\": 1600, \"rank\": 1518, \"rankvar\": 752, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2573, \"cat-1\": \"Neighbor: CD4(+)MHCII(+)\", \"cat_1_index\": 1575, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1151, \"group\": [1600.0, 270.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74845_BALBc-1_X02_Y02_680_497\", \"ini\": 252, \"clust\": 2084, \"rank\": 2451, \"rankvar\": 1540, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2574, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1496, \"cat-2\": \"Density: 23\", \"cat_2_index\": 448, \"group\": [2084.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-74920_BALBc-1_X02_Y02_681_628\", \"ini\": 251, \"clust\": 1393, \"rank\": 1121, \"rankvar\": 1003, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2575, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1497, \"cat-2\": \"Density: 23\", \"cat_2_index\": 449, \"group\": [1393.0, 196.0, 38.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75012_BALBc-1_X02_Y02_682_927\", \"ini\": 250, \"clust\": 1954, \"rank\": 2416, \"rankvar\": 1574, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2576, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2185, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2026, \"group\": [1953.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75078_BALBc-1_X02_Y02_683_754\", \"ini\": 249, \"clust\": 1865, \"rank\": 2788, \"rankvar\": 2503, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2577, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1685, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2127, \"group\": [1864.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75093_BALBc-1_X02_Y02_683_961\", \"ini\": 248, \"clust\": 2554, \"rank\": 2157, \"rankvar\": 2370, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2578, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2186, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1152, \"group\": [2554.0, 449.0, 97.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75122_BALBc-1_X02_Y02_684_41\", \"ini\": 247, \"clust\": 680, \"rank\": 395, \"rankvar\": 758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2579, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1686, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1580, \"group\": [680.0, 110.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75210_BALBc-1_X02_Y02_685_709\", \"ini\": 246, \"clust\": 1894, \"rank\": 1975, \"rankvar\": 1804, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2580, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 556, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1914, \"group\": [1894.0, 328.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75222_BALBc-1_X02_Y02_685_85\", \"ini\": 245, \"clust\": 302, \"rank\": 709, \"rankvar\": 1356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2581, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 557, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1153, \"group\": [306.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75253_BALBc-1_X02_Y02_686_343\", \"ini\": 244, \"clust\": 1935, \"rank\": 2056, \"rankvar\": 2062, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2582, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 868, \"cat-2\": \"Density: 22\", \"cat_2_index\": 334, \"group\": [1937.0, 345.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75823_BALBc-1_X02_Y02_692_891\", \"ini\": 243, \"clust\": 2379, \"rank\": 1653, \"rankvar\": 2064, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2583, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 558, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2292, \"group\": [2377.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-75887_BALBc-1_X02_Y02_693_684\", \"ini\": 242, \"clust\": 1685, \"rank\": 2390, \"rankvar\": 2788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2584, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 869, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1446, \"group\": [1683.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76096_BALBc-1_X02_Y02_696_645\", \"ini\": 241, \"clust\": 1683, \"rank\": 2587, \"rankvar\": 2739, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2585, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 870, \"cat-2\": \"Density: 27\", \"cat_2_index\": 996, \"group\": [1684.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76103_BALBc-1_X02_Y02_696_735\", \"ini\": 240, \"clust\": 484, \"rank\": 459, \"rankvar\": 1439, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2586, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 559, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2027, \"group\": [483.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76294_BALBc-1_X02_Y02_699_112\", \"ini\": 239, \"clust\": 390, \"rank\": 447, \"rankvar\": 348, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2587, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 934, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1154, \"group\": [391.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76538_BALBc-1_X02_Y02_700_290\", \"ini\": 238, \"clust\": 1266, \"rank\": 874, \"rankvar\": 2280, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2588, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1498, \"cat-2\": \"Density: 24\", \"cat_2_index\": 570, \"group\": [1266.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76553_BALBc-1_X02_Y02_700_423\", \"ini\": 237, \"clust\": 975, \"rank\": 240, \"rankvar\": 288, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2589, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1499, \"cat-2\": \"Density: 23\", \"cat_2_index\": 450, \"group\": [976.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76803_BALBc-1_X02_Y02_703_773\", \"ini\": 236, \"clust\": 388, \"rank\": 99, \"rankvar\": 2026, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2590, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 560, \"cat-2\": \"Density: 39\", \"cat_2_index\": 2362, \"group\": [388.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-76901_BALBc-1_X02_Y02_704_869\", \"ini\": 235, \"clust\": 2807, \"rank\": 2284, \"rankvar\": 2286, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2591, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1500, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2207, \"group\": [2814.0, 502.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77001_BALBc-1_X02_Y02_706_34\", \"ini\": 234, \"clust\": 2474, \"rank\": 1671, \"rankvar\": 1844, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2592, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1687, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1581, \"group\": [2475.0, 421.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77014_BALBc-1_X02_Y02_706_510\", \"ini\": 233, \"clust\": 1182, \"rank\": 1819, \"rankvar\": 1304, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2593, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1501, \"cat-2\": \"Density: 24\", \"cat_2_index\": 571, \"group\": [1183.0, 147.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77039_BALBc-1_X02_Y02_706_830\", \"ini\": 232, \"clust\": 123, \"rank\": 1441, \"rankvar\": 1639, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2594, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1502, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2420, \"group\": [124.0, 41.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77074_BALBc-1_X02_Y02_707_326\", \"ini\": 231, \"clust\": 2201, \"rank\": 1637, \"rankvar\": 121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2595, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1503, \"cat-2\": \"Density: 22\", \"cat_2_index\": 335, \"group\": [2205.0, 375.0, 80.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77093_BALBc-1_X02_Y02_707_617\", \"ini\": 230, \"clust\": 1778, \"rank\": 2756, \"rankvar\": 2694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2596, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2737, \"cat-2\": \"Density: 27\", \"cat_2_index\": 997, \"group\": [1777.0, 317.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77135_BALBc-1_X02_Y02_707_975\", \"ini\": 229, \"clust\": 493, \"rank\": 813, \"rankvar\": 981, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2597, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 561, \"cat-2\": \"Density: 23\", \"cat_2_index\": 451, \"group\": [492.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77220_BALBc-1_X02_Y02_709_226\", \"ini\": 228, \"clust\": 2569, \"rank\": 2238, \"rankvar\": 2390, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2598, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1762, \"cat-2\": \"Density: 21\", \"cat_2_index\": 243, \"group\": [2572.0, 455.0, 98.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77373_BALBc-1_X02_Y02_710_537\", \"ini\": 227, \"clust\": 1878, \"rank\": 1970, \"rankvar\": 2421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2599, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1504, \"cat-2\": \"Density: 26\", \"cat_2_index\": 849, \"group\": [1880.0, 324.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77376_BALBc-1_X02_Y02_710_565\", \"ini\": 226, \"clust\": 2712, \"rank\": 2522, \"rankvar\": 1950, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2600, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2738, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1155, \"group\": [2711.0, 488.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77395_BALBc-1_X02_Y02_710_791\", \"ini\": 225, \"clust\": 2159, \"rank\": 2791, \"rankvar\": 1834, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2601, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 562, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2028, \"group\": [2158.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77586_BALBc-1_X02_Y02_712_99\", \"ini\": 224, \"clust\": 1203, \"rank\": 1462, \"rankvar\": 410, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2602, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 563, \"cat-2\": \"Density: 27\", \"cat_2_index\": 998, \"group\": [1203.0, 154.0, 31.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77673_BALBc-1_X02_Y02_714_203\", \"ini\": 223, \"clust\": 1714, \"rank\": 1507, \"rankvar\": 2384, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2603, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2739, \"cat-2\": \"Density: 24\", \"cat_2_index\": 572, \"group\": [1714.0, 304.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77790_BALBc-1_X02_Y02_715_74\", \"ini\": 222, \"clust\": 703, \"rank\": 80, \"rankvar\": 1427, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2604, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1990, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1156, \"group\": [701.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-77983_BALBc-1_X02_Y02_717_921\", \"ini\": 221, \"clust\": 2644, \"rank\": 2243, \"rankvar\": 1839, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2605, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 564, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1915, \"group\": [2644.0, 476.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78066_BALBc-1_X02_Y02_719_1006\", \"ini\": 220, \"clust\": 2166, \"rank\": 2230, \"rankvar\": 45, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2606, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 565, \"cat-2\": \"Density: 16\", \"cat_2_index\": 65, \"group\": [2167.0, 363.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78175_BALBc-1_X02_Y02_72_479\", \"ini\": 219, \"clust\": 2182, \"rank\": 2796, \"rankvar\": 2745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2607, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 871, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2029, \"group\": [2182.0, 368.0, 79.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78545_BALBc-1_X02_Y02_724_169\", \"ini\": 218, \"clust\": 1241, \"rank\": 501, \"rankvar\": 2536, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2608, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 935, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1582, \"group\": [1245.0, 169.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78626_BALBc-1_X02_Y02_725_382\", \"ini\": 217, \"clust\": 224, \"rank\": 1195, \"rankvar\": 644, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2609, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 872, \"cat-2\": \"Density: 22\", \"cat_2_index\": 336, \"group\": [224.0, 62.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78655_BALBc-1_X02_Y02_725_758\", \"ini\": 216, \"clust\": 2104, \"rank\": 2502, \"rankvar\": 2082, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2610, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 566, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1818, \"group\": [2104.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78673_BALBc-1_X02_Y02_725_953\", \"ini\": 215, \"clust\": 2124, \"rank\": 2778, \"rankvar\": 2533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2611, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2187, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1157, \"group\": [2126.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78684_BALBc-1_X02_Y02_726_124\", \"ini\": 214, \"clust\": 1319, \"rank\": 1250, \"rankvar\": 382, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2612, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 873, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1158, \"group\": [1320.0, 184.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78789_BALBc-1_X02_Y02_727_511\", \"ini\": 213, \"clust\": 1896, \"rank\": 1782, \"rankvar\": 2121, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2613, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1505, \"cat-2\": \"Density: 23\", \"cat_2_index\": 452, \"group\": [1897.0, 331.0, 72.0, 19.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78889_BALBc-1_X02_Y02_728_781\", \"ini\": 212, \"clust\": 10, \"rank\": 1349, \"rankvar\": 2103, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2614, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 567, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2128, \"group\": [11.0, 6.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78953_BALBc-1_X02_Y02_729_688\", \"ini\": 211, \"clust\": 1801, \"rank\": 2549, \"rankvar\": 1873, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2615, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2740, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1583, \"group\": [1808.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78974_BALBc-1_X02_Y02_729_890\", \"ini\": 210, \"clust\": 793, \"rank\": 87, \"rankvar\": 444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2616, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 568, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2208, \"group\": [794.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-78999_BALBc-1_X02_Y02_73_354\", \"ini\": 209, \"clust\": 1779, \"rank\": 2731, \"rankvar\": 2758, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2617, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2741, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1159, \"group\": [1778.0, 317.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79016_BALBc-1_X02_Y02_73_624\", \"ini\": 208, \"clust\": 1544, \"rank\": 2277, \"rankvar\": 2738, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2618, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1506, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1584, \"group\": [1545.0, 253.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79095_BALBc-1_X02_Y02_730_647\", \"ini\": 207, \"clust\": 2152, \"rank\": 2360, \"rankvar\": 1484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2619, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2742, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1447, \"group\": [2152.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79236_BALBc-1_X02_Y02_732_35\", \"ini\": 206, \"clust\": 2614, \"rank\": 1354, \"rankvar\": 2436, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2620, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 941, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1308, \"group\": [2615.0, 462.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79458_BALBc-1_X02_Y02_734_917\", \"ini\": 205, \"clust\": 2272, \"rank\": 2660, \"rankvar\": 2664, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2621, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2188, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2030, \"group\": [2273.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79623_BALBc-1_X02_Y02_737_105\", \"ini\": 204, \"clust\": 305, \"rank\": 996, \"rankvar\": 1351, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2622, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 874, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1160, \"group\": [304.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79762_BALBc-1_X02_Y02_738_804\", \"ini\": 203, \"clust\": 0, \"rank\": 1893, \"rankvar\": 1727, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2623, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1507, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2209, \"group\": [3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79767_BALBc-1_X02_Y02_738_865\", \"ini\": 202, \"clust\": 1992, \"rank\": 1763, \"rankvar\": 946, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2624, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1508, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2421, \"group\": [1993.0, 351.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79785_BALBc-1_X02_Y02_739_196\", \"ini\": 201, \"clust\": 925, \"rank\": 200, \"rankvar\": 346, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2625, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2743, \"cat-2\": \"Density: 24\", \"cat_2_index\": 573, \"group\": [925.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79862_BALBc-1_X02_Y02_739_981\", \"ini\": 200, \"clust\": 797, \"rank\": 389, \"rankvar\": 788, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2626, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2189, \"cat-2\": \"Density: 22\", \"cat_2_index\": 337, \"group\": [798.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-79984_BALBc-1_X02_Y02_740_709\", \"ini\": 199, \"clust\": 1699, \"rank\": 2089, \"rankvar\": 2822, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2627, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2744, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1916, \"group\": [1699.0, 303.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80165_BALBc-1_X02_Y02_743_497\", \"ini\": 198, \"clust\": 559, \"rank\": 357, \"rankvar\": 2129, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2628, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1509, \"cat-2\": \"Density: 25\", \"cat_2_index\": 701, \"group\": [565.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80587_BALBc-1_X02_Y02_748_815\", \"ini\": 197, \"clust\": 2361, \"rank\": 1552, \"rankvar\": 2361, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2629, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2190, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2210, \"group\": [2360.0, 388.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80635_BALBc-1_X02_Y02_749_454\", \"ini\": 196, \"clust\": 2150, \"rank\": 2532, \"rankvar\": 1110, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2630, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1510, \"cat-2\": \"Density: 27\", \"cat_2_index\": 999, \"group\": [2150.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80695_BALBc-1_X02_Y02_75_13\", \"ini\": 195, \"clust\": 495, \"rank\": 902, \"rankvar\": 1145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2631, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1511, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1309, \"group\": [496.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-80817_BALBc-1_X02_Y02_750_584\", \"ini\": 194, \"clust\": 1770, \"rank\": 2815, \"rankvar\": 2811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2632, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1512, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1161, \"group\": [1771.0, 315.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81059_BALBc-1_X02_Y02_753_779\", \"ini\": 193, \"clust\": 672, \"rank\": 221, \"rankvar\": 1242, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2633, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 569, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2129, \"group\": [670.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81060_BALBc-1_X02_Y02_753_793\", \"ini\": 192, \"clust\": 204, \"rank\": 1151, \"rankvar\": 1526, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2634, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 570, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2130, \"group\": [204.0, 61.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81068_BALBc-1_X02_Y02_753_897\", \"ini\": 191, \"clust\": 1191, \"rank\": 1820, \"rankvar\": 1734, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2635, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2191, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2131, \"group\": [1191.0, 150.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81108_BALBc-1_X02_Y02_754_416\", \"ini\": 190, \"clust\": 1145, \"rank\": 1076, \"rankvar\": 12, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2636, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 571, \"cat-2\": \"Density: 25\", \"cat_2_index\": 702, \"group\": [1150.0, 132.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81179_BALBc-1_X02_Y02_755_323\", \"ini\": 189, \"clust\": 1322, \"rank\": 1005, \"rankvar\": 1888, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2637, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 875, \"cat-2\": \"Density: 22\", \"cat_2_index\": 338, \"group\": [1323.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81222_BALBc-1_X02_Y02_755_881\", \"ini\": 188, \"clust\": 2304, \"rank\": 2368, \"rankvar\": 2027, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2638, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2192, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1917, \"group\": [2303.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81284_BALBc-1_X02_Y02_756_634\", \"ini\": 187, \"clust\": 1689, \"rank\": 2126, \"rankvar\": 2386, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2639, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2745, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1819, \"group\": [1693.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81466_BALBc-1_X02_Y02_758_853\", \"ini\": 186, \"clust\": 2293, \"rank\": 2633, \"rankvar\": 2677, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2640, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2193, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2422, \"group\": [2294.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81536_BALBc-1_X02_Y02_759_820\", \"ini\": 185, \"clust\": 135, \"rank\": 1168, \"rankvar\": 908, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2641, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2194, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2031, \"group\": [135.0, 45.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81627_BALBc-1_X02_Y02_760_153\", \"ini\": 184, \"clust\": 1436, \"rank\": 1159, \"rankvar\": 1863, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2642, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 876, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1162, \"group\": [1439.0, 209.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-81992_BALBc-1_X02_Y02_764_995\", \"ini\": 183, \"clust\": 2018, \"rank\": 2450, \"rankvar\": 2130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2643, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2195, \"cat-2\": \"Density: 21\", \"cat_2_index\": 244, \"group\": [2017.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82113_BALBc-1_X02_Y02_766_756\", \"ini\": 182, \"clust\": 14, \"rank\": 1370, \"rankvar\": 1317, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2644, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2746, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2293, \"group\": [13.0, 6.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82616_BALBc-1_X02_Y02_772_197\", \"ini\": 181, \"clust\": 712, \"rank\": 486, \"rankvar\": 537, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2645, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2747, \"cat-2\": \"Density: 26\", \"cat_2_index\": 850, \"group\": [709.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82799_BALBc-1_X02_Y02_774_509\", \"ini\": 180, \"clust\": 2494, \"rank\": 1848, \"rankvar\": 2365, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2646, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1513, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1000, \"group\": [2495.0, 427.0, 91.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82871_BALBc-1_X02_Y02_775_626\", \"ini\": 179, \"clust\": 2780, \"rank\": 2599, \"rankvar\": 2603, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2647, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2815, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2032, \"group\": [2780.0, 494.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-82932_BALBc-1_X02_Y02_776_234\", \"ini\": 178, \"clust\": 48, \"rank\": 1108, \"rankvar\": 1991, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2648, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2748, \"cat-2\": \"Density: 25\", \"cat_2_index\": 703, \"group\": [51.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83113_BALBc-1_X02_Y02_778_564\", \"ini\": 177, \"clust\": 1537, \"rank\": 2634, \"rankvar\": 2785, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2649, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1555, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1310, \"group\": [1538.0, 251.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83255_BALBc-1_X02_Y02_78_243\", \"ini\": 176, \"clust\": 855, \"rank\": 160, \"rankvar\": 538, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2650, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2749, \"cat-2\": \"Density: 19\", \"cat_2_index\": 135, \"group\": [856.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83347_BALBc-1_X02_Y02_780_648\", \"ini\": 175, \"clust\": 1820, \"rank\": 2479, \"rankvar\": 2270, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2651, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2750, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1918, \"group\": [1821.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83401_BALBc-1_X02_Y02_781_370\", \"ini\": 174, \"clust\": 2765, \"rank\": 2564, \"rankvar\": 2553, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2652, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 877, \"cat-2\": \"Density: 23\", \"cat_2_index\": 453, \"group\": [2766.0, 490.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83432_BALBc-1_X02_Y02_781_781\", \"ini\": 173, \"clust\": 1850, \"rank\": 2688, \"rankvar\": 484, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2653, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 572, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2211, \"group\": [1851.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83518_BALBc-1_X02_Y02_782_947\", \"ini\": 172, \"clust\": 2000, \"rank\": 1945, \"rankvar\": 1318, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2654, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2196, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1585, \"group\": [2003.0, 353.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83545_BALBc-1_X02_Y02_783_408\", \"ini\": 171, \"clust\": 267, \"rank\": 1009, \"rankvar\": 850, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2655, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 573, \"cat-2\": \"Density: 20\", \"cat_2_index\": 183, \"group\": [269.0, 70.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83579_BALBc-1_X02_Y02_783_829\", \"ini\": 170, \"clust\": 2383, \"rank\": 1854, \"rankvar\": 2177, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2656, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2197, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2212, \"group\": [2380.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83813_BALBc-1_X02_Y02_786_688\", \"ini\": 169, \"clust\": 1849, \"rank\": 2798, \"rankvar\": 2112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2657, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2751, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1919, \"group\": [1848.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-83857_BALBc-1_X02_Y02_787_296\", \"ini\": 168, \"clust\": 1293, \"rank\": 1615, \"rankvar\": 2185, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2658, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1763, \"cat-2\": \"Density: 23\", \"cat_2_index\": 454, \"group\": [1297.0, 178.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84179_BALBc-1_X02_Y02_790_487\", \"ini\": 167, \"clust\": 1784, \"rank\": 2470, \"rankvar\": 2675, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2659, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2752, \"cat-2\": \"Density: 22\", \"cat_2_index\": 339, \"group\": [1784.0, 319.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84223_BALBc-1_X02_Y02_791_169\", \"ini\": 166, \"clust\": 77, \"rank\": 1300, \"rankvar\": 1413, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2660, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 731, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1163, \"group\": [78.0, 27.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84480_BALBc-1_X02_Y02_793_920\", \"ini\": 165, \"clust\": 2215, \"rank\": 2751, \"rankvar\": 2504, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2661, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2198, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1920, \"group\": [2213.0, 379.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84554_BALBc-1_X02_Y02_794_978\", \"ini\": 164, \"clust\": 299, \"rank\": 967, \"rankvar\": 956, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2662, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2199, \"cat-2\": \"Density: 24\", \"cat_2_index\": 574, \"group\": [299.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84577_BALBc-1_X02_Y02_795_333\", \"ini\": 163, \"clust\": 2787, \"rank\": 2547, \"rankvar\": 1768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2663, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 574, \"cat-2\": \"Density: 23\", \"cat_2_index\": 455, \"group\": [2786.0, 496.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-84864_BALBc-1_X02_Y02_798_754\", \"ini\": 162, \"clust\": 2505, \"rank\": 2018, \"rankvar\": 2705, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2664, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1514, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2213, \"group\": [2505.0, 430.0, 92.0, 24.0, 10.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85074_BALBc-1_X02_Y02_80_689\", \"ini\": 161, \"clust\": 154, \"rank\": 838, \"rankvar\": 329, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2665, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1515, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2132, \"group\": [155.0, 49.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85146_BALBc-1_X02_Y02_800_596\", \"ini\": 160, \"clust\": 1471, \"rank\": 1592, \"rankvar\": 1805, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2666, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2816, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1586, \"group\": [1477.0, 222.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85365_BALBc-1_X02_Y02_803_450\", \"ini\": 159, \"clust\": 566, \"rank\": 678, \"rankvar\": 449, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2667, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 575, \"cat-2\": \"Density: 22\", \"cat_2_index\": 340, \"group\": [567.0, 98.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85452_BALBc-1_X02_Y02_804_6\", \"ini\": 158, \"clust\": 2608, \"rank\": 1842, \"rankvar\": 1415, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2668, \"cat-1\": \"Neighbor: CD106(-)CD16/32(+)Ly6C(+)CD31(-)\", \"cat_1_index\": 942, \"cat-2\": \"Density: 26\", \"cat_2_index\": 851, \"group\": [2607.0, 461.0, 99.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85759_BALBc-1_X02_Y02_808_377\", \"ini\": 157, \"clust\": 30, \"rank\": 636, \"rankvar\": 2217, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2669, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 576, \"cat-2\": \"Density: 23\", \"cat_2_index\": 456, \"group\": [30.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85916_BALBc-1_X02_Y02_81_656\", \"ini\": 156, \"clust\": 1542, \"rank\": 2410, \"rankvar\": 2499, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2670, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1516, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2214, \"group\": [1542.0, 253.0, 52.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85926_BALBc-1_X02_Y02_81_785\", \"ini\": 155, \"clust\": 1961, \"rank\": 2162, \"rankvar\": 1881, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2671, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1517, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1001, \"group\": [1962.0, 348.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-85942_BALBc-1_X02_Y02_81_991\", \"ini\": 154, \"clust\": 33, \"rank\": 968, \"rankvar\": 2502, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2672, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1518, \"cat-2\": \"Density: 16\", \"cat_2_index\": 66, \"group\": [32.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86002_BALBc-1_X02_Y02_810_796\", \"ini\": 153, \"clust\": 172, \"rank\": 774, \"rankvar\": 1854, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2673, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 577, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2294, \"group\": [172.0, 54.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86177_BALBc-1_X02_Y02_813_187\", \"ini\": 152, \"clust\": 723, \"rank\": 131, \"rankvar\": 1561, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2674, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1556, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1164, \"group\": [724.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86247_BALBc-1_X02_Y02_813_882\", \"ini\": 151, \"clust\": 2397, \"rank\": 1994, \"rankvar\": 1780, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2675, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2200, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2033, \"group\": [2397.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86277_BALBc-1_X02_Y02_814_239\", \"ini\": 150, \"clust\": 700, \"rank\": 166, \"rankvar\": 1599, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2676, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2497, \"cat-2\": \"Density: 24\", \"cat_2_index\": 575, \"group\": [703.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86338_BALBc-1_X02_Y02_814_833\", \"ini\": 149, \"clust\": 2294, \"rank\": 2364, \"rankvar\": 2061, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2677, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2201, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2295, \"group\": [2295.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86350_BALBc-1_X02_Y02_815_1001\", \"ini\": 148, \"clust\": 2781, \"rank\": 2302, \"rankvar\": 2330, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2678, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 578, \"cat-2\": \"Density: 17\", \"cat_2_index\": 84, \"group\": [2781.0, 494.0, 103.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86446_BALBc-1_X02_Y02_816_410\", \"ini\": 147, \"clust\": 584, \"rank\": 624, \"rankvar\": 1195, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2679, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 579, \"cat-2\": \"Density: 25\", \"cat_2_index\": 704, \"group\": [584.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86456_BALBc-1_X02_Y02_816_577\", \"ini\": 146, \"clust\": 362, \"rank\": 595, \"rankvar\": 1921, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2680, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1557, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1448, \"group\": [360.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86485_BALBc-1_X02_Y02_816_906\", \"ini\": 145, \"clust\": 2380, \"rank\": 1680, \"rankvar\": 2326, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2681, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2202, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1820, \"group\": [2378.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86584_BALBc-1_X02_Y02_818_376\", \"ini\": 144, \"clust\": 621, \"rank\": 224, \"rankvar\": 1542, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2682, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 580, \"cat-2\": \"Density: 24\", \"cat_2_index\": 576, \"group\": [620.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86654_BALBc-1_X02_Y02_819_312\", \"ini\": 143, \"clust\": 694, \"rank\": 530, \"rankvar\": 579, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2683, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 581, \"cat-2\": \"Density: 23\", \"cat_2_index\": 457, \"group\": [693.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86760_BALBc-1_X02_Y02_82_873\", \"ini\": 142, \"clust\": 419, \"rank\": 213, \"rankvar\": 1686, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2684, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1519, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1311, \"group\": [418.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86819_BALBc-1_X02_Y02_820_592\", \"ini\": 141, \"clust\": 180, \"rank\": 641, \"rankvar\": 1471, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2685, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 582, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1587, \"group\": [181.0, 55.0, 15.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86859_BALBc-1_X02_Y02_821_272\", \"ini\": 140, \"clust\": 1274, \"rank\": 1129, \"rankvar\": 2264, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2686, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 583, \"cat-2\": \"Density: 24\", \"cat_2_index\": 577, \"group\": [1275.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86882_BALBc-1_X02_Y02_821_469\", \"ini\": 139, \"clust\": 741, \"rank\": 704, \"rankvar\": 896, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2687, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2753, \"cat-2\": \"Density: 22\", \"cat_2_index\": 341, \"group\": [743.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-86995_BALBc-1_X02_Y02_822_773\", \"ini\": 138, \"clust\": 2211, \"rank\": 1965, \"rankvar\": 131, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2688, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 584, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2034, \"group\": [2216.0, 379.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87010_BALBc-1_X02_Y02_822_970\", \"ini\": 137, \"clust\": 2394, \"rank\": 2267, \"rankvar\": 2607, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2689, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2203, \"cat-2\": \"Density: 25\", \"cat_2_index\": 705, \"group\": [2394.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87223_BALBc-1_X02_Y02_825_637\", \"ini\": 136, \"clust\": 1010, \"rank\": 229, \"rankvar\": 123, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2690, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2754, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2035, \"group\": [1012.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87231_BALBc-1_X02_Y02_825_685\", \"ini\": 135, \"clust\": 1873, \"rank\": 2797, \"rankvar\": 1946, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2691, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1520, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2215, \"group\": [1871.0, 323.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87361_BALBc-1_X02_Y02_827_663\", \"ini\": 134, \"clust\": 2157, \"rank\": 2724, \"rankvar\": 985, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2692, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2755, \"cat-2\": \"Density: 40\", \"cat_2_index\": 2423, \"group\": [2159.0, 361.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87401_BALBc-1_X02_Y02_828_136\", \"ini\": 133, \"clust\": 591, \"rank\": 882, \"rankvar\": 606, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2693, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 878, \"cat-2\": \"Density: 25\", \"cat_2_index\": 706, \"group\": [598.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87753_BALBc-1_X02_Y02_831_750\", \"ini\": 132, \"clust\": 165, \"rank\": 1273, \"rankvar\": 234, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2694, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1521, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2036, \"group\": [168.0, 53.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87772_BALBc-1_X02_Y02_832_176\", \"ini\": 131, \"clust\": 78, \"rank\": 1092, \"rankvar\": 1432, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2695, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1558, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1165, \"group\": [79.0, 27.0, 9.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-87940_BALBc-1_X02_Y02_834_449\", \"ini\": 130, \"clust\": 1232, \"rank\": 1570, \"rankvar\": 1676, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2696, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 585, \"cat-2\": \"Density: 22\", \"cat_2_index\": 342, \"group\": [1232.0, 165.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88160_BALBc-1_X02_Y02_837_355\", \"ini\": 129, \"clust\": 561, \"rank\": 232, \"rankvar\": 1501, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2697, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 586, \"cat-2\": \"Density: 23\", \"cat_2_index\": 458, \"group\": [560.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88190_BALBc-1_X02_Y02_837_668\", \"ini\": 128, \"clust\": 664, \"rank\": 215, \"rankvar\": 2007, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2698, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 587, \"cat-2\": \"Density: 38\", \"cat_2_index\": 2296, \"group\": [673.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88264_BALBc-1_X02_Y02_838_719\", \"ini\": 127, \"clust\": 1237, \"rank\": 1551, \"rankvar\": 2120, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2699, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1522, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2133, \"group\": [1237.0, 166.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88363_BALBc-1_X02_Y02_839_932\", \"ini\": 126, \"clust\": 2411, \"rank\": 1434, \"rankvar\": 90, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2700, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2204, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1704, \"group\": [2412.0, 399.0, 83.0, 22.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88394_BALBc-1_X02_Y02_84_515\", \"ini\": 125, \"clust\": 1055, \"rank\": 326, \"rankvar\": 1146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2701, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1523, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1921, \"group\": [1059.0, 114.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88440_BALBc-1_X02_Y02_84_969\", \"ini\": 124, \"clust\": 405, \"rank\": 472, \"rankvar\": 1647, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2702, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1524, \"cat-2\": \"Density: 20\", \"cat_2_index\": 184, \"group\": [406.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88503_BALBc-1_X02_Y02_840_832\", \"ini\": 123, \"clust\": 1639, \"rank\": 1465, \"rankvar\": 1199, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2703, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 588, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2134, \"group\": [1638.0, 290.0, 65.0, 16.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88555_BALBc-1_X02_Y02_841_439\", \"ini\": 122, \"clust\": 1474, \"rank\": 1202, \"rankvar\": 1300, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2704, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 589, \"cat-2\": \"Density: 23\", \"cat_2_index\": 459, \"group\": [1473.0, 221.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88760_BALBc-1_X02_Y02_844_277\", \"ini\": 121, \"clust\": 912, \"rank\": 844, \"rankvar\": 519, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2705, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 590, \"cat-2\": \"Density: 22\", \"cat_2_index\": 343, \"group\": [915.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88917_BALBc-1_X02_Y02_846_331\", \"ini\": 120, \"clust\": 355, \"rank\": 689, \"rankvar\": 273, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2706, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 591, \"cat-2\": \"Density: 24\", \"cat_2_index\": 578, \"group\": [356.0, 75.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88934_BALBc-1_X02_Y02_846_601\", \"ini\": 119, \"clust\": 2440, \"rank\": 1322, \"rankvar\": 636, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2707, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2756, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1705, \"group\": [2440.0, 415.0, 89.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-88985_BALBc-1_X02_Y02_847_249\", \"ini\": 118, \"clust\": 549, \"rank\": 730, \"rankvar\": 164, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2708, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2498, \"cat-2\": \"Density: 25\", \"cat_2_index\": 707, \"group\": [550.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89032_BALBc-1_X02_Y02_847_706\", \"ini\": 117, \"clust\": 2210, \"rank\": 2398, \"rankvar\": 1416, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2709, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 592, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2216, \"group\": [2209.0, 377.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89042_BALBc-1_X02_Y02_847_797\", \"ini\": 116, \"clust\": 489, \"rank\": 849, \"rankvar\": 897, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2710, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2817, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2037, \"group\": [487.0, 77.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89169_BALBc-1_X02_Y02_849_386\", \"ini\": 115, \"clust\": 1899, \"rank\": 1266, \"rankvar\": 426, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2711, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 593, \"cat-2\": \"Density: 23\", \"cat_2_index\": 460, \"group\": [1899.0, 332.0, 73.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89338_BALBc-1_X02_Y02_850_734\", \"ini\": 114, \"clust\": 1713, \"rank\": 1381, \"rankvar\": 2293, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2712, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 594, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2038, \"group\": [1716.0, 304.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89357_BALBc-1_X02_Y02_851_140\", \"ini\": 113, \"clust\": 121, \"rank\": 1319, \"rankvar\": 529, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2713, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 879, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1002, \"group\": [121.0, 40.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89396_BALBc-1_X02_Y02_851_573\", \"ini\": 112, \"clust\": 1805, \"rank\": 2711, \"rankvar\": 2633, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2714, \"cat-1\": \"Neighbor: CD4(+)CD8(-)cDC\", \"cat_1_index\": 1559, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1312, \"group\": [1803.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89419_BALBc-1_X02_Y02_851_872\", \"ini\": 111, \"clust\": 438, \"rank\": 543, \"rankvar\": 772, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2715, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2205, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1821, \"group\": [440.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89427_BALBc-1_X02_Y02_852_1004\", \"ini\": 110, \"clust\": 2042, \"rank\": 1952, \"rankvar\": 2041, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2716, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 595, \"cat-2\": \"Density: 16\", \"cat_2_index\": 67, \"group\": [2058.0, 354.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89491_BALBc-1_X02_Y02_852_856\", \"ini\": 109, \"clust\": 357, \"rank\": 1122, \"rankvar\": 1067, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2717, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 596, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1922, \"group\": [358.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89556_BALBc-1_X02_Y02_853_642\", \"ini\": 108, \"clust\": 2173, \"rank\": 2352, \"rankvar\": 509, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2718, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2757, \"cat-2\": \"Density: 36\", \"cat_2_index\": 2135, \"group\": [2173.0, 364.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89743_BALBc-1_X02_Y02_855_754\", \"ini\": 107, \"clust\": 2092, \"rank\": 1923, \"rankvar\": 22, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2719, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2818, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1822, \"group\": [2093.0, 358.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-89977_BALBc-1_X02_Y02_858_899\", \"ini\": 106, \"clust\": 515, \"rank\": 1180, \"rankvar\": 544, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2720, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2206, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1706, \"group\": [516.0, 82.0, 18.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90055_BALBc-1_X02_Y02_859_983\", \"ini\": 105, \"clust\": 2230, \"rank\": 2466, \"rankvar\": 2554, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2721, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 597, \"cat-2\": \"Density: 24\", \"cat_2_index\": 579, \"group\": [2230.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90109_BALBc-1_X02_Y02_86_60\", \"ini\": 104, \"clust\": 94, \"rank\": 1099, \"rankvar\": 992, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2722, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(+) stroma\", \"cat_1_index\": 732, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1313, \"group\": [96.0, 32.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90319_BALBc-1_X02_Y02_862_37\", \"ini\": 103, \"clust\": 421, \"rank\": 360, \"rankvar\": 1309, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2723, \"cat-1\": \"Neighbor: F4/80(+) mphs\", \"cat_1_index\": 1991, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1003, \"group\": [420.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90441_BALBc-1_X02_Y02_864_212\", \"ini\": 102, \"clust\": 562, \"rank\": 253, \"rankvar\": 1922, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2724, \"cat-1\": \"Neighbor: granulocytes\", \"cat_1_index\": 2499, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1166, \"group\": [561.0, 97.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90472_BALBc-1_X02_Y02_864_516\", \"ini\": 101, \"clust\": 15, \"rank\": 925, \"rankvar\": 2450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2725, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1525, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1004, \"group\": [18.0, 7.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90584_BALBc-1_X02_Y02_865_954\", \"ini\": 100, \"clust\": 1410, \"rank\": 862, \"rankvar\": 2066, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2726, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2207, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1314, \"group\": [1411.0, 203.0, 41.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90756_BALBc-1_X02_Y02_868_247\", \"ini\": 99, \"clust\": 437, \"rank\": 658, \"rankvar\": 1033, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2727, \"cat-1\": \"Neighbor: ERTR7(+) stroma\", \"cat_1_index\": 1764, \"cat-2\": \"Density: 24\", \"cat_2_index\": 580, \"group\": [441.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90964_BALBc-1_X02_Y02_87_810\", \"ini\": 98, \"clust\": 156, \"rank\": 1173, \"rankvar\": 682, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2728, \"cat-1\": \"Neighbor: CD8(+) T cells\", \"cat_1_index\": 1688, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1167, \"group\": [157.0, 50.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-90993_BALBc-1_X02_Y02_870_113\", \"ini\": 97, \"clust\": 991, \"rank\": 48, \"rankvar\": 1023, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2729, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 645, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1005, \"group\": [991.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91037_BALBc-1_X02_Y02_870_608\", \"ini\": 96, \"clust\": 1856, \"rank\": 2759, \"rankvar\": 2060, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2730, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2758, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1588, \"group\": [1857.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91170_BALBc-1_X02_Y02_872_455\", \"ini\": 95, \"clust\": 688, \"rank\": 581, \"rankvar\": 1745, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2731, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1526, \"cat-2\": \"Density: 19\", \"cat_2_index\": 136, \"group\": [687.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91208_BALBc-1_X02_Y02_872_797\", \"ini\": 94, \"clust\": 2213, \"rank\": 2678, \"rankvar\": 2182, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2732, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2819, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1923, \"group\": [2214.0, 379.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91245_BALBc-1_X02_Y02_873_333\", \"ini\": 93, \"clust\": 1562, \"rank\": 1595, \"rankvar\": 1006, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2733, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 598, \"cat-2\": \"Density: 25\", \"cat_2_index\": 708, \"group\": [1562.0, 255.0, 53.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91506_BALBc-1_X02_Y02_876_651\", \"ini\": 92, \"clust\": 616, \"rank\": 287, \"rankvar\": 316, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2734, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2759, \"cat-2\": \"Density: 37\", \"cat_2_index\": 2217, \"group\": [617.0, 103.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91693_BALBc-1_X02_Y02_879_140\", \"ini\": 91, \"clust\": 598, \"rank\": 706, \"rankvar\": 1061, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2735, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 646, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1589, \"group\": [597.0, 101.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-91994_BALBc-1_X02_Y02_881_868\", \"ini\": 90, \"clust\": 1995, \"rank\": 1986, \"rankvar\": 1331, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2736, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2208, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1707, \"group\": [1998.0, 351.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92030_BALBc-1_X02_Y02_882_354\", \"ini\": 89, \"clust\": 710, \"rank\": 285, \"rankvar\": 1700, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2737, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 599, \"cat-2\": \"Density: 23\", \"cat_2_index\": 461, \"group\": [707.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92117_BALBc-1_X02_Y02_883_671\", \"ini\": 88, \"clust\": 1846, \"rank\": 2653, \"rankvar\": 517, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2738, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2760, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2039, \"group\": [1850.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92273_BALBc-1_X02_Y02_886_181\", \"ini\": 87, \"clust\": 90, \"rank\": 1084, \"rankvar\": 1338, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2739, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2466, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1315, \"group\": [89.0, 29.0, 10.0, 4.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92311_BALBc-1_X02_Y02_886_596\", \"ini\": 86, \"clust\": 1851, \"rank\": 2730, \"rankvar\": 1352, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2740, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2820, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1316, \"group\": [1852.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92434_BALBc-1_X02_Y02_888_295\", \"ini\": 85, \"clust\": 40, \"rank\": 1162, \"rankvar\": 699, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2741, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 880, \"cat-2\": \"Density: 25\", \"cat_2_index\": 709, \"group\": [40.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92552_BALBc-1_X02_Y02_889_735\", \"ini\": 84, \"clust\": 293, \"rank\": 553, \"rankvar\": 1235, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2742, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 600, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1924, \"group\": [292.0, 72.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92558_BALBc-1_X02_Y02_889_853\", \"ini\": 83, \"clust\": 2226, \"rank\": 2437, \"rankvar\": 1245, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2743, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 601, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1708, \"group\": [2233.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92570_BALBc-1_X02_Y02_889_96\", \"ini\": 82, \"clust\": 918, \"rank\": 608, \"rankvar\": 136, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2744, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 881, \"cat-2\": \"Density: 26\", \"cat_2_index\": 852, \"group\": [921.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92700_BALBc-1_X02_Y02_890_746\", \"ini\": 81, \"clust\": 2338, \"rank\": 2708, \"rankvar\": 1997, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2745, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2821, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1709, \"group\": [2339.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92756_BALBc-1_X02_Y02_891_44\", \"ini\": 80, \"clust\": 969, \"rank\": 710, \"rankvar\": 139, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2746, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 882, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1168, \"group\": [970.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92817_BALBc-1_X02_Y02_892_413\", \"ini\": 79, \"clust\": 398, \"rank\": 145, \"rankvar\": 1765, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2747, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 602, \"cat-2\": \"Density: 26\", \"cat_2_index\": 853, \"group\": [397.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92906_BALBc-1_X02_Y02_893_546\", \"ini\": 78, \"clust\": 1841, \"rank\": 2717, \"rankvar\": 560, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2748, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1527, \"cat-2\": \"Density: 24\", \"cat_2_index\": 581, \"group\": [1844.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92912_BALBc-1_X02_Y02_893_644\", \"ini\": 77, \"clust\": 2142, \"rank\": 2475, \"rankvar\": 1814, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2749, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2761, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1925, \"group\": [2142.0, 359.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-92924_BALBc-1_X02_Y02_893_808\", \"ini\": 76, \"clust\": 1031, \"rank\": 17, \"rankvar\": 233, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2750, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2822, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1710, \"group\": [1032.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93103_BALBc-1_X02_Y02_895_993\", \"ini\": 75, \"clust\": 1944, \"rank\": 2215, \"rankvar\": 1444, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2751, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 603, \"cat-2\": \"Density: 17\", \"cat_2_index\": 85, \"group\": [1942.0, 346.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93223_BALBc-1_X02_Y02_897_705\", \"ini\": 74, \"clust\": 2253, \"rank\": 2366, \"rankvar\": 1792, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2752, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2762, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2040, \"group\": [2254.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93348_BALBc-1_X02_Y02_899_389\", \"ini\": 73, \"clust\": 1715, \"rank\": 1218, \"rankvar\": 1461, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2753, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 604, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1006, \"group\": [1715.0, 304.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93415_BALBc-1_X02_Y02_9_38\", \"ini\": 72, \"clust\": 1761, \"rank\": 1961, \"rankvar\": 974, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2754, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2467, \"cat-2\": \"Density: 24\", \"cat_2_index\": 582, \"group\": [1764.0, 314.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93437_BALBc-1_X02_Y02_9_690\", \"ini\": 71, \"clust\": 1606, \"rank\": 1758, \"rankvar\": 2356, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2755, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1528, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1711, \"group\": [1605.0, 271.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93474_BALBc-1_X02_Y02_90_174\", \"ini\": 70, \"clust\": 1102, \"rank\": 1133, \"rankvar\": 521, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2756, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2763, \"cat-2\": \"Density: 20\", \"cat_2_index\": 185, \"group\": [1103.0, 121.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93570_BALBc-1_X02_Y02_900_320\", \"ini\": 69, \"clust\": 1365, \"rank\": 1526, \"rankvar\": 1741, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2757, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 605, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1007, \"group\": [1365.0, 191.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93778_BALBc-1_X02_Y02_903_445\", \"ini\": 68, \"clust\": 1594, \"rank\": 1272, \"rankvar\": 145, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2758, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1529, \"cat-2\": \"Density: 23\", \"cat_2_index\": 462, \"group\": [1598.0, 269.0, 58.0, 13.0, 5.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93852_BALBc-1_X02_Y02_904_543\", \"ini\": 67, \"clust\": 12, \"rank\": 1167, \"rankvar\": 2332, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2759, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1530, \"cat-2\": \"Density: 24\", \"cat_2_index\": 583, \"group\": [14.0, 6.0, 3.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-93948_BALBc-1_X02_Y02_905_80\", \"ini\": 66, \"clust\": 118, \"rank\": 1075, \"rankvar\": 130, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2760, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 883, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1317, \"group\": [118.0, 39.0, 12.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94108_BALBc-1_X02_Y02_907_946\", \"ini\": 65, \"clust\": 2373, \"rank\": 2234, \"rankvar\": 1910, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2761, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2209, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1449, \"group\": [2373.0, 392.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94454_BALBc-1_X02_Y02_911_705\", \"ini\": 64, \"clust\": 1026, \"rank\": 0, \"rankvar\": 475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2762, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2764, \"cat-2\": \"Density: 34\", \"cat_2_index\": 1926, \"group\": [1026.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94481_BALBc-1_X02_Y02_912_148\", \"ini\": 63, \"clust\": 1278, \"rank\": 871, \"rankvar\": 1303, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2763, \"cat-1\": \"Neighbor: B220(+) DN T cells\", \"cat_1_index\": 647, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1318, \"group\": [1277.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94484_BALBc-1_X02_Y02_912_174\", \"ini\": 62, \"clust\": 322, \"rank\": 837, \"rankvar\": 1290, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2764, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 606, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1319, \"group\": [321.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94610_BALBc-1_X02_Y02_913_822\", \"ini\": 61, \"clust\": 2280, \"rank\": 2623, \"rankvar\": 2543, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2765, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2765, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1450, \"group\": [2284.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94815_BALBc-1_X02_Y02_916_641\", \"ini\": 60, \"clust\": 873, \"rank\": 670, \"rankvar\": 0, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2766, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2766, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1590, \"group\": [877.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94838_BALBc-1_X02_Y02_916_85\", \"ini\": 59, \"clust\": 767, \"rank\": 577, \"rankvar\": 34, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2767, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 884, \"cat-2\": \"Density: 25\", \"cat_2_index\": 710, \"group\": [766.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94839_BALBc-1_X02_Y02_916_856\", \"ini\": 58, \"clust\": 2217, \"rank\": 2675, \"rankvar\": 1983, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2768, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2767, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1451, \"group\": [2218.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94853_BALBc-1_X02_Y02_917_213\", \"ini\": 57, \"clust\": 820, \"rank\": 281, \"rankvar\": 28, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2769, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 885, \"cat-2\": \"Density: 26\", \"cat_2_index\": 854, \"group\": [822.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-94891_BALBc-1_X02_Y02_917_742\", \"ini\": 56, \"clust\": 373, \"rank\": 439, \"rankvar\": 180, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2770, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 607, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1591, \"group\": [374.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95053_BALBc-1_X02_Y02_919_786\", \"ini\": 55, \"clust\": 309, \"rank\": 661, \"rankvar\": 971, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2771, \"cat-1\": \"Neighbor: noid\", \"cat_1_index\": 2823, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1823, \"group\": [308.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95070_BALBc-1_X02_Y02_919_984\", \"ini\": 54, \"clust\": 400, \"rank\": 228, \"rankvar\": 1622, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2772, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2210, \"cat-2\": \"Density: 20\", \"cat_2_index\": 186, \"group\": [401.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95344_BALBc-1_X02_Y02_922_457\", \"ini\": 53, \"clust\": 320, \"rank\": 753, \"rankvar\": 1629, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2773, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1531, \"cat-2\": \"Density: 22\", \"cat_2_index\": 344, \"group\": [322.0, 74.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95351_BALBc-1_X02_Y02_922_549\", \"ini\": 52, \"clust\": 1858, \"rank\": 2769, \"rankvar\": 2477, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2774, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2768, \"cat-2\": \"Density: 22\", \"cat_2_index\": 345, \"group\": [1859.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95458_BALBc-1_X02_Y02_923_893\", \"ini\": 51, \"clust\": 1046, \"rank\": 482, \"rankvar\": 112, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2775, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2211, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1452, \"group\": [1048.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95495_BALBc-1_X02_Y02_924_349\", \"ini\": 50, \"clust\": 1660, \"rank\": 1666, \"rankvar\": 455, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2776, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 608, \"cat-2\": \"Density: 24\", \"cat_2_index\": 584, \"group\": [1660.0, 301.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95866_BALBc-1_X02_Y02_928_872\", \"ini\": 49, \"clust\": 2309, \"rank\": 2311, \"rankvar\": 2446, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2777, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2769, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1592, \"group\": [2308.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-95874_BALBc-1_X02_Y02_929_132\", \"ini\": 48, \"clust\": 993, \"rank\": 117, \"rankvar\": 811, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2778, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2468, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1320, \"group\": [993.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96102_BALBc-1_X02_Y02_931_305\", \"ini\": 47, \"clust\": 1323, \"rank\": 860, \"rankvar\": 1425, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2779, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 886, \"cat-2\": \"Density: 24\", \"cat_2_index\": 585, \"group\": [1324.0, 185.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96234_BALBc-1_X02_Y02_932_924\", \"ini\": 46, \"clust\": 2319, \"rank\": 2371, \"rankvar\": 1842, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2780, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2212, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1593, \"group\": [2320.0, 387.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96350_BALBc-1_X02_Y02_934_713\", \"ini\": 45, \"clust\": 2224, \"rank\": 2372, \"rankvar\": 1847, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2781, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2770, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1594, \"group\": [2225.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96428_BALBc-1_X02_Y02_935_613\", \"ini\": 44, \"clust\": 1747, \"rank\": 2104, \"rankvar\": 2341, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2782, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 609, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1321, \"group\": [1748.0, 311.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-96640_BALBc-1_X02_Y02_938_684\", \"ini\": 43, \"clust\": 2167, \"rank\": 2151, \"rankvar\": 38, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2783, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2771, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1453, \"group\": [2168.0, 363.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97000_BALBc-1_X02_Y02_942_474\", \"ini\": 42, \"clust\": 1889, \"rank\": 2328, \"rankvar\": 2292, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2784, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2772, \"cat-2\": \"Density: 23\", \"cat_2_index\": 463, \"group\": [1889.0, 327.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97011_BALBc-1_X02_Y02_942_662\", \"ini\": 41, \"clust\": 2480, \"rank\": 1475, \"rankvar\": 1450, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2785, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2773, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1454, \"group\": [2483.0, 423.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97056_BALBc-1_X02_Y02_943_193\", \"ini\": 40, \"clust\": 661, \"rank\": 438, \"rankvar\": 530, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2786, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2774, \"cat-2\": \"Density: 25\", \"cat_2_index\": 711, \"group\": [663.0, 108.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97137_BALBc-1_X02_Y02_944_154\", \"ini\": 39, \"clust\": 2071, \"rank\": 2008, \"rankvar\": 157, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2787, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2775, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1824, \"group\": [2075.0, 357.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97167_BALBc-1_X02_Y02_944_435\", \"ini\": 38, \"clust\": 922, \"rank\": 203, \"rankvar\": 421, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2788, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 936, \"cat-2\": \"Density: 21\", \"cat_2_index\": 245, \"group\": [923.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97214_BALBc-1_X02_Y02_944_966\", \"ini\": 37, \"clust\": 1027, \"rank\": 2, \"rankvar\": 398, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2789, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2213, \"cat-2\": \"Density: 24\", \"cat_2_index\": 586, \"group\": [1027.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97451_BALBc-1_X02_Y02_948_331\", \"ini\": 36, \"clust\": 1263, \"rank\": 744, \"rankvar\": 1475, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2790, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 610, \"cat-2\": \"Density: 21\", \"cat_2_index\": 246, \"group\": [1264.0, 174.0, 34.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97491_BALBc-1_X02_Y02_948_932\", \"ini\": 35, \"clust\": 122, \"rank\": 1619, \"rankvar\": 1513, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2791, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2214, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1595, \"group\": [125.0, 41.0, 13.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97517_BALBc-1_X02_Y02_949_240\", \"ini\": 34, \"clust\": 1196, \"rank\": 1884, \"rankvar\": 849, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2792, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 887, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1008, \"group\": [1196.0, 152.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-97549_BALBc-1_X02_Y02_949_586\", \"ini\": 33, \"clust\": 1812, \"rank\": 2696, \"rankvar\": 2665, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2793, \"cat-1\": \"Neighbor: CD4(-)CD8(+)cDC\", \"cat_1_index\": 1589, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1009, \"group\": [1812.0, 321.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98069_BALBc-1_X02_Y02_955_308\", \"ini\": 32, \"clust\": 1159, \"rank\": 1095, \"rankvar\": 759, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2794, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 611, \"cat-2\": \"Density: 22\", \"cat_2_index\": 346, \"group\": [1160.0, 137.0, 25.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98157_BALBc-1_X02_Y02_956_396\", \"ini\": 31, \"clust\": 1121, \"rank\": 1223, \"rankvar\": 56, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2795, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 612, \"cat-2\": \"Density: 25\", \"cat_2_index\": 712, \"group\": [1128.0, 127.0, 24.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98194_BALBc-1_X02_Y02_956_883\", \"ini\": 30, \"clust\": 1934, \"rank\": 2690, \"rankvar\": 2784, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2796, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2215, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1712, \"group\": [1938.0, 345.0, 76.0, 20.0, 8.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98263_BALBc-1_X02_Y02_957_843\", \"ini\": 29, \"clust\": 795, \"rank\": 226, \"rankvar\": 596, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2797, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2776, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1322, \"group\": [796.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98313_BALBc-1_X02_Y02_958_647\", \"ini\": 28, \"clust\": 2671, \"rank\": 2484, \"rankvar\": 2146, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2798, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 613, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1323, \"group\": [2671.0, 481.0, 102.0, 26.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98322_BALBc-1_X02_Y02_958_769\", \"ini\": 27, \"clust\": 2391, \"rank\": 1902, \"rankvar\": 2375, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2799, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2777, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1455, \"group\": [2391.0, 393.0, 82.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98806_BALBc-1_X02_Y02_964_191\", \"ini\": 26, \"clust\": 1948, \"rank\": 2070, \"rankvar\": 1907, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2800, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 888, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1169, \"group\": [1949.0, 347.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98856_BALBc-1_X02_Y02_964_78\", \"ini\": 25, \"clust\": 447, \"rank\": 354, \"rankvar\": 1496, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2801, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 889, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1596, \"group\": [445.0, 76.0, 16.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-98994_BALBc-1_X02_Y02_966_741\", \"ini\": 24, \"clust\": 2225, \"rank\": 2513, \"rankvar\": 2354, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2802, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2778, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1713, \"group\": [2226.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99000_BALBc-1_X02_Y02_966_800\", \"ini\": 23, \"clust\": 1860, \"rank\": 2701, \"rankvar\": 1533, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2803, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2779, \"cat-2\": \"Density: 30\", \"cat_2_index\": 1456, \"group\": [1862.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99040_BALBc-1_X02_Y02_967_294\", \"ini\": 22, \"clust\": 1298, \"rank\": 1499, \"rankvar\": 1577, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2804, \"cat-1\": \"Neighbor: CD106(+)CD16/32(+)CD31(-)Ly6C(-) stroma\", \"cat_1_index\": 890, \"cat-2\": \"Density: 21\", \"cat_2_index\": 247, \"group\": [1299.0, 178.0, 36.0, 9.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99129_BALBc-1_X02_Y02_968_372\", \"ini\": 21, \"clust\": 689, \"rank\": 385, \"rankvar\": 1951, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2805, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 614, \"cat-2\": \"Density: 24\", \"cat_2_index\": 587, \"group\": [688.0, 111.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99400_BALBc-1_X02_Y02_970_970\", \"ini\": 20, \"clust\": 1988, \"rank\": 1935, \"rankvar\": 1435, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2806, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2216, \"cat-2\": \"Density: 22\", \"cat_2_index\": 347, \"group\": [1989.0, 351.0, 77.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99453_BALBc-1_X02_Y02_971_668\", \"ini\": 19, \"clust\": 2476, \"rank\": 1639, \"rankvar\": 1678, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2807, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2780, \"cat-2\": \"Density: 31\", \"cat_2_index\": 1597, \"group\": [2477.0, 422.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99472_BALBc-1_X02_Y02_971_945\", \"ini\": 18, \"clust\": 572, \"rank\": 381, \"rankvar\": 492, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2808, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2217, \"cat-2\": \"Density: 25\", \"cat_2_index\": 713, \"group\": [575.0, 99.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99576_BALBc-1_X02_Y02_973_307\", \"ini\": 17, \"clust\": 995, \"rank\": 68, \"rankvar\": 194, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2809, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 615, \"cat-2\": \"Density: 22\", \"cat_2_index\": 348, \"group\": [995.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99819_BALBc-1_X02_Y02_976_413\", \"ini\": 16, \"clust\": 1887, \"rank\": 1764, \"rankvar\": 934, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2810, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 937, \"cat-2\": \"Density: 25\", \"cat_2_index\": 714, \"group\": [1895.0, 329.0, 71.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-99924_BALBc-1_X02_Y02_977_857\", \"ini\": 15, \"clust\": 1829, \"rank\": 2689, \"rankvar\": 1078, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2811, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2218, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1714, \"group\": [1834.0, 322.0, 70.0, 18.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100214_BALBc-1_X02_Y02_980_820\", \"ini\": 14, \"clust\": 1152, \"rank\": 1280, \"rankvar\": 693, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2812, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2781, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1324, \"group\": [1152.0, 133.0, 25.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100337_BALBc-1_X02_Y02_982_632\", \"ini\": 13, \"clust\": 1661, \"rank\": 1930, \"rankvar\": 2614, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2813, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2782, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1325, \"group\": [1661.0, 301.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100367_BALBc-1_X02_Y02_982_992\", \"ini\": 12, \"clust\": 2228, \"rank\": 2198, \"rankvar\": 921, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2814, \"cat-1\": \"Neighbor: FDCs\", \"cat_1_index\": 2219, \"cat-2\": \"Density: 17\", \"cat_2_index\": 86, \"group\": [2228.0, 380.0, 81.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100561_BALBc-1_X02_Y02_985_561\", \"ini\": 11, \"clust\": 1681, \"rank\": 2282, \"rankvar\": 2791, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2815, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2783, \"cat-2\": \"Density: 22\", \"cat_2_index\": 349, \"group\": [1679.0, 302.0, 67.0, 17.0, 7.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100649_BALBc-1_X02_Y02_986_672\", \"ini\": 10, \"clust\": 2171, \"rank\": 2237, \"rankvar\": 799, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2816, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2784, \"cat-2\": \"Density: 33\", \"cat_2_index\": 1825, \"group\": [2174.0, 364.0, 78.0, 21.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100670_BALBc-1_X02_Y02_987_14\", \"ini\": 9, \"clust\": 2534, \"rank\": 1433, \"rankvar\": 781, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2817, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1532, \"cat-2\": \"Density: 23\", \"cat_2_index\": 464, \"group\": [2535.0, 443.0, 96.0, 25.0, 11.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100764_BALBc-1_X02_Y02_988_366\", \"ini\": 8, \"clust\": 1346, \"rank\": 1445, \"rankvar\": 143, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2818, \"cat-1\": \"Neighbor: B cells\", \"cat_1_index\": 616, \"cat-2\": \"Density: 28\", \"cat_2_index\": 1170, \"group\": [1347.0, 187.0, 37.0, 10.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100956_BALBc-1_X02_Y02_99_748\", \"ini\": 7, \"clust\": 2470, \"rank\": 1702, \"rankvar\": 1747, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2819, \"cat-1\": \"Neighbor: CD4(+) T cells\", \"cat_1_index\": 1533, \"cat-2\": \"Density: 32\", \"cat_2_index\": 1715, \"group\": [2471.0, 420.0, 90.0, 23.0, 9.0, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-100988_BALBc-1_X02_Y02_990_472\", \"ini\": 6, \"clust\": 1491, \"rank\": 1574, \"rankvar\": 1689, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2820, \"cat-1\": \"Neighbor: CD106(+)CD16/32(-)Ly6C(+)CD31(+)\", \"cat_1_index\": 938, \"cat-2\": \"Density: 20\", \"cat_2_index\": 187, \"group\": [1495.0, 229.0, 44.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101005_BALBc-1_X02_Y02_990_71\", \"ini\": 5, \"clust\": 827, \"rank\": 56, \"rankvar\": 886, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2821, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2469, \"cat-2\": \"Density: 27\", \"cat_2_index\": 1010, \"group\": [830.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101037_BALBc-1_X02_Y02_991_103\", \"ini\": 4, \"clust\": 1186, \"rank\": 1934, \"rankvar\": 768, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2822, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2470, \"cat-2\": \"Density: 29\", \"cat_2_index\": 1326, \"group\": [1185.0, 148.0, 30.0, 8.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101297_BALBc-1_X02_Y02_994_186\", \"ini\": 3, \"clust\": 162, \"rank\": 1368, \"rankvar\": 625, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2823, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2785, \"cat-2\": \"Density: 26\", \"cat_2_index\": 855, \"group\": [165.0, 53.0, 14.0, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101397_BALBc-1_X02_Y02_995_288\", \"ini\": 2, \"clust\": 1009, \"rank\": 22, \"rankvar\": 588, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2824, \"cat-1\": \"Neighbor: erythroblasts\", \"cat_1_index\": 2471, \"cat-2\": \"Density: 23\", \"cat_2_index\": 465, \"group\": [1009.0, 113.0, 22.0, 6.0, 2.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, {\"name\": \"C-101608_BALBc-1_X02_Y02_997_729\", \"ini\": 1, \"clust\": 1464, \"rank\": 2235, \"rankvar\": 1694, \"cat-0\": \"Cell Type: B cells\", \"cat_0_index\": 2825, \"cat-1\": \"Neighbor: marginal zone mphs\", \"cat_1_index\": 2786, \"cat-2\": \"Density: 35\", \"cat_2_index\": 2041, \"group\": [1463.0, 219.0, 43.0, 11.0, 4.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}]}}]}", "value": "Hello World!" } }, "3c647c6715fa416ba7e25b9c5907ae9b": { "model_module": "bqplot", "model_module_version": "^0.4.5", "model_name": "AxisModel", "state": { "scale": "IPY_MODEL_07ee0144373e4fd3b060234f823e16cf", "side": "bottom", "tick_values": { "type": null, "values": null }, "visible": false } }, "4226f45252974e728856e580950694f2": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.1.0", "model_name": "LayoutModel", "state": {} }, "53d5b5089fec43a082255f552dd7ce6e": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.1.0", "model_name": "LayoutModel", "state": { "min_height": "826.0869565217392px", "min_width": "950px" } }, "5b31996a560b4178b387c8f9648f0d67": { "model_module": "bqplot", "model_module_version": "^0.4.5", "model_name": "TooltipModel", "state": { "fields": [ "name" ], "formats": [ "" ], "layout": "IPY_MODEL_8c5866c92feb45ba82aba30cae937c6b" } }, "63c8a750266647bfa37d8ae4d21a0a2e": { "model_module": "bqplot", "model_module_version": "^0.4.5", "model_name": "ScatterModel", "state": { "color": { "type": null, "values": null }, "colors": [ "steelblue" ], "default_size": 2, "display_legend": false, "display_names": false, "names": { "type": "